blob: a59301e168aeab1c122f03fe65ad903b796814d9 [file] [log] [blame]
Simon Wilson79d39652011-05-25 13:44:23 -07001/* pcm.c
2**
3** Copyright 2011, The Android Open Source Project
4**
5** Redistribution and use in source and binary forms, with or without
6** modification, are permitted provided that the following conditions are met:
7** * Redistributions of source code must retain the above copyright
8** notice, this list of conditions and the following disclaimer.
9** * Redistributions in binary form must reproduce the above copyright
10** notice, this list of conditions and the following disclaimer in the
11** documentation and/or other materials provided with the distribution.
12** * Neither the name of The Android Open Source Project nor the names of
13** its contributors may be used to endorse or promote products derived
14** from this software without specific prior written permission.
15**
16** THIS SOFTWARE IS PROVIDED BY The Android Open Source Project ``AS IS'' AND
17** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19** ARE DISCLAIMED. IN NO EVENT SHALL The Android Open Source Project BE LIABLE
20** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
26** DAMAGE.
27*/
28
29#include <stdio.h>
30#include <stdlib.h>
31#include <fcntl.h>
32#include <stdarg.h>
33#include <string.h>
34#include <errno.h>
35#include <unistd.h>
Liam Girdwood6be28f12011-10-13 12:59:51 -070036#include <poll.h>
Simon Wilson79d39652011-05-25 13:44:23 -070037
38#include <sys/ioctl.h>
39#include <sys/mman.h>
40#include <sys/time.h>
Liam Girdwood6be28f12011-10-13 12:59:51 -070041#include <limits.h>
Simon Wilson79d39652011-05-25 13:44:23 -070042
43#include <linux/ioctl.h>
44#define __force
45#define __bitwise
46#define __user
47#include <sound/asound.h>
48
49#include <tinyalsa/asoundlib.h>
50
51#define PARAM_MAX SNDRV_PCM_HW_PARAM_LAST_INTERVAL
Liam Girdwood6be28f12011-10-13 12:59:51 -070052#define SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP (1<<2)
Simon Wilson79d39652011-05-25 13:44:23 -070053
54static inline int param_is_mask(int p)
55{
56 return (p >= SNDRV_PCM_HW_PARAM_FIRST_MASK) &&
57 (p <= SNDRV_PCM_HW_PARAM_LAST_MASK);
58}
59
60static inline int param_is_interval(int p)
61{
62 return (p >= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL) &&
63 (p <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL);
64}
65
66static inline struct snd_interval *param_to_interval(struct snd_pcm_hw_params *p, int n)
67{
68 return &(p->intervals[n - SNDRV_PCM_HW_PARAM_FIRST_INTERVAL]);
69}
70
71static inline struct snd_mask *param_to_mask(struct snd_pcm_hw_params *p, int n)
72{
73 return &(p->masks[n - SNDRV_PCM_HW_PARAM_FIRST_MASK]);
74}
75
76static void param_set_mask(struct snd_pcm_hw_params *p, int n, unsigned int bit)
77{
78 if (bit >= SNDRV_MASK_MAX)
79 return;
80 if (param_is_mask(n)) {
81 struct snd_mask *m = param_to_mask(p, n);
82 m->bits[0] = 0;
83 m->bits[1] = 0;
84 m->bits[bit >> 5] |= (1 << (bit & 31));
85 }
86}
87
88static void param_set_min(struct snd_pcm_hw_params *p, int n, unsigned int val)
89{
90 if (param_is_interval(n)) {
91 struct snd_interval *i = param_to_interval(p, n);
92 i->min = val;
93 }
94}
95
96static void param_set_max(struct snd_pcm_hw_params *p, int n, unsigned int val)
97{
98 if (param_is_interval(n)) {
99 struct snd_interval *i = param_to_interval(p, n);
100 i->max = val;
101 }
102}
103
104static void param_set_int(struct snd_pcm_hw_params *p, int n, unsigned int val)
105{
106 if (param_is_interval(n)) {
107 struct snd_interval *i = param_to_interval(p, n);
108 i->min = val;
109 i->max = val;
110 i->integer = 1;
111 }
112}
113
Liam Girdwood6be28f12011-10-13 12:59:51 -0700114static unsigned int param_get_int(struct snd_pcm_hw_params *p, int n)
115{
116 if (param_is_interval(n)) {
117 struct snd_interval *i = param_to_interval(p, n);
118 if (i->integer)
119 return i->max;
120 }
121 return 0;
122}
123
Simon Wilson79d39652011-05-25 13:44:23 -0700124static void param_init(struct snd_pcm_hw_params *p)
125{
126 int n;
Simon Wilson98c1f162011-06-07 16:12:32 -0700127
Simon Wilson79d39652011-05-25 13:44:23 -0700128 memset(p, 0, sizeof(*p));
129 for (n = SNDRV_PCM_HW_PARAM_FIRST_MASK;
130 n <= SNDRV_PCM_HW_PARAM_LAST_MASK; n++) {
131 struct snd_mask *m = param_to_mask(p, n);
132 m->bits[0] = ~0;
133 m->bits[1] = ~0;
134 }
135 for (n = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL;
136 n <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; n++) {
137 struct snd_interval *i = param_to_interval(p, n);
138 i->min = 0;
139 i->max = ~0;
140 }
141}
142
143#define PCM_ERROR_MAX 128
144
145struct pcm {
146 int fd;
147 unsigned int flags;
148 int running:1;
149 int underruns;
150 unsigned int buffer_size;
Liam Girdwood6be28f12011-10-13 12:59:51 -0700151 unsigned int boundary;
Simon Wilson79d39652011-05-25 13:44:23 -0700152 char error[PCM_ERROR_MAX];
153 struct pcm_config config;
Eric Laurent40b018e2011-06-18 10:10:23 -0700154 struct snd_pcm_mmap_status *mmap_status;
155 struct snd_pcm_mmap_control *mmap_control;
156 struct snd_pcm_sync_ptr *sync_ptr;
Liam Girdwood6be28f12011-10-13 12:59:51 -0700157 void *mmap_buffer;
158 unsigned int noirq_frames_per_msec;
Simon Wilson79d39652011-05-25 13:44:23 -0700159};
160
Simon Wilson851aa5c2011-05-30 21:18:26 -0700161unsigned int pcm_get_buffer_size(struct pcm *pcm)
Simon Wilson79d39652011-05-25 13:44:23 -0700162{
163 return pcm->buffer_size;
164}
165
166const char* pcm_get_error(struct pcm *pcm)
167{
168 return pcm->error;
169}
170
171static int oops(struct pcm *pcm, int e, const char *fmt, ...)
172{
173 va_list ap;
174 int sz;
175
176 va_start(ap, fmt);
177 vsnprintf(pcm->error, PCM_ERROR_MAX, fmt, ap);
178 va_end(ap);
179 sz = strlen(pcm->error);
180
181 if (errno)
182 snprintf(pcm->error + sz, PCM_ERROR_MAX - sz,
183 ": %s", strerror(e));
184 return -1;
185}
186
Simon Wilsonbc03b622011-06-15 17:19:01 -0700187static unsigned int pcm_format_to_alsa(enum pcm_format format)
188{
189 switch (format) {
190 case PCM_FORMAT_S32_LE:
191 return SNDRV_PCM_FORMAT_S32_LE;
192 default:
193 case PCM_FORMAT_S16_LE:
194 return SNDRV_PCM_FORMAT_S16_LE;
195 };
196}
197
198static unsigned int pcm_format_to_bits(enum pcm_format format)
199{
200 switch (format) {
201 case PCM_FORMAT_S32_LE:
202 return 32;
203 default:
204 case PCM_FORMAT_S16_LE:
205 return 16;
206 };
207}
208
Liam Girdwood6be28f12011-10-13 12:59:51 -0700209unsigned int pcm_bytes_to_frames(struct pcm *pcm, unsigned int bytes)
210{
211 return bytes / (pcm->config.channels *
212 (pcm_format_to_bits(pcm->config.format) >> 3));
213}
214
215unsigned int pcm_frames_to_bytes(struct pcm *pcm, unsigned int frames)
216{
217 return frames * pcm->config.channels *
218 (pcm_format_to_bits(pcm->config.format) >> 3);
219}
220
Eric Laurent40b018e2011-06-18 10:10:23 -0700221static int pcm_sync_ptr(struct pcm *pcm, int flags) {
222 if (pcm->sync_ptr) {
223 pcm->sync_ptr->flags = flags;
224 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_SYNC_PTR, pcm->sync_ptr) < 0)
225 return -1;
226 }
227 return 0;
228}
229
230static int pcm_hw_mmap_status(struct pcm *pcm) {
231
232 if (pcm->sync_ptr)
233 return 0;
234
235 int page_size = sysconf(_SC_PAGE_SIZE);
236 pcm->mmap_status = mmap(NULL, page_size, PROT_READ, MAP_FILE | MAP_SHARED,
237 pcm->fd, SNDRV_PCM_MMAP_OFFSET_STATUS);
238 if (pcm->mmap_status == MAP_FAILED)
239 pcm->mmap_status = NULL;
240 if (!pcm->mmap_status)
241 goto mmap_error;
242
243 pcm->mmap_control = mmap(NULL, page_size, PROT_READ | PROT_WRITE,
244 MAP_FILE | MAP_SHARED, pcm->fd, SNDRV_PCM_MMAP_OFFSET_CONTROL);
245 if (pcm->mmap_control == MAP_FAILED)
246 pcm->mmap_control = NULL;
247 if (!pcm->mmap_control) {
248 munmap(pcm->mmap_status, page_size);
249 pcm->mmap_status = NULL;
250 goto mmap_error;
251 }
252 pcm->mmap_control->avail_min = 1;
253
254 return 0;
255
256mmap_error:
257
258 pcm->sync_ptr = calloc(1, sizeof(*pcm->sync_ptr));
259 if (!pcm->sync_ptr)
260 return -ENOMEM;
261 pcm->mmap_status = &pcm->sync_ptr->s.status;
262 pcm->mmap_control = &pcm->sync_ptr->c.control;
263 pcm->mmap_control->avail_min = 1;
264 pcm_sync_ptr(pcm, 0);
265
266 return 0;
267}
268
269static void pcm_hw_munmap_status(struct pcm *pcm) {
270 if (pcm->sync_ptr) {
271 free(pcm->sync_ptr);
272 pcm->sync_ptr = NULL;
273 } else {
274 int page_size = sysconf(_SC_PAGE_SIZE);
275 if (pcm->mmap_status)
276 munmap(pcm->mmap_status, page_size);
277 if (pcm->mmap_control)
278 munmap(pcm->mmap_control, page_size);
279 }
280 pcm->mmap_status = NULL;
281 pcm->mmap_control = NULL;
282}
283
Liam Girdwood6be28f12011-10-13 12:59:51 -0700284static int pcm_areas_copy(struct pcm *pcm, unsigned int pcm_offset,
285 const char *src, unsigned int src_offset,
286 unsigned int frames)
287{
288 int size_bytes = pcm_frames_to_bytes(pcm, frames);
289 int pcm_offset_bytes = pcm_frames_to_bytes(pcm, pcm_offset);
290 int src_offset_bytes = pcm_frames_to_bytes(pcm, src_offset);
291
292 /* interleaved only atm */
293 memcpy((char*)pcm->mmap_buffer + pcm_offset_bytes,
294 src + src_offset_bytes, size_bytes);
295 return 0;
296}
297
Mark Brown6bbe77a2012-02-10 22:07:09 +0000298static int pcm_mmap_write_areas(struct pcm *pcm, const char *src,
Liam Girdwood6be28f12011-10-13 12:59:51 -0700299 unsigned int offset, unsigned int size)
300{
301 void *pcm_areas;
302 int commit;
303 unsigned int pcm_offset, frames, count = 0;
304
305 while (size > 0) {
306 frames = size;
307 pcm_mmap_begin(pcm, &pcm_areas, &pcm_offset, &frames);
308 pcm_areas_copy(pcm, pcm_offset, src, offset, frames);
309 commit = pcm_mmap_commit(pcm, pcm_offset, frames);
310 if (commit < 0) {
311 oops(pcm, commit, "failed to commit %d frames\n", frames);
312 return commit;
313 }
314
315 offset += commit;
316 count += commit;
317 size -= commit;
318 }
319 return count;
320}
321
Eric Laurent40b018e2011-06-18 10:10:23 -0700322int pcm_get_htimestamp(struct pcm *pcm, unsigned int *avail,
323 struct timespec *tstamp)
324{
325 int frames;
326 int rc;
327 snd_pcm_uframes_t hw_ptr;
328
329 if (!pcm_is_ready(pcm))
330 return -1;
331
332 rc = pcm_sync_ptr(pcm, SNDRV_PCM_SYNC_PTR_APPL|SNDRV_PCM_SYNC_PTR_HWSYNC);
333 if (rc < 0)
334 return -1;
335
Eric Laurent7db48582011-11-17 11:47:59 -0800336 if ((pcm->mmap_status->state != PCM_STATE_RUNNING) &&
337 (pcm->mmap_status->state != PCM_STATE_DRAINING))
Eric Laurentee9ba872011-11-15 19:04:03 -0800338 return -1;
339
Eric Laurent40b018e2011-06-18 10:10:23 -0700340 *tstamp = pcm->mmap_status->tstamp;
341 if (tstamp->tv_sec == 0 && tstamp->tv_nsec == 0)
342 return -1;
343
344 hw_ptr = pcm->mmap_status->hw_ptr;
345 if (pcm->flags & PCM_IN)
346 frames = hw_ptr - pcm->mmap_control->appl_ptr;
347 else
348 frames = hw_ptr + pcm->buffer_size - pcm->mmap_control->appl_ptr;
349
350 if (frames < 0)
351 return -1;
352
353 *avail = (unsigned int)frames;
354
355 return 0;
356}
357
Mark Brown6bbe77a2012-02-10 22:07:09 +0000358int pcm_write(struct pcm *pcm, const void *data, unsigned int count)
Simon Wilson79d39652011-05-25 13:44:23 -0700359{
360 struct snd_xferi x;
361
362 if (pcm->flags & PCM_IN)
363 return -EINVAL;
364
Mark Brown6bbe77a2012-02-10 22:07:09 +0000365 x.buf = (void*)data;
Simon Wilsonbc03b622011-06-15 17:19:01 -0700366 x.frames = count / (pcm->config.channels *
367 pcm_format_to_bits(pcm->config.format) / 8);
Simon Wilson79d39652011-05-25 13:44:23 -0700368
369 for (;;) {
370 if (!pcm->running) {
371 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_PREPARE))
372 return oops(pcm, errno, "cannot prepare channel");
373 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_WRITEI_FRAMES, &x))
374 return oops(pcm, errno, "cannot write initial data");
375 pcm->running = 1;
376 return 0;
377 }
378 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_WRITEI_FRAMES, &x)) {
379 pcm->running = 0;
380 if (errno == EPIPE) {
John Grossmanb6db70a2012-04-03 16:37:38 -0700381 /* we failed to make our window -- try to restart if we are
382 * allowed to do so. Otherwise, simply allow the EPIPE error to
383 * propagate up to the app level */
Simon Wilson79d39652011-05-25 13:44:23 -0700384 pcm->underruns++;
John Grossmanb6db70a2012-04-03 16:37:38 -0700385 if (pcm->flags & PCM_NORESTART)
386 return -EPIPE;
Simon Wilson79d39652011-05-25 13:44:23 -0700387 continue;
388 }
389 return oops(pcm, errno, "cannot write stream data");
390 }
391 return 0;
392 }
393}
394
395int pcm_read(struct pcm *pcm, void *data, unsigned int count)
396{
397 struct snd_xferi x;
398
399 if (!(pcm->flags & PCM_IN))
400 return -EINVAL;
401
402 x.buf = data;
Simon Wilsonbc03b622011-06-15 17:19:01 -0700403 x.frames = count / (pcm->config.channels *
404 pcm_format_to_bits(pcm->config.format) / 8);
Simon Wilson79d39652011-05-25 13:44:23 -0700405
406 for (;;) {
407 if (!pcm->running) {
Keunyoung2581a1e2012-05-10 10:50:00 -0700408 if (pcm_start(pcm) < 0) {
409 fprintf(stderr, "start error");
410 return -errno;
411 }
Simon Wilson79d39652011-05-25 13:44:23 -0700412 }
413 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_READI_FRAMES, &x)) {
414 pcm->running = 0;
415 if (errno == EPIPE) {
416 /* we failed to make our window -- try to restart */
417 pcm->underruns++;
418 continue;
419 }
420 return oops(pcm, errno, "cannot read stream data");
421 }
422 return 0;
423 }
424}
425
426static struct pcm bad_pcm = {
427 .fd = -1,
428};
429
430int pcm_close(struct pcm *pcm)
431{
432 if (pcm == &bad_pcm)
433 return 0;
434
Eric Laurent40b018e2011-06-18 10:10:23 -0700435 pcm_hw_munmap_status(pcm);
436
Liam Girdwood6be28f12011-10-13 12:59:51 -0700437 if (pcm->flags & PCM_MMAP) {
438 pcm_stop(pcm);
439 munmap(pcm->mmap_buffer, pcm_frames_to_bytes(pcm, pcm->buffer_size));
440 }
441
Simon Wilson79d39652011-05-25 13:44:23 -0700442 if (pcm->fd >= 0)
443 close(pcm->fd);
444 pcm->running = 0;
445 pcm->buffer_size = 0;
446 pcm->fd = -1;
Eric Laurent40b018e2011-06-18 10:10:23 -0700447 free(pcm);
Simon Wilson79d39652011-05-25 13:44:23 -0700448 return 0;
449}
450
Simon Wilson1bd580f2011-06-02 15:58:41 -0700451struct pcm *pcm_open(unsigned int card, unsigned int device,
452 unsigned int flags, struct pcm_config *config)
Simon Wilson79d39652011-05-25 13:44:23 -0700453{
Simon Wilson79d39652011-05-25 13:44:23 -0700454 struct pcm *pcm;
455 struct snd_pcm_info info;
456 struct snd_pcm_hw_params params;
457 struct snd_pcm_sw_params sparams;
Simon Wilson1bd580f2011-06-02 15:58:41 -0700458 char fn[256];
Eric Laurent40b018e2011-06-18 10:10:23 -0700459 int rc;
Simon Wilson79d39652011-05-25 13:44:23 -0700460
461 pcm = calloc(1, sizeof(struct pcm));
462 if (!pcm || !config)
463 return &bad_pcm; /* TODO: could support default config here */
464
465 pcm->config = *config;
466
Simon Wilson1bd580f2011-06-02 15:58:41 -0700467 snprintf(fn, sizeof(fn), "/dev/snd/pcmC%uD%u%c", card, device,
468 flags & PCM_IN ? 'c' : 'p');
Simon Wilson79d39652011-05-25 13:44:23 -0700469
470 pcm->flags = flags;
Simon Wilson1bd580f2011-06-02 15:58:41 -0700471 pcm->fd = open(fn, O_RDWR);
Simon Wilson79d39652011-05-25 13:44:23 -0700472 if (pcm->fd < 0) {
Simon Wilson1bd580f2011-06-02 15:58:41 -0700473 oops(pcm, errno, "cannot open device '%s'", fn);
Simon Wilson79d39652011-05-25 13:44:23 -0700474 return pcm;
475 }
476
477 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_INFO, &info)) {
Simon Wilson851aa5c2011-05-30 21:18:26 -0700478 oops(pcm, errno, "cannot get info");
Liam Girdwood6be28f12011-10-13 12:59:51 -0700479 goto fail_close;
Simon Wilson79d39652011-05-25 13:44:23 -0700480 }
481
482 param_init(&params);
Simon Wilson79d39652011-05-25 13:44:23 -0700483 param_set_mask(&params, SNDRV_PCM_HW_PARAM_FORMAT,
484 pcm_format_to_alsa(config->format));
485 param_set_mask(&params, SNDRV_PCM_HW_PARAM_SUBFORMAT,
486 SNDRV_PCM_SUBFORMAT_STD);
487 param_set_min(&params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, config->period_size);
488 param_set_int(&params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
489 pcm_format_to_bits(config->format));
490 param_set_int(&params, SNDRV_PCM_HW_PARAM_FRAME_BITS,
491 pcm_format_to_bits(config->format) * config->channels);
492 param_set_int(&params, SNDRV_PCM_HW_PARAM_CHANNELS,
493 config->channels);
494 param_set_int(&params, SNDRV_PCM_HW_PARAM_PERIODS, config->period_count);
495 param_set_int(&params, SNDRV_PCM_HW_PARAM_RATE, config->rate);
496
Liam Girdwood6be28f12011-10-13 12:59:51 -0700497 if (flags & PCM_NOIRQ) {
498
499 if (!(flags & PCM_MMAP)) {
500 oops(pcm, -EINVAL, "noirq only currently supported with mmap().");
501 goto fail;
502 }
503
504 params.flags |= SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP;
505 pcm->noirq_frames_per_msec = config->rate / 1000;
506 }
507
508 if (flags & PCM_MMAP)
509 param_set_mask(&params, SNDRV_PCM_HW_PARAM_ACCESS,
510 SNDRV_PCM_ACCESS_MMAP_INTERLEAVED);
511 else
512 param_set_mask(&params, SNDRV_PCM_HW_PARAM_ACCESS,
513 SNDRV_PCM_ACCESS_RW_INTERLEAVED);
514
Simon Wilson79d39652011-05-25 13:44:23 -0700515 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_HW_PARAMS, &params)) {
516 oops(pcm, errno, "cannot set hw params");
Liam Girdwood6be28f12011-10-13 12:59:51 -0700517 goto fail_close;
Simon Wilson79d39652011-05-25 13:44:23 -0700518 }
519
Liam Girdwood6be28f12011-10-13 12:59:51 -0700520 /* get our refined hw_params */
521 config->period_size = param_get_int(&params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
522 config->period_count = param_get_int(&params, SNDRV_PCM_HW_PARAM_PERIODS);
523 pcm->buffer_size = config->period_count * config->period_size;
524
525 if (flags & PCM_MMAP) {
526 pcm->mmap_buffer = mmap(NULL, pcm_frames_to_bytes(pcm, pcm->buffer_size),
527 PROT_READ | PROT_WRITE, MAP_FILE | MAP_SHARED, pcm->fd, 0);
528 if (pcm->mmap_buffer == MAP_FAILED) {
529 oops(pcm, -errno, "failed to mmap buffer %d bytes\n",
530 pcm_frames_to_bytes(pcm, pcm->buffer_size));
531 goto fail_close;
532 }
533 }
534
535
Simon Wilson79d39652011-05-25 13:44:23 -0700536 memset(&sparams, 0, sizeof(sparams));
Eric Laurent40b018e2011-06-18 10:10:23 -0700537 sparams.tstamp_mode = SNDRV_PCM_TSTAMP_ENABLE;
Simon Wilson79d39652011-05-25 13:44:23 -0700538 sparams.period_step = 1;
539 sparams.avail_min = 1;
John Grossman3bb114a2011-07-21 10:59:55 -0700540
Eric Laurent93e7b672012-08-22 16:18:14 -0700541 if (!config->start_threshold) {
542 if (pcm->flags & PCM_IN)
543 pcm->config.start_threshold = sparams.start_threshold = 1;
544 else
545 pcm->config.start_threshold = sparams.start_threshold =
546 config->period_count * config->period_size / 2;
547 } else
John Grossman3bb114a2011-07-21 10:59:55 -0700548 sparams.start_threshold = config->start_threshold;
549
Liam Girdwood6be28f12011-10-13 12:59:51 -0700550 /* pick a high stop threshold - todo: does this need further tuning */
Eric Laurent35021132012-01-30 11:31:56 -0800551 if (!config->stop_threshold) {
552 if (pcm->flags & PCM_IN)
553 pcm->config.stop_threshold = sparams.stop_threshold =
554 config->period_count * config->period_size * 10;
555 else
556 pcm->config.stop_threshold = sparams.stop_threshold =
557 config->period_count * config->period_size;
558 }
John Grossman3bb114a2011-07-21 10:59:55 -0700559 else
560 sparams.stop_threshold = config->stop_threshold;
561
Simon Wilson79d39652011-05-25 13:44:23 -0700562 sparams.xfer_align = config->period_size / 2; /* needed for old kernels */
563 sparams.silence_size = 0;
John Grossman3bb114a2011-07-21 10:59:55 -0700564 sparams.silence_threshold = config->silence_threshold;
Liam Girdwood6be28f12011-10-13 12:59:51 -0700565 pcm->boundary = sparams.boundary = pcm->buffer_size;
John Grossman3bb114a2011-07-21 10:59:55 -0700566
Gabriel M. Beddingfield80085d42012-02-08 16:53:32 -0600567 while (pcm->boundary * 2 <= INT_MAX - pcm->buffer_size)
Liam Girdwood6be28f12011-10-13 12:59:51 -0700568 pcm->boundary *= 2;
Simon Wilson79d39652011-05-25 13:44:23 -0700569
570 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_SW_PARAMS, &sparams)) {
571 oops(pcm, errno, "cannot set sw params");
572 goto fail;
573 }
574
Eric Laurent40b018e2011-06-18 10:10:23 -0700575 rc = pcm_hw_mmap_status(pcm);
576 if (rc < 0) {
577 oops(pcm, rc, "mmap status failed");
578 goto fail;
579 }
580
Simon Wilson79d39652011-05-25 13:44:23 -0700581 pcm->underruns = 0;
582 return pcm;
583
584fail:
Liam Girdwood6be28f12011-10-13 12:59:51 -0700585 if (flags & PCM_MMAP)
586 munmap(pcm->mmap_buffer, pcm_frames_to_bytes(pcm, pcm->buffer_size));
587fail_close:
Simon Wilson79d39652011-05-25 13:44:23 -0700588 close(pcm->fd);
589 pcm->fd = -1;
590 return pcm;
591}
592
593int pcm_is_ready(struct pcm *pcm)
594{
595 return pcm->fd >= 0;
596}
Simon Wilsond6458e62011-06-21 14:58:11 -0700597
598int pcm_start(struct pcm *pcm)
599{
600 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_PREPARE) < 0)
601 return oops(pcm, errno, "cannot prepare channel");
Liam Girdwood6be28f12011-10-13 12:59:51 -0700602
603 if (pcm->flags & PCM_MMAP)
604 pcm_sync_ptr(pcm, 0);
605
Simon Wilsond6458e62011-06-21 14:58:11 -0700606 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_START) < 0)
607 return oops(pcm, errno, "cannot start channel");
608
Liam Girdwood6be28f12011-10-13 12:59:51 -0700609 pcm->running = 1;
Simon Wilsond6458e62011-06-21 14:58:11 -0700610 return 0;
611}
612
613int pcm_stop(struct pcm *pcm)
614{
615 if (ioctl(pcm->fd, SNDRV_PCM_IOCTL_DROP) < 0)
616 return oops(pcm, errno, "cannot stop channel");
617
Liam Girdwood6be28f12011-10-13 12:59:51 -0700618 pcm->running = 0;
Simon Wilsond6458e62011-06-21 14:58:11 -0700619 return 0;
620}
621
Liam Girdwood6be28f12011-10-13 12:59:51 -0700622static inline int pcm_mmap_playback_avail(struct pcm *pcm)
623{
624 int avail;
625
626 avail = pcm->mmap_status->hw_ptr + pcm->buffer_size - pcm->mmap_control->appl_ptr;
627
628 if (avail < 0)
629 avail += pcm->boundary;
630 else if (avail > (int)pcm->boundary)
631 avail -= pcm->boundary;
632
633 return avail;
634}
635
636static inline int pcm_mmap_capture_avail(struct pcm *pcm)
637{
638 int avail = pcm->mmap_status->hw_ptr - pcm->mmap_control->appl_ptr;
639 if (avail < 0)
640 avail += pcm->boundary;
641 return avail;
642}
643
644static inline int pcm_mmap_avail(struct pcm *pcm)
645{
646 pcm_sync_ptr(pcm, SNDRV_PCM_SYNC_PTR_HWSYNC);
647 if (pcm->flags & PCM_IN)
648 return pcm_mmap_capture_avail(pcm);
649 else
650 return pcm_mmap_playback_avail(pcm);
651}
652
653static void pcm_mmap_appl_forward(struct pcm *pcm, int frames)
654{
655 unsigned int appl_ptr = pcm->mmap_control->appl_ptr;
656 appl_ptr += frames;
657
658 /* check for boundary wrap */
659 if (appl_ptr > pcm->boundary)
660 appl_ptr -= pcm->boundary;
661 pcm->mmap_control->appl_ptr = appl_ptr;
662}
663
664int pcm_mmap_begin(struct pcm *pcm, void **areas, unsigned int *offset,
665 unsigned int *frames)
666{
667 unsigned int continuous, copy_frames, avail;
668
669 /* return the mmap buffer */
670 *areas = pcm->mmap_buffer;
671
672 /* and the application offset in frames */
673 *offset = pcm->mmap_control->appl_ptr % pcm->buffer_size;
674
675 avail = pcm_mmap_avail(pcm);
676 if (avail > pcm->buffer_size)
677 avail = pcm->buffer_size;
678 continuous = pcm->buffer_size - *offset;
679
680 /* we can only copy frames if the are availabale and continuos */
681 copy_frames = *frames;
682 if (copy_frames > avail)
683 copy_frames = avail;
684 if (copy_frames > continuous)
685 copy_frames = continuous;
686 *frames = copy_frames;
687
688 return 0;
689}
690
691int pcm_mmap_commit(struct pcm *pcm, unsigned int offset, unsigned int frames)
692{
693 /* update the application pointer in userspace and kernel */
694 pcm_mmap_appl_forward(pcm, frames);
695 pcm_sync_ptr(pcm, 0);
696
697 return frames;
698}
699
700int pcm_avail_update(struct pcm *pcm)
701{
702 pcm_sync_ptr(pcm, 0);
703 return pcm_mmap_avail(pcm);
704}
705
706int pcm_state(struct pcm *pcm)
707{
708 int err = pcm_sync_ptr(pcm, 0);
709 if (err < 0)
710 return err;
711
712 return pcm->mmap_status->state;
713}
714
715int pcm_wait(struct pcm *pcm, int timeout)
716{
717 struct pollfd pfd;
718 unsigned short revents = 0;
719 int err;
720
721 pfd.fd = pcm->fd;
722 pfd.events = POLLOUT | POLLERR | POLLNVAL;
723
724 do {
725 /* let's wait for avail or timeout */
726 err = poll(&pfd, 1, timeout);
727 if (err < 0)
728 return -errno;
729
730 /* timeout ? */
731 if (err == 0)
732 return 0;
733
734 /* have we been interrupted ? */
735 if (errno == -EINTR)
736 continue;
737
738 /* check for any errors */
739 if (pfd.revents & (POLLERR | POLLNVAL)) {
740 switch (pcm_state(pcm)) {
741 case PCM_STATE_XRUN:
742 return -EPIPE;
743 case PCM_STATE_SUSPENDED:
744 return -ESTRPIPE;
745 case PCM_STATE_DISCONNECTED:
746 return -ENODEV;
747 default:
748 return -EIO;
749 }
750 }
751 /* poll again if fd not ready for IO */
752 } while (!(pfd.revents & (POLLIN | POLLOUT)));
753
754 return 1;
755}
756
Mark Brown6bbe77a2012-02-10 22:07:09 +0000757int pcm_mmap_write(struct pcm *pcm, const void *buffer, unsigned int bytes)
Liam Girdwood6be28f12011-10-13 12:59:51 -0700758{
759 int err = 0, frames, avail;
760 unsigned int offset = 0, count;
761
762 if (bytes == 0)
763 return 0;
764
765 count = pcm_bytes_to_frames(pcm, bytes);
766
767 while (count > 0) {
768
769 /* get the available space for writing new frames */
770 avail = pcm_avail_update(pcm);
771 if (avail < 0) {
772 fprintf(stderr, "cannot determine available mmap frames");
773 return err;
774 }
775
776 /* start the audio if we reach the threshold */
777 if (!pcm->running &&
778 (pcm->buffer_size - avail) >= pcm->config.start_threshold) {
779 if (pcm_start(pcm) < 0) {
780 fprintf(stderr, "start error: hw 0x%x app 0x%x avail 0x%x\n",
781 (unsigned int)pcm->mmap_status->hw_ptr,
782 (unsigned int)pcm->mmap_control->appl_ptr,
783 avail);
784 return -errno;
785 }
786 }
787
788 /* sleep until we have space to write new frames */
789 if (pcm->running &&
790 (unsigned int)avail < pcm->mmap_control->avail_min) {
791 int time = -1;
792
793 if (pcm->flags & PCM_NOIRQ)
794 time = (pcm->buffer_size - avail - pcm->mmap_control->avail_min)
795 / pcm->noirq_frames_per_msec;
796
797 err = pcm_wait(pcm, time);
798 if (err < 0) {
799 pcm->running = 0;
800 fprintf(stderr, "wait error: hw 0x%x app 0x%x avail 0x%x\n",
801 (unsigned int)pcm->mmap_status->hw_ptr,
802 (unsigned int)pcm->mmap_control->appl_ptr,
803 avail);
804 pcm->mmap_control->appl_ptr = 0;
805 return err;
806 }
807 continue;
808 }
809
810 frames = count;
811 if (frames > avail)
812 frames = avail;
813
814 if (!frames)
815 break;
816
817 /* copy frames from buffer */
818 frames = pcm_mmap_write_areas(pcm, buffer, offset, frames);
819 if (frames < 0) {
820 fprintf(stderr, "write error: hw 0x%x app 0x%x avail 0x%x\n",
821 (unsigned int)pcm->mmap_status->hw_ptr,
822 (unsigned int)pcm->mmap_control->appl_ptr,
823 avail);
824 return frames;
825 }
826
827 offset += frames;
828 count -= frames;
829 }
830
831_end:
832 return 0;
833}