2 * soc-core.c -- ALSA SoC Audio Layer
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
9 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
10 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 * o Add hw rules to enforce rates, etc.
20 * o More testing with other codecs/machines.
21 * o Add more codecs and platforms to ensure good API coverage.
22 * o Support TDM on PCM and I2S
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
30 #include <linux/bitops.h>
31 #include <linux/debugfs.h>
32 #include <linux/platform_device.h>
33 #include <linux/slab.h>
34 #include <sound/ac97_codec.h>
35 #include <sound/core.h>
36 #include <sound/jack.h>
37 #include <sound/pcm.h>
38 #include <sound/pcm_params.h>
39 #include <sound/soc.h>
40 #include <sound/initval.h>
42 #define CREATE_TRACE_POINTS
43 #include <trace/events/asoc.h>
47 static DEFINE_MUTEX(pcm_mutex
);
48 static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq
);
50 #ifdef CONFIG_DEBUG_FS
51 struct dentry
*snd_soc_debugfs_root
;
52 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root
);
55 static DEFINE_MUTEX(client_mutex
);
56 static LIST_HEAD(card_list
);
57 static LIST_HEAD(dai_list
);
58 static LIST_HEAD(platform_list
);
59 static LIST_HEAD(codec_list
);
61 static int soc_new_pcm(struct snd_soc_pcm_runtime
*rtd
, int num
);
64 * This is a timeout to do a DAPM powerdown after a stream is closed().
65 * It can be used to eliminate pops between different playback streams, e.g.
66 * between two audio tracks.
68 static int pmdown_time
= 5000;
69 module_param(pmdown_time
, int, 0);
70 MODULE_PARM_DESC(pmdown_time
, "DAPM stream powerdown time (msecs)");
72 /* returns the minimum number of bytes needed to represent
73 * a particular given value */
74 static int min_bytes_needed(unsigned long val
)
79 for (i
= (sizeof val
* 8) - 1; i
>= 0; --i
, ++c
)
82 c
= (sizeof val
* 8) - c
;
90 /* fill buf which is 'len' bytes with a formatted
91 * string of the form 'reg: value\n' */
92 static int format_register_str(struct snd_soc_codec
*codec
,
93 unsigned int reg
, char *buf
, size_t len
)
95 int wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
96 int regsize
= codec
->driver
->reg_word_size
* 2;
99 char regbuf
[regsize
+ 1];
101 /* since tmpbuf is allocated on the stack, warn the callers if they
102 * try to abuse this function */
105 /* +2 for ': ' and + 1 for '\n' */
106 if (wordsize
+ regsize
+ 2 + 1 != len
)
109 ret
= snd_soc_read(codec
, reg
);
111 memset(regbuf
, 'X', regsize
);
112 regbuf
[regsize
] = '\0';
114 snprintf(regbuf
, regsize
+ 1, "%.*x", regsize
, ret
);
117 /* prepare the buffer */
118 snprintf(tmpbuf
, len
+ 1, "%.*x: %s\n", wordsize
, reg
, regbuf
);
119 /* copy it back to the caller without the '\0' */
120 memcpy(buf
, tmpbuf
, len
);
125 /* codec register dump */
126 static ssize_t
soc_codec_reg_show(struct snd_soc_codec
*codec
, char *buf
,
127 size_t count
, loff_t pos
)
130 int wordsize
, regsize
;
135 wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
136 regsize
= codec
->driver
->reg_word_size
* 2;
138 len
= wordsize
+ regsize
+ 2 + 1;
140 if (!codec
->driver
->reg_cache_size
)
143 if (codec
->driver
->reg_cache_step
)
144 step
= codec
->driver
->reg_cache_step
;
146 for (i
= 0; i
< codec
->driver
->reg_cache_size
; i
+= step
) {
147 if (codec
->readable_register
&& !codec
->readable_register(codec
, i
))
149 if (codec
->driver
->display_register
) {
150 count
+= codec
->driver
->display_register(codec
, buf
+ count
,
151 PAGE_SIZE
- count
, i
);
153 /* only support larger than PAGE_SIZE bytes debugfs
154 * entries for the default case */
156 if (total
+ len
>= count
- 1)
158 format_register_str(codec
, i
, buf
+ total
, len
);
165 total
= min(total
, count
- 1);
170 static ssize_t
codec_reg_show(struct device
*dev
,
171 struct device_attribute
*attr
, char *buf
)
173 struct snd_soc_pcm_runtime
*rtd
=
174 container_of(dev
, struct snd_soc_pcm_runtime
, dev
);
176 return soc_codec_reg_show(rtd
->codec
, buf
, PAGE_SIZE
, 0);
179 static DEVICE_ATTR(codec_reg
, 0444, codec_reg_show
, NULL
);
181 static ssize_t
pmdown_time_show(struct device
*dev
,
182 struct device_attribute
*attr
, char *buf
)
184 struct snd_soc_pcm_runtime
*rtd
=
185 container_of(dev
, struct snd_soc_pcm_runtime
, dev
);
187 return sprintf(buf
, "%ld\n", rtd
->pmdown_time
);
190 static ssize_t
pmdown_time_set(struct device
*dev
,
191 struct device_attribute
*attr
,
192 const char *buf
, size_t count
)
194 struct snd_soc_pcm_runtime
*rtd
=
195 container_of(dev
, struct snd_soc_pcm_runtime
, dev
);
198 ret
= strict_strtol(buf
, 10, &rtd
->pmdown_time
);
205 static DEVICE_ATTR(pmdown_time
, 0644, pmdown_time_show
, pmdown_time_set
);
207 #ifdef CONFIG_DEBUG_FS
208 static int codec_reg_open_file(struct inode
*inode
, struct file
*file
)
210 file
->private_data
= inode
->i_private
;
214 static ssize_t
codec_reg_read_file(struct file
*file
, char __user
*user_buf
,
215 size_t count
, loff_t
*ppos
)
218 struct snd_soc_codec
*codec
= file
->private_data
;
221 if (*ppos
< 0 || !count
)
224 buf
= kmalloc(count
, GFP_KERNEL
);
228 ret
= soc_codec_reg_show(codec
, buf
, count
, *ppos
);
230 if (copy_to_user(user_buf
, buf
, ret
)) {
241 static ssize_t
codec_reg_write_file(struct file
*file
,
242 const char __user
*user_buf
, size_t count
, loff_t
*ppos
)
247 unsigned long reg
, value
;
249 struct snd_soc_codec
*codec
= file
->private_data
;
251 buf_size
= min(count
, (sizeof(buf
)-1));
252 if (copy_from_user(buf
, user_buf
, buf_size
))
256 if (codec
->driver
->reg_cache_step
)
257 step
= codec
->driver
->reg_cache_step
;
259 while (*start
== ' ')
261 reg
= simple_strtoul(start
, &start
, 16);
262 while (*start
== ' ')
264 if (strict_strtoul(start
, 16, &value
))
267 /* Userspace has been fiddling around behind the kernel's back */
268 add_taint(TAINT_USER
);
270 snd_soc_write(codec
, reg
, value
);
274 static const struct file_operations codec_reg_fops
= {
275 .open
= codec_reg_open_file
,
276 .read
= codec_reg_read_file
,
277 .write
= codec_reg_write_file
,
278 .llseek
= default_llseek
,
281 static void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
283 struct dentry
*debugfs_card_root
= codec
->card
->debugfs_card_root
;
285 codec
->debugfs_codec_root
= debugfs_create_dir(codec
->name
,
287 if (!codec
->debugfs_codec_root
) {
289 "ASoC: Failed to create codec debugfs directory\n");
293 debugfs_create_bool("cache_sync", 0444, codec
->debugfs_codec_root
,
295 debugfs_create_bool("cache_only", 0444, codec
->debugfs_codec_root
,
298 codec
->debugfs_reg
= debugfs_create_file("codec_reg", 0644,
299 codec
->debugfs_codec_root
,
300 codec
, &codec_reg_fops
);
301 if (!codec
->debugfs_reg
)
303 "ASoC: Failed to create codec register debugfs file\n");
305 codec
->dapm
.debugfs_dapm
= debugfs_create_dir("dapm",
306 codec
->debugfs_codec_root
);
307 if (!codec
->dapm
.debugfs_dapm
)
309 "Failed to create DAPM debugfs directory\n");
311 snd_soc_dapm_debugfs_init(&codec
->dapm
);
314 static void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
316 debugfs_remove_recursive(codec
->debugfs_codec_root
);
319 static ssize_t
codec_list_read_file(struct file
*file
, char __user
*user_buf
,
320 size_t count
, loff_t
*ppos
)
322 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
323 ssize_t len
, ret
= 0;
324 struct snd_soc_codec
*codec
;
329 list_for_each_entry(codec
, &codec_list
, list
) {
330 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
334 if (ret
> PAGE_SIZE
) {
341 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
348 static const struct file_operations codec_list_fops
= {
349 .read
= codec_list_read_file
,
350 .llseek
= default_llseek
,/* read accesses f_pos */
353 static ssize_t
dai_list_read_file(struct file
*file
, char __user
*user_buf
,
354 size_t count
, loff_t
*ppos
)
356 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
357 ssize_t len
, ret
= 0;
358 struct snd_soc_dai
*dai
;
363 list_for_each_entry(dai
, &dai_list
, list
) {
364 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n", dai
->name
);
367 if (ret
> PAGE_SIZE
) {
373 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
380 static const struct file_operations dai_list_fops
= {
381 .read
= dai_list_read_file
,
382 .llseek
= default_llseek
,/* read accesses f_pos */
385 static ssize_t
platform_list_read_file(struct file
*file
,
386 char __user
*user_buf
,
387 size_t count
, loff_t
*ppos
)
389 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
390 ssize_t len
, ret
= 0;
391 struct snd_soc_platform
*platform
;
396 list_for_each_entry(platform
, &platform_list
, list
) {
397 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
401 if (ret
> PAGE_SIZE
) {
407 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
414 static const struct file_operations platform_list_fops
= {
415 .read
= platform_list_read_file
,
416 .llseek
= default_llseek
,/* read accesses f_pos */
419 static void soc_init_card_debugfs(struct snd_soc_card
*card
)
421 card
->debugfs_card_root
= debugfs_create_dir(card
->name
,
422 snd_soc_debugfs_root
);
423 if (!card
->debugfs_card_root
) {
425 "ASoC: Failed to create codec debugfs directory\n");
429 card
->debugfs_pop_time
= debugfs_create_u32("dapm_pop_time", 0644,
430 card
->debugfs_card_root
,
432 if (!card
->debugfs_pop_time
)
434 "Failed to create pop time debugfs file\n");
437 static void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
439 debugfs_remove_recursive(card
->debugfs_card_root
);
444 static inline void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
448 static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
452 static inline void soc_init_card_debugfs(struct snd_soc_card
*card
)
456 static inline void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
461 #ifdef CONFIG_SND_SOC_AC97_BUS
462 /* unregister ac97 codec */
463 static int soc_ac97_dev_unregister(struct snd_soc_codec
*codec
)
465 if (codec
->ac97
->dev
.bus
)
466 device_unregister(&codec
->ac97
->dev
);
470 /* stop no dev release warning */
471 static void soc_ac97_device_release(struct device
*dev
){}
473 /* register ac97 codec to bus */
474 static int soc_ac97_dev_register(struct snd_soc_codec
*codec
)
478 codec
->ac97
->dev
.bus
= &ac97_bus_type
;
479 codec
->ac97
->dev
.parent
= codec
->card
->dev
;
480 codec
->ac97
->dev
.release
= soc_ac97_device_release
;
482 dev_set_name(&codec
->ac97
->dev
, "%d-%d:%s",
483 codec
->card
->snd_card
->number
, 0, codec
->name
);
484 err
= device_register(&codec
->ac97
->dev
);
486 snd_printk(KERN_ERR
"Can't register ac97 bus\n");
487 codec
->ac97
->dev
.bus
= NULL
;
494 static int soc_pcm_apply_symmetry(struct snd_pcm_substream
*substream
)
496 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
497 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
498 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
501 if (!codec_dai
->driver
->symmetric_rates
&&
502 !cpu_dai
->driver
->symmetric_rates
&&
503 !rtd
->dai_link
->symmetric_rates
)
506 /* This can happen if multiple streams are starting simultaneously -
507 * the second can need to get its constraints before the first has
508 * picked a rate. Complain and allow the application to carry on.
512 "Not enforcing symmetric_rates due to race\n");
516 dev_dbg(&rtd
->dev
, "Symmetry forces %dHz rate\n", rtd
->rate
);
518 ret
= snd_pcm_hw_constraint_minmax(substream
->runtime
,
519 SNDRV_PCM_HW_PARAM_RATE
,
520 rtd
->rate
, rtd
->rate
);
523 "Unable to apply rate symmetry constraint: %d\n", ret
);
531 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
532 * then initialized and any private data can be allocated. This also calls
533 * startup for the cpu DAI, platform, machine and codec DAI.
535 static int soc_pcm_open(struct snd_pcm_substream
*substream
)
537 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
538 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
539 struct snd_soc_platform
*platform
= rtd
->platform
;
540 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
541 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
542 struct snd_soc_dai_driver
*cpu_dai_drv
= cpu_dai
->driver
;
543 struct snd_soc_dai_driver
*codec_dai_drv
= codec_dai
->driver
;
546 mutex_lock(&pcm_mutex
);
548 /* startup the audio subsystem */
549 if (cpu_dai
->driver
->ops
->startup
) {
550 ret
= cpu_dai
->driver
->ops
->startup(substream
, cpu_dai
);
552 printk(KERN_ERR
"asoc: can't open interface %s\n",
558 if (platform
->driver
->ops
->open
) {
559 ret
= platform
->driver
->ops
->open(substream
);
561 printk(KERN_ERR
"asoc: can't open platform %s\n", platform
->name
);
566 if (codec_dai
->driver
->ops
->startup
) {
567 ret
= codec_dai
->driver
->ops
->startup(substream
, codec_dai
);
569 printk(KERN_ERR
"asoc: can't open codec %s\n",
575 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->startup
) {
576 ret
= rtd
->dai_link
->ops
->startup(substream
);
578 printk(KERN_ERR
"asoc: %s startup failed\n", rtd
->dai_link
->name
);
583 /* Check that the codec and cpu DAIs are compatible */
584 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
585 runtime
->hw
.rate_min
=
586 max(codec_dai_drv
->playback
.rate_min
,
587 cpu_dai_drv
->playback
.rate_min
);
588 runtime
->hw
.rate_max
=
589 min(codec_dai_drv
->playback
.rate_max
,
590 cpu_dai_drv
->playback
.rate_max
);
591 runtime
->hw
.channels_min
=
592 max(codec_dai_drv
->playback
.channels_min
,
593 cpu_dai_drv
->playback
.channels_min
);
594 runtime
->hw
.channels_max
=
595 min(codec_dai_drv
->playback
.channels_max
,
596 cpu_dai_drv
->playback
.channels_max
);
597 runtime
->hw
.formats
=
598 codec_dai_drv
->playback
.formats
& cpu_dai_drv
->playback
.formats
;
600 codec_dai_drv
->playback
.rates
& cpu_dai_drv
->playback
.rates
;
601 if (codec_dai_drv
->playback
.rates
602 & (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))
603 runtime
->hw
.rates
|= cpu_dai_drv
->playback
.rates
;
604 if (cpu_dai_drv
->playback
.rates
605 & (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))
606 runtime
->hw
.rates
|= codec_dai_drv
->playback
.rates
;
608 runtime
->hw
.rate_min
=
609 max(codec_dai_drv
->capture
.rate_min
,
610 cpu_dai_drv
->capture
.rate_min
);
611 runtime
->hw
.rate_max
=
612 min(codec_dai_drv
->capture
.rate_max
,
613 cpu_dai_drv
->capture
.rate_max
);
614 runtime
->hw
.channels_min
=
615 max(codec_dai_drv
->capture
.channels_min
,
616 cpu_dai_drv
->capture
.channels_min
);
617 runtime
->hw
.channels_max
=
618 min(codec_dai_drv
->capture
.channels_max
,
619 cpu_dai_drv
->capture
.channels_max
);
620 runtime
->hw
.formats
=
621 codec_dai_drv
->capture
.formats
& cpu_dai_drv
->capture
.formats
;
623 codec_dai_drv
->capture
.rates
& cpu_dai_drv
->capture
.rates
;
624 if (codec_dai_drv
->capture
.rates
625 & (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))
626 runtime
->hw
.rates
|= cpu_dai_drv
->capture
.rates
;
627 if (cpu_dai_drv
->capture
.rates
628 & (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))
629 runtime
->hw
.rates
|= codec_dai_drv
->capture
.rates
;
633 snd_pcm_limit_hw_rates(runtime
);
634 if (!runtime
->hw
.rates
) {
635 printk(KERN_ERR
"asoc: %s <-> %s No matching rates\n",
636 codec_dai
->name
, cpu_dai
->name
);
639 if (!runtime
->hw
.formats
) {
640 printk(KERN_ERR
"asoc: %s <-> %s No matching formats\n",
641 codec_dai
->name
, cpu_dai
->name
);
644 if (!runtime
->hw
.channels_min
|| !runtime
->hw
.channels_max
||
645 runtime
->hw
.channels_min
> runtime
->hw
.channels_max
) {
646 printk(KERN_ERR
"asoc: %s <-> %s No matching channels\n",
647 codec_dai
->name
, cpu_dai
->name
);
651 /* Symmetry only applies if we've already got an active stream. */
652 if (cpu_dai
->active
|| codec_dai
->active
) {
653 ret
= soc_pcm_apply_symmetry(substream
);
658 pr_debug("asoc: %s <-> %s info:\n",
659 codec_dai
->name
, cpu_dai
->name
);
660 pr_debug("asoc: rate mask 0x%x\n", runtime
->hw
.rates
);
661 pr_debug("asoc: min ch %d max ch %d\n", runtime
->hw
.channels_min
,
662 runtime
->hw
.channels_max
);
663 pr_debug("asoc: min rate %d max rate %d\n", runtime
->hw
.rate_min
,
664 runtime
->hw
.rate_max
);
666 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
667 cpu_dai
->playback_active
++;
668 codec_dai
->playback_active
++;
670 cpu_dai
->capture_active
++;
671 codec_dai
->capture_active
++;
675 rtd
->codec
->active
++;
676 mutex_unlock(&pcm_mutex
);
680 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->shutdown
)
681 rtd
->dai_link
->ops
->shutdown(substream
);
684 if (codec_dai
->driver
->ops
->shutdown
)
685 codec_dai
->driver
->ops
->shutdown(substream
, codec_dai
);
688 if (platform
->driver
->ops
->close
)
689 platform
->driver
->ops
->close(substream
);
692 if (cpu_dai
->driver
->ops
->shutdown
)
693 cpu_dai
->driver
->ops
->shutdown(substream
, cpu_dai
);
695 mutex_unlock(&pcm_mutex
);
700 * Power down the audio subsystem pmdown_time msecs after close is called.
701 * This is to ensure there are no pops or clicks in between any music tracks
702 * due to DAPM power cycling.
704 static void close_delayed_work(struct work_struct
*work
)
706 struct snd_soc_pcm_runtime
*rtd
=
707 container_of(work
, struct snd_soc_pcm_runtime
, delayed_work
.work
);
708 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
710 mutex_lock(&pcm_mutex
);
712 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
713 codec_dai
->driver
->playback
.stream_name
,
714 codec_dai
->playback_active
? "active" : "inactive",
715 codec_dai
->pop_wait
? "yes" : "no");
717 /* are we waiting on this codec DAI stream */
718 if (codec_dai
->pop_wait
== 1) {
719 codec_dai
->pop_wait
= 0;
720 snd_soc_dapm_stream_event(rtd
,
721 codec_dai
->driver
->playback
.stream_name
,
722 SND_SOC_DAPM_STREAM_STOP
);
725 mutex_unlock(&pcm_mutex
);
729 * Called by ALSA when a PCM substream is closed. Private data can be
730 * freed here. The cpu DAI, codec DAI, machine and platform are also
733 static int soc_codec_close(struct snd_pcm_substream
*substream
)
735 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
736 struct snd_soc_platform
*platform
= rtd
->platform
;
737 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
738 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
739 struct snd_soc_codec
*codec
= rtd
->codec
;
741 mutex_lock(&pcm_mutex
);
743 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
744 cpu_dai
->playback_active
--;
745 codec_dai
->playback_active
--;
747 cpu_dai
->capture_active
--;
748 codec_dai
->capture_active
--;
755 /* Muting the DAC suppresses artifacts caused during digital
756 * shutdown, for example from stopping clocks.
758 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
759 snd_soc_dai_digital_mute(codec_dai
, 1);
761 if (cpu_dai
->driver
->ops
->shutdown
)
762 cpu_dai
->driver
->ops
->shutdown(substream
, cpu_dai
);
764 if (codec_dai
->driver
->ops
->shutdown
)
765 codec_dai
->driver
->ops
->shutdown(substream
, codec_dai
);
767 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->shutdown
)
768 rtd
->dai_link
->ops
->shutdown(substream
);
770 if (platform
->driver
->ops
->close
)
771 platform
->driver
->ops
->close(substream
);
772 cpu_dai
->runtime
= NULL
;
774 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
775 /* start delayed pop wq here for playback streams */
776 codec_dai
->pop_wait
= 1;
777 schedule_delayed_work(&rtd
->delayed_work
,
778 msecs_to_jiffies(rtd
->pmdown_time
));
780 /* capture streams can be powered down now */
781 snd_soc_dapm_stream_event(rtd
,
782 codec_dai
->driver
->capture
.stream_name
,
783 SND_SOC_DAPM_STREAM_STOP
);
786 mutex_unlock(&pcm_mutex
);
791 * Called by ALSA when the PCM substream is prepared, can set format, sample
792 * rate, etc. This function is non atomic and can be called multiple times,
793 * it can refer to the runtime info.
795 static int soc_pcm_prepare(struct snd_pcm_substream
*substream
)
797 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
798 struct snd_soc_platform
*platform
= rtd
->platform
;
799 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
800 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
803 mutex_lock(&pcm_mutex
);
805 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->prepare
) {
806 ret
= rtd
->dai_link
->ops
->prepare(substream
);
808 printk(KERN_ERR
"asoc: machine prepare error\n");
813 if (platform
->driver
->ops
->prepare
) {
814 ret
= platform
->driver
->ops
->prepare(substream
);
816 printk(KERN_ERR
"asoc: platform prepare error\n");
821 if (codec_dai
->driver
->ops
->prepare
) {
822 ret
= codec_dai
->driver
->ops
->prepare(substream
, codec_dai
);
824 printk(KERN_ERR
"asoc: codec DAI prepare error\n");
829 if (cpu_dai
->driver
->ops
->prepare
) {
830 ret
= cpu_dai
->driver
->ops
->prepare(substream
, cpu_dai
);
832 printk(KERN_ERR
"asoc: cpu DAI prepare error\n");
837 /* cancel any delayed stream shutdown that is pending */
838 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
839 codec_dai
->pop_wait
) {
840 codec_dai
->pop_wait
= 0;
841 cancel_delayed_work(&rtd
->delayed_work
);
844 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
845 snd_soc_dapm_stream_event(rtd
,
846 codec_dai
->driver
->playback
.stream_name
,
847 SND_SOC_DAPM_STREAM_START
);
849 snd_soc_dapm_stream_event(rtd
,
850 codec_dai
->driver
->capture
.stream_name
,
851 SND_SOC_DAPM_STREAM_START
);
853 snd_soc_dai_digital_mute(codec_dai
, 0);
856 mutex_unlock(&pcm_mutex
);
861 * Called by ALSA when the hardware params are set by application. This
862 * function can also be called multiple times and can allocate buffers
863 * (using snd_pcm_lib_* ). It's non-atomic.
865 static int soc_pcm_hw_params(struct snd_pcm_substream
*substream
,
866 struct snd_pcm_hw_params
*params
)
868 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
869 struct snd_soc_platform
*platform
= rtd
->platform
;
870 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
871 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
874 mutex_lock(&pcm_mutex
);
876 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->hw_params
) {
877 ret
= rtd
->dai_link
->ops
->hw_params(substream
, params
);
879 printk(KERN_ERR
"asoc: machine hw_params failed\n");
884 if (codec_dai
->driver
->ops
->hw_params
) {
885 ret
= codec_dai
->driver
->ops
->hw_params(substream
, params
, codec_dai
);
887 printk(KERN_ERR
"asoc: can't set codec %s hw params\n",
893 if (cpu_dai
->driver
->ops
->hw_params
) {
894 ret
= cpu_dai
->driver
->ops
->hw_params(substream
, params
, cpu_dai
);
896 printk(KERN_ERR
"asoc: interface %s hw params failed\n",
902 if (platform
->driver
->ops
->hw_params
) {
903 ret
= platform
->driver
->ops
->hw_params(substream
, params
);
905 printk(KERN_ERR
"asoc: platform %s hw params failed\n",
911 rtd
->rate
= params_rate(params
);
914 mutex_unlock(&pcm_mutex
);
918 if (cpu_dai
->driver
->ops
->hw_free
)
919 cpu_dai
->driver
->ops
->hw_free(substream
, cpu_dai
);
922 if (codec_dai
->driver
->ops
->hw_free
)
923 codec_dai
->driver
->ops
->hw_free(substream
, codec_dai
);
926 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->hw_free
)
927 rtd
->dai_link
->ops
->hw_free(substream
);
929 mutex_unlock(&pcm_mutex
);
934 * Frees resources allocated by hw_params, can be called multiple times
936 static int soc_pcm_hw_free(struct snd_pcm_substream
*substream
)
938 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
939 struct snd_soc_platform
*platform
= rtd
->platform
;
940 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
941 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
942 struct snd_soc_codec
*codec
= rtd
->codec
;
944 mutex_lock(&pcm_mutex
);
946 /* apply codec digital mute */
948 snd_soc_dai_digital_mute(codec_dai
, 1);
950 /* free any machine hw params */
951 if (rtd
->dai_link
->ops
&& rtd
->dai_link
->ops
->hw_free
)
952 rtd
->dai_link
->ops
->hw_free(substream
);
954 /* free any DMA resources */
955 if (platform
->driver
->ops
->hw_free
)
956 platform
->driver
->ops
->hw_free(substream
);
958 /* now free hw params for the DAIs */
959 if (codec_dai
->driver
->ops
->hw_free
)
960 codec_dai
->driver
->ops
->hw_free(substream
, codec_dai
);
962 if (cpu_dai
->driver
->ops
->hw_free
)
963 cpu_dai
->driver
->ops
->hw_free(substream
, cpu_dai
);
965 mutex_unlock(&pcm_mutex
);
969 static int soc_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
971 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
972 struct snd_soc_platform
*platform
= rtd
->platform
;
973 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
974 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
977 if (codec_dai
->driver
->ops
->trigger
) {
978 ret
= codec_dai
->driver
->ops
->trigger(substream
, cmd
, codec_dai
);
983 if (platform
->driver
->ops
->trigger
) {
984 ret
= platform
->driver
->ops
->trigger(substream
, cmd
);
989 if (cpu_dai
->driver
->ops
->trigger
) {
990 ret
= cpu_dai
->driver
->ops
->trigger(substream
, cmd
, cpu_dai
);
998 * soc level wrapper for pointer callback
999 * If cpu_dai, codec_dai, platform driver has the delay callback, than
1000 * the runtime->delay will be updated accordingly.
1002 static snd_pcm_uframes_t
soc_pcm_pointer(struct snd_pcm_substream
*substream
)
1004 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
1005 struct snd_soc_platform
*platform
= rtd
->platform
;
1006 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1007 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
1008 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1009 snd_pcm_uframes_t offset
= 0;
1010 snd_pcm_sframes_t delay
= 0;
1012 if (platform
->driver
->ops
->pointer
)
1013 offset
= platform
->driver
->ops
->pointer(substream
);
1015 if (cpu_dai
->driver
->ops
->delay
)
1016 delay
+= cpu_dai
->driver
->ops
->delay(substream
, cpu_dai
);
1018 if (codec_dai
->driver
->ops
->delay
)
1019 delay
+= codec_dai
->driver
->ops
->delay(substream
, codec_dai
);
1021 if (platform
->driver
->delay
)
1022 delay
+= platform
->driver
->delay(substream
, codec_dai
);
1024 runtime
->delay
= delay
;
1029 /* ASoC PCM operations */
1030 static struct snd_pcm_ops soc_pcm_ops
= {
1031 .open
= soc_pcm_open
,
1032 .close
= soc_codec_close
,
1033 .hw_params
= soc_pcm_hw_params
,
1034 .hw_free
= soc_pcm_hw_free
,
1035 .prepare
= soc_pcm_prepare
,
1036 .trigger
= soc_pcm_trigger
,
1037 .pointer
= soc_pcm_pointer
,
1040 #ifdef CONFIG_PM_SLEEP
1041 /* powers down audio subsystem for suspend */
1042 int snd_soc_suspend(struct device
*dev
)
1044 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
1045 struct snd_soc_codec
*codec
;
1048 /* If the initialization of this soc device failed, there is no codec
1049 * associated with it. Just bail out in this case.
1051 if (list_empty(&card
->codec_dev_list
))
1054 /* Due to the resume being scheduled into a workqueue we could
1055 * suspend before that's finished - wait for it to complete.
1057 snd_power_lock(card
->snd_card
);
1058 snd_power_wait(card
->snd_card
, SNDRV_CTL_POWER_D0
);
1059 snd_power_unlock(card
->snd_card
);
1061 /* we're going to block userspace touching us until resume completes */
1062 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D3hot
);
1064 /* mute any active DACs */
1065 for (i
= 0; i
< card
->num_rtd
; i
++) {
1066 struct snd_soc_dai
*dai
= card
->rtd
[i
].codec_dai
;
1067 struct snd_soc_dai_driver
*drv
= dai
->driver
;
1069 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1072 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
1073 drv
->ops
->digital_mute(dai
, 1);
1076 /* suspend all pcms */
1077 for (i
= 0; i
< card
->num_rtd
; i
++) {
1078 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1081 snd_pcm_suspend_all(card
->rtd
[i
].pcm
);
1084 if (card
->suspend_pre
)
1085 card
->suspend_pre(card
);
1087 for (i
= 0; i
< card
->num_rtd
; i
++) {
1088 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
1089 struct snd_soc_platform
*platform
= card
->rtd
[i
].platform
;
1091 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1094 if (cpu_dai
->driver
->suspend
&& !cpu_dai
->driver
->ac97_control
)
1095 cpu_dai
->driver
->suspend(cpu_dai
);
1096 if (platform
->driver
->suspend
&& !platform
->suspended
) {
1097 platform
->driver
->suspend(cpu_dai
);
1098 platform
->suspended
= 1;
1102 /* close any waiting streams and save state */
1103 for (i
= 0; i
< card
->num_rtd
; i
++) {
1104 flush_delayed_work_sync(&card
->rtd
[i
].delayed_work
);
1105 card
->rtd
[i
].codec
->dapm
.suspend_bias_level
= card
->rtd
[i
].codec
->dapm
.bias_level
;
1108 for (i
= 0; i
< card
->num_rtd
; i
++) {
1109 struct snd_soc_dai_driver
*driver
= card
->rtd
[i
].codec_dai
->driver
;
1111 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1114 if (driver
->playback
.stream_name
!= NULL
)
1115 snd_soc_dapm_stream_event(&card
->rtd
[i
], driver
->playback
.stream_name
,
1116 SND_SOC_DAPM_STREAM_SUSPEND
);
1118 if (driver
->capture
.stream_name
!= NULL
)
1119 snd_soc_dapm_stream_event(&card
->rtd
[i
], driver
->capture
.stream_name
,
1120 SND_SOC_DAPM_STREAM_SUSPEND
);
1123 /* suspend all CODECs */
1124 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
) {
1125 /* If there are paths active then the CODEC will be held with
1126 * bias _ON and should not be suspended. */
1127 if (!codec
->suspended
&& codec
->driver
->suspend
) {
1128 switch (codec
->dapm
.bias_level
) {
1129 case SND_SOC_BIAS_STANDBY
:
1130 case SND_SOC_BIAS_OFF
:
1131 codec
->driver
->suspend(codec
, PMSG_SUSPEND
);
1132 codec
->suspended
= 1;
1135 dev_dbg(codec
->dev
, "CODEC is on over suspend\n");
1141 for (i
= 0; i
< card
->num_rtd
; i
++) {
1142 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
1144 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1147 if (cpu_dai
->driver
->suspend
&& cpu_dai
->driver
->ac97_control
)
1148 cpu_dai
->driver
->suspend(cpu_dai
);
1151 if (card
->suspend_post
)
1152 card
->suspend_post(card
);
1156 EXPORT_SYMBOL_GPL(snd_soc_suspend
);
1158 /* deferred resume work, so resume can complete before we finished
1159 * setting our codec back up, which can be very slow on I2C
1161 static void soc_resume_deferred(struct work_struct
*work
)
1163 struct snd_soc_card
*card
=
1164 container_of(work
, struct snd_soc_card
, deferred_resume_work
);
1165 struct snd_soc_codec
*codec
;
1168 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1169 * so userspace apps are blocked from touching us
1172 dev_dbg(card
->dev
, "starting resume work\n");
1174 /* Bring us up into D2 so that DAPM starts enabling things */
1175 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D2
);
1177 if (card
->resume_pre
)
1178 card
->resume_pre(card
);
1180 /* resume AC97 DAIs */
1181 for (i
= 0; i
< card
->num_rtd
; i
++) {
1182 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
1184 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1187 if (cpu_dai
->driver
->resume
&& cpu_dai
->driver
->ac97_control
)
1188 cpu_dai
->driver
->resume(cpu_dai
);
1191 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
) {
1192 /* If the CODEC was idle over suspend then it will have been
1193 * left with bias OFF or STANDBY and suspended so we must now
1194 * resume. Otherwise the suspend was suppressed.
1196 if (codec
->driver
->resume
&& codec
->suspended
) {
1197 switch (codec
->dapm
.bias_level
) {
1198 case SND_SOC_BIAS_STANDBY
:
1199 case SND_SOC_BIAS_OFF
:
1200 codec
->driver
->resume(codec
);
1201 codec
->suspended
= 0;
1204 dev_dbg(codec
->dev
, "CODEC was on over suspend\n");
1210 for (i
= 0; i
< card
->num_rtd
; i
++) {
1211 struct snd_soc_dai_driver
*driver
= card
->rtd
[i
].codec_dai
->driver
;
1213 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1216 if (driver
->playback
.stream_name
!= NULL
)
1217 snd_soc_dapm_stream_event(&card
->rtd
[i
], driver
->playback
.stream_name
,
1218 SND_SOC_DAPM_STREAM_RESUME
);
1220 if (driver
->capture
.stream_name
!= NULL
)
1221 snd_soc_dapm_stream_event(&card
->rtd
[i
], driver
->capture
.stream_name
,
1222 SND_SOC_DAPM_STREAM_RESUME
);
1225 /* unmute any active DACs */
1226 for (i
= 0; i
< card
->num_rtd
; i
++) {
1227 struct snd_soc_dai
*dai
= card
->rtd
[i
].codec_dai
;
1228 struct snd_soc_dai_driver
*drv
= dai
->driver
;
1230 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1233 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
1234 drv
->ops
->digital_mute(dai
, 0);
1237 for (i
= 0; i
< card
->num_rtd
; i
++) {
1238 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
1239 struct snd_soc_platform
*platform
= card
->rtd
[i
].platform
;
1241 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
1244 if (cpu_dai
->driver
->resume
&& !cpu_dai
->driver
->ac97_control
)
1245 cpu_dai
->driver
->resume(cpu_dai
);
1246 if (platform
->driver
->resume
&& platform
->suspended
) {
1247 platform
->driver
->resume(cpu_dai
);
1248 platform
->suspended
= 0;
1252 if (card
->resume_post
)
1253 card
->resume_post(card
);
1255 dev_dbg(card
->dev
, "resume work completed\n");
1257 /* userspace can access us now we are back as we were before */
1258 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D0
);
1261 /* powers up audio subsystem after a suspend */
1262 int snd_soc_resume(struct device
*dev
)
1264 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
1267 /* AC97 devices might have other drivers hanging off them so
1268 * need to resume immediately. Other drivers don't have that
1269 * problem and may take a substantial amount of time to resume
1270 * due to I/O costs and anti-pop so handle them out of line.
1272 for (i
= 0; i
< card
->num_rtd
; i
++) {
1273 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
1274 if (cpu_dai
->driver
->ac97_control
) {
1275 dev_dbg(dev
, "Resuming AC97 immediately\n");
1276 soc_resume_deferred(&card
->deferred_resume_work
);
1278 dev_dbg(dev
, "Scheduling resume work\n");
1279 if (!schedule_work(&card
->deferred_resume_work
))
1280 dev_err(dev
, "resume work item may be lost\n");
1286 EXPORT_SYMBOL_GPL(snd_soc_resume
);
1288 #define snd_soc_suspend NULL
1289 #define snd_soc_resume NULL
1292 static struct snd_soc_dai_ops null_dai_ops
= {
1295 static int soc_bind_dai_link(struct snd_soc_card
*card
, int num
)
1297 struct snd_soc_dai_link
*dai_link
= &card
->dai_link
[num
];
1298 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1299 struct snd_soc_codec
*codec
;
1300 struct snd_soc_platform
*platform
;
1301 struct snd_soc_dai
*codec_dai
, *cpu_dai
;
1305 dev_dbg(card
->dev
, "binding %s at idx %d\n", dai_link
->name
, num
);
1307 /* do we already have the CPU DAI for this link ? */
1311 /* no, then find CPU DAI from registered DAIs*/
1312 list_for_each_entry(cpu_dai
, &dai_list
, list
) {
1313 if (!strcmp(cpu_dai
->name
, dai_link
->cpu_dai_name
)) {
1315 if (!try_module_get(cpu_dai
->dev
->driver
->owner
))
1318 rtd
->cpu_dai
= cpu_dai
;
1322 dev_dbg(card
->dev
, "CPU DAI %s not registered\n",
1323 dai_link
->cpu_dai_name
);
1326 /* do we already have the CODEC for this link ? */
1331 /* no, then find CODEC from registered CODECs*/
1332 list_for_each_entry(codec
, &codec_list
, list
) {
1333 if (!strcmp(codec
->name
, dai_link
->codec_name
)) {
1336 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
1337 list_for_each_entry(codec_dai
, &dai_list
, list
) {
1338 if (codec
->dev
== codec_dai
->dev
&&
1339 !strcmp(codec_dai
->name
, dai_link
->codec_dai_name
)) {
1340 rtd
->codec_dai
= codec_dai
;
1344 dev_dbg(card
->dev
, "CODEC DAI %s not registered\n",
1345 dai_link
->codec_dai_name
);
1350 dev_dbg(card
->dev
, "CODEC %s not registered\n",
1351 dai_link
->codec_name
);
1354 /* do we already have the CODEC DAI for this link ? */
1355 if (rtd
->platform
) {
1358 /* no, then find CPU DAI from registered DAIs*/
1359 list_for_each_entry(platform
, &platform_list
, list
) {
1360 if (!strcmp(platform
->name
, dai_link
->platform_name
)) {
1361 rtd
->platform
= platform
;
1366 dev_dbg(card
->dev
, "platform %s not registered\n",
1367 dai_link
->platform_name
);
1371 /* mark rtd as complete if we found all 4 of our client devices */
1372 if (rtd
->codec
&& rtd
->codec_dai
&& rtd
->platform
&& rtd
->cpu_dai
) {
1379 static void soc_remove_codec(struct snd_soc_codec
*codec
)
1383 if (codec
->driver
->remove
) {
1384 err
= codec
->driver
->remove(codec
);
1387 "asoc: failed to remove %s: %d\n",
1391 /* Make sure all DAPM widgets are freed */
1392 snd_soc_dapm_free(&codec
->dapm
);
1394 soc_cleanup_codec_debugfs(codec
);
1396 list_del(&codec
->card_list
);
1397 module_put(codec
->dev
->driver
->owner
);
1400 static void soc_remove_dai_link(struct snd_soc_card
*card
, int num
)
1402 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1403 struct snd_soc_codec
*codec
= rtd
->codec
;
1404 struct snd_soc_platform
*platform
= rtd
->platform
;
1405 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
, *cpu_dai
= rtd
->cpu_dai
;
1408 /* unregister the rtd device */
1409 if (rtd
->dev_registered
) {
1410 device_remove_file(&rtd
->dev
, &dev_attr_pmdown_time
);
1411 device_remove_file(&rtd
->dev
, &dev_attr_codec_reg
);
1412 device_unregister(&rtd
->dev
);
1413 rtd
->dev_registered
= 0;
1416 /* remove the CODEC DAI */
1417 if (codec_dai
&& codec_dai
->probed
) {
1418 if (codec_dai
->driver
->remove
) {
1419 err
= codec_dai
->driver
->remove(codec_dai
);
1421 printk(KERN_ERR
"asoc: failed to remove %s\n", codec_dai
->name
);
1423 codec_dai
->probed
= 0;
1424 list_del(&codec_dai
->card_list
);
1427 /* remove the platform */
1428 if (platform
&& platform
->probed
) {
1429 if (platform
->driver
->remove
) {
1430 err
= platform
->driver
->remove(platform
);
1432 printk(KERN_ERR
"asoc: failed to remove %s\n", platform
->name
);
1434 platform
->probed
= 0;
1435 list_del(&platform
->card_list
);
1436 module_put(platform
->dev
->driver
->owner
);
1439 /* remove the CODEC */
1440 if (codec
&& codec
->probed
)
1441 soc_remove_codec(codec
);
1443 /* remove the cpu_dai */
1444 if (cpu_dai
&& cpu_dai
->probed
) {
1445 if (cpu_dai
->driver
->remove
) {
1446 err
= cpu_dai
->driver
->remove(cpu_dai
);
1448 printk(KERN_ERR
"asoc: failed to remove %s\n", cpu_dai
->name
);
1450 cpu_dai
->probed
= 0;
1451 list_del(&cpu_dai
->card_list
);
1452 module_put(cpu_dai
->dev
->driver
->owner
);
1456 static void soc_remove_dai_links(struct snd_soc_card
*card
)
1460 for (i
= 0; i
< card
->num_rtd
; i
++)
1461 soc_remove_dai_link(card
, i
);
1466 static void soc_set_name_prefix(struct snd_soc_card
*card
,
1467 struct snd_soc_codec
*codec
)
1471 if (card
->codec_conf
== NULL
)
1474 for (i
= 0; i
< card
->num_configs
; i
++) {
1475 struct snd_soc_codec_conf
*map
= &card
->codec_conf
[i
];
1476 if (map
->dev_name
&& !strcmp(codec
->name
, map
->dev_name
)) {
1477 codec
->name_prefix
= map
->name_prefix
;
1483 static int soc_probe_codec(struct snd_soc_card
*card
,
1484 struct snd_soc_codec
*codec
)
1487 const struct snd_soc_codec_driver
*driver
= codec
->driver
;
1490 codec
->dapm
.card
= card
;
1491 soc_set_name_prefix(card
, codec
);
1493 if (!try_module_get(codec
->dev
->driver
->owner
))
1496 if (driver
->probe
) {
1497 ret
= driver
->probe(codec
);
1500 "asoc: failed to probe CODEC %s: %d\n",
1506 if (driver
->controls
)
1507 snd_soc_add_controls(codec
, driver
->controls
,
1508 driver
->num_controls
);
1509 if (driver
->dapm_widgets
)
1510 snd_soc_dapm_new_controls(&codec
->dapm
, driver
->dapm_widgets
,
1511 driver
->num_dapm_widgets
);
1512 if (driver
->dapm_routes
)
1513 snd_soc_dapm_add_routes(&codec
->dapm
, driver
->dapm_routes
,
1514 driver
->num_dapm_routes
);
1516 soc_init_codec_debugfs(codec
);
1518 /* mark codec as probed and add to card codec list */
1520 list_add(&codec
->card_list
, &card
->codec_dev_list
);
1521 list_add(&codec
->dapm
.list
, &card
->dapm_list
);
1526 module_put(codec
->dev
->driver
->owner
);
1531 static void rtd_release(struct device
*dev
) {}
1533 static int soc_post_component_init(struct snd_soc_card
*card
,
1534 struct snd_soc_codec
*codec
,
1535 int num
, int dailess
)
1537 struct snd_soc_dai_link
*dai_link
= NULL
;
1538 struct snd_soc_aux_dev
*aux_dev
= NULL
;
1539 struct snd_soc_pcm_runtime
*rtd
;
1540 const char *temp
, *name
;
1544 dai_link
= &card
->dai_link
[num
];
1545 rtd
= &card
->rtd
[num
];
1546 name
= dai_link
->name
;
1548 aux_dev
= &card
->aux_dev
[num
];
1549 rtd
= &card
->rtd_aux
[num
];
1550 name
= aux_dev
->name
;
1554 /* machine controls, routes and widgets are not prefixed */
1555 temp
= codec
->name_prefix
;
1556 codec
->name_prefix
= NULL
;
1558 /* do machine specific initialization */
1559 if (!dailess
&& dai_link
->init
)
1560 ret
= dai_link
->init(rtd
);
1561 else if (dailess
&& aux_dev
->init
)
1562 ret
= aux_dev
->init(&codec
->dapm
);
1564 dev_err(card
->dev
, "asoc: failed to init %s: %d\n", name
, ret
);
1567 codec
->name_prefix
= temp
;
1569 /* Make sure all DAPM widgets are instantiated */
1570 snd_soc_dapm_new_widgets(&codec
->dapm
);
1572 /* register the rtd device */
1574 rtd
->dev
.parent
= card
->dev
;
1575 rtd
->dev
.release
= rtd_release
;
1576 rtd
->dev
.init_name
= name
;
1577 ret
= device_register(&rtd
->dev
);
1580 "asoc: failed to register runtime device: %d\n", ret
);
1583 rtd
->dev_registered
= 1;
1585 /* add DAPM sysfs entries for this codec */
1586 ret
= snd_soc_dapm_sys_add(&rtd
->dev
);
1589 "asoc: failed to add codec dapm sysfs entries: %d\n",
1592 /* add codec sysfs entries */
1593 ret
= device_create_file(&rtd
->dev
, &dev_attr_codec_reg
);
1596 "asoc: failed to add codec sysfs files: %d\n", ret
);
1601 static int soc_probe_dai_link(struct snd_soc_card
*card
, int num
)
1603 struct snd_soc_dai_link
*dai_link
= &card
->dai_link
[num
];
1604 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1605 struct snd_soc_codec
*codec
= rtd
->codec
;
1606 struct snd_soc_platform
*platform
= rtd
->platform
;
1607 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
, *cpu_dai
= rtd
->cpu_dai
;
1610 dev_dbg(card
->dev
, "probe %s dai link %d\n", card
->name
, num
);
1612 /* config components */
1613 codec_dai
->codec
= codec
;
1614 cpu_dai
->platform
= platform
;
1615 codec_dai
->card
= card
;
1616 cpu_dai
->card
= card
;
1618 /* set default power off timeout */
1619 rtd
->pmdown_time
= pmdown_time
;
1621 /* probe the cpu_dai */
1622 if (!cpu_dai
->probed
) {
1623 if (cpu_dai
->driver
->probe
) {
1624 ret
= cpu_dai
->driver
->probe(cpu_dai
);
1626 printk(KERN_ERR
"asoc: failed to probe CPU DAI %s\n",
1631 cpu_dai
->probed
= 1;
1632 /* mark cpu_dai as probed and add to card cpu_dai list */
1633 list_add(&cpu_dai
->card_list
, &card
->dai_dev_list
);
1636 /* probe the CODEC */
1637 if (!codec
->probed
) {
1638 ret
= soc_probe_codec(card
, codec
);
1643 /* probe the platform */
1644 if (!platform
->probed
) {
1645 if (!try_module_get(platform
->dev
->driver
->owner
))
1648 if (platform
->driver
->probe
) {
1649 ret
= platform
->driver
->probe(platform
);
1651 printk(KERN_ERR
"asoc: failed to probe platform %s\n",
1653 module_put(platform
->dev
->driver
->owner
);
1657 /* mark platform as probed and add to card platform list */
1658 platform
->probed
= 1;
1659 list_add(&platform
->card_list
, &card
->platform_dev_list
);
1662 /* probe the CODEC DAI */
1663 if (!codec_dai
->probed
) {
1664 if (codec_dai
->driver
->probe
) {
1665 ret
= codec_dai
->driver
->probe(codec_dai
);
1667 printk(KERN_ERR
"asoc: failed to probe CODEC DAI %s\n",
1673 /* mark cpu_dai as probed and add to card cpu_dai list */
1674 codec_dai
->probed
= 1;
1675 list_add(&codec_dai
->card_list
, &card
->dai_dev_list
);
1678 /* DAPM dai link stream work */
1679 INIT_DELAYED_WORK(&rtd
->delayed_work
, close_delayed_work
);
1681 ret
= soc_post_component_init(card
, codec
, num
, 0);
1685 ret
= device_create_file(&rtd
->dev
, &dev_attr_pmdown_time
);
1687 printk(KERN_WARNING
"asoc: failed to add pmdown_time sysfs\n");
1689 /* create the pcm */
1690 ret
= soc_new_pcm(rtd
, num
);
1692 printk(KERN_ERR
"asoc: can't create pcm %s\n", dai_link
->stream_name
);
1696 /* add platform data for AC97 devices */
1697 if (rtd
->codec_dai
->driver
->ac97_control
)
1698 snd_ac97_dev_add_pdata(codec
->ac97
, rtd
->cpu_dai
->ac97_pdata
);
1703 #ifdef CONFIG_SND_SOC_AC97_BUS
1704 static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime
*rtd
)
1708 /* Only instantiate AC97 if not already done by the adaptor
1709 * for the generic AC97 subsystem.
1711 if (rtd
->codec_dai
->driver
->ac97_control
&& !rtd
->codec
->ac97_registered
) {
1713 * It is possible that the AC97 device is already registered to
1714 * the device subsystem. This happens when the device is created
1715 * via snd_ac97_mixer(). Currently only SoC codec that does so
1716 * is the generic AC97 glue but others migh emerge.
1718 * In those cases we don't try to register the device again.
1720 if (!rtd
->codec
->ac97_created
)
1723 ret
= soc_ac97_dev_register(rtd
->codec
);
1725 printk(KERN_ERR
"asoc: AC97 device register failed\n");
1729 rtd
->codec
->ac97_registered
= 1;
1734 static void soc_unregister_ac97_dai_link(struct snd_soc_codec
*codec
)
1736 if (codec
->ac97_registered
) {
1737 soc_ac97_dev_unregister(codec
);
1738 codec
->ac97_registered
= 0;
1743 static int soc_probe_aux_dev(struct snd_soc_card
*card
, int num
)
1745 struct snd_soc_aux_dev
*aux_dev
= &card
->aux_dev
[num
];
1746 struct snd_soc_codec
*codec
;
1749 /* find CODEC from registered CODECs*/
1750 list_for_each_entry(codec
, &codec_list
, list
) {
1751 if (!strcmp(codec
->name
, aux_dev
->codec_name
)) {
1752 if (codec
->probed
) {
1754 "asoc: codec already probed");
1761 /* codec not found */
1762 dev_err(card
->dev
, "asoc: codec %s not found", aux_dev
->codec_name
);
1766 ret
= soc_probe_codec(card
, codec
);
1770 ret
= soc_post_component_init(card
, codec
, num
, 1);
1776 static void soc_remove_aux_dev(struct snd_soc_card
*card
, int num
)
1778 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd_aux
[num
];
1779 struct snd_soc_codec
*codec
= rtd
->codec
;
1781 /* unregister the rtd device */
1782 if (rtd
->dev_registered
) {
1783 device_remove_file(&rtd
->dev
, &dev_attr_codec_reg
);
1784 device_unregister(&rtd
->dev
);
1785 rtd
->dev_registered
= 0;
1788 if (codec
&& codec
->probed
)
1789 soc_remove_codec(codec
);
1792 static int snd_soc_init_codec_cache(struct snd_soc_codec
*codec
,
1793 enum snd_soc_compress_type compress_type
)
1797 if (codec
->cache_init
)
1800 /* override the compress_type if necessary */
1801 if (compress_type
&& codec
->compress_type
!= compress_type
)
1802 codec
->compress_type
= compress_type
;
1803 ret
= snd_soc_cache_init(codec
);
1805 dev_err(codec
->dev
, "Failed to set cache compression type: %d\n",
1809 codec
->cache_init
= 1;
1813 static void snd_soc_instantiate_card(struct snd_soc_card
*card
)
1815 struct snd_soc_codec
*codec
;
1816 struct snd_soc_codec_conf
*codec_conf
;
1817 enum snd_soc_compress_type compress_type
;
1820 mutex_lock(&card
->mutex
);
1822 if (card
->instantiated
) {
1823 mutex_unlock(&card
->mutex
);
1828 for (i
= 0; i
< card
->num_links
; i
++)
1829 soc_bind_dai_link(card
, i
);
1831 /* bind completed ? */
1832 if (card
->num_rtd
!= card
->num_links
) {
1833 mutex_unlock(&card
->mutex
);
1837 /* initialize the register cache for each available codec */
1838 list_for_each_entry(codec
, &codec_list
, list
) {
1839 if (codec
->cache_init
)
1841 /* by default we don't override the compress_type */
1843 /* check to see if we need to override the compress_type */
1844 for (i
= 0; i
< card
->num_configs
; ++i
) {
1845 codec_conf
= &card
->codec_conf
[i
];
1846 if (!strcmp(codec
->name
, codec_conf
->dev_name
)) {
1847 compress_type
= codec_conf
->compress_type
;
1848 if (compress_type
&& compress_type
1849 != codec
->compress_type
)
1853 ret
= snd_soc_init_codec_cache(codec
, compress_type
);
1855 mutex_unlock(&card
->mutex
);
1860 /* card bind complete so register a sound card */
1861 ret
= snd_card_create(SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
,
1862 card
->owner
, 0, &card
->snd_card
);
1864 printk(KERN_ERR
"asoc: can't create sound card for card %s\n",
1866 mutex_unlock(&card
->mutex
);
1869 card
->snd_card
->dev
= card
->dev
;
1871 card
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
1872 card
->dapm
.dev
= card
->dev
;
1873 card
->dapm
.card
= card
;
1874 list_add(&card
->dapm
.list
, &card
->dapm_list
);
1876 #ifdef CONFIG_PM_SLEEP
1877 /* deferred resume work */
1878 INIT_WORK(&card
->deferred_resume_work
, soc_resume_deferred
);
1881 if (card
->dapm_widgets
)
1882 snd_soc_dapm_new_controls(&card
->dapm
, card
->dapm_widgets
,
1883 card
->num_dapm_widgets
);
1885 /* initialise the sound card only once */
1887 ret
= card
->probe(card
);
1889 goto card_probe_error
;
1892 for (i
= 0; i
< card
->num_links
; i
++) {
1893 ret
= soc_probe_dai_link(card
, i
);
1895 pr_err("asoc: failed to instantiate card %s: %d\n",
1901 for (i
= 0; i
< card
->num_aux_devs
; i
++) {
1902 ret
= soc_probe_aux_dev(card
, i
);
1904 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1906 goto probe_aux_dev_err
;
1910 /* We should have a non-codec control add function but we don't */
1912 snd_soc_add_controls(list_first_entry(&card
->codec_dev_list
,
1913 struct snd_soc_codec
,
1916 card
->num_controls
);
1918 if (card
->dapm_routes
)
1919 snd_soc_dapm_add_routes(&card
->dapm
, card
->dapm_routes
,
1920 card
->num_dapm_routes
);
1922 #ifdef CONFIG_DEBUG_FS
1923 card
->dapm
.debugfs_dapm
= debugfs_create_dir("dapm",
1924 card
->debugfs_card_root
);
1925 if (!card
->dapm
.debugfs_dapm
)
1927 "Failed to create card DAPM debugfs directory\n");
1929 snd_soc_dapm_debugfs_init(&card
->dapm
);
1932 snprintf(card
->snd_card
->shortname
, sizeof(card
->snd_card
->shortname
),
1934 snprintf(card
->snd_card
->longname
, sizeof(card
->snd_card
->longname
),
1937 if (card
->late_probe
) {
1938 ret
= card
->late_probe(card
);
1940 dev_err(card
->dev
, "%s late_probe() failed: %d\n",
1942 goto probe_aux_dev_err
;
1946 ret
= snd_card_register(card
->snd_card
);
1948 printk(KERN_ERR
"asoc: failed to register soundcard for %s\n", card
->name
);
1949 goto probe_aux_dev_err
;
1952 #ifdef CONFIG_SND_SOC_AC97_BUS
1953 /* register any AC97 codecs */
1954 for (i
= 0; i
< card
->num_rtd
; i
++) {
1955 ret
= soc_register_ac97_dai_link(&card
->rtd
[i
]);
1957 printk(KERN_ERR
"asoc: failed to register AC97 %s\n", card
->name
);
1959 soc_unregister_ac97_dai_link(card
->rtd
[i
].codec
);
1960 goto probe_aux_dev_err
;
1965 card
->instantiated
= 1;
1966 mutex_unlock(&card
->mutex
);
1970 for (i
= 0; i
< card
->num_aux_devs
; i
++)
1971 soc_remove_aux_dev(card
, i
);
1974 soc_remove_dai_links(card
);
1980 snd_card_free(card
->snd_card
);
1982 mutex_unlock(&card
->mutex
);
1986 * Attempt to initialise any uninitialised cards. Must be called with
1989 static void snd_soc_instantiate_cards(void)
1991 struct snd_soc_card
*card
;
1992 list_for_each_entry(card
, &card_list
, list
)
1993 snd_soc_instantiate_card(card
);
1996 /* probes a new socdev */
1997 static int soc_probe(struct platform_device
*pdev
)
1999 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
2003 * no card, so machine driver should be registering card
2004 * we should not be here in that case so ret error
2009 /* Bodge while we unpick instantiation */
2010 card
->dev
= &pdev
->dev
;
2012 ret
= snd_soc_register_card(card
);
2014 dev_err(&pdev
->dev
, "Failed to register card\n");
2021 static int soc_cleanup_card_resources(struct snd_soc_card
*card
)
2025 /* make sure any delayed work runs */
2026 for (i
= 0; i
< card
->num_rtd
; i
++) {
2027 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[i
];
2028 flush_delayed_work_sync(&rtd
->delayed_work
);
2031 /* remove auxiliary devices */
2032 for (i
= 0; i
< card
->num_aux_devs
; i
++)
2033 soc_remove_aux_dev(card
, i
);
2035 /* remove and free each DAI */
2036 soc_remove_dai_links(card
);
2038 soc_cleanup_card_debugfs(card
);
2040 /* remove the card */
2045 snd_card_free(card
->snd_card
);
2050 /* removes a socdev */
2051 static int soc_remove(struct platform_device
*pdev
)
2053 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
2055 snd_soc_unregister_card(card
);
2059 int snd_soc_poweroff(struct device
*dev
)
2061 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
2064 if (!card
->instantiated
)
2067 /* Flush out pmdown_time work - we actually do want to run it
2068 * now, we're shutting down so no imminent restart. */
2069 for (i
= 0; i
< card
->num_rtd
; i
++) {
2070 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[i
];
2071 flush_delayed_work_sync(&rtd
->delayed_work
);
2074 snd_soc_dapm_shutdown(card
);
2078 EXPORT_SYMBOL_GPL(snd_soc_poweroff
);
2080 const struct dev_pm_ops snd_soc_pm_ops
= {
2081 .suspend
= snd_soc_suspend
,
2082 .resume
= snd_soc_resume
,
2083 .poweroff
= snd_soc_poweroff
,
2085 EXPORT_SYMBOL_GPL(snd_soc_pm_ops
);
2087 /* ASoC platform driver */
2088 static struct platform_driver soc_driver
= {
2090 .name
= "soc-audio",
2091 .owner
= THIS_MODULE
,
2092 .pm
= &snd_soc_pm_ops
,
2095 .remove
= soc_remove
,
2098 /* create a new pcm */
2099 static int soc_new_pcm(struct snd_soc_pcm_runtime
*rtd
, int num
)
2101 struct snd_soc_codec
*codec
= rtd
->codec
;
2102 struct snd_soc_platform
*platform
= rtd
->platform
;
2103 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
2104 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
2105 struct snd_pcm
*pcm
;
2107 int ret
= 0, playback
= 0, capture
= 0;
2109 /* check client and interface hw capabilities */
2110 snprintf(new_name
, sizeof(new_name
), "%s %s-%d",
2111 rtd
->dai_link
->stream_name
, codec_dai
->name
, num
);
2113 if (codec_dai
->driver
->playback
.channels_min
)
2115 if (codec_dai
->driver
->capture
.channels_min
)
2118 dev_dbg(rtd
->card
->dev
, "registered pcm #%d %s\n",num
,new_name
);
2119 ret
= snd_pcm_new(rtd
->card
->snd_card
, new_name
,
2120 num
, playback
, capture
, &pcm
);
2122 printk(KERN_ERR
"asoc: can't create pcm for codec %s\n", codec
->name
);
2127 pcm
->private_data
= rtd
;
2128 soc_pcm_ops
.mmap
= platform
->driver
->ops
->mmap
;
2129 soc_pcm_ops
.pointer
= platform
->driver
->ops
->pointer
;
2130 soc_pcm_ops
.ioctl
= platform
->driver
->ops
->ioctl
;
2131 soc_pcm_ops
.copy
= platform
->driver
->ops
->copy
;
2132 soc_pcm_ops
.silence
= platform
->driver
->ops
->silence
;
2133 soc_pcm_ops
.ack
= platform
->driver
->ops
->ack
;
2134 soc_pcm_ops
.page
= platform
->driver
->ops
->page
;
2137 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &soc_pcm_ops
);
2140 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &soc_pcm_ops
);
2142 ret
= platform
->driver
->pcm_new(rtd
->card
->snd_card
, codec_dai
, pcm
);
2144 printk(KERN_ERR
"asoc: platform pcm constructor failed\n");
2148 pcm
->private_free
= platform
->driver
->pcm_free
;
2149 printk(KERN_INFO
"asoc: %s <-> %s mapping ok\n", codec_dai
->name
,
2155 * snd_soc_codec_volatile_register: Report if a register is volatile.
2157 * @codec: CODEC to query.
2158 * @reg: Register to query.
2160 * Boolean function indiciating if a CODEC register is volatile.
2162 int snd_soc_codec_volatile_register(struct snd_soc_codec
*codec
,
2165 if (codec
->volatile_register
)
2166 return codec
->volatile_register(codec
, reg
);
2170 EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register
);
2173 * snd_soc_codec_readable_register: Report if a register is readable.
2175 * @codec: CODEC to query.
2176 * @reg: Register to query.
2178 * Boolean function indicating if a CODEC register is readable.
2180 int snd_soc_codec_readable_register(struct snd_soc_codec
*codec
,
2183 if (codec
->readable_register
)
2184 return codec
->readable_register(codec
, reg
);
2188 EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register
);
2191 * snd_soc_codec_writable_register: Report if a register is writable.
2193 * @codec: CODEC to query.
2194 * @reg: Register to query.
2196 * Boolean function indicating if a CODEC register is writable.
2198 int snd_soc_codec_writable_register(struct snd_soc_codec
*codec
,
2201 if (codec
->writable_register
)
2202 return codec
->writable_register(codec
, reg
);
2206 EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register
);
2209 * snd_soc_new_ac97_codec - initailise AC97 device
2210 * @codec: audio codec
2211 * @ops: AC97 bus operations
2212 * @num: AC97 codec number
2214 * Initialises AC97 codec resources for use by ad-hoc devices only.
2216 int snd_soc_new_ac97_codec(struct snd_soc_codec
*codec
,
2217 struct snd_ac97_bus_ops
*ops
, int num
)
2219 mutex_lock(&codec
->mutex
);
2221 codec
->ac97
= kzalloc(sizeof(struct snd_ac97
), GFP_KERNEL
);
2222 if (codec
->ac97
== NULL
) {
2223 mutex_unlock(&codec
->mutex
);
2227 codec
->ac97
->bus
= kzalloc(sizeof(struct snd_ac97_bus
), GFP_KERNEL
);
2228 if (codec
->ac97
->bus
== NULL
) {
2231 mutex_unlock(&codec
->mutex
);
2235 codec
->ac97
->bus
->ops
= ops
;
2236 codec
->ac97
->num
= num
;
2239 * Mark the AC97 device to be created by us. This way we ensure that the
2240 * device will be registered with the device subsystem later on.
2242 codec
->ac97_created
= 1;
2244 mutex_unlock(&codec
->mutex
);
2247 EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec
);
2250 * snd_soc_free_ac97_codec - free AC97 codec device
2251 * @codec: audio codec
2253 * Frees AC97 codec device resources.
2255 void snd_soc_free_ac97_codec(struct snd_soc_codec
*codec
)
2257 mutex_lock(&codec
->mutex
);
2258 #ifdef CONFIG_SND_SOC_AC97_BUS
2259 soc_unregister_ac97_dai_link(codec
);
2261 kfree(codec
->ac97
->bus
);
2264 codec
->ac97_created
= 0;
2265 mutex_unlock(&codec
->mutex
);
2267 EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec
);
2269 unsigned int snd_soc_read(struct snd_soc_codec
*codec
, unsigned int reg
)
2273 ret
= codec
->read(codec
, reg
);
2274 dev_dbg(codec
->dev
, "read %x => %x\n", reg
, ret
);
2275 trace_snd_soc_reg_read(codec
, reg
, ret
);
2279 EXPORT_SYMBOL_GPL(snd_soc_read
);
2281 unsigned int snd_soc_write(struct snd_soc_codec
*codec
,
2282 unsigned int reg
, unsigned int val
)
2284 dev_dbg(codec
->dev
, "write %x = %x\n", reg
, val
);
2285 trace_snd_soc_reg_write(codec
, reg
, val
);
2286 return codec
->write(codec
, reg
, val
);
2288 EXPORT_SYMBOL_GPL(snd_soc_write
);
2290 unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec
*codec
,
2291 unsigned int reg
, const void *data
, size_t len
)
2293 return codec
->bulk_write_raw(codec
, reg
, data
, len
);
2295 EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw
);
2298 * snd_soc_update_bits - update codec register bits
2299 * @codec: audio codec
2300 * @reg: codec register
2301 * @mask: register mask
2304 * Writes new register value.
2306 * Returns 1 for change, 0 for no change, or negative error code.
2308 int snd_soc_update_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
2309 unsigned int mask
, unsigned int value
)
2312 unsigned int old
, new;
2315 ret
= snd_soc_read(codec
, reg
);
2320 new = (old
& ~mask
) | value
;
2321 change
= old
!= new;
2323 ret
= snd_soc_write(codec
, reg
, new);
2330 EXPORT_SYMBOL_GPL(snd_soc_update_bits
);
2333 * snd_soc_update_bits_locked - update codec register bits
2334 * @codec: audio codec
2335 * @reg: codec register
2336 * @mask: register mask
2339 * Writes new register value, and takes the codec mutex.
2341 * Returns 1 for change else 0.
2343 int snd_soc_update_bits_locked(struct snd_soc_codec
*codec
,
2344 unsigned short reg
, unsigned int mask
,
2349 mutex_lock(&codec
->mutex
);
2350 change
= snd_soc_update_bits(codec
, reg
, mask
, value
);
2351 mutex_unlock(&codec
->mutex
);
2355 EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked
);
2358 * snd_soc_test_bits - test register for change
2359 * @codec: audio codec
2360 * @reg: codec register
2361 * @mask: register mask
2364 * Tests a register with a new value and checks if the new value is
2365 * different from the old value.
2367 * Returns 1 for change else 0.
2369 int snd_soc_test_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
2370 unsigned int mask
, unsigned int value
)
2373 unsigned int old
, new;
2375 old
= snd_soc_read(codec
, reg
);
2376 new = (old
& ~mask
) | value
;
2377 change
= old
!= new;
2381 EXPORT_SYMBOL_GPL(snd_soc_test_bits
);
2384 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2385 * @substream: the pcm substream
2386 * @hw: the hardware parameters
2388 * Sets the substream runtime hardware parameters.
2390 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream
*substream
,
2391 const struct snd_pcm_hardware
*hw
)
2393 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2394 runtime
->hw
.info
= hw
->info
;
2395 runtime
->hw
.formats
= hw
->formats
;
2396 runtime
->hw
.period_bytes_min
= hw
->period_bytes_min
;
2397 runtime
->hw
.period_bytes_max
= hw
->period_bytes_max
;
2398 runtime
->hw
.periods_min
= hw
->periods_min
;
2399 runtime
->hw
.periods_max
= hw
->periods_max
;
2400 runtime
->hw
.buffer_bytes_max
= hw
->buffer_bytes_max
;
2401 runtime
->hw
.fifo_size
= hw
->fifo_size
;
2404 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams
);
2407 * snd_soc_cnew - create new control
2408 * @_template: control template
2409 * @data: control private data
2410 * @long_name: control long name
2411 * @prefix: control name prefix
2413 * Create a new mixer control from a template control.
2415 * Returns 0 for success, else error.
2417 struct snd_kcontrol
*snd_soc_cnew(const struct snd_kcontrol_new
*_template
,
2418 void *data
, char *long_name
,
2421 struct snd_kcontrol_new
template;
2422 struct snd_kcontrol
*kcontrol
;
2426 memcpy(&template, _template
, sizeof(template));
2430 long_name
= template.name
;
2433 name_len
= strlen(long_name
) + strlen(prefix
) + 2;
2434 name
= kmalloc(name_len
, GFP_ATOMIC
);
2438 snprintf(name
, name_len
, "%s %s", prefix
, long_name
);
2440 template.name
= name
;
2442 template.name
= long_name
;
2445 kcontrol
= snd_ctl_new1(&template, data
);
2451 EXPORT_SYMBOL_GPL(snd_soc_cnew
);
2454 * snd_soc_add_controls - add an array of controls to a codec.
2455 * Convienience function to add a list of controls. Many codecs were
2456 * duplicating this code.
2458 * @codec: codec to add controls to
2459 * @controls: array of controls to add
2460 * @num_controls: number of elements in the array
2462 * Return 0 for success, else error.
2464 int snd_soc_add_controls(struct snd_soc_codec
*codec
,
2465 const struct snd_kcontrol_new
*controls
, int num_controls
)
2467 struct snd_card
*card
= codec
->card
->snd_card
;
2470 for (i
= 0; i
< num_controls
; i
++) {
2471 const struct snd_kcontrol_new
*control
= &controls
[i
];
2472 err
= snd_ctl_add(card
, snd_soc_cnew(control
, codec
,
2474 codec
->name_prefix
));
2476 dev_err(codec
->dev
, "%s: Failed to add %s: %d\n",
2477 codec
->name
, control
->name
, err
);
2484 EXPORT_SYMBOL_GPL(snd_soc_add_controls
);
2487 * snd_soc_info_enum_double - enumerated double mixer info callback
2488 * @kcontrol: mixer control
2489 * @uinfo: control element information
2491 * Callback to provide information about a double enumerated
2494 * Returns 0 for success.
2496 int snd_soc_info_enum_double(struct snd_kcontrol
*kcontrol
,
2497 struct snd_ctl_elem_info
*uinfo
)
2499 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2501 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2502 uinfo
->count
= e
->shift_l
== e
->shift_r
? 1 : 2;
2503 uinfo
->value
.enumerated
.items
= e
->max
;
2505 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
2506 uinfo
->value
.enumerated
.item
= e
->max
- 1;
2507 strcpy(uinfo
->value
.enumerated
.name
,
2508 e
->texts
[uinfo
->value
.enumerated
.item
]);
2511 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double
);
2514 * snd_soc_get_enum_double - enumerated double mixer get callback
2515 * @kcontrol: mixer control
2516 * @ucontrol: control element information
2518 * Callback to get the value of a double enumerated mixer.
2520 * Returns 0 for success.
2522 int snd_soc_get_enum_double(struct snd_kcontrol
*kcontrol
,
2523 struct snd_ctl_elem_value
*ucontrol
)
2525 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2526 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2527 unsigned int val
, bitmask
;
2529 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
2531 val
= snd_soc_read(codec
, e
->reg
);
2532 ucontrol
->value
.enumerated
.item
[0]
2533 = (val
>> e
->shift_l
) & (bitmask
- 1);
2534 if (e
->shift_l
!= e
->shift_r
)
2535 ucontrol
->value
.enumerated
.item
[1] =
2536 (val
>> e
->shift_r
) & (bitmask
- 1);
2540 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double
);
2543 * snd_soc_put_enum_double - enumerated double mixer put callback
2544 * @kcontrol: mixer control
2545 * @ucontrol: control element information
2547 * Callback to set the value of a double enumerated mixer.
2549 * Returns 0 for success.
2551 int snd_soc_put_enum_double(struct snd_kcontrol
*kcontrol
,
2552 struct snd_ctl_elem_value
*ucontrol
)
2554 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2555 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2557 unsigned int mask
, bitmask
;
2559 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
2561 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
2563 val
= ucontrol
->value
.enumerated
.item
[0] << e
->shift_l
;
2564 mask
= (bitmask
- 1) << e
->shift_l
;
2565 if (e
->shift_l
!= e
->shift_r
) {
2566 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2568 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
2569 mask
|= (bitmask
- 1) << e
->shift_r
;
2572 return snd_soc_update_bits_locked(codec
, e
->reg
, mask
, val
);
2574 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double
);
2577 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2578 * @kcontrol: mixer control
2579 * @ucontrol: control element information
2581 * Callback to get the value of a double semi enumerated mixer.
2583 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2584 * used for handling bitfield coded enumeration for example.
2586 * Returns 0 for success.
2588 int snd_soc_get_value_enum_double(struct snd_kcontrol
*kcontrol
,
2589 struct snd_ctl_elem_value
*ucontrol
)
2591 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2592 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2593 unsigned int reg_val
, val
, mux
;
2595 reg_val
= snd_soc_read(codec
, e
->reg
);
2596 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
2597 for (mux
= 0; mux
< e
->max
; mux
++) {
2598 if (val
== e
->values
[mux
])
2601 ucontrol
->value
.enumerated
.item
[0] = mux
;
2602 if (e
->shift_l
!= e
->shift_r
) {
2603 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
2604 for (mux
= 0; mux
< e
->max
; mux
++) {
2605 if (val
== e
->values
[mux
])
2608 ucontrol
->value
.enumerated
.item
[1] = mux
;
2613 EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double
);
2616 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2617 * @kcontrol: mixer control
2618 * @ucontrol: control element information
2620 * Callback to set the value of a double semi enumerated mixer.
2622 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2623 * used for handling bitfield coded enumeration for example.
2625 * Returns 0 for success.
2627 int snd_soc_put_value_enum_double(struct snd_kcontrol
*kcontrol
,
2628 struct snd_ctl_elem_value
*ucontrol
)
2630 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2631 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2635 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
2637 val
= e
->values
[ucontrol
->value
.enumerated
.item
[0]] << e
->shift_l
;
2638 mask
= e
->mask
<< e
->shift_l
;
2639 if (e
->shift_l
!= e
->shift_r
) {
2640 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2642 val
|= e
->values
[ucontrol
->value
.enumerated
.item
[1]] << e
->shift_r
;
2643 mask
|= e
->mask
<< e
->shift_r
;
2646 return snd_soc_update_bits_locked(codec
, e
->reg
, mask
, val
);
2648 EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double
);
2651 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2652 * @kcontrol: mixer control
2653 * @uinfo: control element information
2655 * Callback to provide information about an external enumerated
2658 * Returns 0 for success.
2660 int snd_soc_info_enum_ext(struct snd_kcontrol
*kcontrol
,
2661 struct snd_ctl_elem_info
*uinfo
)
2663 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2665 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2667 uinfo
->value
.enumerated
.items
= e
->max
;
2669 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
2670 uinfo
->value
.enumerated
.item
= e
->max
- 1;
2671 strcpy(uinfo
->value
.enumerated
.name
,
2672 e
->texts
[uinfo
->value
.enumerated
.item
]);
2675 EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext
);
2678 * snd_soc_info_volsw_ext - external single mixer info callback
2679 * @kcontrol: mixer control
2680 * @uinfo: control element information
2682 * Callback to provide information about a single external mixer control.
2684 * Returns 0 for success.
2686 int snd_soc_info_volsw_ext(struct snd_kcontrol
*kcontrol
,
2687 struct snd_ctl_elem_info
*uinfo
)
2689 int max
= kcontrol
->private_value
;
2691 if (max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2692 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2694 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2697 uinfo
->value
.integer
.min
= 0;
2698 uinfo
->value
.integer
.max
= max
;
2701 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext
);
2704 * snd_soc_info_volsw - single mixer info callback
2705 * @kcontrol: mixer control
2706 * @uinfo: control element information
2708 * Callback to provide information about a single mixer control.
2710 * Returns 0 for success.
2712 int snd_soc_info_volsw(struct snd_kcontrol
*kcontrol
,
2713 struct snd_ctl_elem_info
*uinfo
)
2715 struct soc_mixer_control
*mc
=
2716 (struct soc_mixer_control
*)kcontrol
->private_value
;
2718 unsigned int shift
= mc
->shift
;
2719 unsigned int rshift
= mc
->rshift
;
2721 if (!mc
->platform_max
)
2722 mc
->platform_max
= mc
->max
;
2723 platform_max
= mc
->platform_max
;
2725 if (platform_max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2726 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2728 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2730 uinfo
->count
= shift
== rshift
? 1 : 2;
2731 uinfo
->value
.integer
.min
= 0;
2732 uinfo
->value
.integer
.max
= platform_max
;
2735 EXPORT_SYMBOL_GPL(snd_soc_info_volsw
);
2738 * snd_soc_get_volsw - single mixer get callback
2739 * @kcontrol: mixer control
2740 * @ucontrol: control element information
2742 * Callback to get the value of a single mixer control.
2744 * Returns 0 for success.
2746 int snd_soc_get_volsw(struct snd_kcontrol
*kcontrol
,
2747 struct snd_ctl_elem_value
*ucontrol
)
2749 struct soc_mixer_control
*mc
=
2750 (struct soc_mixer_control
*)kcontrol
->private_value
;
2751 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2752 unsigned int reg
= mc
->reg
;
2753 unsigned int shift
= mc
->shift
;
2754 unsigned int rshift
= mc
->rshift
;
2756 unsigned int mask
= (1 << fls(max
)) - 1;
2757 unsigned int invert
= mc
->invert
;
2759 ucontrol
->value
.integer
.value
[0] =
2760 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
2761 if (shift
!= rshift
)
2762 ucontrol
->value
.integer
.value
[1] =
2763 (snd_soc_read(codec
, reg
) >> rshift
) & mask
;
2765 ucontrol
->value
.integer
.value
[0] =
2766 max
- ucontrol
->value
.integer
.value
[0];
2767 if (shift
!= rshift
)
2768 ucontrol
->value
.integer
.value
[1] =
2769 max
- ucontrol
->value
.integer
.value
[1];
2774 EXPORT_SYMBOL_GPL(snd_soc_get_volsw
);
2777 * snd_soc_put_volsw - single mixer put callback
2778 * @kcontrol: mixer control
2779 * @ucontrol: control element information
2781 * Callback to set the value of a single mixer control.
2783 * Returns 0 for success.
2785 int snd_soc_put_volsw(struct snd_kcontrol
*kcontrol
,
2786 struct snd_ctl_elem_value
*ucontrol
)
2788 struct soc_mixer_control
*mc
=
2789 (struct soc_mixer_control
*)kcontrol
->private_value
;
2790 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2791 unsigned int reg
= mc
->reg
;
2792 unsigned int shift
= mc
->shift
;
2793 unsigned int rshift
= mc
->rshift
;
2795 unsigned int mask
= (1 << fls(max
)) - 1;
2796 unsigned int invert
= mc
->invert
;
2797 unsigned int val
, val2
, val_mask
;
2799 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
2802 val_mask
= mask
<< shift
;
2804 if (shift
!= rshift
) {
2805 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
2808 val_mask
|= mask
<< rshift
;
2809 val
|= val2
<< rshift
;
2811 return snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2813 EXPORT_SYMBOL_GPL(snd_soc_put_volsw
);
2816 * snd_soc_info_volsw_2r - double mixer info callback
2817 * @kcontrol: mixer control
2818 * @uinfo: control element information
2820 * Callback to provide information about a double mixer control that
2821 * spans 2 codec registers.
2823 * Returns 0 for success.
2825 int snd_soc_info_volsw_2r(struct snd_kcontrol
*kcontrol
,
2826 struct snd_ctl_elem_info
*uinfo
)
2828 struct soc_mixer_control
*mc
=
2829 (struct soc_mixer_control
*)kcontrol
->private_value
;
2832 if (!mc
->platform_max
)
2833 mc
->platform_max
= mc
->max
;
2834 platform_max
= mc
->platform_max
;
2836 if (platform_max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2837 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2839 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2842 uinfo
->value
.integer
.min
= 0;
2843 uinfo
->value
.integer
.max
= platform_max
;
2846 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r
);
2849 * snd_soc_get_volsw_2r - double mixer get callback
2850 * @kcontrol: mixer control
2851 * @ucontrol: control element information
2853 * Callback to get the value of a double mixer control that spans 2 registers.
2855 * Returns 0 for success.
2857 int snd_soc_get_volsw_2r(struct snd_kcontrol
*kcontrol
,
2858 struct snd_ctl_elem_value
*ucontrol
)
2860 struct soc_mixer_control
*mc
=
2861 (struct soc_mixer_control
*)kcontrol
->private_value
;
2862 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2863 unsigned int reg
= mc
->reg
;
2864 unsigned int reg2
= mc
->rreg
;
2865 unsigned int shift
= mc
->shift
;
2867 unsigned int mask
= (1 << fls(max
)) - 1;
2868 unsigned int invert
= mc
->invert
;
2870 ucontrol
->value
.integer
.value
[0] =
2871 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
2872 ucontrol
->value
.integer
.value
[1] =
2873 (snd_soc_read(codec
, reg2
) >> shift
) & mask
;
2875 ucontrol
->value
.integer
.value
[0] =
2876 max
- ucontrol
->value
.integer
.value
[0];
2877 ucontrol
->value
.integer
.value
[1] =
2878 max
- ucontrol
->value
.integer
.value
[1];
2883 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r
);
2886 * snd_soc_put_volsw_2r - double mixer set callback
2887 * @kcontrol: mixer control
2888 * @ucontrol: control element information
2890 * Callback to set the value of a double mixer control that spans 2 registers.
2892 * Returns 0 for success.
2894 int snd_soc_put_volsw_2r(struct snd_kcontrol
*kcontrol
,
2895 struct snd_ctl_elem_value
*ucontrol
)
2897 struct soc_mixer_control
*mc
=
2898 (struct soc_mixer_control
*)kcontrol
->private_value
;
2899 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2900 unsigned int reg
= mc
->reg
;
2901 unsigned int reg2
= mc
->rreg
;
2902 unsigned int shift
= mc
->shift
;
2904 unsigned int mask
= (1 << fls(max
)) - 1;
2905 unsigned int invert
= mc
->invert
;
2907 unsigned int val
, val2
, val_mask
;
2909 val_mask
= mask
<< shift
;
2910 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
2911 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
2919 val2
= val2
<< shift
;
2921 err
= snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2925 err
= snd_soc_update_bits_locked(codec
, reg2
, val_mask
, val2
);
2928 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r
);
2931 * snd_soc_info_volsw_s8 - signed mixer info callback
2932 * @kcontrol: mixer control
2933 * @uinfo: control element information
2935 * Callback to provide information about a signed mixer control.
2937 * Returns 0 for success.
2939 int snd_soc_info_volsw_s8(struct snd_kcontrol
*kcontrol
,
2940 struct snd_ctl_elem_info
*uinfo
)
2942 struct soc_mixer_control
*mc
=
2943 (struct soc_mixer_control
*)kcontrol
->private_value
;
2947 if (!mc
->platform_max
)
2948 mc
->platform_max
= mc
->max
;
2949 platform_max
= mc
->platform_max
;
2951 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2953 uinfo
->value
.integer
.min
= 0;
2954 uinfo
->value
.integer
.max
= platform_max
- min
;
2957 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8
);
2960 * snd_soc_get_volsw_s8 - signed mixer get callback
2961 * @kcontrol: mixer control
2962 * @ucontrol: control element information
2964 * Callback to get the value of a signed mixer control.
2966 * Returns 0 for success.
2968 int snd_soc_get_volsw_s8(struct snd_kcontrol
*kcontrol
,
2969 struct snd_ctl_elem_value
*ucontrol
)
2971 struct soc_mixer_control
*mc
=
2972 (struct soc_mixer_control
*)kcontrol
->private_value
;
2973 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2974 unsigned int reg
= mc
->reg
;
2976 int val
= snd_soc_read(codec
, reg
);
2978 ucontrol
->value
.integer
.value
[0] =
2979 ((signed char)(val
& 0xff))-min
;
2980 ucontrol
->value
.integer
.value
[1] =
2981 ((signed char)((val
>> 8) & 0xff))-min
;
2984 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8
);
2987 * snd_soc_put_volsw_sgn - signed mixer put callback
2988 * @kcontrol: mixer control
2989 * @ucontrol: control element information
2991 * Callback to set the value of a signed mixer control.
2993 * Returns 0 for success.
2995 int snd_soc_put_volsw_s8(struct snd_kcontrol
*kcontrol
,
2996 struct snd_ctl_elem_value
*ucontrol
)
2998 struct soc_mixer_control
*mc
=
2999 (struct soc_mixer_control
*)kcontrol
->private_value
;
3000 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3001 unsigned int reg
= mc
->reg
;
3005 val
= (ucontrol
->value
.integer
.value
[0]+min
) & 0xff;
3006 val
|= ((ucontrol
->value
.integer
.value
[1]+min
) & 0xff) << 8;
3008 return snd_soc_update_bits_locked(codec
, reg
, 0xffff, val
);
3010 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8
);
3013 * snd_soc_limit_volume - Set new limit to an existing volume control.
3015 * @codec: where to look for the control
3016 * @name: Name of the control
3017 * @max: new maximum limit
3019 * Return 0 for success, else error.
3021 int snd_soc_limit_volume(struct snd_soc_codec
*codec
,
3022 const char *name
, int max
)
3024 struct snd_card
*card
= codec
->card
->snd_card
;
3025 struct snd_kcontrol
*kctl
;
3026 struct soc_mixer_control
*mc
;
3030 /* Sanity check for name and max */
3031 if (unlikely(!name
|| max
<= 0))
3034 list_for_each_entry(kctl
, &card
->controls
, list
) {
3035 if (!strncmp(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
))) {
3041 mc
= (struct soc_mixer_control
*)kctl
->private_value
;
3042 if (max
<= mc
->max
) {
3043 mc
->platform_max
= max
;
3049 EXPORT_SYMBOL_GPL(snd_soc_limit_volume
);
3052 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
3053 * mixer info callback
3054 * @kcontrol: mixer control
3055 * @uinfo: control element information
3057 * Returns 0 for success.
3059 int snd_soc_info_volsw_2r_sx(struct snd_kcontrol
*kcontrol
,
3060 struct snd_ctl_elem_info
*uinfo
)
3062 struct soc_mixer_control
*mc
=
3063 (struct soc_mixer_control
*)kcontrol
->private_value
;
3067 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
3069 uinfo
->value
.integer
.min
= 0;
3070 uinfo
->value
.integer
.max
= max
-min
;
3074 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx
);
3077 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
3078 * mixer get callback
3079 * @kcontrol: mixer control
3080 * @uinfo: control element information
3082 * Returns 0 for success.
3084 int snd_soc_get_volsw_2r_sx(struct snd_kcontrol
*kcontrol
,
3085 struct snd_ctl_elem_value
*ucontrol
)
3087 struct soc_mixer_control
*mc
=
3088 (struct soc_mixer_control
*)kcontrol
->private_value
;
3089 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3090 unsigned int mask
= (1<<mc
->shift
)-1;
3092 int val
= snd_soc_read(codec
, mc
->reg
) & mask
;
3093 int valr
= snd_soc_read(codec
, mc
->rreg
) & mask
;
3095 ucontrol
->value
.integer
.value
[0] = ((val
& 0xff)-min
) & mask
;
3096 ucontrol
->value
.integer
.value
[1] = ((valr
& 0xff)-min
) & mask
;
3099 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx
);
3102 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
3103 * mixer put callback
3104 * @kcontrol: mixer control
3105 * @uinfo: control element information
3107 * Returns 0 for success.
3109 int snd_soc_put_volsw_2r_sx(struct snd_kcontrol
*kcontrol
,
3110 struct snd_ctl_elem_value
*ucontrol
)
3112 struct soc_mixer_control
*mc
=
3113 (struct soc_mixer_control
*)kcontrol
->private_value
;
3114 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3115 unsigned int mask
= (1<<mc
->shift
)-1;
3118 unsigned int val
, valr
, oval
, ovalr
;
3120 val
= ((ucontrol
->value
.integer
.value
[0]+min
) & 0xff);
3122 valr
= ((ucontrol
->value
.integer
.value
[1]+min
) & 0xff);
3125 oval
= snd_soc_read(codec
, mc
->reg
) & mask
;
3126 ovalr
= snd_soc_read(codec
, mc
->rreg
) & mask
;
3130 ret
= snd_soc_write(codec
, mc
->reg
, val
);
3134 if (ovalr
!= valr
) {
3135 ret
= snd_soc_write(codec
, mc
->rreg
, valr
);
3142 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx
);
3145 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3147 * @clk_id: DAI specific clock ID
3148 * @freq: new clock frequency in Hz
3149 * @dir: new clock direction - input/output.
3151 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3153 int snd_soc_dai_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
3154 unsigned int freq
, int dir
)
3156 if (dai
->driver
&& dai
->driver
->ops
->set_sysclk
)
3157 return dai
->driver
->ops
->set_sysclk(dai
, clk_id
, freq
, dir
);
3158 else if (dai
->codec
&& dai
->codec
->driver
->set_sysclk
)
3159 return dai
->codec
->driver
->set_sysclk(dai
->codec
, clk_id
,
3164 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk
);
3167 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3169 * @clk_id: DAI specific clock ID
3170 * @freq: new clock frequency in Hz
3171 * @dir: new clock direction - input/output.
3173 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3175 int snd_soc_codec_set_sysclk(struct snd_soc_codec
*codec
, int clk_id
,
3176 unsigned int freq
, int dir
)
3178 if (codec
->driver
->set_sysclk
)
3179 return codec
->driver
->set_sysclk(codec
, clk_id
, freq
, dir
);
3183 EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk
);
3186 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3188 * @div_id: DAI specific clock divider ID
3189 * @div: new clock divisor.
3191 * Configures the clock dividers. This is used to derive the best DAI bit and
3192 * frame clocks from the system or master clock. It's best to set the DAI bit
3193 * and frame clocks as low as possible to save system power.
3195 int snd_soc_dai_set_clkdiv(struct snd_soc_dai
*dai
,
3196 int div_id
, int div
)
3198 if (dai
->driver
&& dai
->driver
->ops
->set_clkdiv
)
3199 return dai
->driver
->ops
->set_clkdiv(dai
, div_id
, div
);
3203 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv
);
3206 * snd_soc_dai_set_pll - configure DAI PLL.
3208 * @pll_id: DAI specific PLL ID
3209 * @source: DAI specific source for the PLL
3210 * @freq_in: PLL input clock frequency in Hz
3211 * @freq_out: requested PLL output clock frequency in Hz
3213 * Configures and enables PLL to generate output clock based on input clock.
3215 int snd_soc_dai_set_pll(struct snd_soc_dai
*dai
, int pll_id
, int source
,
3216 unsigned int freq_in
, unsigned int freq_out
)
3218 if (dai
->driver
&& dai
->driver
->ops
->set_pll
)
3219 return dai
->driver
->ops
->set_pll(dai
, pll_id
, source
,
3221 else if (dai
->codec
&& dai
->codec
->driver
->set_pll
)
3222 return dai
->codec
->driver
->set_pll(dai
->codec
, pll_id
, source
,
3227 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll
);
3230 * snd_soc_codec_set_pll - configure codec PLL.
3232 * @pll_id: DAI specific PLL ID
3233 * @source: DAI specific source for the PLL
3234 * @freq_in: PLL input clock frequency in Hz
3235 * @freq_out: requested PLL output clock frequency in Hz
3237 * Configures and enables PLL to generate output clock based on input clock.
3239 int snd_soc_codec_set_pll(struct snd_soc_codec
*codec
, int pll_id
, int source
,
3240 unsigned int freq_in
, unsigned int freq_out
)
3242 if (codec
->driver
->set_pll
)
3243 return codec
->driver
->set_pll(codec
, pll_id
, source
,
3248 EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll
);
3251 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3253 * @fmt: SND_SOC_DAIFMT_ format value.
3255 * Configures the DAI hardware format and clocking.
3257 int snd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
3259 if (dai
->driver
&& dai
->driver
->ops
->set_fmt
)
3260 return dai
->driver
->ops
->set_fmt(dai
, fmt
);
3264 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt
);
3267 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3269 * @tx_mask: bitmask representing active TX slots.
3270 * @rx_mask: bitmask representing active RX slots.
3271 * @slots: Number of slots in use.
3272 * @slot_width: Width in bits for each slot.
3274 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3277 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai
*dai
,
3278 unsigned int tx_mask
, unsigned int rx_mask
, int slots
, int slot_width
)
3280 if (dai
->driver
&& dai
->driver
->ops
->set_tdm_slot
)
3281 return dai
->driver
->ops
->set_tdm_slot(dai
, tx_mask
, rx_mask
,
3286 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot
);
3289 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3291 * @tx_num: how many TX channels
3292 * @tx_slot: pointer to an array which imply the TX slot number channel
3294 * @rx_num: how many RX channels
3295 * @rx_slot: pointer to an array which imply the RX slot number channel
3298 * configure the relationship between channel number and TDM slot number.
3300 int snd_soc_dai_set_channel_map(struct snd_soc_dai
*dai
,
3301 unsigned int tx_num
, unsigned int *tx_slot
,
3302 unsigned int rx_num
, unsigned int *rx_slot
)
3304 if (dai
->driver
&& dai
->driver
->ops
->set_channel_map
)
3305 return dai
->driver
->ops
->set_channel_map(dai
, tx_num
, tx_slot
,
3310 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map
);
3313 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3315 * @tristate: tristate enable
3317 * Tristates the DAI so that others can use it.
3319 int snd_soc_dai_set_tristate(struct snd_soc_dai
*dai
, int tristate
)
3321 if (dai
->driver
&& dai
->driver
->ops
->set_tristate
)
3322 return dai
->driver
->ops
->set_tristate(dai
, tristate
);
3326 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate
);
3329 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3331 * @mute: mute enable
3333 * Mutes the DAI DAC.
3335 int snd_soc_dai_digital_mute(struct snd_soc_dai
*dai
, int mute
)
3337 if (dai
->driver
&& dai
->driver
->ops
->digital_mute
)
3338 return dai
->driver
->ops
->digital_mute(dai
, mute
);
3342 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute
);
3345 * snd_soc_register_card - Register a card with the ASoC core
3347 * @card: Card to register
3350 int snd_soc_register_card(struct snd_soc_card
*card
)
3354 if (!card
->name
|| !card
->dev
)
3357 snd_soc_initialize_card_lists(card
);
3359 soc_init_card_debugfs(card
);
3361 card
->rtd
= kzalloc(sizeof(struct snd_soc_pcm_runtime
) *
3362 (card
->num_links
+ card
->num_aux_devs
),
3364 if (card
->rtd
== NULL
)
3366 card
->rtd_aux
= &card
->rtd
[card
->num_links
];
3368 for (i
= 0; i
< card
->num_links
; i
++)
3369 card
->rtd
[i
].dai_link
= &card
->dai_link
[i
];
3371 INIT_LIST_HEAD(&card
->list
);
3372 card
->instantiated
= 0;
3373 mutex_init(&card
->mutex
);
3375 mutex_lock(&client_mutex
);
3376 list_add(&card
->list
, &card_list
);
3377 snd_soc_instantiate_cards();
3378 mutex_unlock(&client_mutex
);
3380 dev_dbg(card
->dev
, "Registered card '%s'\n", card
->name
);
3384 EXPORT_SYMBOL_GPL(snd_soc_register_card
);
3387 * snd_soc_unregister_card - Unregister a card with the ASoC core
3389 * @card: Card to unregister
3392 int snd_soc_unregister_card(struct snd_soc_card
*card
)
3394 if (card
->instantiated
)
3395 soc_cleanup_card_resources(card
);
3396 mutex_lock(&client_mutex
);
3397 list_del(&card
->list
);
3398 mutex_unlock(&client_mutex
);
3399 dev_dbg(card
->dev
, "Unregistered card '%s'\n", card
->name
);
3403 EXPORT_SYMBOL_GPL(snd_soc_unregister_card
);
3406 * Simplify DAI link configuration by removing ".-1" from device names
3407 * and sanitizing names.
3409 static char *fmt_single_name(struct device
*dev
, int *id
)
3411 char *found
, name
[NAME_SIZE
];
3414 if (dev_name(dev
) == NULL
)
3417 strlcpy(name
, dev_name(dev
), NAME_SIZE
);
3419 /* are we a "%s.%d" name (platform and SPI components) */
3420 found
= strstr(name
, dev
->driver
->name
);
3423 if (sscanf(&found
[strlen(dev
->driver
->name
)], ".%d", id
) == 1) {
3425 /* discard ID from name if ID == -1 */
3427 found
[strlen(dev
->driver
->name
)] = '\0';
3431 /* I2C component devices are named "bus-addr" */
3432 if (sscanf(name
, "%x-%x", &id1
, &id2
) == 2) {
3433 char tmp
[NAME_SIZE
];
3435 /* create unique ID number from I2C addr and bus */
3436 *id
= ((id1
& 0xffff) << 16) + id2
;
3438 /* sanitize component name for DAI link creation */
3439 snprintf(tmp
, NAME_SIZE
, "%s.%s", dev
->driver
->name
, name
);
3440 strlcpy(name
, tmp
, NAME_SIZE
);
3445 return kstrdup(name
, GFP_KERNEL
);
3449 * Simplify DAI link naming for single devices with multiple DAIs by removing
3450 * any ".-1" and using the DAI name (instead of device name).
3452 static inline char *fmt_multiple_name(struct device
*dev
,
3453 struct snd_soc_dai_driver
*dai_drv
)
3455 if (dai_drv
->name
== NULL
) {
3456 printk(KERN_ERR
"asoc: error - multiple DAI %s registered with no name\n",
3461 return kstrdup(dai_drv
->name
, GFP_KERNEL
);
3465 * snd_soc_register_dai - Register a DAI with the ASoC core
3467 * @dai: DAI to register
3469 int snd_soc_register_dai(struct device
*dev
,
3470 struct snd_soc_dai_driver
*dai_drv
)
3472 struct snd_soc_dai
*dai
;
3474 dev_dbg(dev
, "dai register %s\n", dev_name(dev
));
3476 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
3480 /* create DAI component name */
3481 dai
->name
= fmt_single_name(dev
, &dai
->id
);
3482 if (dai
->name
== NULL
) {
3488 dai
->driver
= dai_drv
;
3489 if (!dai
->driver
->ops
)
3490 dai
->driver
->ops
= &null_dai_ops
;
3492 mutex_lock(&client_mutex
);
3493 list_add(&dai
->list
, &dai_list
);
3494 snd_soc_instantiate_cards();
3495 mutex_unlock(&client_mutex
);
3497 pr_debug("Registered DAI '%s'\n", dai
->name
);
3501 EXPORT_SYMBOL_GPL(snd_soc_register_dai
);
3504 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3506 * @dai: DAI to unregister
3508 void snd_soc_unregister_dai(struct device
*dev
)
3510 struct snd_soc_dai
*dai
;
3512 list_for_each_entry(dai
, &dai_list
, list
) {
3513 if (dev
== dai
->dev
)
3519 mutex_lock(&client_mutex
);
3520 list_del(&dai
->list
);
3521 mutex_unlock(&client_mutex
);
3523 pr_debug("Unregistered DAI '%s'\n", dai
->name
);
3527 EXPORT_SYMBOL_GPL(snd_soc_unregister_dai
);
3530 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3532 * @dai: Array of DAIs to register
3533 * @count: Number of DAIs
3535 int snd_soc_register_dais(struct device
*dev
,
3536 struct snd_soc_dai_driver
*dai_drv
, size_t count
)
3538 struct snd_soc_dai
*dai
;
3541 dev_dbg(dev
, "dai register %s #%Zu\n", dev_name(dev
), count
);
3543 for (i
= 0; i
< count
; i
++) {
3545 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
3551 /* create DAI component name */
3552 dai
->name
= fmt_multiple_name(dev
, &dai_drv
[i
]);
3553 if (dai
->name
== NULL
) {
3560 dai
->driver
= &dai_drv
[i
];
3561 if (dai
->driver
->id
)
3562 dai
->id
= dai
->driver
->id
;
3565 if (!dai
->driver
->ops
)
3566 dai
->driver
->ops
= &null_dai_ops
;
3568 mutex_lock(&client_mutex
);
3569 list_add(&dai
->list
, &dai_list
);
3570 mutex_unlock(&client_mutex
);
3572 pr_debug("Registered DAI '%s'\n", dai
->name
);
3575 mutex_lock(&client_mutex
);
3576 snd_soc_instantiate_cards();
3577 mutex_unlock(&client_mutex
);
3581 for (i
--; i
>= 0; i
--)
3582 snd_soc_unregister_dai(dev
);
3586 EXPORT_SYMBOL_GPL(snd_soc_register_dais
);
3589 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3591 * @dai: Array of DAIs to unregister
3592 * @count: Number of DAIs
3594 void snd_soc_unregister_dais(struct device
*dev
, size_t count
)
3598 for (i
= 0; i
< count
; i
++)
3599 snd_soc_unregister_dai(dev
);
3601 EXPORT_SYMBOL_GPL(snd_soc_unregister_dais
);
3604 * snd_soc_register_platform - Register a platform with the ASoC core
3606 * @platform: platform to register
3608 int snd_soc_register_platform(struct device
*dev
,
3609 struct snd_soc_platform_driver
*platform_drv
)
3611 struct snd_soc_platform
*platform
;
3613 dev_dbg(dev
, "platform register %s\n", dev_name(dev
));
3615 platform
= kzalloc(sizeof(struct snd_soc_platform
), GFP_KERNEL
);
3616 if (platform
== NULL
)
3619 /* create platform component name */
3620 platform
->name
= fmt_single_name(dev
, &platform
->id
);
3621 if (platform
->name
== NULL
) {
3626 platform
->dev
= dev
;
3627 platform
->driver
= platform_drv
;
3629 mutex_lock(&client_mutex
);
3630 list_add(&platform
->list
, &platform_list
);
3631 snd_soc_instantiate_cards();
3632 mutex_unlock(&client_mutex
);
3634 pr_debug("Registered platform '%s'\n", platform
->name
);
3638 EXPORT_SYMBOL_GPL(snd_soc_register_platform
);
3641 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3643 * @platform: platform to unregister
3645 void snd_soc_unregister_platform(struct device
*dev
)
3647 struct snd_soc_platform
*platform
;
3649 list_for_each_entry(platform
, &platform_list
, list
) {
3650 if (dev
== platform
->dev
)
3656 mutex_lock(&client_mutex
);
3657 list_del(&platform
->list
);
3658 mutex_unlock(&client_mutex
);
3660 pr_debug("Unregistered platform '%s'\n", platform
->name
);
3661 kfree(platform
->name
);
3664 EXPORT_SYMBOL_GPL(snd_soc_unregister_platform
);
3666 static u64 codec_format_map
[] = {
3667 SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
,
3668 SNDRV_PCM_FMTBIT_U16_LE
| SNDRV_PCM_FMTBIT_U16_BE
,
3669 SNDRV_PCM_FMTBIT_S24_LE
| SNDRV_PCM_FMTBIT_S24_BE
,
3670 SNDRV_PCM_FMTBIT_U24_LE
| SNDRV_PCM_FMTBIT_U24_BE
,
3671 SNDRV_PCM_FMTBIT_S32_LE
| SNDRV_PCM_FMTBIT_S32_BE
,
3672 SNDRV_PCM_FMTBIT_U32_LE
| SNDRV_PCM_FMTBIT_U32_BE
,
3673 SNDRV_PCM_FMTBIT_S24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
3674 SNDRV_PCM_FMTBIT_U24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
3675 SNDRV_PCM_FMTBIT_S20_3LE
| SNDRV_PCM_FMTBIT_S20_3BE
,
3676 SNDRV_PCM_FMTBIT_U20_3LE
| SNDRV_PCM_FMTBIT_U20_3BE
,
3677 SNDRV_PCM_FMTBIT_S18_3LE
| SNDRV_PCM_FMTBIT_S18_3BE
,
3678 SNDRV_PCM_FMTBIT_U18_3LE
| SNDRV_PCM_FMTBIT_U18_3BE
,
3679 SNDRV_PCM_FMTBIT_FLOAT_LE
| SNDRV_PCM_FMTBIT_FLOAT_BE
,
3680 SNDRV_PCM_FMTBIT_FLOAT64_LE
| SNDRV_PCM_FMTBIT_FLOAT64_BE
,
3681 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3682 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE
,
3685 /* Fix up the DAI formats for endianness: codecs don't actually see
3686 * the endianness of the data but we're using the CPU format
3687 * definitions which do need to include endianness so we ensure that
3688 * codec DAIs always have both big and little endian variants set.
3690 static void fixup_codec_formats(struct snd_soc_pcm_stream
*stream
)
3694 for (i
= 0; i
< ARRAY_SIZE(codec_format_map
); i
++)
3695 if (stream
->formats
& codec_format_map
[i
])
3696 stream
->formats
|= codec_format_map
[i
];
3700 * snd_soc_register_codec - Register a codec with the ASoC core
3702 * @codec: codec to register
3704 int snd_soc_register_codec(struct device
*dev
,
3705 const struct snd_soc_codec_driver
*codec_drv
,
3706 struct snd_soc_dai_driver
*dai_drv
,
3710 struct snd_soc_codec
*codec
;
3713 dev_dbg(dev
, "codec register %s\n", dev_name(dev
));
3715 codec
= kzalloc(sizeof(struct snd_soc_codec
), GFP_KERNEL
);
3719 /* create CODEC component name */
3720 codec
->name
= fmt_single_name(dev
, &codec
->id
);
3721 if (codec
->name
== NULL
) {
3726 if (codec_drv
->compress_type
)
3727 codec
->compress_type
= codec_drv
->compress_type
;
3729 codec
->compress_type
= SND_SOC_FLAT_COMPRESSION
;
3731 codec
->write
= codec_drv
->write
;
3732 codec
->read
= codec_drv
->read
;
3733 codec
->volatile_register
= codec_drv
->volatile_register
;
3734 codec
->readable_register
= codec_drv
->readable_register
;
3735 codec
->writable_register
= codec_drv
->writable_register
;
3736 codec
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
3737 codec
->dapm
.dev
= dev
;
3738 codec
->dapm
.codec
= codec
;
3739 codec
->dapm
.seq_notifier
= codec_drv
->seq_notifier
;
3741 codec
->driver
= codec_drv
;
3742 codec
->num_dai
= num_dai
;
3743 mutex_init(&codec
->mutex
);
3745 /* allocate CODEC register cache */
3746 if (codec_drv
->reg_cache_size
&& codec_drv
->reg_word_size
) {
3747 reg_size
= codec_drv
->reg_cache_size
* codec_drv
->reg_word_size
;
3748 codec
->reg_size
= reg_size
;
3749 /* it is necessary to make a copy of the default register cache
3750 * because in the case of using a compression type that requires
3751 * the default register cache to be marked as __devinitconst the
3752 * kernel might have freed the array by the time we initialize
3755 if (codec_drv
->reg_cache_default
) {
3756 codec
->reg_def_copy
= kmemdup(codec_drv
->reg_cache_default
,
3757 reg_size
, GFP_KERNEL
);
3758 if (!codec
->reg_def_copy
) {
3765 if (codec_drv
->reg_access_size
&& codec_drv
->reg_access_default
) {
3766 if (!codec
->volatile_register
)
3767 codec
->volatile_register
= snd_soc_default_volatile_register
;
3768 if (!codec
->readable_register
)
3769 codec
->readable_register
= snd_soc_default_readable_register
;
3770 if (!codec
->writable_register
)
3771 codec
->writable_register
= snd_soc_default_writable_register
;
3774 for (i
= 0; i
< num_dai
; i
++) {
3775 fixup_codec_formats(&dai_drv
[i
].playback
);
3776 fixup_codec_formats(&dai_drv
[i
].capture
);
3779 /* register any DAIs */
3781 ret
= snd_soc_register_dais(dev
, dai_drv
, num_dai
);
3786 mutex_lock(&client_mutex
);
3787 list_add(&codec
->list
, &codec_list
);
3788 snd_soc_instantiate_cards();
3789 mutex_unlock(&client_mutex
);
3791 pr_debug("Registered codec '%s'\n", codec
->name
);
3795 kfree(codec
->reg_def_copy
);
3796 codec
->reg_def_copy
= NULL
;
3801 EXPORT_SYMBOL_GPL(snd_soc_register_codec
);
3804 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3806 * @codec: codec to unregister
3808 void snd_soc_unregister_codec(struct device
*dev
)
3810 struct snd_soc_codec
*codec
;
3813 list_for_each_entry(codec
, &codec_list
, list
) {
3814 if (dev
== codec
->dev
)
3821 for (i
= 0; i
< codec
->num_dai
; i
++)
3822 snd_soc_unregister_dai(dev
);
3824 mutex_lock(&client_mutex
);
3825 list_del(&codec
->list
);
3826 mutex_unlock(&client_mutex
);
3828 pr_debug("Unregistered codec '%s'\n", codec
->name
);
3830 snd_soc_cache_exit(codec
);
3831 kfree(codec
->reg_def_copy
);
3835 EXPORT_SYMBOL_GPL(snd_soc_unregister_codec
);
3837 static int __init
snd_soc_init(void)
3839 #ifdef CONFIG_DEBUG_FS
3840 snd_soc_debugfs_root
= debugfs_create_dir("asoc", NULL
);
3841 if (IS_ERR(snd_soc_debugfs_root
) || !snd_soc_debugfs_root
) {
3843 "ASoC: Failed to create debugfs directory\n");
3844 snd_soc_debugfs_root
= NULL
;
3847 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root
, NULL
,
3849 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3851 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root
, NULL
,
3853 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
3855 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root
, NULL
,
3856 &platform_list_fops
))
3857 pr_warn("ASoC: Failed to create platform list debugfs file\n");
3860 return platform_driver_register(&soc_driver
);
3862 module_init(snd_soc_init
);
3864 static void __exit
snd_soc_exit(void)
3866 #ifdef CONFIG_DEBUG_FS
3867 debugfs_remove_recursive(snd_soc_debugfs_root
);
3869 platform_driver_unregister(&soc_driver
);
3871 module_exit(snd_soc_exit
);
3873 /* Module information */
3874 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
3875 MODULE_DESCRIPTION("ALSA SoC Core");
3876 MODULE_LICENSE("GPL");
3877 MODULE_ALIAS("platform:soc-audio");