]> code.delx.au - pulseaudio/blob - src/modules/module-alsa-sink.c
Fix race condition between IO thread creation and pa_sink_put(). Move activation...
[pulseaudio] / src / modules / module-alsa-sink.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 Copyright 2004-2006 Lennart Poettering
7 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
8
9 PulseAudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
13
14 PulseAudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with PulseAudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
28
29 #include <stdio.h>
30
31 #include <asoundlib.h>
32
33 #include <pulse/xmalloc.h>
34 #include <pulse/util.h>
35
36 #include <pulsecore/core.h>
37 #include <pulsecore/module.h>
38 #include <pulsecore/memchunk.h>
39 #include <pulsecore/sink.h>
40 #include <pulsecore/modargs.h>
41 #include <pulsecore/core-util.h>
42 #include <pulsecore/sample-util.h>
43 #include <pulsecore/log.h>
44 #include <pulsecore/macro.h>
45 #include <pulsecore/thread.h>
46 #include <pulsecore/core-error.h>
47 #include <pulsecore/thread-mq.h>
48 #include <pulsecore/rtpoll.h>
49
50 #include "alsa-util.h"
51 #include "module-alsa-sink-symdef.h"
52
53 PA_MODULE_AUTHOR("Lennart Poettering")
54 PA_MODULE_DESCRIPTION("ALSA Sink")
55 PA_MODULE_VERSION(PACKAGE_VERSION)
56 PA_MODULE_USAGE(
57 "sink_name=<name for the sink> "
58 "device=<ALSA device> "
59 "format=<sample format> "
60 "channels=<number of channels> "
61 "rate=<sample rate> "
62 "fragments=<number of fragments> "
63 "fragment_size=<fragment size> "
64 "channel_map=<channel map> "
65 "mmap=<enable memory mapping?>")
66
67 #define DEFAULT_DEVICE "default"
68
69 struct userdata {
70 pa_core *core;
71 pa_module *module;
72 pa_sink *sink;
73
74 pa_thread *thread;
75 pa_thread_mq thread_mq;
76 pa_rtpoll *rtpoll;
77
78 snd_pcm_t *pcm_handle;
79
80 pa_alsa_fdlist *mixer_fdl;
81 snd_mixer_t *mixer_handle;
82 snd_mixer_elem_t *mixer_elem;
83 long hw_volume_max, hw_volume_min;
84
85 size_t frame_size, fragment_size, hwbuf_size;
86 unsigned nfragments;
87 pa_memchunk memchunk;
88
89 char *device_name;
90
91 int use_mmap;
92
93 int first;
94
95 pa_rtpoll_item *alsa_rtpoll_item;
96 };
97
98 static const char* const valid_modargs[] = {
99 "device",
100 "sink_name",
101 "format",
102 "channels",
103 "rate",
104 "fragments",
105 "fragment_size",
106 "channel_map",
107 "mmap",
108 NULL
109 };
110
111 static int mmap_write(struct userdata *u) {
112 int work_done = 0;
113
114 pa_assert(u);
115 pa_sink_assert_ref(u->sink);
116
117 for (;;) {
118 pa_memchunk chunk;
119 void *p;
120 snd_pcm_sframes_t n;
121 int err;
122 const snd_pcm_channel_area_t *areas;
123 snd_pcm_uframes_t offset, frames;
124
125 if ((n = snd_pcm_avail_update(u->pcm_handle)) < 0) {
126
127 if (n == -EPIPE) {
128 pa_log_debug("snd_pcm_avail_update: Buffer underrun!");
129 u->first = 1;
130 }
131
132 if ((err = snd_pcm_recover(u->pcm_handle, n, 1)) == 0)
133 continue;
134
135 if (err == -EAGAIN)
136 return work_done;
137
138 pa_log("snd_pcm_avail_update: %s", snd_strerror(err));
139 return -1;
140 }
141
142 /* pa_log("Got request for %i samples", (int) n); */
143
144 if (n <= 0)
145 return work_done;
146
147 frames = n;
148
149 if ((err = snd_pcm_mmap_begin(u->pcm_handle, &areas, &offset, &frames)) < 0) {
150
151 if (err == -EPIPE) {
152 pa_log_debug("snd_pcm_mmap_begin: Buffer underrun!");
153 u->first = 1;
154 }
155
156 if ((err = snd_pcm_recover(u->pcm_handle, err, 1)) == 0)
157 continue;
158
159 if (err == -EAGAIN)
160 return work_done;
161
162 pa_log("Failed to write data to DSP: %s", snd_strerror(err));
163 return -1;
164 }
165
166 /* Check these are multiples of 8 bit */
167 pa_assert((areas[0].first & 7) == 0);
168 pa_assert((areas[0].step & 7)== 0);
169
170 /* We assume a single interleaved memory buffer */
171 pa_assert((areas[0].first >> 3) == 0);
172 pa_assert((areas[0].step >> 3) == u->frame_size);
173
174 p = (uint8_t*) areas[0].addr + (offset * u->frame_size);
175
176 chunk.memblock = pa_memblock_new_fixed(u->core->mempool, p, frames * u->frame_size, 1);
177 chunk.length = pa_memblock_get_length(chunk.memblock);
178 chunk.index = 0;
179
180 pa_sink_render_into_full(u->sink, &chunk);
181
182 /* FIXME: Maybe we can do something to keep this memory block
183 * a little bit longer around? */
184 pa_memblock_unref_fixed(chunk.memblock);
185
186 if ((err = snd_pcm_mmap_commit(u->pcm_handle, offset, frames)) < 0) {
187
188 if (err == -EPIPE) {
189 pa_log_debug("snd_pcm_mmap_commit: Buffer underrun!");
190 u->first = 1;
191 }
192
193 if ((err = snd_pcm_recover(u->pcm_handle, err, 1)) == 0)
194 continue;
195
196 if (err == -EAGAIN)
197 return work_done;
198
199 pa_log("Failed to write data to DSP: %s", snd_strerror(err));
200 return -1;
201 }
202
203 work_done = 1;
204
205 if (frames >= (snd_pcm_uframes_t) n)
206 return work_done;
207
208 /* pa_log("wrote %i samples", (int) frames); */
209 }
210 }
211
212 static int unix_write(struct userdata *u) {
213 snd_pcm_status_t *status;
214 int work_done = 0;
215
216 snd_pcm_status_alloca(&status);
217
218 pa_assert(u);
219 pa_sink_assert_ref(u->sink);
220
221 for (;;) {
222 void *p;
223 snd_pcm_sframes_t t;
224 ssize_t l;
225 int err;
226
227 if ((err = snd_pcm_status(u->pcm_handle, status)) < 0) {
228 pa_log("Failed to query DSP status data: %s", snd_strerror(err));
229 return -1;
230 }
231
232 if (snd_pcm_status_get_avail_max(status)*u->frame_size >= u->hwbuf_size)
233 pa_log_debug("Buffer underrun!");
234
235 l = snd_pcm_status_get_avail(status) * u->frame_size;
236
237 /* pa_log("%u bytes to write", l); */
238
239 if (l <= 0)
240 return work_done;
241
242 if (u->memchunk.length <= 0)
243 pa_sink_render(u->sink, l, &u->memchunk);
244
245 pa_assert(u->memchunk.length > 0);
246
247 p = pa_memblock_acquire(u->memchunk.memblock);
248 t = snd_pcm_writei(u->pcm_handle, (const uint8_t*) p + u->memchunk.index, u->memchunk.length / u->frame_size);
249 pa_memblock_release(u->memchunk.memblock);
250
251 /* pa_log("wrote %i bytes of %u (%u)", t*u->frame_size, u->memchunk.length, l); */
252
253 pa_assert(t != 0);
254
255 if (t < 0) {
256
257 if ((t = snd_pcm_recover(u->pcm_handle, t, 1)) == 0)
258 continue;
259
260 if (t == -EAGAIN) {
261 pa_log_debug("EAGAIN");
262 return work_done;
263 } else {
264 pa_log("Failed to write data to DSP: %s", snd_strerror(t));
265 return -1;
266 }
267 }
268
269 u->memchunk.index += t * u->frame_size;
270 u->memchunk.length -= t * u->frame_size;
271
272 if (u->memchunk.length <= 0) {
273 pa_memblock_unref(u->memchunk.memblock);
274 pa_memchunk_reset(&u->memchunk);
275 }
276
277 work_done = 1;
278
279 if (t * u->frame_size >= (unsigned) l)
280 return work_done;
281 }
282 }
283
284 static pa_usec_t sink_get_latency(struct userdata *u) {
285 pa_usec_t r = 0;
286 snd_pcm_status_t *status;
287 snd_pcm_sframes_t frames = 0;
288 int err;
289
290 snd_pcm_status_alloca(&status);
291
292 pa_assert(u);
293 pa_assert(u->pcm_handle);
294
295 if ((err = snd_pcm_status(u->pcm_handle, status)) < 0)
296 pa_log("Failed to get delay: %s", snd_strerror(err));
297 else
298 frames = snd_pcm_status_get_delay(status);
299
300 if (frames > 0)
301 r = pa_bytes_to_usec(frames * u->frame_size, &u->sink->sample_spec);
302
303 if (u->memchunk.memblock)
304 r += pa_bytes_to_usec(u->memchunk.length, &u->sink->sample_spec);
305
306 return r;
307 }
308
309 static int build_pollfd(struct userdata *u) {
310 int err;
311 struct pollfd *pollfd;
312 int n;
313
314 pa_assert(u);
315 pa_assert(u->pcm_handle);
316
317 if ((n = snd_pcm_poll_descriptors_count(u->pcm_handle)) < 0) {
318 pa_log("snd_pcm_poll_descriptors_count() failed: %s", snd_strerror(n));
319 return -1;
320 }
321
322 if (u->alsa_rtpoll_item)
323 pa_rtpoll_item_free(u->alsa_rtpoll_item);
324
325 u->alsa_rtpoll_item = pa_rtpoll_item_new(u->rtpoll, PA_RTPOLL_NEVER, n);
326 pollfd = pa_rtpoll_item_get_pollfd(u->alsa_rtpoll_item, NULL);
327
328 if ((err = snd_pcm_poll_descriptors(u->pcm_handle, pollfd, n)) < 0) {
329 pa_log("snd_pcm_poll_descriptors() failed: %s", snd_strerror(err));
330 return -1;
331 }
332
333 return 0;
334 }
335
336 static int suspend(struct userdata *u) {
337 pa_assert(u);
338 pa_assert(u->pcm_handle);
339
340 /* Let's suspend */
341 snd_pcm_drain(u->pcm_handle);
342 snd_pcm_close(u->pcm_handle);
343 u->pcm_handle = NULL;
344
345 if (u->alsa_rtpoll_item) {
346 pa_rtpoll_item_free(u->alsa_rtpoll_item);
347 u->alsa_rtpoll_item = NULL;
348 }
349
350 pa_log_info("Device suspended...");
351
352 return 0;
353 }
354
355 static int unsuspend(struct userdata *u) {
356 pa_sample_spec ss;
357 int err, b;
358 unsigned nfrags;
359 snd_pcm_uframes_t period_size;
360
361 pa_assert(u);
362 pa_assert(!u->pcm_handle);
363
364 pa_log_info("Trying resume...");
365
366 snd_config_update_free_global();
367 if ((err = snd_pcm_open(&u->pcm_handle, u->device_name, SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK)) < 0) {
368 pa_log("Error opening PCM device %s: %s", u->device_name, snd_strerror(err));
369 goto fail;
370 }
371
372 ss = u->sink->sample_spec;
373 nfrags = u->nfragments;
374 period_size = u->fragment_size / u->frame_size;
375 b = u->use_mmap;
376
377 if ((err = pa_alsa_set_hw_params(u->pcm_handle, &ss, &nfrags, &period_size, &b)) < 0) {
378 pa_log("Failed to set hardware parameters: %s", snd_strerror(err));
379 goto fail;
380 }
381
382 if (b != u->use_mmap) {
383 pa_log_warn("Resume failed, couldn't get original access mode.");
384 goto fail;
385 }
386
387 if (!pa_sample_spec_equal(&ss, &u->sink->sample_spec)) {
388 pa_log_warn("Resume failed, couldn't restore original sample settings.");
389 goto fail;
390 }
391
392 if (nfrags != u->nfragments || period_size*u->frame_size != u->fragment_size) {
393 pa_log_warn("Resume failed, couldn't restore original fragment settings.");
394 goto fail;
395 }
396
397 if ((err = pa_alsa_set_sw_params(u->pcm_handle)) < 0) {
398 pa_log("Failed to set software parameters: %s", snd_strerror(err));
399 goto fail;
400 }
401
402 if (build_pollfd(u) < 0)
403 goto fail;
404
405 /* FIXME: We need to reload the volume somehow */
406
407 u->first = 1;
408
409 pa_log_info("Resumed successfully...");
410
411 return 0;
412
413 fail:
414 if (u->pcm_handle) {
415 snd_pcm_close(u->pcm_handle);
416 u->pcm_handle = NULL;
417 }
418
419 return -1;
420 }
421
422 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) {
423 struct userdata *u = PA_SINK(o)->userdata;
424
425 switch (code) {
426
427 case PA_SINK_MESSAGE_GET_LATENCY: {
428 pa_usec_t r = 0;
429
430 if (u->pcm_handle)
431 r = sink_get_latency(u);
432
433 *((pa_usec_t*) data) = r;
434
435 return 0;
436 }
437
438 case PA_SINK_MESSAGE_SET_STATE:
439
440 switch ((pa_sink_state_t) PA_PTR_TO_UINT(data)) {
441
442 case PA_SINK_SUSPENDED:
443 pa_assert(PA_SINK_OPENED(u->sink->thread_info.state));
444
445 if (suspend(u) < 0)
446 return -1;
447
448 break;
449
450 case PA_SINK_IDLE:
451 case PA_SINK_RUNNING:
452
453 if (u->sink->thread_info.state == PA_SINK_INIT) {
454 if (build_pollfd(u) < 0)
455 return -1;
456 }
457
458 if (u->sink->thread_info.state == PA_SINK_SUSPENDED) {
459 if (unsuspend(u) < 0)
460 return -1;
461 }
462
463 break;
464
465 case PA_SINK_UNLINKED:
466 case PA_SINK_INIT:
467 ;
468 }
469
470 break;
471 }
472
473 return pa_sink_process_msg(o, code, data, offset, chunk);
474 }
475
476 static int mixer_callback(snd_mixer_elem_t *elem, unsigned int mask) {
477 struct userdata *u = snd_mixer_elem_get_callback_private(elem);
478
479 pa_assert(u);
480 pa_assert(u->mixer_handle);
481
482 if (mask == SND_CTL_EVENT_MASK_REMOVE)
483 return 0;
484
485 if (mask & SND_CTL_EVENT_MASK_VALUE) {
486 pa_sink_get_volume(u->sink);
487 pa_sink_get_mute(u->sink);
488 }
489
490 return 0;
491 }
492
493 static int sink_get_volume_cb(pa_sink *s) {
494 struct userdata *u = s->userdata;
495 int err;
496 int i;
497
498 pa_assert(u);
499 pa_assert(u->mixer_elem);
500
501 for (i = 0; i < s->sample_spec.channels; i++) {
502 long set_vol, vol;
503
504 pa_assert(snd_mixer_selem_has_playback_channel(u->mixer_elem, i));
505
506 if ((err = snd_mixer_selem_get_playback_volume(u->mixer_elem, i, &vol)) < 0)
507 goto fail;
508
509 set_vol = (long) roundf(((float) s->volume.values[i] * (u->hw_volume_max - u->hw_volume_min)) / PA_VOLUME_NORM) + u->hw_volume_min;
510
511 /* Try to avoid superfluous volume changes */
512 if (set_vol != vol)
513 s->volume.values[i] = (pa_volume_t) roundf(((float) (vol - u->hw_volume_min) * PA_VOLUME_NORM) / (u->hw_volume_max - u->hw_volume_min));
514 }
515
516 return 0;
517
518 fail:
519 pa_log_error("Unable to read volume: %s", snd_strerror(err));
520
521 s->get_volume = NULL;
522 s->set_volume = NULL;
523 return -1;
524 }
525
526 static int sink_set_volume_cb(pa_sink *s) {
527 struct userdata *u = s->userdata;
528 int err;
529 int i;
530
531 pa_assert(u);
532 pa_assert(u->mixer_elem);
533
534 for (i = 0; i < s->sample_spec.channels; i++) {
535 long alsa_vol;
536 pa_volume_t vol;
537
538 pa_assert(snd_mixer_selem_has_playback_channel(u->mixer_elem, i));
539
540 vol = s->volume.values[i];
541
542 if (vol > PA_VOLUME_NORM)
543 vol = PA_VOLUME_NORM;
544
545 alsa_vol = (long) roundf(((float) vol * (u->hw_volume_max - u->hw_volume_min)) / PA_VOLUME_NORM) + u->hw_volume_min;
546
547 if ((err = snd_mixer_selem_set_playback_volume(u->mixer_elem, i, alsa_vol)) < 0)
548 goto fail;
549 }
550
551 return 0;
552
553 fail:
554 pa_log_error("Unable to set volume: %s", snd_strerror(err));
555
556 s->get_volume = NULL;
557 s->set_volume = NULL;
558 return -1;
559 }
560
561 static int sink_get_mute_cb(pa_sink *s) {
562 struct userdata *u = s->userdata;
563 int err, sw;
564
565 pa_assert(u);
566 pa_assert(u->mixer_elem);
567
568 if ((err = snd_mixer_selem_get_playback_switch(u->mixer_elem, 0, &sw)) < 0) {
569 pa_log_error("Unable to get switch: %s", snd_strerror(err));
570
571 s->get_mute = NULL;
572 s->set_mute = NULL;
573 return -1;
574 }
575
576 s->muted = !sw;
577
578 return 0;
579 }
580
581 static int sink_set_mute_cb(pa_sink *s) {
582 struct userdata *u = s->userdata;
583 int err;
584
585 pa_assert(u);
586 pa_assert(u->mixer_elem);
587
588 if ((err = snd_mixer_selem_set_playback_switch_all(u->mixer_elem, !s->muted)) < 0) {
589 pa_log_error("Unable to set switch: %s", snd_strerror(err));
590
591 s->get_mute = NULL;
592 s->set_mute = NULL;
593 return -1;
594 }
595
596 return 0;
597 }
598
599 static void thread_func(void *userdata) {
600 struct userdata *u = userdata;
601
602 pa_assert(u);
603
604 pa_log_debug("Thread starting up");
605
606 if (u->core->high_priority)
607 pa_make_realtime();
608
609 pa_thread_mq_install(&u->thread_mq);
610 pa_rtpoll_install(u->rtpoll);
611
612 for (;;) {
613 int ret;
614
615 /* Render some data and write it to the dsp */
616 if (PA_SINK_OPENED(u->sink->thread_info.state)) {
617 int work_done = 0;
618
619 if (u->use_mmap) {
620 if ((work_done = mmap_write(u)) < 0)
621 goto fail;
622 } else {
623 if ((work_done = unix_write(u)) < 0)
624 goto fail;
625 }
626
627 if (work_done && u->first) {
628 pa_log_info("Starting playback.");
629 snd_pcm_start(u->pcm_handle);
630 u->first = 0;
631 continue;
632 }
633 }
634
635 /* Hmm, nothing to do. Let's sleep */
636 if ((ret = pa_rtpoll_run(u->rtpoll, 1)) < 0)
637 goto fail;
638
639 if (ret == 0)
640 goto finish;
641
642 /* Tell ALSA about this and process its response */
643 if (PA_SINK_OPENED(u->sink->thread_info.state)) {
644 struct pollfd *pollfd;
645 unsigned short revents = 0;
646 int err;
647 unsigned n;
648
649 pollfd = pa_rtpoll_item_get_pollfd(u->alsa_rtpoll_item, &n);
650
651 if ((err = snd_pcm_poll_descriptors_revents(u->pcm_handle, pollfd, n, &revents)) < 0) {
652 pa_log("snd_pcm_poll_descriptors_revents() failed: %s", snd_strerror(err));
653 goto fail;
654 }
655
656 if (revents & (POLLERR|POLLNVAL|POLLHUP)) {
657 if (revents & POLLERR)
658 pa_log_warn("Got POLLERR from ALSA");
659 if (revents & POLLNVAL)
660 pa_log_warn("Got POLLNVAL from ALSA");
661 if (revents & POLLHUP)
662 pa_log_warn("Got POLLHUP from ALSA");
663
664 goto fail;
665 }
666 }
667 }
668
669 fail:
670 /* If this was no regular exit from the loop we have to continue
671 * processing messages until we received PA_MESSAGE_SHUTDOWN */
672 pa_asyncmsgq_post(u->thread_mq.outq, PA_MSGOBJECT(u->core), PA_CORE_MESSAGE_UNLOAD_MODULE, u->module, 0, NULL, NULL);
673 pa_asyncmsgq_wait_for(u->thread_mq.inq, PA_MESSAGE_SHUTDOWN);
674
675 finish:
676 pa_log_debug("Thread shutting down");
677 }
678
679 int pa__init(pa_module*m) {
680
681 pa_modargs *ma = NULL;
682 struct userdata *u = NULL;
683 char *dev;
684 pa_sample_spec ss;
685 pa_channel_map map;
686 uint32_t nfrags, frag_size;
687 snd_pcm_uframes_t period_size;
688 size_t frame_size;
689 snd_pcm_info_t *pcm_info = NULL;
690 int err;
691 char *t;
692 const char *name;
693 char *name_buf = NULL;
694 int namereg_fail;
695 int use_mmap = 1, b;
696
697 snd_pcm_info_alloca(&pcm_info);
698
699 pa_assert(m);
700
701 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
702 pa_log("Failed to parse module arguments");
703 goto fail;
704 }
705
706 ss = m->core->default_sample_spec;
707 if (pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map, PA_CHANNEL_MAP_ALSA) < 0) {
708 pa_log("Failed to parse sample specification and channel map");
709 goto fail;
710 }
711
712 frame_size = pa_frame_size(&ss);
713
714 nfrags = m->core->default_n_fragments;
715 frag_size = pa_usec_to_bytes(m->core->default_fragment_size_msec*1000, &ss);
716 if (frag_size <= 0)
717 frag_size = frame_size;
718
719 if (pa_modargs_get_value_u32(ma, "fragments", &nfrags) < 0 || pa_modargs_get_value_u32(ma, "fragment_size", &frag_size) < 0) {
720 pa_log("Failed to parse buffer metrics");
721 goto fail;
722 }
723 period_size = frag_size/frame_size;
724
725 if (pa_modargs_get_value_boolean(ma, "mmap", &use_mmap) < 0) {
726 pa_log("Failed to parse mmap argument.");
727 goto fail;
728 }
729
730 u = pa_xnew0(struct userdata, 1);
731 u->core = m->core;
732 u->module = m;
733 m->userdata = u;
734 u->use_mmap = use_mmap;
735 u->first = 1;
736 pa_thread_mq_init(&u->thread_mq, m->core->mainloop);
737 u->rtpoll = pa_rtpoll_new();
738 u->alsa_rtpoll_item = NULL;
739 pa_rtpoll_item_new_asyncmsgq(u->rtpoll, PA_RTPOLL_EARLY, u->thread_mq.inq);
740
741 snd_config_update_free_global();
742
743 dev = pa_xstrdup(pa_modargs_get_value(ma, "device", DEFAULT_DEVICE));
744
745 for (;;) {
746
747 if ((err = snd_pcm_open(&u->pcm_handle, dev, SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK)) < 0) {
748 pa_log("Error opening PCM device %s: %s", dev, snd_strerror(err));
749 pa_xfree(dev);
750 goto fail;
751 }
752
753 b = use_mmap;
754 if ((err = pa_alsa_set_hw_params(u->pcm_handle, &ss, &nfrags, &period_size, &b)) < 0) {
755
756 if (err == -EPERM) {
757 /* Hmm, some hw is very exotic, so we retry with plughw, if hw didn't work */
758
759 if (pa_startswith(dev, "hw:")) {
760 char *d = pa_sprintf_malloc("plughw:%s", dev+3);
761 pa_log_debug("Opening the device as '%s' didn't work, retrying with '%s'.", dev, d);
762 pa_xfree(dev);
763 dev = d;
764
765 snd_pcm_close(u->pcm_handle);
766 u->pcm_handle = NULL;
767 continue;
768 }
769 }
770
771 pa_log("Failed to set hardware parameters: %s", snd_strerror(err));
772 pa_xfree(dev);
773 goto fail;
774 }
775
776 break;
777 }
778
779 u->device_name = dev;
780
781 if (use_mmap && !b) {
782 pa_log_info("Device doesn't support mmap(), falling back to UNIX read/write mode.");
783 u->use_mmap = use_mmap = b;
784 }
785
786 if (u->use_mmap)
787 pa_log_info("Successfully enabled mmap() mode.");
788
789 if ((err = snd_pcm_info(u->pcm_handle, pcm_info)) < 0) {
790 pa_log("Error fetching PCM info: %s", snd_strerror(err));
791 goto fail;
792 }
793
794 if ((err = pa_alsa_set_sw_params(u->pcm_handle)) < 0) {
795 pa_log("Failed to set software parameters: %s", snd_strerror(err));
796 goto fail;
797 }
798
799 /* ALSA might tweak the sample spec, so recalculate the frame size */
800 frame_size = pa_frame_size(&ss);
801
802 if (ss.channels != map.channels)
803 /* Seems ALSA didn't like the channel number, so let's fix the channel map */
804 pa_channel_map_init_auto(&map, ss.channels, PA_CHANNEL_MAP_ALSA);
805
806 if ((err = snd_mixer_open(&u->mixer_handle, 0)) < 0)
807 pa_log_warn("Error opening mixer: %s", snd_strerror(err));
808 else {
809
810 if ((pa_alsa_prepare_mixer(u->mixer_handle, dev) < 0) ||
811 !(u->mixer_elem = pa_alsa_find_elem(u->mixer_handle, "Master", "PCM"))) {
812
813 snd_mixer_close(u->mixer_handle);
814 u->mixer_handle = NULL;
815 }
816 }
817
818 if ((name = pa_modargs_get_value(ma, "sink_name", NULL)))
819 namereg_fail = 1;
820 else {
821 name = name_buf = pa_sprintf_malloc("alsa_output.%s", dev);
822 namereg_fail = 0;
823 }
824
825 u->sink = pa_sink_new(m->core, __FILE__, name, namereg_fail, &ss, &map);
826 pa_xfree(name_buf);
827
828 if (!u->sink) {
829 pa_log("Failed to create sink object");
830 goto fail;
831 }
832
833 u->sink->parent.process_msg = sink_process_msg;
834 u->sink->userdata = u;
835
836 pa_sink_set_module(u->sink, m);
837 pa_sink_set_asyncmsgq(u->sink, u->thread_mq.inq);
838 pa_sink_set_rtpoll(u->sink, u->rtpoll);
839 pa_sink_set_description(u->sink, t = pa_sprintf_malloc(
840 "ALSA PCM on %s (%s)%s",
841 dev,
842 snd_pcm_info_get_name(pcm_info),
843 use_mmap ? " via DMA" : ""));
844 pa_xfree(t);
845
846 u->sink->flags = PA_SINK_HARDWARE|PA_SINK_HW_VOLUME_CTRL|PA_SINK_LATENCY;
847
848 u->frame_size = frame_size;
849 u->fragment_size = frag_size = period_size * frame_size;
850 u->nfragments = nfrags;
851 u->hwbuf_size = u->fragment_size * nfrags;
852
853 pa_log_info("Using %u fragments of size %lu bytes.", nfrags, (long unsigned) u->fragment_size);
854
855 pa_memchunk_reset(&u->memchunk);
856
857 if (u->mixer_handle) {
858 /* Initialize mixer code */
859
860 pa_assert(u->mixer_elem);
861
862 if (snd_mixer_selem_has_playback_volume(u->mixer_elem)) {
863 int i;
864
865 for (i = 0; i < ss.channels; i++)
866 if (!snd_mixer_selem_has_playback_channel(u->mixer_elem, i))
867 break;
868
869 if (i == ss.channels) {
870 pa_log_debug("ALSA device has separate volumes controls for all %u channels.", ss.channels);
871 u->sink->get_volume = sink_get_volume_cb;
872 u->sink->set_volume = sink_set_volume_cb;
873 snd_mixer_selem_get_playback_volume_range(u->mixer_elem, &u->hw_volume_min, &u->hw_volume_max);
874 } else
875 pa_log_info("ALSA device lacks separate volumes controls for all %u channels (%u available), falling back to software volume control.", ss.channels, i+1);
876 }
877
878 if (snd_mixer_selem_has_playback_switch(u->mixer_elem)) {
879 u->sink->get_mute = sink_get_mute_cb;
880 u->sink->set_mute = sink_set_mute_cb;
881 }
882
883 u->mixer_fdl = pa_alsa_fdlist_new();
884
885 if (pa_alsa_fdlist_set_mixer(u->mixer_fdl, u->mixer_handle, m->core->mainloop) < 0) {
886 pa_log("failed to initialise file descriptor monitoring");
887 goto fail;
888 }
889
890 snd_mixer_elem_set_callback(u->mixer_elem, mixer_callback);
891 snd_mixer_elem_set_callback_private(u->mixer_elem, u);
892 } else
893 u->mixer_fdl = NULL;
894
895 if (!(u->thread = pa_thread_new(thread_func, u))) {
896 pa_log("Failed to create thread.");
897 goto fail;
898 }
899
900 /* Get initial mixer settings */
901 if (u->sink->get_volume)
902 u->sink->get_volume(u->sink);
903 if (u->sink->get_mute)
904 u->sink->get_mute(u->sink);
905
906 pa_sink_put(u->sink);
907
908 pa_modargs_free(ma);
909
910 return 0;
911
912 fail:
913
914 if (ma)
915 pa_modargs_free(ma);
916
917 pa__done(m);
918
919 return -1;
920 }
921
922 void pa__done(pa_module*m) {
923 struct userdata *u;
924
925 pa_assert(m);
926
927 if (!(u = m->userdata))
928 return;
929
930 if (u->sink)
931 pa_sink_unlink(u->sink);
932
933 if (u->thread) {
934 pa_asyncmsgq_send(u->thread_mq.inq, NULL, PA_MESSAGE_SHUTDOWN, NULL, 0, NULL);
935 pa_thread_free(u->thread);
936 }
937
938 pa_thread_mq_done(&u->thread_mq);
939
940 if (u->sink)
941 pa_sink_unref(u->sink);
942
943 if (u->memchunk.memblock)
944 pa_memblock_unref(u->memchunk.memblock);
945
946 if (u->alsa_rtpoll_item)
947 pa_rtpoll_item_free(u->alsa_rtpoll_item);
948
949 if (u->rtpoll)
950 pa_rtpoll_free(u->rtpoll);
951
952 if (u->mixer_fdl)
953 pa_alsa_fdlist_free(u->mixer_fdl);
954
955 if (u->mixer_handle)
956 snd_mixer_close(u->mixer_handle);
957
958 if (u->pcm_handle) {
959 snd_pcm_drop(u->pcm_handle);
960 snd_pcm_close(u->pcm_handle);
961 }
962
963 pa_xfree(u->device_name);
964 pa_xfree(u);
965
966 snd_config_update_free_global();
967 }