1 // SPDX-License-Identifier: GPL-2.0+
3 // soc-core.c -- ALSA SoC Audio Layer
5 // Copyright 2005 Wolfson Microelectronics PLC.
6 // Copyright 2005 Openedhand Ltd.
7 // Copyright (C) 2010 Slimlogic Ltd.
8 // Copyright (C) 2010 Texas Instruments Inc.
11 // with code, comments and ideas from :-
15 // o Add hw rules to enforce rates, etc.
16 // o More testing with other codecs/machines.
17 // o Add more codecs and platforms to ensure good API coverage.
18 // o Support TDM on PCM and I2S
20 #include <linux/module.h>
21 #include <linux/moduleparam.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
25 #include <linux/bitops.h>
26 #include <linux/debugfs.h>
27 #include <linux/platform_device.h>
28 #include <linux/pinctrl/consumer.h>
29 #include <linux/ctype.h>
30 #include <linux/slab.h>
32 #include <linux/of_graph.h>
33 #include <linux/dmi.h>
34 #include <sound/core.h>
35 #include <sound/jack.h>
36 #include <sound/pcm.h>
37 #include <sound/pcm_params.h>
38 #include <sound/soc.h>
39 #include <sound/soc-dpcm.h>
40 #include <sound/soc-topology.h>
41 #include <sound/initval.h>
43 #define CREATE_TRACE_POINTS
44 #include <trace/events/asoc.h>
48 #ifdef CONFIG_DEBUG_FS
49 struct dentry *snd_soc_debugfs_root;
50 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
53 static DEFINE_MUTEX(client_mutex);
54 static LIST_HEAD(component_list);
55 static LIST_HEAD(unbind_card_list);
57 #define for_each_component(component) \
58 list_for_each_entry(component, &component_list, list)
61 * This is a timeout to do a DAPM powerdown after a stream is closed().
62 * It can be used to eliminate pops between different playback streams, e.g.
63 * between two audio tracks.
65 static int pmdown_time = 5000;
66 module_param(pmdown_time, int, 0);
67 MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
70 * If a DMI filed contain strings in this blacklist (e.g.
71 * "Type2 - Board Manufacturer" or "Type1 - TBD by OEM"), it will be taken
72 * as invalid and dropped when setting the card long name from DMI info.
74 static const char * const dmi_blacklist[] = {
75 "To be filled by OEM",
81 NULL, /* terminator */
84 static ssize_t pmdown_time_show(struct device *dev,
85 struct device_attribute *attr, char *buf)
87 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
89 return sprintf(buf, "%ld\n", rtd->pmdown_time);
92 static ssize_t pmdown_time_set(struct device *dev,
93 struct device_attribute *attr,
94 const char *buf, size_t count)
96 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
99 ret = kstrtol(buf, 10, &rtd->pmdown_time);
106 static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
108 static struct attribute *soc_dev_attrs[] = {
109 &dev_attr_pmdown_time.attr,
113 static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
114 struct attribute *attr, int idx)
116 struct device *dev = kobj_to_dev(kobj);
117 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
119 if (attr == &dev_attr_pmdown_time.attr)
120 return attr->mode; /* always visible */
121 return rtd->num_codecs ? attr->mode : 0; /* enabled only with codec */
124 static const struct attribute_group soc_dapm_dev_group = {
125 .attrs = soc_dapm_dev_attrs,
126 .is_visible = soc_dev_attr_is_visible,
129 static const struct attribute_group soc_dev_group = {
130 .attrs = soc_dev_attrs,
131 .is_visible = soc_dev_attr_is_visible,
134 static const struct attribute_group *soc_dev_attr_groups[] = {
140 #ifdef CONFIG_DEBUG_FS
141 static void soc_init_component_debugfs(struct snd_soc_component *component)
143 if (!component->card->debugfs_card_root)
146 if (component->debugfs_prefix) {
149 name = kasprintf(GFP_KERNEL, "%s:%s",
150 component->debugfs_prefix, component->name);
152 component->debugfs_root = debugfs_create_dir(name,
153 component->card->debugfs_card_root);
157 component->debugfs_root = debugfs_create_dir(component->name,
158 component->card->debugfs_card_root);
161 if (!component->debugfs_root) {
162 dev_warn(component->dev,
163 "ASoC: Failed to create component debugfs directory\n");
167 snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component),
168 component->debugfs_root);
171 static void soc_cleanup_component_debugfs(struct snd_soc_component *component)
173 debugfs_remove_recursive(component->debugfs_root);
176 static int dai_list_show(struct seq_file *m, void *v)
178 struct snd_soc_component *component;
179 struct snd_soc_dai *dai;
181 mutex_lock(&client_mutex);
183 for_each_component(component)
184 for_each_component_dais(component, dai)
185 seq_printf(m, "%s\n", dai->name);
187 mutex_unlock(&client_mutex);
191 DEFINE_SHOW_ATTRIBUTE(dai_list);
193 static int component_list_show(struct seq_file *m, void *v)
195 struct snd_soc_component *component;
197 mutex_lock(&client_mutex);
199 for_each_component(component)
200 seq_printf(m, "%s\n", component->name);
202 mutex_unlock(&client_mutex);
206 DEFINE_SHOW_ATTRIBUTE(component_list);
208 static void soc_init_card_debugfs(struct snd_soc_card *card)
210 if (!snd_soc_debugfs_root)
213 card->debugfs_card_root = debugfs_create_dir(card->name,
214 snd_soc_debugfs_root);
215 if (!card->debugfs_card_root) {
217 "ASoC: Failed to create card debugfs directory\n");
221 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
222 card->debugfs_card_root,
224 if (!card->debugfs_pop_time)
226 "ASoC: Failed to create pop time debugfs file\n");
229 static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
231 if (!card->debugfs_card_root)
233 debugfs_remove_recursive(card->debugfs_card_root);
234 card->debugfs_card_root = NULL;
237 static void snd_soc_debugfs_init(void)
239 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
240 if (IS_ERR_OR_NULL(snd_soc_debugfs_root)) {
241 pr_warn("ASoC: Failed to create debugfs directory\n");
242 snd_soc_debugfs_root = NULL;
246 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
248 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
250 if (!debugfs_create_file("components", 0444, snd_soc_debugfs_root, NULL,
251 &component_list_fops))
252 pr_warn("ASoC: Failed to create component list debugfs file\n");
255 static void snd_soc_debugfs_exit(void)
257 debugfs_remove_recursive(snd_soc_debugfs_root);
262 static inline void soc_init_component_debugfs(
263 struct snd_soc_component *component)
267 static inline void soc_cleanup_component_debugfs(
268 struct snd_soc_component *component)
272 static inline void soc_init_card_debugfs(struct snd_soc_card *card)
276 static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
280 static inline void snd_soc_debugfs_init(void)
284 static inline void snd_soc_debugfs_exit(void)
290 static int snd_soc_rtdcom_add(struct snd_soc_pcm_runtime *rtd,
291 struct snd_soc_component *component)
293 struct snd_soc_rtdcom_list *rtdcom;
294 struct snd_soc_rtdcom_list *new_rtdcom;
296 for_each_rtdcom(rtd, rtdcom) {
297 /* already connected */
298 if (rtdcom->component == component)
302 new_rtdcom = kmalloc(sizeof(*new_rtdcom), GFP_KERNEL);
306 new_rtdcom->component = component;
307 INIT_LIST_HEAD(&new_rtdcom->list);
309 list_add_tail(&new_rtdcom->list, &rtd->component_list);
314 static void snd_soc_rtdcom_del_all(struct snd_soc_pcm_runtime *rtd)
316 struct snd_soc_rtdcom_list *rtdcom1, *rtdcom2;
318 for_each_rtdcom_safe(rtd, rtdcom1, rtdcom2)
321 INIT_LIST_HEAD(&rtd->component_list);
324 struct snd_soc_component *snd_soc_rtdcom_lookup(struct snd_soc_pcm_runtime *rtd,
325 const char *driver_name)
327 struct snd_soc_rtdcom_list *rtdcom;
332 for_each_rtdcom(rtd, rtdcom) {
333 const char *component_name = rtdcom->component->driver->name;
338 if ((component_name == driver_name) ||
339 strcmp(component_name, driver_name) == 0)
340 return rtdcom->component;
345 EXPORT_SYMBOL_GPL(snd_soc_rtdcom_lookup);
347 struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
348 const char *dai_link, int stream)
350 struct snd_soc_pcm_runtime *rtd;
352 for_each_card_rtds(card, rtd) {
353 if (rtd->dai_link->no_pcm &&
354 !strcmp(rtd->dai_link->name, dai_link))
355 return rtd->pcm->streams[stream].substream;
357 dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
360 EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
362 static const struct snd_soc_ops null_snd_soc_ops;
364 static struct snd_soc_pcm_runtime *soc_new_pcm_runtime(
365 struct snd_soc_card *card, struct snd_soc_dai_link *dai_link)
367 struct snd_soc_pcm_runtime *rtd;
369 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
373 INIT_LIST_HEAD(&rtd->component_list);
375 rtd->dai_link = dai_link;
376 if (!rtd->dai_link->ops)
377 rtd->dai_link->ops = &null_snd_soc_ops;
379 rtd->codec_dais = kcalloc(dai_link->num_codecs,
380 sizeof(struct snd_soc_dai *),
382 if (!rtd->codec_dais) {
390 static void soc_free_pcm_runtime(struct snd_soc_pcm_runtime *rtd)
392 kfree(rtd->codec_dais);
393 snd_soc_rtdcom_del_all(rtd);
397 static void soc_add_pcm_runtime(struct snd_soc_card *card,
398 struct snd_soc_pcm_runtime *rtd)
400 list_add_tail(&rtd->list, &card->rtd_list);
401 rtd->num = card->num_rtd;
405 static void soc_remove_pcm_runtimes(struct snd_soc_card *card)
407 struct snd_soc_pcm_runtime *rtd, *_rtd;
409 for_each_card_rtds_safe(card, rtd, _rtd) {
410 list_del(&rtd->list);
411 soc_free_pcm_runtime(rtd);
417 struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
418 const char *dai_link)
420 struct snd_soc_pcm_runtime *rtd;
422 for_each_card_rtds(card, rtd) {
423 if (!strcmp(rtd->dai_link->name, dai_link))
426 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
429 EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
431 static void snd_soc_flush_all_delayed_work(struct snd_soc_card *card)
433 struct snd_soc_pcm_runtime *rtd;
435 for_each_card_rtds(card, rtd)
436 flush_delayed_work(&rtd->delayed_work);
439 static void codec2codec_close_delayed_work(struct work_struct *work)
442 * Currently nothing to do for c2c links
443 * Since c2c links are internal nodes in the DAPM graph and
444 * don't interface with the outside world or application layer
445 * we don't have to do any special handling on close.
449 #ifdef CONFIG_PM_SLEEP
450 /* powers down audio subsystem for suspend */
451 int snd_soc_suspend(struct device *dev)
453 struct snd_soc_card *card = dev_get_drvdata(dev);
454 struct snd_soc_component *component;
455 struct snd_soc_pcm_runtime *rtd;
458 /* If the card is not initialized yet there is nothing to do */
459 if (!card->instantiated)
463 * Due to the resume being scheduled into a workqueue we could
464 * suspend before that's finished - wait for it to complete.
466 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
468 /* we're going to block userspace touching us until resume completes */
469 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
471 /* mute any active DACs */
472 for_each_card_rtds(card, rtd) {
473 struct snd_soc_dai *dai;
475 if (rtd->dai_link->ignore_suspend)
478 for_each_rtd_codec_dai(rtd, i, dai) {
479 struct snd_soc_dai_driver *drv = dai->driver;
481 if (drv->ops->digital_mute && dai->playback_active)
482 drv->ops->digital_mute(dai, 1);
486 /* suspend all pcms */
487 for_each_card_rtds(card, rtd) {
488 if (rtd->dai_link->ignore_suspend)
491 snd_pcm_suspend_all(rtd->pcm);
494 if (card->suspend_pre)
495 card->suspend_pre(card);
497 for_each_card_rtds(card, rtd) {
498 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
500 if (rtd->dai_link->ignore_suspend)
503 if (cpu_dai->driver->suspend && !cpu_dai->driver->bus_control)
504 cpu_dai->driver->suspend(cpu_dai);
507 /* close any waiting streams */
508 snd_soc_flush_all_delayed_work(card);
510 for_each_card_rtds(card, rtd) {
512 if (rtd->dai_link->ignore_suspend)
515 snd_soc_dapm_stream_event(rtd,
516 SNDRV_PCM_STREAM_PLAYBACK,
517 SND_SOC_DAPM_STREAM_SUSPEND);
519 snd_soc_dapm_stream_event(rtd,
520 SNDRV_PCM_STREAM_CAPTURE,
521 SND_SOC_DAPM_STREAM_SUSPEND);
524 /* Recheck all endpoints too, their state is affected by suspend */
525 dapm_mark_endpoints_dirty(card);
526 snd_soc_dapm_sync(&card->dapm);
528 /* suspend all COMPONENTs */
529 for_each_card_components(card, component) {
530 struct snd_soc_dapm_context *dapm =
531 snd_soc_component_get_dapm(component);
534 * If there are paths active then the COMPONENT will be held
535 * with bias _ON and should not be suspended.
537 if (!component->suspended) {
538 switch (snd_soc_dapm_get_bias_level(dapm)) {
539 case SND_SOC_BIAS_STANDBY:
541 * If the COMPONENT is capable of idle
542 * bias off then being in STANDBY
543 * means it's doing something,
544 * otherwise fall through.
546 if (dapm->idle_bias_off) {
547 dev_dbg(component->dev,
548 "ASoC: idle_bias_off CODEC on over suspend\n");
553 case SND_SOC_BIAS_OFF:
554 if (component->driver->suspend)
555 component->driver->suspend(component);
556 component->suspended = 1;
557 if (component->regmap)
558 regcache_mark_dirty(component->regmap);
559 /* deactivate pins to sleep state */
560 pinctrl_pm_select_sleep_state(component->dev);
563 dev_dbg(component->dev,
564 "ASoC: COMPONENT is on over suspend\n");
570 for_each_card_rtds(card, rtd) {
571 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
573 if (rtd->dai_link->ignore_suspend)
576 if (cpu_dai->driver->suspend && cpu_dai->driver->bus_control)
577 cpu_dai->driver->suspend(cpu_dai);
579 /* deactivate pins to sleep state */
580 pinctrl_pm_select_sleep_state(cpu_dai->dev);
583 if (card->suspend_post)
584 card->suspend_post(card);
588 EXPORT_SYMBOL_GPL(snd_soc_suspend);
591 * deferred resume work, so resume can complete before we finished
592 * setting our codec back up, which can be very slow on I2C
594 static void soc_resume_deferred(struct work_struct *work)
596 struct snd_soc_card *card =
597 container_of(work, struct snd_soc_card,
598 deferred_resume_work);
599 struct snd_soc_pcm_runtime *rtd;
600 struct snd_soc_component *component;
604 * our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
605 * so userspace apps are blocked from touching us
608 dev_dbg(card->dev, "ASoC: starting resume work\n");
610 /* Bring us up into D2 so that DAPM starts enabling things */
611 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
613 if (card->resume_pre)
614 card->resume_pre(card);
616 /* resume control bus DAIs */
617 for_each_card_rtds(card, rtd) {
618 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
620 if (rtd->dai_link->ignore_suspend)
623 if (cpu_dai->driver->resume && cpu_dai->driver->bus_control)
624 cpu_dai->driver->resume(cpu_dai);
627 for_each_card_components(card, component) {
628 if (component->suspended) {
629 if (component->driver->resume)
630 component->driver->resume(component);
631 component->suspended = 0;
635 for_each_card_rtds(card, rtd) {
637 if (rtd->dai_link->ignore_suspend)
640 snd_soc_dapm_stream_event(rtd,
641 SNDRV_PCM_STREAM_PLAYBACK,
642 SND_SOC_DAPM_STREAM_RESUME);
644 snd_soc_dapm_stream_event(rtd,
645 SNDRV_PCM_STREAM_CAPTURE,
646 SND_SOC_DAPM_STREAM_RESUME);
649 /* unmute any active DACs */
650 for_each_card_rtds(card, rtd) {
651 struct snd_soc_dai *dai;
653 if (rtd->dai_link->ignore_suspend)
656 for_each_rtd_codec_dai(rtd, i, dai) {
657 struct snd_soc_dai_driver *drv = dai->driver;
659 if (drv->ops->digital_mute && dai->playback_active)
660 drv->ops->digital_mute(dai, 0);
664 for_each_card_rtds(card, rtd) {
665 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
667 if (rtd->dai_link->ignore_suspend)
670 if (cpu_dai->driver->resume && !cpu_dai->driver->bus_control)
671 cpu_dai->driver->resume(cpu_dai);
674 if (card->resume_post)
675 card->resume_post(card);
677 dev_dbg(card->dev, "ASoC: resume work completed\n");
679 /* Recheck all endpoints too, their state is affected by suspend */
680 dapm_mark_endpoints_dirty(card);
681 snd_soc_dapm_sync(&card->dapm);
683 /* userspace can access us now we are back as we were before */
684 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
687 /* powers up audio subsystem after a suspend */
688 int snd_soc_resume(struct device *dev)
690 struct snd_soc_card *card = dev_get_drvdata(dev);
691 bool bus_control = false;
692 struct snd_soc_pcm_runtime *rtd;
694 /* If the card is not initialized yet there is nothing to do */
695 if (!card->instantiated)
698 /* activate pins from sleep state */
699 for_each_card_rtds(card, rtd) {
700 struct snd_soc_dai *codec_dai;
701 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
705 pinctrl_pm_select_default_state(cpu_dai->dev);
707 for_each_rtd_codec_dai(rtd, j, codec_dai) {
708 if (codec_dai->active)
709 pinctrl_pm_select_default_state(codec_dai->dev);
714 * DAIs that also act as the control bus master might have other drivers
715 * hanging off them so need to resume immediately. Other drivers don't
716 * have that problem and may take a substantial amount of time to resume
717 * due to I/O costs and anti-pop so handle them out of line.
719 for_each_card_rtds(card, rtd) {
720 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
722 bus_control |= cpu_dai->driver->bus_control;
725 dev_dbg(dev, "ASoC: Resuming control bus master immediately\n");
726 soc_resume_deferred(&card->deferred_resume_work);
728 dev_dbg(dev, "ASoC: Scheduling resume work\n");
729 if (!schedule_work(&card->deferred_resume_work))
730 dev_err(dev, "ASoC: resume work item may be lost\n");
735 EXPORT_SYMBOL_GPL(snd_soc_resume);
737 #define snd_soc_suspend NULL
738 #define snd_soc_resume NULL
741 static const struct snd_soc_dai_ops null_dai_ops = {
744 static struct snd_soc_component *soc_find_component(
745 const struct device_node *of_node, const char *name)
747 struct snd_soc_component *component;
748 struct device_node *component_of_node;
750 lockdep_assert_held(&client_mutex);
752 for_each_component(component) {
754 component_of_node = component->dev->of_node;
755 if (!component_of_node && component->dev->parent)
756 component_of_node = component->dev->parent->of_node;
758 if (component_of_node == of_node)
760 } else if (name && strcmp(component->name, name) == 0) {
768 static int snd_soc_is_matching_component(
769 const struct snd_soc_dai_link_component *dlc,
770 struct snd_soc_component *component)
772 struct device_node *component_of_node;
774 component_of_node = component->dev->of_node;
775 if (!component_of_node && component->dev->parent)
776 component_of_node = component->dev->parent->of_node;
778 if (dlc->of_node && component_of_node != dlc->of_node)
780 if (dlc->name && strcmp(component->name, dlc->name))
787 * snd_soc_find_dai - Find a registered DAI
789 * @dlc: name of the DAI or the DAI driver and optional component info to match
791 * This function will search all registered components and their DAIs to
792 * find the DAI of the same name. The component's of_node and name
793 * should also match if being specified.
795 * Return: pointer of DAI, or NULL if not found.
797 struct snd_soc_dai *snd_soc_find_dai(
798 const struct snd_soc_dai_link_component *dlc)
800 struct snd_soc_component *component;
801 struct snd_soc_dai *dai;
803 lockdep_assert_held(&client_mutex);
805 /* Find CPU DAI from registered DAIs */
806 for_each_component(component) {
807 if (!snd_soc_is_matching_component(dlc, component))
809 for_each_component_dais(component, dai) {
810 if (dlc->dai_name && strcmp(dai->name, dlc->dai_name)
811 && (!dai->driver->name
812 || strcmp(dai->driver->name, dlc->dai_name)))
821 EXPORT_SYMBOL_GPL(snd_soc_find_dai);
824 * snd_soc_find_dai_link - Find a DAI link
827 * @id: DAI link ID to match
828 * @name: DAI link name to match, optional
829 * @stream_name: DAI link stream name to match, optional
831 * This function will search all existing DAI links of the soc card to
832 * find the link of the same ID. Since DAI links may not have their
833 * unique ID, so name and stream name should also match if being
836 * Return: pointer of DAI link, or NULL if not found.
838 struct snd_soc_dai_link *snd_soc_find_dai_link(struct snd_soc_card *card,
839 int id, const char *name,
840 const char *stream_name)
842 struct snd_soc_dai_link *link, *_link;
844 lockdep_assert_held(&client_mutex);
846 for_each_card_links_safe(card, link, _link) {
850 if (name && (!link->name || strcmp(name, link->name)))
853 if (stream_name && (!link->stream_name
854 || strcmp(stream_name, link->stream_name)))
862 EXPORT_SYMBOL_GPL(snd_soc_find_dai_link);
864 static bool soc_is_dai_link_bound(struct snd_soc_card *card,
865 struct snd_soc_dai_link *dai_link)
867 struct snd_soc_pcm_runtime *rtd;
869 for_each_card_rtds(card, rtd) {
870 if (rtd->dai_link == dai_link)
877 static int soc_bind_dai_link(struct snd_soc_card *card,
878 struct snd_soc_dai_link *dai_link)
880 struct snd_soc_pcm_runtime *rtd;
881 struct snd_soc_dai_link_component *codecs;
882 struct snd_soc_dai_link_component cpu_dai_component;
883 struct snd_soc_component *component;
884 struct snd_soc_dai **codec_dais;
887 if (dai_link->ignore)
890 dev_dbg(card->dev, "ASoC: binding %s\n", dai_link->name);
892 if (soc_is_dai_link_bound(card, dai_link)) {
893 dev_dbg(card->dev, "ASoC: dai link %s already bound\n",
898 rtd = soc_new_pcm_runtime(card, dai_link);
902 cpu_dai_component.name = dai_link->cpu_name;
903 cpu_dai_component.of_node = dai_link->cpu_of_node;
904 cpu_dai_component.dai_name = dai_link->cpu_dai_name;
905 rtd->cpu_dai = snd_soc_find_dai(&cpu_dai_component);
907 dev_info(card->dev, "ASoC: CPU DAI %s not registered\n",
908 dai_link->cpu_dai_name);
911 snd_soc_rtdcom_add(rtd, rtd->cpu_dai->component);
913 rtd->num_codecs = dai_link->num_codecs;
915 /* Find CODEC from registered CODECs */
916 codec_dais = rtd->codec_dais;
917 for_each_link_codecs(dai_link, i, codecs) {
918 codec_dais[i] = snd_soc_find_dai(codecs);
919 if (!codec_dais[i]) {
920 dev_info(card->dev, "ASoC: CODEC DAI %s not registered\n",
924 snd_soc_rtdcom_add(rtd, codec_dais[i]->component);
927 /* Single codec links expect codec and codec_dai in runtime data */
928 rtd->codec_dai = codec_dais[0];
930 /* find one from the set of registered platforms */
931 for_each_component(component) {
932 if (!snd_soc_is_matching_component(dai_link->platforms,
936 snd_soc_rtdcom_add(rtd, component);
939 soc_add_pcm_runtime(card, rtd);
943 soc_free_pcm_runtime(rtd);
944 return -EPROBE_DEFER;
947 static void soc_cleanup_component(struct snd_soc_component *component)
949 list_del(&component->card_list);
950 snd_soc_dapm_free(snd_soc_component_get_dapm(component));
951 soc_cleanup_component_debugfs(component);
952 component->card = NULL;
953 if (!component->driver->module_get_upon_open)
954 module_put(component->dev->driver->owner);
957 static void soc_remove_component(struct snd_soc_component *component)
959 if (!component->card)
962 if (component->driver->remove)
963 component->driver->remove(component);
965 soc_cleanup_component(component);
968 static void soc_remove_dai(struct snd_soc_dai *dai, int order)
972 if (!dai || !dai->probed || !dai->driver ||
973 dai->driver->remove_order != order)
976 if (dai->driver->remove) {
977 err = dai->driver->remove(dai);
980 "ASoC: failed to remove %s: %d\n",
986 static void soc_remove_link_dais(struct snd_soc_card *card,
987 struct snd_soc_pcm_runtime *rtd, int order)
990 struct snd_soc_dai *codec_dai;
992 /* unregister the rtd device */
993 if (rtd->dev_registered) {
994 device_unregister(rtd->dev);
995 rtd->dev_registered = 0;
998 /* remove the CODEC DAI */
999 for_each_rtd_codec_dai(rtd, i, codec_dai)
1000 soc_remove_dai(codec_dai, order);
1002 soc_remove_dai(rtd->cpu_dai, order);
1005 static void soc_remove_link_components(struct snd_soc_card *card,
1006 struct snd_soc_pcm_runtime *rtd, int order)
1008 struct snd_soc_component *component;
1009 struct snd_soc_rtdcom_list *rtdcom;
1011 for_each_rtdcom(rtd, rtdcom) {
1012 component = rtdcom->component;
1014 if (component->driver->remove_order == order)
1015 soc_remove_component(component);
1019 static void soc_remove_dai_links(struct snd_soc_card *card)
1022 struct snd_soc_pcm_runtime *rtd;
1023 struct snd_soc_dai_link *link, *_link;
1025 for_each_comp_order(order) {
1026 for_each_card_rtds(card, rtd)
1027 soc_remove_link_dais(card, rtd, order);
1030 for_each_comp_order(order) {
1031 for_each_card_rtds(card, rtd)
1032 soc_remove_link_components(card, rtd, order);
1035 for_each_card_links_safe(card, link, _link) {
1036 if (link->dobj.type == SND_SOC_DOBJ_DAI_LINK)
1037 dev_warn(card->dev, "Topology forgot to remove link %s?\n",
1040 list_del(&link->list);
1044 static int snd_soc_init_platform(struct snd_soc_card *card,
1045 struct snd_soc_dai_link *dai_link)
1047 struct snd_soc_dai_link_component *platform = dai_link->platforms;
1052 * This is glue code for Legacy vs Modern dai_link.
1053 * This function will be removed if all derivers are switched to
1054 * modern style dai_link.
1055 * Driver shouldn't use both legacy and modern style in the same time.
1057 * soc.h :: struct snd_soc_dai_link
1059 /* convert Legacy platform link */
1061 platform = devm_kzalloc(card->dev,
1062 sizeof(struct snd_soc_dai_link_component),
1067 dai_link->platforms = platform;
1068 dai_link->num_platforms = 1;
1069 dai_link->legacy_platform = 1;
1070 platform->name = dai_link->platform_name;
1071 platform->of_node = dai_link->platform_of_node;
1072 platform->dai_name = NULL;
1075 /* if there's no platform we match on the empty platform */
1076 if (!platform->name &&
1078 platform->name = "snd-soc-dummy";
1083 static void soc_cleanup_platform(struct snd_soc_card *card)
1085 struct snd_soc_dai_link *link;
1090 * this function should be removed with snd_soc_init_platform
1093 for_each_card_prelinks(card, i, link) {
1094 if (link->legacy_platform) {
1095 link->legacy_platform = 0;
1096 link->platforms = NULL;
1101 static int snd_soc_init_multicodec(struct snd_soc_card *card,
1102 struct snd_soc_dai_link *dai_link)
1107 * This is glue code for Legacy vs Modern dai_link.
1108 * This function will be removed if all derivers are switched to
1109 * modern style dai_link.
1110 * Driver shouldn't use both legacy and modern style in the same time.
1112 * soc.h :: struct snd_soc_dai_link
1115 /* Legacy codec/codec_dai link is a single entry in multicodec */
1116 if (dai_link->codec_name || dai_link->codec_of_node ||
1117 dai_link->codec_dai_name) {
1118 dai_link->num_codecs = 1;
1120 dai_link->codecs = devm_kzalloc(card->dev,
1121 sizeof(struct snd_soc_dai_link_component),
1123 if (!dai_link->codecs)
1126 dai_link->codecs[0].name = dai_link->codec_name;
1127 dai_link->codecs[0].of_node = dai_link->codec_of_node;
1128 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
1131 if (!dai_link->codecs) {
1132 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
1139 static int soc_init_dai_link(struct snd_soc_card *card,
1140 struct snd_soc_dai_link *link)
1143 struct snd_soc_dai_link_component *codec;
1145 ret = snd_soc_init_platform(card, link);
1147 dev_err(card->dev, "ASoC: failed to init multiplatform\n");
1151 ret = snd_soc_init_multicodec(card, link);
1153 dev_err(card->dev, "ASoC: failed to init multicodec\n");
1157 for_each_link_codecs(link, i, codec) {
1159 * Codec must be specified by 1 of name or OF node,
1160 * not both or neither.
1162 if (!!codec->name ==
1164 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
1168 /* Codec DAI name must be specified */
1169 if (!codec->dai_name) {
1170 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
1177 if (link->num_platforms > 1) {
1179 "ASoC: multi platform is not yet supported %s\n",
1185 * Platform may be specified by either name or OF node, but
1186 * can be left unspecified, and a dummy platform will be used.
1188 if (link->platforms->name && link->platforms->of_node) {
1190 "ASoC: Both platform name/of_node are set for %s\n",
1196 * Defer card registartion if platform dai component is not added to
1199 if ((link->platforms->of_node || link->platforms->name) &&
1200 !soc_find_component(link->platforms->of_node, link->platforms->name))
1201 return -EPROBE_DEFER;
1204 * CPU device may be specified by either name or OF node, but
1205 * can be left unspecified, and will be matched based on DAI
1208 if (link->cpu_name && link->cpu_of_node) {
1210 "ASoC: Neither/both cpu name/of_node are set for %s\n",
1216 * Defer card registartion if cpu dai component is not added to
1219 if ((link->cpu_of_node || link->cpu_name) &&
1220 !soc_find_component(link->cpu_of_node, link->cpu_name))
1221 return -EPROBE_DEFER;
1224 * At least one of CPU DAI name or CPU device name/node must be
1227 if (!link->cpu_dai_name &&
1228 !(link->cpu_name || link->cpu_of_node)) {
1230 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
1238 void snd_soc_disconnect_sync(struct device *dev)
1240 struct snd_soc_component *component =
1241 snd_soc_lookup_component(dev, NULL);
1243 if (!component || !component->card)
1246 snd_card_disconnect_sync(component->card->snd_card);
1248 EXPORT_SYMBOL_GPL(snd_soc_disconnect_sync);
1251 * snd_soc_add_dai_link - Add a DAI link dynamically
1252 * @card: The ASoC card to which the DAI link is added
1253 * @dai_link: The new DAI link to add
1255 * This function adds a DAI link to the ASoC card's link list.
1257 * Note: Topology can use this API to add DAI links when probing the
1258 * topology component. And machine drivers can still define static
1259 * DAI links in dai_link array.
1261 int snd_soc_add_dai_link(struct snd_soc_card *card,
1262 struct snd_soc_dai_link *dai_link)
1264 if (dai_link->dobj.type
1265 && dai_link->dobj.type != SND_SOC_DOBJ_DAI_LINK) {
1266 dev_err(card->dev, "Invalid dai link type %d\n",
1267 dai_link->dobj.type);
1271 lockdep_assert_held(&client_mutex);
1273 * Notify the machine driver for extra initialization
1274 * on the link created by topology.
1276 if (dai_link->dobj.type && card->add_dai_link)
1277 card->add_dai_link(card, dai_link);
1279 list_add_tail(&dai_link->list, &card->dai_link_list);
1283 EXPORT_SYMBOL_GPL(snd_soc_add_dai_link);
1286 * snd_soc_remove_dai_link - Remove a DAI link from the list
1287 * @card: The ASoC card that owns the link
1288 * @dai_link: The DAI link to remove
1290 * This function removes a DAI link from the ASoC card's link list.
1292 * For DAI links previously added by topology, topology should
1293 * remove them by using the dobj embedded in the link.
1295 void snd_soc_remove_dai_link(struct snd_soc_card *card,
1296 struct snd_soc_dai_link *dai_link)
1298 struct snd_soc_dai_link *link, *_link;
1300 if (dai_link->dobj.type
1301 && dai_link->dobj.type != SND_SOC_DOBJ_DAI_LINK) {
1302 dev_err(card->dev, "Invalid dai link type %d\n",
1303 dai_link->dobj.type);
1307 lockdep_assert_held(&client_mutex);
1309 * Notify the machine driver for extra destruction
1310 * on the link created by topology.
1312 if (dai_link->dobj.type && card->remove_dai_link)
1313 card->remove_dai_link(card, dai_link);
1315 for_each_card_links_safe(card, link, _link) {
1316 if (link == dai_link) {
1317 list_del(&link->list);
1322 EXPORT_SYMBOL_GPL(snd_soc_remove_dai_link);
1324 static void soc_set_of_name_prefix(struct snd_soc_component *component)
1326 struct device_node *component_of_node = component->dev->of_node;
1330 if (!component_of_node && component->dev->parent)
1331 component_of_node = component->dev->parent->of_node;
1333 ret = of_property_read_string(component_of_node, "sound-name-prefix",
1336 component->name_prefix = str;
1339 static void soc_set_name_prefix(struct snd_soc_card *card,
1340 struct snd_soc_component *component)
1344 for (i = 0; i < card->num_configs && card->codec_conf; i++) {
1345 struct snd_soc_codec_conf *map = &card->codec_conf[i];
1346 struct device_node *component_of_node = component->dev->of_node;
1348 if (!component_of_node && component->dev->parent)
1349 component_of_node = component->dev->parent->of_node;
1351 if (map->of_node && component_of_node != map->of_node)
1353 if (map->dev_name && strcmp(component->name, map->dev_name))
1355 component->name_prefix = map->name_prefix;
1360 * If there is no configuration table or no match in the table,
1361 * check if a prefix is provided in the node
1363 soc_set_of_name_prefix(component);
1366 static int soc_probe_component(struct snd_soc_card *card,
1367 struct snd_soc_component *component)
1369 struct snd_soc_dapm_context *dapm =
1370 snd_soc_component_get_dapm(component);
1371 struct snd_soc_dai *dai;
1374 if (!strcmp(component->name, "snd-soc-dummy"))
1377 if (component->card) {
1378 if (component->card != card) {
1379 dev_err(component->dev,
1380 "Trying to bind component to card \"%s\" but is already bound to card \"%s\"\n",
1381 card->name, component->card->name);
1387 if (!component->driver->module_get_upon_open &&
1388 !try_module_get(component->dev->driver->owner))
1391 component->card = card;
1393 INIT_LIST_HEAD(&component->card_list);
1394 INIT_LIST_HEAD(&dapm->list);
1395 soc_set_name_prefix(card, component);
1397 soc_init_component_debugfs(component);
1399 if (component->driver->dapm_widgets) {
1400 ret = snd_soc_dapm_new_controls(dapm,
1401 component->driver->dapm_widgets,
1402 component->driver->num_dapm_widgets);
1405 dev_err(component->dev,
1406 "Failed to create new controls %d\n", ret);
1411 for_each_component_dais(component, dai) {
1412 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
1414 dev_err(component->dev,
1415 "Failed to create DAI widgets %d\n", ret);
1420 if (component->driver->probe) {
1421 ret = component->driver->probe(component);
1423 dev_err(component->dev,
1424 "ASoC: failed to probe component %d\n", ret);
1428 WARN(dapm->idle_bias_off &&
1429 dapm->bias_level != SND_SOC_BIAS_OFF,
1430 "codec %s can not start from non-off bias with idle_bias_off==1\n",
1434 /* machine specific init */
1435 if (component->init) {
1436 ret = component->init(component);
1438 dev_err(component->dev,
1439 "Failed to do machine specific init %d\n", ret);
1444 if (component->driver->controls)
1445 snd_soc_add_component_controls(component,
1446 component->driver->controls,
1447 component->driver->num_controls);
1448 if (component->driver->dapm_routes)
1449 snd_soc_dapm_add_routes(dapm,
1450 component->driver->dapm_routes,
1451 component->driver->num_dapm_routes);
1453 list_add(&dapm->list, &card->dapm_list);
1454 /* see for_each_card_components */
1455 list_add(&component->card_list, &card->component_dev_list);
1459 soc_cleanup_component(component);
1464 static void rtd_release(struct device *dev)
1469 static int soc_post_component_init(struct snd_soc_pcm_runtime *rtd,
1474 /* register the rtd device */
1475 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1478 device_initialize(rtd->dev);
1479 rtd->dev->parent = rtd->card->dev;
1480 rtd->dev->release = rtd_release;
1481 rtd->dev->groups = soc_dev_attr_groups;
1482 dev_set_name(rtd->dev, "%s", name);
1483 dev_set_drvdata(rtd->dev, rtd);
1484 mutex_init(&rtd->pcm_mutex);
1485 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1486 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1487 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1488 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
1489 ret = device_add(rtd->dev);
1491 /* calling put_device() here to free the rtd->dev */
1492 put_device(rtd->dev);
1493 dev_err(rtd->card->dev,
1494 "ASoC: failed to register runtime device: %d\n", ret);
1497 rtd->dev_registered = 1;
1501 static int soc_probe_link_components(struct snd_soc_card *card,
1502 struct snd_soc_pcm_runtime *rtd, int order)
1504 struct snd_soc_component *component;
1505 struct snd_soc_rtdcom_list *rtdcom;
1508 for_each_rtdcom(rtd, rtdcom) {
1509 component = rtdcom->component;
1511 if (component->driver->probe_order == order) {
1512 ret = soc_probe_component(card, component);
1521 static int soc_probe_dai(struct snd_soc_dai *dai, int order)
1524 dai->driver->probe_order != order)
1527 if (dai->driver->probe) {
1528 int ret = dai->driver->probe(dai);
1531 dev_err(dai->dev, "ASoC: failed to probe DAI %s: %d\n",
1542 static int soc_link_dai_pcm_new(struct snd_soc_dai **dais, int num_dais,
1543 struct snd_soc_pcm_runtime *rtd)
1547 for (i = 0; i < num_dais; ++i) {
1548 struct snd_soc_dai_driver *drv = dais[i]->driver;
1551 ret = drv->pcm_new(rtd, dais[i]);
1553 dev_err(dais[i]->dev,
1554 "ASoC: Failed to bind %s with pcm device\n",
1563 static int soc_probe_link_dais(struct snd_soc_card *card,
1564 struct snd_soc_pcm_runtime *rtd, int order)
1566 struct snd_soc_dai_link *dai_link = rtd->dai_link;
1567 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1568 struct snd_soc_rtdcom_list *rtdcom;
1569 struct snd_soc_component *component;
1570 struct snd_soc_dai *codec_dai;
1573 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
1574 card->name, rtd->num, order);
1576 /* set default power off timeout */
1577 rtd->pmdown_time = pmdown_time;
1579 ret = soc_probe_dai(cpu_dai, order);
1583 /* probe the CODEC DAI */
1584 for_each_rtd_codec_dai(rtd, i, codec_dai) {
1585 ret = soc_probe_dai(codec_dai, order);
1590 /* complete DAI probe during last probe */
1591 if (order != SND_SOC_COMP_ORDER_LAST)
1594 /* do machine specific initialization */
1595 if (dai_link->init) {
1596 ret = dai_link->init(rtd);
1598 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1599 dai_link->name, ret);
1604 if (dai_link->dai_fmt)
1605 snd_soc_runtime_set_dai_fmt(rtd, dai_link->dai_fmt);
1607 ret = soc_post_component_init(rtd, dai_link->name);
1611 #ifdef CONFIG_DEBUG_FS
1612 /* add DPCM sysfs entries */
1613 if (dai_link->dynamic)
1614 soc_dpcm_debugfs_add(rtd);
1620 * most drivers will register their PCMs using DAI link ordering but
1621 * topology based drivers can use the DAI link id field to set PCM
1622 * device number and then use rtd + a base offset of the BEs.
1624 for_each_rtdcom(rtd, rtdcom) {
1625 component = rtdcom->component;
1627 if (!component->driver->use_dai_pcm_id)
1630 if (rtd->dai_link->no_pcm)
1631 num += component->driver->be_pcm_base;
1633 num = rtd->dai_link->id;
1636 if (cpu_dai->driver->compress_new) {
1637 /* create compress_device" */
1638 ret = cpu_dai->driver->compress_new(rtd, num);
1640 dev_err(card->dev, "ASoC: can't create compress %s\n",
1641 dai_link->stream_name);
1644 } else if (!dai_link->params) {
1645 /* create the pcm */
1646 ret = soc_new_pcm(rtd, num);
1648 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
1649 dai_link->stream_name, ret);
1652 ret = soc_link_dai_pcm_new(&cpu_dai, 1, rtd);
1655 ret = soc_link_dai_pcm_new(rtd->codec_dais,
1656 rtd->num_codecs, rtd);
1660 INIT_DELAYED_WORK(&rtd->delayed_work,
1661 codec2codec_close_delayed_work);
1667 static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
1669 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1670 struct snd_soc_component *component;
1672 struct device_node *codec_of_node;
1674 if (aux_dev->codec_of_node || aux_dev->codec_name) {
1675 /* codecs, usually analog devices */
1676 name = aux_dev->codec_name;
1677 codec_of_node = aux_dev->codec_of_node;
1678 component = soc_find_component(codec_of_node, name);
1681 name = of_node_full_name(codec_of_node);
1684 } else if (aux_dev->name) {
1685 /* generic components */
1686 name = aux_dev->name;
1687 component = soc_find_component(NULL, name);
1691 dev_err(card->dev, "ASoC: Invalid auxiliary device\n");
1695 component->init = aux_dev->init;
1696 list_add(&component->card_aux_list, &card->aux_comp_list);
1701 dev_err(card->dev, "ASoC: %s not registered\n", name);
1702 return -EPROBE_DEFER;
1705 static int soc_probe_aux_devices(struct snd_soc_card *card)
1707 struct snd_soc_component *comp;
1711 for_each_comp_order(order) {
1712 list_for_each_entry(comp, &card->aux_comp_list, card_aux_list) {
1713 if (comp->driver->probe_order == order) {
1714 ret = soc_probe_component(card, comp);
1717 "ASoC: failed to probe aux component %s %d\n",
1728 static void soc_remove_aux_devices(struct snd_soc_card *card)
1730 struct snd_soc_component *comp, *_comp;
1733 for_each_comp_order(order) {
1734 list_for_each_entry_safe(comp, _comp,
1735 &card->aux_comp_list, card_aux_list) {
1737 if (comp->driver->remove_order == order) {
1738 soc_remove_component(comp);
1739 /* remove it from the card's aux_comp_list */
1740 list_del(&comp->card_aux_list);
1747 * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1748 * @rtd: The runtime for which the DAI link format should be changed
1749 * @dai_fmt: The new DAI link format
1751 * This function updates the DAI link format for all DAIs connected to the DAI
1752 * link for the specified runtime.
1754 * Note: For setups with a static format set the dai_fmt field in the
1755 * corresponding snd_dai_link struct instead of using this function.
1757 * Returns 0 on success, otherwise a negative error code.
1759 int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
1760 unsigned int dai_fmt)
1762 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1763 struct snd_soc_dai *codec_dai;
1767 for_each_rtd_codec_dai(rtd, i, codec_dai) {
1768 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1769 if (ret != 0 && ret != -ENOTSUPP) {
1770 dev_warn(codec_dai->dev,
1771 "ASoC: Failed to set DAI format: %d\n", ret);
1777 * Flip the polarity for the "CPU" end of a CODEC<->CODEC link
1778 * the component which has non_legacy_dai_naming is Codec
1780 if (cpu_dai->component->driver->non_legacy_dai_naming) {
1781 unsigned int inv_dai_fmt;
1783 inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
1784 switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1785 case SND_SOC_DAIFMT_CBM_CFM:
1786 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1788 case SND_SOC_DAIFMT_CBM_CFS:
1789 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1791 case SND_SOC_DAIFMT_CBS_CFM:
1792 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1794 case SND_SOC_DAIFMT_CBS_CFS:
1795 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1799 dai_fmt = inv_dai_fmt;
1802 ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt);
1803 if (ret != 0 && ret != -ENOTSUPP) {
1804 dev_warn(cpu_dai->dev,
1805 "ASoC: Failed to set DAI format: %d\n", ret);
1811 EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt);
1815 * Trim special characters, and replace '-' with '_' since '-' is used to
1816 * separate different DMI fields in the card long name. Only number and
1817 * alphabet characters and a few separator characters are kept.
1819 static void cleanup_dmi_name(char *name)
1823 for (i = 0; name[i]; i++) {
1824 if (isalnum(name[i]) || (name[i] == '.')
1825 || (name[i] == '_'))
1826 name[j++] = name[i];
1827 else if (name[i] == '-')
1835 * Check if a DMI field is valid, i.e. not containing any string
1836 * in the black list.
1838 static int is_dmi_valid(const char *field)
1842 while (dmi_blacklist[i]) {
1843 if (strstr(field, dmi_blacklist[i]))
1852 * snd_soc_set_dmi_name() - Register DMI names to card
1853 * @card: The card to register DMI names
1854 * @flavour: The flavour "differentiator" for the card amongst its peers.
1856 * An Intel machine driver may be used by many different devices but are
1857 * difficult for userspace to differentiate, since machine drivers ususally
1858 * use their own name as the card short name and leave the card long name
1859 * blank. To differentiate such devices and fix bugs due to lack of
1860 * device-specific configurations, this function allows DMI info to be used
1861 * as the sound card long name, in the format of
1862 * "vendor-product-version-board"
1863 * (Character '-' is used to separate different DMI fields here).
1864 * This will help the user space to load the device-specific Use Case Manager
1865 * (UCM) configurations for the card.
1867 * Possible card long names may be:
1868 * DellInc.-XPS139343-01-0310JH
1869 * ASUSTeKCOMPUTERINC.-T100TA-1.0-T100TA
1870 * Circuitco-MinnowboardMaxD0PLATFORM-D0-MinnowBoardMAX
1872 * This function also supports flavoring the card longname to provide
1873 * the extra differentiation, like "vendor-product-version-board-flavor".
1875 * We only keep number and alphabet characters and a few separator characters
1876 * in the card long name since UCM in the user space uses the card long names
1877 * as card configuration directory names and AudoConf cannot support special
1878 * charactors like SPACE.
1880 * Returns 0 on success, otherwise a negative error code.
1882 int snd_soc_set_dmi_name(struct snd_soc_card *card, const char *flavour)
1884 const char *vendor, *product, *product_version, *board;
1885 size_t longname_buf_size = sizeof(card->snd_card->longname);
1888 if (card->long_name)
1889 return 0; /* long name already set by driver or from DMI */
1891 /* make up dmi long name as: vendor.product.version.board */
1892 vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1893 if (!vendor || !is_dmi_valid(vendor)) {
1894 dev_warn(card->dev, "ASoC: no DMI vendor name!\n");
1898 snprintf(card->dmi_longname, sizeof(card->snd_card->longname),
1900 cleanup_dmi_name(card->dmi_longname);
1902 product = dmi_get_system_info(DMI_PRODUCT_NAME);
1903 if (product && is_dmi_valid(product)) {
1904 len = strlen(card->dmi_longname);
1905 snprintf(card->dmi_longname + len,
1906 longname_buf_size - len,
1909 len++; /* skip the separator "-" */
1910 if (len < longname_buf_size)
1911 cleanup_dmi_name(card->dmi_longname + len);
1914 * some vendors like Lenovo may only put a self-explanatory
1915 * name in the product version field
1917 product_version = dmi_get_system_info(DMI_PRODUCT_VERSION);
1918 if (product_version && is_dmi_valid(product_version)) {
1919 len = strlen(card->dmi_longname);
1920 snprintf(card->dmi_longname + len,
1921 longname_buf_size - len,
1922 "-%s", product_version);
1925 if (len < longname_buf_size)
1926 cleanup_dmi_name(card->dmi_longname + len);
1930 board = dmi_get_system_info(DMI_BOARD_NAME);
1931 if (board && is_dmi_valid(board)) {
1932 len = strlen(card->dmi_longname);
1933 snprintf(card->dmi_longname + len,
1934 longname_buf_size - len,
1938 if (len < longname_buf_size)
1939 cleanup_dmi_name(card->dmi_longname + len);
1940 } else if (!product) {
1941 /* fall back to using legacy name */
1942 dev_warn(card->dev, "ASoC: no DMI board/product name!\n");
1946 /* Add flavour to dmi long name */
1948 len = strlen(card->dmi_longname);
1949 snprintf(card->dmi_longname + len,
1950 longname_buf_size - len,
1954 if (len < longname_buf_size)
1955 cleanup_dmi_name(card->dmi_longname + len);
1958 /* set the card long name */
1959 card->long_name = card->dmi_longname;
1963 EXPORT_SYMBOL_GPL(snd_soc_set_dmi_name);
1964 #endif /* CONFIG_DMI */
1966 static void soc_check_tplg_fes(struct snd_soc_card *card)
1968 struct snd_soc_component *component;
1969 const struct snd_soc_component_driver *comp_drv;
1970 struct snd_soc_dai_link *dai_link;
1973 for_each_component(component) {
1975 /* does this component override FEs ? */
1976 if (!component->driver->ignore_machine)
1979 /* for this machine ? */
1980 if (!strcmp(component->driver->ignore_machine,
1981 card->dev->driver->name))
1983 if (strcmp(component->driver->ignore_machine,
1984 dev_name(card->dev)))
1987 /* machine matches, so override the rtd data */
1988 for_each_card_prelinks(card, i, dai_link) {
1990 /* ignore this FE */
1991 if (dai_link->dynamic) {
1992 dai_link->ignore = true;
1996 dev_info(card->dev, "info: override FE DAI link %s\n",
1997 card->dai_link[i].name);
1999 /* override platform component */
2000 if (snd_soc_init_platform(card, dai_link) < 0) {
2001 dev_err(card->dev, "init platform error");
2004 dai_link->platforms->name = component->name;
2006 /* convert non BE into BE */
2007 dai_link->no_pcm = 1;
2009 /* override any BE fixups */
2010 dai_link->be_hw_params_fixup =
2011 component->driver->be_hw_params_fixup;
2014 * most BE links don't set stream name, so set it to
2015 * dai link name if it's NULL to help bind widgets.
2017 if (!dai_link->stream_name)
2018 dai_link->stream_name = dai_link->name;
2021 /* Inform userspace we are using alternate topology */
2022 if (component->driver->topology_name_prefix) {
2024 /* topology shortname created? */
2025 if (!card->topology_shortname_created) {
2026 comp_drv = component->driver;
2028 snprintf(card->topology_shortname, 32, "%s-%s",
2029 comp_drv->topology_name_prefix,
2031 card->topology_shortname_created = true;
2034 /* use topology shortname */
2035 card->name = card->topology_shortname;
2040 static int soc_cleanup_card_resources(struct snd_soc_card *card)
2042 /* free the ALSA card at first; this syncs with pending operations */
2043 if (card->snd_card) {
2044 snd_card_free(card->snd_card);
2045 card->snd_card = NULL;
2048 /* remove and free each DAI */
2049 soc_remove_dai_links(card);
2050 soc_remove_pcm_runtimes(card);
2051 soc_cleanup_platform(card);
2053 /* remove auxiliary devices */
2054 soc_remove_aux_devices(card);
2056 snd_soc_dapm_free(&card->dapm);
2057 soc_cleanup_card_debugfs(card);
2059 /* remove the card */
2066 static int snd_soc_instantiate_card(struct snd_soc_card *card)
2068 struct snd_soc_pcm_runtime *rtd;
2069 struct snd_soc_dai_link *dai_link;
2072 mutex_lock(&client_mutex);
2073 for_each_card_prelinks(card, i, dai_link) {
2074 ret = soc_init_dai_link(card, dai_link);
2076 soc_cleanup_platform(card);
2077 dev_err(card->dev, "ASoC: failed to init link %s: %d\n",
2078 dai_link->name, ret);
2079 mutex_unlock(&client_mutex);
2083 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
2085 card->dapm.bias_level = SND_SOC_BIAS_OFF;
2086 card->dapm.dev = card->dev;
2087 card->dapm.card = card;
2088 list_add(&card->dapm.list, &card->dapm_list);
2090 /* check whether any platform is ignore machine FE and using topology */
2091 soc_check_tplg_fes(card);
2094 for_each_card_prelinks(card, i, dai_link) {
2095 ret = soc_bind_dai_link(card, dai_link);
2100 /* bind aux_devs too */
2101 for (i = 0; i < card->num_aux_devs; i++) {
2102 ret = soc_bind_aux_dev(card, i);
2107 /* add predefined DAI links to the list */
2108 for_each_card_prelinks(card, i, dai_link)
2109 snd_soc_add_dai_link(card, dai_link);
2111 /* card bind complete so register a sound card */
2112 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
2113 card->owner, 0, &card->snd_card);
2116 "ASoC: can't create sound card for card %s: %d\n",
2121 soc_init_card_debugfs(card);
2123 #ifdef CONFIG_DEBUG_FS
2124 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
2127 #ifdef CONFIG_PM_SLEEP
2128 /* deferred resume work */
2129 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
2132 if (card->dapm_widgets)
2133 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
2134 card->num_dapm_widgets);
2136 if (card->of_dapm_widgets)
2137 snd_soc_dapm_new_controls(&card->dapm, card->of_dapm_widgets,
2138 card->num_of_dapm_widgets);
2140 /* initialise the sound card only once */
2142 ret = card->probe(card);
2147 /* probe all components used by DAI links on this card */
2148 for_each_comp_order(order) {
2149 for_each_card_rtds(card, rtd) {
2150 ret = soc_probe_link_components(card, rtd, order);
2153 "ASoC: failed to instantiate card %d\n",
2160 /* probe auxiliary components */
2161 ret = soc_probe_aux_devices(card);
2166 * Find new DAI links added during probing components and bind them.
2167 * Components with topology may bring new DAIs and DAI links.
2169 for_each_card_links(card, dai_link) {
2170 if (soc_is_dai_link_bound(card, dai_link))
2173 ret = soc_init_dai_link(card, dai_link);
2176 ret = soc_bind_dai_link(card, dai_link);
2181 /* probe all DAI links on this card */
2182 for_each_comp_order(order) {
2183 for_each_card_rtds(card, rtd) {
2184 ret = soc_probe_link_dais(card, rtd, order);
2187 "ASoC: failed to instantiate card %d\n",
2194 snd_soc_dapm_link_dai_widgets(card);
2195 snd_soc_dapm_connect_dai_link_widgets(card);
2198 snd_soc_add_card_controls(card, card->controls,
2199 card->num_controls);
2201 if (card->dapm_routes)
2202 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
2203 card->num_dapm_routes);
2205 if (card->of_dapm_routes)
2206 snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes,
2207 card->num_of_dapm_routes);
2209 /* try to set some sane longname if DMI is available */
2210 snd_soc_set_dmi_name(card, NULL);
2212 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
2214 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
2215 "%s", card->long_name ? card->long_name : card->name);
2216 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
2217 "%s", card->driver_name ? card->driver_name : card->name);
2218 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
2219 switch (card->snd_card->driver[i]) {
2225 if (!isalnum(card->snd_card->driver[i]))
2226 card->snd_card->driver[i] = '_';
2231 if (card->late_probe) {
2232 ret = card->late_probe(card);
2234 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
2240 snd_soc_dapm_new_widgets(card);
2242 ret = snd_card_register(card->snd_card);
2244 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
2249 card->instantiated = 1;
2250 dapm_mark_endpoints_dirty(card);
2251 snd_soc_dapm_sync(&card->dapm);
2255 soc_cleanup_card_resources(card);
2257 mutex_unlock(&card->mutex);
2258 mutex_unlock(&client_mutex);
2263 /* probes a new socdev */
2264 static int soc_probe(struct platform_device *pdev)
2266 struct snd_soc_card *card = platform_get_drvdata(pdev);
2269 * no card, so machine driver should be registering card
2270 * we should not be here in that case so ret error
2275 dev_warn(&pdev->dev,
2276 "ASoC: machine %s should use snd_soc_register_card()\n",
2279 /* Bodge while we unpick instantiation */
2280 card->dev = &pdev->dev;
2282 return snd_soc_register_card(card);
2285 /* removes a socdev */
2286 static int soc_remove(struct platform_device *pdev)
2288 struct snd_soc_card *card = platform_get_drvdata(pdev);
2290 snd_soc_unregister_card(card);
2294 int snd_soc_poweroff(struct device *dev)
2296 struct snd_soc_card *card = dev_get_drvdata(dev);
2297 struct snd_soc_pcm_runtime *rtd;
2299 if (!card->instantiated)
2303 * Flush out pmdown_time work - we actually do want to run it
2304 * now, we're shutting down so no imminent restart.
2306 snd_soc_flush_all_delayed_work(card);
2308 snd_soc_dapm_shutdown(card);
2310 /* deactivate pins to sleep state */
2311 for_each_card_rtds(card, rtd) {
2312 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2313 struct snd_soc_dai *codec_dai;
2316 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2317 for_each_rtd_codec_dai(rtd, i, codec_dai) {
2318 pinctrl_pm_select_sleep_state(codec_dai->dev);
2324 EXPORT_SYMBOL_GPL(snd_soc_poweroff);
2326 const struct dev_pm_ops snd_soc_pm_ops = {
2327 .suspend = snd_soc_suspend,
2328 .resume = snd_soc_resume,
2329 .freeze = snd_soc_suspend,
2330 .thaw = snd_soc_resume,
2331 .poweroff = snd_soc_poweroff,
2332 .restore = snd_soc_resume,
2334 EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
2336 /* ASoC platform driver */
2337 static struct platform_driver soc_driver = {
2339 .name = "soc-audio",
2340 .pm = &snd_soc_pm_ops,
2343 .remove = soc_remove,
2347 * snd_soc_cnew - create new control
2348 * @_template: control template
2349 * @data: control private data
2350 * @long_name: control long name
2351 * @prefix: control name prefix
2353 * Create a new mixer control from a template control.
2355 * Returns 0 for success, else error.
2357 struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2358 void *data, const char *long_name,
2361 struct snd_kcontrol_new template;
2362 struct snd_kcontrol *kcontrol;
2365 memcpy(&template, _template, sizeof(template));
2369 long_name = template.name;
2372 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
2376 template.name = name;
2378 template.name = long_name;
2381 kcontrol = snd_ctl_new1(&template, data);
2387 EXPORT_SYMBOL_GPL(snd_soc_cnew);
2389 static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2390 const struct snd_kcontrol_new *controls, int num_controls,
2391 const char *prefix, void *data)
2395 for (i = 0; i < num_controls; i++) {
2396 const struct snd_kcontrol_new *control = &controls[i];
2398 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2399 control->name, prefix));
2401 dev_err(dev, "ASoC: Failed to add %s: %d\n",
2402 control->name, err);
2410 struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2413 struct snd_card *card = soc_card->snd_card;
2414 struct snd_kcontrol *kctl;
2416 if (unlikely(!name))
2419 list_for_each_entry(kctl, &card->controls, list)
2420 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2424 EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2427 * snd_soc_add_component_controls - Add an array of controls to a component.
2429 * @component: Component to add controls to
2430 * @controls: Array of controls to add
2431 * @num_controls: Number of elements in the array
2433 * Return: 0 for success, else error.
2435 int snd_soc_add_component_controls(struct snd_soc_component *component,
2436 const struct snd_kcontrol_new *controls, unsigned int num_controls)
2438 struct snd_card *card = component->card->snd_card;
2440 return snd_soc_add_controls(card, component->dev, controls,
2441 num_controls, component->name_prefix, component);
2443 EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
2446 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2447 * Convenience function to add a list of controls.
2449 * @soc_card: SoC card to add controls to
2450 * @controls: array of controls to add
2451 * @num_controls: number of elements in the array
2453 * Return 0 for success, else error.
2455 int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2456 const struct snd_kcontrol_new *controls, int num_controls)
2458 struct snd_card *card = soc_card->snd_card;
2460 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2463 EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2466 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2467 * Convienience function to add a list of controls.
2469 * @dai: DAI to add controls to
2470 * @controls: array of controls to add
2471 * @num_controls: number of elements in the array
2473 * Return 0 for success, else error.
2475 int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2476 const struct snd_kcontrol_new *controls, int num_controls)
2478 struct snd_card *card = dai->component->card->snd_card;
2480 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2483 EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2486 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2488 * @clk_id: DAI specific clock ID
2489 * @freq: new clock frequency in Hz
2490 * @dir: new clock direction - input/output.
2492 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2494 int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2495 unsigned int freq, int dir)
2497 if (dai->driver->ops->set_sysclk)
2498 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
2500 return snd_soc_component_set_sysclk(dai->component, clk_id, 0,
2503 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2506 * snd_soc_component_set_sysclk - configure COMPONENT system or master clock.
2507 * @component: COMPONENT
2508 * @clk_id: DAI specific clock ID
2509 * @source: Source for the clock
2510 * @freq: new clock frequency in Hz
2511 * @dir: new clock direction - input/output.
2513 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2515 int snd_soc_component_set_sysclk(struct snd_soc_component *component,
2516 int clk_id, int source, unsigned int freq,
2519 if (component->driver->set_sysclk)
2520 return component->driver->set_sysclk(component, clk_id, source,
2525 EXPORT_SYMBOL_GPL(snd_soc_component_set_sysclk);
2528 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2530 * @div_id: DAI specific clock divider ID
2531 * @div: new clock divisor.
2533 * Configures the clock dividers. This is used to derive the best DAI bit and
2534 * frame clocks from the system or master clock. It's best to set the DAI bit
2535 * and frame clocks as low as possible to save system power.
2537 int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2538 int div_id, int div)
2540 if (dai->driver->ops->set_clkdiv)
2541 return dai->driver->ops->set_clkdiv(dai, div_id, div);
2545 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2548 * snd_soc_dai_set_pll - configure DAI PLL.
2550 * @pll_id: DAI specific PLL ID
2551 * @source: DAI specific source for the PLL
2552 * @freq_in: PLL input clock frequency in Hz
2553 * @freq_out: requested PLL output clock frequency in Hz
2555 * Configures and enables PLL to generate output clock based on input clock.
2557 int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2558 unsigned int freq_in, unsigned int freq_out)
2560 if (dai->driver->ops->set_pll)
2561 return dai->driver->ops->set_pll(dai, pll_id, source,
2564 return snd_soc_component_set_pll(dai->component, pll_id, source,
2567 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2570 * snd_soc_component_set_pll - configure component PLL.
2571 * @component: COMPONENT
2572 * @pll_id: DAI specific PLL ID
2573 * @source: DAI specific source for the PLL
2574 * @freq_in: PLL input clock frequency in Hz
2575 * @freq_out: requested PLL output clock frequency in Hz
2577 * Configures and enables PLL to generate output clock based on input clock.
2579 int snd_soc_component_set_pll(struct snd_soc_component *component, int pll_id,
2580 int source, unsigned int freq_in,
2581 unsigned int freq_out)
2583 if (component->driver->set_pll)
2584 return component->driver->set_pll(component, pll_id, source,
2589 EXPORT_SYMBOL_GPL(snd_soc_component_set_pll);
2592 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2594 * @ratio: Ratio of BCLK to Sample rate.
2596 * Configures the DAI for a preset BCLK to sample rate ratio.
2598 int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2600 if (dai->driver->ops->set_bclk_ratio)
2601 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2605 EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2608 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2610 * @fmt: SND_SOC_DAIFMT_* format value.
2612 * Configures the DAI hardware format and clocking.
2614 int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2616 if (dai->driver->ops->set_fmt == NULL)
2618 return dai->driver->ops->set_fmt(dai, fmt);
2620 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2623 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
2624 * @slots: Number of slots in use.
2625 * @tx_mask: bitmask representing active TX slots.
2626 * @rx_mask: bitmask representing active RX slots.
2628 * Generates the TDM tx and rx slot default masks for DAI.
2630 static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
2631 unsigned int *tx_mask,
2632 unsigned int *rx_mask)
2634 if (*tx_mask || *rx_mask)
2640 *tx_mask = (1 << slots) - 1;
2641 *rx_mask = (1 << slots) - 1;
2647 * snd_soc_dai_set_tdm_slot() - Configures a DAI for TDM operation
2648 * @dai: The DAI to configure
2649 * @tx_mask: bitmask representing active TX slots.
2650 * @rx_mask: bitmask representing active RX slots.
2651 * @slots: Number of slots in use.
2652 * @slot_width: Width in bits for each slot.
2654 * This function configures the specified DAI for TDM operation. @slot contains
2655 * the total number of slots of the TDM stream and @slot_with the width of each
2656 * slot in bit clock cycles. @tx_mask and @rx_mask are bitmasks specifying the
2657 * active slots of the TDM stream for the specified DAI, i.e. which slots the
2658 * DAI should write to or read from. If a bit is set the corresponding slot is
2659 * active, if a bit is cleared the corresponding slot is inactive. Bit 0 maps to
2660 * the first slot, bit 1 to the second slot and so on. The first active slot
2661 * maps to the first channel of the DAI, the second active slot to the second
2662 * channel and so on.
2664 * TDM mode can be disabled by passing 0 for @slots. In this case @tx_mask,
2665 * @rx_mask and @slot_width will be ignored.
2667 * Returns 0 on success, a negative error code otherwise.
2669 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
2670 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
2672 if (dai->driver->ops->xlate_tdm_slot_mask)
2673 dai->driver->ops->xlate_tdm_slot_mask(slots,
2674 &tx_mask, &rx_mask);
2676 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
2678 dai->tx_mask = tx_mask;
2679 dai->rx_mask = rx_mask;
2681 if (dai->driver->ops->set_tdm_slot)
2682 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
2687 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2690 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2692 * @tx_num: how many TX channels
2693 * @tx_slot: pointer to an array which imply the TX slot number channel
2695 * @rx_num: how many RX channels
2696 * @rx_slot: pointer to an array which imply the RX slot number channel
2699 * configure the relationship between channel number and TDM slot number.
2701 int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2702 unsigned int tx_num, unsigned int *tx_slot,
2703 unsigned int rx_num, unsigned int *rx_slot)
2705 if (dai->driver->ops->set_channel_map)
2706 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
2711 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2714 * snd_soc_dai_get_channel_map - Get DAI audio channel map
2716 * @tx_num: how many TX channels
2717 * @tx_slot: pointer to an array which imply the TX slot number channel
2719 * @rx_num: how many RX channels
2720 * @rx_slot: pointer to an array which imply the RX slot number channel
2723 int snd_soc_dai_get_channel_map(struct snd_soc_dai *dai,
2724 unsigned int *tx_num, unsigned int *tx_slot,
2725 unsigned int *rx_num, unsigned int *rx_slot)
2727 if (dai->driver->ops->get_channel_map)
2728 return dai->driver->ops->get_channel_map(dai, tx_num, tx_slot,
2733 EXPORT_SYMBOL_GPL(snd_soc_dai_get_channel_map);
2736 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2738 * @tristate: tristate enable
2740 * Tristates the DAI so that others can use it.
2742 int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2744 if (dai->driver->ops->set_tristate)
2745 return dai->driver->ops->set_tristate(dai, tristate);
2749 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2752 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2754 * @mute: mute enable
2755 * @direction: stream to mute
2757 * Mutes the DAI DAC.
2759 int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2762 if (dai->driver->ops->mute_stream)
2763 return dai->driver->ops->mute_stream(dai, mute, direction);
2764 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2765 dai->driver->ops->digital_mute)
2766 return dai->driver->ops->digital_mute(dai, mute);
2770 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2772 static int snd_soc_bind_card(struct snd_soc_card *card)
2774 struct snd_soc_pcm_runtime *rtd;
2777 ret = snd_soc_instantiate_card(card);
2781 /* deactivate pins to sleep state */
2782 for_each_card_rtds(card, rtd) {
2783 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2784 struct snd_soc_dai *codec_dai;
2787 for_each_rtd_codec_dai(rtd, j, codec_dai) {
2788 if (!codec_dai->active)
2789 pinctrl_pm_select_sleep_state(codec_dai->dev);
2792 if (!cpu_dai->active)
2793 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2800 * snd_soc_register_card - Register a card with the ASoC core
2802 * @card: Card to register
2805 int snd_soc_register_card(struct snd_soc_card *card)
2807 if (!card->name || !card->dev)
2810 dev_set_drvdata(card->dev, card);
2812 snd_soc_initialize_card_lists(card);
2814 INIT_LIST_HEAD(&card->dai_link_list);
2816 INIT_LIST_HEAD(&card->rtd_list);
2819 INIT_LIST_HEAD(&card->dapm_dirty);
2820 INIT_LIST_HEAD(&card->dobj_list);
2821 card->instantiated = 0;
2822 mutex_init(&card->mutex);
2823 mutex_init(&card->dapm_mutex);
2824 spin_lock_init(&card->dpcm_lock);
2826 return snd_soc_bind_card(card);
2828 EXPORT_SYMBOL_GPL(snd_soc_register_card);
2830 static void snd_soc_unbind_card(struct snd_soc_card *card, bool unregister)
2832 struct snd_soc_pcm_runtime *rtd;
2835 if (card->instantiated) {
2836 card->instantiated = false;
2837 snd_soc_dapm_shutdown(card);
2838 snd_soc_flush_all_delayed_work(card);
2840 mutex_lock(&client_mutex);
2841 /* remove all components used by DAI links on this card */
2842 for_each_comp_order(order) {
2843 for_each_card_rtds(card, rtd) {
2844 soc_remove_link_components(card, rtd, order);
2847 mutex_unlock(&client_mutex);
2849 soc_cleanup_card_resources(card);
2851 list_add(&card->list, &unbind_card_list);
2854 list_del(&card->list);
2859 * snd_soc_unregister_card - Unregister a card with the ASoC core
2861 * @card: Card to unregister
2864 int snd_soc_unregister_card(struct snd_soc_card *card)
2866 snd_soc_unbind_card(card, true);
2867 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
2871 EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
2874 * Simplify DAI link configuration by removing ".-1" from device names
2875 * and sanitizing names.
2877 static char *fmt_single_name(struct device *dev, int *id)
2879 char *found, name[NAME_SIZE];
2882 if (dev_name(dev) == NULL)
2885 strlcpy(name, dev_name(dev), NAME_SIZE);
2887 /* are we a "%s.%d" name (platform and SPI components) */
2888 found = strstr(name, dev->driver->name);
2891 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2893 /* discard ID from name if ID == -1 */
2895 found[strlen(dev->driver->name)] = '\0';
2899 /* I2C component devices are named "bus-addr" */
2900 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2901 char tmp[NAME_SIZE];
2903 /* create unique ID number from I2C addr and bus */
2904 *id = ((id1 & 0xffff) << 16) + id2;
2906 /* sanitize component name for DAI link creation */
2907 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name,
2909 strlcpy(name, tmp, NAME_SIZE);
2914 return kstrdup(name, GFP_KERNEL);
2918 * Simplify DAI link naming for single devices with multiple DAIs by removing
2919 * any ".-1" and using the DAI name (instead of device name).
2921 static inline char *fmt_multiple_name(struct device *dev,
2922 struct snd_soc_dai_driver *dai_drv)
2924 if (dai_drv->name == NULL) {
2926 "ASoC: error - multiple DAI %s registered with no name\n",
2931 return kstrdup(dai_drv->name, GFP_KERNEL);
2935 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
2937 * @component: The component for which the DAIs should be unregistered
2939 static void snd_soc_unregister_dais(struct snd_soc_component *component)
2941 struct snd_soc_dai *dai, *_dai;
2943 for_each_component_dais_safe(component, dai, _dai) {
2944 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2946 list_del(&dai->list);
2952 /* Create a DAI and add it to the component's DAI list */
2953 static struct snd_soc_dai *soc_add_dai(struct snd_soc_component *component,
2954 struct snd_soc_dai_driver *dai_drv,
2955 bool legacy_dai_naming)
2957 struct device *dev = component->dev;
2958 struct snd_soc_dai *dai;
2960 dev_dbg(dev, "ASoC: dynamically register DAI %s\n", dev_name(dev));
2962 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
2967 * Back in the old days when we still had component-less DAIs,
2968 * instead of having a static name, component-less DAIs would
2969 * inherit the name of the parent device so it is possible to
2970 * register multiple instances of the DAI. We still need to keep
2971 * the same naming style even though those DAIs are not
2972 * component-less anymore.
2974 if (legacy_dai_naming &&
2975 (dai_drv->id == 0 || dai_drv->name == NULL)) {
2976 dai->name = fmt_single_name(dev, &dai->id);
2978 dai->name = fmt_multiple_name(dev, dai_drv);
2980 dai->id = dai_drv->id;
2982 dai->id = component->num_dai;
2984 if (dai->name == NULL) {
2989 dai->component = component;
2991 dai->driver = dai_drv;
2992 if (!dai->driver->ops)
2993 dai->driver->ops = &null_dai_ops;
2995 /* see for_each_component_dais */
2996 list_add_tail(&dai->list, &component->dai_list);
2997 component->num_dai++;
2999 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
3004 * snd_soc_register_dais - Register a DAI with the ASoC core
3006 * @component: The component the DAIs are registered for
3007 * @dai_drv: DAI driver to use for the DAIs
3008 * @count: Number of DAIs
3010 static int snd_soc_register_dais(struct snd_soc_component *component,
3011 struct snd_soc_dai_driver *dai_drv,
3014 struct device *dev = component->dev;
3015 struct snd_soc_dai *dai;
3019 dev_dbg(dev, "ASoC: dai register %s #%zu\n", dev_name(dev), count);
3021 for (i = 0; i < count; i++) {
3023 dai = soc_add_dai(component, dai_drv + i, count == 1 &&
3024 !component->driver->non_legacy_dai_naming);
3034 snd_soc_unregister_dais(component);
3040 * snd_soc_register_dai - Register a DAI dynamically & create its widgets
3042 * @component: The component the DAIs are registered for
3043 * @dai_drv: DAI driver to use for the DAI
3045 * Topology can use this API to register DAIs when probing a component.
3046 * These DAIs's widgets will be freed in the card cleanup and the DAIs
3047 * will be freed in the component cleanup.
3049 int snd_soc_register_dai(struct snd_soc_component *component,
3050 struct snd_soc_dai_driver *dai_drv)
3052 struct snd_soc_dapm_context *dapm =
3053 snd_soc_component_get_dapm(component);
3054 struct snd_soc_dai *dai;
3057 if (dai_drv->dobj.type != SND_SOC_DOBJ_PCM) {
3058 dev_err(component->dev, "Invalid dai type %d\n",
3059 dai_drv->dobj.type);
3063 lockdep_assert_held(&client_mutex);
3064 dai = soc_add_dai(component, dai_drv, false);
3069 * Create the DAI widgets here. After adding DAIs, topology may
3070 * also add routes that need these widgets as source or sink.
3072 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
3074 dev_err(component->dev,
3075 "Failed to create DAI widgets %d\n", ret);
3080 EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3082 static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
3083 enum snd_soc_dapm_type type, int subseq)
3085 struct snd_soc_component *component = dapm->component;
3087 component->driver->seq_notifier(component, type, subseq);
3090 static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
3093 struct snd_soc_component *component = dapm->component;
3095 return component->driver->stream_event(component, event);
3098 static int snd_soc_component_set_bias_level(struct snd_soc_dapm_context *dapm,
3099 enum snd_soc_bias_level level)
3101 struct snd_soc_component *component = dapm->component;
3103 return component->driver->set_bias_level(component, level);
3106 static int snd_soc_component_initialize(struct snd_soc_component *component,
3107 const struct snd_soc_component_driver *driver, struct device *dev)
3109 struct snd_soc_dapm_context *dapm;
3111 component->name = fmt_single_name(dev, &component->id);
3112 if (!component->name) {
3113 dev_err(dev, "ASoC: Failed to allocate name\n");
3117 component->dev = dev;
3118 component->driver = driver;
3120 dapm = snd_soc_component_get_dapm(component);
3122 dapm->component = component;
3123 dapm->bias_level = SND_SOC_BIAS_OFF;
3124 dapm->idle_bias_off = !driver->idle_bias_on;
3125 dapm->suspend_bias_off = driver->suspend_bias_off;
3126 if (driver->seq_notifier)
3127 dapm->seq_notifier = snd_soc_component_seq_notifier;
3128 if (driver->stream_event)
3129 dapm->stream_event = snd_soc_component_stream_event;
3130 if (driver->set_bias_level)
3131 dapm->set_bias_level = snd_soc_component_set_bias_level;
3133 INIT_LIST_HEAD(&component->dai_list);
3134 mutex_init(&component->io_mutex);
3139 static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
3141 int val_bytes = regmap_get_val_bytes(component->regmap);
3143 /* Errors are legitimate for non-integer byte multiples */
3145 component->val_bytes = val_bytes;
3148 #ifdef CONFIG_REGMAP
3151 * snd_soc_component_init_regmap() - Initialize regmap instance for the
3153 * @component: The component for which to initialize the regmap instance
3154 * @regmap: The regmap instance that should be used by the component
3156 * This function allows deferred assignment of the regmap instance that is
3157 * associated with the component. Only use this if the regmap instance is not
3158 * yet ready when the component is registered. The function must also be called
3159 * before the first IO attempt of the component.
3161 void snd_soc_component_init_regmap(struct snd_soc_component *component,
3162 struct regmap *regmap)
3164 component->regmap = regmap;
3165 snd_soc_component_setup_regmap(component);
3167 EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
3170 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the
3172 * @component: The component for which to de-initialize the regmap instance
3174 * Calls regmap_exit() on the regmap instance associated to the component and
3175 * removes the regmap instance from the component.
3177 * This function should only be used if snd_soc_component_init_regmap() was used
3178 * to initialize the regmap instance.
3180 void snd_soc_component_exit_regmap(struct snd_soc_component *component)
3182 regmap_exit(component->regmap);
3183 component->regmap = NULL;
3185 EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
3189 static void snd_soc_component_add(struct snd_soc_component *component)
3191 mutex_lock(&client_mutex);
3193 if (!component->driver->write && !component->driver->read) {
3194 if (!component->regmap)
3195 component->regmap = dev_get_regmap(component->dev,
3197 if (component->regmap)
3198 snd_soc_component_setup_regmap(component);
3201 /* see for_each_component */
3202 list_add(&component->list, &component_list);
3203 INIT_LIST_HEAD(&component->dobj_list);
3205 mutex_unlock(&client_mutex);
3208 static void snd_soc_component_cleanup(struct snd_soc_component *component)
3210 snd_soc_unregister_dais(component);
3211 kfree(component->name);
3214 static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
3216 struct snd_soc_card *card = component->card;
3219 snd_soc_unbind_card(card, false);
3221 list_del(&component->list);
3224 #define ENDIANNESS_MAP(name) \
3225 (SNDRV_PCM_FMTBIT_##name##LE | SNDRV_PCM_FMTBIT_##name##BE)
3226 static u64 endianness_format_map[] = {
3227 ENDIANNESS_MAP(S16_),
3228 ENDIANNESS_MAP(U16_),
3229 ENDIANNESS_MAP(S24_),
3230 ENDIANNESS_MAP(U24_),
3231 ENDIANNESS_MAP(S32_),
3232 ENDIANNESS_MAP(U32_),
3233 ENDIANNESS_MAP(S24_3),
3234 ENDIANNESS_MAP(U24_3),
3235 ENDIANNESS_MAP(S20_3),
3236 ENDIANNESS_MAP(U20_3),
3237 ENDIANNESS_MAP(S18_3),
3238 ENDIANNESS_MAP(U18_3),
3239 ENDIANNESS_MAP(FLOAT_),
3240 ENDIANNESS_MAP(FLOAT64_),
3241 ENDIANNESS_MAP(IEC958_SUBFRAME_),
3245 * Fix up the DAI formats for endianness: codecs don't actually see
3246 * the endianness of the data but we're using the CPU format
3247 * definitions which do need to include endianness so we ensure that
3248 * codec DAIs always have both big and little endian variants set.
3250 static void convert_endianness_formats(struct snd_soc_pcm_stream *stream)
3254 for (i = 0; i < ARRAY_SIZE(endianness_format_map); i++)
3255 if (stream->formats & endianness_format_map[i])
3256 stream->formats |= endianness_format_map[i];
3259 static void snd_soc_try_rebind_card(void)
3261 struct snd_soc_card *card, *c;
3263 if (!list_empty(&unbind_card_list)) {
3264 list_for_each_entry_safe(card, c, &unbind_card_list, list) {
3265 if (!snd_soc_bind_card(card))
3266 list_del(&card->list);
3271 int snd_soc_add_component(struct device *dev,
3272 struct snd_soc_component *component,
3273 const struct snd_soc_component_driver *component_driver,
3274 struct snd_soc_dai_driver *dai_drv,
3280 ret = snd_soc_component_initialize(component, component_driver, dev);
3284 if (component_driver->endianness) {
3285 for (i = 0; i < num_dai; i++) {
3286 convert_endianness_formats(&dai_drv[i].playback);
3287 convert_endianness_formats(&dai_drv[i].capture);
3291 ret = snd_soc_register_dais(component, dai_drv, num_dai);
3293 dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
3297 snd_soc_component_add(component);
3298 snd_soc_try_rebind_card();
3303 snd_soc_component_cleanup(component);
3307 EXPORT_SYMBOL_GPL(snd_soc_add_component);
3309 int snd_soc_register_component(struct device *dev,
3310 const struct snd_soc_component_driver *component_driver,
3311 struct snd_soc_dai_driver *dai_drv,
3314 struct snd_soc_component *component;
3316 component = devm_kzalloc(dev, sizeof(*component), GFP_KERNEL);
3320 return snd_soc_add_component(dev, component, component_driver,
3323 EXPORT_SYMBOL_GPL(snd_soc_register_component);
3326 * snd_soc_unregister_component - Unregister all related component
3327 * from the ASoC core
3329 * @dev: The device to unregister
3331 static int __snd_soc_unregister_component(struct device *dev)
3333 struct snd_soc_component *component;
3336 mutex_lock(&client_mutex);
3337 for_each_component(component) {
3338 if (dev != component->dev)
3341 snd_soc_tplg_component_remove(component,
3342 SND_SOC_TPLG_INDEX_ALL);
3343 snd_soc_component_del_unlocked(component);
3347 mutex_unlock(&client_mutex);
3350 snd_soc_component_cleanup(component);
3355 void snd_soc_unregister_component(struct device *dev)
3357 while (__snd_soc_unregister_component(dev))
3360 EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
3362 struct snd_soc_component *snd_soc_lookup_component(struct device *dev,
3363 const char *driver_name)
3365 struct snd_soc_component *component;
3366 struct snd_soc_component *ret;
3369 mutex_lock(&client_mutex);
3370 for_each_component(component) {
3371 if (dev != component->dev)
3375 (driver_name != component->driver->name) &&
3376 (strcmp(component->driver->name, driver_name) != 0))
3382 mutex_unlock(&client_mutex);
3386 EXPORT_SYMBOL_GPL(snd_soc_lookup_component);
3388 /* Retrieve a card's name from device tree */
3389 int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3390 const char *propname)
3392 struct device_node *np;
3396 pr_err("card->dev is not set before calling %s\n", __func__);
3400 np = card->dev->of_node;
3402 ret = of_property_read_string_index(np, propname, 0, &card->name);
3404 * EINVAL means the property does not exist. This is fine providing
3405 * card->name was previously set, which is checked later in
3406 * snd_soc_register_card.
3408 if (ret < 0 && ret != -EINVAL) {
3410 "ASoC: Property '%s' could not be read: %d\n",
3417 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3419 static const struct snd_soc_dapm_widget simple_widgets[] = {
3420 SND_SOC_DAPM_MIC("Microphone", NULL),
3421 SND_SOC_DAPM_LINE("Line", NULL),
3422 SND_SOC_DAPM_HP("Headphone", NULL),
3423 SND_SOC_DAPM_SPK("Speaker", NULL),
3426 int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
3427 const char *propname)
3429 struct device_node *np = card->dev->of_node;
3430 struct snd_soc_dapm_widget *widgets;
3431 const char *template, *wname;
3432 int i, j, num_widgets, ret;
3434 num_widgets = of_property_count_strings(np, propname);
3435 if (num_widgets < 0) {
3437 "ASoC: Property '%s' does not exist\n", propname);
3440 if (num_widgets & 1) {
3442 "ASoC: Property '%s' length is not even\n", propname);
3448 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3453 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3457 "ASoC: Could not allocate memory for widgets\n");
3461 for (i = 0; i < num_widgets; i++) {
3462 ret = of_property_read_string_index(np, propname,
3466 "ASoC: Property '%s' index %d read error:%d\n",
3467 propname, 2 * i, ret);
3471 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3472 if (!strncmp(template, simple_widgets[j].name,
3473 strlen(simple_widgets[j].name))) {
3474 widgets[i] = simple_widgets[j];
3479 if (j >= ARRAY_SIZE(simple_widgets)) {
3481 "ASoC: DAPM widget '%s' is not supported\n",
3486 ret = of_property_read_string_index(np, propname,
3491 "ASoC: Property '%s' index %d read error:%d\n",
3492 propname, (2 * i) + 1, ret);
3496 widgets[i].name = wname;
3499 card->of_dapm_widgets = widgets;
3500 card->num_of_dapm_widgets = num_widgets;
3504 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
3506 int snd_soc_of_get_slot_mask(struct device_node *np,
3507 const char *prop_name,
3511 const __be32 *of_slot_mask = of_get_property(np, prop_name, &val);
3517 for (i = 0; i < val; i++)
3518 if (be32_to_cpup(&of_slot_mask[i]))
3523 EXPORT_SYMBOL_GPL(snd_soc_of_get_slot_mask);
3525 int snd_soc_of_parse_tdm_slot(struct device_node *np,
3526 unsigned int *tx_mask,
3527 unsigned int *rx_mask,
3528 unsigned int *slots,
3529 unsigned int *slot_width)
3535 snd_soc_of_get_slot_mask(np, "dai-tdm-slot-tx-mask", tx_mask);
3537 snd_soc_of_get_slot_mask(np, "dai-tdm-slot-rx-mask", rx_mask);
3539 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3540 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3548 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3549 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3559 EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3561 void snd_soc_of_parse_node_prefix(struct device_node *np,
3562 struct snd_soc_codec_conf *codec_conf,
3563 struct device_node *of_node,
3564 const char *propname)
3569 ret = of_property_read_string(np, propname, &str);
3571 /* no prefix is not error */
3575 codec_conf->of_node = of_node;
3576 codec_conf->name_prefix = str;
3578 EXPORT_SYMBOL_GPL(snd_soc_of_parse_node_prefix);
3580 int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3581 const char *propname)
3583 struct device_node *np = card->dev->of_node;
3585 struct snd_soc_dapm_route *routes;
3588 num_routes = of_property_count_strings(np, propname);
3589 if (num_routes < 0 || num_routes & 1) {
3591 "ASoC: Property '%s' does not exist or its length is not even\n",
3597 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3602 routes = devm_kcalloc(card->dev, num_routes, sizeof(*routes),
3606 "ASoC: Could not allocate DAPM route table\n");
3610 for (i = 0; i < num_routes; i++) {
3611 ret = of_property_read_string_index(np, propname,
3612 2 * i, &routes[i].sink);
3615 "ASoC: Property '%s' index %d could not be read: %d\n",
3616 propname, 2 * i, ret);
3619 ret = of_property_read_string_index(np, propname,
3620 (2 * i) + 1, &routes[i].source);
3623 "ASoC: Property '%s' index %d could not be read: %d\n",
3624 propname, (2 * i) + 1, ret);
3629 card->num_of_dapm_routes = num_routes;
3630 card->of_dapm_routes = routes;
3634 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3636 unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
3638 struct device_node **bitclkmaster,
3639 struct device_node **framemaster)
3643 unsigned int format = 0;
3649 } of_fmt_table[] = {
3650 { "i2s", SND_SOC_DAIFMT_I2S },
3651 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
3652 { "left_j", SND_SOC_DAIFMT_LEFT_J },
3653 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
3654 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
3655 { "ac97", SND_SOC_DAIFMT_AC97 },
3656 { "pdm", SND_SOC_DAIFMT_PDM},
3657 { "msb", SND_SOC_DAIFMT_MSB },
3658 { "lsb", SND_SOC_DAIFMT_LSB },
3665 * check "dai-format = xxx"
3666 * or "[prefix]format = xxx"
3667 * SND_SOC_DAIFMT_FORMAT_MASK area
3669 ret = of_property_read_string(np, "dai-format", &str);
3671 snprintf(prop, sizeof(prop), "%sformat", prefix);
3672 ret = of_property_read_string(np, prop, &str);
3675 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3676 if (strcmp(str, of_fmt_table[i].name) == 0) {
3677 format |= of_fmt_table[i].val;
3684 * check "[prefix]continuous-clock"
3685 * SND_SOC_DAIFMT_CLOCK_MASK area
3687 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
3688 if (of_property_read_bool(np, prop))
3689 format |= SND_SOC_DAIFMT_CONT;
3691 format |= SND_SOC_DAIFMT_GATED;
3694 * check "[prefix]bitclock-inversion"
3695 * check "[prefix]frame-inversion"
3696 * SND_SOC_DAIFMT_INV_MASK area
3698 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3699 bit = !!of_get_property(np, prop, NULL);
3701 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3702 frame = !!of_get_property(np, prop, NULL);
3704 switch ((bit << 4) + frame) {
3706 format |= SND_SOC_DAIFMT_IB_IF;
3709 format |= SND_SOC_DAIFMT_IB_NF;
3712 format |= SND_SOC_DAIFMT_NB_IF;
3715 /* SND_SOC_DAIFMT_NB_NF is default */
3720 * check "[prefix]bitclock-master"
3721 * check "[prefix]frame-master"
3722 * SND_SOC_DAIFMT_MASTER_MASK area
3724 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3725 bit = !!of_get_property(np, prop, NULL);
3726 if (bit && bitclkmaster)
3727 *bitclkmaster = of_parse_phandle(np, prop, 0);
3729 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3730 frame = !!of_get_property(np, prop, NULL);
3731 if (frame && framemaster)
3732 *framemaster = of_parse_phandle(np, prop, 0);
3734 switch ((bit << 4) + frame) {
3736 format |= SND_SOC_DAIFMT_CBM_CFM;
3739 format |= SND_SOC_DAIFMT_CBM_CFS;
3742 format |= SND_SOC_DAIFMT_CBS_CFM;
3745 format |= SND_SOC_DAIFMT_CBS_CFS;
3751 EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3753 int snd_soc_get_dai_id(struct device_node *ep)
3755 struct snd_soc_component *pos;
3756 struct device_node *node;
3759 node = of_graph_get_port_parent(ep);
3762 * For example HDMI case, HDMI has video/sound port,
3763 * but ALSA SoC needs sound port number only.
3764 * Thus counting HDMI DT port/endpoint doesn't work.
3765 * Then, it should have .of_xlate_dai_id
3768 mutex_lock(&client_mutex);
3769 for_each_component(pos) {
3770 struct device_node *component_of_node = pos->dev->of_node;
3772 if (!component_of_node && pos->dev->parent)
3773 component_of_node = pos->dev->parent->of_node;
3775 if (component_of_node != node)
3778 if (pos->driver->of_xlate_dai_id)
3779 ret = pos->driver->of_xlate_dai_id(pos, ep);
3783 mutex_unlock(&client_mutex);
3789 EXPORT_SYMBOL_GPL(snd_soc_get_dai_id);
3791 int snd_soc_get_dai_name(struct of_phandle_args *args,
3792 const char **dai_name)
3794 struct snd_soc_component *pos;
3795 struct device_node *component_of_node;
3796 int ret = -EPROBE_DEFER;
3798 mutex_lock(&client_mutex);
3799 for_each_component(pos) {
3800 component_of_node = pos->dev->of_node;
3801 if (!component_of_node && pos->dev->parent)
3802 component_of_node = pos->dev->parent->of_node;
3804 if (component_of_node != args->np)
3807 if (pos->driver->of_xlate_dai_name) {
3808 ret = pos->driver->of_xlate_dai_name(pos,
3812 struct snd_soc_dai *dai;
3815 switch (args->args_count) {
3817 id = 0; /* same as dai_drv[0] */
3827 if (id < 0 || id >= pos->num_dai) {
3834 /* find target DAI */
3835 for_each_component_dais(pos, dai) {
3841 *dai_name = dai->driver->name;
3843 *dai_name = pos->name;
3848 mutex_unlock(&client_mutex);
3851 EXPORT_SYMBOL_GPL(snd_soc_get_dai_name);
3853 int snd_soc_of_get_dai_name(struct device_node *of_node,
3854 const char **dai_name)
3856 struct of_phandle_args args;
3859 ret = of_parse_phandle_with_args(of_node, "sound-dai",
3860 "#sound-dai-cells", 0, &args);
3864 ret = snd_soc_get_dai_name(&args, dai_name);
3866 of_node_put(args.np);
3870 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3873 * snd_soc_of_put_dai_link_codecs - Dereference device nodes in the codecs array
3874 * @dai_link: DAI link
3876 * Dereference device nodes acquired by snd_soc_of_get_dai_link_codecs().
3878 void snd_soc_of_put_dai_link_codecs(struct snd_soc_dai_link *dai_link)
3880 struct snd_soc_dai_link_component *component;
3883 for_each_link_codecs(dai_link, index, component) {
3884 if (!component->of_node)
3886 of_node_put(component->of_node);
3887 component->of_node = NULL;
3890 EXPORT_SYMBOL_GPL(snd_soc_of_put_dai_link_codecs);
3893 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3895 * @of_node: Device node
3896 * @dai_link: DAI link
3898 * Builds an array of CODEC DAI components from the DAI link property
3900 * The array is set in the DAI link and the number of DAIs is set accordingly.
3901 * The device nodes in the array (of_node) must be dereferenced by calling
3902 * snd_soc_of_put_dai_link_codecs() on @dai_link.
3904 * Returns 0 for success
3906 int snd_soc_of_get_dai_link_codecs(struct device *dev,
3907 struct device_node *of_node,
3908 struct snd_soc_dai_link *dai_link)
3910 struct of_phandle_args args;
3911 struct snd_soc_dai_link_component *component;
3913 int index, num_codecs, ret;
3915 /* Count the number of CODECs */
3917 num_codecs = of_count_phandle_with_args(of_node, name,
3918 "#sound-dai-cells");
3919 if (num_codecs <= 0) {
3920 if (num_codecs == -ENOENT)
3921 dev_err(dev, "No 'sound-dai' property\n");
3923 dev_err(dev, "Bad phandle in 'sound-dai'\n");
3926 component = devm_kcalloc(dev,
3927 num_codecs, sizeof(*component),
3931 dai_link->codecs = component;
3932 dai_link->num_codecs = num_codecs;
3934 /* Parse the list */
3935 for_each_link_codecs(dai_link, index, component) {
3936 ret = of_parse_phandle_with_args(of_node, name,
3941 component->of_node = args.np;
3942 ret = snd_soc_get_dai_name(&args, &component->dai_name);
3948 snd_soc_of_put_dai_link_codecs(dai_link);
3949 dai_link->codecs = NULL;
3950 dai_link->num_codecs = 0;
3953 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3955 static int __init snd_soc_init(void)
3957 snd_soc_debugfs_init();
3958 snd_soc_util_init();
3960 return platform_driver_register(&soc_driver);
3962 module_init(snd_soc_init);
3964 static void __exit snd_soc_exit(void)
3966 snd_soc_util_exit();
3967 snd_soc_debugfs_exit();
3969 platform_driver_unregister(&soc_driver);
3971 module_exit(snd_soc_exit);
3973 /* Module information */
3975 MODULE_DESCRIPTION("ALSA SoC Core");
3976 MODULE_LICENSE("GPL");
3977 MODULE_ALIAS("platform:soc-audio");