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/pinctrl/consumer.h>
34 #include <linux/ctype.h>
35 #include <linux/slab.h>
37 #include <linux/gpio.h>
38 #include <linux/of_gpio.h>
39 #include <sound/ac97_codec.h>
40 #include <sound/core.h>
41 #include <sound/jack.h>
42 #include <sound/pcm.h>
43 #include <sound/pcm_params.h>
44 #include <sound/soc.h>
45 #include <sound/soc-dpcm.h>
46 #include <sound/initval.h>
48 #define CREATE_TRACE_POINTS
49 #include <trace/events/asoc.h>
53 #ifdef CONFIG_DEBUG_FS
54 struct dentry
*snd_soc_debugfs_root
;
55 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root
);
58 static DEFINE_MUTEX(client_mutex
);
59 static LIST_HEAD(dai_list
);
60 static LIST_HEAD(platform_list
);
61 static LIST_HEAD(codec_list
);
62 static LIST_HEAD(component_list
);
65 * This is a timeout to do a DAPM powerdown after a stream is closed().
66 * It can be used to eliminate pops between different playback streams, e.g.
67 * between two audio tracks.
69 static int pmdown_time
= 5000;
70 module_param(pmdown_time
, int, 0);
71 MODULE_PARM_DESC(pmdown_time
, "DAPM stream powerdown time (msecs)");
73 struct snd_ac97_reset_cfg
{
75 struct pinctrl_state
*pstate_reset
;
76 struct pinctrl_state
*pstate_warm_reset
;
77 struct pinctrl_state
*pstate_run
;
83 /* returns the minimum number of bytes needed to represent
84 * a particular given value */
85 static int min_bytes_needed(unsigned long val
)
90 for (i
= (sizeof val
* 8) - 1; i
>= 0; --i
, ++c
)
93 c
= (sizeof val
* 8) - c
;
101 /* fill buf which is 'len' bytes with a formatted
102 * string of the form 'reg: value\n' */
103 static int format_register_str(struct snd_soc_codec
*codec
,
104 unsigned int reg
, char *buf
, size_t len
)
106 int wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
107 int regsize
= codec
->driver
->reg_word_size
* 2;
109 char tmpbuf
[len
+ 1];
110 char regbuf
[regsize
+ 1];
112 /* since tmpbuf is allocated on the stack, warn the callers if they
113 * try to abuse this function */
116 /* +2 for ': ' and + 1 for '\n' */
117 if (wordsize
+ regsize
+ 2 + 1 != len
)
120 ret
= snd_soc_read(codec
, reg
);
122 memset(regbuf
, 'X', regsize
);
123 regbuf
[regsize
] = '\0';
125 snprintf(regbuf
, regsize
+ 1, "%.*x", regsize
, ret
);
128 /* prepare the buffer */
129 snprintf(tmpbuf
, len
+ 1, "%.*x: %s\n", wordsize
, reg
, regbuf
);
130 /* copy it back to the caller without the '\0' */
131 memcpy(buf
, tmpbuf
, len
);
136 /* codec register dump */
137 static ssize_t
soc_codec_reg_show(struct snd_soc_codec
*codec
, char *buf
,
138 size_t count
, loff_t pos
)
141 int wordsize
, regsize
;
146 wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
147 regsize
= codec
->driver
->reg_word_size
* 2;
149 len
= wordsize
+ regsize
+ 2 + 1;
151 if (!codec
->driver
->reg_cache_size
)
154 if (codec
->driver
->reg_cache_step
)
155 step
= codec
->driver
->reg_cache_step
;
157 for (i
= 0; i
< codec
->driver
->reg_cache_size
; i
+= step
) {
158 if (!snd_soc_codec_readable_register(codec
, i
))
160 if (codec
->driver
->display_register
) {
161 count
+= codec
->driver
->display_register(codec
, buf
+ count
,
162 PAGE_SIZE
- count
, i
);
164 /* only support larger than PAGE_SIZE bytes debugfs
165 * entries for the default case */
167 if (total
+ len
>= count
- 1)
169 format_register_str(codec
, i
, buf
+ total
, len
);
176 total
= min(total
, count
- 1);
181 static ssize_t
codec_reg_show(struct device
*dev
,
182 struct device_attribute
*attr
, char *buf
)
184 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
186 return soc_codec_reg_show(rtd
->codec
, buf
, PAGE_SIZE
, 0);
189 static DEVICE_ATTR(codec_reg
, 0444, codec_reg_show
, NULL
);
191 static ssize_t
pmdown_time_show(struct device
*dev
,
192 struct device_attribute
*attr
, char *buf
)
194 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
196 return sprintf(buf
, "%ld\n", rtd
->pmdown_time
);
199 static ssize_t
pmdown_time_set(struct device
*dev
,
200 struct device_attribute
*attr
,
201 const char *buf
, size_t count
)
203 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
206 ret
= kstrtol(buf
, 10, &rtd
->pmdown_time
);
213 static DEVICE_ATTR(pmdown_time
, 0644, pmdown_time_show
, pmdown_time_set
);
215 #ifdef CONFIG_DEBUG_FS
216 static ssize_t
codec_reg_read_file(struct file
*file
, char __user
*user_buf
,
217 size_t count
, loff_t
*ppos
)
220 struct snd_soc_codec
*codec
= file
->private_data
;
223 if (*ppos
< 0 || !count
)
226 buf
= kmalloc(count
, GFP_KERNEL
);
230 ret
= soc_codec_reg_show(codec
, buf
, count
, *ppos
);
232 if (copy_to_user(user_buf
, buf
, ret
)) {
243 static ssize_t
codec_reg_write_file(struct file
*file
,
244 const char __user
*user_buf
, size_t count
, loff_t
*ppos
)
249 unsigned long reg
, value
;
250 struct snd_soc_codec
*codec
= file
->private_data
;
253 buf_size
= min(count
, (sizeof(buf
)-1));
254 if (copy_from_user(buf
, user_buf
, buf_size
))
258 while (*start
== ' ')
260 reg
= simple_strtoul(start
, &start
, 16);
261 while (*start
== ' ')
263 ret
= kstrtoul(start
, 16, &value
);
267 /* Userspace has been fiddling around behind the kernel's back */
268 add_taint(TAINT_USER
, LOCKDEP_NOW_UNRELIABLE
);
270 snd_soc_write(codec
, reg
, value
);
274 static const struct file_operations codec_reg_fops
= {
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 snd_soc_dapm_debugfs_init(&codec
->dapm
, codec
->debugfs_codec_root
);
308 static void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
310 debugfs_remove_recursive(codec
->debugfs_codec_root
);
313 static void soc_init_platform_debugfs(struct snd_soc_platform
*platform
)
315 struct dentry
*debugfs_card_root
= platform
->card
->debugfs_card_root
;
317 platform
->debugfs_platform_root
= debugfs_create_dir(platform
->name
,
319 if (!platform
->debugfs_platform_root
) {
320 dev_warn(platform
->dev
,
321 "ASoC: Failed to create platform debugfs directory\n");
325 snd_soc_dapm_debugfs_init(&platform
->dapm
,
326 platform
->debugfs_platform_root
);
329 static void soc_cleanup_platform_debugfs(struct snd_soc_platform
*platform
)
331 debugfs_remove_recursive(platform
->debugfs_platform_root
);
334 static ssize_t
codec_list_read_file(struct file
*file
, char __user
*user_buf
,
335 size_t count
, loff_t
*ppos
)
337 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
338 ssize_t len
, ret
= 0;
339 struct snd_soc_codec
*codec
;
344 list_for_each_entry(codec
, &codec_list
, list
) {
345 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
349 if (ret
> PAGE_SIZE
) {
356 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
363 static const struct file_operations codec_list_fops
= {
364 .read
= codec_list_read_file
,
365 .llseek
= default_llseek
,/* read accesses f_pos */
368 static ssize_t
dai_list_read_file(struct file
*file
, char __user
*user_buf
,
369 size_t count
, loff_t
*ppos
)
371 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
372 ssize_t len
, ret
= 0;
373 struct snd_soc_dai
*dai
;
378 list_for_each_entry(dai
, &dai_list
, list
) {
379 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n", dai
->name
);
382 if (ret
> PAGE_SIZE
) {
388 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
395 static const struct file_operations dai_list_fops
= {
396 .read
= dai_list_read_file
,
397 .llseek
= default_llseek
,/* read accesses f_pos */
400 static ssize_t
platform_list_read_file(struct file
*file
,
401 char __user
*user_buf
,
402 size_t count
, loff_t
*ppos
)
404 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
405 ssize_t len
, ret
= 0;
406 struct snd_soc_platform
*platform
;
411 list_for_each_entry(platform
, &platform_list
, list
) {
412 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
416 if (ret
> PAGE_SIZE
) {
422 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
429 static const struct file_operations platform_list_fops
= {
430 .read
= platform_list_read_file
,
431 .llseek
= default_llseek
,/* read accesses f_pos */
434 static void soc_init_card_debugfs(struct snd_soc_card
*card
)
436 card
->debugfs_card_root
= debugfs_create_dir(card
->name
,
437 snd_soc_debugfs_root
);
438 if (!card
->debugfs_card_root
) {
440 "ASoC: Failed to create card debugfs directory\n");
444 card
->debugfs_pop_time
= debugfs_create_u32("dapm_pop_time", 0644,
445 card
->debugfs_card_root
,
447 if (!card
->debugfs_pop_time
)
449 "ASoC: Failed to create pop time debugfs file\n");
452 static void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
454 debugfs_remove_recursive(card
->debugfs_card_root
);
459 static inline void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
463 static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
467 static inline void soc_init_platform_debugfs(struct snd_soc_platform
*platform
)
471 static inline void soc_cleanup_platform_debugfs(struct snd_soc_platform
*platform
)
475 static inline void soc_init_card_debugfs(struct snd_soc_card
*card
)
479 static inline void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
484 struct snd_pcm_substream
*snd_soc_get_dai_substream(struct snd_soc_card
*card
,
485 const char *dai_link
, int stream
)
489 for (i
= 0; i
< card
->num_links
; i
++) {
490 if (card
->rtd
[i
].dai_link
->no_pcm
&&
491 !strcmp(card
->rtd
[i
].dai_link
->name
, dai_link
))
492 return card
->rtd
[i
].pcm
->streams
[stream
].substream
;
494 dev_dbg(card
->dev
, "ASoC: failed to find dai link %s\n", dai_link
);
497 EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream
);
499 struct snd_soc_pcm_runtime
*snd_soc_get_pcm_runtime(struct snd_soc_card
*card
,
500 const char *dai_link
)
504 for (i
= 0; i
< card
->num_links
; i
++) {
505 if (!strcmp(card
->rtd
[i
].dai_link
->name
, dai_link
))
506 return &card
->rtd
[i
];
508 dev_dbg(card
->dev
, "ASoC: failed to find rtd %s\n", dai_link
);
511 EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime
);
513 #ifdef CONFIG_SND_SOC_AC97_BUS
514 /* unregister ac97 codec */
515 static int soc_ac97_dev_unregister(struct snd_soc_codec
*codec
)
517 if (codec
->ac97
->dev
.bus
)
518 device_unregister(&codec
->ac97
->dev
);
522 /* stop no dev release warning */
523 static void soc_ac97_device_release(struct device
*dev
){}
525 /* register ac97 codec to bus */
526 static int soc_ac97_dev_register(struct snd_soc_codec
*codec
)
530 codec
->ac97
->dev
.bus
= &ac97_bus_type
;
531 codec
->ac97
->dev
.parent
= codec
->card
->dev
;
532 codec
->ac97
->dev
.release
= soc_ac97_device_release
;
534 dev_set_name(&codec
->ac97
->dev
, "%d-%d:%s",
535 codec
->card
->snd_card
->number
, 0, codec
->name
);
536 err
= device_register(&codec
->ac97
->dev
);
538 dev_err(codec
->dev
, "ASoC: Can't register ac97 bus\n");
539 codec
->ac97
->dev
.bus
= NULL
;
546 static void codec2codec_close_delayed_work(struct work_struct
*work
)
548 /* Currently nothing to do for c2c links
549 * Since c2c links are internal nodes in the DAPM graph and
550 * don't interface with the outside world or application layer
551 * we don't have to do any special handling on close.
555 #ifdef CONFIG_PM_SLEEP
556 /* powers down audio subsystem for suspend */
557 int snd_soc_suspend(struct device
*dev
)
559 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
560 struct snd_soc_codec
*codec
;
563 /* If the initialization of this soc device failed, there is no codec
564 * associated with it. Just bail out in this case.
566 if (list_empty(&card
->codec_dev_list
))
569 /* Due to the resume being scheduled into a workqueue we could
570 * suspend before that's finished - wait for it to complete.
572 snd_power_lock(card
->snd_card
);
573 snd_power_wait(card
->snd_card
, SNDRV_CTL_POWER_D0
);
574 snd_power_unlock(card
->snd_card
);
576 /* we're going to block userspace touching us until resume completes */
577 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D3hot
);
579 /* mute any active DACs */
580 for (i
= 0; i
< card
->num_rtd
; i
++) {
581 struct snd_soc_dai
*dai
= card
->rtd
[i
].codec_dai
;
582 struct snd_soc_dai_driver
*drv
= dai
->driver
;
584 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
587 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
588 drv
->ops
->digital_mute(dai
, 1);
591 /* suspend all pcms */
592 for (i
= 0; i
< card
->num_rtd
; i
++) {
593 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
596 snd_pcm_suspend_all(card
->rtd
[i
].pcm
);
599 if (card
->suspend_pre
)
600 card
->suspend_pre(card
);
602 for (i
= 0; i
< card
->num_rtd
; i
++) {
603 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
604 struct snd_soc_platform
*platform
= card
->rtd
[i
].platform
;
606 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
609 if (cpu_dai
->driver
->suspend
&& !cpu_dai
->driver
->ac97_control
)
610 cpu_dai
->driver
->suspend(cpu_dai
);
611 if (platform
->driver
->suspend
&& !platform
->suspended
) {
612 platform
->driver
->suspend(cpu_dai
);
613 platform
->suspended
= 1;
617 /* close any waiting streams and save state */
618 for (i
= 0; i
< card
->num_rtd
; i
++) {
619 flush_delayed_work(&card
->rtd
[i
].delayed_work
);
620 card
->rtd
[i
].codec
->dapm
.suspend_bias_level
= card
->rtd
[i
].codec
->dapm
.bias_level
;
623 for (i
= 0; i
< card
->num_rtd
; i
++) {
625 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
628 snd_soc_dapm_stream_event(&card
->rtd
[i
],
629 SNDRV_PCM_STREAM_PLAYBACK
,
630 SND_SOC_DAPM_STREAM_SUSPEND
);
632 snd_soc_dapm_stream_event(&card
->rtd
[i
],
633 SNDRV_PCM_STREAM_CAPTURE
,
634 SND_SOC_DAPM_STREAM_SUSPEND
);
637 /* Recheck all analogue paths too */
638 dapm_mark_io_dirty(&card
->dapm
);
639 snd_soc_dapm_sync(&card
->dapm
);
641 /* suspend all CODECs */
642 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
) {
643 /* If there are paths active then the CODEC will be held with
644 * bias _ON and should not be suspended. */
645 if (!codec
->suspended
&& codec
->driver
->suspend
) {
646 switch (codec
->dapm
.bias_level
) {
647 case SND_SOC_BIAS_STANDBY
:
649 * If the CODEC is capable of idle
650 * bias off then being in STANDBY
651 * means it's doing something,
652 * otherwise fall through.
654 if (codec
->dapm
.idle_bias_off
) {
656 "ASoC: idle_bias_off CODEC on over suspend\n");
659 case SND_SOC_BIAS_OFF
:
660 codec
->driver
->suspend(codec
);
661 codec
->suspended
= 1;
662 codec
->cache_sync
= 1;
663 if (codec
->using_regmap
)
664 regcache_mark_dirty(codec
->control_data
);
668 "ASoC: CODEC is on over suspend\n");
674 for (i
= 0; i
< card
->num_rtd
; i
++) {
675 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
677 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
680 if (cpu_dai
->driver
->suspend
&& cpu_dai
->driver
->ac97_control
)
681 cpu_dai
->driver
->suspend(cpu_dai
);
684 if (card
->suspend_post
)
685 card
->suspend_post(card
);
689 EXPORT_SYMBOL_GPL(snd_soc_suspend
);
691 /* deferred resume work, so resume can complete before we finished
692 * setting our codec back up, which can be very slow on I2C
694 static void soc_resume_deferred(struct work_struct
*work
)
696 struct snd_soc_card
*card
=
697 container_of(work
, struct snd_soc_card
, deferred_resume_work
);
698 struct snd_soc_codec
*codec
;
701 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
702 * so userspace apps are blocked from touching us
705 dev_dbg(card
->dev
, "ASoC: starting resume work\n");
707 /* Bring us up into D2 so that DAPM starts enabling things */
708 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D2
);
710 if (card
->resume_pre
)
711 card
->resume_pre(card
);
713 /* resume AC97 DAIs */
714 for (i
= 0; i
< card
->num_rtd
; i
++) {
715 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
717 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
720 if (cpu_dai
->driver
->resume
&& cpu_dai
->driver
->ac97_control
)
721 cpu_dai
->driver
->resume(cpu_dai
);
724 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
) {
725 /* If the CODEC was idle over suspend then it will have been
726 * left with bias OFF or STANDBY and suspended so we must now
727 * resume. Otherwise the suspend was suppressed.
729 if (codec
->driver
->resume
&& codec
->suspended
) {
730 switch (codec
->dapm
.bias_level
) {
731 case SND_SOC_BIAS_STANDBY
:
732 case SND_SOC_BIAS_OFF
:
733 codec
->driver
->resume(codec
);
734 codec
->suspended
= 0;
738 "ASoC: CODEC was on over suspend\n");
744 for (i
= 0; i
< card
->num_rtd
; i
++) {
746 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
749 snd_soc_dapm_stream_event(&card
->rtd
[i
],
750 SNDRV_PCM_STREAM_PLAYBACK
,
751 SND_SOC_DAPM_STREAM_RESUME
);
753 snd_soc_dapm_stream_event(&card
->rtd
[i
],
754 SNDRV_PCM_STREAM_CAPTURE
,
755 SND_SOC_DAPM_STREAM_RESUME
);
758 /* unmute any active DACs */
759 for (i
= 0; i
< card
->num_rtd
; i
++) {
760 struct snd_soc_dai
*dai
= card
->rtd
[i
].codec_dai
;
761 struct snd_soc_dai_driver
*drv
= dai
->driver
;
763 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
766 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
767 drv
->ops
->digital_mute(dai
, 0);
770 for (i
= 0; i
< card
->num_rtd
; i
++) {
771 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
772 struct snd_soc_platform
*platform
= card
->rtd
[i
].platform
;
774 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
777 if (cpu_dai
->driver
->resume
&& !cpu_dai
->driver
->ac97_control
)
778 cpu_dai
->driver
->resume(cpu_dai
);
779 if (platform
->driver
->resume
&& platform
->suspended
) {
780 platform
->driver
->resume(cpu_dai
);
781 platform
->suspended
= 0;
785 if (card
->resume_post
)
786 card
->resume_post(card
);
788 dev_dbg(card
->dev
, "ASoC: resume work completed\n");
790 /* userspace can access us now we are back as we were before */
791 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D0
);
793 /* Recheck all analogue paths too */
794 dapm_mark_io_dirty(&card
->dapm
);
795 snd_soc_dapm_sync(&card
->dapm
);
798 /* powers up audio subsystem after a suspend */
799 int snd_soc_resume(struct device
*dev
)
801 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
802 int i
, ac97_control
= 0;
804 /* If the initialization of this soc device failed, there is no codec
805 * associated with it. Just bail out in this case.
807 if (list_empty(&card
->codec_dev_list
))
810 /* AC97 devices might have other drivers hanging off them so
811 * need to resume immediately. Other drivers don't have that
812 * problem and may take a substantial amount of time to resume
813 * due to I/O costs and anti-pop so handle them out of line.
815 for (i
= 0; i
< card
->num_rtd
; i
++) {
816 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
817 ac97_control
|= cpu_dai
->driver
->ac97_control
;
820 dev_dbg(dev
, "ASoC: Resuming AC97 immediately\n");
821 soc_resume_deferred(&card
->deferred_resume_work
);
823 dev_dbg(dev
, "ASoC: Scheduling resume work\n");
824 if (!schedule_work(&card
->deferred_resume_work
))
825 dev_err(dev
, "ASoC: resume work item may be lost\n");
830 EXPORT_SYMBOL_GPL(snd_soc_resume
);
832 #define snd_soc_suspend NULL
833 #define snd_soc_resume NULL
836 static const struct snd_soc_dai_ops null_dai_ops
= {
839 static int soc_bind_dai_link(struct snd_soc_card
*card
, int num
)
841 struct snd_soc_dai_link
*dai_link
= &card
->dai_link
[num
];
842 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
843 struct snd_soc_codec
*codec
;
844 struct snd_soc_platform
*platform
;
845 struct snd_soc_dai
*codec_dai
, *cpu_dai
;
846 const char *platform_name
;
848 dev_dbg(card
->dev
, "ASoC: binding %s at idx %d\n", dai_link
->name
, num
);
850 /* Find CPU DAI from registered DAIs*/
851 list_for_each_entry(cpu_dai
, &dai_list
, list
) {
852 if (dai_link
->cpu_of_node
&&
853 (cpu_dai
->dev
->of_node
!= dai_link
->cpu_of_node
))
855 if (dai_link
->cpu_name
&&
856 strcmp(dev_name(cpu_dai
->dev
), dai_link
->cpu_name
))
858 if (dai_link
->cpu_dai_name
&&
859 strcmp(cpu_dai
->name
, dai_link
->cpu_dai_name
))
862 rtd
->cpu_dai
= cpu_dai
;
866 dev_err(card
->dev
, "ASoC: CPU DAI %s not registered\n",
867 dai_link
->cpu_dai_name
);
868 return -EPROBE_DEFER
;
871 /* Find CODEC from registered CODECs */
872 list_for_each_entry(codec
, &codec_list
, list
) {
873 if (dai_link
->codec_of_node
) {
874 if (codec
->dev
->of_node
!= dai_link
->codec_of_node
)
877 if (strcmp(codec
->name
, dai_link
->codec_name
))
884 * CODEC found, so find CODEC DAI from registered DAIs from
887 list_for_each_entry(codec_dai
, &dai_list
, list
) {
888 if (codec
->dev
== codec_dai
->dev
&&
889 !strcmp(codec_dai
->name
,
890 dai_link
->codec_dai_name
)) {
892 rtd
->codec_dai
= codec_dai
;
896 if (!rtd
->codec_dai
) {
897 dev_err(card
->dev
, "ASoC: CODEC DAI %s not registered\n",
898 dai_link
->codec_dai_name
);
899 return -EPROBE_DEFER
;
904 dev_err(card
->dev
, "ASoC: CODEC %s not registered\n",
905 dai_link
->codec_name
);
906 return -EPROBE_DEFER
;
909 /* if there's no platform we match on the empty platform */
910 platform_name
= dai_link
->platform_name
;
911 if (!platform_name
&& !dai_link
->platform_of_node
)
912 platform_name
= "snd-soc-dummy";
914 /* find one from the set of registered platforms */
915 list_for_each_entry(platform
, &platform_list
, list
) {
916 if (dai_link
->platform_of_node
) {
917 if (platform
->dev
->of_node
!=
918 dai_link
->platform_of_node
)
921 if (strcmp(platform
->name
, platform_name
))
925 rtd
->platform
= platform
;
927 if (!rtd
->platform
) {
928 dev_err(card
->dev
, "ASoC: platform %s not registered\n",
929 dai_link
->platform_name
);
930 return -EPROBE_DEFER
;
938 static int soc_remove_platform(struct snd_soc_platform
*platform
)
942 if (platform
->driver
->remove
) {
943 ret
= platform
->driver
->remove(platform
);
945 dev_err(platform
->dev
, "ASoC: failed to remove %d\n",
949 /* Make sure all DAPM widgets are freed */
950 snd_soc_dapm_free(&platform
->dapm
);
952 soc_cleanup_platform_debugfs(platform
);
953 platform
->probed
= 0;
954 list_del(&platform
->card_list
);
955 module_put(platform
->dev
->driver
->owner
);
960 static void soc_remove_codec(struct snd_soc_codec
*codec
)
964 if (codec
->driver
->remove
) {
965 err
= codec
->driver
->remove(codec
);
967 dev_err(codec
->dev
, "ASoC: failed to remove %d\n", err
);
970 /* Make sure all DAPM widgets are freed */
971 snd_soc_dapm_free(&codec
->dapm
);
973 soc_cleanup_codec_debugfs(codec
);
975 list_del(&codec
->card_list
);
976 module_put(codec
->dev
->driver
->owner
);
979 static void soc_remove_link_dais(struct snd_soc_card
*card
, int num
, int order
)
981 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
982 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
, *cpu_dai
= rtd
->cpu_dai
;
985 /* unregister the rtd device */
986 if (rtd
->dev_registered
) {
987 device_remove_file(rtd
->dev
, &dev_attr_pmdown_time
);
988 device_remove_file(rtd
->dev
, &dev_attr_codec_reg
);
989 device_unregister(rtd
->dev
);
990 rtd
->dev_registered
= 0;
993 /* remove the CODEC DAI */
994 if (codec_dai
&& codec_dai
->probed
&&
995 codec_dai
->driver
->remove_order
== order
) {
996 if (codec_dai
->driver
->remove
) {
997 err
= codec_dai
->driver
->remove(codec_dai
);
999 dev_err(codec_dai
->dev
,
1000 "ASoC: failed to remove %s: %d\n",
1001 codec_dai
->name
, err
);
1003 codec_dai
->probed
= 0;
1004 list_del(&codec_dai
->card_list
);
1007 /* remove the cpu_dai */
1008 if (cpu_dai
&& cpu_dai
->probed
&&
1009 cpu_dai
->driver
->remove_order
== order
) {
1010 if (cpu_dai
->driver
->remove
) {
1011 err
= cpu_dai
->driver
->remove(cpu_dai
);
1013 dev_err(cpu_dai
->dev
,
1014 "ASoC: failed to remove %s: %d\n",
1015 cpu_dai
->name
, err
);
1017 cpu_dai
->probed
= 0;
1018 list_del(&cpu_dai
->card_list
);
1020 if (!cpu_dai
->codec
) {
1021 snd_soc_dapm_free(&cpu_dai
->dapm
);
1022 module_put(cpu_dai
->dev
->driver
->owner
);
1027 static void soc_remove_link_components(struct snd_soc_card
*card
, int num
,
1030 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1031 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1032 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
1033 struct snd_soc_platform
*platform
= rtd
->platform
;
1034 struct snd_soc_codec
*codec
;
1036 /* remove the platform */
1037 if (platform
&& platform
->probed
&&
1038 platform
->driver
->remove_order
== order
) {
1039 soc_remove_platform(platform
);
1042 /* remove the CODEC-side CODEC */
1044 codec
= codec_dai
->codec
;
1045 if (codec
&& codec
->probed
&&
1046 codec
->driver
->remove_order
== order
)
1047 soc_remove_codec(codec
);
1050 /* remove any CPU-side CODEC */
1052 codec
= cpu_dai
->codec
;
1053 if (codec
&& codec
->probed
&&
1054 codec
->driver
->remove_order
== order
)
1055 soc_remove_codec(codec
);
1059 static void soc_remove_dai_links(struct snd_soc_card
*card
)
1063 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1065 for (dai
= 0; dai
< card
->num_rtd
; dai
++)
1066 soc_remove_link_dais(card
, dai
, order
);
1069 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1071 for (dai
= 0; dai
< card
->num_rtd
; dai
++)
1072 soc_remove_link_components(card
, dai
, order
);
1078 static void soc_set_name_prefix(struct snd_soc_card
*card
,
1079 struct snd_soc_codec
*codec
)
1083 if (card
->codec_conf
== NULL
)
1086 for (i
= 0; i
< card
->num_configs
; i
++) {
1087 struct snd_soc_codec_conf
*map
= &card
->codec_conf
[i
];
1088 if (map
->dev_name
&& !strcmp(codec
->name
, map
->dev_name
)) {
1089 codec
->name_prefix
= map
->name_prefix
;
1095 static int soc_probe_codec(struct snd_soc_card
*card
,
1096 struct snd_soc_codec
*codec
)
1099 const struct snd_soc_codec_driver
*driver
= codec
->driver
;
1100 struct snd_soc_dai
*dai
;
1103 codec
->dapm
.card
= card
;
1104 soc_set_name_prefix(card
, codec
);
1106 if (!try_module_get(codec
->dev
->driver
->owner
))
1109 soc_init_codec_debugfs(codec
);
1111 if (driver
->dapm_widgets
)
1112 snd_soc_dapm_new_controls(&codec
->dapm
, driver
->dapm_widgets
,
1113 driver
->num_dapm_widgets
);
1115 /* Create DAPM widgets for each DAI stream */
1116 list_for_each_entry(dai
, &dai_list
, list
) {
1117 if (dai
->dev
!= codec
->dev
)
1120 snd_soc_dapm_new_dai_widgets(&codec
->dapm
, dai
);
1123 codec
->dapm
.idle_bias_off
= driver
->idle_bias_off
;
1125 if (driver
->probe
) {
1126 ret
= driver
->probe(codec
);
1129 "ASoC: failed to probe CODEC %d\n", ret
);
1132 WARN(codec
->dapm
.idle_bias_off
&&
1133 codec
->dapm
.bias_level
!= SND_SOC_BIAS_OFF
,
1134 "codec %s can not start from non-off bias with idle_bias_off==1\n",
1138 /* If the driver didn't set I/O up try regmap */
1139 if (!codec
->write
&& dev_get_regmap(codec
->dev
, NULL
))
1140 snd_soc_codec_set_cache_io(codec
, 0, 0, SND_SOC_REGMAP
);
1142 if (driver
->controls
)
1143 snd_soc_add_codec_controls(codec
, driver
->controls
,
1144 driver
->num_controls
);
1145 if (driver
->dapm_routes
)
1146 snd_soc_dapm_add_routes(&codec
->dapm
, driver
->dapm_routes
,
1147 driver
->num_dapm_routes
);
1149 /* mark codec as probed and add to card codec list */
1151 list_add(&codec
->card_list
, &card
->codec_dev_list
);
1152 list_add(&codec
->dapm
.list
, &card
->dapm_list
);
1157 soc_cleanup_codec_debugfs(codec
);
1158 module_put(codec
->dev
->driver
->owner
);
1163 static int soc_probe_platform(struct snd_soc_card
*card
,
1164 struct snd_soc_platform
*platform
)
1167 const struct snd_soc_platform_driver
*driver
= platform
->driver
;
1168 struct snd_soc_dai
*dai
;
1170 platform
->card
= card
;
1171 platform
->dapm
.card
= card
;
1173 if (!try_module_get(platform
->dev
->driver
->owner
))
1176 soc_init_platform_debugfs(platform
);
1178 if (driver
->dapm_widgets
)
1179 snd_soc_dapm_new_controls(&platform
->dapm
,
1180 driver
->dapm_widgets
, driver
->num_dapm_widgets
);
1182 /* Create DAPM widgets for each DAI stream */
1183 list_for_each_entry(dai
, &dai_list
, list
) {
1184 if (dai
->dev
!= platform
->dev
)
1187 snd_soc_dapm_new_dai_widgets(&platform
->dapm
, dai
);
1190 platform
->dapm
.idle_bias_off
= 1;
1192 if (driver
->probe
) {
1193 ret
= driver
->probe(platform
);
1195 dev_err(platform
->dev
,
1196 "ASoC: failed to probe platform %d\n", ret
);
1201 if (driver
->controls
)
1202 snd_soc_add_platform_controls(platform
, driver
->controls
,
1203 driver
->num_controls
);
1204 if (driver
->dapm_routes
)
1205 snd_soc_dapm_add_routes(&platform
->dapm
, driver
->dapm_routes
,
1206 driver
->num_dapm_routes
);
1208 /* mark platform as probed and add to card platform list */
1209 platform
->probed
= 1;
1210 list_add(&platform
->card_list
, &card
->platform_dev_list
);
1211 list_add(&platform
->dapm
.list
, &card
->dapm_list
);
1216 soc_cleanup_platform_debugfs(platform
);
1217 module_put(platform
->dev
->driver
->owner
);
1222 static void rtd_release(struct device
*dev
)
1227 static int soc_post_component_init(struct snd_soc_card
*card
,
1228 struct snd_soc_codec
*codec
,
1229 int num
, int dailess
)
1231 struct snd_soc_dai_link
*dai_link
= NULL
;
1232 struct snd_soc_aux_dev
*aux_dev
= NULL
;
1233 struct snd_soc_pcm_runtime
*rtd
;
1234 const char *temp
, *name
;
1238 dai_link
= &card
->dai_link
[num
];
1239 rtd
= &card
->rtd
[num
];
1240 name
= dai_link
->name
;
1242 aux_dev
= &card
->aux_dev
[num
];
1243 rtd
= &card
->rtd_aux
[num
];
1244 name
= aux_dev
->name
;
1248 /* machine controls, routes and widgets are not prefixed */
1249 temp
= codec
->name_prefix
;
1250 codec
->name_prefix
= NULL
;
1252 /* do machine specific initialization */
1253 if (!dailess
&& dai_link
->init
)
1254 ret
= dai_link
->init(rtd
);
1255 else if (dailess
&& aux_dev
->init
)
1256 ret
= aux_dev
->init(&codec
->dapm
);
1258 dev_err(card
->dev
, "ASoC: failed to init %s: %d\n", name
, ret
);
1261 codec
->name_prefix
= temp
;
1263 /* register the rtd device */
1266 rtd
->dev
= kzalloc(sizeof(struct device
), GFP_KERNEL
);
1269 device_initialize(rtd
->dev
);
1270 rtd
->dev
->parent
= card
->dev
;
1271 rtd
->dev
->release
= rtd_release
;
1272 rtd
->dev
->init_name
= name
;
1273 dev_set_drvdata(rtd
->dev
, rtd
);
1274 mutex_init(&rtd
->pcm_mutex
);
1275 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_PLAYBACK
].be_clients
);
1276 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_CAPTURE
].be_clients
);
1277 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_PLAYBACK
].fe_clients
);
1278 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_CAPTURE
].fe_clients
);
1279 ret
= device_add(rtd
->dev
);
1281 /* calling put_device() here to free the rtd->dev */
1282 put_device(rtd
->dev
);
1284 "ASoC: failed to register runtime device: %d\n", ret
);
1287 rtd
->dev_registered
= 1;
1289 /* add DAPM sysfs entries for this codec */
1290 ret
= snd_soc_dapm_sys_add(rtd
->dev
);
1293 "ASoC: failed to add codec dapm sysfs entries: %d\n", ret
);
1295 /* add codec sysfs entries */
1296 ret
= device_create_file(rtd
->dev
, &dev_attr_codec_reg
);
1299 "ASoC: failed to add codec sysfs files: %d\n", ret
);
1301 #ifdef CONFIG_DEBUG_FS
1302 /* add DPCM sysfs entries */
1303 if (!dailess
&& !dai_link
->dynamic
)
1306 ret
= soc_dpcm_debugfs_add(rtd
);
1308 dev_err(rtd
->dev
, "ASoC: failed to add dpcm sysfs entries: %d\n", ret
);
1315 static int soc_probe_link_components(struct snd_soc_card
*card
, int num
,
1318 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1319 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1320 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
1321 struct snd_soc_platform
*platform
= rtd
->platform
;
1324 /* probe the CPU-side component, if it is a CODEC */
1325 if (cpu_dai
->codec
&&
1326 !cpu_dai
->codec
->probed
&&
1327 cpu_dai
->codec
->driver
->probe_order
== order
) {
1328 ret
= soc_probe_codec(card
, cpu_dai
->codec
);
1333 /* probe the CODEC-side component */
1334 if (!codec_dai
->codec
->probed
&&
1335 codec_dai
->codec
->driver
->probe_order
== order
) {
1336 ret
= soc_probe_codec(card
, codec_dai
->codec
);
1341 /* probe the platform */
1342 if (!platform
->probed
&&
1343 platform
->driver
->probe_order
== order
) {
1344 ret
= soc_probe_platform(card
, platform
);
1352 static int soc_probe_link_dais(struct snd_soc_card
*card
, int num
, int order
)
1354 struct snd_soc_dai_link
*dai_link
= &card
->dai_link
[num
];
1355 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1356 struct snd_soc_codec
*codec
= rtd
->codec
;
1357 struct snd_soc_platform
*platform
= rtd
->platform
;
1358 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
1359 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1360 struct snd_soc_dapm_widget
*play_w
, *capture_w
;
1363 dev_dbg(card
->dev
, "ASoC: probe %s dai link %d late %d\n",
1364 card
->name
, num
, order
);
1366 /* config components */
1367 cpu_dai
->platform
= platform
;
1368 codec_dai
->card
= card
;
1369 cpu_dai
->card
= card
;
1371 /* set default power off timeout */
1372 rtd
->pmdown_time
= pmdown_time
;
1374 /* probe the cpu_dai */
1375 if (!cpu_dai
->probed
&&
1376 cpu_dai
->driver
->probe_order
== order
) {
1377 if (!cpu_dai
->codec
) {
1378 cpu_dai
->dapm
.card
= card
;
1379 if (!try_module_get(cpu_dai
->dev
->driver
->owner
))
1382 list_add(&cpu_dai
->dapm
.list
, &card
->dapm_list
);
1385 if (cpu_dai
->driver
->probe
) {
1386 ret
= cpu_dai
->driver
->probe(cpu_dai
);
1388 dev_err(cpu_dai
->dev
,
1389 "ASoC: failed to probe CPU DAI %s: %d\n",
1390 cpu_dai
->name
, ret
);
1391 module_put(cpu_dai
->dev
->driver
->owner
);
1395 cpu_dai
->probed
= 1;
1396 /* mark cpu_dai as probed and add to card dai list */
1397 list_add(&cpu_dai
->card_list
, &card
->dai_dev_list
);
1400 /* probe the CODEC DAI */
1401 if (!codec_dai
->probed
&& codec_dai
->driver
->probe_order
== order
) {
1402 if (codec_dai
->driver
->probe
) {
1403 ret
= codec_dai
->driver
->probe(codec_dai
);
1405 dev_err(codec_dai
->dev
,
1406 "ASoC: failed to probe CODEC DAI %s: %d\n",
1407 codec_dai
->name
, ret
);
1412 /* mark codec_dai as probed and add to card dai list */
1413 codec_dai
->probed
= 1;
1414 list_add(&codec_dai
->card_list
, &card
->dai_dev_list
);
1417 /* complete DAI probe during last probe */
1418 if (order
!= SND_SOC_COMP_ORDER_LAST
)
1421 ret
= soc_post_component_init(card
, codec
, num
, 0);
1425 ret
= device_create_file(rtd
->dev
, &dev_attr_pmdown_time
);
1427 dev_warn(rtd
->dev
, "ASoC: failed to add pmdown_time sysfs: %d\n",
1430 if (cpu_dai
->driver
->compress_dai
) {
1431 /*create compress_device"*/
1432 ret
= soc_new_compress(rtd
, num
);
1434 dev_err(card
->dev
, "ASoC: can't create compress %s\n",
1435 dai_link
->stream_name
);
1440 if (!dai_link
->params
) {
1441 /* create the pcm */
1442 ret
= soc_new_pcm(rtd
, num
);
1444 dev_err(card
->dev
, "ASoC: can't create pcm %s :%d\n",
1445 dai_link
->stream_name
, ret
);
1449 INIT_DELAYED_WORK(&rtd
->delayed_work
,
1450 codec2codec_close_delayed_work
);
1452 /* link the DAI widgets */
1453 play_w
= codec_dai
->playback_widget
;
1454 capture_w
= cpu_dai
->capture_widget
;
1455 if (play_w
&& capture_w
) {
1456 ret
= snd_soc_dapm_new_pcm(card
, dai_link
->params
,
1459 dev_err(card
->dev
, "ASoC: Can't link %s to %s: %d\n",
1460 play_w
->name
, capture_w
->name
, ret
);
1465 play_w
= cpu_dai
->playback_widget
;
1466 capture_w
= codec_dai
->capture_widget
;
1467 if (play_w
&& capture_w
) {
1468 ret
= snd_soc_dapm_new_pcm(card
, dai_link
->params
,
1471 dev_err(card
->dev
, "ASoC: Can't link %s to %s: %d\n",
1472 play_w
->name
, capture_w
->name
, ret
);
1479 /* add platform data for AC97 devices */
1480 if (rtd
->codec_dai
->driver
->ac97_control
)
1481 snd_ac97_dev_add_pdata(codec
->ac97
, rtd
->cpu_dai
->ac97_pdata
);
1486 #ifdef CONFIG_SND_SOC_AC97_BUS
1487 static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime
*rtd
)
1491 /* Only instantiate AC97 if not already done by the adaptor
1492 * for the generic AC97 subsystem.
1494 if (rtd
->codec_dai
->driver
->ac97_control
&& !rtd
->codec
->ac97_registered
) {
1496 * It is possible that the AC97 device is already registered to
1497 * the device subsystem. This happens when the device is created
1498 * via snd_ac97_mixer(). Currently only SoC codec that does so
1499 * is the generic AC97 glue but others migh emerge.
1501 * In those cases we don't try to register the device again.
1503 if (!rtd
->codec
->ac97_created
)
1506 ret
= soc_ac97_dev_register(rtd
->codec
);
1508 dev_err(rtd
->codec
->dev
,
1509 "ASoC: AC97 device register failed: %d\n", ret
);
1513 rtd
->codec
->ac97_registered
= 1;
1518 static void soc_unregister_ac97_dai_link(struct snd_soc_codec
*codec
)
1520 if (codec
->ac97_registered
) {
1521 soc_ac97_dev_unregister(codec
);
1522 codec
->ac97_registered
= 0;
1527 static int soc_check_aux_dev(struct snd_soc_card
*card
, int num
)
1529 struct snd_soc_aux_dev
*aux_dev
= &card
->aux_dev
[num
];
1530 struct snd_soc_codec
*codec
;
1532 /* find CODEC from registered CODECs*/
1533 list_for_each_entry(codec
, &codec_list
, list
) {
1534 if (!strcmp(codec
->name
, aux_dev
->codec_name
))
1538 dev_err(card
->dev
, "ASoC: %s not registered\n", aux_dev
->codec_name
);
1540 return -EPROBE_DEFER
;
1543 static int soc_probe_aux_dev(struct snd_soc_card
*card
, int num
)
1545 struct snd_soc_aux_dev
*aux_dev
= &card
->aux_dev
[num
];
1546 struct snd_soc_codec
*codec
;
1549 /* find CODEC from registered CODECs*/
1550 list_for_each_entry(codec
, &codec_list
, list
) {
1551 if (!strcmp(codec
->name
, aux_dev
->codec_name
)) {
1552 if (codec
->probed
) {
1554 "ASoC: codec already probed");
1561 /* codec not found */
1562 dev_err(card
->dev
, "ASoC: codec %s not found", aux_dev
->codec_name
);
1563 return -EPROBE_DEFER
;
1566 ret
= soc_probe_codec(card
, codec
);
1570 ret
= soc_post_component_init(card
, codec
, num
, 1);
1576 static void soc_remove_aux_dev(struct snd_soc_card
*card
, int num
)
1578 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd_aux
[num
];
1579 struct snd_soc_codec
*codec
= rtd
->codec
;
1581 /* unregister the rtd device */
1582 if (rtd
->dev_registered
) {
1583 device_remove_file(rtd
->dev
, &dev_attr_codec_reg
);
1584 device_unregister(rtd
->dev
);
1585 rtd
->dev_registered
= 0;
1588 if (codec
&& codec
->probed
)
1589 soc_remove_codec(codec
);
1592 static int snd_soc_init_codec_cache(struct snd_soc_codec
*codec
,
1593 enum snd_soc_compress_type compress_type
)
1597 if (codec
->cache_init
)
1600 /* override the compress_type if necessary */
1601 if (compress_type
&& codec
->compress_type
!= compress_type
)
1602 codec
->compress_type
= compress_type
;
1603 ret
= snd_soc_cache_init(codec
);
1606 "ASoC: Failed to set cache compression type: %d\n",
1610 codec
->cache_init
= 1;
1614 static int snd_soc_instantiate_card(struct snd_soc_card
*card
)
1616 struct snd_soc_codec
*codec
;
1617 struct snd_soc_codec_conf
*codec_conf
;
1618 enum snd_soc_compress_type compress_type
;
1619 struct snd_soc_dai_link
*dai_link
;
1620 int ret
, i
, order
, dai_fmt
;
1622 mutex_lock_nested(&card
->mutex
, SND_SOC_CARD_CLASS_INIT
);
1625 for (i
= 0; i
< card
->num_links
; i
++) {
1626 ret
= soc_bind_dai_link(card
, i
);
1631 /* check aux_devs too */
1632 for (i
= 0; i
< card
->num_aux_devs
; i
++) {
1633 ret
= soc_check_aux_dev(card
, i
);
1638 /* initialize the register cache for each available codec */
1639 list_for_each_entry(codec
, &codec_list
, list
) {
1640 if (codec
->cache_init
)
1642 /* by default we don't override the compress_type */
1644 /* check to see if we need to override the compress_type */
1645 for (i
= 0; i
< card
->num_configs
; ++i
) {
1646 codec_conf
= &card
->codec_conf
[i
];
1647 if (!strcmp(codec
->name
, codec_conf
->dev_name
)) {
1648 compress_type
= codec_conf
->compress_type
;
1649 if (compress_type
&& compress_type
1650 != codec
->compress_type
)
1654 ret
= snd_soc_init_codec_cache(codec
, compress_type
);
1659 /* card bind complete so register a sound card */
1660 ret
= snd_card_create(SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
,
1661 card
->owner
, 0, &card
->snd_card
);
1664 "ASoC: can't create sound card for card %s: %d\n",
1668 card
->snd_card
->dev
= card
->dev
;
1670 card
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
1671 card
->dapm
.dev
= card
->dev
;
1672 card
->dapm
.card
= card
;
1673 list_add(&card
->dapm
.list
, &card
->dapm_list
);
1675 #ifdef CONFIG_DEBUG_FS
1676 snd_soc_dapm_debugfs_init(&card
->dapm
, card
->debugfs_card_root
);
1679 #ifdef CONFIG_PM_SLEEP
1680 /* deferred resume work */
1681 INIT_WORK(&card
->deferred_resume_work
, soc_resume_deferred
);
1684 if (card
->dapm_widgets
)
1685 snd_soc_dapm_new_controls(&card
->dapm
, card
->dapm_widgets
,
1686 card
->num_dapm_widgets
);
1688 /* initialise the sound card only once */
1690 ret
= card
->probe(card
);
1692 goto card_probe_error
;
1695 /* probe all components used by DAI links on this card */
1696 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1698 for (i
= 0; i
< card
->num_links
; i
++) {
1699 ret
= soc_probe_link_components(card
, i
, order
);
1702 "ASoC: failed to instantiate card %d\n",
1709 /* probe all DAI links on this card */
1710 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1712 for (i
= 0; i
< card
->num_links
; i
++) {
1713 ret
= soc_probe_link_dais(card
, i
, order
);
1716 "ASoC: failed to instantiate card %d\n",
1723 for (i
= 0; i
< card
->num_aux_devs
; i
++) {
1724 ret
= soc_probe_aux_dev(card
, i
);
1727 "ASoC: failed to add auxiliary devices %d\n",
1729 goto probe_aux_dev_err
;
1733 snd_soc_dapm_link_dai_widgets(card
);
1736 snd_soc_add_card_controls(card
, card
->controls
, card
->num_controls
);
1738 if (card
->dapm_routes
)
1739 snd_soc_dapm_add_routes(&card
->dapm
, card
->dapm_routes
,
1740 card
->num_dapm_routes
);
1742 for (i
= 0; i
< card
->num_links
; i
++) {
1743 dai_link
= &card
->dai_link
[i
];
1744 dai_fmt
= dai_link
->dai_fmt
;
1747 ret
= snd_soc_dai_set_fmt(card
->rtd
[i
].codec_dai
,
1749 if (ret
!= 0 && ret
!= -ENOTSUPP
)
1750 dev_warn(card
->rtd
[i
].codec_dai
->dev
,
1751 "ASoC: Failed to set DAI format: %d\n",
1755 /* If this is a regular CPU link there will be a platform */
1757 (dai_link
->platform_name
|| dai_link
->platform_of_node
)) {
1758 ret
= snd_soc_dai_set_fmt(card
->rtd
[i
].cpu_dai
,
1760 if (ret
!= 0 && ret
!= -ENOTSUPP
)
1761 dev_warn(card
->rtd
[i
].cpu_dai
->dev
,
1762 "ASoC: Failed to set DAI format: %d\n",
1764 } else if (dai_fmt
) {
1765 /* Flip the polarity for the "CPU" end */
1766 dai_fmt
&= ~SND_SOC_DAIFMT_MASTER_MASK
;
1767 switch (dai_link
->dai_fmt
&
1768 SND_SOC_DAIFMT_MASTER_MASK
) {
1769 case SND_SOC_DAIFMT_CBM_CFM
:
1770 dai_fmt
|= SND_SOC_DAIFMT_CBS_CFS
;
1772 case SND_SOC_DAIFMT_CBM_CFS
:
1773 dai_fmt
|= SND_SOC_DAIFMT_CBS_CFM
;
1775 case SND_SOC_DAIFMT_CBS_CFM
:
1776 dai_fmt
|= SND_SOC_DAIFMT_CBM_CFS
;
1778 case SND_SOC_DAIFMT_CBS_CFS
:
1779 dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
1783 ret
= snd_soc_dai_set_fmt(card
->rtd
[i
].cpu_dai
,
1785 if (ret
!= 0 && ret
!= -ENOTSUPP
)
1786 dev_warn(card
->rtd
[i
].cpu_dai
->dev
,
1787 "ASoC: Failed to set DAI format: %d\n",
1792 snprintf(card
->snd_card
->shortname
, sizeof(card
->snd_card
->shortname
),
1794 snprintf(card
->snd_card
->longname
, sizeof(card
->snd_card
->longname
),
1795 "%s", card
->long_name
? card
->long_name
: card
->name
);
1796 snprintf(card
->snd_card
->driver
, sizeof(card
->snd_card
->driver
),
1797 "%s", card
->driver_name
? card
->driver_name
: card
->name
);
1798 for (i
= 0; i
< ARRAY_SIZE(card
->snd_card
->driver
); i
++) {
1799 switch (card
->snd_card
->driver
[i
]) {
1805 if (!isalnum(card
->snd_card
->driver
[i
]))
1806 card
->snd_card
->driver
[i
] = '_';
1811 if (card
->late_probe
) {
1812 ret
= card
->late_probe(card
);
1814 dev_err(card
->dev
, "ASoC: %s late_probe() failed: %d\n",
1816 goto probe_aux_dev_err
;
1820 if (card
->fully_routed
)
1821 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
)
1822 snd_soc_dapm_auto_nc_codec_pins(codec
);
1824 snd_soc_dapm_new_widgets(card
);
1826 ret
= snd_card_register(card
->snd_card
);
1828 dev_err(card
->dev
, "ASoC: failed to register soundcard %d\n",
1830 goto probe_aux_dev_err
;
1833 #ifdef CONFIG_SND_SOC_AC97_BUS
1834 /* register any AC97 codecs */
1835 for (i
= 0; i
< card
->num_rtd
; i
++) {
1836 ret
= soc_register_ac97_dai_link(&card
->rtd
[i
]);
1839 "ASoC: failed to register AC97: %d\n", ret
);
1841 soc_unregister_ac97_dai_link(card
->rtd
[i
].codec
);
1842 goto probe_aux_dev_err
;
1847 card
->instantiated
= 1;
1848 snd_soc_dapm_sync(&card
->dapm
);
1849 mutex_unlock(&card
->mutex
);
1854 for (i
= 0; i
< card
->num_aux_devs
; i
++)
1855 soc_remove_aux_dev(card
, i
);
1858 soc_remove_dai_links(card
);
1864 snd_card_free(card
->snd_card
);
1867 mutex_unlock(&card
->mutex
);
1872 /* probes a new socdev */
1873 static int soc_probe(struct platform_device
*pdev
)
1875 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
1878 * no card, so machine driver should be registering card
1879 * we should not be here in that case so ret error
1884 dev_warn(&pdev
->dev
,
1885 "ASoC: machine %s should use snd_soc_register_card()\n",
1888 /* Bodge while we unpick instantiation */
1889 card
->dev
= &pdev
->dev
;
1891 return snd_soc_register_card(card
);
1894 static int soc_cleanup_card_resources(struct snd_soc_card
*card
)
1898 /* make sure any delayed work runs */
1899 for (i
= 0; i
< card
->num_rtd
; i
++) {
1900 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[i
];
1901 flush_delayed_work(&rtd
->delayed_work
);
1904 /* remove auxiliary devices */
1905 for (i
= 0; i
< card
->num_aux_devs
; i
++)
1906 soc_remove_aux_dev(card
, i
);
1908 /* remove and free each DAI */
1909 soc_remove_dai_links(card
);
1911 soc_cleanup_card_debugfs(card
);
1913 /* remove the card */
1917 snd_soc_dapm_free(&card
->dapm
);
1919 snd_card_free(card
->snd_card
);
1924 /* removes a socdev */
1925 static int soc_remove(struct platform_device
*pdev
)
1927 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
1929 snd_soc_unregister_card(card
);
1933 int snd_soc_poweroff(struct device
*dev
)
1935 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
1938 if (!card
->instantiated
)
1941 /* Flush out pmdown_time work - we actually do want to run it
1942 * now, we're shutting down so no imminent restart. */
1943 for (i
= 0; i
< card
->num_rtd
; i
++) {
1944 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[i
];
1945 flush_delayed_work(&rtd
->delayed_work
);
1948 snd_soc_dapm_shutdown(card
);
1952 EXPORT_SYMBOL_GPL(snd_soc_poweroff
);
1954 const struct dev_pm_ops snd_soc_pm_ops
= {
1955 .suspend
= snd_soc_suspend
,
1956 .resume
= snd_soc_resume
,
1957 .freeze
= snd_soc_suspend
,
1958 .thaw
= snd_soc_resume
,
1959 .poweroff
= snd_soc_poweroff
,
1960 .restore
= snd_soc_resume
,
1962 EXPORT_SYMBOL_GPL(snd_soc_pm_ops
);
1964 /* ASoC platform driver */
1965 static struct platform_driver soc_driver
= {
1967 .name
= "soc-audio",
1968 .owner
= THIS_MODULE
,
1969 .pm
= &snd_soc_pm_ops
,
1972 .remove
= soc_remove
,
1976 * snd_soc_codec_volatile_register: Report if a register is volatile.
1978 * @codec: CODEC to query.
1979 * @reg: Register to query.
1981 * Boolean function indiciating if a CODEC register is volatile.
1983 int snd_soc_codec_volatile_register(struct snd_soc_codec
*codec
,
1986 if (codec
->volatile_register
)
1987 return codec
->volatile_register(codec
, reg
);
1991 EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register
);
1994 * snd_soc_codec_readable_register: Report if a register is readable.
1996 * @codec: CODEC to query.
1997 * @reg: Register to query.
1999 * Boolean function indicating if a CODEC register is readable.
2001 int snd_soc_codec_readable_register(struct snd_soc_codec
*codec
,
2004 if (codec
->readable_register
)
2005 return codec
->readable_register(codec
, reg
);
2009 EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register
);
2012 * snd_soc_codec_writable_register: Report if a register is writable.
2014 * @codec: CODEC to query.
2015 * @reg: Register to query.
2017 * Boolean function indicating if a CODEC register is writable.
2019 int snd_soc_codec_writable_register(struct snd_soc_codec
*codec
,
2022 if (codec
->writable_register
)
2023 return codec
->writable_register(codec
, reg
);
2027 EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register
);
2029 int snd_soc_platform_read(struct snd_soc_platform
*platform
,
2034 if (!platform
->driver
->read
) {
2035 dev_err(platform
->dev
, "ASoC: platform has no read back\n");
2039 ret
= platform
->driver
->read(platform
, reg
);
2040 dev_dbg(platform
->dev
, "read %x => %x\n", reg
, ret
);
2041 trace_snd_soc_preg_read(platform
, reg
, ret
);
2045 EXPORT_SYMBOL_GPL(snd_soc_platform_read
);
2047 int snd_soc_platform_write(struct snd_soc_platform
*platform
,
2048 unsigned int reg
, unsigned int val
)
2050 if (!platform
->driver
->write
) {
2051 dev_err(platform
->dev
, "ASoC: platform has no write back\n");
2055 dev_dbg(platform
->dev
, "write %x = %x\n", reg
, val
);
2056 trace_snd_soc_preg_write(platform
, reg
, val
);
2057 return platform
->driver
->write(platform
, reg
, val
);
2059 EXPORT_SYMBOL_GPL(snd_soc_platform_write
);
2062 * snd_soc_new_ac97_codec - initailise AC97 device
2063 * @codec: audio codec
2064 * @ops: AC97 bus operations
2065 * @num: AC97 codec number
2067 * Initialises AC97 codec resources for use by ad-hoc devices only.
2069 int snd_soc_new_ac97_codec(struct snd_soc_codec
*codec
,
2070 struct snd_ac97_bus_ops
*ops
, int num
)
2072 mutex_lock(&codec
->mutex
);
2074 codec
->ac97
= kzalloc(sizeof(struct snd_ac97
), GFP_KERNEL
);
2075 if (codec
->ac97
== NULL
) {
2076 mutex_unlock(&codec
->mutex
);
2080 codec
->ac97
->bus
= kzalloc(sizeof(struct snd_ac97_bus
), GFP_KERNEL
);
2081 if (codec
->ac97
->bus
== NULL
) {
2084 mutex_unlock(&codec
->mutex
);
2088 codec
->ac97
->bus
->ops
= ops
;
2089 codec
->ac97
->num
= num
;
2092 * Mark the AC97 device to be created by us. This way we ensure that the
2093 * device will be registered with the device subsystem later on.
2095 codec
->ac97_created
= 1;
2097 mutex_unlock(&codec
->mutex
);
2100 EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec
);
2102 static struct snd_ac97_reset_cfg snd_ac97_rst_cfg
;
2104 static void snd_soc_ac97_warm_reset(struct snd_ac97
*ac97
)
2106 struct pinctrl
*pctl
= snd_ac97_rst_cfg
.pctl
;
2108 pinctrl_select_state(pctl
, snd_ac97_rst_cfg
.pstate_warm_reset
);
2110 gpio_direction_output(snd_ac97_rst_cfg
.gpio_sync
, 1);
2114 gpio_direction_output(snd_ac97_rst_cfg
.gpio_sync
, 0);
2116 pinctrl_select_state(pctl
, snd_ac97_rst_cfg
.pstate_run
);
2120 static void snd_soc_ac97_reset(struct snd_ac97
*ac97
)
2122 struct pinctrl
*pctl
= snd_ac97_rst_cfg
.pctl
;
2124 pinctrl_select_state(pctl
, snd_ac97_rst_cfg
.pstate_reset
);
2126 gpio_direction_output(snd_ac97_rst_cfg
.gpio_sync
, 0);
2127 gpio_direction_output(snd_ac97_rst_cfg
.gpio_sdata
, 0);
2128 gpio_direction_output(snd_ac97_rst_cfg
.gpio_reset
, 0);
2132 gpio_direction_output(snd_ac97_rst_cfg
.gpio_reset
, 1);
2134 pinctrl_select_state(pctl
, snd_ac97_rst_cfg
.pstate_run
);
2138 static int snd_soc_ac97_parse_pinctl(struct device
*dev
,
2139 struct snd_ac97_reset_cfg
*cfg
)
2142 struct pinctrl_state
*state
;
2146 p
= devm_pinctrl_get(dev
);
2148 dev_err(dev
, "Failed to get pinctrl\n");
2153 state
= pinctrl_lookup_state(p
, "ac97-reset");
2154 if (IS_ERR(state
)) {
2155 dev_err(dev
, "Can't find pinctrl state ac97-reset\n");
2156 return PTR_RET(state
);
2158 cfg
->pstate_reset
= state
;
2160 state
= pinctrl_lookup_state(p
, "ac97-warm-reset");
2161 if (IS_ERR(state
)) {
2162 dev_err(dev
, "Can't find pinctrl state ac97-warm-reset\n");
2163 return PTR_RET(state
);
2165 cfg
->pstate_warm_reset
= state
;
2167 state
= pinctrl_lookup_state(p
, "ac97-running");
2168 if (IS_ERR(state
)) {
2169 dev_err(dev
, "Can't find pinctrl state ac97-running\n");
2170 return PTR_RET(state
);
2172 cfg
->pstate_run
= state
;
2174 gpio
= of_get_named_gpio(dev
->of_node
, "ac97-gpios", 0);
2176 dev_err(dev
, "Can't find ac97-sync gpio\n");
2179 ret
= devm_gpio_request(dev
, gpio
, "AC97 link sync");
2181 dev_err(dev
, "Failed requesting ac97-sync gpio\n");
2184 cfg
->gpio_sync
= gpio
;
2186 gpio
= of_get_named_gpio(dev
->of_node
, "ac97-gpios", 1);
2188 dev_err(dev
, "Can't find ac97-sdata gpio %d\n", gpio
);
2191 ret
= devm_gpio_request(dev
, gpio
, "AC97 link sdata");
2193 dev_err(dev
, "Failed requesting ac97-sdata gpio\n");
2196 cfg
->gpio_sdata
= gpio
;
2198 gpio
= of_get_named_gpio(dev
->of_node
, "ac97-gpios", 2);
2200 dev_err(dev
, "Can't find ac97-reset gpio\n");
2203 ret
= devm_gpio_request(dev
, gpio
, "AC97 link reset");
2205 dev_err(dev
, "Failed requesting ac97-reset gpio\n");
2208 cfg
->gpio_reset
= gpio
;
2213 struct snd_ac97_bus_ops
*soc_ac97_ops
;
2214 EXPORT_SYMBOL_GPL(soc_ac97_ops
);
2216 int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops
*ops
)
2218 if (ops
== soc_ac97_ops
)
2221 if (soc_ac97_ops
&& ops
)
2228 EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops
);
2231 * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
2233 * This function sets the reset and warm_reset properties of ops and parses
2234 * the device node of pdev to get pinctrl states and gpio numbers to use.
2236 int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops
*ops
,
2237 struct platform_device
*pdev
)
2239 struct device
*dev
= &pdev
->dev
;
2240 struct snd_ac97_reset_cfg cfg
;
2243 ret
= snd_soc_ac97_parse_pinctl(dev
, &cfg
);
2247 ret
= snd_soc_set_ac97_ops(ops
);
2251 ops
->warm_reset
= snd_soc_ac97_warm_reset
;
2252 ops
->reset
= snd_soc_ac97_reset
;
2254 snd_ac97_rst_cfg
= cfg
;
2257 EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset
);
2260 * snd_soc_free_ac97_codec - free AC97 codec device
2261 * @codec: audio codec
2263 * Frees AC97 codec device resources.
2265 void snd_soc_free_ac97_codec(struct snd_soc_codec
*codec
)
2267 mutex_lock(&codec
->mutex
);
2268 #ifdef CONFIG_SND_SOC_AC97_BUS
2269 soc_unregister_ac97_dai_link(codec
);
2271 kfree(codec
->ac97
->bus
);
2274 codec
->ac97_created
= 0;
2275 mutex_unlock(&codec
->mutex
);
2277 EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec
);
2279 unsigned int snd_soc_read(struct snd_soc_codec
*codec
, unsigned int reg
)
2283 ret
= codec
->read(codec
, reg
);
2284 dev_dbg(codec
->dev
, "read %x => %x\n", reg
, ret
);
2285 trace_snd_soc_reg_read(codec
, reg
, ret
);
2289 EXPORT_SYMBOL_GPL(snd_soc_read
);
2291 unsigned int snd_soc_write(struct snd_soc_codec
*codec
,
2292 unsigned int reg
, unsigned int val
)
2294 dev_dbg(codec
->dev
, "write %x = %x\n", reg
, val
);
2295 trace_snd_soc_reg_write(codec
, reg
, val
);
2296 return codec
->write(codec
, reg
, val
);
2298 EXPORT_SYMBOL_GPL(snd_soc_write
);
2300 unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec
*codec
,
2301 unsigned int reg
, const void *data
, size_t len
)
2303 return codec
->bulk_write_raw(codec
, reg
, data
, len
);
2305 EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw
);
2308 * snd_soc_update_bits - update codec register bits
2309 * @codec: audio codec
2310 * @reg: codec register
2311 * @mask: register mask
2314 * Writes new register value.
2316 * Returns 1 for change, 0 for no change, or negative error code.
2318 int snd_soc_update_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
2319 unsigned int mask
, unsigned int value
)
2322 unsigned int old
, new;
2325 if (codec
->using_regmap
) {
2326 ret
= regmap_update_bits_check(codec
->control_data
, reg
,
2327 mask
, value
, &change
);
2329 ret
= snd_soc_read(codec
, reg
);
2334 new = (old
& ~mask
) | (value
& mask
);
2335 change
= old
!= new;
2337 ret
= snd_soc_write(codec
, reg
, new);
2345 EXPORT_SYMBOL_GPL(snd_soc_update_bits
);
2348 * snd_soc_update_bits_locked - update codec register bits
2349 * @codec: audio codec
2350 * @reg: codec register
2351 * @mask: register mask
2354 * Writes new register value, and takes the codec mutex.
2356 * Returns 1 for change else 0.
2358 int snd_soc_update_bits_locked(struct snd_soc_codec
*codec
,
2359 unsigned short reg
, unsigned int mask
,
2364 mutex_lock(&codec
->mutex
);
2365 change
= snd_soc_update_bits(codec
, reg
, mask
, value
);
2366 mutex_unlock(&codec
->mutex
);
2370 EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked
);
2373 * snd_soc_test_bits - test register for change
2374 * @codec: audio codec
2375 * @reg: codec register
2376 * @mask: register mask
2379 * Tests a register with a new value and checks if the new value is
2380 * different from the old value.
2382 * Returns 1 for change else 0.
2384 int snd_soc_test_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
2385 unsigned int mask
, unsigned int value
)
2388 unsigned int old
, new;
2390 old
= snd_soc_read(codec
, reg
);
2391 new = (old
& ~mask
) | value
;
2392 change
= old
!= new;
2396 EXPORT_SYMBOL_GPL(snd_soc_test_bits
);
2399 * snd_soc_cnew - create new control
2400 * @_template: control template
2401 * @data: control private data
2402 * @long_name: control long name
2403 * @prefix: control name prefix
2405 * Create a new mixer control from a template control.
2407 * Returns 0 for success, else error.
2409 struct snd_kcontrol
*snd_soc_cnew(const struct snd_kcontrol_new
*_template
,
2410 void *data
, const char *long_name
,
2413 struct snd_kcontrol_new
template;
2414 struct snd_kcontrol
*kcontrol
;
2417 memcpy(&template, _template
, sizeof(template));
2421 long_name
= template.name
;
2424 name
= kasprintf(GFP_KERNEL
, "%s %s", prefix
, long_name
);
2428 template.name
= name
;
2430 template.name
= long_name
;
2433 kcontrol
= snd_ctl_new1(&template, data
);
2439 EXPORT_SYMBOL_GPL(snd_soc_cnew
);
2441 static int snd_soc_add_controls(struct snd_card
*card
, struct device
*dev
,
2442 const struct snd_kcontrol_new
*controls
, int num_controls
,
2443 const char *prefix
, void *data
)
2447 for (i
= 0; i
< num_controls
; i
++) {
2448 const struct snd_kcontrol_new
*control
= &controls
[i
];
2449 err
= snd_ctl_add(card
, snd_soc_cnew(control
, data
,
2450 control
->name
, prefix
));
2452 dev_err(dev
, "ASoC: Failed to add %s: %d\n",
2453 control
->name
, err
);
2461 struct snd_kcontrol
*snd_soc_card_get_kcontrol(struct snd_soc_card
*soc_card
,
2464 struct snd_card
*card
= soc_card
->snd_card
;
2465 struct snd_kcontrol
*kctl
;
2467 if (unlikely(!name
))
2470 list_for_each_entry(kctl
, &card
->controls
, list
)
2471 if (!strncmp(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
)))
2475 EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol
);
2478 * snd_soc_add_codec_controls - add an array of controls to a codec.
2479 * Convenience function to add a list of controls. Many codecs were
2480 * duplicating this code.
2482 * @codec: codec to add controls to
2483 * @controls: array of controls to add
2484 * @num_controls: number of elements in the array
2486 * Return 0 for success, else error.
2488 int snd_soc_add_codec_controls(struct snd_soc_codec
*codec
,
2489 const struct snd_kcontrol_new
*controls
, int num_controls
)
2491 struct snd_card
*card
= codec
->card
->snd_card
;
2493 return snd_soc_add_controls(card
, codec
->dev
, controls
, num_controls
,
2494 codec
->name_prefix
, codec
);
2496 EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls
);
2499 * snd_soc_add_platform_controls - add an array of controls to a platform.
2500 * Convenience function to add a list of controls.
2502 * @platform: platform to add controls to
2503 * @controls: array of controls to add
2504 * @num_controls: number of elements in the array
2506 * Return 0 for success, else error.
2508 int snd_soc_add_platform_controls(struct snd_soc_platform
*platform
,
2509 const struct snd_kcontrol_new
*controls
, int num_controls
)
2511 struct snd_card
*card
= platform
->card
->snd_card
;
2513 return snd_soc_add_controls(card
, platform
->dev
, controls
, num_controls
,
2516 EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls
);
2519 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2520 * Convenience function to add a list of controls.
2522 * @soc_card: SoC card to add controls to
2523 * @controls: array of controls to add
2524 * @num_controls: number of elements in the array
2526 * Return 0 for success, else error.
2528 int snd_soc_add_card_controls(struct snd_soc_card
*soc_card
,
2529 const struct snd_kcontrol_new
*controls
, int num_controls
)
2531 struct snd_card
*card
= soc_card
->snd_card
;
2533 return snd_soc_add_controls(card
, soc_card
->dev
, controls
, num_controls
,
2536 EXPORT_SYMBOL_GPL(snd_soc_add_card_controls
);
2539 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2540 * Convienience function to add a list of controls.
2542 * @dai: DAI to add controls to
2543 * @controls: array of controls to add
2544 * @num_controls: number of elements in the array
2546 * Return 0 for success, else error.
2548 int snd_soc_add_dai_controls(struct snd_soc_dai
*dai
,
2549 const struct snd_kcontrol_new
*controls
, int num_controls
)
2551 struct snd_card
*card
= dai
->card
->snd_card
;
2553 return snd_soc_add_controls(card
, dai
->dev
, controls
, num_controls
,
2556 EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls
);
2559 * snd_soc_info_enum_double - enumerated double mixer info callback
2560 * @kcontrol: mixer control
2561 * @uinfo: control element information
2563 * Callback to provide information about a double enumerated
2566 * Returns 0 for success.
2568 int snd_soc_info_enum_double(struct snd_kcontrol
*kcontrol
,
2569 struct snd_ctl_elem_info
*uinfo
)
2571 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2573 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2574 uinfo
->count
= e
->shift_l
== e
->shift_r
? 1 : 2;
2575 uinfo
->value
.enumerated
.items
= e
->max
;
2577 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
2578 uinfo
->value
.enumerated
.item
= e
->max
- 1;
2579 strcpy(uinfo
->value
.enumerated
.name
,
2580 e
->texts
[uinfo
->value
.enumerated
.item
]);
2583 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double
);
2586 * snd_soc_get_enum_double - enumerated double mixer get callback
2587 * @kcontrol: mixer control
2588 * @ucontrol: control element information
2590 * Callback to get the value of a double enumerated mixer.
2592 * Returns 0 for success.
2594 int snd_soc_get_enum_double(struct snd_kcontrol
*kcontrol
,
2595 struct snd_ctl_elem_value
*ucontrol
)
2597 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2598 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2601 val
= snd_soc_read(codec
, e
->reg
);
2602 ucontrol
->value
.enumerated
.item
[0]
2603 = (val
>> e
->shift_l
) & e
->mask
;
2604 if (e
->shift_l
!= e
->shift_r
)
2605 ucontrol
->value
.enumerated
.item
[1] =
2606 (val
>> e
->shift_r
) & e
->mask
;
2610 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double
);
2613 * snd_soc_put_enum_double - enumerated double mixer put callback
2614 * @kcontrol: mixer control
2615 * @ucontrol: control element information
2617 * Callback to set the value of a double enumerated mixer.
2619 * Returns 0 for success.
2621 int snd_soc_put_enum_double(struct snd_kcontrol
*kcontrol
,
2622 struct snd_ctl_elem_value
*ucontrol
)
2624 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2625 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2629 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
2631 val
= ucontrol
->value
.enumerated
.item
[0] << e
->shift_l
;
2632 mask
= e
->mask
<< e
->shift_l
;
2633 if (e
->shift_l
!= e
->shift_r
) {
2634 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2636 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
2637 mask
|= e
->mask
<< e
->shift_r
;
2640 return snd_soc_update_bits_locked(codec
, e
->reg
, mask
, val
);
2642 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double
);
2645 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2646 * @kcontrol: mixer control
2647 * @ucontrol: control element information
2649 * Callback to get the value of a double semi enumerated mixer.
2651 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2652 * used for handling bitfield coded enumeration for example.
2654 * Returns 0 for success.
2656 int snd_soc_get_value_enum_double(struct snd_kcontrol
*kcontrol
,
2657 struct snd_ctl_elem_value
*ucontrol
)
2659 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2660 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2661 unsigned int reg_val
, val
, mux
;
2663 reg_val
= snd_soc_read(codec
, e
->reg
);
2664 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
2665 for (mux
= 0; mux
< e
->max
; mux
++) {
2666 if (val
== e
->values
[mux
])
2669 ucontrol
->value
.enumerated
.item
[0] = mux
;
2670 if (e
->shift_l
!= e
->shift_r
) {
2671 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
2672 for (mux
= 0; mux
< e
->max
; mux
++) {
2673 if (val
== e
->values
[mux
])
2676 ucontrol
->value
.enumerated
.item
[1] = mux
;
2681 EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double
);
2684 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2685 * @kcontrol: mixer control
2686 * @ucontrol: control element information
2688 * Callback to set the value of a double semi enumerated mixer.
2690 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2691 * used for handling bitfield coded enumeration for example.
2693 * Returns 0 for success.
2695 int snd_soc_put_value_enum_double(struct snd_kcontrol
*kcontrol
,
2696 struct snd_ctl_elem_value
*ucontrol
)
2698 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2699 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2703 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
2705 val
= e
->values
[ucontrol
->value
.enumerated
.item
[0]] << e
->shift_l
;
2706 mask
= e
->mask
<< e
->shift_l
;
2707 if (e
->shift_l
!= e
->shift_r
) {
2708 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2710 val
|= e
->values
[ucontrol
->value
.enumerated
.item
[1]] << e
->shift_r
;
2711 mask
|= e
->mask
<< e
->shift_r
;
2714 return snd_soc_update_bits_locked(codec
, e
->reg
, mask
, val
);
2716 EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double
);
2719 * snd_soc_info_volsw - single mixer info callback
2720 * @kcontrol: mixer control
2721 * @uinfo: control element information
2723 * Callback to provide information about a single mixer control, or a double
2724 * mixer control that spans 2 registers.
2726 * Returns 0 for success.
2728 int snd_soc_info_volsw(struct snd_kcontrol
*kcontrol
,
2729 struct snd_ctl_elem_info
*uinfo
)
2731 struct soc_mixer_control
*mc
=
2732 (struct soc_mixer_control
*)kcontrol
->private_value
;
2735 if (!mc
->platform_max
)
2736 mc
->platform_max
= mc
->max
;
2737 platform_max
= mc
->platform_max
;
2739 if (platform_max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2740 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2742 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2744 uinfo
->count
= snd_soc_volsw_is_stereo(mc
) ? 2 : 1;
2745 uinfo
->value
.integer
.min
= 0;
2746 uinfo
->value
.integer
.max
= platform_max
;
2749 EXPORT_SYMBOL_GPL(snd_soc_info_volsw
);
2752 * snd_soc_get_volsw - single mixer get callback
2753 * @kcontrol: mixer control
2754 * @ucontrol: control element information
2756 * Callback to get the value of a single mixer control, or a double mixer
2757 * control that spans 2 registers.
2759 * Returns 0 for success.
2761 int snd_soc_get_volsw(struct snd_kcontrol
*kcontrol
,
2762 struct snd_ctl_elem_value
*ucontrol
)
2764 struct soc_mixer_control
*mc
=
2765 (struct soc_mixer_control
*)kcontrol
->private_value
;
2766 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2767 unsigned int reg
= mc
->reg
;
2768 unsigned int reg2
= mc
->rreg
;
2769 unsigned int shift
= mc
->shift
;
2770 unsigned int rshift
= mc
->rshift
;
2772 unsigned int mask
= (1 << fls(max
)) - 1;
2773 unsigned int invert
= mc
->invert
;
2775 ucontrol
->value
.integer
.value
[0] =
2776 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
2778 ucontrol
->value
.integer
.value
[0] =
2779 max
- ucontrol
->value
.integer
.value
[0];
2781 if (snd_soc_volsw_is_stereo(mc
)) {
2783 ucontrol
->value
.integer
.value
[1] =
2784 (snd_soc_read(codec
, reg
) >> rshift
) & mask
;
2786 ucontrol
->value
.integer
.value
[1] =
2787 (snd_soc_read(codec
, reg2
) >> shift
) & mask
;
2789 ucontrol
->value
.integer
.value
[1] =
2790 max
- ucontrol
->value
.integer
.value
[1];
2795 EXPORT_SYMBOL_GPL(snd_soc_get_volsw
);
2798 * snd_soc_put_volsw - single mixer put callback
2799 * @kcontrol: mixer control
2800 * @ucontrol: control element information
2802 * Callback to set the value of a single mixer control, or a double mixer
2803 * control that spans 2 registers.
2805 * Returns 0 for success.
2807 int snd_soc_put_volsw(struct snd_kcontrol
*kcontrol
,
2808 struct snd_ctl_elem_value
*ucontrol
)
2810 struct soc_mixer_control
*mc
=
2811 (struct soc_mixer_control
*)kcontrol
->private_value
;
2812 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2813 unsigned int reg
= mc
->reg
;
2814 unsigned int reg2
= mc
->rreg
;
2815 unsigned int shift
= mc
->shift
;
2816 unsigned int rshift
= mc
->rshift
;
2818 unsigned int mask
= (1 << fls(max
)) - 1;
2819 unsigned int invert
= mc
->invert
;
2822 unsigned int val2
= 0;
2823 unsigned int val
, val_mask
;
2825 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
2828 val_mask
= mask
<< shift
;
2830 if (snd_soc_volsw_is_stereo(mc
)) {
2831 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
2835 val_mask
|= mask
<< rshift
;
2836 val
|= val2
<< rshift
;
2838 val2
= val2
<< shift
;
2842 err
= snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2847 err
= snd_soc_update_bits_locked(codec
, reg2
, val_mask
, val2
);
2851 EXPORT_SYMBOL_GPL(snd_soc_put_volsw
);
2854 * snd_soc_get_volsw_sx - single mixer get callback
2855 * @kcontrol: mixer control
2856 * @ucontrol: control element information
2858 * Callback to get the value of a single mixer control, or a double mixer
2859 * control that spans 2 registers.
2861 * Returns 0 for success.
2863 int snd_soc_get_volsw_sx(struct snd_kcontrol
*kcontrol
,
2864 struct snd_ctl_elem_value
*ucontrol
)
2866 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2867 struct soc_mixer_control
*mc
=
2868 (struct soc_mixer_control
*)kcontrol
->private_value
;
2870 unsigned int reg
= mc
->reg
;
2871 unsigned int reg2
= mc
->rreg
;
2872 unsigned int shift
= mc
->shift
;
2873 unsigned int rshift
= mc
->rshift
;
2876 int mask
= (1 << (fls(min
+ max
) - 1)) - 1;
2878 ucontrol
->value
.integer
.value
[0] =
2879 ((snd_soc_read(codec
, reg
) >> shift
) - min
) & mask
;
2881 if (snd_soc_volsw_is_stereo(mc
))
2882 ucontrol
->value
.integer
.value
[1] =
2883 ((snd_soc_read(codec
, reg2
) >> rshift
) - min
) & mask
;
2887 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx
);
2890 * snd_soc_put_volsw_sx - double mixer set callback
2891 * @kcontrol: mixer control
2892 * @uinfo: control element information
2894 * Callback to set the value of a double mixer control that spans 2 registers.
2896 * Returns 0 for success.
2898 int snd_soc_put_volsw_sx(struct snd_kcontrol
*kcontrol
,
2899 struct snd_ctl_elem_value
*ucontrol
)
2901 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2902 struct soc_mixer_control
*mc
=
2903 (struct soc_mixer_control
*)kcontrol
->private_value
;
2905 unsigned int reg
= mc
->reg
;
2906 unsigned int reg2
= mc
->rreg
;
2907 unsigned int shift
= mc
->shift
;
2908 unsigned int rshift
= mc
->rshift
;
2911 int mask
= (1 << (fls(min
+ max
) - 1)) - 1;
2913 unsigned short val
, val_mask
, val2
= 0;
2915 val_mask
= mask
<< shift
;
2916 val
= (ucontrol
->value
.integer
.value
[0] + min
) & mask
;
2919 err
= snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2923 if (snd_soc_volsw_is_stereo(mc
)) {
2924 val_mask
= mask
<< rshift
;
2925 val2
= (ucontrol
->value
.integer
.value
[1] + min
) & mask
;
2926 val2
= val2
<< rshift
;
2928 if (snd_soc_update_bits_locked(codec
, reg2
, val_mask
, val2
))
2933 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx
);
2936 * snd_soc_info_volsw_s8 - signed mixer info callback
2937 * @kcontrol: mixer control
2938 * @uinfo: control element information
2940 * Callback to provide information about a signed mixer control.
2942 * Returns 0 for success.
2944 int snd_soc_info_volsw_s8(struct snd_kcontrol
*kcontrol
,
2945 struct snd_ctl_elem_info
*uinfo
)
2947 struct soc_mixer_control
*mc
=
2948 (struct soc_mixer_control
*)kcontrol
->private_value
;
2952 if (!mc
->platform_max
)
2953 mc
->platform_max
= mc
->max
;
2954 platform_max
= mc
->platform_max
;
2956 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2958 uinfo
->value
.integer
.min
= 0;
2959 uinfo
->value
.integer
.max
= platform_max
- min
;
2962 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8
);
2965 * snd_soc_get_volsw_s8 - signed mixer get callback
2966 * @kcontrol: mixer control
2967 * @ucontrol: control element information
2969 * Callback to get the value of a signed mixer control.
2971 * Returns 0 for success.
2973 int snd_soc_get_volsw_s8(struct snd_kcontrol
*kcontrol
,
2974 struct snd_ctl_elem_value
*ucontrol
)
2976 struct soc_mixer_control
*mc
=
2977 (struct soc_mixer_control
*)kcontrol
->private_value
;
2978 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2979 unsigned int reg
= mc
->reg
;
2981 int val
= snd_soc_read(codec
, reg
);
2983 ucontrol
->value
.integer
.value
[0] =
2984 ((signed char)(val
& 0xff))-min
;
2985 ucontrol
->value
.integer
.value
[1] =
2986 ((signed char)((val
>> 8) & 0xff))-min
;
2989 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8
);
2992 * snd_soc_put_volsw_sgn - signed mixer put callback
2993 * @kcontrol: mixer control
2994 * @ucontrol: control element information
2996 * Callback to set the value of a signed mixer control.
2998 * Returns 0 for success.
3000 int snd_soc_put_volsw_s8(struct snd_kcontrol
*kcontrol
,
3001 struct snd_ctl_elem_value
*ucontrol
)
3003 struct soc_mixer_control
*mc
=
3004 (struct soc_mixer_control
*)kcontrol
->private_value
;
3005 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3006 unsigned int reg
= mc
->reg
;
3010 val
= (ucontrol
->value
.integer
.value
[0]+min
) & 0xff;
3011 val
|= ((ucontrol
->value
.integer
.value
[1]+min
) & 0xff) << 8;
3013 return snd_soc_update_bits_locked(codec
, reg
, 0xffff, val
);
3015 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8
);
3018 * snd_soc_info_volsw_range - single mixer info callback with range.
3019 * @kcontrol: mixer control
3020 * @uinfo: control element information
3022 * Callback to provide information, within a range, about a single
3025 * returns 0 for success.
3027 int snd_soc_info_volsw_range(struct snd_kcontrol
*kcontrol
,
3028 struct snd_ctl_elem_info
*uinfo
)
3030 struct soc_mixer_control
*mc
=
3031 (struct soc_mixer_control
*)kcontrol
->private_value
;
3035 if (!mc
->platform_max
)
3036 mc
->platform_max
= mc
->max
;
3037 platform_max
= mc
->platform_max
;
3039 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
3040 uinfo
->count
= snd_soc_volsw_is_stereo(mc
) ? 2 : 1;
3041 uinfo
->value
.integer
.min
= 0;
3042 uinfo
->value
.integer
.max
= platform_max
- min
;
3046 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range
);
3049 * snd_soc_put_volsw_range - single mixer put value callback with range.
3050 * @kcontrol: mixer control
3051 * @ucontrol: control element information
3053 * Callback to set the value, within a range, for a single mixer control.
3055 * Returns 0 for success.
3057 int snd_soc_put_volsw_range(struct snd_kcontrol
*kcontrol
,
3058 struct snd_ctl_elem_value
*ucontrol
)
3060 struct soc_mixer_control
*mc
=
3061 (struct soc_mixer_control
*)kcontrol
->private_value
;
3062 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3063 unsigned int reg
= mc
->reg
;
3064 unsigned int rreg
= mc
->rreg
;
3065 unsigned int shift
= mc
->shift
;
3068 unsigned int mask
= (1 << fls(max
)) - 1;
3069 unsigned int invert
= mc
->invert
;
3070 unsigned int val
, val_mask
;
3073 val
= ((ucontrol
->value
.integer
.value
[0] + min
) & mask
);
3076 val_mask
= mask
<< shift
;
3079 ret
= snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
3083 if (snd_soc_volsw_is_stereo(mc
)) {
3084 val
= ((ucontrol
->value
.integer
.value
[1] + min
) & mask
);
3087 val_mask
= mask
<< shift
;
3090 ret
= snd_soc_update_bits_locked(codec
, rreg
, val_mask
, val
);
3095 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range
);
3098 * snd_soc_get_volsw_range - single mixer get callback with range
3099 * @kcontrol: mixer control
3100 * @ucontrol: control element information
3102 * Callback to get the value, within a range, of a single mixer control.
3104 * Returns 0 for success.
3106 int snd_soc_get_volsw_range(struct snd_kcontrol
*kcontrol
,
3107 struct snd_ctl_elem_value
*ucontrol
)
3109 struct soc_mixer_control
*mc
=
3110 (struct soc_mixer_control
*)kcontrol
->private_value
;
3111 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3112 unsigned int reg
= mc
->reg
;
3113 unsigned int rreg
= mc
->rreg
;
3114 unsigned int shift
= mc
->shift
;
3117 unsigned int mask
= (1 << fls(max
)) - 1;
3118 unsigned int invert
= mc
->invert
;
3120 ucontrol
->value
.integer
.value
[0] =
3121 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
3123 ucontrol
->value
.integer
.value
[0] =
3124 max
- ucontrol
->value
.integer
.value
[0];
3125 ucontrol
->value
.integer
.value
[0] =
3126 ucontrol
->value
.integer
.value
[0] - min
;
3128 if (snd_soc_volsw_is_stereo(mc
)) {
3129 ucontrol
->value
.integer
.value
[1] =
3130 (snd_soc_read(codec
, rreg
) >> shift
) & mask
;
3132 ucontrol
->value
.integer
.value
[1] =
3133 max
- ucontrol
->value
.integer
.value
[1];
3134 ucontrol
->value
.integer
.value
[1] =
3135 ucontrol
->value
.integer
.value
[1] - min
;
3140 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range
);
3143 * snd_soc_limit_volume - Set new limit to an existing volume control.
3145 * @codec: where to look for the control
3146 * @name: Name of the control
3147 * @max: new maximum limit
3149 * Return 0 for success, else error.
3151 int snd_soc_limit_volume(struct snd_soc_codec
*codec
,
3152 const char *name
, int max
)
3154 struct snd_card
*card
= codec
->card
->snd_card
;
3155 struct snd_kcontrol
*kctl
;
3156 struct soc_mixer_control
*mc
;
3160 /* Sanity check for name and max */
3161 if (unlikely(!name
|| max
<= 0))
3164 list_for_each_entry(kctl
, &card
->controls
, list
) {
3165 if (!strncmp(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
))) {
3171 mc
= (struct soc_mixer_control
*)kctl
->private_value
;
3172 if (max
<= mc
->max
) {
3173 mc
->platform_max
= max
;
3179 EXPORT_SYMBOL_GPL(snd_soc_limit_volume
);
3181 int snd_soc_bytes_info(struct snd_kcontrol
*kcontrol
,
3182 struct snd_ctl_elem_info
*uinfo
)
3184 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3185 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
3187 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BYTES
;
3188 uinfo
->count
= params
->num_regs
* codec
->val_bytes
;
3192 EXPORT_SYMBOL_GPL(snd_soc_bytes_info
);
3194 int snd_soc_bytes_get(struct snd_kcontrol
*kcontrol
,
3195 struct snd_ctl_elem_value
*ucontrol
)
3197 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
3198 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3201 if (codec
->using_regmap
)
3202 ret
= regmap_raw_read(codec
->control_data
, params
->base
,
3203 ucontrol
->value
.bytes
.data
,
3204 params
->num_regs
* codec
->val_bytes
);
3208 /* Hide any masked bytes to ensure consistent data reporting */
3209 if (ret
== 0 && params
->mask
) {
3210 switch (codec
->val_bytes
) {
3212 ucontrol
->value
.bytes
.data
[0] &= ~params
->mask
;
3215 ((u16
*)(&ucontrol
->value
.bytes
.data
))[0]
3219 ((u32
*)(&ucontrol
->value
.bytes
.data
))[0]
3229 EXPORT_SYMBOL_GPL(snd_soc_bytes_get
);
3231 int snd_soc_bytes_put(struct snd_kcontrol
*kcontrol
,
3232 struct snd_ctl_elem_value
*ucontrol
)
3234 struct soc_bytes
*params
= (void *)kcontrol
->private_value
;
3235 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3240 if (!codec
->using_regmap
)
3243 len
= params
->num_regs
* codec
->val_bytes
;
3245 data
= kmemdup(ucontrol
->value
.bytes
.data
, len
, GFP_KERNEL
| GFP_DMA
);
3250 * If we've got a mask then we need to preserve the register
3251 * bits. We shouldn't modify the incoming data so take a
3255 ret
= regmap_read(codec
->control_data
, params
->base
, &val
);
3259 val
&= params
->mask
;
3261 switch (codec
->val_bytes
) {
3263 ((u8
*)data
)[0] &= ~params
->mask
;
3264 ((u8
*)data
)[0] |= val
;
3267 ((u16
*)data
)[0] &= cpu_to_be16(~params
->mask
);
3268 ((u16
*)data
)[0] |= cpu_to_be16(val
);
3271 ((u32
*)data
)[0] &= cpu_to_be32(~params
->mask
);
3272 ((u32
*)data
)[0] |= cpu_to_be32(val
);
3280 ret
= regmap_raw_write(codec
->control_data
, params
->base
,
3288 EXPORT_SYMBOL_GPL(snd_soc_bytes_put
);
3291 * snd_soc_info_xr_sx - signed multi register info callback
3292 * @kcontrol: mreg control
3293 * @uinfo: control element information
3295 * Callback to provide information of a control that can
3296 * span multiple codec registers which together
3297 * forms a single signed value in a MSB/LSB manner.
3299 * Returns 0 for success.
3301 int snd_soc_info_xr_sx(struct snd_kcontrol
*kcontrol
,
3302 struct snd_ctl_elem_info
*uinfo
)
3304 struct soc_mreg_control
*mc
=
3305 (struct soc_mreg_control
*)kcontrol
->private_value
;
3306 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
3308 uinfo
->value
.integer
.min
= mc
->min
;
3309 uinfo
->value
.integer
.max
= mc
->max
;
3313 EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx
);
3316 * snd_soc_get_xr_sx - signed multi register get callback
3317 * @kcontrol: mreg control
3318 * @ucontrol: control element information
3320 * Callback to get the value of a control that can span
3321 * multiple codec registers which together forms a single
3322 * signed value in a MSB/LSB manner. The control supports
3323 * specifying total no of bits used to allow for bitfields
3324 * across the multiple codec registers.
3326 * Returns 0 for success.
3328 int snd_soc_get_xr_sx(struct snd_kcontrol
*kcontrol
,
3329 struct snd_ctl_elem_value
*ucontrol
)
3331 struct soc_mreg_control
*mc
=
3332 (struct soc_mreg_control
*)kcontrol
->private_value
;
3333 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3334 unsigned int regbase
= mc
->regbase
;
3335 unsigned int regcount
= mc
->regcount
;
3336 unsigned int regwshift
= codec
->driver
->reg_word_size
* BITS_PER_BYTE
;
3337 unsigned int regwmask
= (1<<regwshift
)-1;
3338 unsigned int invert
= mc
->invert
;
3339 unsigned long mask
= (1UL<<mc
->nbits
)-1;
3343 unsigned long regval
;
3346 for (i
= 0; i
< regcount
; i
++) {
3347 regval
= snd_soc_read(codec
, regbase
+i
) & regwmask
;
3348 val
|= regval
<< (regwshift
*(regcount
-i
-1));
3351 if (min
< 0 && val
> max
)
3355 ucontrol
->value
.integer
.value
[0] = val
;
3359 EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx
);
3362 * snd_soc_put_xr_sx - signed multi register get callback
3363 * @kcontrol: mreg control
3364 * @ucontrol: control element information
3366 * Callback to set the value of a control that can span
3367 * multiple codec registers which together forms a single
3368 * signed value in a MSB/LSB manner. The control supports
3369 * specifying total no of bits used to allow for bitfields
3370 * across the multiple codec registers.
3372 * Returns 0 for success.
3374 int snd_soc_put_xr_sx(struct snd_kcontrol
*kcontrol
,
3375 struct snd_ctl_elem_value
*ucontrol
)
3377 struct soc_mreg_control
*mc
=
3378 (struct soc_mreg_control
*)kcontrol
->private_value
;
3379 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3380 unsigned int regbase
= mc
->regbase
;
3381 unsigned int regcount
= mc
->regcount
;
3382 unsigned int regwshift
= codec
->driver
->reg_word_size
* BITS_PER_BYTE
;
3383 unsigned int regwmask
= (1<<regwshift
)-1;
3384 unsigned int invert
= mc
->invert
;
3385 unsigned long mask
= (1UL<<mc
->nbits
)-1;
3387 long val
= ucontrol
->value
.integer
.value
[0];
3388 unsigned int i
, regval
, regmask
;
3394 for (i
= 0; i
< regcount
; i
++) {
3395 regval
= (val
>> (regwshift
*(regcount
-i
-1))) & regwmask
;
3396 regmask
= (mask
>> (regwshift
*(regcount
-i
-1))) & regwmask
;
3397 err
= snd_soc_update_bits_locked(codec
, regbase
+i
,
3405 EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx
);
3408 * snd_soc_get_strobe - strobe get callback
3409 * @kcontrol: mixer control
3410 * @ucontrol: control element information
3412 * Callback get the value of a strobe mixer control.
3414 * Returns 0 for success.
3416 int snd_soc_get_strobe(struct snd_kcontrol
*kcontrol
,
3417 struct snd_ctl_elem_value
*ucontrol
)
3419 struct soc_mixer_control
*mc
=
3420 (struct soc_mixer_control
*)kcontrol
->private_value
;
3421 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3422 unsigned int reg
= mc
->reg
;
3423 unsigned int shift
= mc
->shift
;
3424 unsigned int mask
= 1 << shift
;
3425 unsigned int invert
= mc
->invert
!= 0;
3426 unsigned int val
= snd_soc_read(codec
, reg
) & mask
;
3428 if (shift
!= 0 && val
!= 0)
3430 ucontrol
->value
.enumerated
.item
[0] = val
^ invert
;
3434 EXPORT_SYMBOL_GPL(snd_soc_get_strobe
);
3437 * snd_soc_put_strobe - strobe put callback
3438 * @kcontrol: mixer control
3439 * @ucontrol: control element information
3441 * Callback strobe a register bit to high then low (or the inverse)
3442 * in one pass of a single mixer enum control.
3444 * Returns 1 for success.
3446 int snd_soc_put_strobe(struct snd_kcontrol
*kcontrol
,
3447 struct snd_ctl_elem_value
*ucontrol
)
3449 struct soc_mixer_control
*mc
=
3450 (struct soc_mixer_control
*)kcontrol
->private_value
;
3451 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3452 unsigned int reg
= mc
->reg
;
3453 unsigned int shift
= mc
->shift
;
3454 unsigned int mask
= 1 << shift
;
3455 unsigned int invert
= mc
->invert
!= 0;
3456 unsigned int strobe
= ucontrol
->value
.enumerated
.item
[0] != 0;
3457 unsigned int val1
= (strobe
^ invert
) ? mask
: 0;
3458 unsigned int val2
= (strobe
^ invert
) ? 0 : mask
;
3461 err
= snd_soc_update_bits_locked(codec
, reg
, mask
, val1
);
3465 err
= snd_soc_update_bits_locked(codec
, reg
, mask
, val2
);
3468 EXPORT_SYMBOL_GPL(snd_soc_put_strobe
);
3471 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3473 * @clk_id: DAI specific clock ID
3474 * @freq: new clock frequency in Hz
3475 * @dir: new clock direction - input/output.
3477 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3479 int snd_soc_dai_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
3480 unsigned int freq
, int dir
)
3482 if (dai
->driver
&& dai
->driver
->ops
->set_sysclk
)
3483 return dai
->driver
->ops
->set_sysclk(dai
, clk_id
, freq
, dir
);
3484 else if (dai
->codec
&& dai
->codec
->driver
->set_sysclk
)
3485 return dai
->codec
->driver
->set_sysclk(dai
->codec
, clk_id
, 0,
3490 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk
);
3493 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3495 * @clk_id: DAI specific clock ID
3496 * @source: Source for the clock
3497 * @freq: new clock frequency in Hz
3498 * @dir: new clock direction - input/output.
3500 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3502 int snd_soc_codec_set_sysclk(struct snd_soc_codec
*codec
, int clk_id
,
3503 int source
, unsigned int freq
, int dir
)
3505 if (codec
->driver
->set_sysclk
)
3506 return codec
->driver
->set_sysclk(codec
, clk_id
, source
,
3511 EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk
);
3514 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3516 * @div_id: DAI specific clock divider ID
3517 * @div: new clock divisor.
3519 * Configures the clock dividers. This is used to derive the best DAI bit and
3520 * frame clocks from the system or master clock. It's best to set the DAI bit
3521 * and frame clocks as low as possible to save system power.
3523 int snd_soc_dai_set_clkdiv(struct snd_soc_dai
*dai
,
3524 int div_id
, int div
)
3526 if (dai
->driver
&& dai
->driver
->ops
->set_clkdiv
)
3527 return dai
->driver
->ops
->set_clkdiv(dai
, div_id
, div
);
3531 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv
);
3534 * snd_soc_dai_set_pll - configure DAI PLL.
3536 * @pll_id: DAI specific PLL ID
3537 * @source: DAI specific source for the PLL
3538 * @freq_in: PLL input clock frequency in Hz
3539 * @freq_out: requested PLL output clock frequency in Hz
3541 * Configures and enables PLL to generate output clock based on input clock.
3543 int snd_soc_dai_set_pll(struct snd_soc_dai
*dai
, int pll_id
, int source
,
3544 unsigned int freq_in
, unsigned int freq_out
)
3546 if (dai
->driver
&& dai
->driver
->ops
->set_pll
)
3547 return dai
->driver
->ops
->set_pll(dai
, pll_id
, source
,
3549 else if (dai
->codec
&& dai
->codec
->driver
->set_pll
)
3550 return dai
->codec
->driver
->set_pll(dai
->codec
, pll_id
, source
,
3555 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll
);
3558 * snd_soc_codec_set_pll - configure codec PLL.
3560 * @pll_id: DAI specific PLL ID
3561 * @source: DAI specific source for the PLL
3562 * @freq_in: PLL input clock frequency in Hz
3563 * @freq_out: requested PLL output clock frequency in Hz
3565 * Configures and enables PLL to generate output clock based on input clock.
3567 int snd_soc_codec_set_pll(struct snd_soc_codec
*codec
, int pll_id
, int source
,
3568 unsigned int freq_in
, unsigned int freq_out
)
3570 if (codec
->driver
->set_pll
)
3571 return codec
->driver
->set_pll(codec
, pll_id
, source
,
3576 EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll
);
3579 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3581 * @fmt: SND_SOC_DAIFMT_ format value.
3583 * Configures the DAI hardware format and clocking.
3585 int snd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
3587 if (dai
->driver
== NULL
)
3589 if (dai
->driver
->ops
->set_fmt
== NULL
)
3591 return dai
->driver
->ops
->set_fmt(dai
, fmt
);
3593 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt
);
3596 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3598 * @tx_mask: bitmask representing active TX slots.
3599 * @rx_mask: bitmask representing active RX slots.
3600 * @slots: Number of slots in use.
3601 * @slot_width: Width in bits for each slot.
3603 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3606 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai
*dai
,
3607 unsigned int tx_mask
, unsigned int rx_mask
, int slots
, int slot_width
)
3609 if (dai
->driver
&& dai
->driver
->ops
->set_tdm_slot
)
3610 return dai
->driver
->ops
->set_tdm_slot(dai
, tx_mask
, rx_mask
,
3615 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot
);
3618 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3620 * @tx_num: how many TX channels
3621 * @tx_slot: pointer to an array which imply the TX slot number channel
3623 * @rx_num: how many RX channels
3624 * @rx_slot: pointer to an array which imply the RX slot number channel
3627 * configure the relationship between channel number and TDM slot number.
3629 int snd_soc_dai_set_channel_map(struct snd_soc_dai
*dai
,
3630 unsigned int tx_num
, unsigned int *tx_slot
,
3631 unsigned int rx_num
, unsigned int *rx_slot
)
3633 if (dai
->driver
&& dai
->driver
->ops
->set_channel_map
)
3634 return dai
->driver
->ops
->set_channel_map(dai
, tx_num
, tx_slot
,
3639 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map
);
3642 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3644 * @tristate: tristate enable
3646 * Tristates the DAI so that others can use it.
3648 int snd_soc_dai_set_tristate(struct snd_soc_dai
*dai
, int tristate
)
3650 if (dai
->driver
&& dai
->driver
->ops
->set_tristate
)
3651 return dai
->driver
->ops
->set_tristate(dai
, tristate
);
3655 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate
);
3658 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3660 * @mute: mute enable
3661 * @direction: stream to mute
3663 * Mutes the DAI DAC.
3665 int snd_soc_dai_digital_mute(struct snd_soc_dai
*dai
, int mute
,
3671 if (dai
->driver
->ops
->mute_stream
)
3672 return dai
->driver
->ops
->mute_stream(dai
, mute
, direction
);
3673 else if (direction
== SNDRV_PCM_STREAM_PLAYBACK
&&
3674 dai
->driver
->ops
->digital_mute
)
3675 return dai
->driver
->ops
->digital_mute(dai
, mute
);
3679 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute
);
3682 * snd_soc_register_card - Register a card with the ASoC core
3684 * @card: Card to register
3687 int snd_soc_register_card(struct snd_soc_card
*card
)
3691 if (!card
->name
|| !card
->dev
)
3694 for (i
= 0; i
< card
->num_links
; i
++) {
3695 struct snd_soc_dai_link
*link
= &card
->dai_link
[i
];
3698 * Codec must be specified by 1 of name or OF node,
3699 * not both or neither.
3701 if (!!link
->codec_name
== !!link
->codec_of_node
) {
3703 "ASoC: Neither/both codec name/of_node are set for %s\n",
3707 /* Codec DAI name must be specified */
3708 if (!link
->codec_dai_name
) {
3710 "ASoC: codec_dai_name not set for %s\n",
3716 * Platform may be specified by either name or OF node, but
3717 * can be left unspecified, and a dummy platform will be used.
3719 if (link
->platform_name
&& link
->platform_of_node
) {
3721 "ASoC: Both platform name/of_node are set for %s\n",
3727 * CPU device may be specified by either name or OF node, but
3728 * can be left unspecified, and will be matched based on DAI
3731 if (link
->cpu_name
&& link
->cpu_of_node
) {
3733 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3738 * At least one of CPU DAI name or CPU device name/node must be
3741 if (!link
->cpu_dai_name
&&
3742 !(link
->cpu_name
|| link
->cpu_of_node
)) {
3744 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3750 dev_set_drvdata(card
->dev
, card
);
3752 snd_soc_initialize_card_lists(card
);
3754 soc_init_card_debugfs(card
);
3756 card
->rtd
= devm_kzalloc(card
->dev
,
3757 sizeof(struct snd_soc_pcm_runtime
) *
3758 (card
->num_links
+ card
->num_aux_devs
),
3760 if (card
->rtd
== NULL
)
3763 card
->rtd_aux
= &card
->rtd
[card
->num_links
];
3765 for (i
= 0; i
< card
->num_links
; i
++)
3766 card
->rtd
[i
].dai_link
= &card
->dai_link
[i
];
3768 INIT_LIST_HEAD(&card
->list
);
3769 INIT_LIST_HEAD(&card
->dapm_dirty
);
3770 card
->instantiated
= 0;
3771 mutex_init(&card
->mutex
);
3772 mutex_init(&card
->dapm_mutex
);
3774 ret
= snd_soc_instantiate_card(card
);
3776 soc_cleanup_card_debugfs(card
);
3780 EXPORT_SYMBOL_GPL(snd_soc_register_card
);
3783 * snd_soc_unregister_card - Unregister a card with the ASoC core
3785 * @card: Card to unregister
3788 int snd_soc_unregister_card(struct snd_soc_card
*card
)
3790 if (card
->instantiated
)
3791 soc_cleanup_card_resources(card
);
3792 dev_dbg(card
->dev
, "ASoC: Unregistered card '%s'\n", card
->name
);
3796 EXPORT_SYMBOL_GPL(snd_soc_unregister_card
);
3799 * Simplify DAI link configuration by removing ".-1" from device names
3800 * and sanitizing names.
3802 static char *fmt_single_name(struct device
*dev
, int *id
)
3804 char *found
, name
[NAME_SIZE
];
3807 if (dev_name(dev
) == NULL
)
3810 strlcpy(name
, dev_name(dev
), NAME_SIZE
);
3812 /* are we a "%s.%d" name (platform and SPI components) */
3813 found
= strstr(name
, dev
->driver
->name
);
3816 if (sscanf(&found
[strlen(dev
->driver
->name
)], ".%d", id
) == 1) {
3818 /* discard ID from name if ID == -1 */
3820 found
[strlen(dev
->driver
->name
)] = '\0';
3824 /* I2C component devices are named "bus-addr" */
3825 if (sscanf(name
, "%x-%x", &id1
, &id2
) == 2) {
3826 char tmp
[NAME_SIZE
];
3828 /* create unique ID number from I2C addr and bus */
3829 *id
= ((id1
& 0xffff) << 16) + id2
;
3831 /* sanitize component name for DAI link creation */
3832 snprintf(tmp
, NAME_SIZE
, "%s.%s", dev
->driver
->name
, name
);
3833 strlcpy(name
, tmp
, NAME_SIZE
);
3838 return kstrdup(name
, GFP_KERNEL
);
3842 * Simplify DAI link naming for single devices with multiple DAIs by removing
3843 * any ".-1" and using the DAI name (instead of device name).
3845 static inline char *fmt_multiple_name(struct device
*dev
,
3846 struct snd_soc_dai_driver
*dai_drv
)
3848 if (dai_drv
->name
== NULL
) {
3850 "ASoC: error - multiple DAI %s registered with no name\n",
3855 return kstrdup(dai_drv
->name
, GFP_KERNEL
);
3859 * snd_soc_register_dai - Register a DAI with the ASoC core
3861 * @dai: DAI to register
3863 static int snd_soc_register_dai(struct device
*dev
,
3864 struct snd_soc_dai_driver
*dai_drv
)
3866 struct snd_soc_codec
*codec
;
3867 struct snd_soc_dai
*dai
;
3869 dev_dbg(dev
, "ASoC: dai register %s\n", dev_name(dev
));
3871 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
3875 /* create DAI component name */
3876 dai
->name
= fmt_single_name(dev
, &dai
->id
);
3877 if (dai
->name
== NULL
) {
3883 dai
->driver
= dai_drv
;
3884 dai
->dapm
.dev
= dev
;
3885 if (!dai
->driver
->ops
)
3886 dai
->driver
->ops
= &null_dai_ops
;
3888 mutex_lock(&client_mutex
);
3890 list_for_each_entry(codec
, &codec_list
, list
) {
3891 if (codec
->dev
== dev
) {
3892 dev_dbg(dev
, "ASoC: Mapped DAI %s to CODEC %s\n",
3893 dai
->name
, codec
->name
);
3900 dai
->dapm
.idle_bias_off
= 1;
3902 list_add(&dai
->list
, &dai_list
);
3904 mutex_unlock(&client_mutex
);
3906 dev_dbg(dev
, "ASoC: Registered DAI '%s'\n", dai
->name
);
3912 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3914 * @dai: DAI to unregister
3916 static void snd_soc_unregister_dai(struct device
*dev
)
3918 struct snd_soc_dai
*dai
;
3920 list_for_each_entry(dai
, &dai_list
, list
) {
3921 if (dev
== dai
->dev
)
3927 mutex_lock(&client_mutex
);
3928 list_del(&dai
->list
);
3929 mutex_unlock(&client_mutex
);
3931 dev_dbg(dev
, "ASoC: Unregistered DAI '%s'\n", dai
->name
);
3937 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3939 * @dai: Array of DAIs to register
3940 * @count: Number of DAIs
3942 static int snd_soc_register_dais(struct device
*dev
,
3943 struct snd_soc_dai_driver
*dai_drv
, size_t count
)
3945 struct snd_soc_codec
*codec
;
3946 struct snd_soc_dai
*dai
;
3949 dev_dbg(dev
, "ASoC: dai register %s #%Zu\n", dev_name(dev
), count
);
3951 for (i
= 0; i
< count
; i
++) {
3953 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
3959 /* create DAI component name */
3960 dai
->name
= fmt_multiple_name(dev
, &dai_drv
[i
]);
3961 if (dai
->name
== NULL
) {
3968 dai
->driver
= &dai_drv
[i
];
3969 if (dai
->driver
->id
)
3970 dai
->id
= dai
->driver
->id
;
3973 dai
->dapm
.dev
= dev
;
3974 if (!dai
->driver
->ops
)
3975 dai
->driver
->ops
= &null_dai_ops
;
3977 mutex_lock(&client_mutex
);
3979 list_for_each_entry(codec
, &codec_list
, list
) {
3980 if (codec
->dev
== dev
) {
3982 "ASoC: Mapped DAI %s to CODEC %s\n",
3983 dai
->name
, codec
->name
);
3990 dai
->dapm
.idle_bias_off
= 1;
3992 list_add(&dai
->list
, &dai_list
);
3994 mutex_unlock(&client_mutex
);
3996 dev_dbg(dai
->dev
, "ASoC: Registered DAI '%s'\n", dai
->name
);
4002 for (i
--; i
>= 0; i
--)
4003 snd_soc_unregister_dai(dev
);
4009 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
4011 * @dai: Array of DAIs to unregister
4012 * @count: Number of DAIs
4014 static void snd_soc_unregister_dais(struct device
*dev
, size_t count
)
4018 for (i
= 0; i
< count
; i
++)
4019 snd_soc_unregister_dai(dev
);
4023 * snd_soc_add_platform - Add a platform to the ASoC core
4024 * @dev: The parent device for the platform
4025 * @platform: The platform to add
4026 * @platform_driver: The driver for the platform
4028 int snd_soc_add_platform(struct device
*dev
, struct snd_soc_platform
*platform
,
4029 const struct snd_soc_platform_driver
*platform_drv
)
4031 /* create platform component name */
4032 platform
->name
= fmt_single_name(dev
, &platform
->id
);
4033 if (platform
->name
== NULL
)
4036 platform
->dev
= dev
;
4037 platform
->driver
= platform_drv
;
4038 platform
->dapm
.dev
= dev
;
4039 platform
->dapm
.platform
= platform
;
4040 platform
->dapm
.stream_event
= platform_drv
->stream_event
;
4041 mutex_init(&platform
->mutex
);
4043 mutex_lock(&client_mutex
);
4044 list_add(&platform
->list
, &platform_list
);
4045 mutex_unlock(&client_mutex
);
4047 dev_dbg(dev
, "ASoC: Registered platform '%s'\n", platform
->name
);
4051 EXPORT_SYMBOL_GPL(snd_soc_add_platform
);
4054 * snd_soc_register_platform - Register a platform with the ASoC core
4056 * @platform: platform to register
4058 int snd_soc_register_platform(struct device
*dev
,
4059 const struct snd_soc_platform_driver
*platform_drv
)
4061 struct snd_soc_platform
*platform
;
4064 dev_dbg(dev
, "ASoC: platform register %s\n", dev_name(dev
));
4066 platform
= kzalloc(sizeof(struct snd_soc_platform
), GFP_KERNEL
);
4067 if (platform
== NULL
)
4070 ret
= snd_soc_add_platform(dev
, platform
, platform_drv
);
4076 EXPORT_SYMBOL_GPL(snd_soc_register_platform
);
4079 * snd_soc_remove_platform - Remove a platform from the ASoC core
4080 * @platform: the platform to remove
4082 void snd_soc_remove_platform(struct snd_soc_platform
*platform
)
4084 mutex_lock(&client_mutex
);
4085 list_del(&platform
->list
);
4086 mutex_unlock(&client_mutex
);
4088 dev_dbg(platform
->dev
, "ASoC: Unregistered platform '%s'\n",
4090 kfree(platform
->name
);
4092 EXPORT_SYMBOL_GPL(snd_soc_remove_platform
);
4094 struct snd_soc_platform
*snd_soc_lookup_platform(struct device
*dev
)
4096 struct snd_soc_platform
*platform
;
4098 list_for_each_entry(platform
, &platform_list
, list
) {
4099 if (dev
== platform
->dev
)
4105 EXPORT_SYMBOL_GPL(snd_soc_lookup_platform
);
4108 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4110 * @platform: platform to unregister
4112 void snd_soc_unregister_platform(struct device
*dev
)
4114 struct snd_soc_platform
*platform
;
4116 platform
= snd_soc_lookup_platform(dev
);
4120 snd_soc_remove_platform(platform
);
4123 EXPORT_SYMBOL_GPL(snd_soc_unregister_platform
);
4125 static u64 codec_format_map
[] = {
4126 SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
,
4127 SNDRV_PCM_FMTBIT_U16_LE
| SNDRV_PCM_FMTBIT_U16_BE
,
4128 SNDRV_PCM_FMTBIT_S24_LE
| SNDRV_PCM_FMTBIT_S24_BE
,
4129 SNDRV_PCM_FMTBIT_U24_LE
| SNDRV_PCM_FMTBIT_U24_BE
,
4130 SNDRV_PCM_FMTBIT_S32_LE
| SNDRV_PCM_FMTBIT_S32_BE
,
4131 SNDRV_PCM_FMTBIT_U32_LE
| SNDRV_PCM_FMTBIT_U32_BE
,
4132 SNDRV_PCM_FMTBIT_S24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
4133 SNDRV_PCM_FMTBIT_U24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
4134 SNDRV_PCM_FMTBIT_S20_3LE
| SNDRV_PCM_FMTBIT_S20_3BE
,
4135 SNDRV_PCM_FMTBIT_U20_3LE
| SNDRV_PCM_FMTBIT_U20_3BE
,
4136 SNDRV_PCM_FMTBIT_S18_3LE
| SNDRV_PCM_FMTBIT_S18_3BE
,
4137 SNDRV_PCM_FMTBIT_U18_3LE
| SNDRV_PCM_FMTBIT_U18_3BE
,
4138 SNDRV_PCM_FMTBIT_FLOAT_LE
| SNDRV_PCM_FMTBIT_FLOAT_BE
,
4139 SNDRV_PCM_FMTBIT_FLOAT64_LE
| SNDRV_PCM_FMTBIT_FLOAT64_BE
,
4140 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4141 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE
,
4144 /* Fix up the DAI formats for endianness: codecs don't actually see
4145 * the endianness of the data but we're using the CPU format
4146 * definitions which do need to include endianness so we ensure that
4147 * codec DAIs always have both big and little endian variants set.
4149 static void fixup_codec_formats(struct snd_soc_pcm_stream
*stream
)
4153 for (i
= 0; i
< ARRAY_SIZE(codec_format_map
); i
++)
4154 if (stream
->formats
& codec_format_map
[i
])
4155 stream
->formats
|= codec_format_map
[i
];
4159 * snd_soc_register_codec - Register a codec with the ASoC core
4161 * @codec: codec to register
4163 int snd_soc_register_codec(struct device
*dev
,
4164 const struct snd_soc_codec_driver
*codec_drv
,
4165 struct snd_soc_dai_driver
*dai_drv
,
4169 struct snd_soc_codec
*codec
;
4172 dev_dbg(dev
, "codec register %s\n", dev_name(dev
));
4174 codec
= kzalloc(sizeof(struct snd_soc_codec
), GFP_KERNEL
);
4178 /* create CODEC component name */
4179 codec
->name
= fmt_single_name(dev
, &codec
->id
);
4180 if (codec
->name
== NULL
) {
4185 if (codec_drv
->compress_type
)
4186 codec
->compress_type
= codec_drv
->compress_type
;
4188 codec
->compress_type
= SND_SOC_FLAT_COMPRESSION
;
4190 codec
->write
= codec_drv
->write
;
4191 codec
->read
= codec_drv
->read
;
4192 codec
->volatile_register
= codec_drv
->volatile_register
;
4193 codec
->readable_register
= codec_drv
->readable_register
;
4194 codec
->writable_register
= codec_drv
->writable_register
;
4195 codec
->ignore_pmdown_time
= codec_drv
->ignore_pmdown_time
;
4196 codec
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
4197 codec
->dapm
.dev
= dev
;
4198 codec
->dapm
.codec
= codec
;
4199 codec
->dapm
.seq_notifier
= codec_drv
->seq_notifier
;
4200 codec
->dapm
.stream_event
= codec_drv
->stream_event
;
4202 codec
->driver
= codec_drv
;
4203 codec
->num_dai
= num_dai
;
4204 mutex_init(&codec
->mutex
);
4206 /* allocate CODEC register cache */
4207 if (codec_drv
->reg_cache_size
&& codec_drv
->reg_word_size
) {
4208 reg_size
= codec_drv
->reg_cache_size
* codec_drv
->reg_word_size
;
4209 codec
->reg_size
= reg_size
;
4210 /* it is necessary to make a copy of the default register cache
4211 * because in the case of using a compression type that requires
4212 * the default register cache to be marked as the
4213 * kernel might have freed the array by the time we initialize
4216 if (codec_drv
->reg_cache_default
) {
4217 codec
->reg_def_copy
= kmemdup(codec_drv
->reg_cache_default
,
4218 reg_size
, GFP_KERNEL
);
4219 if (!codec
->reg_def_copy
) {
4221 goto fail_codec_name
;
4226 if (codec_drv
->reg_access_size
&& codec_drv
->reg_access_default
) {
4227 if (!codec
->volatile_register
)
4228 codec
->volatile_register
= snd_soc_default_volatile_register
;
4229 if (!codec
->readable_register
)
4230 codec
->readable_register
= snd_soc_default_readable_register
;
4231 if (!codec
->writable_register
)
4232 codec
->writable_register
= snd_soc_default_writable_register
;
4235 for (i
= 0; i
< num_dai
; i
++) {
4236 fixup_codec_formats(&dai_drv
[i
].playback
);
4237 fixup_codec_formats(&dai_drv
[i
].capture
);
4240 mutex_lock(&client_mutex
);
4241 list_add(&codec
->list
, &codec_list
);
4242 mutex_unlock(&client_mutex
);
4244 /* register any DAIs */
4245 ret
= snd_soc_register_dais(dev
, dai_drv
, num_dai
);
4247 dev_err(codec
->dev
, "ASoC: Failed to regster DAIs: %d\n", ret
);
4248 goto fail_codec_name
;
4251 dev_dbg(codec
->dev
, "ASoC: Registered codec '%s'\n", codec
->name
);
4255 mutex_lock(&client_mutex
);
4256 list_del(&codec
->list
);
4257 mutex_unlock(&client_mutex
);
4264 EXPORT_SYMBOL_GPL(snd_soc_register_codec
);
4267 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4269 * @codec: codec to unregister
4271 void snd_soc_unregister_codec(struct device
*dev
)
4273 struct snd_soc_codec
*codec
;
4275 list_for_each_entry(codec
, &codec_list
, list
) {
4276 if (dev
== codec
->dev
)
4282 snd_soc_unregister_dais(dev
, codec
->num_dai
);
4284 mutex_lock(&client_mutex
);
4285 list_del(&codec
->list
);
4286 mutex_unlock(&client_mutex
);
4288 dev_dbg(codec
->dev
, "ASoC: Unregistered codec '%s'\n", codec
->name
);
4290 snd_soc_cache_exit(codec
);
4291 kfree(codec
->reg_def_copy
);
4295 EXPORT_SYMBOL_GPL(snd_soc_unregister_codec
);
4299 * snd_soc_register_component - Register a component with the ASoC core
4302 int snd_soc_register_component(struct device
*dev
,
4303 const struct snd_soc_component_driver
*cmpnt_drv
,
4304 struct snd_soc_dai_driver
*dai_drv
,
4307 struct snd_soc_component
*cmpnt
;
4310 dev_dbg(dev
, "component register %s\n", dev_name(dev
));
4312 cmpnt
= devm_kzalloc(dev
, sizeof(*cmpnt
), GFP_KERNEL
);
4314 dev_err(dev
, "ASoC: Failed to allocate memory\n");
4318 cmpnt
->name
= fmt_single_name(dev
, &cmpnt
->id
);
4320 dev_err(dev
, "ASoC: Failed to simplifying name\n");
4325 cmpnt
->driver
= cmpnt_drv
;
4326 cmpnt
->num_dai
= num_dai
;
4329 * snd_soc_register_dai() uses fmt_single_name(), and
4330 * snd_soc_register_dais() uses fmt_multiple_name()
4331 * for dai->name which is used for name based matching
4334 ret
= snd_soc_register_dai(dev
, dai_drv
);
4336 ret
= snd_soc_register_dais(dev
, dai_drv
, num_dai
);
4338 dev_err(dev
, "ASoC: Failed to regster DAIs: %d\n", ret
);
4339 goto error_component_name
;
4342 mutex_lock(&client_mutex
);
4343 list_add(&cmpnt
->list
, &component_list
);
4344 mutex_unlock(&client_mutex
);
4346 dev_dbg(cmpnt
->dev
, "ASoC: Registered component '%s'\n", cmpnt
->name
);
4350 error_component_name
:
4355 EXPORT_SYMBOL_GPL(snd_soc_register_component
);
4358 * snd_soc_unregister_component - Unregister a component from the ASoC core
4361 void snd_soc_unregister_component(struct device
*dev
)
4363 struct snd_soc_component
*cmpnt
;
4365 list_for_each_entry(cmpnt
, &component_list
, list
) {
4366 if (dev
== cmpnt
->dev
)
4372 snd_soc_unregister_dais(dev
, cmpnt
->num_dai
);
4374 mutex_lock(&client_mutex
);
4375 list_del(&cmpnt
->list
);
4376 mutex_unlock(&client_mutex
);
4378 dev_dbg(dev
, "ASoC: Unregistered component '%s'\n", cmpnt
->name
);
4381 EXPORT_SYMBOL_GPL(snd_soc_unregister_component
);
4383 /* Retrieve a card's name from device tree */
4384 int snd_soc_of_parse_card_name(struct snd_soc_card
*card
,
4385 const char *propname
)
4387 struct device_node
*np
= card
->dev
->of_node
;
4390 ret
= of_property_read_string_index(np
, propname
, 0, &card
->name
);
4392 * EINVAL means the property does not exist. This is fine providing
4393 * card->name was previously set, which is checked later in
4394 * snd_soc_register_card.
4396 if (ret
< 0 && ret
!= -EINVAL
) {
4398 "ASoC: Property '%s' could not be read: %d\n",
4405 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name
);
4407 int snd_soc_of_parse_audio_routing(struct snd_soc_card
*card
,
4408 const char *propname
)
4410 struct device_node
*np
= card
->dev
->of_node
;
4412 struct snd_soc_dapm_route
*routes
;
4415 num_routes
= of_property_count_strings(np
, propname
);
4416 if (num_routes
< 0 || num_routes
& 1) {
4418 "ASoC: Property '%s' does not exist or its length is not even\n",
4424 dev_err(card
->dev
, "ASoC: Property '%s's length is zero\n",
4429 routes
= devm_kzalloc(card
->dev
, num_routes
* sizeof(*routes
),
4433 "ASoC: Could not allocate DAPM route table\n");
4437 for (i
= 0; i
< num_routes
; i
++) {
4438 ret
= of_property_read_string_index(np
, propname
,
4439 2 * i
, &routes
[i
].sink
);
4442 "ASoC: Property '%s' index %d could not be read: %d\n",
4443 propname
, 2 * i
, ret
);
4446 ret
= of_property_read_string_index(np
, propname
,
4447 (2 * i
) + 1, &routes
[i
].source
);
4450 "ASoC: Property '%s' index %d could not be read: %d\n",
4451 propname
, (2 * i
) + 1, ret
);
4456 card
->num_dapm_routes
= num_routes
;
4457 card
->dapm_routes
= routes
;
4461 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing
);
4463 unsigned int snd_soc_of_parse_daifmt(struct device_node
*np
,
4468 unsigned int format
= 0;
4474 } of_fmt_table
[] = {
4475 { "i2s", SND_SOC_DAIFMT_I2S
},
4476 { "right_j", SND_SOC_DAIFMT_RIGHT_J
},
4477 { "left_j", SND_SOC_DAIFMT_LEFT_J
},
4478 { "dsp_a", SND_SOC_DAIFMT_DSP_A
},
4479 { "dsp_b", SND_SOC_DAIFMT_DSP_B
},
4480 { "ac97", SND_SOC_DAIFMT_AC97
},
4481 { "pdm", SND_SOC_DAIFMT_PDM
},
4482 { "msb", SND_SOC_DAIFMT_MSB
},
4483 { "lsb", SND_SOC_DAIFMT_LSB
},
4490 * check "[prefix]format = xxx"
4491 * SND_SOC_DAIFMT_FORMAT_MASK area
4493 snprintf(prop
, sizeof(prop
), "%sformat", prefix
);
4494 ret
= of_property_read_string(np
, prop
, &str
);
4496 for (i
= 0; i
< ARRAY_SIZE(of_fmt_table
); i
++) {
4497 if (strcmp(str
, of_fmt_table
[i
].name
) == 0) {
4498 format
|= of_fmt_table
[i
].val
;
4505 * check "[prefix]continuous-clock"
4506 * SND_SOC_DAIFMT_CLOCK_MASK area
4508 snprintf(prop
, sizeof(prop
), "%scontinuous-clock", prefix
);
4509 if (of_get_property(np
, prop
, NULL
))
4510 format
|= SND_SOC_DAIFMT_CONT
;
4512 format
|= SND_SOC_DAIFMT_GATED
;
4515 * check "[prefix]bitclock-inversion"
4516 * check "[prefix]frame-inversion"
4517 * SND_SOC_DAIFMT_INV_MASK area
4519 snprintf(prop
, sizeof(prop
), "%sbitclock-inversion", prefix
);
4520 bit
= !!of_get_property(np
, prop
, NULL
);
4522 snprintf(prop
, sizeof(prop
), "%sframe-inversion", prefix
);
4523 frame
= !!of_get_property(np
, prop
, NULL
);
4525 switch ((bit
<< 4) + frame
) {
4527 format
|= SND_SOC_DAIFMT_IB_IF
;
4530 format
|= SND_SOC_DAIFMT_IB_NF
;
4533 format
|= SND_SOC_DAIFMT_NB_IF
;
4536 /* SND_SOC_DAIFMT_NB_NF is default */
4541 * check "[prefix]bitclock-master"
4542 * check "[prefix]frame-master"
4543 * SND_SOC_DAIFMT_MASTER_MASK area
4545 snprintf(prop
, sizeof(prop
), "%sbitclock-master", prefix
);
4546 bit
= !!of_get_property(np
, prop
, NULL
);
4548 snprintf(prop
, sizeof(prop
), "%sframe-master", prefix
);
4549 frame
= !!of_get_property(np
, prop
, NULL
);
4551 switch ((bit
<< 4) + frame
) {
4553 format
|= SND_SOC_DAIFMT_CBM_CFM
;
4556 format
|= SND_SOC_DAIFMT_CBM_CFS
;
4559 format
|= SND_SOC_DAIFMT_CBS_CFM
;
4562 format
|= SND_SOC_DAIFMT_CBS_CFS
;
4568 EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt
);
4570 static int __init
snd_soc_init(void)
4572 #ifdef CONFIG_DEBUG_FS
4573 snd_soc_debugfs_root
= debugfs_create_dir("asoc", NULL
);
4574 if (IS_ERR(snd_soc_debugfs_root
) || !snd_soc_debugfs_root
) {
4575 pr_warn("ASoC: Failed to create debugfs directory\n");
4576 snd_soc_debugfs_root
= NULL
;
4579 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root
, NULL
,
4581 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4583 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root
, NULL
,
4585 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
4587 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root
, NULL
,
4588 &platform_list_fops
))
4589 pr_warn("ASoC: Failed to create platform list debugfs file\n");
4592 snd_soc_util_init();
4594 return platform_driver_register(&soc_driver
);
4596 module_init(snd_soc_init
);
4598 static void __exit
snd_soc_exit(void)
4600 snd_soc_util_exit();
4602 #ifdef CONFIG_DEBUG_FS
4603 debugfs_remove_recursive(snd_soc_debugfs_root
);
4605 platform_driver_unregister(&soc_driver
);
4607 module_exit(snd_soc_exit
);
4609 /* Module information */
4610 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4611 MODULE_DESCRIPTION("ALSA SoC Core");
4612 MODULE_LICENSE("GPL");
4613 MODULE_ALIAS("platform:soc-audio");