]> code.delx.au - pulseaudio/blob - src/modules/alsa/module-alsa-card.c
7c6b778c63202018c95779aa43b5747678610fa8
[pulseaudio] / src / modules / alsa / module-alsa-card.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2009 Lennart Poettering
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <pulse/xmalloc.h>
27
28 #include <pulsecore/core-util.h>
29 #include <pulsecore/i18n.h>
30 #include <pulsecore/modargs.h>
31 #include <pulsecore/queue.h>
32
33 #include <modules/reserve-wrap.h>
34
35 #ifdef HAVE_UDEV
36 #include <modules/udev-util.h>
37 #endif
38
39 #include "alsa-util.h"
40 #include "alsa-sink.h"
41 #include "alsa-source.h"
42 #include "module-alsa-card-symdef.h"
43
44 PA_MODULE_AUTHOR("Lennart Poettering");
45 PA_MODULE_DESCRIPTION("ALSA Card");
46 PA_MODULE_VERSION(PACKAGE_VERSION);
47 PA_MODULE_LOAD_ONCE(FALSE);
48 PA_MODULE_USAGE(
49 "name=<name for the card/sink/source, to be prefixed> "
50 "card_name=<name for the card> "
51 "card_properties=<properties for the card> "
52 "sink_name=<name for the sink> "
53 "sink_properties=<properties for the sink> "
54 "source_name=<name for the source> "
55 "source_properties=<properties for the source> "
56 "namereg_fail=<when false attempt to synthesise new names if they are already taken> "
57 "device_id=<ALSA card index> "
58 "format=<sample format> "
59 "rate=<sample rate> "
60 "fragments=<number of fragments> "
61 "fragment_size=<fragment size> "
62 "mmap=<enable memory mapping?> "
63 "tsched=<enable system timer based scheduling mode?> "
64 "tsched_buffer_size=<buffer size when using timer based scheduling> "
65 "tsched_buffer_watermark=<lower fill watermark> "
66 "profile=<profile name> "
67 "ignore_dB=<ignore dB information from the device?> "
68 "sync_volume=<syncronize sw and hw voluchanges in IO-thread?> "
69 "profile_set=<profile set configuration file> ");
70
71 static const char* const valid_modargs[] = {
72 "name",
73 "card_name",
74 "card_properties",
75 "sink_name",
76 "sink_properties",
77 "source_name",
78 "source_properties",
79 "namereg_fail",
80 "device_id",
81 "format",
82 "rate",
83 "fragments",
84 "fragment_size",
85 "mmap",
86 "tsched",
87 "tsched_buffer_size",
88 "tsched_buffer_watermark",
89 "profile",
90 "ignore_dB",
91 "sync_volume",
92 "profile_set",
93 NULL
94 };
95
96 #define DEFAULT_DEVICE_ID "0"
97
98 struct userdata {
99 pa_core *core;
100 pa_module *module;
101
102 char *device_id;
103
104 pa_card *card;
105
106 pa_modargs *modargs;
107
108 pa_alsa_profile_set *profile_set;
109 };
110
111 struct profile_data {
112 pa_alsa_profile *profile;
113 };
114
115 static void add_profiles(struct userdata *u, pa_hashmap *h) {
116 pa_alsa_profile *ap;
117 void *state;
118
119 pa_assert(u);
120 pa_assert(h);
121
122 PA_HASHMAP_FOREACH(ap, u->profile_set->profiles, state) {
123 struct profile_data *d;
124 pa_card_profile *cp;
125 pa_alsa_mapping *m;
126 uint32_t idx;
127
128 cp = pa_card_profile_new(ap->name, ap->description, sizeof(struct profile_data));
129 cp->priority = ap->priority;
130
131 if (ap->output_mappings) {
132 cp->n_sinks = pa_idxset_size(ap->output_mappings);
133
134 PA_IDXSET_FOREACH(m, ap->output_mappings, idx)
135 if (m->channel_map.channels > cp->max_sink_channels)
136 cp->max_sink_channels = m->channel_map.channels;
137 }
138
139 if (ap->input_mappings) {
140 cp->n_sources = pa_idxset_size(ap->input_mappings);
141
142 PA_IDXSET_FOREACH(m, ap->input_mappings, idx)
143 if (m->channel_map.channels > cp->max_source_channels)
144 cp->max_source_channels = m->channel_map.channels;
145 }
146
147 d = PA_CARD_PROFILE_DATA(cp);
148 d->profile = ap;
149
150 pa_hashmap_put(h, cp->name, cp);
151 }
152 }
153
154 static void add_disabled_profile(pa_hashmap *profiles) {
155 pa_card_profile *p;
156 struct profile_data *d;
157
158 p = pa_card_profile_new("off", _("Off"), sizeof(struct profile_data));
159
160 d = PA_CARD_PROFILE_DATA(p);
161 d->profile = NULL;
162
163 pa_hashmap_put(profiles, p->name, p);
164 }
165
166 static int card_set_profile(pa_card *c, pa_card_profile *new_profile) {
167 struct userdata *u;
168 struct profile_data *nd, *od;
169 uint32_t idx;
170 pa_alsa_mapping *am;
171 pa_queue *sink_inputs = NULL, *source_outputs = NULL;
172
173 pa_assert(c);
174 pa_assert(new_profile);
175 pa_assert_se(u = c->userdata);
176
177 nd = PA_CARD_PROFILE_DATA(new_profile);
178 od = PA_CARD_PROFILE_DATA(c->active_profile);
179
180 if (od->profile && od->profile->output_mappings)
181 PA_IDXSET_FOREACH(am, od->profile->output_mappings, idx) {
182 if (!am->sink)
183 continue;
184
185 if (nd->profile &&
186 nd->profile->output_mappings &&
187 pa_idxset_get_by_data(nd->profile->output_mappings, am, NULL))
188 continue;
189
190 sink_inputs = pa_sink_move_all_start(am->sink, sink_inputs);
191 pa_alsa_sink_free(am->sink);
192 am->sink = NULL;
193 }
194
195 if (od->profile && od->profile->input_mappings)
196 PA_IDXSET_FOREACH(am, od->profile->input_mappings, idx) {
197 if (!am->source)
198 continue;
199
200 if (nd->profile &&
201 nd->profile->input_mappings &&
202 pa_idxset_get_by_data(nd->profile->input_mappings, am, NULL))
203 continue;
204
205 source_outputs = pa_source_move_all_start(am->source, source_outputs);
206 pa_alsa_source_free(am->source);
207 am->source = NULL;
208 }
209
210 if (nd->profile && nd->profile->output_mappings)
211 PA_IDXSET_FOREACH(am, nd->profile->output_mappings, idx) {
212
213 if (!am->sink)
214 am->sink = pa_alsa_sink_new(c->module, u->modargs, __FILE__, c, am);
215
216 if (sink_inputs && am->sink) {
217 pa_sink_move_all_finish(am->sink, sink_inputs, FALSE);
218 sink_inputs = NULL;
219 }
220 }
221
222 if (nd->profile && nd->profile->input_mappings)
223 PA_IDXSET_FOREACH(am, nd->profile->input_mappings, idx) {
224
225 if (!am->source)
226 am->source = pa_alsa_source_new(c->module, u->modargs, __FILE__, c, am);
227
228 if (source_outputs && am->source) {
229 pa_source_move_all_finish(am->source, source_outputs, FALSE);
230 source_outputs = NULL;
231 }
232 }
233
234 if (sink_inputs)
235 pa_sink_move_all_fail(sink_inputs);
236
237 if (source_outputs)
238 pa_source_move_all_fail(source_outputs);
239
240 return 0;
241 }
242
243 static void init_profile(struct userdata *u) {
244 uint32_t idx;
245 pa_alsa_mapping *am;
246 struct profile_data *d;
247
248 pa_assert(u);
249
250 d = PA_CARD_PROFILE_DATA(u->card->active_profile);
251
252 if (d->profile && d->profile->output_mappings)
253 PA_IDXSET_FOREACH(am, d->profile->output_mappings, idx)
254 am->sink = pa_alsa_sink_new(u->module, u->modargs, __FILE__, u->card, am);
255
256 if (d->profile && d->profile->input_mappings)
257 PA_IDXSET_FOREACH(am, d->profile->input_mappings, idx)
258 am->source = pa_alsa_source_new(u->module, u->modargs, __FILE__, u->card, am);
259 }
260
261 static void set_card_name(pa_card_new_data *data, pa_modargs *ma, const char *device_id) {
262 char *t;
263 const char *n;
264
265 pa_assert(data);
266 pa_assert(ma);
267 pa_assert(device_id);
268
269 if ((n = pa_modargs_get_value(ma, "card_name", NULL))) {
270 pa_card_new_data_set_name(data, n);
271 data->namereg_fail = TRUE;
272 return;
273 }
274
275 if ((n = pa_modargs_get_value(ma, "name", NULL)))
276 data->namereg_fail = TRUE;
277 else {
278 n = device_id;
279 data->namereg_fail = FALSE;
280 }
281
282 t = pa_sprintf_malloc("alsa_card.%s", n);
283 pa_card_new_data_set_name(data, t);
284 pa_xfree(t);
285 }
286
287 int pa__init(pa_module *m) {
288 pa_card_new_data data;
289 pa_modargs *ma;
290 int alsa_card_index;
291 struct userdata *u;
292 pa_reserve_wrapper *reserve = NULL;
293 const char *description;
294 char *fn = NULL;
295 pa_bool_t namereg_fail = FALSE;
296
297 pa_alsa_refcnt_inc();
298
299 pa_assert(m);
300
301 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
302 pa_log("Failed to parse module arguments");
303 goto fail;
304 }
305
306 m->userdata = u = pa_xnew0(struct userdata, 1);
307 u->core = m->core;
308 u->module = m;
309 u->device_id = pa_xstrdup(pa_modargs_get_value(ma, "device_id", DEFAULT_DEVICE_ID));
310 u->modargs = ma;
311
312 if ((alsa_card_index = snd_card_get_index(u->device_id)) < 0) {
313 pa_log("Card '%s' doesn't exist: %s", u->device_id, pa_alsa_strerror(alsa_card_index));
314 goto fail;
315 }
316
317 if (!pa_in_system_mode()) {
318 char *rname;
319
320 if ((rname = pa_alsa_get_reserve_name(u->device_id))) {
321 reserve = pa_reserve_wrapper_get(m->core, rname);
322 pa_xfree(rname);
323
324 if (!reserve)
325 goto fail;
326 }
327 }
328
329 #ifdef HAVE_UDEV
330 fn = pa_udev_get_property(alsa_card_index, "PULSE_PROFILE_SET");
331 #endif
332
333 if (pa_modargs_get_value(ma, "profile_set", NULL)) {
334 pa_xfree(fn);
335 fn = pa_xstrdup(pa_modargs_get_value(ma, "profile_set", NULL));
336 }
337
338 u->profile_set = pa_alsa_profile_set_new(fn, &u->core->default_channel_map);
339 pa_xfree(fn);
340
341 if (!u->profile_set)
342 goto fail;
343
344 pa_alsa_profile_set_probe(u->profile_set, u->device_id, &m->core->default_sample_spec, m->core->default_n_fragments, m->core->default_fragment_size_msec);
345 pa_alsa_profile_set_dump(u->profile_set);
346
347 pa_card_new_data_init(&data);
348 data.driver = __FILE__;
349 data.module = m;
350
351 pa_alsa_init_proplist_card(m->core, data.proplist, alsa_card_index);
352
353 pa_proplist_sets(data.proplist, PA_PROP_DEVICE_STRING, u->device_id);
354 pa_alsa_init_description(data.proplist);
355 set_card_name(&data, ma, u->device_id);
356
357 /* We need to give pa_modargs_get_value_boolean() a pointer to a local
358 * variable instead of using &data.namereg_fail directly, because
359 * data.namereg_fail is a bitfield and taking the address of a bitfield
360 * variable is impossible. */
361 namereg_fail = data.namereg_fail;
362 if (pa_modargs_get_value_boolean(ma, "namereg_fail", &namereg_fail) < 0) {
363 pa_log("Failed to parse namereg_fail argument.");
364 pa_card_new_data_done(&data);
365 goto fail;
366 }
367 data.namereg_fail = namereg_fail;
368
369 if (reserve)
370 if ((description = pa_proplist_gets(data.proplist, PA_PROP_DEVICE_DESCRIPTION)))
371 pa_reserve_wrapper_set_application_device_name(reserve, description);
372
373 data.profiles = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
374 add_profiles(u, data.profiles);
375
376 if (pa_hashmap_isempty(data.profiles)) {
377 pa_log("Failed to find a working profile.");
378 pa_card_new_data_done(&data);
379 goto fail;
380 }
381
382 add_disabled_profile(data.profiles);
383
384 if (pa_modargs_get_proplist(ma, "card_properties", data.proplist, PA_UPDATE_REPLACE) < 0) {
385 pa_log("Invalid properties");
386 pa_card_new_data_done(&data);
387 goto fail;
388 }
389
390 u->card = pa_card_new(m->core, &data);
391 pa_card_new_data_done(&data);
392
393 if (!u->card)
394 goto fail;
395
396 u->card->userdata = u;
397 u->card->set_profile = card_set_profile;
398
399 init_profile(u);
400
401 if (reserve)
402 pa_reserve_wrapper_unref(reserve);
403
404 if (!pa_hashmap_isempty(u->profile_set->decibel_fixes))
405 pa_log_warn("Card %s uses decibel fixes (i.e. overrides the decibel information for some alsa volume elements). "
406 "Please note that this feature is meant just as a help for figuring out the correct decibel values. "
407 "Pulseaudio is not the correct place to maintain the decibel mappings! The fixed decibel values "
408 "should be sent to ALSA developers so that they can fix the driver. If it turns out that this feature "
409 "is abused (i.e. fixes are not pushed to ALSA), the decibel fix feature may be removed in some future "
410 "Pulseaudio version.", u->card->name);
411
412 return 0;
413
414 fail:
415 if (reserve)
416 pa_reserve_wrapper_unref(reserve);
417
418 pa__done(m);
419
420 return -1;
421 }
422
423 int pa__get_n_used(pa_module *m) {
424 struct userdata *u;
425 int n = 0;
426 uint32_t idx;
427 pa_sink *sink;
428 pa_source *source;
429
430 pa_assert(m);
431 pa_assert_se(u = m->userdata);
432 pa_assert(u->card);
433
434 PA_IDXSET_FOREACH(sink, u->card->sinks, idx)
435 n += pa_sink_linked_by(sink);
436
437 PA_IDXSET_FOREACH(source, u->card->sources, idx)
438 n += pa_source_linked_by(source);
439
440 return n;
441 }
442
443 void pa__done(pa_module*m) {
444 struct userdata *u;
445
446 pa_assert(m);
447
448 if (!(u = m->userdata))
449 goto finish;
450
451 if (u->card && u->card->sinks) {
452 pa_sink *s;
453
454 while ((s = pa_idxset_steal_first(u->card->sinks, NULL)))
455 pa_alsa_sink_free(s);
456 }
457
458 if (u->card && u->card->sources) {
459 pa_source *s;
460
461 while ((s = pa_idxset_steal_first(u->card->sources, NULL)))
462 pa_alsa_source_free(s);
463 }
464
465 if (u->card)
466 pa_card_free(u->card);
467
468 if (u->modargs)
469 pa_modargs_free(u->modargs);
470
471 if (u->profile_set)
472 pa_alsa_profile_set_free(u->profile_set);
473
474 pa_xfree(u->device_id);
475 pa_xfree(u);
476
477 finish:
478 pa_alsa_refcnt_dec();
479 }