]> sigrok.org Git - libsigrok.git/blame - hardware/alsa/alsa.c
device.c: Fix memory leak in sr_serial_dev_inst_free
[libsigrok.git] / hardware / alsa / alsa.c
CommitLineData
6ed4f044
DR
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2011 Daniel Ribeiro <drwyrm@gmail.com>
0254651d 5 * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
6ed4f044
DR
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <stdlib.h>
23#include <unistd.h>
24#include <string.h>
6ed4f044 25#include <alsa/asoundlib.h>
45c59c8b
BV
26#include "libsigrok.h"
27#include "libsigrok-internal.h"
6ed4f044 28
472bbb46
UH
29/* Message logging helpers with driver-specific prefix string. */
30#define DRIVER_LOG_DOMAIN "alsa: "
31#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
32#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
33#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
34#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
35#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
36#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
37
0254651d
UH
38#define NUM_PROBES 2
39#define SAMPLE_WIDTH 16
40#define DEFAULT_SAMPLERATE 44100
41// #define AUDIO_DEV "plughw:0,0"
42#define AUDIO_DEV "default"
a4cfb10f 43
915f7cc8 44static const int hwcaps[] = {
5a2326a7
UH
45 SR_HWCAP_SAMPLERATE,
46 SR_HWCAP_LIMIT_SAMPLES,
47 SR_HWCAP_CONTINUOUS,
0254651d 48 0,
6ed4f044
DR
49};
50
0254651d
UH
51static const char *probe_names[] = {
52 "Channel 0",
53 "Channel 1",
464d12c7
KS
54 NULL,
55};
56
0254651d
UH
57SR_PRIV struct sr_dev_driver alsa_driver_info;
58static struct sr_dev_driver *di = &alsa_driver_info;
6ed4f044 59
0254651d
UH
60/** Private, per-device-instance driver context. */
61struct dev_context {
62 uint64_t cur_samplerate;
6ed4f044 63 uint64_t limit_samples;
0254651d 64 uint64_t num_samples;
6ed4f044
DR
65 snd_pcm_t *capture_handle;
66 snd_pcm_hw_params_t *hw_params;
0254651d
UH
67 struct pollfd *ufds;
68 void *cb_data;
6ed4f044
DR
69};
70
0254651d
UH
71static int clear_instances(void)
72{
73 /* TODO */
74
75 return SR_OK;
76}
77
34f06b90 78static int hw_init(struct sr_context *sr_ctx)
6ed4f044 79{
0254651d 80 struct drv_context *drvc;
6ed4f044 81
0254651d
UH
82 if (!(drvc = g_try_malloc0(sizeof(struct drv_context)))) {
83 sr_err("Driver context malloc failed.");
886a52b6 84 return SR_ERR_MALLOC;
92b3101c 85 }
6ed4f044 86
0254651d
UH
87 drvc->sr_ctx = sr_ctx;
88 di->priv = drvc;
89
90 return SR_OK;
91}
92
93static GSList *hw_scan(GSList *options)
94{
95 struct drv_context *drvc;
96 struct dev_context *devc;
97 struct sr_dev_inst *sdi;
98 struct sr_probe *probe;
99 GSList *devices;
100 int i;
101
102 (void)options;
103
104 drvc = di->priv;
105 drvc->instances = NULL;
106
107 devices = NULL;
108
109 if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
110 sr_err("Device context malloc failed.");
111 return NULL;
112 }
113
ea9cfed7 114 if (!(sdi = sr_dev_inst_new(0, SR_ST_ACTIVE, "alsa", NULL, NULL))) {
0254651d
UH
115 sr_err("Failed to create device instance.");
116 return NULL;
ea9cfed7 117 }
6ed4f044 118
0254651d
UH
119 /* Set the samplerate to a default value for now. */
120 devc->cur_samplerate = DEFAULT_SAMPLERATE;
121
122 sdi->priv = devc;
123 sdi->driver = di;
6ed4f044 124
0254651d
UH
125 for (i = 0; probe_names[i]; i++) {
126 if (!(probe = sr_probe_new(i, SR_PROBE_ANALOG, TRUE,
127 probe_names[i]))) {
128 sr_err("Failed to create probe.");
129 return NULL;
130 }
131 sdi->probes = g_slist_append(sdi->probes, probe);
132 }
6ed4f044 133
0254651d
UH
134 drvc->instances = g_slist_append(drvc->instances, sdi);
135 devices = g_slist_append(devices, sdi);
ffedd0bf 136
0254651d 137 return devices;
6ed4f044
DR
138}
139
0254651d 140static GSList *hw_dev_list(void)
6ed4f044 141{
0254651d
UH
142 struct drv_context *drvc;
143
144 drvc = di->priv;
145
146 return drvc->instances;
147}
148
149static int hw_dev_open(struct sr_dev_inst *sdi)
150{
151 struct dev_context *devc;
ebc34738 152 int ret;
6ed4f044 153
0254651d 154 devc = sdi->priv;
6ed4f044 155
0254651d
UH
156 sr_dbg("Opening audio device '%s' for stream capture.", AUDIO_DEV);
157 ret = snd_pcm_open(&devc->capture_handle, AUDIO_DEV,
ea9cfed7 158 SND_PCM_STREAM_CAPTURE, 0);
ebc34738 159 if (ret < 0) {
0254651d 160 sr_err("Can't open audio device: %s.", snd_strerror(ret));
e46b8fb1 161 return SR_ERR;
6ed4f044
DR
162 }
163
0254651d
UH
164 sr_dbg("Allocating hardware parameter structure.");
165 ret = snd_pcm_hw_params_malloc(&devc->hw_params);
ebc34738 166 if (ret < 0) {
0254651d 167 sr_err("Can't allocate hardware parameter structure: %s.",
ebc34738 168 snd_strerror(ret));
886a52b6 169 return SR_ERR_MALLOC;
6ed4f044
DR
170 }
171
0254651d
UH
172 sr_dbg("Initializing hardware parameter structure.");
173 ret = snd_pcm_hw_params_any(devc->capture_handle, devc->hw_params);
ebc34738 174 if (ret < 0) {
0254651d 175 sr_err("Can't initialize hardware parameter structure: %s.",
472bbb46 176 snd_strerror(ret));
e46b8fb1 177 return SR_ERR;
6ed4f044
DR
178 }
179
e46b8fb1 180 return SR_OK;
6ed4f044
DR
181}
182
0254651d 183static int hw_dev_close(struct sr_dev_inst *sdi)
6ed4f044 184{
0254651d
UH
185 int ret;
186 struct dev_context *devc;
6ed4f044 187
0254651d
UH
188 devc = sdi->priv;
189
190 sr_dbg("Closing device.");
6ed4f044 191
0254651d
UH
192 if (devc->hw_params) {
193 sr_dbg("Freeing hardware parameters.");
194 snd_pcm_hw_params_free(devc->hw_params);
195 } else {
196 sr_dbg("No hardware parameters, no need to free.");
697785d1
UH
197 }
198
0254651d
UH
199 if (devc->capture_handle) {
200 sr_dbg("Closing PCM device.");
201 if ((ret = snd_pcm_close(devc->capture_handle)) < 0) {
202 sr_err("Failed to close device: %s.",
203 snd_strerror(ret));
204 }
205 } else {
206 sr_dbg("No capture handle, no need to close audio device.");
207 }
697785d1
UH
208
209 return SR_OK;
6ed4f044
DR
210}
211
57ab7d9f 212static int hw_cleanup(void)
6ed4f044 213{
0254651d 214 clear_instances();
57ab7d9f
UH
215
216 return SR_OK;
6ed4f044
DR
217}
218
0254651d
UH
219static int hw_info_get(int info_id, const void **data,
220 const struct sr_dev_inst *sdi)
6ed4f044 221{
0254651d 222 struct dev_context *devc;
6ed4f044 223
0254651d
UH
224 if (info_id != SR_DI_HWCAPS) /* For SR_DI_HWCAPS sdi will be NULL. */
225 devc = sdi->priv;
6ed4f044 226
0254651d
UH
227 switch (info_id) {
228 case SR_DI_HWCAPS:
229 *data = hwcaps;
6ed4f044 230 break;
5a2326a7 231 case SR_DI_NUM_PROBES:
0254651d 232 *data = GINT_TO_POINTER(NUM_PROBES);
6ed4f044 233 break;
464d12c7 234 case SR_DI_PROBE_NAMES:
0254651d 235 *data = probe_names;
464d12c7 236 break;
5a2326a7 237 case SR_DI_CUR_SAMPLERATE:
0254651d 238 *data = &devc->cur_samplerate;
6ed4f044 239 break;
0254651d
UH
240 default:
241 sr_err("Invalid info_id: %d.", info_id);
242 return SR_ERR_ARG;
6ed4f044
DR
243 }
244
0254651d 245 return SR_OK;
6ed4f044
DR
246}
247
0254651d
UH
248static int hw_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
249 const void *value)
6ed4f044 250{
0254651d 251 struct dev_context *devc;
6ed4f044 252
0254651d 253 devc = sdi->priv;
6ed4f044 254
ffedd0bf 255 switch (hwcap) {
5a2326a7 256 case SR_HWCAP_SAMPLERATE:
0254651d
UH
257 devc->cur_samplerate = *(const uint64_t *)value;
258 break;
5a2326a7 259 case SR_HWCAP_LIMIT_SAMPLES:
0254651d
UH
260 devc->limit_samples = *(const uint64_t *)value;
261 break;
6ed4f044 262 default:
0254651d 263 sr_err("Unknown capability: %d.", hwcap);
e46b8fb1 264 return SR_ERR;
6ed4f044 265 }
0254651d
UH
266
267 return SR_OK;
6ed4f044
DR
268}
269
1f9813eb 270static int receive_data(int fd, int revents, void *cb_data)
6ed4f044 271{
0254651d
UH
272 struct sr_dev_inst *sdi;
273 struct dev_context *devc;
b9c735a2 274 struct sr_datafeed_packet packet;
0254651d
UH
275 struct sr_datafeed_analog analog;
276 char inbuf[4096];
277 int i, x, count, offset, samples_to_get;
278 uint16_t tmp16;
6ed4f044 279
0254651d
UH
280 (void)fd;
281 (void)revents;
282
283 sdi = cb_data;
284 devc = sdi->priv;
285
286 memset(&analog, 0, sizeof(struct sr_datafeed_analog));
287 memset(inbuf, 0, sizeof(inbuf));
288
289 samples_to_get = MIN(4096 / 4, devc->limit_samples);
290
291 sr_spew("Getting %d samples from audio device.", samples_to_get);
292 count = snd_pcm_readi(devc->capture_handle, inbuf, samples_to_get);
293
294 if (count < 0) {
295 sr_err("Failed to read samples: %s.", snd_strerror(count));
296 return FALSE;
297 } else if (count != samples_to_get) {
298 sr_spew("Only got %d/%d samples.", count, samples_to_get);
299 }
300
301 analog.data = g_try_malloc0(count * sizeof(float) * NUM_PROBES);
302 if (!analog.data) {
303 sr_err("Failed to malloc sample buffer.");
304 return FALSE;
305 }
58330ab8 306
0254651d
UH
307 offset = 0;
308
309 for (i = 0; i < count; i++) {
310 for (x = 0; x < NUM_PROBES; x++) {
311 tmp16 = *(uint16_t *)(inbuf + (i * 4) + (x * 2));
312 analog.data[offset++] = (float)tmp16;
6ed4f044 313 }
0254651d 314 }
58330ab8 315
0254651d
UH
316 /* Send a sample packet with the analog values. */
317 analog.num_samples = count;
318 analog.mq = SR_MQ_VOLTAGE; /* FIXME */
319 analog.unit = SR_UNIT_VOLT; /* FIXME */
320 packet.type = SR_DF_ANALOG;
321 packet.payload = &analog;
322 sr_session_send(devc->cb_data, &packet);
58330ab8 323
0254651d 324 g_free(analog.data);
58330ab8 325
0254651d
UH
326 devc->num_samples += count;
327
328 /* Stop acquisition if we acquired enough samples. */
329 if (devc->limit_samples > 0) {
330 if (devc->num_samples >= devc->limit_samples) {
331 sr_info("Requested number of samples reached.");
332 sdi->driver->dev_acquisition_stop(sdi, cb_data);
333 }
334 }
6ed4f044
DR
335
336 return TRUE;
337}
338
0254651d
UH
339static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
340 void *cb_data)
6ed4f044 341{
b9c735a2
UH
342 struct sr_datafeed_packet packet;
343 struct sr_datafeed_header header;
0254651d
UH
344 struct sr_datafeed_meta_analog meta;
345 struct dev_context *devc;
346 int count, ret;
6ed4f044 347
0254651d
UH
348 devc = sdi->priv;
349 devc->cb_data = cb_data;
6ed4f044 350
0254651d
UH
351 sr_dbg("Setting audio access type to RW/interleaved.");
352 ret = snd_pcm_hw_params_set_access(devc->capture_handle,
353 devc->hw_params, SND_PCM_ACCESS_RW_INTERLEAVED);
ebc34738 354 if (ret < 0) {
0254651d 355 sr_err("Can't set audio access type: %s.", snd_strerror(ret));
e46b8fb1 356 return SR_ERR;
6ed4f044
DR
357 }
358
0254651d
UH
359 /* FIXME: Hardcoded for 16bits. */
360 sr_dbg("Setting audio sample format to signed 16bit (little endian).");
361 ret = snd_pcm_hw_params_set_format(devc->capture_handle,
362 devc->hw_params, SND_PCM_FORMAT_S16_LE);
ebc34738 363 if (ret < 0) {
0254651d 364 sr_err("Can't set audio sample format: %s.", snd_strerror(ret));
e46b8fb1 365 return SR_ERR;
6ed4f044
DR
366 }
367
0254651d
UH
368 sr_dbg("Setting audio samplerate to %" PRIu64 "Hz.",
369 devc->cur_samplerate);
370 ret = snd_pcm_hw_params_set_rate_near(devc->capture_handle,
371 devc->hw_params, (unsigned int *)&devc->cur_samplerate, 0);
ebc34738 372 if (ret < 0) {
0254651d 373 sr_err("Can't set audio sample rate: %s.", snd_strerror(ret));
e46b8fb1 374 return SR_ERR;
6ed4f044
DR
375 }
376
0254651d
UH
377 sr_dbg("Setting audio channel count to %d.", NUM_PROBES);
378 ret = snd_pcm_hw_params_set_channels(devc->capture_handle,
379 devc->hw_params, NUM_PROBES);
ebc34738 380 if (ret < 0) {
0254651d 381 sr_err("Can't set channel count: %s.", snd_strerror(ret));
e46b8fb1 382 return SR_ERR;
6ed4f044
DR
383 }
384
0254651d
UH
385 sr_dbg("Setting audio parameters.");
386 ret = snd_pcm_hw_params(devc->capture_handle, devc->hw_params);
ebc34738 387 if (ret < 0) {
0254651d 388 sr_err("Can't set parameters: %s.", snd_strerror(ret));
e46b8fb1 389 return SR_ERR;
6ed4f044
DR
390 }
391
0254651d
UH
392 sr_dbg("Preparing audio interface for use.");
393 ret = snd_pcm_prepare(devc->capture_handle);
ebc34738 394 if (ret < 0) {
0254651d 395 sr_err("Can't prepare audio interface for use: %s.",
ebc34738 396 snd_strerror(ret));
e46b8fb1 397 return SR_ERR;
6ed4f044
DR
398 }
399
0254651d 400 count = snd_pcm_poll_descriptors_count(devc->capture_handle);
6ed4f044 401 if (count < 1) {
472bbb46 402 sr_err("Unable to obtain poll descriptors count.");
e46b8fb1 403 return SR_ERR;
6ed4f044 404 }
0254651d 405 sr_spew("Obtained poll descriptor count: %d.", count);
6ed4f044 406
0254651d
UH
407 if (!(devc->ufds = g_try_malloc(count * sizeof(struct pollfd)))) {
408 sr_err("Failed to malloc ufds.");
e46b8fb1 409 return SR_ERR_MALLOC;
92b3101c 410 }
6ed4f044 411
0254651d
UH
412 sr_err("Getting %d poll descriptors.", count);
413 ret = snd_pcm_poll_descriptors(devc->capture_handle, devc->ufds, count);
ebc34738 414 if (ret < 0) {
0254651d 415 sr_err("Unable to obtain poll descriptors: %s.",
ebc34738 416 snd_strerror(ret));
0254651d 417 g_free(devc->ufds);
e46b8fb1 418 return SR_ERR;
6ed4f044
DR
419 }
420
0254651d
UH
421 /* Send header packet to the session bus. */
422 sr_dbg("Sending SR_DF_HEADER packet.");
5a2326a7 423 packet.type = SR_DF_HEADER;
0254651d 424 packet.payload = (uint8_t *)&header;
6ed4f044
DR
425 header.feed_version = 1;
426 gettimeofday(&header.starttime, NULL);
0254651d
UH
427 sr_session_send(devc->cb_data, &packet);
428
429 /* Send metadata about the SR_DF_ANALOG packets to come. */
430 sr_dbg("Sending SR_DF_META_ANALOG packet.");
431 packet.type = SR_DF_META_ANALOG;
432 packet.payload = &meta;
433 meta.num_probes = NUM_PROBES;
434 sr_session_send(devc->cb_data, &packet);
435
436 /* Poll every 10ms, or whenever some data comes in. */
437 sr_source_add(devc->ufds[0].fd, devc->ufds[0].events, 10,
438 receive_data, (void *)sdi);
439
440 // g_free(devc->ufds); /* FIXME */
6ed4f044 441
e46b8fb1 442 return SR_OK;
6ed4f044
DR
443}
444
0254651d 445static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
6ed4f044 446{
0254651d
UH
447 struct sr_datafeed_packet packet;
448 struct dev_context *devc;
449
450 devc = sdi->priv;
451 devc->cb_data = cb_data;
452
453 sr_source_remove(devc->ufds[0].fd);
454
455 /* Send end packet to the session bus. */
456 sr_dbg("Sending SR_DF_END packet.");
457 packet.type = SR_DF_END;
458 sr_session_send(cb_data, &packet);
3010f21c
UH
459
460 return SR_OK;
6ed4f044
DR
461}
462
c09f0b57 463SR_PRIV struct sr_dev_driver alsa_driver_info = {
e519ba86
UH
464 .name = "alsa",
465 .longname = "ALSA driver",
466 .api_version = 1,
467 .init = hw_init,
468 .cleanup = hw_cleanup,
0254651d
UH
469 .scan = hw_scan,
470 .dev_list = hw_dev_list,
471 .dev_clear = clear_instances,
e7eb703f
UH
472 .dev_open = hw_dev_open,
473 .dev_close = hw_dev_close,
0254651d 474 .info_get = hw_info_get,
a9a245b4 475 .dev_config_set = hw_dev_config_set,
69040b7c
UH
476 .dev_acquisition_start = hw_dev_acquisition_start,
477 .dev_acquisition_stop = hw_dev_acquisition_stop,
0254651d 478 .priv = NULL,
6ed4f044 479};