2 * soc-core.c -- ALSA SoC Audio Layer
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
7 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
8 * with code, comments and ideas from :-
9 * Richard Purdie <richard@openedhand.com>
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
17 * o Add hw rules to enforce rates, etc.
18 * o More testing with other codecs/machines.
19 * o Add more codecs and platforms to ensure good API coverage.
20 * o Support TDM on PCM and I2S
23 #include <linux/module.h>
24 #include <linux/moduleparam.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
28 #include <linux/bitops.h>
29 #include <linux/debugfs.h>
30 #include <linux/platform_device.h>
31 #include <sound/core.h>
32 #include <sound/pcm.h>
33 #include <sound/pcm_params.h>
34 #include <sound/soc.h>
35 #include <sound/soc-dapm.h>
36 #include <sound/initval.h>
38 static DEFINE_MUTEX(pcm_mutex
);
39 static DEFINE_MUTEX(io_mutex
);
40 static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq
);
42 #ifdef CONFIG_DEBUG_FS
43 static struct dentry
*debugfs_root
;
46 static DEFINE_MUTEX(client_mutex
);
47 static LIST_HEAD(card_list
);
48 static LIST_HEAD(dai_list
);
49 static LIST_HEAD(platform_list
);
50 static LIST_HEAD(codec_list
);
52 static int snd_soc_register_card(struct snd_soc_card
*card
);
53 static int snd_soc_unregister_card(struct snd_soc_card
*card
);
56 * This is a timeout to do a DAPM powerdown after a stream is closed().
57 * It can be used to eliminate pops between different playback streams, e.g.
58 * between two audio tracks.
60 static int pmdown_time
= 5000;
61 module_param(pmdown_time
, int, 0);
62 MODULE_PARM_DESC(pmdown_time
, "DAPM stream powerdown time (msecs)");
65 * This function forces any delayed work to be queued and run.
67 static int run_delayed_work(struct delayed_work
*dwork
)
71 /* cancel any work waiting to be queued. */
72 ret
= cancel_delayed_work(dwork
);
74 /* if there was any work waiting then we run it now and
75 * wait for it's completion */
77 schedule_delayed_work(dwork
, 0);
78 flush_scheduled_work();
83 #ifdef CONFIG_SND_SOC_AC97_BUS
84 /* unregister ac97 codec */
85 static int soc_ac97_dev_unregister(struct snd_soc_codec
*codec
)
87 if (codec
->ac97
->dev
.bus
)
88 device_unregister(&codec
->ac97
->dev
);
92 /* stop no dev release warning */
93 static void soc_ac97_device_release(struct device
*dev
){}
95 /* register ac97 codec to bus */
96 static int soc_ac97_dev_register(struct snd_soc_codec
*codec
)
100 codec
->ac97
->dev
.bus
= &ac97_bus_type
;
101 codec
->ac97
->dev
.parent
= NULL
;
102 codec
->ac97
->dev
.release
= soc_ac97_device_release
;
104 dev_set_name(&codec
->ac97
->dev
, "%d-%d:%s",
105 codec
->card
->number
, 0, codec
->name
);
106 err
= device_register(&codec
->ac97
->dev
);
108 snd_printk(KERN_ERR
"Can't register ac97 bus\n");
109 codec
->ac97
->dev
.bus
= NULL
;
117 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
118 * then initialized and any private data can be allocated. This also calls
119 * startup for the cpu DAI, platform, machine and codec DAI.
121 static int soc_pcm_open(struct snd_pcm_substream
*substream
)
123 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
124 struct snd_soc_device
*socdev
= rtd
->socdev
;
125 struct snd_soc_card
*card
= socdev
->card
;
126 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
127 struct snd_soc_dai_link
*machine
= rtd
->dai
;
128 struct snd_soc_platform
*platform
= card
->platform
;
129 struct snd_soc_dai
*cpu_dai
= machine
->cpu_dai
;
130 struct snd_soc_dai
*codec_dai
= machine
->codec_dai
;
133 mutex_lock(&pcm_mutex
);
135 /* startup the audio subsystem */
136 if (cpu_dai
->ops
->startup
) {
137 ret
= cpu_dai
->ops
->startup(substream
, cpu_dai
);
139 printk(KERN_ERR
"asoc: can't open interface %s\n",
145 if (platform
->pcm_ops
->open
) {
146 ret
= platform
->pcm_ops
->open(substream
);
148 printk(KERN_ERR
"asoc: can't open platform %s\n", platform
->name
);
153 if (codec_dai
->ops
->startup
) {
154 ret
= codec_dai
->ops
->startup(substream
, codec_dai
);
156 printk(KERN_ERR
"asoc: can't open codec %s\n",
162 if (machine
->ops
&& machine
->ops
->startup
) {
163 ret
= machine
->ops
->startup(substream
);
165 printk(KERN_ERR
"asoc: %s startup failed\n", machine
->name
);
170 /* Check that the codec and cpu DAI's are compatible */
171 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
172 runtime
->hw
.rate_min
=
173 max(codec_dai
->playback
.rate_min
,
174 cpu_dai
->playback
.rate_min
);
175 runtime
->hw
.rate_max
=
176 min(codec_dai
->playback
.rate_max
,
177 cpu_dai
->playback
.rate_max
);
178 runtime
->hw
.channels_min
=
179 max(codec_dai
->playback
.channels_min
,
180 cpu_dai
->playback
.channels_min
);
181 runtime
->hw
.channels_max
=
182 min(codec_dai
->playback
.channels_max
,
183 cpu_dai
->playback
.channels_max
);
184 runtime
->hw
.formats
=
185 codec_dai
->playback
.formats
& cpu_dai
->playback
.formats
;
187 codec_dai
->playback
.rates
& cpu_dai
->playback
.rates
;
189 runtime
->hw
.rate_min
=
190 max(codec_dai
->capture
.rate_min
,
191 cpu_dai
->capture
.rate_min
);
192 runtime
->hw
.rate_max
=
193 min(codec_dai
->capture
.rate_max
,
194 cpu_dai
->capture
.rate_max
);
195 runtime
->hw
.channels_min
=
196 max(codec_dai
->capture
.channels_min
,
197 cpu_dai
->capture
.channels_min
);
198 runtime
->hw
.channels_max
=
199 min(codec_dai
->capture
.channels_max
,
200 cpu_dai
->capture
.channels_max
);
201 runtime
->hw
.formats
=
202 codec_dai
->capture
.formats
& cpu_dai
->capture
.formats
;
204 codec_dai
->capture
.rates
& cpu_dai
->capture
.rates
;
207 snd_pcm_limit_hw_rates(runtime
);
208 if (!runtime
->hw
.rates
) {
209 printk(KERN_ERR
"asoc: %s <-> %s No matching rates\n",
210 codec_dai
->name
, cpu_dai
->name
);
213 if (!runtime
->hw
.formats
) {
214 printk(KERN_ERR
"asoc: %s <-> %s No matching formats\n",
215 codec_dai
->name
, cpu_dai
->name
);
218 if (!runtime
->hw
.channels_min
|| !runtime
->hw
.channels_max
) {
219 printk(KERN_ERR
"asoc: %s <-> %s No matching channels\n",
220 codec_dai
->name
, cpu_dai
->name
);
224 pr_debug("asoc: %s <-> %s info:\n", codec_dai
->name
, cpu_dai
->name
);
225 pr_debug("asoc: rate mask 0x%x\n", runtime
->hw
.rates
);
226 pr_debug("asoc: min ch %d max ch %d\n", runtime
->hw
.channels_min
,
227 runtime
->hw
.channels_max
);
228 pr_debug("asoc: min rate %d max rate %d\n", runtime
->hw
.rate_min
,
229 runtime
->hw
.rate_max
);
231 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
232 cpu_dai
->playback
.active
= codec_dai
->playback
.active
= 1;
234 cpu_dai
->capture
.active
= codec_dai
->capture
.active
= 1;
235 cpu_dai
->active
= codec_dai
->active
= 1;
236 cpu_dai
->runtime
= runtime
;
237 card
->codec
->active
++;
238 mutex_unlock(&pcm_mutex
);
242 if (machine
->ops
&& machine
->ops
->shutdown
)
243 machine
->ops
->shutdown(substream
);
246 if (platform
->pcm_ops
->close
)
247 platform
->pcm_ops
->close(substream
);
250 if (cpu_dai
->ops
->shutdown
)
251 cpu_dai
->ops
->shutdown(substream
, cpu_dai
);
253 mutex_unlock(&pcm_mutex
);
258 * Power down the audio subsystem pmdown_time msecs after close is called.
259 * This is to ensure there are no pops or clicks in between any music tracks
260 * due to DAPM power cycling.
262 static void close_delayed_work(struct work_struct
*work
)
264 struct snd_soc_card
*card
= container_of(work
, struct snd_soc_card
,
266 struct snd_soc_device
*socdev
= card
->socdev
;
267 struct snd_soc_codec
*codec
= card
->codec
;
268 struct snd_soc_dai
*codec_dai
;
271 mutex_lock(&pcm_mutex
);
272 for (i
= 0; i
< codec
->num_dai
; i
++) {
273 codec_dai
= &codec
->dai
[i
];
275 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
276 codec_dai
->playback
.stream_name
,
277 codec_dai
->playback
.active
? "active" : "inactive",
278 codec_dai
->pop_wait
? "yes" : "no");
280 /* are we waiting on this codec DAI stream */
281 if (codec_dai
->pop_wait
== 1) {
283 /* Reduce power if no longer active */
284 if (codec
->active
== 0) {
285 pr_debug("pop wq D1 %s %s\n", codec
->name
,
286 codec_dai
->playback
.stream_name
);
287 snd_soc_dapm_set_bias_level(socdev
,
288 SND_SOC_BIAS_PREPARE
);
291 codec_dai
->pop_wait
= 0;
292 snd_soc_dapm_stream_event(codec
,
293 codec_dai
->playback
.stream_name
,
294 SND_SOC_DAPM_STREAM_STOP
);
296 /* Fall into standby if no longer active */
297 if (codec
->active
== 0) {
298 pr_debug("pop wq D3 %s %s\n", codec
->name
,
299 codec_dai
->playback
.stream_name
);
300 snd_soc_dapm_set_bias_level(socdev
,
301 SND_SOC_BIAS_STANDBY
);
305 mutex_unlock(&pcm_mutex
);
309 * Called by ALSA when a PCM substream is closed. Private data can be
310 * freed here. The cpu DAI, codec DAI, machine and platform are also
313 static int soc_codec_close(struct snd_pcm_substream
*substream
)
315 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
316 struct snd_soc_device
*socdev
= rtd
->socdev
;
317 struct snd_soc_card
*card
= socdev
->card
;
318 struct snd_soc_dai_link
*machine
= rtd
->dai
;
319 struct snd_soc_platform
*platform
= card
->platform
;
320 struct snd_soc_dai
*cpu_dai
= machine
->cpu_dai
;
321 struct snd_soc_dai
*codec_dai
= machine
->codec_dai
;
322 struct snd_soc_codec
*codec
= card
->codec
;
324 mutex_lock(&pcm_mutex
);
326 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
327 cpu_dai
->playback
.active
= codec_dai
->playback
.active
= 0;
329 cpu_dai
->capture
.active
= codec_dai
->capture
.active
= 0;
331 if (codec_dai
->playback
.active
== 0 &&
332 codec_dai
->capture
.active
== 0) {
333 cpu_dai
->active
= codec_dai
->active
= 0;
337 /* Muting the DAC suppresses artifacts caused during digital
338 * shutdown, for example from stopping clocks.
340 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
341 snd_soc_dai_digital_mute(codec_dai
, 1);
343 if (cpu_dai
->ops
->shutdown
)
344 cpu_dai
->ops
->shutdown(substream
, cpu_dai
);
346 if (codec_dai
->ops
->shutdown
)
347 codec_dai
->ops
->shutdown(substream
, codec_dai
);
349 if (machine
->ops
&& machine
->ops
->shutdown
)
350 machine
->ops
->shutdown(substream
);
352 if (platform
->pcm_ops
->close
)
353 platform
->pcm_ops
->close(substream
);
354 cpu_dai
->runtime
= NULL
;
356 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
357 /* start delayed pop wq here for playback streams */
358 codec_dai
->pop_wait
= 1;
359 schedule_delayed_work(&card
->delayed_work
,
360 msecs_to_jiffies(pmdown_time
));
362 /* capture streams can be powered down now */
363 snd_soc_dapm_stream_event(codec
,
364 codec_dai
->capture
.stream_name
,
365 SND_SOC_DAPM_STREAM_STOP
);
367 if (codec
->active
== 0 && codec_dai
->pop_wait
== 0)
368 snd_soc_dapm_set_bias_level(socdev
,
369 SND_SOC_BIAS_STANDBY
);
372 mutex_unlock(&pcm_mutex
);
377 * Called by ALSA when the PCM substream is prepared, can set format, sample
378 * rate, etc. This function is non atomic and can be called multiple times,
379 * it can refer to the runtime info.
381 static int soc_pcm_prepare(struct snd_pcm_substream
*substream
)
383 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
384 struct snd_soc_device
*socdev
= rtd
->socdev
;
385 struct snd_soc_card
*card
= socdev
->card
;
386 struct snd_soc_dai_link
*machine
= rtd
->dai
;
387 struct snd_soc_platform
*platform
= card
->platform
;
388 struct snd_soc_dai
*cpu_dai
= machine
->cpu_dai
;
389 struct snd_soc_dai
*codec_dai
= machine
->codec_dai
;
390 struct snd_soc_codec
*codec
= card
->codec
;
393 mutex_lock(&pcm_mutex
);
395 if (machine
->ops
&& machine
->ops
->prepare
) {
396 ret
= machine
->ops
->prepare(substream
);
398 printk(KERN_ERR
"asoc: machine prepare error\n");
403 if (platform
->pcm_ops
->prepare
) {
404 ret
= platform
->pcm_ops
->prepare(substream
);
406 printk(KERN_ERR
"asoc: platform prepare error\n");
411 if (codec_dai
->ops
->prepare
) {
412 ret
= codec_dai
->ops
->prepare(substream
, codec_dai
);
414 printk(KERN_ERR
"asoc: codec DAI prepare error\n");
419 if (cpu_dai
->ops
->prepare
) {
420 ret
= cpu_dai
->ops
->prepare(substream
, cpu_dai
);
422 printk(KERN_ERR
"asoc: cpu DAI prepare error\n");
427 /* cancel any delayed stream shutdown that is pending */
428 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
429 codec_dai
->pop_wait
) {
430 codec_dai
->pop_wait
= 0;
431 cancel_delayed_work(&card
->delayed_work
);
434 /* do we need to power up codec */
435 if (codec
->bias_level
!= SND_SOC_BIAS_ON
) {
436 snd_soc_dapm_set_bias_level(socdev
,
437 SND_SOC_BIAS_PREPARE
);
439 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
440 snd_soc_dapm_stream_event(codec
,
441 codec_dai
->playback
.stream_name
,
442 SND_SOC_DAPM_STREAM_START
);
444 snd_soc_dapm_stream_event(codec
,
445 codec_dai
->capture
.stream_name
,
446 SND_SOC_DAPM_STREAM_START
);
448 snd_soc_dapm_set_bias_level(socdev
, SND_SOC_BIAS_ON
);
449 snd_soc_dai_digital_mute(codec_dai
, 0);
452 /* codec already powered - power on widgets */
453 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
454 snd_soc_dapm_stream_event(codec
,
455 codec_dai
->playback
.stream_name
,
456 SND_SOC_DAPM_STREAM_START
);
458 snd_soc_dapm_stream_event(codec
,
459 codec_dai
->capture
.stream_name
,
460 SND_SOC_DAPM_STREAM_START
);
462 snd_soc_dai_digital_mute(codec_dai
, 0);
466 mutex_unlock(&pcm_mutex
);
471 * Called by ALSA when the hardware params are set by application. This
472 * function can also be called multiple times and can allocate buffers
473 * (using snd_pcm_lib_* ). It's non-atomic.
475 static int soc_pcm_hw_params(struct snd_pcm_substream
*substream
,
476 struct snd_pcm_hw_params
*params
)
478 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
479 struct snd_soc_device
*socdev
= rtd
->socdev
;
480 struct snd_soc_dai_link
*machine
= rtd
->dai
;
481 struct snd_soc_card
*card
= socdev
->card
;
482 struct snd_soc_platform
*platform
= card
->platform
;
483 struct snd_soc_dai
*cpu_dai
= machine
->cpu_dai
;
484 struct snd_soc_dai
*codec_dai
= machine
->codec_dai
;
487 mutex_lock(&pcm_mutex
);
489 if (machine
->ops
&& machine
->ops
->hw_params
) {
490 ret
= machine
->ops
->hw_params(substream
, params
);
492 printk(KERN_ERR
"asoc: machine hw_params failed\n");
497 if (codec_dai
->ops
->hw_params
) {
498 ret
= codec_dai
->ops
->hw_params(substream
, params
, codec_dai
);
500 printk(KERN_ERR
"asoc: can't set codec %s hw params\n",
506 if (cpu_dai
->ops
->hw_params
) {
507 ret
= cpu_dai
->ops
->hw_params(substream
, params
, cpu_dai
);
509 printk(KERN_ERR
"asoc: interface %s hw params failed\n",
515 if (platform
->pcm_ops
->hw_params
) {
516 ret
= platform
->pcm_ops
->hw_params(substream
, params
);
518 printk(KERN_ERR
"asoc: platform %s hw params failed\n",
525 mutex_unlock(&pcm_mutex
);
529 if (cpu_dai
->ops
->hw_free
)
530 cpu_dai
->ops
->hw_free(substream
, cpu_dai
);
533 if (codec_dai
->ops
->hw_free
)
534 codec_dai
->ops
->hw_free(substream
, codec_dai
);
537 if (machine
->ops
&& machine
->ops
->hw_free
)
538 machine
->ops
->hw_free(substream
);
540 mutex_unlock(&pcm_mutex
);
545 * Free's resources allocated by hw_params, can be called multiple times
547 static int soc_pcm_hw_free(struct snd_pcm_substream
*substream
)
549 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
550 struct snd_soc_device
*socdev
= rtd
->socdev
;
551 struct snd_soc_dai_link
*machine
= rtd
->dai
;
552 struct snd_soc_card
*card
= socdev
->card
;
553 struct snd_soc_platform
*platform
= card
->platform
;
554 struct snd_soc_dai
*cpu_dai
= machine
->cpu_dai
;
555 struct snd_soc_dai
*codec_dai
= machine
->codec_dai
;
556 struct snd_soc_codec
*codec
= card
->codec
;
558 mutex_lock(&pcm_mutex
);
560 /* apply codec digital mute */
562 snd_soc_dai_digital_mute(codec_dai
, 1);
564 /* free any machine hw params */
565 if (machine
->ops
&& machine
->ops
->hw_free
)
566 machine
->ops
->hw_free(substream
);
568 /* free any DMA resources */
569 if (platform
->pcm_ops
->hw_free
)
570 platform
->pcm_ops
->hw_free(substream
);
572 /* now free hw params for the DAI's */
573 if (codec_dai
->ops
->hw_free
)
574 codec_dai
->ops
->hw_free(substream
, codec_dai
);
576 if (cpu_dai
->ops
->hw_free
)
577 cpu_dai
->ops
->hw_free(substream
, cpu_dai
);
579 mutex_unlock(&pcm_mutex
);
583 static int soc_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
585 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
586 struct snd_soc_device
*socdev
= rtd
->socdev
;
587 struct snd_soc_card
*card
= socdev
->card
;
588 struct snd_soc_dai_link
*machine
= rtd
->dai
;
589 struct snd_soc_platform
*platform
= card
->platform
;
590 struct snd_soc_dai
*cpu_dai
= machine
->cpu_dai
;
591 struct snd_soc_dai
*codec_dai
= machine
->codec_dai
;
594 if (codec_dai
->ops
->trigger
) {
595 ret
= codec_dai
->ops
->trigger(substream
, cmd
, codec_dai
);
600 if (platform
->pcm_ops
->trigger
) {
601 ret
= platform
->pcm_ops
->trigger(substream
, cmd
);
606 if (cpu_dai
->ops
->trigger
) {
607 ret
= cpu_dai
->ops
->trigger(substream
, cmd
, cpu_dai
);
614 /* ASoC PCM operations */
615 static struct snd_pcm_ops soc_pcm_ops
= {
616 .open
= soc_pcm_open
,
617 .close
= soc_codec_close
,
618 .hw_params
= soc_pcm_hw_params
,
619 .hw_free
= soc_pcm_hw_free
,
620 .prepare
= soc_pcm_prepare
,
621 .trigger
= soc_pcm_trigger
,
625 /* powers down audio subsystem for suspend */
626 static int soc_suspend(struct platform_device
*pdev
, pm_message_t state
)
628 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
629 struct snd_soc_card
*card
= socdev
->card
;
630 struct snd_soc_platform
*platform
= card
->platform
;
631 struct snd_soc_codec_device
*codec_dev
= socdev
->codec_dev
;
632 struct snd_soc_codec
*codec
= card
->codec
;
635 /* Due to the resume being scheduled into a workqueue we could
636 * suspend before that's finished - wait for it to complete.
638 snd_power_lock(codec
->card
);
639 snd_power_wait(codec
->card
, SNDRV_CTL_POWER_D0
);
640 snd_power_unlock(codec
->card
);
642 /* we're going to block userspace touching us until resume completes */
643 snd_power_change_state(codec
->card
, SNDRV_CTL_POWER_D3hot
);
645 /* mute any active DAC's */
646 for (i
= 0; i
< card
->num_links
; i
++) {
647 struct snd_soc_dai
*dai
= card
->dai_link
[i
].codec_dai
;
648 if (dai
->ops
->digital_mute
&& dai
->playback
.active
)
649 dai
->ops
->digital_mute(dai
, 1);
652 /* suspend all pcms */
653 for (i
= 0; i
< card
->num_links
; i
++)
654 snd_pcm_suspend_all(card
->dai_link
[i
].pcm
);
656 if (card
->suspend_pre
)
657 card
->suspend_pre(pdev
, state
);
659 for (i
= 0; i
< card
->num_links
; i
++) {
660 struct snd_soc_dai
*cpu_dai
= card
->dai_link
[i
].cpu_dai
;
661 if (cpu_dai
->suspend
&& !cpu_dai
->ac97_control
)
662 cpu_dai
->suspend(cpu_dai
);
663 if (platform
->suspend
)
664 platform
->suspend(cpu_dai
);
667 /* close any waiting streams and save state */
668 run_delayed_work(&card
->delayed_work
);
669 codec
->suspend_bias_level
= codec
->bias_level
;
671 for (i
= 0; i
< codec
->num_dai
; i
++) {
672 char *stream
= codec
->dai
[i
].playback
.stream_name
;
674 snd_soc_dapm_stream_event(codec
, stream
,
675 SND_SOC_DAPM_STREAM_SUSPEND
);
676 stream
= codec
->dai
[i
].capture
.stream_name
;
678 snd_soc_dapm_stream_event(codec
, stream
,
679 SND_SOC_DAPM_STREAM_SUSPEND
);
682 if (codec_dev
->suspend
)
683 codec_dev
->suspend(pdev
, state
);
685 for (i
= 0; i
< card
->num_links
; i
++) {
686 struct snd_soc_dai
*cpu_dai
= card
->dai_link
[i
].cpu_dai
;
687 if (cpu_dai
->suspend
&& cpu_dai
->ac97_control
)
688 cpu_dai
->suspend(cpu_dai
);
691 if (card
->suspend_post
)
692 card
->suspend_post(pdev
, state
);
697 /* deferred resume work, so resume can complete before we finished
698 * setting our codec back up, which can be very slow on I2C
700 static void soc_resume_deferred(struct work_struct
*work
)
702 struct snd_soc_card
*card
= container_of(work
,
704 deferred_resume_work
);
705 struct snd_soc_device
*socdev
= card
->socdev
;
706 struct snd_soc_platform
*platform
= card
->platform
;
707 struct snd_soc_codec_device
*codec_dev
= socdev
->codec_dev
;
708 struct snd_soc_codec
*codec
= card
->codec
;
709 struct platform_device
*pdev
= to_platform_device(socdev
->dev
);
712 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
713 * so userspace apps are blocked from touching us
716 dev_dbg(socdev
->dev
, "starting resume work\n");
718 if (card
->resume_pre
)
719 card
->resume_pre(pdev
);
721 for (i
= 0; i
< card
->num_links
; i
++) {
722 struct snd_soc_dai
*cpu_dai
= card
->dai_link
[i
].cpu_dai
;
723 if (cpu_dai
->resume
&& cpu_dai
->ac97_control
)
724 cpu_dai
->resume(cpu_dai
);
727 if (codec_dev
->resume
)
728 codec_dev
->resume(pdev
);
730 for (i
= 0; i
< codec
->num_dai
; i
++) {
731 char *stream
= codec
->dai
[i
].playback
.stream_name
;
733 snd_soc_dapm_stream_event(codec
, stream
,
734 SND_SOC_DAPM_STREAM_RESUME
);
735 stream
= codec
->dai
[i
].capture
.stream_name
;
737 snd_soc_dapm_stream_event(codec
, stream
,
738 SND_SOC_DAPM_STREAM_RESUME
);
741 /* unmute any active DACs */
742 for (i
= 0; i
< card
->num_links
; i
++) {
743 struct snd_soc_dai
*dai
= card
->dai_link
[i
].codec_dai
;
744 if (dai
->ops
->digital_mute
&& dai
->playback
.active
)
745 dai
->ops
->digital_mute(dai
, 0);
748 for (i
= 0; i
< card
->num_links
; i
++) {
749 struct snd_soc_dai
*cpu_dai
= card
->dai_link
[i
].cpu_dai
;
750 if (cpu_dai
->resume
&& !cpu_dai
->ac97_control
)
751 cpu_dai
->resume(cpu_dai
);
752 if (platform
->resume
)
753 platform
->resume(cpu_dai
);
756 if (card
->resume_post
)
757 card
->resume_post(pdev
);
759 dev_dbg(socdev
->dev
, "resume work completed\n");
761 /* userspace can access us now we are back as we were before */
762 snd_power_change_state(codec
->card
, SNDRV_CTL_POWER_D0
);
765 /* powers up audio subsystem after a suspend */
766 static int soc_resume(struct platform_device
*pdev
)
768 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
769 struct snd_soc_card
*card
= socdev
->card
;
771 dev_dbg(socdev
->dev
, "scheduling resume work\n");
773 if (!schedule_work(&card
->deferred_resume_work
))
774 dev_err(socdev
->dev
, "resume work item may be lost\n");
780 #define soc_suspend NULL
781 #define soc_resume NULL
784 static void snd_soc_instantiate_card(struct snd_soc_card
*card
)
786 struct platform_device
*pdev
= container_of(card
->dev
,
787 struct platform_device
,
789 struct snd_soc_codec_device
*codec_dev
= card
->socdev
->codec_dev
;
790 struct snd_soc_platform
*platform
;
791 struct snd_soc_dai
*dai
;
792 int i
, found
, ret
, ac97
;
794 if (card
->instantiated
)
798 list_for_each_entry(platform
, &platform_list
, list
)
799 if (card
->platform
== platform
) {
804 dev_dbg(card
->dev
, "Platform %s not registered\n",
805 card
->platform
->name
);
810 for (i
= 0; i
< card
->num_links
; i
++) {
812 list_for_each_entry(dai
, &dai_list
, list
)
813 if (card
->dai_link
[i
].cpu_dai
== dai
) {
818 dev_dbg(card
->dev
, "DAI %s not registered\n",
819 card
->dai_link
[i
].cpu_dai
->name
);
823 if (card
->dai_link
[i
].cpu_dai
->ac97_control
)
827 /* If we have AC97 in the system then don't wait for the
828 * codec. This will need revisiting if we have to handle
829 * systems with mixed AC97 and non-AC97 parts. Only check for
830 * DAIs currently; we can't do this per link since some AC97
831 * codecs have non-AC97 DAIs.
834 for (i
= 0; i
< card
->num_links
; i
++) {
836 list_for_each_entry(dai
, &dai_list
, list
)
837 if (card
->dai_link
[i
].codec_dai
== dai
) {
842 dev_dbg(card
->dev
, "DAI %s not registered\n",
843 card
->dai_link
[i
].codec_dai
->name
);
848 /* Note that we do not current check for codec components */
850 dev_dbg(card
->dev
, "All components present, instantiating\n");
852 /* Found everything, bring it up */
854 ret
= card
->probe(pdev
);
859 for (i
= 0; i
< card
->num_links
; i
++) {
860 struct snd_soc_dai
*cpu_dai
= card
->dai_link
[i
].cpu_dai
;
861 if (cpu_dai
->probe
) {
862 ret
= cpu_dai
->probe(pdev
, cpu_dai
);
868 if (codec_dev
->probe
) {
869 ret
= codec_dev
->probe(pdev
);
874 if (platform
->probe
) {
875 ret
= platform
->probe(pdev
);
880 /* DAPM stream work */
881 INIT_DELAYED_WORK(&card
->delayed_work
, close_delayed_work
);
883 /* deferred resume work */
884 INIT_WORK(&card
->deferred_resume_work
, soc_resume_deferred
);
887 card
->instantiated
= 1;
892 if (codec_dev
->remove
)
893 codec_dev
->remove(pdev
);
896 for (i
--; i
>= 0; i
--) {
897 struct snd_soc_dai
*cpu_dai
= card
->dai_link
[i
].cpu_dai
;
899 cpu_dai
->remove(pdev
, cpu_dai
);
907 * Attempt to initialise any uninitalised cards. Must be called with
910 static void snd_soc_instantiate_cards(void)
912 struct snd_soc_card
*card
;
913 list_for_each_entry(card
, &card_list
, list
)
914 snd_soc_instantiate_card(card
);
917 /* probes a new socdev */
918 static int soc_probe(struct platform_device
*pdev
)
921 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
922 struct snd_soc_card
*card
= socdev
->card
;
924 /* Bodge while we push things out of socdev */
925 card
->socdev
= socdev
;
927 /* Bodge while we unpick instantiation */
928 card
->dev
= &pdev
->dev
;
929 ret
= snd_soc_register_card(card
);
931 dev_err(&pdev
->dev
, "Failed to register card\n");
938 /* removes a socdev */
939 static int soc_remove(struct platform_device
*pdev
)
942 struct snd_soc_device
*socdev
= platform_get_drvdata(pdev
);
943 struct snd_soc_card
*card
= socdev
->card
;
944 struct snd_soc_platform
*platform
= card
->platform
;
945 struct snd_soc_codec_device
*codec_dev
= socdev
->codec_dev
;
947 run_delayed_work(&card
->delayed_work
);
949 if (platform
->remove
)
950 platform
->remove(pdev
);
952 if (codec_dev
->remove
)
953 codec_dev
->remove(pdev
);
955 for (i
= 0; i
< card
->num_links
; i
++) {
956 struct snd_soc_dai
*cpu_dai
= card
->dai_link
[i
].cpu_dai
;
958 cpu_dai
->remove(pdev
, cpu_dai
);
964 snd_soc_unregister_card(card
);
969 /* ASoC platform driver */
970 static struct platform_driver soc_driver
= {
973 .owner
= THIS_MODULE
,
976 .remove
= soc_remove
,
977 .suspend
= soc_suspend
,
978 .resume
= soc_resume
,
981 /* create a new pcm */
982 static int soc_new_pcm(struct snd_soc_device
*socdev
,
983 struct snd_soc_dai_link
*dai_link
, int num
)
985 struct snd_soc_card
*card
= socdev
->card
;
986 struct snd_soc_codec
*codec
= card
->codec
;
987 struct snd_soc_platform
*platform
= card
->platform
;
988 struct snd_soc_dai
*codec_dai
= dai_link
->codec_dai
;
989 struct snd_soc_dai
*cpu_dai
= dai_link
->cpu_dai
;
990 struct snd_soc_pcm_runtime
*rtd
;
993 int ret
= 0, playback
= 0, capture
= 0;
995 rtd
= kzalloc(sizeof(struct snd_soc_pcm_runtime
), GFP_KERNEL
);
1000 rtd
->socdev
= socdev
;
1001 codec_dai
->codec
= card
->codec
;
1003 /* check client and interface hw capabilities */
1004 sprintf(new_name
, "%s %s-%d", dai_link
->stream_name
, codec_dai
->name
,
1007 if (codec_dai
->playback
.channels_min
)
1009 if (codec_dai
->capture
.channels_min
)
1012 ret
= snd_pcm_new(codec
->card
, new_name
, codec
->pcm_devs
++, playback
,
1015 printk(KERN_ERR
"asoc: can't create pcm for codec %s\n",
1021 dai_link
->pcm
= pcm
;
1022 pcm
->private_data
= rtd
;
1023 soc_pcm_ops
.mmap
= platform
->pcm_ops
->mmap
;
1024 soc_pcm_ops
.pointer
= platform
->pcm_ops
->pointer
;
1025 soc_pcm_ops
.ioctl
= platform
->pcm_ops
->ioctl
;
1026 soc_pcm_ops
.copy
= platform
->pcm_ops
->copy
;
1027 soc_pcm_ops
.silence
= platform
->pcm_ops
->silence
;
1028 soc_pcm_ops
.ack
= platform
->pcm_ops
->ack
;
1029 soc_pcm_ops
.page
= platform
->pcm_ops
->page
;
1032 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &soc_pcm_ops
);
1035 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &soc_pcm_ops
);
1037 ret
= platform
->pcm_new(codec
->card
, codec_dai
, pcm
);
1039 printk(KERN_ERR
"asoc: platform pcm constructor failed\n");
1044 pcm
->private_free
= platform
->pcm_free
;
1045 printk(KERN_INFO
"asoc: %s <-> %s mapping ok\n", codec_dai
->name
,
1050 /* codec register dump */
1051 static ssize_t
soc_codec_reg_show(struct snd_soc_codec
*codec
, char *buf
)
1053 int i
, step
= 1, count
= 0;
1055 if (!codec
->reg_cache_size
)
1058 if (codec
->reg_cache_step
)
1059 step
= codec
->reg_cache_step
;
1061 count
+= sprintf(buf
, "%s registers\n", codec
->name
);
1062 for (i
= 0; i
< codec
->reg_cache_size
; i
+= step
) {
1063 count
+= sprintf(buf
+ count
, "%2x: ", i
);
1064 if (count
>= PAGE_SIZE
- 1)
1067 if (codec
->display_register
)
1068 count
+= codec
->display_register(codec
, buf
+ count
,
1069 PAGE_SIZE
- count
, i
);
1071 count
+= snprintf(buf
+ count
, PAGE_SIZE
- count
,
1072 "%4x", codec
->read(codec
, i
));
1074 if (count
>= PAGE_SIZE
- 1)
1077 count
+= snprintf(buf
+ count
, PAGE_SIZE
- count
, "\n");
1078 if (count
>= PAGE_SIZE
- 1)
1082 /* Truncate count; min() would cause a warning */
1083 if (count
>= PAGE_SIZE
)
1084 count
= PAGE_SIZE
- 1;
1088 static ssize_t
codec_reg_show(struct device
*dev
,
1089 struct device_attribute
*attr
, char *buf
)
1091 struct snd_soc_device
*devdata
= dev_get_drvdata(dev
);
1092 return soc_codec_reg_show(devdata
->card
->codec
, buf
);
1095 static DEVICE_ATTR(codec_reg
, 0444, codec_reg_show
, NULL
);
1097 #ifdef CONFIG_DEBUG_FS
1098 static int codec_reg_open_file(struct inode
*inode
, struct file
*file
)
1100 file
->private_data
= inode
->i_private
;
1104 static ssize_t
codec_reg_read_file(struct file
*file
, char __user
*user_buf
,
1105 size_t count
, loff_t
*ppos
)
1108 struct snd_soc_codec
*codec
= file
->private_data
;
1109 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
1112 ret
= soc_codec_reg_show(codec
, buf
);
1114 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
1119 static ssize_t
codec_reg_write_file(struct file
*file
,
1120 const char __user
*user_buf
, size_t count
, loff_t
*ppos
)
1125 unsigned long reg
, value
;
1127 struct snd_soc_codec
*codec
= file
->private_data
;
1129 buf_size
= min(count
, (sizeof(buf
)-1));
1130 if (copy_from_user(buf
, user_buf
, buf_size
))
1134 if (codec
->reg_cache_step
)
1135 step
= codec
->reg_cache_step
;
1137 while (*start
== ' ')
1139 reg
= simple_strtoul(start
, &start
, 16);
1140 if ((reg
>= codec
->reg_cache_size
) || (reg
% step
))
1142 while (*start
== ' ')
1144 if (strict_strtoul(start
, 16, &value
))
1146 codec
->write(codec
, reg
, value
);
1150 static const struct file_operations codec_reg_fops
= {
1151 .open
= codec_reg_open_file
,
1152 .read
= codec_reg_read_file
,
1153 .write
= codec_reg_write_file
,
1156 static void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
1158 codec
->debugfs_reg
= debugfs_create_file("codec_reg", 0644,
1159 debugfs_root
, codec
,
1161 if (!codec
->debugfs_reg
)
1163 "ASoC: Failed to create codec register debugfs file\n");
1165 codec
->debugfs_pop_time
= debugfs_create_u32("dapm_pop_time", 0744,
1168 if (!codec
->debugfs_pop_time
)
1170 "Failed to create pop time debugfs file\n");
1173 static void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
1175 debugfs_remove(codec
->debugfs_pop_time
);
1176 debugfs_remove(codec
->debugfs_reg
);
1181 static inline void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
1185 static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
1191 * snd_soc_new_ac97_codec - initailise AC97 device
1192 * @codec: audio codec
1193 * @ops: AC97 bus operations
1194 * @num: AC97 codec number
1196 * Initialises AC97 codec resources for use by ad-hoc devices only.
1198 int snd_soc_new_ac97_codec(struct snd_soc_codec
*codec
,
1199 struct snd_ac97_bus_ops
*ops
, int num
)
1201 mutex_lock(&codec
->mutex
);
1203 codec
->ac97
= kzalloc(sizeof(struct snd_ac97
), GFP_KERNEL
);
1204 if (codec
->ac97
== NULL
) {
1205 mutex_unlock(&codec
->mutex
);
1209 codec
->ac97
->bus
= kzalloc(sizeof(struct snd_ac97_bus
), GFP_KERNEL
);
1210 if (codec
->ac97
->bus
== NULL
) {
1213 mutex_unlock(&codec
->mutex
);
1217 codec
->ac97
->bus
->ops
= ops
;
1218 codec
->ac97
->num
= num
;
1219 mutex_unlock(&codec
->mutex
);
1222 EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec
);
1225 * snd_soc_free_ac97_codec - free AC97 codec device
1226 * @codec: audio codec
1228 * Frees AC97 codec device resources.
1230 void snd_soc_free_ac97_codec(struct snd_soc_codec
*codec
)
1232 mutex_lock(&codec
->mutex
);
1233 kfree(codec
->ac97
->bus
);
1236 mutex_unlock(&codec
->mutex
);
1238 EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec
);
1241 * snd_soc_update_bits - update codec register bits
1242 * @codec: audio codec
1243 * @reg: codec register
1244 * @mask: register mask
1247 * Writes new register value.
1249 * Returns 1 for change else 0.
1251 int snd_soc_update_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
1252 unsigned short mask
, unsigned short value
)
1255 unsigned short old
, new;
1257 mutex_lock(&io_mutex
);
1258 old
= snd_soc_read(codec
, reg
);
1259 new = (old
& ~mask
) | value
;
1260 change
= old
!= new;
1262 snd_soc_write(codec
, reg
, new);
1264 mutex_unlock(&io_mutex
);
1267 EXPORT_SYMBOL_GPL(snd_soc_update_bits
);
1270 * snd_soc_test_bits - test register for change
1271 * @codec: audio codec
1272 * @reg: codec register
1273 * @mask: register mask
1276 * Tests a register with a new value and checks if the new value is
1277 * different from the old value.
1279 * Returns 1 for change else 0.
1281 int snd_soc_test_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
1282 unsigned short mask
, unsigned short value
)
1285 unsigned short old
, new;
1287 mutex_lock(&io_mutex
);
1288 old
= snd_soc_read(codec
, reg
);
1289 new = (old
& ~mask
) | value
;
1290 change
= old
!= new;
1291 mutex_unlock(&io_mutex
);
1295 EXPORT_SYMBOL_GPL(snd_soc_test_bits
);
1298 * snd_soc_new_pcms - create new sound card and pcms
1299 * @socdev: the SoC audio device
1300 * @idx: ALSA card index
1301 * @xid: card identification
1303 * Create a new sound card based upon the codec and interface pcms.
1305 * Returns 0 for success, else error.
1307 int snd_soc_new_pcms(struct snd_soc_device
*socdev
, int idx
, const char *xid
)
1309 struct snd_soc_card
*card
= socdev
->card
;
1310 struct snd_soc_codec
*codec
= card
->codec
;
1313 mutex_lock(&codec
->mutex
);
1315 /* register a sound card */
1316 ret
= snd_card_create(idx
, xid
, codec
->owner
, 0, &codec
->card
);
1318 printk(KERN_ERR
"asoc: can't create sound card for codec %s\n",
1320 mutex_unlock(&codec
->mutex
);
1324 codec
->card
->dev
= socdev
->dev
;
1325 codec
->card
->private_data
= codec
;
1326 strncpy(codec
->card
->driver
, codec
->name
, sizeof(codec
->card
->driver
));
1328 /* create the pcms */
1329 for (i
= 0; i
< card
->num_links
; i
++) {
1330 ret
= soc_new_pcm(socdev
, &card
->dai_link
[i
], i
);
1332 printk(KERN_ERR
"asoc: can't create pcm %s\n",
1333 card
->dai_link
[i
].stream_name
);
1334 mutex_unlock(&codec
->mutex
);
1339 mutex_unlock(&codec
->mutex
);
1342 EXPORT_SYMBOL_GPL(snd_soc_new_pcms
);
1345 * snd_soc_init_card - register sound card
1346 * @socdev: the SoC audio device
1348 * Register a SoC sound card. Also registers an AC97 device if the
1349 * codec is AC97 for ad hoc devices.
1351 * Returns 0 for success, else error.
1353 int snd_soc_init_card(struct snd_soc_device
*socdev
)
1355 struct snd_soc_card
*card
= socdev
->card
;
1356 struct snd_soc_codec
*codec
= card
->codec
;
1357 int ret
= 0, i
, ac97
= 0, err
= 0;
1359 for (i
= 0; i
< card
->num_links
; i
++) {
1360 if (card
->dai_link
[i
].init
) {
1361 err
= card
->dai_link
[i
].init(codec
);
1363 printk(KERN_ERR
"asoc: failed to init %s\n",
1364 card
->dai_link
[i
].stream_name
);
1368 if (card
->dai_link
[i
].codec_dai
->ac97_control
)
1371 snprintf(codec
->card
->shortname
, sizeof(codec
->card
->shortname
),
1373 snprintf(codec
->card
->longname
, sizeof(codec
->card
->longname
),
1374 "%s (%s)", card
->name
, codec
->name
);
1376 ret
= snd_card_register(codec
->card
);
1378 printk(KERN_ERR
"asoc: failed to register soundcard for %s\n",
1383 mutex_lock(&codec
->mutex
);
1384 #ifdef CONFIG_SND_SOC_AC97_BUS
1385 /* Only instantiate AC97 if not already done by the adaptor
1386 * for the generic AC97 subsystem.
1388 if (ac97
&& strcmp(codec
->name
, "AC97") != 0) {
1389 ret
= soc_ac97_dev_register(codec
);
1391 printk(KERN_ERR
"asoc: AC97 device register failed\n");
1392 snd_card_free(codec
->card
);
1393 mutex_unlock(&codec
->mutex
);
1399 err
= snd_soc_dapm_sys_add(socdev
->dev
);
1401 printk(KERN_WARNING
"asoc: failed to add dapm sysfs entries\n");
1403 err
= device_create_file(socdev
->dev
, &dev_attr_codec_reg
);
1405 printk(KERN_WARNING
"asoc: failed to add codec sysfs files\n");
1407 soc_init_codec_debugfs(codec
);
1408 mutex_unlock(&codec
->mutex
);
1413 EXPORT_SYMBOL_GPL(snd_soc_init_card
);
1416 * snd_soc_free_pcms - free sound card and pcms
1417 * @socdev: the SoC audio device
1419 * Frees sound card and pcms associated with the socdev.
1420 * Also unregister the codec if it is an AC97 device.
1422 void snd_soc_free_pcms(struct snd_soc_device
*socdev
)
1424 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
1425 #ifdef CONFIG_SND_SOC_AC97_BUS
1426 struct snd_soc_dai
*codec_dai
;
1430 mutex_lock(&codec
->mutex
);
1431 soc_cleanup_codec_debugfs(codec
);
1432 #ifdef CONFIG_SND_SOC_AC97_BUS
1433 for (i
= 0; i
< codec
->num_dai
; i
++) {
1434 codec_dai
= &codec
->dai
[i
];
1435 if (codec_dai
->ac97_control
&& codec
->ac97
&&
1436 strcmp(codec
->name
, "AC97") != 0) {
1437 soc_ac97_dev_unregister(codec
);
1445 snd_card_free(codec
->card
);
1446 device_remove_file(socdev
->dev
, &dev_attr_codec_reg
);
1447 mutex_unlock(&codec
->mutex
);
1449 EXPORT_SYMBOL_GPL(snd_soc_free_pcms
);
1452 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1453 * @substream: the pcm substream
1454 * @hw: the hardware parameters
1456 * Sets the substream runtime hardware parameters.
1458 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream
*substream
,
1459 const struct snd_pcm_hardware
*hw
)
1461 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1462 runtime
->hw
.info
= hw
->info
;
1463 runtime
->hw
.formats
= hw
->formats
;
1464 runtime
->hw
.period_bytes_min
= hw
->period_bytes_min
;
1465 runtime
->hw
.period_bytes_max
= hw
->period_bytes_max
;
1466 runtime
->hw
.periods_min
= hw
->periods_min
;
1467 runtime
->hw
.periods_max
= hw
->periods_max
;
1468 runtime
->hw
.buffer_bytes_max
= hw
->buffer_bytes_max
;
1469 runtime
->hw
.fifo_size
= hw
->fifo_size
;
1472 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams
);
1475 * snd_soc_cnew - create new control
1476 * @_template: control template
1477 * @data: control private data
1478 * @long_name: control long name
1480 * Create a new mixer control from a template control.
1482 * Returns 0 for success, else error.
1484 struct snd_kcontrol
*snd_soc_cnew(const struct snd_kcontrol_new
*_template
,
1485 void *data
, char *long_name
)
1487 struct snd_kcontrol_new
template;
1489 memcpy(&template, _template
, sizeof(template));
1491 template.name
= long_name
;
1494 return snd_ctl_new1(&template, data
);
1496 EXPORT_SYMBOL_GPL(snd_soc_cnew
);
1499 * snd_soc_add_controls - add an array of controls to a codec.
1500 * Convienience function to add a list of controls. Many codecs were
1501 * duplicating this code.
1503 * @codec: codec to add controls to
1504 * @controls: array of controls to add
1505 * @num_controls: number of elements in the array
1507 * Return 0 for success, else error.
1509 int snd_soc_add_controls(struct snd_soc_codec
*codec
,
1510 const struct snd_kcontrol_new
*controls
, int num_controls
)
1512 struct snd_card
*card
= codec
->card
;
1515 for (i
= 0; i
< num_controls
; i
++) {
1516 const struct snd_kcontrol_new
*control
= &controls
[i
];
1517 err
= snd_ctl_add(card
, snd_soc_cnew(control
, codec
, NULL
));
1519 dev_err(codec
->dev
, "%s: Failed to add %s\n",
1520 codec
->name
, control
->name
);
1527 EXPORT_SYMBOL_GPL(snd_soc_add_controls
);
1530 * snd_soc_info_enum_double - enumerated double mixer info callback
1531 * @kcontrol: mixer control
1532 * @uinfo: control element information
1534 * Callback to provide information about a double enumerated
1537 * Returns 0 for success.
1539 int snd_soc_info_enum_double(struct snd_kcontrol
*kcontrol
,
1540 struct snd_ctl_elem_info
*uinfo
)
1542 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1544 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1545 uinfo
->count
= e
->shift_l
== e
->shift_r
? 1 : 2;
1546 uinfo
->value
.enumerated
.items
= e
->max
;
1548 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
1549 uinfo
->value
.enumerated
.item
= e
->max
- 1;
1550 strcpy(uinfo
->value
.enumerated
.name
,
1551 e
->texts
[uinfo
->value
.enumerated
.item
]);
1554 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double
);
1557 * snd_soc_get_enum_double - enumerated double mixer get callback
1558 * @kcontrol: mixer control
1559 * @ucontrol: control element information
1561 * Callback to get the value of a double enumerated mixer.
1563 * Returns 0 for success.
1565 int snd_soc_get_enum_double(struct snd_kcontrol
*kcontrol
,
1566 struct snd_ctl_elem_value
*ucontrol
)
1568 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1569 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1570 unsigned short val
, bitmask
;
1572 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
1574 val
= snd_soc_read(codec
, e
->reg
);
1575 ucontrol
->value
.enumerated
.item
[0]
1576 = (val
>> e
->shift_l
) & (bitmask
- 1);
1577 if (e
->shift_l
!= e
->shift_r
)
1578 ucontrol
->value
.enumerated
.item
[1] =
1579 (val
>> e
->shift_r
) & (bitmask
- 1);
1583 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double
);
1586 * snd_soc_put_enum_double - enumerated double mixer put callback
1587 * @kcontrol: mixer control
1588 * @ucontrol: control element information
1590 * Callback to set the value of a double enumerated mixer.
1592 * Returns 0 for success.
1594 int snd_soc_put_enum_double(struct snd_kcontrol
*kcontrol
,
1595 struct snd_ctl_elem_value
*ucontrol
)
1597 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1598 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1600 unsigned short mask
, bitmask
;
1602 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
1604 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
1606 val
= ucontrol
->value
.enumerated
.item
[0] << e
->shift_l
;
1607 mask
= (bitmask
- 1) << e
->shift_l
;
1608 if (e
->shift_l
!= e
->shift_r
) {
1609 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
1611 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
1612 mask
|= (bitmask
- 1) << e
->shift_r
;
1615 return snd_soc_update_bits(codec
, e
->reg
, mask
, val
);
1617 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double
);
1620 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1621 * @kcontrol: mixer control
1622 * @ucontrol: control element information
1624 * Callback to get the value of a double semi enumerated mixer.
1626 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1627 * used for handling bitfield coded enumeration for example.
1629 * Returns 0 for success.
1631 int snd_soc_get_value_enum_double(struct snd_kcontrol
*kcontrol
,
1632 struct snd_ctl_elem_value
*ucontrol
)
1634 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1635 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1636 unsigned short reg_val
, val
, mux
;
1638 reg_val
= snd_soc_read(codec
, e
->reg
);
1639 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
1640 for (mux
= 0; mux
< e
->max
; mux
++) {
1641 if (val
== e
->values
[mux
])
1644 ucontrol
->value
.enumerated
.item
[0] = mux
;
1645 if (e
->shift_l
!= e
->shift_r
) {
1646 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
1647 for (mux
= 0; mux
< e
->max
; mux
++) {
1648 if (val
== e
->values
[mux
])
1651 ucontrol
->value
.enumerated
.item
[1] = mux
;
1656 EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double
);
1659 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1660 * @kcontrol: mixer control
1661 * @ucontrol: control element information
1663 * Callback to set the value of a double semi enumerated mixer.
1665 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1666 * used for handling bitfield coded enumeration for example.
1668 * Returns 0 for success.
1670 int snd_soc_put_value_enum_double(struct snd_kcontrol
*kcontrol
,
1671 struct snd_ctl_elem_value
*ucontrol
)
1673 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1674 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1676 unsigned short mask
;
1678 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
1680 val
= e
->values
[ucontrol
->value
.enumerated
.item
[0]] << e
->shift_l
;
1681 mask
= e
->mask
<< e
->shift_l
;
1682 if (e
->shift_l
!= e
->shift_r
) {
1683 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
1685 val
|= e
->values
[ucontrol
->value
.enumerated
.item
[1]] << e
->shift_r
;
1686 mask
|= e
->mask
<< e
->shift_r
;
1689 return snd_soc_update_bits(codec
, e
->reg
, mask
, val
);
1691 EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double
);
1694 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1695 * @kcontrol: mixer control
1696 * @uinfo: control element information
1698 * Callback to provide information about an external enumerated
1701 * Returns 0 for success.
1703 int snd_soc_info_enum_ext(struct snd_kcontrol
*kcontrol
,
1704 struct snd_ctl_elem_info
*uinfo
)
1706 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1708 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1710 uinfo
->value
.enumerated
.items
= e
->max
;
1712 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
1713 uinfo
->value
.enumerated
.item
= e
->max
- 1;
1714 strcpy(uinfo
->value
.enumerated
.name
,
1715 e
->texts
[uinfo
->value
.enumerated
.item
]);
1718 EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext
);
1721 * snd_soc_info_volsw_ext - external single mixer info callback
1722 * @kcontrol: mixer control
1723 * @uinfo: control element information
1725 * Callback to provide information about a single external mixer control.
1727 * Returns 0 for success.
1729 int snd_soc_info_volsw_ext(struct snd_kcontrol
*kcontrol
,
1730 struct snd_ctl_elem_info
*uinfo
)
1732 int max
= kcontrol
->private_value
;
1735 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1737 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1740 uinfo
->value
.integer
.min
= 0;
1741 uinfo
->value
.integer
.max
= max
;
1744 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext
);
1747 * snd_soc_info_volsw - single mixer info callback
1748 * @kcontrol: mixer control
1749 * @uinfo: control element information
1751 * Callback to provide information about a single mixer control.
1753 * Returns 0 for success.
1755 int snd_soc_info_volsw(struct snd_kcontrol
*kcontrol
,
1756 struct snd_ctl_elem_info
*uinfo
)
1758 struct soc_mixer_control
*mc
=
1759 (struct soc_mixer_control
*)kcontrol
->private_value
;
1761 unsigned int shift
= mc
->shift
;
1762 unsigned int rshift
= mc
->rshift
;
1765 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1767 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1769 uinfo
->count
= shift
== rshift
? 1 : 2;
1770 uinfo
->value
.integer
.min
= 0;
1771 uinfo
->value
.integer
.max
= max
;
1774 EXPORT_SYMBOL_GPL(snd_soc_info_volsw
);
1777 * snd_soc_get_volsw - single mixer get callback
1778 * @kcontrol: mixer control
1779 * @ucontrol: control element information
1781 * Callback to get the value of a single mixer control.
1783 * Returns 0 for success.
1785 int snd_soc_get_volsw(struct snd_kcontrol
*kcontrol
,
1786 struct snd_ctl_elem_value
*ucontrol
)
1788 struct soc_mixer_control
*mc
=
1789 (struct soc_mixer_control
*)kcontrol
->private_value
;
1790 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1791 unsigned int reg
= mc
->reg
;
1792 unsigned int shift
= mc
->shift
;
1793 unsigned int rshift
= mc
->rshift
;
1795 unsigned int mask
= (1 << fls(max
)) - 1;
1796 unsigned int invert
= mc
->invert
;
1798 ucontrol
->value
.integer
.value
[0] =
1799 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
1800 if (shift
!= rshift
)
1801 ucontrol
->value
.integer
.value
[1] =
1802 (snd_soc_read(codec
, reg
) >> rshift
) & mask
;
1804 ucontrol
->value
.integer
.value
[0] =
1805 max
- ucontrol
->value
.integer
.value
[0];
1806 if (shift
!= rshift
)
1807 ucontrol
->value
.integer
.value
[1] =
1808 max
- ucontrol
->value
.integer
.value
[1];
1813 EXPORT_SYMBOL_GPL(snd_soc_get_volsw
);
1816 * snd_soc_put_volsw - single mixer put callback
1817 * @kcontrol: mixer control
1818 * @ucontrol: control element information
1820 * Callback to set the value of a single mixer control.
1822 * Returns 0 for success.
1824 int snd_soc_put_volsw(struct snd_kcontrol
*kcontrol
,
1825 struct snd_ctl_elem_value
*ucontrol
)
1827 struct soc_mixer_control
*mc
=
1828 (struct soc_mixer_control
*)kcontrol
->private_value
;
1829 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1830 unsigned int reg
= mc
->reg
;
1831 unsigned int shift
= mc
->shift
;
1832 unsigned int rshift
= mc
->rshift
;
1834 unsigned int mask
= (1 << fls(max
)) - 1;
1835 unsigned int invert
= mc
->invert
;
1836 unsigned short val
, val2
, val_mask
;
1838 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1841 val_mask
= mask
<< shift
;
1843 if (shift
!= rshift
) {
1844 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
1847 val_mask
|= mask
<< rshift
;
1848 val
|= val2
<< rshift
;
1850 return snd_soc_update_bits(codec
, reg
, val_mask
, val
);
1852 EXPORT_SYMBOL_GPL(snd_soc_put_volsw
);
1855 * snd_soc_info_volsw_2r - double mixer info callback
1856 * @kcontrol: mixer control
1857 * @uinfo: control element information
1859 * Callback to provide information about a double mixer control that
1860 * spans 2 codec registers.
1862 * Returns 0 for success.
1864 int snd_soc_info_volsw_2r(struct snd_kcontrol
*kcontrol
,
1865 struct snd_ctl_elem_info
*uinfo
)
1867 struct soc_mixer_control
*mc
=
1868 (struct soc_mixer_control
*)kcontrol
->private_value
;
1872 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1874 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1877 uinfo
->value
.integer
.min
= 0;
1878 uinfo
->value
.integer
.max
= max
;
1881 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r
);
1884 * snd_soc_get_volsw_2r - double mixer get callback
1885 * @kcontrol: mixer control
1886 * @ucontrol: control element information
1888 * Callback to get the value of a double mixer control that spans 2 registers.
1890 * Returns 0 for success.
1892 int snd_soc_get_volsw_2r(struct snd_kcontrol
*kcontrol
,
1893 struct snd_ctl_elem_value
*ucontrol
)
1895 struct soc_mixer_control
*mc
=
1896 (struct soc_mixer_control
*)kcontrol
->private_value
;
1897 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1898 unsigned int reg
= mc
->reg
;
1899 unsigned int reg2
= mc
->rreg
;
1900 unsigned int shift
= mc
->shift
;
1902 unsigned int mask
= (1<<fls(max
))-1;
1903 unsigned int invert
= mc
->invert
;
1905 ucontrol
->value
.integer
.value
[0] =
1906 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
1907 ucontrol
->value
.integer
.value
[1] =
1908 (snd_soc_read(codec
, reg2
) >> shift
) & mask
;
1910 ucontrol
->value
.integer
.value
[0] =
1911 max
- ucontrol
->value
.integer
.value
[0];
1912 ucontrol
->value
.integer
.value
[1] =
1913 max
- ucontrol
->value
.integer
.value
[1];
1918 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r
);
1921 * snd_soc_put_volsw_2r - double mixer set callback
1922 * @kcontrol: mixer control
1923 * @ucontrol: control element information
1925 * Callback to set the value of a double mixer control that spans 2 registers.
1927 * Returns 0 for success.
1929 int snd_soc_put_volsw_2r(struct snd_kcontrol
*kcontrol
,
1930 struct snd_ctl_elem_value
*ucontrol
)
1932 struct soc_mixer_control
*mc
=
1933 (struct soc_mixer_control
*)kcontrol
->private_value
;
1934 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1935 unsigned int reg
= mc
->reg
;
1936 unsigned int reg2
= mc
->rreg
;
1937 unsigned int shift
= mc
->shift
;
1939 unsigned int mask
= (1 << fls(max
)) - 1;
1940 unsigned int invert
= mc
->invert
;
1942 unsigned short val
, val2
, val_mask
;
1944 val_mask
= mask
<< shift
;
1945 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1946 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
1954 val2
= val2
<< shift
;
1956 err
= snd_soc_update_bits(codec
, reg
, val_mask
, val
);
1960 err
= snd_soc_update_bits(codec
, reg2
, val_mask
, val2
);
1963 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r
);
1966 * snd_soc_info_volsw_s8 - signed mixer info callback
1967 * @kcontrol: mixer control
1968 * @uinfo: control element information
1970 * Callback to provide information about a signed mixer control.
1972 * Returns 0 for success.
1974 int snd_soc_info_volsw_s8(struct snd_kcontrol
*kcontrol
,
1975 struct snd_ctl_elem_info
*uinfo
)
1977 struct soc_mixer_control
*mc
=
1978 (struct soc_mixer_control
*)kcontrol
->private_value
;
1982 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1984 uinfo
->value
.integer
.min
= 0;
1985 uinfo
->value
.integer
.max
= max
-min
;
1988 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8
);
1991 * snd_soc_get_volsw_s8 - signed mixer get callback
1992 * @kcontrol: mixer control
1993 * @ucontrol: control element information
1995 * Callback to get the value of a signed mixer control.
1997 * Returns 0 for success.
1999 int snd_soc_get_volsw_s8(struct snd_kcontrol
*kcontrol
,
2000 struct snd_ctl_elem_value
*ucontrol
)
2002 struct soc_mixer_control
*mc
=
2003 (struct soc_mixer_control
*)kcontrol
->private_value
;
2004 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2005 unsigned int reg
= mc
->reg
;
2007 int val
= snd_soc_read(codec
, reg
);
2009 ucontrol
->value
.integer
.value
[0] =
2010 ((signed char)(val
& 0xff))-min
;
2011 ucontrol
->value
.integer
.value
[1] =
2012 ((signed char)((val
>> 8) & 0xff))-min
;
2015 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8
);
2018 * snd_soc_put_volsw_sgn - signed mixer put callback
2019 * @kcontrol: mixer control
2020 * @ucontrol: control element information
2022 * Callback to set the value of a signed mixer control.
2024 * Returns 0 for success.
2026 int snd_soc_put_volsw_s8(struct snd_kcontrol
*kcontrol
,
2027 struct snd_ctl_elem_value
*ucontrol
)
2029 struct soc_mixer_control
*mc
=
2030 (struct soc_mixer_control
*)kcontrol
->private_value
;
2031 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2032 unsigned int reg
= mc
->reg
;
2036 val
= (ucontrol
->value
.integer
.value
[0]+min
) & 0xff;
2037 val
|= ((ucontrol
->value
.integer
.value
[1]+min
) & 0xff) << 8;
2039 return snd_soc_update_bits(codec
, reg
, 0xffff, val
);
2041 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8
);
2044 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2046 * @clk_id: DAI specific clock ID
2047 * @freq: new clock frequency in Hz
2048 * @dir: new clock direction - input/output.
2050 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2052 int snd_soc_dai_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
2053 unsigned int freq
, int dir
)
2055 if (dai
->ops
->set_sysclk
)
2056 return dai
->ops
->set_sysclk(dai
, clk_id
, freq
, dir
);
2060 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk
);
2063 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2065 * @div_id: DAI specific clock divider ID
2066 * @div: new clock divisor.
2068 * Configures the clock dividers. This is used to derive the best DAI bit and
2069 * frame clocks from the system or master clock. It's best to set the DAI bit
2070 * and frame clocks as low as possible to save system power.
2072 int snd_soc_dai_set_clkdiv(struct snd_soc_dai
*dai
,
2073 int div_id
, int div
)
2075 if (dai
->ops
->set_clkdiv
)
2076 return dai
->ops
->set_clkdiv(dai
, div_id
, div
);
2080 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv
);
2083 * snd_soc_dai_set_pll - configure DAI PLL.
2085 * @pll_id: DAI specific PLL ID
2086 * @freq_in: PLL input clock frequency in Hz
2087 * @freq_out: requested PLL output clock frequency in Hz
2089 * Configures and enables PLL to generate output clock based on input clock.
2091 int snd_soc_dai_set_pll(struct snd_soc_dai
*dai
,
2092 int pll_id
, unsigned int freq_in
, unsigned int freq_out
)
2094 if (dai
->ops
->set_pll
)
2095 return dai
->ops
->set_pll(dai
, pll_id
, freq_in
, freq_out
);
2099 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll
);
2102 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2104 * @fmt: SND_SOC_DAIFMT_ format value.
2106 * Configures the DAI hardware format and clocking.
2108 int snd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
2110 if (dai
->ops
->set_fmt
)
2111 return dai
->ops
->set_fmt(dai
, fmt
);
2115 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt
);
2118 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2120 * @mask: DAI specific mask representing used slots.
2121 * @slots: Number of slots in use.
2123 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2126 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai
*dai
,
2127 unsigned int mask
, int slots
)
2129 if (dai
->ops
->set_sysclk
)
2130 return dai
->ops
->set_tdm_slot(dai
, mask
, slots
);
2134 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot
);
2137 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2139 * @tristate: tristate enable
2141 * Tristates the DAI so that others can use it.
2143 int snd_soc_dai_set_tristate(struct snd_soc_dai
*dai
, int tristate
)
2145 if (dai
->ops
->set_sysclk
)
2146 return dai
->ops
->set_tristate(dai
, tristate
);
2150 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate
);
2153 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2155 * @mute: mute enable
2157 * Mutes the DAI DAC.
2159 int snd_soc_dai_digital_mute(struct snd_soc_dai
*dai
, int mute
)
2161 if (dai
->ops
->digital_mute
)
2162 return dai
->ops
->digital_mute(dai
, mute
);
2166 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute
);
2169 * snd_soc_register_card - Register a card with the ASoC core
2171 * @card: Card to register
2173 * Note that currently this is an internal only function: it will be
2174 * exposed to machine drivers after further backporting of ASoC v2
2175 * registration APIs.
2177 static int snd_soc_register_card(struct snd_soc_card
*card
)
2179 if (!card
->name
|| !card
->dev
)
2182 INIT_LIST_HEAD(&card
->list
);
2183 card
->instantiated
= 0;
2185 mutex_lock(&client_mutex
);
2186 list_add(&card
->list
, &card_list
);
2187 snd_soc_instantiate_cards();
2188 mutex_unlock(&client_mutex
);
2190 dev_dbg(card
->dev
, "Registered card '%s'\n", card
->name
);
2196 * snd_soc_unregister_card - Unregister a card with the ASoC core
2198 * @card: Card to unregister
2200 * Note that currently this is an internal only function: it will be
2201 * exposed to machine drivers after further backporting of ASoC v2
2202 * registration APIs.
2204 static int snd_soc_unregister_card(struct snd_soc_card
*card
)
2206 mutex_lock(&client_mutex
);
2207 list_del(&card
->list
);
2208 mutex_unlock(&client_mutex
);
2210 dev_dbg(card
->dev
, "Unregistered card '%s'\n", card
->name
);
2215 static struct snd_soc_dai_ops null_dai_ops
= {
2219 * snd_soc_register_dai - Register a DAI with the ASoC core
2221 * @dai: DAI to register
2223 int snd_soc_register_dai(struct snd_soc_dai
*dai
)
2228 /* The device should become mandatory over time */
2230 printk(KERN_WARNING
"No device for DAI %s\n", dai
->name
);
2233 dai
->ops
= &null_dai_ops
;
2235 INIT_LIST_HEAD(&dai
->list
);
2237 mutex_lock(&client_mutex
);
2238 list_add(&dai
->list
, &dai_list
);
2239 snd_soc_instantiate_cards();
2240 mutex_unlock(&client_mutex
);
2242 pr_debug("Registered DAI '%s'\n", dai
->name
);
2246 EXPORT_SYMBOL_GPL(snd_soc_register_dai
);
2249 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2251 * @dai: DAI to unregister
2253 void snd_soc_unregister_dai(struct snd_soc_dai
*dai
)
2255 mutex_lock(&client_mutex
);
2256 list_del(&dai
->list
);
2257 mutex_unlock(&client_mutex
);
2259 pr_debug("Unregistered DAI '%s'\n", dai
->name
);
2261 EXPORT_SYMBOL_GPL(snd_soc_unregister_dai
);
2264 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2266 * @dai: Array of DAIs to register
2267 * @count: Number of DAIs
2269 int snd_soc_register_dais(struct snd_soc_dai
*dai
, size_t count
)
2273 for (i
= 0; i
< count
; i
++) {
2274 ret
= snd_soc_register_dai(&dai
[i
]);
2282 for (i
--; i
>= 0; i
--)
2283 snd_soc_unregister_dai(&dai
[i
]);
2287 EXPORT_SYMBOL_GPL(snd_soc_register_dais
);
2290 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2292 * @dai: Array of DAIs to unregister
2293 * @count: Number of DAIs
2295 void snd_soc_unregister_dais(struct snd_soc_dai
*dai
, size_t count
)
2299 for (i
= 0; i
< count
; i
++)
2300 snd_soc_unregister_dai(&dai
[i
]);
2302 EXPORT_SYMBOL_GPL(snd_soc_unregister_dais
);
2305 * snd_soc_register_platform - Register a platform with the ASoC core
2307 * @platform: platform to register
2309 int snd_soc_register_platform(struct snd_soc_platform
*platform
)
2311 if (!platform
->name
)
2314 INIT_LIST_HEAD(&platform
->list
);
2316 mutex_lock(&client_mutex
);
2317 list_add(&platform
->list
, &platform_list
);
2318 snd_soc_instantiate_cards();
2319 mutex_unlock(&client_mutex
);
2321 pr_debug("Registered platform '%s'\n", platform
->name
);
2325 EXPORT_SYMBOL_GPL(snd_soc_register_platform
);
2328 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2330 * @platform: platform to unregister
2332 void snd_soc_unregister_platform(struct snd_soc_platform
*platform
)
2334 mutex_lock(&client_mutex
);
2335 list_del(&platform
->list
);
2336 mutex_unlock(&client_mutex
);
2338 pr_debug("Unregistered platform '%s'\n", platform
->name
);
2340 EXPORT_SYMBOL_GPL(snd_soc_unregister_platform
);
2343 * snd_soc_register_codec - Register a codec with the ASoC core
2345 * @codec: codec to register
2347 int snd_soc_register_codec(struct snd_soc_codec
*codec
)
2352 /* The device should become mandatory over time */
2354 printk(KERN_WARNING
"No device for codec %s\n", codec
->name
);
2356 INIT_LIST_HEAD(&codec
->list
);
2358 mutex_lock(&client_mutex
);
2359 list_add(&codec
->list
, &codec_list
);
2360 snd_soc_instantiate_cards();
2361 mutex_unlock(&client_mutex
);
2363 pr_debug("Registered codec '%s'\n", codec
->name
);
2367 EXPORT_SYMBOL_GPL(snd_soc_register_codec
);
2370 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2372 * @codec: codec to unregister
2374 void snd_soc_unregister_codec(struct snd_soc_codec
*codec
)
2376 mutex_lock(&client_mutex
);
2377 list_del(&codec
->list
);
2378 mutex_unlock(&client_mutex
);
2380 pr_debug("Unregistered codec '%s'\n", codec
->name
);
2382 EXPORT_SYMBOL_GPL(snd_soc_unregister_codec
);
2384 static int __init
snd_soc_init(void)
2386 #ifdef CONFIG_DEBUG_FS
2387 debugfs_root
= debugfs_create_dir("asoc", NULL
);
2388 if (IS_ERR(debugfs_root
) || !debugfs_root
) {
2390 "ASoC: Failed to create debugfs directory\n");
2391 debugfs_root
= NULL
;
2395 return platform_driver_register(&soc_driver
);
2398 static void __exit
snd_soc_exit(void)
2400 #ifdef CONFIG_DEBUG_FS
2401 debugfs_remove_recursive(debugfs_root
);
2403 platform_driver_unregister(&soc_driver
);
2406 module_init(snd_soc_init
);
2407 module_exit(snd_soc_exit
);
2409 /* Module information */
2410 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
2411 MODULE_DESCRIPTION("ALSA SoC Core");
2412 MODULE_LICENSE("GPL");
2413 MODULE_ALIAS("platform:soc-audio");