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/dmi.h>
38 #include <sound/core.h>
39 #include <sound/jack.h>
40 #include <sound/pcm.h>
41 #include <sound/pcm_params.h>
42 #include <sound/soc.h>
43 #include <sound/soc-dpcm.h>
44 #include <sound/soc-topology.h>
45 #include <sound/initval.h>
47 #define CREATE_TRACE_POINTS
48 #include <trace/events/asoc.h>
52 #ifdef CONFIG_DEBUG_FS
53 struct dentry
*snd_soc_debugfs_root
;
54 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root
);
57 static DEFINE_MUTEX(client_mutex
);
58 static LIST_HEAD(platform_list
);
59 static LIST_HEAD(codec_list
);
60 static LIST_HEAD(component_list
);
63 * This is a timeout to do a DAPM powerdown after a stream is closed().
64 * It can be used to eliminate pops between different playback streams, e.g.
65 * between two audio tracks.
67 static int pmdown_time
= 5000;
68 module_param(pmdown_time
, int, 0);
69 MODULE_PARM_DESC(pmdown_time
, "DAPM stream powerdown time (msecs)");
71 /* returns the minimum number of bytes needed to represent
72 * a particular given value */
73 static int min_bytes_needed(unsigned long val
)
78 for (i
= (sizeof val
* 8) - 1; i
>= 0; --i
, ++c
)
81 c
= (sizeof val
* 8) - c
;
89 /* fill buf which is 'len' bytes with a formatted
90 * string of the form 'reg: value\n' */
91 static int format_register_str(struct snd_soc_codec
*codec
,
92 unsigned int reg
, char *buf
, size_t len
)
94 int wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
95 int regsize
= codec
->driver
->reg_word_size
* 2;
98 /* +2 for ': ' and + 1 for '\n' */
99 if (wordsize
+ regsize
+ 2 + 1 != len
)
102 sprintf(buf
, "%.*x: ", wordsize
, reg
);
105 ret
= snd_soc_read(codec
, reg
);
107 memset(buf
, 'X', regsize
);
109 sprintf(buf
, "%.*x", regsize
, ret
);
111 /* no NUL-termination needed */
115 /* codec register dump */
116 static ssize_t
soc_codec_reg_show(struct snd_soc_codec
*codec
, char *buf
,
117 size_t count
, loff_t pos
)
120 int wordsize
, regsize
;
125 wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
126 regsize
= codec
->driver
->reg_word_size
* 2;
128 len
= wordsize
+ regsize
+ 2 + 1;
130 if (!codec
->driver
->reg_cache_size
)
133 if (codec
->driver
->reg_cache_step
)
134 step
= codec
->driver
->reg_cache_step
;
136 for (i
= 0; i
< codec
->driver
->reg_cache_size
; i
+= step
) {
137 /* only support larger than PAGE_SIZE bytes debugfs
138 * entries for the default case */
140 if (total
+ len
>= count
- 1)
142 format_register_str(codec
, i
, buf
+ total
, len
);
148 total
= min(total
, count
- 1);
153 static ssize_t
codec_reg_show(struct device
*dev
,
154 struct device_attribute
*attr
, char *buf
)
156 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
158 return soc_codec_reg_show(rtd
->codec
, buf
, PAGE_SIZE
, 0);
161 static DEVICE_ATTR(codec_reg
, 0444, codec_reg_show
, NULL
);
163 static ssize_t
pmdown_time_show(struct device
*dev
,
164 struct device_attribute
*attr
, char *buf
)
166 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
168 return sprintf(buf
, "%ld\n", rtd
->pmdown_time
);
171 static ssize_t
pmdown_time_set(struct device
*dev
,
172 struct device_attribute
*attr
,
173 const char *buf
, size_t count
)
175 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
178 ret
= kstrtol(buf
, 10, &rtd
->pmdown_time
);
185 static DEVICE_ATTR(pmdown_time
, 0644, pmdown_time_show
, pmdown_time_set
);
187 static struct attribute
*soc_dev_attrs
[] = {
188 &dev_attr_codec_reg
.attr
,
189 &dev_attr_pmdown_time
.attr
,
193 static umode_t
soc_dev_attr_is_visible(struct kobject
*kobj
,
194 struct attribute
*attr
, int idx
)
196 struct device
*dev
= kobj_to_dev(kobj
);
197 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
199 if (attr
== &dev_attr_pmdown_time
.attr
)
200 return attr
->mode
; /* always visible */
201 return rtd
->codec
? attr
->mode
: 0; /* enabled only with codec */
204 static const struct attribute_group soc_dapm_dev_group
= {
205 .attrs
= soc_dapm_dev_attrs
,
206 .is_visible
= soc_dev_attr_is_visible
,
209 static const struct attribute_group soc_dev_roup
= {
210 .attrs
= soc_dev_attrs
,
211 .is_visible
= soc_dev_attr_is_visible
,
214 static const struct attribute_group
*soc_dev_attr_groups
[] = {
220 #ifdef CONFIG_DEBUG_FS
221 static ssize_t
codec_reg_read_file(struct file
*file
, char __user
*user_buf
,
222 size_t count
, loff_t
*ppos
)
225 struct snd_soc_codec
*codec
= file
->private_data
;
228 if (*ppos
< 0 || !count
)
231 buf
= kmalloc(count
, GFP_KERNEL
);
235 ret
= soc_codec_reg_show(codec
, buf
, count
, *ppos
);
237 if (copy_to_user(user_buf
, buf
, ret
)) {
248 static ssize_t
codec_reg_write_file(struct file
*file
,
249 const char __user
*user_buf
, size_t count
, loff_t
*ppos
)
254 unsigned long reg
, value
;
255 struct snd_soc_codec
*codec
= file
->private_data
;
258 buf_size
= min(count
, (sizeof(buf
)-1));
259 if (copy_from_user(buf
, user_buf
, buf_size
))
263 while (*start
== ' ')
265 reg
= simple_strtoul(start
, &start
, 16);
266 while (*start
== ' ')
268 ret
= kstrtoul(start
, 16, &value
);
272 /* Userspace has been fiddling around behind the kernel's back */
273 add_taint(TAINT_USER
, LOCKDEP_NOW_UNRELIABLE
);
275 snd_soc_write(codec
, reg
, value
);
279 static const struct file_operations codec_reg_fops
= {
281 .read
= codec_reg_read_file
,
282 .write
= codec_reg_write_file
,
283 .llseek
= default_llseek
,
286 static void soc_init_component_debugfs(struct snd_soc_component
*component
)
288 if (!component
->card
->debugfs_card_root
)
291 if (component
->debugfs_prefix
) {
294 name
= kasprintf(GFP_KERNEL
, "%s:%s",
295 component
->debugfs_prefix
, component
->name
);
297 component
->debugfs_root
= debugfs_create_dir(name
,
298 component
->card
->debugfs_card_root
);
302 component
->debugfs_root
= debugfs_create_dir(component
->name
,
303 component
->card
->debugfs_card_root
);
306 if (!component
->debugfs_root
) {
307 dev_warn(component
->dev
,
308 "ASoC: Failed to create component debugfs directory\n");
312 snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component
),
313 component
->debugfs_root
);
315 if (component
->init_debugfs
)
316 component
->init_debugfs(component
);
319 static void soc_cleanup_component_debugfs(struct snd_soc_component
*component
)
321 debugfs_remove_recursive(component
->debugfs_root
);
324 static void soc_init_codec_debugfs(struct snd_soc_component
*component
)
326 struct snd_soc_codec
*codec
= snd_soc_component_to_codec(component
);
328 codec
->debugfs_reg
= debugfs_create_file("codec_reg", 0644,
329 codec
->component
.debugfs_root
,
330 codec
, &codec_reg_fops
);
331 if (!codec
->debugfs_reg
)
333 "ASoC: Failed to create codec register debugfs file\n");
336 static ssize_t
codec_list_read_file(struct file
*file
, char __user
*user_buf
,
337 size_t count
, loff_t
*ppos
)
339 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
340 ssize_t len
, ret
= 0;
341 struct snd_soc_codec
*codec
;
346 mutex_lock(&client_mutex
);
348 list_for_each_entry(codec
, &codec_list
, list
) {
349 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
350 codec
->component
.name
);
353 if (ret
> PAGE_SIZE
) {
359 mutex_unlock(&client_mutex
);
362 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
369 static const struct file_operations codec_list_fops
= {
370 .read
= codec_list_read_file
,
371 .llseek
= default_llseek
,/* read accesses f_pos */
374 static ssize_t
dai_list_read_file(struct file
*file
, char __user
*user_buf
,
375 size_t count
, loff_t
*ppos
)
377 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
378 ssize_t len
, ret
= 0;
379 struct snd_soc_component
*component
;
380 struct snd_soc_dai
*dai
;
385 mutex_lock(&client_mutex
);
387 list_for_each_entry(component
, &component_list
, list
) {
388 list_for_each_entry(dai
, &component
->dai_list
, list
) {
389 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
393 if (ret
> PAGE_SIZE
) {
400 mutex_unlock(&client_mutex
);
402 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
409 static const struct file_operations dai_list_fops
= {
410 .read
= dai_list_read_file
,
411 .llseek
= default_llseek
,/* read accesses f_pos */
414 static ssize_t
platform_list_read_file(struct file
*file
,
415 char __user
*user_buf
,
416 size_t count
, loff_t
*ppos
)
418 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
419 ssize_t len
, ret
= 0;
420 struct snd_soc_platform
*platform
;
425 mutex_lock(&client_mutex
);
427 list_for_each_entry(platform
, &platform_list
, list
) {
428 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
429 platform
->component
.name
);
432 if (ret
> PAGE_SIZE
) {
438 mutex_unlock(&client_mutex
);
440 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
447 static const struct file_operations platform_list_fops
= {
448 .read
= platform_list_read_file
,
449 .llseek
= default_llseek
,/* read accesses f_pos */
452 static void soc_init_card_debugfs(struct snd_soc_card
*card
)
454 if (!snd_soc_debugfs_root
)
457 card
->debugfs_card_root
= debugfs_create_dir(card
->name
,
458 snd_soc_debugfs_root
);
459 if (!card
->debugfs_card_root
) {
461 "ASoC: Failed to create card debugfs directory\n");
465 card
->debugfs_pop_time
= debugfs_create_u32("dapm_pop_time", 0644,
466 card
->debugfs_card_root
,
468 if (!card
->debugfs_pop_time
)
470 "ASoC: Failed to create pop time debugfs file\n");
473 static void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
475 debugfs_remove_recursive(card
->debugfs_card_root
);
479 static void snd_soc_debugfs_init(void)
481 snd_soc_debugfs_root
= debugfs_create_dir("asoc", NULL
);
482 if (IS_ERR(snd_soc_debugfs_root
) || !snd_soc_debugfs_root
) {
483 pr_warn("ASoC: Failed to create debugfs directory\n");
484 snd_soc_debugfs_root
= NULL
;
488 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root
, NULL
,
490 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
492 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root
, NULL
,
494 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
496 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root
, NULL
,
497 &platform_list_fops
))
498 pr_warn("ASoC: Failed to create platform list debugfs file\n");
501 static void snd_soc_debugfs_exit(void)
503 debugfs_remove_recursive(snd_soc_debugfs_root
);
508 #define soc_init_codec_debugfs NULL
510 static inline void soc_init_component_debugfs(
511 struct snd_soc_component
*component
)
515 static inline void soc_cleanup_component_debugfs(
516 struct snd_soc_component
*component
)
520 static inline void soc_init_card_debugfs(struct snd_soc_card
*card
)
524 static inline void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
528 static inline void snd_soc_debugfs_init(void)
532 static inline void snd_soc_debugfs_exit(void)
538 struct snd_pcm_substream
*snd_soc_get_dai_substream(struct snd_soc_card
*card
,
539 const char *dai_link
, int stream
)
541 struct snd_soc_pcm_runtime
*rtd
;
543 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
544 if (rtd
->dai_link
->no_pcm
&&
545 !strcmp(rtd
->dai_link
->name
, dai_link
))
546 return rtd
->pcm
->streams
[stream
].substream
;
548 dev_dbg(card
->dev
, "ASoC: failed to find dai link %s\n", dai_link
);
551 EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream
);
553 static struct snd_soc_pcm_runtime
*soc_new_pcm_runtime(
554 struct snd_soc_card
*card
, struct snd_soc_dai_link
*dai_link
)
556 struct snd_soc_pcm_runtime
*rtd
;
558 rtd
= kzalloc(sizeof(struct snd_soc_pcm_runtime
), GFP_KERNEL
);
563 rtd
->dai_link
= dai_link
;
564 rtd
->codec_dais
= kzalloc(sizeof(struct snd_soc_dai
*) *
565 dai_link
->num_codecs
,
567 if (!rtd
->codec_dais
) {
575 static void soc_free_pcm_runtime(struct snd_soc_pcm_runtime
*rtd
)
577 if (rtd
&& rtd
->codec_dais
)
578 kfree(rtd
->codec_dais
);
582 static void soc_add_pcm_runtime(struct snd_soc_card
*card
,
583 struct snd_soc_pcm_runtime
*rtd
)
585 list_add_tail(&rtd
->list
, &card
->rtd_list
);
586 rtd
->num
= card
->num_rtd
;
590 static void soc_remove_pcm_runtimes(struct snd_soc_card
*card
)
592 struct snd_soc_pcm_runtime
*rtd
, *_rtd
;
594 list_for_each_entry_safe(rtd
, _rtd
, &card
->rtd_list
, list
) {
595 list_del(&rtd
->list
);
596 soc_free_pcm_runtime(rtd
);
602 struct snd_soc_pcm_runtime
*snd_soc_get_pcm_runtime(struct snd_soc_card
*card
,
603 const char *dai_link
)
605 struct snd_soc_pcm_runtime
*rtd
;
607 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
608 if (!strcmp(rtd
->dai_link
->name
, dai_link
))
611 dev_dbg(card
->dev
, "ASoC: failed to find rtd %s\n", dai_link
);
614 EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime
);
616 static void codec2codec_close_delayed_work(struct work_struct
*work
)
618 /* Currently nothing to do for c2c links
619 * Since c2c links are internal nodes in the DAPM graph and
620 * don't interface with the outside world or application layer
621 * we don't have to do any special handling on close.
625 #ifdef CONFIG_PM_SLEEP
626 /* powers down audio subsystem for suspend */
627 int snd_soc_suspend(struct device
*dev
)
629 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
630 struct snd_soc_component
*component
;
631 struct snd_soc_pcm_runtime
*rtd
;
634 /* If the card is not initialized yet there is nothing to do */
635 if (!card
->instantiated
)
638 /* Due to the resume being scheduled into a workqueue we could
639 * suspend before that's finished - wait for it to complete.
641 snd_power_lock(card
->snd_card
);
642 snd_power_wait(card
->snd_card
, SNDRV_CTL_POWER_D0
);
643 snd_power_unlock(card
->snd_card
);
645 /* we're going to block userspace touching us until resume completes */
646 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D3hot
);
648 /* mute any active DACs */
649 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
651 if (rtd
->dai_link
->ignore_suspend
)
654 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
655 struct snd_soc_dai
*dai
= rtd
->codec_dais
[i
];
656 struct snd_soc_dai_driver
*drv
= dai
->driver
;
658 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
659 drv
->ops
->digital_mute(dai
, 1);
663 /* suspend all pcms */
664 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
665 if (rtd
->dai_link
->ignore_suspend
)
668 snd_pcm_suspend_all(rtd
->pcm
);
671 if (card
->suspend_pre
)
672 card
->suspend_pre(card
);
674 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
675 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
677 if (rtd
->dai_link
->ignore_suspend
)
680 if (cpu_dai
->driver
->suspend
&& !cpu_dai
->driver
->bus_control
)
681 cpu_dai
->driver
->suspend(cpu_dai
);
684 /* close any waiting streams */
685 list_for_each_entry(rtd
, &card
->rtd_list
, list
)
686 flush_delayed_work(&rtd
->delayed_work
);
688 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
690 if (rtd
->dai_link
->ignore_suspend
)
693 snd_soc_dapm_stream_event(rtd
,
694 SNDRV_PCM_STREAM_PLAYBACK
,
695 SND_SOC_DAPM_STREAM_SUSPEND
);
697 snd_soc_dapm_stream_event(rtd
,
698 SNDRV_PCM_STREAM_CAPTURE
,
699 SND_SOC_DAPM_STREAM_SUSPEND
);
702 /* Recheck all endpoints too, their state is affected by suspend */
703 dapm_mark_endpoints_dirty(card
);
704 snd_soc_dapm_sync(&card
->dapm
);
706 /* suspend all COMPONENTs */
707 list_for_each_entry(component
, &card
->component_dev_list
, card_list
) {
708 struct snd_soc_dapm_context
*dapm
= snd_soc_component_get_dapm(component
);
710 /* If there are paths active then the COMPONENT will be held with
711 * bias _ON and should not be suspended. */
712 if (!component
->suspended
) {
713 switch (snd_soc_dapm_get_bias_level(dapm
)) {
714 case SND_SOC_BIAS_STANDBY
:
716 * If the COMPONENT is capable of idle
717 * bias off then being in STANDBY
718 * means it's doing something,
719 * otherwise fall through.
721 if (dapm
->idle_bias_off
) {
722 dev_dbg(component
->dev
,
723 "ASoC: idle_bias_off CODEC on over suspend\n");
727 case SND_SOC_BIAS_OFF
:
728 if (component
->suspend
)
729 component
->suspend(component
);
730 component
->suspended
= 1;
731 if (component
->regmap
)
732 regcache_mark_dirty(component
->regmap
);
733 /* deactivate pins to sleep state */
734 pinctrl_pm_select_sleep_state(component
->dev
);
737 dev_dbg(component
->dev
,
738 "ASoC: COMPONENT is on over suspend\n");
744 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
745 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
747 if (rtd
->dai_link
->ignore_suspend
)
750 if (cpu_dai
->driver
->suspend
&& cpu_dai
->driver
->bus_control
)
751 cpu_dai
->driver
->suspend(cpu_dai
);
753 /* deactivate pins to sleep state */
754 pinctrl_pm_select_sleep_state(cpu_dai
->dev
);
757 if (card
->suspend_post
)
758 card
->suspend_post(card
);
762 EXPORT_SYMBOL_GPL(snd_soc_suspend
);
764 /* deferred resume work, so resume can complete before we finished
765 * setting our codec back up, which can be very slow on I2C
767 static void soc_resume_deferred(struct work_struct
*work
)
769 struct snd_soc_card
*card
=
770 container_of(work
, struct snd_soc_card
, deferred_resume_work
);
771 struct snd_soc_pcm_runtime
*rtd
;
772 struct snd_soc_component
*component
;
775 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
776 * so userspace apps are blocked from touching us
779 dev_dbg(card
->dev
, "ASoC: starting resume work\n");
781 /* Bring us up into D2 so that DAPM starts enabling things */
782 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D2
);
784 if (card
->resume_pre
)
785 card
->resume_pre(card
);
787 /* resume control bus DAIs */
788 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
789 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
791 if (rtd
->dai_link
->ignore_suspend
)
794 if (cpu_dai
->driver
->resume
&& cpu_dai
->driver
->bus_control
)
795 cpu_dai
->driver
->resume(cpu_dai
);
798 list_for_each_entry(component
, &card
->component_dev_list
, card_list
) {
799 if (component
->suspended
) {
800 if (component
->resume
)
801 component
->resume(component
);
802 component
->suspended
= 0;
806 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
808 if (rtd
->dai_link
->ignore_suspend
)
811 snd_soc_dapm_stream_event(rtd
,
812 SNDRV_PCM_STREAM_PLAYBACK
,
813 SND_SOC_DAPM_STREAM_RESUME
);
815 snd_soc_dapm_stream_event(rtd
,
816 SNDRV_PCM_STREAM_CAPTURE
,
817 SND_SOC_DAPM_STREAM_RESUME
);
820 /* unmute any active DACs */
821 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
823 if (rtd
->dai_link
->ignore_suspend
)
826 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
827 struct snd_soc_dai
*dai
= rtd
->codec_dais
[i
];
828 struct snd_soc_dai_driver
*drv
= dai
->driver
;
830 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
831 drv
->ops
->digital_mute(dai
, 0);
835 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
836 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
838 if (rtd
->dai_link
->ignore_suspend
)
841 if (cpu_dai
->driver
->resume
&& !cpu_dai
->driver
->bus_control
)
842 cpu_dai
->driver
->resume(cpu_dai
);
845 if (card
->resume_post
)
846 card
->resume_post(card
);
848 dev_dbg(card
->dev
, "ASoC: resume work completed\n");
850 /* Recheck all endpoints too, their state is affected by suspend */
851 dapm_mark_endpoints_dirty(card
);
852 snd_soc_dapm_sync(&card
->dapm
);
854 /* userspace can access us now we are back as we were before */
855 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D0
);
858 /* powers up audio subsystem after a suspend */
859 int snd_soc_resume(struct device
*dev
)
861 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
862 bool bus_control
= false;
863 struct snd_soc_pcm_runtime
*rtd
;
865 /* If the card is not initialized yet there is nothing to do */
866 if (!card
->instantiated
)
869 /* activate pins from sleep state */
870 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
871 struct snd_soc_dai
**codec_dais
= rtd
->codec_dais
;
872 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
876 pinctrl_pm_select_default_state(cpu_dai
->dev
);
878 for (j
= 0; j
< rtd
->num_codecs
; j
++) {
879 struct snd_soc_dai
*codec_dai
= codec_dais
[j
];
880 if (codec_dai
->active
)
881 pinctrl_pm_select_default_state(codec_dai
->dev
);
886 * DAIs that also act as the control bus master might have other drivers
887 * hanging off them so need to resume immediately. Other drivers don't
888 * have that problem and may take a substantial amount of time to resume
889 * due to I/O costs and anti-pop so handle them out of line.
891 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
892 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
893 bus_control
|= cpu_dai
->driver
->bus_control
;
896 dev_dbg(dev
, "ASoC: Resuming control bus master immediately\n");
897 soc_resume_deferred(&card
->deferred_resume_work
);
899 dev_dbg(dev
, "ASoC: Scheduling resume work\n");
900 if (!schedule_work(&card
->deferred_resume_work
))
901 dev_err(dev
, "ASoC: resume work item may be lost\n");
906 EXPORT_SYMBOL_GPL(snd_soc_resume
);
908 #define snd_soc_suspend NULL
909 #define snd_soc_resume NULL
912 static const struct snd_soc_dai_ops null_dai_ops
= {
915 static struct snd_soc_component
*soc_find_component(
916 const struct device_node
*of_node
, const char *name
)
918 struct snd_soc_component
*component
;
920 lockdep_assert_held(&client_mutex
);
922 list_for_each_entry(component
, &component_list
, list
) {
924 if (component
->dev
->of_node
== of_node
)
926 } else if (strcmp(component
->name
, name
) == 0) {
935 * snd_soc_find_dai - Find a registered DAI
937 * @dlc: name of the DAI and optional component info to match
939 * This function will search all regsitered components and their DAIs to
940 * find the DAI of the same name. The component's of_node and name
941 * should also match if being specified.
943 * Return: pointer of DAI, or NULL if not found.
945 struct snd_soc_dai
*snd_soc_find_dai(
946 const struct snd_soc_dai_link_component
*dlc
)
948 struct snd_soc_component
*component
;
949 struct snd_soc_dai
*dai
;
950 struct device_node
*component_of_node
;
952 lockdep_assert_held(&client_mutex
);
954 /* Find CPU DAI from registered DAIs*/
955 list_for_each_entry(component
, &component_list
, list
) {
956 component_of_node
= component
->dev
->of_node
;
957 if (!component_of_node
&& component
->dev
->parent
)
958 component_of_node
= component
->dev
->parent
->of_node
;
960 if (dlc
->of_node
&& component_of_node
!= dlc
->of_node
)
962 if (dlc
->name
&& strcmp(component
->name
, dlc
->name
))
964 list_for_each_entry(dai
, &component
->dai_list
, list
) {
965 if (dlc
->dai_name
&& strcmp(dai
->name
, dlc
->dai_name
))
974 EXPORT_SYMBOL_GPL(snd_soc_find_dai
);
978 * snd_soc_find_dai_link - Find a DAI link
981 * @id: DAI link ID to match
982 * @name: DAI link name to match, optional
983 * @stream_name: DAI link stream name to match, optional
985 * This function will search all existing DAI links of the soc card to
986 * find the link of the same ID. Since DAI links may not have their
987 * unique ID, so name and stream name should also match if being
990 * Return: pointer of DAI link, or NULL if not found.
992 struct snd_soc_dai_link
*snd_soc_find_dai_link(struct snd_soc_card
*card
,
993 int id
, const char *name
,
994 const char *stream_name
)
996 struct snd_soc_dai_link
*link
, *_link
;
998 lockdep_assert_held(&client_mutex
);
1000 list_for_each_entry_safe(link
, _link
, &card
->dai_link_list
, list
) {
1004 if (name
&& (!link
->name
|| strcmp(name
, link
->name
)))
1007 if (stream_name
&& (!link
->stream_name
1008 || strcmp(stream_name
, link
->stream_name
)))
1016 EXPORT_SYMBOL_GPL(snd_soc_find_dai_link
);
1018 static bool soc_is_dai_link_bound(struct snd_soc_card
*card
,
1019 struct snd_soc_dai_link
*dai_link
)
1021 struct snd_soc_pcm_runtime
*rtd
;
1023 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
1024 if (rtd
->dai_link
== dai_link
)
1031 static int soc_bind_dai_link(struct snd_soc_card
*card
,
1032 struct snd_soc_dai_link
*dai_link
)
1034 struct snd_soc_pcm_runtime
*rtd
;
1035 struct snd_soc_dai_link_component
*codecs
= dai_link
->codecs
;
1036 struct snd_soc_dai_link_component cpu_dai_component
;
1037 struct snd_soc_dai
**codec_dais
;
1038 struct snd_soc_platform
*platform
;
1039 struct device_node
*platform_of_node
;
1040 const char *platform_name
;
1043 dev_dbg(card
->dev
, "ASoC: binding %s\n", dai_link
->name
);
1045 if (soc_is_dai_link_bound(card
, dai_link
)) {
1046 dev_dbg(card
->dev
, "ASoC: dai link %s already bound\n",
1051 rtd
= soc_new_pcm_runtime(card
, dai_link
);
1055 cpu_dai_component
.name
= dai_link
->cpu_name
;
1056 cpu_dai_component
.of_node
= dai_link
->cpu_of_node
;
1057 cpu_dai_component
.dai_name
= dai_link
->cpu_dai_name
;
1058 rtd
->cpu_dai
= snd_soc_find_dai(&cpu_dai_component
);
1059 if (!rtd
->cpu_dai
) {
1060 dev_err(card
->dev
, "ASoC: CPU DAI %s not registered\n",
1061 dai_link
->cpu_dai_name
);
1065 rtd
->num_codecs
= dai_link
->num_codecs
;
1067 /* Find CODEC from registered CODECs */
1068 codec_dais
= rtd
->codec_dais
;
1069 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1070 codec_dais
[i
] = snd_soc_find_dai(&codecs
[i
]);
1071 if (!codec_dais
[i
]) {
1072 dev_err(card
->dev
, "ASoC: CODEC DAI %s not registered\n",
1073 codecs
[i
].dai_name
);
1078 /* Single codec links expect codec and codec_dai in runtime data */
1079 rtd
->codec_dai
= codec_dais
[0];
1080 rtd
->codec
= rtd
->codec_dai
->codec
;
1082 /* if there's no platform we match on the empty platform */
1083 platform_name
= dai_link
->platform_name
;
1084 if (!platform_name
&& !dai_link
->platform_of_node
)
1085 platform_name
= "snd-soc-dummy";
1087 /* find one from the set of registered platforms */
1088 list_for_each_entry(platform
, &platform_list
, list
) {
1089 platform_of_node
= platform
->dev
->of_node
;
1090 if (!platform_of_node
&& platform
->dev
->parent
->of_node
)
1091 platform_of_node
= platform
->dev
->parent
->of_node
;
1093 if (dai_link
->platform_of_node
) {
1094 if (platform_of_node
!= dai_link
->platform_of_node
)
1097 if (strcmp(platform
->component
.name
, platform_name
))
1101 rtd
->platform
= platform
;
1103 if (!rtd
->platform
) {
1104 dev_err(card
->dev
, "ASoC: platform %s not registered\n",
1105 dai_link
->platform_name
);
1109 soc_add_pcm_runtime(card
, rtd
);
1113 soc_free_pcm_runtime(rtd
);
1114 return -EPROBE_DEFER
;
1117 static void soc_remove_component(struct snd_soc_component
*component
)
1119 if (!component
->card
)
1122 list_del(&component
->card_list
);
1124 if (component
->remove
)
1125 component
->remove(component
);
1127 snd_soc_dapm_free(snd_soc_component_get_dapm(component
));
1129 soc_cleanup_component_debugfs(component
);
1130 component
->card
= NULL
;
1131 module_put(component
->dev
->driver
->owner
);
1134 static void soc_remove_dai(struct snd_soc_dai
*dai
, int order
)
1138 if (dai
&& dai
->probed
&&
1139 dai
->driver
->remove_order
== order
) {
1140 if (dai
->driver
->remove
) {
1141 err
= dai
->driver
->remove(dai
);
1144 "ASoC: failed to remove %s: %d\n",
1151 static void soc_remove_link_dais(struct snd_soc_card
*card
,
1152 struct snd_soc_pcm_runtime
*rtd
, int order
)
1156 /* unregister the rtd device */
1157 if (rtd
->dev_registered
) {
1158 device_unregister(rtd
->dev
);
1159 rtd
->dev_registered
= 0;
1162 /* remove the CODEC DAI */
1163 for (i
= 0; i
< rtd
->num_codecs
; i
++)
1164 soc_remove_dai(rtd
->codec_dais
[i
], order
);
1166 soc_remove_dai(rtd
->cpu_dai
, order
);
1169 static void soc_remove_link_components(struct snd_soc_card
*card
,
1170 struct snd_soc_pcm_runtime
*rtd
, int order
)
1172 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1173 struct snd_soc_platform
*platform
= rtd
->platform
;
1174 struct snd_soc_component
*component
;
1177 /* remove the platform */
1178 if (platform
&& platform
->component
.driver
->remove_order
== order
)
1179 soc_remove_component(&platform
->component
);
1181 /* remove the CODEC-side CODEC */
1182 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1183 component
= rtd
->codec_dais
[i
]->component
;
1184 if (component
->driver
->remove_order
== order
)
1185 soc_remove_component(component
);
1188 /* remove any CPU-side CODEC */
1190 if (cpu_dai
->component
->driver
->remove_order
== order
)
1191 soc_remove_component(cpu_dai
->component
);
1195 static void soc_remove_dai_links(struct snd_soc_card
*card
)
1198 struct snd_soc_pcm_runtime
*rtd
;
1199 struct snd_soc_dai_link
*link
, *_link
;
1201 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1203 list_for_each_entry(rtd
, &card
->rtd_list
, list
)
1204 soc_remove_link_dais(card
, rtd
, order
);
1207 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1209 list_for_each_entry(rtd
, &card
->rtd_list
, list
)
1210 soc_remove_link_components(card
, rtd
, order
);
1213 list_for_each_entry_safe(link
, _link
, &card
->dai_link_list
, list
) {
1214 if (link
->dobj
.type
== SND_SOC_DOBJ_DAI_LINK
)
1215 dev_warn(card
->dev
, "Topology forgot to remove link %s?\n",
1218 list_del(&link
->list
);
1219 card
->num_dai_links
--;
1223 static int snd_soc_init_multicodec(struct snd_soc_card
*card
,
1224 struct snd_soc_dai_link
*dai_link
)
1226 /* Legacy codec/codec_dai link is a single entry in multicodec */
1227 if (dai_link
->codec_name
|| dai_link
->codec_of_node
||
1228 dai_link
->codec_dai_name
) {
1229 dai_link
->num_codecs
= 1;
1231 dai_link
->codecs
= devm_kzalloc(card
->dev
,
1232 sizeof(struct snd_soc_dai_link_component
),
1234 if (!dai_link
->codecs
)
1237 dai_link
->codecs
[0].name
= dai_link
->codec_name
;
1238 dai_link
->codecs
[0].of_node
= dai_link
->codec_of_node
;
1239 dai_link
->codecs
[0].dai_name
= dai_link
->codec_dai_name
;
1242 if (!dai_link
->codecs
) {
1243 dev_err(card
->dev
, "ASoC: DAI link has no CODECs\n");
1250 static int soc_init_dai_link(struct snd_soc_card
*card
,
1251 struct snd_soc_dai_link
*link
)
1255 ret
= snd_soc_init_multicodec(card
, link
);
1257 dev_err(card
->dev
, "ASoC: failed to init multicodec\n");
1261 for (i
= 0; i
< link
->num_codecs
; i
++) {
1263 * Codec must be specified by 1 of name or OF node,
1264 * not both or neither.
1266 if (!!link
->codecs
[i
].name
==
1267 !!link
->codecs
[i
].of_node
) {
1268 dev_err(card
->dev
, "ASoC: Neither/both codec name/of_node are set for %s\n",
1272 /* Codec DAI name must be specified */
1273 if (!link
->codecs
[i
].dai_name
) {
1274 dev_err(card
->dev
, "ASoC: codec_dai_name not set for %s\n",
1281 * Platform may be specified by either name or OF node, but
1282 * can be left unspecified, and a dummy platform will be used.
1284 if (link
->platform_name
&& link
->platform_of_node
) {
1286 "ASoC: Both platform name/of_node are set for %s\n",
1292 * CPU device may be specified by either name or OF node, but
1293 * can be left unspecified, and will be matched based on DAI
1296 if (link
->cpu_name
&& link
->cpu_of_node
) {
1298 "ASoC: Neither/both cpu name/of_node are set for %s\n",
1303 * At least one of CPU DAI name or CPU device name/node must be
1306 if (!link
->cpu_dai_name
&&
1307 !(link
->cpu_name
|| link
->cpu_of_node
)) {
1309 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
1318 * snd_soc_add_dai_link - Add a DAI link dynamically
1319 * @card: The ASoC card to which the DAI link is added
1320 * @dai_link: The new DAI link to add
1322 * This function adds a DAI link to the ASoC card's link list.
1324 * Note: Topology can use this API to add DAI links when probing the
1325 * topology component. And machine drivers can still define static
1326 * DAI links in dai_link array.
1328 int snd_soc_add_dai_link(struct snd_soc_card
*card
,
1329 struct snd_soc_dai_link
*dai_link
)
1331 if (dai_link
->dobj
.type
1332 && dai_link
->dobj
.type
!= SND_SOC_DOBJ_DAI_LINK
) {
1333 dev_err(card
->dev
, "Invalid dai link type %d\n",
1334 dai_link
->dobj
.type
);
1338 lockdep_assert_held(&client_mutex
);
1339 /* Notify the machine driver for extra initialization
1340 * on the link created by topology.
1342 if (dai_link
->dobj
.type
&& card
->add_dai_link
)
1343 card
->add_dai_link(card
, dai_link
);
1345 list_add_tail(&dai_link
->list
, &card
->dai_link_list
);
1346 card
->num_dai_links
++;
1350 EXPORT_SYMBOL_GPL(snd_soc_add_dai_link
);
1353 * snd_soc_remove_dai_link - Remove a DAI link from the list
1354 * @card: The ASoC card that owns the link
1355 * @dai_link: The DAI link to remove
1357 * This function removes a DAI link from the ASoC card's link list.
1359 * For DAI links previously added by topology, topology should
1360 * remove them by using the dobj embedded in the link.
1362 void snd_soc_remove_dai_link(struct snd_soc_card
*card
,
1363 struct snd_soc_dai_link
*dai_link
)
1365 struct snd_soc_dai_link
*link
, *_link
;
1367 if (dai_link
->dobj
.type
1368 && dai_link
->dobj
.type
!= SND_SOC_DOBJ_DAI_LINK
) {
1369 dev_err(card
->dev
, "Invalid dai link type %d\n",
1370 dai_link
->dobj
.type
);
1374 lockdep_assert_held(&client_mutex
);
1375 /* Notify the machine driver for extra destruction
1376 * on the link created by topology.
1378 if (dai_link
->dobj
.type
&& card
->remove_dai_link
)
1379 card
->remove_dai_link(card
, dai_link
);
1381 list_for_each_entry_safe(link
, _link
, &card
->dai_link_list
, list
) {
1382 if (link
== dai_link
) {
1383 list_del(&link
->list
);
1384 card
->num_dai_links
--;
1389 EXPORT_SYMBOL_GPL(snd_soc_remove_dai_link
);
1391 static void soc_set_name_prefix(struct snd_soc_card
*card
,
1392 struct snd_soc_component
*component
)
1396 if (card
->codec_conf
== NULL
)
1399 for (i
= 0; i
< card
->num_configs
; i
++) {
1400 struct snd_soc_codec_conf
*map
= &card
->codec_conf
[i
];
1401 if (map
->of_node
&& component
->dev
->of_node
!= map
->of_node
)
1403 if (map
->dev_name
&& strcmp(component
->name
, map
->dev_name
))
1405 component
->name_prefix
= map
->name_prefix
;
1410 static int soc_probe_component(struct snd_soc_card
*card
,
1411 struct snd_soc_component
*component
)
1413 struct snd_soc_dapm_context
*dapm
= snd_soc_component_get_dapm(component
);
1414 struct snd_soc_dai
*dai
;
1417 if (!strcmp(component
->name
, "snd-soc-dummy"))
1420 if (component
->card
) {
1421 if (component
->card
!= card
) {
1422 dev_err(component
->dev
,
1423 "Trying to bind component to card \"%s\" but is already bound to card \"%s\"\n",
1424 card
->name
, component
->card
->name
);
1430 if (!try_module_get(component
->dev
->driver
->owner
))
1433 component
->card
= card
;
1435 soc_set_name_prefix(card
, component
);
1437 soc_init_component_debugfs(component
);
1439 if (component
->dapm_widgets
) {
1440 ret
= snd_soc_dapm_new_controls(dapm
, component
->dapm_widgets
,
1441 component
->num_dapm_widgets
);
1444 dev_err(component
->dev
,
1445 "Failed to create new controls %d\n", ret
);
1450 list_for_each_entry(dai
, &component
->dai_list
, list
) {
1451 ret
= snd_soc_dapm_new_dai_widgets(dapm
, dai
);
1453 dev_err(component
->dev
,
1454 "Failed to create DAI widgets %d\n", ret
);
1459 if (component
->probe
) {
1460 ret
= component
->probe(component
);
1462 dev_err(component
->dev
,
1463 "ASoC: failed to probe component %d\n", ret
);
1467 WARN(dapm
->idle_bias_off
&&
1468 dapm
->bias_level
!= SND_SOC_BIAS_OFF
,
1469 "codec %s can not start from non-off bias with idle_bias_off==1\n",
1473 /* machine specific init */
1474 if (component
->init
) {
1475 ret
= component
->init(component
);
1477 dev_err(component
->dev
,
1478 "Failed to do machine specific init %d\n", ret
);
1483 if (component
->controls
)
1484 snd_soc_add_component_controls(component
, component
->controls
,
1485 component
->num_controls
);
1486 if (component
->dapm_routes
)
1487 snd_soc_dapm_add_routes(dapm
, component
->dapm_routes
,
1488 component
->num_dapm_routes
);
1490 list_add(&dapm
->list
, &card
->dapm_list
);
1491 list_add(&component
->card_list
, &card
->component_dev_list
);
1496 soc_cleanup_component_debugfs(component
);
1497 component
->card
= NULL
;
1498 module_put(component
->dev
->driver
->owner
);
1503 static void rtd_release(struct device
*dev
)
1508 static int soc_post_component_init(struct snd_soc_pcm_runtime
*rtd
,
1513 /* register the rtd device */
1514 rtd
->dev
= kzalloc(sizeof(struct device
), GFP_KERNEL
);
1517 device_initialize(rtd
->dev
);
1518 rtd
->dev
->parent
= rtd
->card
->dev
;
1519 rtd
->dev
->release
= rtd_release
;
1520 rtd
->dev
->groups
= soc_dev_attr_groups
;
1521 dev_set_name(rtd
->dev
, "%s", name
);
1522 dev_set_drvdata(rtd
->dev
, rtd
);
1523 mutex_init(&rtd
->pcm_mutex
);
1524 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_PLAYBACK
].be_clients
);
1525 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_CAPTURE
].be_clients
);
1526 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_PLAYBACK
].fe_clients
);
1527 INIT_LIST_HEAD(&rtd
->dpcm
[SNDRV_PCM_STREAM_CAPTURE
].fe_clients
);
1528 ret
= device_add(rtd
->dev
);
1530 /* calling put_device() here to free the rtd->dev */
1531 put_device(rtd
->dev
);
1532 dev_err(rtd
->card
->dev
,
1533 "ASoC: failed to register runtime device: %d\n", ret
);
1536 rtd
->dev_registered
= 1;
1540 static int soc_probe_link_components(struct snd_soc_card
*card
,
1541 struct snd_soc_pcm_runtime
*rtd
,
1544 struct snd_soc_platform
*platform
= rtd
->platform
;
1545 struct snd_soc_component
*component
;
1548 /* probe the CPU-side component, if it is a CODEC */
1549 component
= rtd
->cpu_dai
->component
;
1550 if (component
->driver
->probe_order
== order
) {
1551 ret
= soc_probe_component(card
, component
);
1556 /* probe the CODEC-side components */
1557 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1558 component
= rtd
->codec_dais
[i
]->component
;
1559 if (component
->driver
->probe_order
== order
) {
1560 ret
= soc_probe_component(card
, component
);
1566 /* probe the platform */
1567 if (platform
->component
.driver
->probe_order
== order
) {
1568 ret
= soc_probe_component(card
, &platform
->component
);
1576 static int soc_probe_dai(struct snd_soc_dai
*dai
, int order
)
1580 if (!dai
->probed
&& dai
->driver
->probe_order
== order
) {
1581 if (dai
->driver
->probe
) {
1582 ret
= dai
->driver
->probe(dai
);
1585 "ASoC: failed to probe DAI %s: %d\n",
1597 static int soc_link_dai_pcm_new(struct snd_soc_dai
**dais
, int num_dais
,
1598 struct snd_soc_pcm_runtime
*rtd
)
1602 for (i
= 0; i
< num_dais
; ++i
) {
1603 struct snd_soc_dai_driver
*drv
= dais
[i
]->driver
;
1605 if (!rtd
->dai_link
->no_pcm
&& drv
->pcm_new
)
1606 ret
= drv
->pcm_new(rtd
, dais
[i
]);
1608 dev_err(dais
[i
]->dev
,
1609 "ASoC: Failed to bind %s with pcm device\n",
1618 static int soc_link_dai_widgets(struct snd_soc_card
*card
,
1619 struct snd_soc_dai_link
*dai_link
,
1620 struct snd_soc_pcm_runtime
*rtd
)
1622 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1623 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
1624 struct snd_soc_dapm_widget
*sink
, *source
;
1627 if (rtd
->num_codecs
> 1)
1628 dev_warn(card
->dev
, "ASoC: Multiple codecs not supported yet\n");
1630 /* link the DAI widgets */
1631 sink
= codec_dai
->playback_widget
;
1632 source
= cpu_dai
->capture_widget
;
1633 if (sink
&& source
) {
1634 ret
= snd_soc_dapm_new_pcm(card
, dai_link
->params
,
1635 dai_link
->num_params
,
1638 dev_err(card
->dev
, "ASoC: Can't link %s to %s: %d\n",
1639 sink
->name
, source
->name
, ret
);
1644 sink
= cpu_dai
->playback_widget
;
1645 source
= codec_dai
->capture_widget
;
1646 if (sink
&& source
) {
1647 ret
= snd_soc_dapm_new_pcm(card
, dai_link
->params
,
1648 dai_link
->num_params
,
1651 dev_err(card
->dev
, "ASoC: Can't link %s to %s: %d\n",
1652 sink
->name
, source
->name
, ret
);
1660 static int soc_probe_link_dais(struct snd_soc_card
*card
,
1661 struct snd_soc_pcm_runtime
*rtd
, int order
)
1663 struct snd_soc_dai_link
*dai_link
= rtd
->dai_link
;
1664 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1667 dev_dbg(card
->dev
, "ASoC: probe %s dai link %d late %d\n",
1668 card
->name
, rtd
->num
, order
);
1670 /* set default power off timeout */
1671 rtd
->pmdown_time
= pmdown_time
;
1673 ret
= soc_probe_dai(cpu_dai
, order
);
1677 /* probe the CODEC DAI */
1678 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1679 ret
= soc_probe_dai(rtd
->codec_dais
[i
], order
);
1684 /* complete DAI probe during last probe */
1685 if (order
!= SND_SOC_COMP_ORDER_LAST
)
1688 /* do machine specific initialization */
1689 if (dai_link
->init
) {
1690 ret
= dai_link
->init(rtd
);
1692 dev_err(card
->dev
, "ASoC: failed to init %s: %d\n",
1693 dai_link
->name
, ret
);
1698 if (dai_link
->dai_fmt
)
1699 snd_soc_runtime_set_dai_fmt(rtd
, dai_link
->dai_fmt
);
1701 ret
= soc_post_component_init(rtd
, dai_link
->name
);
1705 #ifdef CONFIG_DEBUG_FS
1706 /* add DPCM sysfs entries */
1707 if (dai_link
->dynamic
)
1708 soc_dpcm_debugfs_add(rtd
);
1711 if (cpu_dai
->driver
->compress_new
) {
1712 /*create compress_device"*/
1713 ret
= cpu_dai
->driver
->compress_new(rtd
, rtd
->num
);
1715 dev_err(card
->dev
, "ASoC: can't create compress %s\n",
1716 dai_link
->stream_name
);
1721 if (!dai_link
->params
) {
1722 /* create the pcm */
1723 ret
= soc_new_pcm(rtd
, rtd
->num
);
1725 dev_err(card
->dev
, "ASoC: can't create pcm %s :%d\n",
1726 dai_link
->stream_name
, ret
);
1729 ret
= soc_link_dai_pcm_new(&cpu_dai
, 1, rtd
);
1732 ret
= soc_link_dai_pcm_new(rtd
->codec_dais
,
1733 rtd
->num_codecs
, rtd
);
1737 INIT_DELAYED_WORK(&rtd
->delayed_work
,
1738 codec2codec_close_delayed_work
);
1740 /* link the DAI widgets */
1741 ret
= soc_link_dai_widgets(card
, dai_link
, rtd
);
1750 static int soc_bind_aux_dev(struct snd_soc_card
*card
, int num
)
1752 struct snd_soc_aux_dev
*aux_dev
= &card
->aux_dev
[num
];
1753 struct snd_soc_component
*component
;
1755 struct device_node
*codec_of_node
;
1757 if (aux_dev
->codec_of_node
|| aux_dev
->codec_name
) {
1758 /* codecs, usually analog devices */
1759 name
= aux_dev
->codec_name
;
1760 codec_of_node
= aux_dev
->codec_of_node
;
1761 component
= soc_find_component(codec_of_node
, name
);
1764 name
= of_node_full_name(codec_of_node
);
1767 } else if (aux_dev
->name
) {
1768 /* generic components */
1769 name
= aux_dev
->name
;
1770 component
= soc_find_component(NULL
, name
);
1774 dev_err(card
->dev
, "ASoC: Invalid auxiliary device\n");
1778 component
->init
= aux_dev
->init
;
1779 component
->auxiliary
= 1;
1780 list_add(&component
->card_aux_list
, &card
->aux_comp_list
);
1785 dev_err(card
->dev
, "ASoC: %s not registered\n", name
);
1786 return -EPROBE_DEFER
;
1789 static int soc_probe_aux_devices(struct snd_soc_card
*card
)
1791 struct snd_soc_component
*comp
, *tmp
;
1795 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1797 list_for_each_entry_safe(comp
, tmp
, &card
->aux_comp_list
,
1799 if (comp
->driver
->probe_order
== order
) {
1800 ret
= soc_probe_component(card
, comp
);
1803 "ASoC: failed to probe aux component %s %d\n",
1807 list_del(&comp
->card_aux_list
);
1815 static void soc_remove_aux_devices(struct snd_soc_card
*card
)
1817 struct snd_soc_component
*comp
, *_comp
;
1820 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1822 list_for_each_entry_safe(comp
, _comp
,
1823 &card
->component_dev_list
, card_list
) {
1825 if (!comp
->auxiliary
)
1828 if (comp
->driver
->remove_order
== order
) {
1829 soc_remove_component(comp
);
1830 comp
->auxiliary
= 0;
1836 static int snd_soc_init_codec_cache(struct snd_soc_codec
*codec
)
1840 if (codec
->cache_init
)
1843 ret
= snd_soc_cache_init(codec
);
1846 "ASoC: Failed to set cache compression type: %d\n",
1850 codec
->cache_init
= 1;
1855 * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1856 * @rtd: The runtime for which the DAI link format should be changed
1857 * @dai_fmt: The new DAI link format
1859 * This function updates the DAI link format for all DAIs connected to the DAI
1860 * link for the specified runtime.
1862 * Note: For setups with a static format set the dai_fmt field in the
1863 * corresponding snd_dai_link struct instead of using this function.
1865 * Returns 0 on success, otherwise a negative error code.
1867 int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime
*rtd
,
1868 unsigned int dai_fmt
)
1870 struct snd_soc_dai
**codec_dais
= rtd
->codec_dais
;
1871 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
1875 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
1876 struct snd_soc_dai
*codec_dai
= codec_dais
[i
];
1878 ret
= snd_soc_dai_set_fmt(codec_dai
, dai_fmt
);
1879 if (ret
!= 0 && ret
!= -ENOTSUPP
) {
1880 dev_warn(codec_dai
->dev
,
1881 "ASoC: Failed to set DAI format: %d\n", ret
);
1886 /* Flip the polarity for the "CPU" end of a CODEC<->CODEC link */
1887 if (cpu_dai
->codec
) {
1888 unsigned int inv_dai_fmt
;
1890 inv_dai_fmt
= dai_fmt
& ~SND_SOC_DAIFMT_MASTER_MASK
;
1891 switch (dai_fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
1892 case SND_SOC_DAIFMT_CBM_CFM
:
1893 inv_dai_fmt
|= SND_SOC_DAIFMT_CBS_CFS
;
1895 case SND_SOC_DAIFMT_CBM_CFS
:
1896 inv_dai_fmt
|= SND_SOC_DAIFMT_CBS_CFM
;
1898 case SND_SOC_DAIFMT_CBS_CFM
:
1899 inv_dai_fmt
|= SND_SOC_DAIFMT_CBM_CFS
;
1901 case SND_SOC_DAIFMT_CBS_CFS
:
1902 inv_dai_fmt
|= SND_SOC_DAIFMT_CBM_CFM
;
1906 dai_fmt
= inv_dai_fmt
;
1909 ret
= snd_soc_dai_set_fmt(cpu_dai
, dai_fmt
);
1910 if (ret
!= 0 && ret
!= -ENOTSUPP
) {
1911 dev_warn(cpu_dai
->dev
,
1912 "ASoC: Failed to set DAI format: %d\n", ret
);
1918 EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt
);
1921 /* Trim special characters, and replace '-' with '_' since '-' is used to
1922 * separate different DMI fields in the card long name. Only number and
1923 * alphabet characters and a few separator characters are kept.
1925 static void cleanup_dmi_name(char *name
)
1929 for (i
= 0; name
[i
]; i
++) {
1930 if (isalnum(name
[i
]) || (name
[i
] == '.')
1931 || (name
[i
] == '_'))
1932 name
[j
++] = name
[i
];
1933 else if (name
[i
] == '-')
1941 * snd_soc_set_dmi_name() - Register DMI names to card
1942 * @card: The card to register DMI names
1943 * @flavour: The flavour "differentiator" for the card amongst its peers.
1945 * An Intel machine driver may be used by many different devices but are
1946 * difficult for userspace to differentiate, since machine drivers ususally
1947 * use their own name as the card short name and leave the card long name
1948 * blank. To differentiate such devices and fix bugs due to lack of
1949 * device-specific configurations, this function allows DMI info to be used
1950 * as the sound card long name, in the format of
1951 * "vendor-product-version-board"
1952 * (Character '-' is used to separate different DMI fields here).
1953 * This will help the user space to load the device-specific Use Case Manager
1954 * (UCM) configurations for the card.
1956 * Possible card long names may be:
1957 * DellInc.-XPS139343-01-0310JH
1958 * ASUSTeKCOMPUTERINC.-T100TA-1.0-T100TA
1959 * Circuitco-MinnowboardMaxD0PLATFORM-D0-MinnowBoardMAX
1961 * This function also supports flavoring the card longname to provide
1962 * the extra differentiation, like "vendor-product-version-board-flavor".
1964 * We only keep number and alphabet characters and a few separator characters
1965 * in the card long name since UCM in the user space uses the card long names
1966 * as card configuration directory names and AudoConf cannot support special
1967 * charactors like SPACE.
1969 * Returns 0 on success, otherwise a negative error code.
1971 int snd_soc_set_dmi_name(struct snd_soc_card
*card
, const char *flavour
)
1973 const char *vendor
, *product
, *product_version
, *board
;
1974 size_t longname_buf_size
= sizeof(card
->snd_card
->longname
);
1977 if (card
->long_name
)
1978 return 0; /* long name already set by driver or from DMI */
1980 /* make up dmi long name as: vendor.product.version.board */
1981 vendor
= dmi_get_system_info(DMI_BOARD_VENDOR
);
1983 dev_warn(card
->dev
, "ASoC: no DMI vendor name!\n");
1987 snprintf(card
->dmi_longname
, sizeof(card
->snd_card
->longname
),
1989 cleanup_dmi_name(card
->dmi_longname
);
1991 product
= dmi_get_system_info(DMI_PRODUCT_NAME
);
1993 len
= strlen(card
->dmi_longname
);
1994 snprintf(card
->dmi_longname
+ len
,
1995 longname_buf_size
- len
,
1998 len
++; /* skip the separator "-" */
1999 if (len
< longname_buf_size
)
2000 cleanup_dmi_name(card
->dmi_longname
+ len
);
2002 /* some vendors like Lenovo may only put a self-explanatory
2003 * name in the product version field
2005 product_version
= dmi_get_system_info(DMI_PRODUCT_VERSION
);
2006 if (product_version
) {
2007 len
= strlen(card
->dmi_longname
);
2008 snprintf(card
->dmi_longname
+ len
,
2009 longname_buf_size
- len
,
2010 "-%s", product_version
);
2013 if (len
< longname_buf_size
)
2014 cleanup_dmi_name(card
->dmi_longname
+ len
);
2018 board
= dmi_get_system_info(DMI_BOARD_NAME
);
2020 len
= strlen(card
->dmi_longname
);
2021 snprintf(card
->dmi_longname
+ len
,
2022 longname_buf_size
- len
,
2026 if (len
< longname_buf_size
)
2027 cleanup_dmi_name(card
->dmi_longname
+ len
);
2028 } else if (!product
) {
2029 /* fall back to using legacy name */
2030 dev_warn(card
->dev
, "ASoC: no DMI board/product name!\n");
2034 /* Add flavour to dmi long name */
2036 len
= strlen(card
->dmi_longname
);
2037 snprintf(card
->dmi_longname
+ len
,
2038 longname_buf_size
- len
,
2042 if (len
< longname_buf_size
)
2043 cleanup_dmi_name(card
->dmi_longname
+ len
);
2046 /* set the card long name */
2047 card
->long_name
= card
->dmi_longname
;
2051 EXPORT_SYMBOL_GPL(snd_soc_set_dmi_name
);
2053 static int snd_soc_instantiate_card(struct snd_soc_card
*card
)
2055 struct snd_soc_codec
*codec
;
2056 struct snd_soc_pcm_runtime
*rtd
;
2057 struct snd_soc_dai_link
*dai_link
;
2060 mutex_lock(&client_mutex
);
2061 mutex_lock_nested(&card
->mutex
, SND_SOC_CARD_CLASS_INIT
);
2064 for (i
= 0; i
< card
->num_links
; i
++) {
2065 ret
= soc_bind_dai_link(card
, &card
->dai_link
[i
]);
2070 /* bind aux_devs too */
2071 for (i
= 0; i
< card
->num_aux_devs
; i
++) {
2072 ret
= soc_bind_aux_dev(card
, i
);
2077 /* add predefined DAI links to the list */
2078 for (i
= 0; i
< card
->num_links
; i
++)
2079 snd_soc_add_dai_link(card
, card
->dai_link
+i
);
2081 /* initialize the register cache for each available codec */
2082 list_for_each_entry(codec
, &codec_list
, list
) {
2083 if (codec
->cache_init
)
2085 ret
= snd_soc_init_codec_cache(codec
);
2090 /* card bind complete so register a sound card */
2091 ret
= snd_card_new(card
->dev
, SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
,
2092 card
->owner
, 0, &card
->snd_card
);
2095 "ASoC: can't create sound card for card %s: %d\n",
2100 soc_init_card_debugfs(card
);
2102 card
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
2103 card
->dapm
.dev
= card
->dev
;
2104 card
->dapm
.card
= card
;
2105 list_add(&card
->dapm
.list
, &card
->dapm_list
);
2107 #ifdef CONFIG_DEBUG_FS
2108 snd_soc_dapm_debugfs_init(&card
->dapm
, card
->debugfs_card_root
);
2111 #ifdef CONFIG_PM_SLEEP
2112 /* deferred resume work */
2113 INIT_WORK(&card
->deferred_resume_work
, soc_resume_deferred
);
2116 if (card
->dapm_widgets
)
2117 snd_soc_dapm_new_controls(&card
->dapm
, card
->dapm_widgets
,
2118 card
->num_dapm_widgets
);
2120 if (card
->of_dapm_widgets
)
2121 snd_soc_dapm_new_controls(&card
->dapm
, card
->of_dapm_widgets
,
2122 card
->num_of_dapm_widgets
);
2124 /* initialise the sound card only once */
2126 ret
= card
->probe(card
);
2128 goto card_probe_error
;
2131 /* probe all components used by DAI links on this card */
2132 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
2134 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
2135 ret
= soc_probe_link_components(card
, rtd
, order
);
2138 "ASoC: failed to instantiate card %d\n",
2145 /* probe auxiliary components */
2146 ret
= soc_probe_aux_devices(card
);
2150 /* Find new DAI links added during probing components and bind them.
2151 * Components with topology may bring new DAIs and DAI links.
2153 list_for_each_entry(dai_link
, &card
->dai_link_list
, list
) {
2154 if (soc_is_dai_link_bound(card
, dai_link
))
2157 ret
= soc_init_dai_link(card
, dai_link
);
2160 ret
= soc_bind_dai_link(card
, dai_link
);
2165 /* probe all DAI links on this card */
2166 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
2168 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
2169 ret
= soc_probe_link_dais(card
, rtd
, order
);
2172 "ASoC: failed to instantiate card %d\n",
2179 snd_soc_dapm_link_dai_widgets(card
);
2180 snd_soc_dapm_connect_dai_link_widgets(card
);
2183 snd_soc_add_card_controls(card
, card
->controls
, card
->num_controls
);
2185 if (card
->dapm_routes
)
2186 snd_soc_dapm_add_routes(&card
->dapm
, card
->dapm_routes
,
2187 card
->num_dapm_routes
);
2189 if (card
->of_dapm_routes
)
2190 snd_soc_dapm_add_routes(&card
->dapm
, card
->of_dapm_routes
,
2191 card
->num_of_dapm_routes
);
2193 snprintf(card
->snd_card
->shortname
, sizeof(card
->snd_card
->shortname
),
2195 snprintf(card
->snd_card
->longname
, sizeof(card
->snd_card
->longname
),
2196 "%s", card
->long_name
? card
->long_name
: card
->name
);
2197 snprintf(card
->snd_card
->driver
, sizeof(card
->snd_card
->driver
),
2198 "%s", card
->driver_name
? card
->driver_name
: card
->name
);
2199 for (i
= 0; i
< ARRAY_SIZE(card
->snd_card
->driver
); i
++) {
2200 switch (card
->snd_card
->driver
[i
]) {
2206 if (!isalnum(card
->snd_card
->driver
[i
]))
2207 card
->snd_card
->driver
[i
] = '_';
2212 if (card
->late_probe
) {
2213 ret
= card
->late_probe(card
);
2215 dev_err(card
->dev
, "ASoC: %s late_probe() failed: %d\n",
2217 goto probe_aux_dev_err
;
2221 snd_soc_dapm_new_widgets(card
);
2223 ret
= snd_card_register(card
->snd_card
);
2225 dev_err(card
->dev
, "ASoC: failed to register soundcard %d\n",
2227 goto probe_aux_dev_err
;
2230 card
->instantiated
= 1;
2231 snd_soc_dapm_sync(&card
->dapm
);
2232 mutex_unlock(&card
->mutex
);
2233 mutex_unlock(&client_mutex
);
2238 soc_remove_aux_devices(card
);
2241 soc_remove_dai_links(card
);
2247 snd_soc_dapm_free(&card
->dapm
);
2248 soc_cleanup_card_debugfs(card
);
2249 snd_card_free(card
->snd_card
);
2252 soc_remove_pcm_runtimes(card
);
2253 mutex_unlock(&card
->mutex
);
2254 mutex_unlock(&client_mutex
);
2259 /* probes a new socdev */
2260 static int soc_probe(struct platform_device
*pdev
)
2262 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
2265 * no card, so machine driver should be registering card
2266 * we should not be here in that case so ret error
2271 dev_warn(&pdev
->dev
,
2272 "ASoC: machine %s should use snd_soc_register_card()\n",
2275 /* Bodge while we unpick instantiation */
2276 card
->dev
= &pdev
->dev
;
2278 return snd_soc_register_card(card
);
2281 static int soc_cleanup_card_resources(struct snd_soc_card
*card
)
2283 struct snd_soc_pcm_runtime
*rtd
;
2285 /* make sure any delayed work runs */
2286 list_for_each_entry(rtd
, &card
->rtd_list
, list
)
2287 flush_delayed_work(&rtd
->delayed_work
);
2289 /* remove and free each DAI */
2290 soc_remove_dai_links(card
);
2291 soc_remove_pcm_runtimes(card
);
2293 /* remove auxiliary devices */
2294 soc_remove_aux_devices(card
);
2296 snd_soc_dapm_free(&card
->dapm
);
2297 soc_cleanup_card_debugfs(card
);
2299 /* remove the card */
2303 snd_card_free(card
->snd_card
);
2308 /* removes a socdev */
2309 static int soc_remove(struct platform_device
*pdev
)
2311 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
2313 snd_soc_unregister_card(card
);
2317 int snd_soc_poweroff(struct device
*dev
)
2319 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
2320 struct snd_soc_pcm_runtime
*rtd
;
2322 if (!card
->instantiated
)
2325 /* Flush out pmdown_time work - we actually do want to run it
2326 * now, we're shutting down so no imminent restart. */
2327 list_for_each_entry(rtd
, &card
->rtd_list
, list
)
2328 flush_delayed_work(&rtd
->delayed_work
);
2330 snd_soc_dapm_shutdown(card
);
2332 /* deactivate pins to sleep state */
2333 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
2334 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
2337 pinctrl_pm_select_sleep_state(cpu_dai
->dev
);
2338 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
2339 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[i
];
2340 pinctrl_pm_select_sleep_state(codec_dai
->dev
);
2346 EXPORT_SYMBOL_GPL(snd_soc_poweroff
);
2348 const struct dev_pm_ops snd_soc_pm_ops
= {
2349 .suspend
= snd_soc_suspend
,
2350 .resume
= snd_soc_resume
,
2351 .freeze
= snd_soc_suspend
,
2352 .thaw
= snd_soc_resume
,
2353 .poweroff
= snd_soc_poweroff
,
2354 .restore
= snd_soc_resume
,
2356 EXPORT_SYMBOL_GPL(snd_soc_pm_ops
);
2358 /* ASoC platform driver */
2359 static struct platform_driver soc_driver
= {
2361 .name
= "soc-audio",
2362 .pm
= &snd_soc_pm_ops
,
2365 .remove
= soc_remove
,
2369 * snd_soc_cnew - create new control
2370 * @_template: control template
2371 * @data: control private data
2372 * @long_name: control long name
2373 * @prefix: control name prefix
2375 * Create a new mixer control from a template control.
2377 * Returns 0 for success, else error.
2379 struct snd_kcontrol
*snd_soc_cnew(const struct snd_kcontrol_new
*_template
,
2380 void *data
, const char *long_name
,
2383 struct snd_kcontrol_new
template;
2384 struct snd_kcontrol
*kcontrol
;
2387 memcpy(&template, _template
, sizeof(template));
2391 long_name
= template.name
;
2394 name
= kasprintf(GFP_KERNEL
, "%s %s", prefix
, long_name
);
2398 template.name
= name
;
2400 template.name
= long_name
;
2403 kcontrol
= snd_ctl_new1(&template, data
);
2409 EXPORT_SYMBOL_GPL(snd_soc_cnew
);
2411 static int snd_soc_add_controls(struct snd_card
*card
, struct device
*dev
,
2412 const struct snd_kcontrol_new
*controls
, int num_controls
,
2413 const char *prefix
, void *data
)
2417 for (i
= 0; i
< num_controls
; i
++) {
2418 const struct snd_kcontrol_new
*control
= &controls
[i
];
2419 err
= snd_ctl_add(card
, snd_soc_cnew(control
, data
,
2420 control
->name
, prefix
));
2422 dev_err(dev
, "ASoC: Failed to add %s: %d\n",
2423 control
->name
, err
);
2431 struct snd_kcontrol
*snd_soc_card_get_kcontrol(struct snd_soc_card
*soc_card
,
2434 struct snd_card
*card
= soc_card
->snd_card
;
2435 struct snd_kcontrol
*kctl
;
2437 if (unlikely(!name
))
2440 list_for_each_entry(kctl
, &card
->controls
, list
)
2441 if (!strncmp(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
)))
2445 EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol
);
2448 * snd_soc_add_component_controls - Add an array of controls to a component.
2450 * @component: Component to add controls to
2451 * @controls: Array of controls to add
2452 * @num_controls: Number of elements in the array
2454 * Return: 0 for success, else error.
2456 int snd_soc_add_component_controls(struct snd_soc_component
*component
,
2457 const struct snd_kcontrol_new
*controls
, unsigned int num_controls
)
2459 struct snd_card
*card
= component
->card
->snd_card
;
2461 return snd_soc_add_controls(card
, component
->dev
, controls
,
2462 num_controls
, component
->name_prefix
, component
);
2464 EXPORT_SYMBOL_GPL(snd_soc_add_component_controls
);
2467 * snd_soc_add_codec_controls - add an array of controls to a codec.
2468 * Convenience function to add a list of controls. Many codecs were
2469 * duplicating this code.
2471 * @codec: codec to add controls to
2472 * @controls: array of controls to add
2473 * @num_controls: number of elements in the array
2475 * Return 0 for success, else error.
2477 int snd_soc_add_codec_controls(struct snd_soc_codec
*codec
,
2478 const struct snd_kcontrol_new
*controls
, unsigned int num_controls
)
2480 return snd_soc_add_component_controls(&codec
->component
, controls
,
2483 EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls
);
2486 * snd_soc_add_platform_controls - add an array of controls to a platform.
2487 * Convenience function to add a list of controls.
2489 * @platform: platform to add controls to
2490 * @controls: array of controls to add
2491 * @num_controls: number of elements in the array
2493 * Return 0 for success, else error.
2495 int snd_soc_add_platform_controls(struct snd_soc_platform
*platform
,
2496 const struct snd_kcontrol_new
*controls
, unsigned int num_controls
)
2498 return snd_soc_add_component_controls(&platform
->component
, controls
,
2501 EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls
);
2504 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2505 * Convenience function to add a list of controls.
2507 * @soc_card: SoC card to add controls to
2508 * @controls: array of controls to add
2509 * @num_controls: number of elements in the array
2511 * Return 0 for success, else error.
2513 int snd_soc_add_card_controls(struct snd_soc_card
*soc_card
,
2514 const struct snd_kcontrol_new
*controls
, int num_controls
)
2516 struct snd_card
*card
= soc_card
->snd_card
;
2518 return snd_soc_add_controls(card
, soc_card
->dev
, controls
, num_controls
,
2521 EXPORT_SYMBOL_GPL(snd_soc_add_card_controls
);
2524 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2525 * Convienience function to add a list of controls.
2527 * @dai: DAI to add controls to
2528 * @controls: array of controls to add
2529 * @num_controls: number of elements in the array
2531 * Return 0 for success, else error.
2533 int snd_soc_add_dai_controls(struct snd_soc_dai
*dai
,
2534 const struct snd_kcontrol_new
*controls
, int num_controls
)
2536 struct snd_card
*card
= dai
->component
->card
->snd_card
;
2538 return snd_soc_add_controls(card
, dai
->dev
, controls
, num_controls
,
2541 EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls
);
2544 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2546 * @clk_id: DAI specific clock ID
2547 * @freq: new clock frequency in Hz
2548 * @dir: new clock direction - input/output.
2550 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2552 int snd_soc_dai_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
2553 unsigned int freq
, int dir
)
2555 if (dai
->driver
&& dai
->driver
->ops
->set_sysclk
)
2556 return dai
->driver
->ops
->set_sysclk(dai
, clk_id
, freq
, dir
);
2557 else if (dai
->codec
&& dai
->codec
->driver
->set_sysclk
)
2558 return dai
->codec
->driver
->set_sysclk(dai
->codec
, clk_id
, 0,
2563 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk
);
2566 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2568 * @clk_id: DAI specific clock ID
2569 * @source: Source for the clock
2570 * @freq: new clock frequency in Hz
2571 * @dir: new clock direction - input/output.
2573 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2575 int snd_soc_codec_set_sysclk(struct snd_soc_codec
*codec
, int clk_id
,
2576 int source
, unsigned int freq
, int dir
)
2578 if (codec
->driver
->set_sysclk
)
2579 return codec
->driver
->set_sysclk(codec
, clk_id
, source
,
2584 EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk
);
2587 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2589 * @div_id: DAI specific clock divider ID
2590 * @div: new clock divisor.
2592 * Configures the clock dividers. This is used to derive the best DAI bit and
2593 * frame clocks from the system or master clock. It's best to set the DAI bit
2594 * and frame clocks as low as possible to save system power.
2596 int snd_soc_dai_set_clkdiv(struct snd_soc_dai
*dai
,
2597 int div_id
, int div
)
2599 if (dai
->driver
&& dai
->driver
->ops
->set_clkdiv
)
2600 return dai
->driver
->ops
->set_clkdiv(dai
, div_id
, div
);
2604 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv
);
2607 * snd_soc_dai_set_pll - configure DAI PLL.
2609 * @pll_id: DAI specific PLL ID
2610 * @source: DAI specific source for the PLL
2611 * @freq_in: PLL input clock frequency in Hz
2612 * @freq_out: requested PLL output clock frequency in Hz
2614 * Configures and enables PLL to generate output clock based on input clock.
2616 int snd_soc_dai_set_pll(struct snd_soc_dai
*dai
, int pll_id
, int source
,
2617 unsigned int freq_in
, unsigned int freq_out
)
2619 if (dai
->driver
&& dai
->driver
->ops
->set_pll
)
2620 return dai
->driver
->ops
->set_pll(dai
, pll_id
, source
,
2622 else if (dai
->codec
&& dai
->codec
->driver
->set_pll
)
2623 return dai
->codec
->driver
->set_pll(dai
->codec
, pll_id
, source
,
2628 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll
);
2631 * snd_soc_codec_set_pll - configure codec PLL.
2633 * @pll_id: DAI specific PLL ID
2634 * @source: DAI specific source for the PLL
2635 * @freq_in: PLL input clock frequency in Hz
2636 * @freq_out: requested PLL output clock frequency in Hz
2638 * Configures and enables PLL to generate output clock based on input clock.
2640 int snd_soc_codec_set_pll(struct snd_soc_codec
*codec
, int pll_id
, int source
,
2641 unsigned int freq_in
, unsigned int freq_out
)
2643 if (codec
->driver
->set_pll
)
2644 return codec
->driver
->set_pll(codec
, pll_id
, source
,
2649 EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll
);
2652 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2654 * @ratio: Ratio of BCLK to Sample rate.
2656 * Configures the DAI for a preset BCLK to sample rate ratio.
2658 int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai
*dai
, unsigned int ratio
)
2660 if (dai
->driver
&& dai
->driver
->ops
->set_bclk_ratio
)
2661 return dai
->driver
->ops
->set_bclk_ratio(dai
, ratio
);
2665 EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio
);
2668 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2670 * @fmt: SND_SOC_DAIFMT_ format value.
2672 * Configures the DAI hardware format and clocking.
2674 int snd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
2676 if (dai
->driver
== NULL
)
2678 if (dai
->driver
->ops
->set_fmt
== NULL
)
2680 return dai
->driver
->ops
->set_fmt(dai
, fmt
);
2682 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt
);
2685 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
2686 * @slots: Number of slots in use.
2687 * @tx_mask: bitmask representing active TX slots.
2688 * @rx_mask: bitmask representing active RX slots.
2690 * Generates the TDM tx and rx slot default masks for DAI.
2692 static int snd_soc_xlate_tdm_slot_mask(unsigned int slots
,
2693 unsigned int *tx_mask
,
2694 unsigned int *rx_mask
)
2696 if (*tx_mask
|| *rx_mask
)
2702 *tx_mask
= (1 << slots
) - 1;
2703 *rx_mask
= (1 << slots
) - 1;
2709 * snd_soc_dai_set_tdm_slot() - Configures a DAI for TDM operation
2710 * @dai: The DAI to configure
2711 * @tx_mask: bitmask representing active TX slots.
2712 * @rx_mask: bitmask representing active RX slots.
2713 * @slots: Number of slots in use.
2714 * @slot_width: Width in bits for each slot.
2716 * This function configures the specified DAI for TDM operation. @slot contains
2717 * the total number of slots of the TDM stream and @slot_with the width of each
2718 * slot in bit clock cycles. @tx_mask and @rx_mask are bitmasks specifying the
2719 * active slots of the TDM stream for the specified DAI, i.e. which slots the
2720 * DAI should write to or read from. If a bit is set the corresponding slot is
2721 * active, if a bit is cleared the corresponding slot is inactive. Bit 0 maps to
2722 * the first slot, bit 1 to the second slot and so on. The first active slot
2723 * maps to the first channel of the DAI, the second active slot to the second
2724 * channel and so on.
2726 * TDM mode can be disabled by passing 0 for @slots. In this case @tx_mask,
2727 * @rx_mask and @slot_width will be ignored.
2729 * Returns 0 on success, a negative error code otherwise.
2731 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai
*dai
,
2732 unsigned int tx_mask
, unsigned int rx_mask
, int slots
, int slot_width
)
2734 if (dai
->driver
&& dai
->driver
->ops
->xlate_tdm_slot_mask
)
2735 dai
->driver
->ops
->xlate_tdm_slot_mask(slots
,
2736 &tx_mask
, &rx_mask
);
2738 snd_soc_xlate_tdm_slot_mask(slots
, &tx_mask
, &rx_mask
);
2740 dai
->tx_mask
= tx_mask
;
2741 dai
->rx_mask
= rx_mask
;
2743 if (dai
->driver
&& dai
->driver
->ops
->set_tdm_slot
)
2744 return dai
->driver
->ops
->set_tdm_slot(dai
, tx_mask
, rx_mask
,
2749 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot
);
2752 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2754 * @tx_num: how many TX channels
2755 * @tx_slot: pointer to an array which imply the TX slot number channel
2757 * @rx_num: how many RX channels
2758 * @rx_slot: pointer to an array which imply the RX slot number channel
2761 * configure the relationship between channel number and TDM slot number.
2763 int snd_soc_dai_set_channel_map(struct snd_soc_dai
*dai
,
2764 unsigned int tx_num
, unsigned int *tx_slot
,
2765 unsigned int rx_num
, unsigned int *rx_slot
)
2767 if (dai
->driver
&& dai
->driver
->ops
->set_channel_map
)
2768 return dai
->driver
->ops
->set_channel_map(dai
, tx_num
, tx_slot
,
2773 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map
);
2776 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2778 * @tristate: tristate enable
2780 * Tristates the DAI so that others can use it.
2782 int snd_soc_dai_set_tristate(struct snd_soc_dai
*dai
, int tristate
)
2784 if (dai
->driver
&& dai
->driver
->ops
->set_tristate
)
2785 return dai
->driver
->ops
->set_tristate(dai
, tristate
);
2789 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate
);
2792 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2794 * @mute: mute enable
2795 * @direction: stream to mute
2797 * Mutes the DAI DAC.
2799 int snd_soc_dai_digital_mute(struct snd_soc_dai
*dai
, int mute
,
2805 if (dai
->driver
->ops
->mute_stream
)
2806 return dai
->driver
->ops
->mute_stream(dai
, mute
, direction
);
2807 else if (direction
== SNDRV_PCM_STREAM_PLAYBACK
&&
2808 dai
->driver
->ops
->digital_mute
)
2809 return dai
->driver
->ops
->digital_mute(dai
, mute
);
2813 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute
);
2816 * snd_soc_register_card - Register a card with the ASoC core
2818 * @card: Card to register
2821 int snd_soc_register_card(struct snd_soc_card
*card
)
2824 struct snd_soc_pcm_runtime
*rtd
;
2826 if (!card
->name
|| !card
->dev
)
2829 for (i
= 0; i
< card
->num_links
; i
++) {
2830 struct snd_soc_dai_link
*link
= &card
->dai_link
[i
];
2832 ret
= soc_init_dai_link(card
, link
);
2834 dev_err(card
->dev
, "ASoC: failed to init link %s\n",
2840 dev_set_drvdata(card
->dev
, card
);
2842 snd_soc_initialize_card_lists(card
);
2844 INIT_LIST_HEAD(&card
->dai_link_list
);
2845 card
->num_dai_links
= 0;
2847 INIT_LIST_HEAD(&card
->rtd_list
);
2850 INIT_LIST_HEAD(&card
->dapm_dirty
);
2851 INIT_LIST_HEAD(&card
->dobj_list
);
2852 card
->instantiated
= 0;
2853 mutex_init(&card
->mutex
);
2854 mutex_init(&card
->dapm_mutex
);
2856 ret
= snd_soc_instantiate_card(card
);
2860 /* deactivate pins to sleep state */
2861 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
2862 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
2865 for (j
= 0; j
< rtd
->num_codecs
; j
++) {
2866 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[j
];
2867 if (!codec_dai
->active
)
2868 pinctrl_pm_select_sleep_state(codec_dai
->dev
);
2871 if (!cpu_dai
->active
)
2872 pinctrl_pm_select_sleep_state(cpu_dai
->dev
);
2877 EXPORT_SYMBOL_GPL(snd_soc_register_card
);
2880 * snd_soc_unregister_card - Unregister a card with the ASoC core
2882 * @card: Card to unregister
2885 int snd_soc_unregister_card(struct snd_soc_card
*card
)
2887 if (card
->instantiated
) {
2888 card
->instantiated
= false;
2889 snd_soc_dapm_shutdown(card
);
2890 soc_cleanup_card_resources(card
);
2891 dev_dbg(card
->dev
, "ASoC: Unregistered card '%s'\n", card
->name
);
2896 EXPORT_SYMBOL_GPL(snd_soc_unregister_card
);
2899 * Simplify DAI link configuration by removing ".-1" from device names
2900 * and sanitizing names.
2902 static char *fmt_single_name(struct device
*dev
, int *id
)
2904 char *found
, name
[NAME_SIZE
];
2907 if (dev_name(dev
) == NULL
)
2910 strlcpy(name
, dev_name(dev
), NAME_SIZE
);
2912 /* are we a "%s.%d" name (platform and SPI components) */
2913 found
= strstr(name
, dev
->driver
->name
);
2916 if (sscanf(&found
[strlen(dev
->driver
->name
)], ".%d", id
) == 1) {
2918 /* discard ID from name if ID == -1 */
2920 found
[strlen(dev
->driver
->name
)] = '\0';
2924 /* I2C component devices are named "bus-addr" */
2925 if (sscanf(name
, "%x-%x", &id1
, &id2
) == 2) {
2926 char tmp
[NAME_SIZE
];
2928 /* create unique ID number from I2C addr and bus */
2929 *id
= ((id1
& 0xffff) << 16) + id2
;
2931 /* sanitize component name for DAI link creation */
2932 snprintf(tmp
, NAME_SIZE
, "%s.%s", dev
->driver
->name
, name
);
2933 strlcpy(name
, tmp
, NAME_SIZE
);
2938 return kstrdup(name
, GFP_KERNEL
);
2942 * Simplify DAI link naming for single devices with multiple DAIs by removing
2943 * any ".-1" and using the DAI name (instead of device name).
2945 static inline char *fmt_multiple_name(struct device
*dev
,
2946 struct snd_soc_dai_driver
*dai_drv
)
2948 if (dai_drv
->name
== NULL
) {
2950 "ASoC: error - multiple DAI %s registered with no name\n",
2955 return kstrdup(dai_drv
->name
, GFP_KERNEL
);
2959 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
2961 * @component: The component for which the DAIs should be unregistered
2963 static void snd_soc_unregister_dais(struct snd_soc_component
*component
)
2965 struct snd_soc_dai
*dai
, *_dai
;
2967 list_for_each_entry_safe(dai
, _dai
, &component
->dai_list
, list
) {
2968 dev_dbg(component
->dev
, "ASoC: Unregistered DAI '%s'\n",
2970 list_del(&dai
->list
);
2976 /* Create a DAI and add it to the component's DAI list */
2977 static struct snd_soc_dai
*soc_add_dai(struct snd_soc_component
*component
,
2978 struct snd_soc_dai_driver
*dai_drv
,
2979 bool legacy_dai_naming
)
2981 struct device
*dev
= component
->dev
;
2982 struct snd_soc_dai
*dai
;
2984 dev_dbg(dev
, "ASoC: dynamically register DAI %s\n", dev_name(dev
));
2986 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
2991 * Back in the old days when we still had component-less DAIs,
2992 * instead of having a static name, component-less DAIs would
2993 * inherit the name of the parent device so it is possible to
2994 * register multiple instances of the DAI. We still need to keep
2995 * the same naming style even though those DAIs are not
2996 * component-less anymore.
2998 if (legacy_dai_naming
&&
2999 (dai_drv
->id
== 0 || dai_drv
->name
== NULL
)) {
3000 dai
->name
= fmt_single_name(dev
, &dai
->id
);
3002 dai
->name
= fmt_multiple_name(dev
, dai_drv
);
3004 dai
->id
= dai_drv
->id
;
3006 dai
->id
= component
->num_dai
;
3008 if (dai
->name
== NULL
) {
3013 dai
->component
= component
;
3015 dai
->driver
= dai_drv
;
3016 if (!dai
->driver
->ops
)
3017 dai
->driver
->ops
= &null_dai_ops
;
3019 list_add(&dai
->list
, &component
->dai_list
);
3020 component
->num_dai
++;
3022 dev_dbg(dev
, "ASoC: Registered DAI '%s'\n", dai
->name
);
3027 * snd_soc_register_dais - Register a DAI with the ASoC core
3029 * @component: The component the DAIs are registered for
3030 * @dai_drv: DAI driver to use for the DAIs
3031 * @count: Number of DAIs
3032 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
3035 static int snd_soc_register_dais(struct snd_soc_component
*component
,
3036 struct snd_soc_dai_driver
*dai_drv
, size_t count
,
3037 bool legacy_dai_naming
)
3039 struct device
*dev
= component
->dev
;
3040 struct snd_soc_dai
*dai
;
3044 dev_dbg(dev
, "ASoC: dai register %s #%zu\n", dev_name(dev
), count
);
3046 component
->dai_drv
= dai_drv
;
3048 for (i
= 0; i
< count
; i
++) {
3050 dai
= soc_add_dai(component
, dai_drv
+ i
,
3051 count
== 1 && legacy_dai_naming
);
3061 snd_soc_unregister_dais(component
);
3067 * snd_soc_register_dai - Register a DAI dynamically & create its widgets
3069 * @component: The component the DAIs are registered for
3070 * @dai_drv: DAI driver to use for the DAI
3072 * Topology can use this API to register DAIs when probing a component.
3073 * These DAIs's widgets will be freed in the card cleanup and the DAIs
3074 * will be freed in the component cleanup.
3076 int snd_soc_register_dai(struct snd_soc_component
*component
,
3077 struct snd_soc_dai_driver
*dai_drv
)
3079 struct snd_soc_dapm_context
*dapm
=
3080 snd_soc_component_get_dapm(component
);
3081 struct snd_soc_dai
*dai
;
3084 if (dai_drv
->dobj
.type
!= SND_SOC_DOBJ_PCM
) {
3085 dev_err(component
->dev
, "Invalid dai type %d\n",
3086 dai_drv
->dobj
.type
);
3090 lockdep_assert_held(&client_mutex
);
3091 dai
= soc_add_dai(component
, dai_drv
, false);
3095 /* Create the DAI widgets here. After adding DAIs, topology may
3096 * also add routes that need these widgets as source or sink.
3098 ret
= snd_soc_dapm_new_dai_widgets(dapm
, dai
);
3100 dev_err(component
->dev
,
3101 "Failed to create DAI widgets %d\n", ret
);
3106 EXPORT_SYMBOL_GPL(snd_soc_register_dai
);
3108 static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context
*dapm
,
3109 enum snd_soc_dapm_type type
, int subseq
)
3111 struct snd_soc_component
*component
= dapm
->component
;
3113 component
->driver
->seq_notifier(component
, type
, subseq
);
3116 static int snd_soc_component_stream_event(struct snd_soc_dapm_context
*dapm
,
3119 struct snd_soc_component
*component
= dapm
->component
;
3121 return component
->driver
->stream_event(component
, event
);
3124 static int snd_soc_component_initialize(struct snd_soc_component
*component
,
3125 const struct snd_soc_component_driver
*driver
, struct device
*dev
)
3127 struct snd_soc_dapm_context
*dapm
;
3129 component
->name
= fmt_single_name(dev
, &component
->id
);
3130 if (!component
->name
) {
3131 dev_err(dev
, "ASoC: Failed to allocate name\n");
3135 component
->dev
= dev
;
3136 component
->driver
= driver
;
3137 component
->probe
= component
->driver
->probe
;
3138 component
->remove
= component
->driver
->remove
;
3139 component
->suspend
= component
->driver
->suspend
;
3140 component
->resume
= component
->driver
->resume
;
3141 component
->pcm_new
= component
->driver
->pcm_new
;
3142 component
->pcm_free
= component
->driver
->pcm_free
;
3144 dapm
= &component
->dapm
;
3146 dapm
->component
= component
;
3147 dapm
->bias_level
= SND_SOC_BIAS_OFF
;
3148 dapm
->idle_bias_off
= true;
3149 if (driver
->seq_notifier
)
3150 dapm
->seq_notifier
= snd_soc_component_seq_notifier
;
3151 if (driver
->stream_event
)
3152 dapm
->stream_event
= snd_soc_component_stream_event
;
3154 component
->controls
= driver
->controls
;
3155 component
->num_controls
= driver
->num_controls
;
3156 component
->dapm_widgets
= driver
->dapm_widgets
;
3157 component
->num_dapm_widgets
= driver
->num_dapm_widgets
;
3158 component
->dapm_routes
= driver
->dapm_routes
;
3159 component
->num_dapm_routes
= driver
->num_dapm_routes
;
3161 INIT_LIST_HEAD(&component
->dai_list
);
3162 mutex_init(&component
->io_mutex
);
3167 static void snd_soc_component_setup_regmap(struct snd_soc_component
*component
)
3169 int val_bytes
= regmap_get_val_bytes(component
->regmap
);
3171 /* Errors are legitimate for non-integer byte multiples */
3173 component
->val_bytes
= val_bytes
;
3176 #ifdef CONFIG_REGMAP
3179 * snd_soc_component_init_regmap() - Initialize regmap instance for the component
3180 * @component: The component for which to initialize the regmap instance
3181 * @regmap: The regmap instance that should be used by the component
3183 * This function allows deferred assignment of the regmap instance that is
3184 * associated with the component. Only use this if the regmap instance is not
3185 * yet ready when the component is registered. The function must also be called
3186 * before the first IO attempt of the component.
3188 void snd_soc_component_init_regmap(struct snd_soc_component
*component
,
3189 struct regmap
*regmap
)
3191 component
->regmap
= regmap
;
3192 snd_soc_component_setup_regmap(component
);
3194 EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap
);
3197 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the component
3198 * @component: The component for which to de-initialize the regmap instance
3200 * Calls regmap_exit() on the regmap instance associated to the component and
3201 * removes the regmap instance from the component.
3203 * This function should only be used if snd_soc_component_init_regmap() was used
3204 * to initialize the regmap instance.
3206 void snd_soc_component_exit_regmap(struct snd_soc_component
*component
)
3208 regmap_exit(component
->regmap
);
3209 component
->regmap
= NULL
;
3211 EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap
);
3215 static void snd_soc_component_add_unlocked(struct snd_soc_component
*component
)
3217 if (!component
->write
&& !component
->read
) {
3218 if (!component
->regmap
)
3219 component
->regmap
= dev_get_regmap(component
->dev
, NULL
);
3220 if (component
->regmap
)
3221 snd_soc_component_setup_regmap(component
);
3224 list_add(&component
->list
, &component_list
);
3225 INIT_LIST_HEAD(&component
->dobj_list
);
3228 static void snd_soc_component_add(struct snd_soc_component
*component
)
3230 mutex_lock(&client_mutex
);
3231 snd_soc_component_add_unlocked(component
);
3232 mutex_unlock(&client_mutex
);
3235 static void snd_soc_component_cleanup(struct snd_soc_component
*component
)
3237 snd_soc_unregister_dais(component
);
3238 kfree(component
->name
);
3241 static void snd_soc_component_del_unlocked(struct snd_soc_component
*component
)
3243 list_del(&component
->list
);
3246 int snd_soc_register_component(struct device
*dev
,
3247 const struct snd_soc_component_driver
*cmpnt_drv
,
3248 struct snd_soc_dai_driver
*dai_drv
,
3251 struct snd_soc_component
*cmpnt
;
3254 cmpnt
= kzalloc(sizeof(*cmpnt
), GFP_KERNEL
);
3256 dev_err(dev
, "ASoC: Failed to allocate memory\n");
3260 ret
= snd_soc_component_initialize(cmpnt
, cmpnt_drv
, dev
);
3264 cmpnt
->ignore_pmdown_time
= true;
3265 cmpnt
->registered_as_component
= true;
3267 ret
= snd_soc_register_dais(cmpnt
, dai_drv
, num_dai
, true);
3269 dev_err(dev
, "ASoC: Failed to register DAIs: %d\n", ret
);
3273 snd_soc_component_add(cmpnt
);
3278 snd_soc_component_cleanup(cmpnt
);
3283 EXPORT_SYMBOL_GPL(snd_soc_register_component
);
3286 * snd_soc_unregister_component - Unregister a component from the ASoC core
3288 * @dev: The device to unregister
3290 void snd_soc_unregister_component(struct device
*dev
)
3292 struct snd_soc_component
*cmpnt
;
3294 mutex_lock(&client_mutex
);
3295 list_for_each_entry(cmpnt
, &component_list
, list
) {
3296 if (dev
== cmpnt
->dev
&& cmpnt
->registered_as_component
)
3299 mutex_unlock(&client_mutex
);
3303 snd_soc_tplg_component_remove(cmpnt
, SND_SOC_TPLG_INDEX_ALL
);
3304 snd_soc_component_del_unlocked(cmpnt
);
3305 mutex_unlock(&client_mutex
);
3306 snd_soc_component_cleanup(cmpnt
);
3309 EXPORT_SYMBOL_GPL(snd_soc_unregister_component
);
3311 static int snd_soc_platform_drv_probe(struct snd_soc_component
*component
)
3313 struct snd_soc_platform
*platform
= snd_soc_component_to_platform(component
);
3315 return platform
->driver
->probe(platform
);
3318 static void snd_soc_platform_drv_remove(struct snd_soc_component
*component
)
3320 struct snd_soc_platform
*platform
= snd_soc_component_to_platform(component
);
3322 platform
->driver
->remove(platform
);
3325 static int snd_soc_platform_drv_pcm_new(struct snd_soc_pcm_runtime
*rtd
)
3327 struct snd_soc_platform
*platform
= rtd
->platform
;
3329 return platform
->driver
->pcm_new(rtd
);
3332 static void snd_soc_platform_drv_pcm_free(struct snd_pcm
*pcm
)
3334 struct snd_soc_pcm_runtime
*rtd
= pcm
->private_data
;
3335 struct snd_soc_platform
*platform
= rtd
->platform
;
3337 platform
->driver
->pcm_free(pcm
);
3341 * snd_soc_add_platform - Add a platform to the ASoC core
3342 * @dev: The parent device for the platform
3343 * @platform: The platform to add
3344 * @platform_drv: The driver for the platform
3346 int snd_soc_add_platform(struct device
*dev
, struct snd_soc_platform
*platform
,
3347 const struct snd_soc_platform_driver
*platform_drv
)
3351 ret
= snd_soc_component_initialize(&platform
->component
,
3352 &platform_drv
->component_driver
, dev
);
3356 platform
->dev
= dev
;
3357 platform
->driver
= platform_drv
;
3359 if (platform_drv
->probe
)
3360 platform
->component
.probe
= snd_soc_platform_drv_probe
;
3361 if (platform_drv
->remove
)
3362 platform
->component
.remove
= snd_soc_platform_drv_remove
;
3363 if (platform_drv
->pcm_new
)
3364 platform
->component
.pcm_new
= snd_soc_platform_drv_pcm_new
;
3365 if (platform_drv
->pcm_free
)
3366 platform
->component
.pcm_free
= snd_soc_platform_drv_pcm_free
;
3368 #ifdef CONFIG_DEBUG_FS
3369 platform
->component
.debugfs_prefix
= "platform";
3372 mutex_lock(&client_mutex
);
3373 snd_soc_component_add_unlocked(&platform
->component
);
3374 list_add(&platform
->list
, &platform_list
);
3375 mutex_unlock(&client_mutex
);
3377 dev_dbg(dev
, "ASoC: Registered platform '%s'\n",
3378 platform
->component
.name
);
3382 EXPORT_SYMBOL_GPL(snd_soc_add_platform
);
3385 * snd_soc_register_platform - Register a platform with the ASoC core
3387 * @dev: The device for the platform
3388 * @platform_drv: The driver for the platform
3390 int snd_soc_register_platform(struct device
*dev
,
3391 const struct snd_soc_platform_driver
*platform_drv
)
3393 struct snd_soc_platform
*platform
;
3396 dev_dbg(dev
, "ASoC: platform register %s\n", dev_name(dev
));
3398 platform
= kzalloc(sizeof(struct snd_soc_platform
), GFP_KERNEL
);
3399 if (platform
== NULL
)
3402 ret
= snd_soc_add_platform(dev
, platform
, platform_drv
);
3408 EXPORT_SYMBOL_GPL(snd_soc_register_platform
);
3411 * snd_soc_remove_platform - Remove a platform from the ASoC core
3412 * @platform: the platform to remove
3414 void snd_soc_remove_platform(struct snd_soc_platform
*platform
)
3417 mutex_lock(&client_mutex
);
3418 list_del(&platform
->list
);
3419 snd_soc_component_del_unlocked(&platform
->component
);
3420 mutex_unlock(&client_mutex
);
3422 dev_dbg(platform
->dev
, "ASoC: Unregistered platform '%s'\n",
3423 platform
->component
.name
);
3425 snd_soc_component_cleanup(&platform
->component
);
3427 EXPORT_SYMBOL_GPL(snd_soc_remove_platform
);
3429 struct snd_soc_platform
*snd_soc_lookup_platform(struct device
*dev
)
3431 struct snd_soc_platform
*platform
;
3433 mutex_lock(&client_mutex
);
3434 list_for_each_entry(platform
, &platform_list
, list
) {
3435 if (dev
== platform
->dev
) {
3436 mutex_unlock(&client_mutex
);
3440 mutex_unlock(&client_mutex
);
3444 EXPORT_SYMBOL_GPL(snd_soc_lookup_platform
);
3447 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3449 * @dev: platform to unregister
3451 void snd_soc_unregister_platform(struct device
*dev
)
3453 struct snd_soc_platform
*platform
;
3455 platform
= snd_soc_lookup_platform(dev
);
3459 snd_soc_remove_platform(platform
);
3462 EXPORT_SYMBOL_GPL(snd_soc_unregister_platform
);
3464 static u64 codec_format_map
[] = {
3465 SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
,
3466 SNDRV_PCM_FMTBIT_U16_LE
| SNDRV_PCM_FMTBIT_U16_BE
,
3467 SNDRV_PCM_FMTBIT_S24_LE
| SNDRV_PCM_FMTBIT_S24_BE
,
3468 SNDRV_PCM_FMTBIT_U24_LE
| SNDRV_PCM_FMTBIT_U24_BE
,
3469 SNDRV_PCM_FMTBIT_S32_LE
| SNDRV_PCM_FMTBIT_S32_BE
,
3470 SNDRV_PCM_FMTBIT_U32_LE
| SNDRV_PCM_FMTBIT_U32_BE
,
3471 SNDRV_PCM_FMTBIT_S24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
3472 SNDRV_PCM_FMTBIT_U24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
3473 SNDRV_PCM_FMTBIT_S20_3LE
| SNDRV_PCM_FMTBIT_S20_3BE
,
3474 SNDRV_PCM_FMTBIT_U20_3LE
| SNDRV_PCM_FMTBIT_U20_3BE
,
3475 SNDRV_PCM_FMTBIT_S18_3LE
| SNDRV_PCM_FMTBIT_S18_3BE
,
3476 SNDRV_PCM_FMTBIT_U18_3LE
| SNDRV_PCM_FMTBIT_U18_3BE
,
3477 SNDRV_PCM_FMTBIT_FLOAT_LE
| SNDRV_PCM_FMTBIT_FLOAT_BE
,
3478 SNDRV_PCM_FMTBIT_FLOAT64_LE
| SNDRV_PCM_FMTBIT_FLOAT64_BE
,
3479 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3480 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE
,
3483 /* Fix up the DAI formats for endianness: codecs don't actually see
3484 * the endianness of the data but we're using the CPU format
3485 * definitions which do need to include endianness so we ensure that
3486 * codec DAIs always have both big and little endian variants set.
3488 static void fixup_codec_formats(struct snd_soc_pcm_stream
*stream
)
3492 for (i
= 0; i
< ARRAY_SIZE(codec_format_map
); i
++)
3493 if (stream
->formats
& codec_format_map
[i
])
3494 stream
->formats
|= codec_format_map
[i
];
3497 static int snd_soc_codec_drv_probe(struct snd_soc_component
*component
)
3499 struct snd_soc_codec
*codec
= snd_soc_component_to_codec(component
);
3501 return codec
->driver
->probe(codec
);
3504 static void snd_soc_codec_drv_remove(struct snd_soc_component
*component
)
3506 struct snd_soc_codec
*codec
= snd_soc_component_to_codec(component
);
3508 codec
->driver
->remove(codec
);
3511 static int snd_soc_codec_drv_suspend(struct snd_soc_component
*component
)
3513 struct snd_soc_codec
*codec
= snd_soc_component_to_codec(component
);
3515 return codec
->driver
->suspend(codec
);
3518 static int snd_soc_codec_drv_resume(struct snd_soc_component
*component
)
3520 struct snd_soc_codec
*codec
= snd_soc_component_to_codec(component
);
3522 return codec
->driver
->resume(codec
);
3525 static int snd_soc_codec_drv_write(struct snd_soc_component
*component
,
3526 unsigned int reg
, unsigned int val
)
3528 struct snd_soc_codec
*codec
= snd_soc_component_to_codec(component
);
3530 return codec
->driver
->write(codec
, reg
, val
);
3533 static int snd_soc_codec_drv_read(struct snd_soc_component
*component
,
3534 unsigned int reg
, unsigned int *val
)
3536 struct snd_soc_codec
*codec
= snd_soc_component_to_codec(component
);
3538 *val
= codec
->driver
->read(codec
, reg
);
3543 static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context
*dapm
,
3544 enum snd_soc_bias_level level
)
3546 struct snd_soc_codec
*codec
= snd_soc_dapm_to_codec(dapm
);
3548 return codec
->driver
->set_bias_level(codec
, level
);
3552 * snd_soc_register_codec - Register a codec with the ASoC core
3554 * @dev: The parent device for this codec
3555 * @codec_drv: Codec driver
3556 * @dai_drv: The associated DAI driver
3557 * @num_dai: Number of DAIs
3559 int snd_soc_register_codec(struct device
*dev
,
3560 const struct snd_soc_codec_driver
*codec_drv
,
3561 struct snd_soc_dai_driver
*dai_drv
,
3564 struct snd_soc_dapm_context
*dapm
;
3565 struct snd_soc_codec
*codec
;
3566 struct snd_soc_dai
*dai
;
3569 dev_dbg(dev
, "codec register %s\n", dev_name(dev
));
3571 codec
= kzalloc(sizeof(struct snd_soc_codec
), GFP_KERNEL
);
3575 codec
->component
.codec
= codec
;
3577 ret
= snd_soc_component_initialize(&codec
->component
,
3578 &codec_drv
->component_driver
, dev
);
3582 if (codec_drv
->probe
)
3583 codec
->component
.probe
= snd_soc_codec_drv_probe
;
3584 if (codec_drv
->remove
)
3585 codec
->component
.remove
= snd_soc_codec_drv_remove
;
3586 if (codec_drv
->suspend
)
3587 codec
->component
.suspend
= snd_soc_codec_drv_suspend
;
3588 if (codec_drv
->resume
)
3589 codec
->component
.resume
= snd_soc_codec_drv_resume
;
3590 if (codec_drv
->write
)
3591 codec
->component
.write
= snd_soc_codec_drv_write
;
3592 if (codec_drv
->read
)
3593 codec
->component
.read
= snd_soc_codec_drv_read
;
3594 codec
->component
.ignore_pmdown_time
= codec_drv
->ignore_pmdown_time
;
3596 dapm
= snd_soc_codec_get_dapm(codec
);
3597 dapm
->idle_bias_off
= codec_drv
->idle_bias_off
;
3598 dapm
->suspend_bias_off
= codec_drv
->suspend_bias_off
;
3599 if (codec_drv
->seq_notifier
)
3600 dapm
->seq_notifier
= codec_drv
->seq_notifier
;
3601 if (codec_drv
->set_bias_level
)
3602 dapm
->set_bias_level
= snd_soc_codec_set_bias_level
;
3604 codec
->driver
= codec_drv
;
3605 codec
->component
.val_bytes
= codec_drv
->reg_word_size
;
3607 #ifdef CONFIG_DEBUG_FS
3608 codec
->component
.init_debugfs
= soc_init_codec_debugfs
;
3609 codec
->component
.debugfs_prefix
= "codec";
3612 if (codec_drv
->get_regmap
)
3613 codec
->component
.regmap
= codec_drv
->get_regmap(dev
);
3615 for (i
= 0; i
< num_dai
; i
++) {
3616 fixup_codec_formats(&dai_drv
[i
].playback
);
3617 fixup_codec_formats(&dai_drv
[i
].capture
);
3620 ret
= snd_soc_register_dais(&codec
->component
, dai_drv
, num_dai
, false);
3622 dev_err(dev
, "ASoC: Failed to register DAIs: %d\n", ret
);
3626 list_for_each_entry(dai
, &codec
->component
.dai_list
, list
)
3629 mutex_lock(&client_mutex
);
3630 snd_soc_component_add_unlocked(&codec
->component
);
3631 list_add(&codec
->list
, &codec_list
);
3632 mutex_unlock(&client_mutex
);
3634 dev_dbg(codec
->dev
, "ASoC: Registered codec '%s'\n",
3635 codec
->component
.name
);
3639 snd_soc_component_cleanup(&codec
->component
);
3644 EXPORT_SYMBOL_GPL(snd_soc_register_codec
);
3647 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3649 * @dev: codec to unregister
3651 void snd_soc_unregister_codec(struct device
*dev
)
3653 struct snd_soc_codec
*codec
;
3655 mutex_lock(&client_mutex
);
3656 list_for_each_entry(codec
, &codec_list
, list
) {
3657 if (dev
== codec
->dev
)
3660 mutex_unlock(&client_mutex
);
3664 list_del(&codec
->list
);
3665 snd_soc_component_del_unlocked(&codec
->component
);
3666 mutex_unlock(&client_mutex
);
3668 dev_dbg(codec
->dev
, "ASoC: Unregistered codec '%s'\n",
3669 codec
->component
.name
);
3671 snd_soc_component_cleanup(&codec
->component
);
3672 snd_soc_cache_exit(codec
);
3675 EXPORT_SYMBOL_GPL(snd_soc_unregister_codec
);
3677 /* Retrieve a card's name from device tree */
3678 int snd_soc_of_parse_card_name(struct snd_soc_card
*card
,
3679 const char *propname
)
3681 struct device_node
*np
;
3685 pr_err("card->dev is not set before calling %s\n", __func__
);
3689 np
= card
->dev
->of_node
;
3691 ret
= of_property_read_string_index(np
, propname
, 0, &card
->name
);
3693 * EINVAL means the property does not exist. This is fine providing
3694 * card->name was previously set, which is checked later in
3695 * snd_soc_register_card.
3697 if (ret
< 0 && ret
!= -EINVAL
) {
3699 "ASoC: Property '%s' could not be read: %d\n",
3706 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name
);
3708 static const struct snd_soc_dapm_widget simple_widgets
[] = {
3709 SND_SOC_DAPM_MIC("Microphone", NULL
),
3710 SND_SOC_DAPM_LINE("Line", NULL
),
3711 SND_SOC_DAPM_HP("Headphone", NULL
),
3712 SND_SOC_DAPM_SPK("Speaker", NULL
),
3715 int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card
*card
,
3716 const char *propname
)
3718 struct device_node
*np
= card
->dev
->of_node
;
3719 struct snd_soc_dapm_widget
*widgets
;
3720 const char *template, *wname
;
3721 int i
, j
, num_widgets
, ret
;
3723 num_widgets
= of_property_count_strings(np
, propname
);
3724 if (num_widgets
< 0) {
3726 "ASoC: Property '%s' does not exist\n", propname
);
3729 if (num_widgets
& 1) {
3731 "ASoC: Property '%s' length is not even\n", propname
);
3737 dev_err(card
->dev
, "ASoC: Property '%s's length is zero\n",
3742 widgets
= devm_kcalloc(card
->dev
, num_widgets
, sizeof(*widgets
),
3746 "ASoC: Could not allocate memory for widgets\n");
3750 for (i
= 0; i
< num_widgets
; i
++) {
3751 ret
= of_property_read_string_index(np
, propname
,
3755 "ASoC: Property '%s' index %d read error:%d\n",
3756 propname
, 2 * i
, ret
);
3760 for (j
= 0; j
< ARRAY_SIZE(simple_widgets
); j
++) {
3761 if (!strncmp(template, simple_widgets
[j
].name
,
3762 strlen(simple_widgets
[j
].name
))) {
3763 widgets
[i
] = simple_widgets
[j
];
3768 if (j
>= ARRAY_SIZE(simple_widgets
)) {
3770 "ASoC: DAPM widget '%s' is not supported\n",
3775 ret
= of_property_read_string_index(np
, propname
,
3780 "ASoC: Property '%s' index %d read error:%d\n",
3781 propname
, (2 * i
) + 1, ret
);
3785 widgets
[i
].name
= wname
;
3788 card
->of_dapm_widgets
= widgets
;
3789 card
->num_of_dapm_widgets
= num_widgets
;
3793 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets
);
3795 static int snd_soc_of_get_slot_mask(struct device_node
*np
,
3796 const char *prop_name
,
3800 const __be32
*of_slot_mask
= of_get_property(np
, prop_name
, &val
);
3806 for (i
= 0; i
< val
; i
++)
3807 if (be32_to_cpup(&of_slot_mask
[i
]))
3813 int snd_soc_of_parse_tdm_slot(struct device_node
*np
,
3814 unsigned int *tx_mask
,
3815 unsigned int *rx_mask
,
3816 unsigned int *slots
,
3817 unsigned int *slot_width
)
3823 snd_soc_of_get_slot_mask(np
, "dai-tdm-slot-tx-mask", tx_mask
);
3825 snd_soc_of_get_slot_mask(np
, "dai-tdm-slot-rx-mask", rx_mask
);
3827 if (of_property_read_bool(np
, "dai-tdm-slot-num")) {
3828 ret
= of_property_read_u32(np
, "dai-tdm-slot-num", &val
);
3836 if (of_property_read_bool(np
, "dai-tdm-slot-width")) {
3837 ret
= of_property_read_u32(np
, "dai-tdm-slot-width", &val
);
3847 EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot
);
3849 void snd_soc_of_parse_audio_prefix(struct snd_soc_card
*card
,
3850 struct snd_soc_codec_conf
*codec_conf
,
3851 struct device_node
*of_node
,
3852 const char *propname
)
3854 struct device_node
*np
= card
->dev
->of_node
;
3858 ret
= of_property_read_string(np
, propname
, &str
);
3860 /* no prefix is not error */
3864 codec_conf
->of_node
= of_node
;
3865 codec_conf
->name_prefix
= str
;
3867 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_prefix
);
3869 int snd_soc_of_parse_audio_routing(struct snd_soc_card
*card
,
3870 const char *propname
)
3872 struct device_node
*np
= card
->dev
->of_node
;
3874 struct snd_soc_dapm_route
*routes
;
3877 num_routes
= of_property_count_strings(np
, propname
);
3878 if (num_routes
< 0 || num_routes
& 1) {
3880 "ASoC: Property '%s' does not exist or its length is not even\n",
3886 dev_err(card
->dev
, "ASoC: Property '%s's length is zero\n",
3891 routes
= devm_kzalloc(card
->dev
, num_routes
* sizeof(*routes
),
3895 "ASoC: Could not allocate DAPM route table\n");
3899 for (i
= 0; i
< num_routes
; i
++) {
3900 ret
= of_property_read_string_index(np
, propname
,
3901 2 * i
, &routes
[i
].sink
);
3904 "ASoC: Property '%s' index %d could not be read: %d\n",
3905 propname
, 2 * i
, ret
);
3908 ret
= of_property_read_string_index(np
, propname
,
3909 (2 * i
) + 1, &routes
[i
].source
);
3912 "ASoC: Property '%s' index %d could not be read: %d\n",
3913 propname
, (2 * i
) + 1, ret
);
3918 card
->num_of_dapm_routes
= num_routes
;
3919 card
->of_dapm_routes
= routes
;
3923 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing
);
3925 unsigned int snd_soc_of_parse_daifmt(struct device_node
*np
,
3927 struct device_node
**bitclkmaster
,
3928 struct device_node
**framemaster
)
3932 unsigned int format
= 0;
3938 } of_fmt_table
[] = {
3939 { "i2s", SND_SOC_DAIFMT_I2S
},
3940 { "right_j", SND_SOC_DAIFMT_RIGHT_J
},
3941 { "left_j", SND_SOC_DAIFMT_LEFT_J
},
3942 { "dsp_a", SND_SOC_DAIFMT_DSP_A
},
3943 { "dsp_b", SND_SOC_DAIFMT_DSP_B
},
3944 { "ac97", SND_SOC_DAIFMT_AC97
},
3945 { "pdm", SND_SOC_DAIFMT_PDM
},
3946 { "msb", SND_SOC_DAIFMT_MSB
},
3947 { "lsb", SND_SOC_DAIFMT_LSB
},
3954 * check "[prefix]format = xxx"
3955 * SND_SOC_DAIFMT_FORMAT_MASK area
3957 snprintf(prop
, sizeof(prop
), "%sformat", prefix
);
3958 ret
= of_property_read_string(np
, prop
, &str
);
3960 for (i
= 0; i
< ARRAY_SIZE(of_fmt_table
); i
++) {
3961 if (strcmp(str
, of_fmt_table
[i
].name
) == 0) {
3962 format
|= of_fmt_table
[i
].val
;
3969 * check "[prefix]continuous-clock"
3970 * SND_SOC_DAIFMT_CLOCK_MASK area
3972 snprintf(prop
, sizeof(prop
), "%scontinuous-clock", prefix
);
3973 if (of_property_read_bool(np
, prop
))
3974 format
|= SND_SOC_DAIFMT_CONT
;
3976 format
|= SND_SOC_DAIFMT_GATED
;
3979 * check "[prefix]bitclock-inversion"
3980 * check "[prefix]frame-inversion"
3981 * SND_SOC_DAIFMT_INV_MASK area
3983 snprintf(prop
, sizeof(prop
), "%sbitclock-inversion", prefix
);
3984 bit
= !!of_get_property(np
, prop
, NULL
);
3986 snprintf(prop
, sizeof(prop
), "%sframe-inversion", prefix
);
3987 frame
= !!of_get_property(np
, prop
, NULL
);
3989 switch ((bit
<< 4) + frame
) {
3991 format
|= SND_SOC_DAIFMT_IB_IF
;
3994 format
|= SND_SOC_DAIFMT_IB_NF
;
3997 format
|= SND_SOC_DAIFMT_NB_IF
;
4000 /* SND_SOC_DAIFMT_NB_NF is default */
4005 * check "[prefix]bitclock-master"
4006 * check "[prefix]frame-master"
4007 * SND_SOC_DAIFMT_MASTER_MASK area
4009 snprintf(prop
, sizeof(prop
), "%sbitclock-master", prefix
);
4010 bit
= !!of_get_property(np
, prop
, NULL
);
4011 if (bit
&& bitclkmaster
)
4012 *bitclkmaster
= of_parse_phandle(np
, prop
, 0);
4014 snprintf(prop
, sizeof(prop
), "%sframe-master", prefix
);
4015 frame
= !!of_get_property(np
, prop
, NULL
);
4016 if (frame
&& framemaster
)
4017 *framemaster
= of_parse_phandle(np
, prop
, 0);
4019 switch ((bit
<< 4) + frame
) {
4021 format
|= SND_SOC_DAIFMT_CBM_CFM
;
4024 format
|= SND_SOC_DAIFMT_CBM_CFS
;
4027 format
|= SND_SOC_DAIFMT_CBS_CFM
;
4030 format
|= SND_SOC_DAIFMT_CBS_CFS
;
4036 EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt
);
4038 int snd_soc_get_dai_name(struct of_phandle_args
*args
,
4039 const char **dai_name
)
4041 struct snd_soc_component
*pos
;
4042 struct device_node
*component_of_node
;
4043 int ret
= -EPROBE_DEFER
;
4045 mutex_lock(&client_mutex
);
4046 list_for_each_entry(pos
, &component_list
, list
) {
4047 component_of_node
= pos
->dev
->of_node
;
4048 if (!component_of_node
&& pos
->dev
->parent
)
4049 component_of_node
= pos
->dev
->parent
->of_node
;
4051 if (component_of_node
!= args
->np
)
4054 if (pos
->driver
->of_xlate_dai_name
) {
4055 ret
= pos
->driver
->of_xlate_dai_name(pos
,
4061 switch (args
->args_count
) {
4063 id
= 0; /* same as dai_drv[0] */
4073 if (id
< 0 || id
>= pos
->num_dai
) {
4080 *dai_name
= pos
->dai_drv
[id
].name
;
4082 *dai_name
= pos
->name
;
4087 mutex_unlock(&client_mutex
);
4090 EXPORT_SYMBOL_GPL(snd_soc_get_dai_name
);
4092 int snd_soc_of_get_dai_name(struct device_node
*of_node
,
4093 const char **dai_name
)
4095 struct of_phandle_args args
;
4098 ret
= of_parse_phandle_with_args(of_node
, "sound-dai",
4099 "#sound-dai-cells", 0, &args
);
4103 ret
= snd_soc_get_dai_name(&args
, dai_name
);
4105 of_node_put(args
.np
);
4109 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name
);
4112 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
4114 * @of_node: Device node
4115 * @dai_link: DAI link
4117 * Builds an array of CODEC DAI components from the DAI link property
4119 * The array is set in the DAI link and the number of DAIs is set accordingly.
4120 * The device nodes in the array (of_node) must be dereferenced by the caller.
4122 * Returns 0 for success
4124 int snd_soc_of_get_dai_link_codecs(struct device
*dev
,
4125 struct device_node
*of_node
,
4126 struct snd_soc_dai_link
*dai_link
)
4128 struct of_phandle_args args
;
4129 struct snd_soc_dai_link_component
*component
;
4131 int index
, num_codecs
, ret
;
4133 /* Count the number of CODECs */
4135 num_codecs
= of_count_phandle_with_args(of_node
, name
,
4136 "#sound-dai-cells");
4137 if (num_codecs
<= 0) {
4138 if (num_codecs
== -ENOENT
)
4139 dev_err(dev
, "No 'sound-dai' property\n");
4141 dev_err(dev
, "Bad phandle in 'sound-dai'\n");
4144 component
= devm_kzalloc(dev
,
4145 sizeof *component
* num_codecs
,
4149 dai_link
->codecs
= component
;
4150 dai_link
->num_codecs
= num_codecs
;
4152 /* Parse the list */
4153 for (index
= 0, component
= dai_link
->codecs
;
4154 index
< dai_link
->num_codecs
;
4155 index
++, component
++) {
4156 ret
= of_parse_phandle_with_args(of_node
, name
,
4161 component
->of_node
= args
.np
;
4162 ret
= snd_soc_get_dai_name(&args
, &component
->dai_name
);
4168 for (index
= 0, component
= dai_link
->codecs
;
4169 index
< dai_link
->num_codecs
;
4170 index
++, component
++) {
4171 if (!component
->of_node
)
4173 of_node_put(component
->of_node
);
4174 component
->of_node
= NULL
;
4176 dai_link
->codecs
= NULL
;
4177 dai_link
->num_codecs
= 0;
4180 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs
);
4182 static int __init
snd_soc_init(void)
4184 snd_soc_debugfs_init();
4185 snd_soc_util_init();
4187 return platform_driver_register(&soc_driver
);
4189 module_init(snd_soc_init
);
4191 static void __exit
snd_soc_exit(void)
4193 snd_soc_util_exit();
4194 snd_soc_debugfs_exit();
4196 platform_driver_unregister(&soc_driver
);
4198 module_exit(snd_soc_exit
);
4200 /* Module information */
4201 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4202 MODULE_DESCRIPTION("ALSA SoC Core");
4203 MODULE_LICENSE("GPL");
4204 MODULE_ALIAS("platform:soc-audio");