xref: /openbmc/linux/sound/soc/soc-core.c (revision aec3ff99ce4a02d9bbe8b7311136edc69bdb739d)
1873486edSKuninori Morimoto // SPDX-License-Identifier: GPL-2.0+
2873486edSKuninori Morimoto //
3873486edSKuninori Morimoto // soc-core.c  --  ALSA SoC Audio Layer
4873486edSKuninori Morimoto //
5873486edSKuninori Morimoto // Copyright 2005 Wolfson Microelectronics PLC.
6873486edSKuninori Morimoto // Copyright 2005 Openedhand Ltd.
7873486edSKuninori Morimoto // Copyright (C) 2010 Slimlogic Ltd.
8873486edSKuninori Morimoto // Copyright (C) 2010 Texas Instruments Inc.
9873486edSKuninori Morimoto //
10873486edSKuninori Morimoto // Author: Liam Girdwood <lrg@slimlogic.co.uk>
11873486edSKuninori Morimoto //         with code, comments and ideas from :-
12873486edSKuninori Morimoto //         Richard Purdie <richard@openedhand.com>
13873486edSKuninori Morimoto //
14873486edSKuninori Morimoto //  TODO:
15873486edSKuninori Morimoto //   o Add hw rules to enforce rates, etc.
16873486edSKuninori Morimoto //   o More testing with other codecs/machines.
17873486edSKuninori Morimoto //   o Add more codecs and platforms to ensure good API coverage.
18873486edSKuninori Morimoto //   o Support TDM on PCM and I2S
19db2a4165SFrank Mandarino 
20db2a4165SFrank Mandarino #include <linux/module.h>
21db2a4165SFrank Mandarino #include <linux/moduleparam.h>
22db2a4165SFrank Mandarino #include <linux/init.h>
23db2a4165SFrank Mandarino #include <linux/delay.h>
24db2a4165SFrank Mandarino #include <linux/pm.h>
25db2a4165SFrank Mandarino #include <linux/bitops.h>
2612ef193dSTroy Kisky #include <linux/debugfs.h>
27db2a4165SFrank Mandarino #include <linux/platform_device.h>
28741a509fSMarkus Pargmann #include <linux/pinctrl/consumer.h>
29f0e8ed85SMark Brown #include <linux/ctype.h>
305a0e3ad6STejun Heo #include <linux/slab.h>
31bec4fa05SStephen Warren #include <linux/of.h>
32a180e8b9SKuninori Morimoto #include <linux/of_graph.h>
33345233d7SLiam Girdwood #include <linux/dmi.h>
34db2a4165SFrank Mandarino #include <sound/core.h>
353028eb8cSMark Brown #include <sound/jack.h>
36db2a4165SFrank Mandarino #include <sound/pcm.h>
37db2a4165SFrank Mandarino #include <sound/pcm_params.h>
38db2a4165SFrank Mandarino #include <sound/soc.h>
3901d7584cSLiam Girdwood #include <sound/soc-dpcm.h>
408a978234SLiam Girdwood #include <sound/soc-topology.h>
41db2a4165SFrank Mandarino #include <sound/initval.h>
42db2a4165SFrank Mandarino 
43a8b1d34fSMark Brown #define CREATE_TRACE_POINTS
44a8b1d34fSMark Brown #include <trace/events/asoc.h>
45a8b1d34fSMark Brown 
46f0fba2adSLiam Girdwood #define NAME_SIZE	32
47f0fba2adSLiam Girdwood 
48384c89e2SMark Brown #ifdef CONFIG_DEBUG_FS
498a9dab1aSMark Brown struct dentry *snd_soc_debugfs_root;
508a9dab1aSMark Brown EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
51384c89e2SMark Brown #endif
52384c89e2SMark Brown 
53c5af3a2eSMark Brown static DEFINE_MUTEX(client_mutex);
54030e79f6SKuninori Morimoto static LIST_HEAD(component_list);
55e894efefSSrinivas Kandagatla static LIST_HEAD(unbind_card_list);
56c5af3a2eSMark Brown 
57368dee94SKuninori Morimoto #define for_each_component(component)			\
58368dee94SKuninori Morimoto 	list_for_each_entry(component, &component_list, list)
59368dee94SKuninori Morimoto 
60db2a4165SFrank Mandarino /*
61587c9844SKuninori Morimoto  * This is used if driver don't need to have CPU/Codec/Platform
62587c9844SKuninori Morimoto  * dai_link. see soc.h
63587c9844SKuninori Morimoto  */
64587c9844SKuninori Morimoto struct snd_soc_dai_link_component null_dailink_component[0];
65587c9844SKuninori Morimoto EXPORT_SYMBOL_GPL(null_dailink_component);
66587c9844SKuninori Morimoto 
67587c9844SKuninori Morimoto /*
68db2a4165SFrank Mandarino  * This is a timeout to do a DAPM powerdown after a stream is closed().
69db2a4165SFrank Mandarino  * It can be used to eliminate pops between different playback streams, e.g.
70db2a4165SFrank Mandarino  * between two audio tracks.
71db2a4165SFrank Mandarino  */
72db2a4165SFrank Mandarino static int pmdown_time = 5000;
73db2a4165SFrank Mandarino module_param(pmdown_time, int, 0);
74db2a4165SFrank Mandarino MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
75db2a4165SFrank Mandarino 
760faf1237SYueHaibing #ifdef CONFIG_DMI
772c7b696aSMarcel Ziswiler /*
782c7b696aSMarcel Ziswiler  * If a DMI filed contain strings in this blacklist (e.g.
7998faf436SMengdong Lin  * "Type2 - Board Manufacturer" or "Type1 - TBD by OEM"), it will be taken
8098faf436SMengdong Lin  * as invalid and dropped when setting the card long name from DMI info.
8198faf436SMengdong Lin  */
8298faf436SMengdong Lin static const char * const dmi_blacklist[] = {
8398faf436SMengdong Lin 	"To be filled by OEM",
8498faf436SMengdong Lin 	"TBD by OEM",
8598faf436SMengdong Lin 	"Default String",
8698faf436SMengdong Lin 	"Board Manufacturer",
8798faf436SMengdong Lin 	"Board Vendor Name",
8898faf436SMengdong Lin 	"Board Product Name",
8998faf436SMengdong Lin 	NULL,	/* terminator */
9098faf436SMengdong Lin };
910faf1237SYueHaibing #endif
9298faf436SMengdong Lin 
93dbe21408SMark Brown static ssize_t pmdown_time_show(struct device *dev,
94dbe21408SMark Brown 				struct device_attribute *attr, char *buf)
95dbe21408SMark Brown {
9636ae1a96SMark Brown 	struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
97dbe21408SMark Brown 
98f0fba2adSLiam Girdwood 	return sprintf(buf, "%ld\n", rtd->pmdown_time);
99dbe21408SMark Brown }
100dbe21408SMark Brown 
101dbe21408SMark Brown static ssize_t pmdown_time_set(struct device *dev,
102dbe21408SMark Brown 			       struct device_attribute *attr,
103dbe21408SMark Brown 			       const char *buf, size_t count)
104dbe21408SMark Brown {
10536ae1a96SMark Brown 	struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
106c593b520SMark Brown 	int ret;
107dbe21408SMark Brown 
108b785a492SJingoo Han 	ret = kstrtol(buf, 10, &rtd->pmdown_time);
109c593b520SMark Brown 	if (ret)
110c593b520SMark Brown 		return ret;
111dbe21408SMark Brown 
112dbe21408SMark Brown 	return count;
113dbe21408SMark Brown }
114dbe21408SMark Brown 
115dbe21408SMark Brown static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
116dbe21408SMark Brown 
117d29697dcSTakashi Iwai static struct attribute *soc_dev_attrs[] = {
118d29697dcSTakashi Iwai 	&dev_attr_pmdown_time.attr,
119d29697dcSTakashi Iwai 	NULL
120d29697dcSTakashi Iwai };
121d29697dcSTakashi Iwai 
122d29697dcSTakashi Iwai static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
123d29697dcSTakashi Iwai 				       struct attribute *attr, int idx)
124d29697dcSTakashi Iwai {
125d29697dcSTakashi Iwai 	struct device *dev = kobj_to_dev(kobj);
126d29697dcSTakashi Iwai 	struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
127d29697dcSTakashi Iwai 
128d918a376SKuninori Morimoto 	if (!rtd)
129d918a376SKuninori Morimoto 		return 0;
130d918a376SKuninori Morimoto 
131d29697dcSTakashi Iwai 	if (attr == &dev_attr_pmdown_time.attr)
132d29697dcSTakashi Iwai 		return attr->mode; /* always visible */
1333b6eed8dSKuninori Morimoto 	return rtd->num_codecs ? attr->mode : 0; /* enabled only with codec */
134d29697dcSTakashi Iwai }
135d29697dcSTakashi Iwai 
136d29697dcSTakashi Iwai static const struct attribute_group soc_dapm_dev_group = {
137d29697dcSTakashi Iwai 	.attrs = soc_dapm_dev_attrs,
138d29697dcSTakashi Iwai 	.is_visible = soc_dev_attr_is_visible,
139d29697dcSTakashi Iwai };
140d29697dcSTakashi Iwai 
141f7e73b26SMark Brown static const struct attribute_group soc_dev_group = {
142d29697dcSTakashi Iwai 	.attrs = soc_dev_attrs,
143d29697dcSTakashi Iwai 	.is_visible = soc_dev_attr_is_visible,
144d29697dcSTakashi Iwai };
145d29697dcSTakashi Iwai 
146d29697dcSTakashi Iwai static const struct attribute_group *soc_dev_attr_groups[] = {
147d29697dcSTakashi Iwai 	&soc_dapm_dev_group,
148f7e73b26SMark Brown 	&soc_dev_group,
149d29697dcSTakashi Iwai 	NULL
150d29697dcSTakashi Iwai };
151d29697dcSTakashi Iwai 
1522624d5faSMark Brown #ifdef CONFIG_DEBUG_FS
15381c7cfd1SLars-Peter Clausen static void soc_init_component_debugfs(struct snd_soc_component *component)
154e73f3de5SRussell King {
1556553bf06SLars-Peter Clausen 	if (!component->card->debugfs_card_root)
1566553bf06SLars-Peter Clausen 		return;
1576553bf06SLars-Peter Clausen 
15881c7cfd1SLars-Peter Clausen 	if (component->debugfs_prefix) {
15981c7cfd1SLars-Peter Clausen 		char *name;
160e73f3de5SRussell King 
16181c7cfd1SLars-Peter Clausen 		name = kasprintf(GFP_KERNEL, "%s:%s",
16281c7cfd1SLars-Peter Clausen 			component->debugfs_prefix, component->name);
16381c7cfd1SLars-Peter Clausen 		if (name) {
16481c7cfd1SLars-Peter Clausen 			component->debugfs_root = debugfs_create_dir(name,
16581c7cfd1SLars-Peter Clausen 				component->card->debugfs_card_root);
16681c7cfd1SLars-Peter Clausen 			kfree(name);
16781c7cfd1SLars-Peter Clausen 		}
16881c7cfd1SLars-Peter Clausen 	} else {
16981c7cfd1SLars-Peter Clausen 		component->debugfs_root = debugfs_create_dir(component->name,
17081c7cfd1SLars-Peter Clausen 				component->card->debugfs_card_root);
171e73f3de5SRussell King 	}
172e73f3de5SRussell King 
17381c7cfd1SLars-Peter Clausen 	snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component),
17481c7cfd1SLars-Peter Clausen 		component->debugfs_root);
17581c7cfd1SLars-Peter Clausen }
17681c7cfd1SLars-Peter Clausen 
17781c7cfd1SLars-Peter Clausen static void soc_cleanup_component_debugfs(struct snd_soc_component *component)
17881c7cfd1SLars-Peter Clausen {
179ad64bfbdSKuninori Morimoto 	if (!component->debugfs_root)
180ad64bfbdSKuninori Morimoto 		return;
18181c7cfd1SLars-Peter Clausen 	debugfs_remove_recursive(component->debugfs_root);
182ad64bfbdSKuninori Morimoto 	component->debugfs_root = NULL;
18381c7cfd1SLars-Peter Clausen }
18481c7cfd1SLars-Peter Clausen 
185c15b2a1dSPeng Donglin static int dai_list_show(struct seq_file *m, void *v)
186f3208780SMark Brown {
1871438c2f6SLars-Peter Clausen 	struct snd_soc_component *component;
188f3208780SMark Brown 	struct snd_soc_dai *dai;
189f3208780SMark Brown 
19034e81ab4SLars-Peter Clausen 	mutex_lock(&client_mutex);
19134e81ab4SLars-Peter Clausen 
192368dee94SKuninori Morimoto 	for_each_component(component)
19315a0c645SKuninori Morimoto 		for_each_component_dais(component, dai)
194700c17caSDonglin Peng 			seq_printf(m, "%s\n", dai->name);
195f3208780SMark Brown 
19634e81ab4SLars-Peter Clausen 	mutex_unlock(&client_mutex);
19734e81ab4SLars-Peter Clausen 
198700c17caSDonglin Peng 	return 0;
199700c17caSDonglin Peng }
200c15b2a1dSPeng Donglin DEFINE_SHOW_ATTRIBUTE(dai_list);
201f3208780SMark Brown 
202db795f9bSKuninori Morimoto static int component_list_show(struct seq_file *m, void *v)
203db795f9bSKuninori Morimoto {
204db795f9bSKuninori Morimoto 	struct snd_soc_component *component;
205db795f9bSKuninori Morimoto 
206db795f9bSKuninori Morimoto 	mutex_lock(&client_mutex);
207db795f9bSKuninori Morimoto 
208368dee94SKuninori Morimoto 	for_each_component(component)
209db795f9bSKuninori Morimoto 		seq_printf(m, "%s\n", component->name);
210db795f9bSKuninori Morimoto 
211db795f9bSKuninori Morimoto 	mutex_unlock(&client_mutex);
212db795f9bSKuninori Morimoto 
213db795f9bSKuninori Morimoto 	return 0;
214db795f9bSKuninori Morimoto }
215db795f9bSKuninori Morimoto DEFINE_SHOW_ATTRIBUTE(component_list);
216db795f9bSKuninori Morimoto 
217a6052154SJarkko Nikula static void soc_init_card_debugfs(struct snd_soc_card *card)
218a6052154SJarkko Nikula {
219a6052154SJarkko Nikula 	card->debugfs_card_root = debugfs_create_dir(card->name,
2208a9dab1aSMark Brown 						     snd_soc_debugfs_root);
2213a45b867SJarkko Nikula 
222fee531d6SGreg Kroah-Hartman 	debugfs_create_u32("dapm_pop_time", 0644, card->debugfs_card_root,
2233a45b867SJarkko Nikula 			   &card->pop_time);
224d8ca7a0aSKuninori Morimoto 
225d8ca7a0aSKuninori Morimoto 	snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
226a6052154SJarkko Nikula }
227a6052154SJarkko Nikula 
228a6052154SJarkko Nikula static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
229a6052154SJarkko Nikula {
230a6052154SJarkko Nikula 	debugfs_remove_recursive(card->debugfs_card_root);
23129040d1aSKuninori Morimoto 	card->debugfs_card_root = NULL;
232a6052154SJarkko Nikula }
233a6052154SJarkko Nikula 
2346553bf06SLars-Peter Clausen static void snd_soc_debugfs_init(void)
2356553bf06SLars-Peter Clausen {
2366553bf06SLars-Peter Clausen 	snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
2376553bf06SLars-Peter Clausen 
238fee531d6SGreg Kroah-Hartman 	debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
239fee531d6SGreg Kroah-Hartman 			    &dai_list_fops);
240db795f9bSKuninori Morimoto 
241fee531d6SGreg Kroah-Hartman 	debugfs_create_file("components", 0444, snd_soc_debugfs_root, NULL,
242fee531d6SGreg Kroah-Hartman 			    &component_list_fops);
2436553bf06SLars-Peter Clausen }
2446553bf06SLars-Peter Clausen 
2456553bf06SLars-Peter Clausen static void snd_soc_debugfs_exit(void)
2466553bf06SLars-Peter Clausen {
2476553bf06SLars-Peter Clausen 	debugfs_remove_recursive(snd_soc_debugfs_root);
2486553bf06SLars-Peter Clausen }
2496553bf06SLars-Peter Clausen 
2502624d5faSMark Brown #else
2512624d5faSMark Brown 
25281c7cfd1SLars-Peter Clausen static inline void soc_init_component_debugfs(
25381c7cfd1SLars-Peter Clausen 	struct snd_soc_component *component)
2542624d5faSMark Brown {
2552624d5faSMark Brown }
2562624d5faSMark Brown 
25781c7cfd1SLars-Peter Clausen static inline void soc_cleanup_component_debugfs(
25881c7cfd1SLars-Peter Clausen 	struct snd_soc_component *component)
259731f1ab2SSebastien Guiriec {
260731f1ab2SSebastien Guiriec }
261731f1ab2SSebastien Guiriec 
262b95fccbcSAxel Lin static inline void soc_init_card_debugfs(struct snd_soc_card *card)
263b95fccbcSAxel Lin {
264b95fccbcSAxel Lin }
265b95fccbcSAxel Lin 
266b95fccbcSAxel Lin static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
267b95fccbcSAxel Lin {
268b95fccbcSAxel Lin }
2696553bf06SLars-Peter Clausen 
2706553bf06SLars-Peter Clausen static inline void snd_soc_debugfs_init(void)
2716553bf06SLars-Peter Clausen {
2726553bf06SLars-Peter Clausen }
2736553bf06SLars-Peter Clausen 
2746553bf06SLars-Peter Clausen static inline void snd_soc_debugfs_exit(void)
2756553bf06SLars-Peter Clausen {
2766553bf06SLars-Peter Clausen }
2776553bf06SLars-Peter Clausen 
2782624d5faSMark Brown #endif
2792624d5faSMark Brown 
2808ec241c4SKuninori Morimoto /*
2818ec241c4SKuninori Morimoto  * This is glue code between snd_pcm_lib_ioctl() and
2828ec241c4SKuninori Morimoto  * snd_soc_component_driver :: ioctl
2838ec241c4SKuninori Morimoto  */
2848ec241c4SKuninori Morimoto int snd_soc_pcm_lib_ioctl(struct snd_soc_component *component,
2858ec241c4SKuninori Morimoto 			  struct snd_pcm_substream *substream,
2868ec241c4SKuninori Morimoto 			  unsigned int cmd, void *arg)
2878ec241c4SKuninori Morimoto {
2888ec241c4SKuninori Morimoto 	return snd_pcm_lib_ioctl(substream, cmd, arg);
2898ec241c4SKuninori Morimoto }
2908ec241c4SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_pcm_lib_ioctl);
2918ec241c4SKuninori Morimoto 
292a0ac4411SKuninori Morimoto static int snd_soc_rtdcom_add(struct snd_soc_pcm_runtime *rtd,
293a0ac4411SKuninori Morimoto 			      struct snd_soc_component *component)
294a0ac4411SKuninori Morimoto {
295a0ac4411SKuninori Morimoto 	struct snd_soc_rtdcom_list *rtdcom;
2962b544dd7SKuninori Morimoto 	struct snd_soc_component *comp;
297a0ac4411SKuninori Morimoto 
2982b544dd7SKuninori Morimoto 	for_each_rtd_components(rtd, rtdcom, comp) {
299a0ac4411SKuninori Morimoto 		/* already connected */
3002b544dd7SKuninori Morimoto 		if (comp == component)
301a0ac4411SKuninori Morimoto 			return 0;
302a0ac4411SKuninori Morimoto 	}
303a0ac4411SKuninori Morimoto 
304353e16bfSKuninori Morimoto 	/*
305353e16bfSKuninori Morimoto 	 * created rtdcom here will be freed when rtd->dev was freed.
306353e16bfSKuninori Morimoto 	 * see
307353e16bfSKuninori Morimoto 	 *	soc_free_pcm_runtime() :: device_unregister(rtd->dev)
308353e16bfSKuninori Morimoto 	 */
309353e16bfSKuninori Morimoto 	rtdcom = devm_kzalloc(rtd->dev, sizeof(*rtdcom), GFP_KERNEL);
31032d2c172SKuninori Morimoto 	if (!rtdcom)
311a0ac4411SKuninori Morimoto 		return -ENOMEM;
312a0ac4411SKuninori Morimoto 
31332d2c172SKuninori Morimoto 	rtdcom->component = component;
31432d2c172SKuninori Morimoto 	INIT_LIST_HEAD(&rtdcom->list);
315a0ac4411SKuninori Morimoto 
316353e16bfSKuninori Morimoto 	/*
317353e16bfSKuninori Morimoto 	 * When rtd was freed, created rtdcom here will be
318353e16bfSKuninori Morimoto 	 * also freed.
319353e16bfSKuninori Morimoto 	 * And we don't need to call list_del(&rtdcom->list)
320353e16bfSKuninori Morimoto 	 * when freed, because rtd is also freed.
321353e16bfSKuninori Morimoto 	 */
32232d2c172SKuninori Morimoto 	list_add_tail(&rtdcom->list, &rtd->component_list);
323a0ac4411SKuninori Morimoto 
324a0ac4411SKuninori Morimoto 	return 0;
325a0ac4411SKuninori Morimoto }
326a0ac4411SKuninori Morimoto 
327a0ac4411SKuninori Morimoto struct snd_soc_component *snd_soc_rtdcom_lookup(struct snd_soc_pcm_runtime *rtd,
328a0ac4411SKuninori Morimoto 						const char *driver_name)
329a0ac4411SKuninori Morimoto {
330a0ac4411SKuninori Morimoto 	struct snd_soc_rtdcom_list *rtdcom;
3312b544dd7SKuninori Morimoto 	struct snd_soc_component *component;
332a0ac4411SKuninori Morimoto 
333971da24cSKuninori Morimoto 	if (!driver_name)
334971da24cSKuninori Morimoto 		return NULL;
335971da24cSKuninori Morimoto 
336a33c0d16SKuninori Morimoto 	/*
337a33c0d16SKuninori Morimoto 	 * NOTE
338a33c0d16SKuninori Morimoto 	 *
339a33c0d16SKuninori Morimoto 	 * snd_soc_rtdcom_lookup() will find component from rtd by using
340a33c0d16SKuninori Morimoto 	 * specified driver name.
341a33c0d16SKuninori Morimoto 	 * But, if many components which have same driver name are connected
342a33c0d16SKuninori Morimoto 	 * to 1 rtd, this function will return 1st found component.
343a33c0d16SKuninori Morimoto 	 */
3442b544dd7SKuninori Morimoto 	for_each_rtd_components(rtd, rtdcom, component) {
3452b544dd7SKuninori Morimoto 		const char *component_name = component->driver->name;
346971da24cSKuninori Morimoto 
347971da24cSKuninori Morimoto 		if (!component_name)
348971da24cSKuninori Morimoto 			continue;
349971da24cSKuninori Morimoto 
350971da24cSKuninori Morimoto 		if ((component_name == driver_name) ||
351971da24cSKuninori Morimoto 		    strcmp(component_name, driver_name) == 0)
352a0ac4411SKuninori Morimoto 			return rtdcom->component;
353a0ac4411SKuninori Morimoto 	}
354a0ac4411SKuninori Morimoto 
355a0ac4411SKuninori Morimoto 	return NULL;
356a0ac4411SKuninori Morimoto }
357031734b7SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_rtdcom_lookup);
358a0ac4411SKuninori Morimoto 
35918dd66eaSKuninori Morimoto static struct snd_soc_component
36018dd66eaSKuninori Morimoto *snd_soc_lookup_component_nolocked(struct device *dev, const char *driver_name)
361b8132657SKuninori Morimoto {
362b8132657SKuninori Morimoto 	struct snd_soc_component *component;
3635bd7e08bSKuninori Morimoto 	struct snd_soc_component *found_component;
364b8132657SKuninori Morimoto 
3655bd7e08bSKuninori Morimoto 	found_component = NULL;
366b8132657SKuninori Morimoto 	for_each_component(component) {
3675bd7e08bSKuninori Morimoto 		if ((dev == component->dev) &&
3685bd7e08bSKuninori Morimoto 		    (!driver_name ||
3695bd7e08bSKuninori Morimoto 		     (driver_name == component->driver->name) ||
3705bd7e08bSKuninori Morimoto 		     (strcmp(component->driver->name, driver_name) == 0))) {
3715bd7e08bSKuninori Morimoto 			found_component = component;
372b8132657SKuninori Morimoto 			break;
373b8132657SKuninori Morimoto 		}
3745bd7e08bSKuninori Morimoto 	}
375b8132657SKuninori Morimoto 
3765bd7e08bSKuninori Morimoto 	return found_component;
377b8132657SKuninori Morimoto }
37818dd66eaSKuninori Morimoto 
37918dd66eaSKuninori Morimoto struct snd_soc_component *snd_soc_lookup_component(struct device *dev,
38018dd66eaSKuninori Morimoto 						   const char *driver_name)
38118dd66eaSKuninori Morimoto {
38218dd66eaSKuninori Morimoto 	struct snd_soc_component *component;
38318dd66eaSKuninori Morimoto 
38418dd66eaSKuninori Morimoto 	mutex_lock(&client_mutex);
38518dd66eaSKuninori Morimoto 	component = snd_soc_lookup_component_nolocked(dev, driver_name);
38618dd66eaSKuninori Morimoto 	mutex_unlock(&client_mutex);
38718dd66eaSKuninori Morimoto 
38818dd66eaSKuninori Morimoto 	return component;
38918dd66eaSKuninori Morimoto }
390b8132657SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_lookup_component);
391b8132657SKuninori Morimoto 
39275ab9eb6SKuninori Morimoto static const struct snd_soc_ops null_snd_soc_ops;
39375ab9eb6SKuninori Morimoto 
39494def8eaSKuninori Morimoto struct snd_soc_pcm_runtime
39594def8eaSKuninori Morimoto *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
3964468189fSKuninori Morimoto 			 struct snd_soc_dai_link *dai_link)
39794def8eaSKuninori Morimoto {
39894def8eaSKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd;
39994def8eaSKuninori Morimoto 
40094def8eaSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
4014468189fSKuninori Morimoto 		if (rtd->dai_link == dai_link)
40294def8eaSKuninori Morimoto 			return rtd;
40394def8eaSKuninori Morimoto 	}
4044468189fSKuninori Morimoto 	dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link->name);
40594def8eaSKuninori Morimoto 	return NULL;
40694def8eaSKuninori Morimoto }
40794def8eaSKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
40894def8eaSKuninori Morimoto 
4096e864344SKuninori Morimoto static void soc_release_rtd_dev(struct device *dev)
4106e864344SKuninori Morimoto {
4116e864344SKuninori Morimoto 	/* "dev" means "rtd->dev" */
4126e864344SKuninori Morimoto 	kfree(dev);
4136e864344SKuninori Morimoto }
4146e864344SKuninori Morimoto 
4151c93a9e0SKuninori Morimoto static void soc_free_pcm_runtime(struct snd_soc_pcm_runtime *rtd)
4161c93a9e0SKuninori Morimoto {
4176e864344SKuninori Morimoto 	if (!rtd)
4186e864344SKuninori Morimoto 		return;
4196e864344SKuninori Morimoto 
420753ace0aSKuninori Morimoto 	list_del(&rtd->list);
421b7c5bc45SKuninori Morimoto 
4220ced7b05SKuninori Morimoto 	flush_delayed_work(&rtd->delayed_work);
4230ced7b05SKuninori Morimoto 	snd_soc_pcm_component_free(rtd);
4240ced7b05SKuninori Morimoto 
425b7c5bc45SKuninori Morimoto 	/*
426b7c5bc45SKuninori Morimoto 	 * we don't need to call kfree() for rtd->dev
427b7c5bc45SKuninori Morimoto 	 * see
428b7c5bc45SKuninori Morimoto 	 *	soc_release_rtd_dev()
429d918a376SKuninori Morimoto 	 *
430d918a376SKuninori Morimoto 	 * We don't need rtd->dev NULL check, because
431d918a376SKuninori Morimoto 	 * it is alloced *before* rtd.
432d918a376SKuninori Morimoto 	 * see
433d918a376SKuninori Morimoto 	 *	soc_new_pcm_runtime()
434b7c5bc45SKuninori Morimoto 	 */
435b7c5bc45SKuninori Morimoto 	device_unregister(rtd->dev);
4361c93a9e0SKuninori Morimoto }
4371c93a9e0SKuninori Morimoto 
4381a497983SMengdong Lin static struct snd_soc_pcm_runtime *soc_new_pcm_runtime(
4391a497983SMengdong Lin 	struct snd_soc_card *card, struct snd_soc_dai_link *dai_link)
4401a497983SMengdong Lin {
4411a497983SMengdong Lin 	struct snd_soc_pcm_runtime *rtd;
442d918a376SKuninori Morimoto 	struct device *dev;
4436e864344SKuninori Morimoto 	int ret;
4441a497983SMengdong Lin 
4456e864344SKuninori Morimoto 	/*
446d918a376SKuninori Morimoto 	 * for rtd->dev
447d918a376SKuninori Morimoto 	 */
448d918a376SKuninori Morimoto 	dev = kzalloc(sizeof(struct device), GFP_KERNEL);
449d918a376SKuninori Morimoto 	if (!dev)
450d918a376SKuninori Morimoto 		return NULL;
451d918a376SKuninori Morimoto 
452d918a376SKuninori Morimoto 	dev->parent	= card->dev;
453d918a376SKuninori Morimoto 	dev->release	= soc_release_rtd_dev;
454d918a376SKuninori Morimoto 	dev->groups	= soc_dev_attr_groups;
455d918a376SKuninori Morimoto 
456d918a376SKuninori Morimoto 	dev_set_name(dev, "%s", dai_link->name);
457d918a376SKuninori Morimoto 
458d918a376SKuninori Morimoto 	ret = device_register(dev);
459d918a376SKuninori Morimoto 	if (ret < 0) {
460d918a376SKuninori Morimoto 		put_device(dev); /* soc_release_rtd_dev */
461d918a376SKuninori Morimoto 		return NULL;
462d918a376SKuninori Morimoto 	}
463d918a376SKuninori Morimoto 
464d918a376SKuninori Morimoto 	/*
4656e864344SKuninori Morimoto 	 * for rtd
4666e864344SKuninori Morimoto 	 */
4674dc0e7dfSKuninori Morimoto 	rtd = devm_kzalloc(dev, sizeof(*rtd), GFP_KERNEL);
4681a497983SMengdong Lin 	if (!rtd)
4696e864344SKuninori Morimoto 		goto free_rtd;
4701a497983SMengdong Lin 
471d918a376SKuninori Morimoto 	rtd->dev = dev;
472d918a376SKuninori Morimoto 	dev_set_drvdata(dev, rtd);
473d918a376SKuninori Morimoto 
4746e864344SKuninori Morimoto 	/*
4756e864344SKuninori Morimoto 	 * for rtd->codec_dais
4766e864344SKuninori Morimoto 	 */
4774dc0e7dfSKuninori Morimoto 	rtd->codec_dais = devm_kcalloc(dev, dai_link->num_codecs,
4786396bb22SKees Cook 					sizeof(struct snd_soc_dai *),
4791a497983SMengdong Lin 					GFP_KERNEL);
4806e864344SKuninori Morimoto 	if (!rtd->codec_dais)
4816e864344SKuninori Morimoto 		goto free_rtd;
4826e864344SKuninori Morimoto 
4836e864344SKuninori Morimoto 	/*
4846e864344SKuninori Morimoto 	 * rtd remaining settings
4856e864344SKuninori Morimoto 	 */
486929deb84SKuninori Morimoto 	INIT_LIST_HEAD(&rtd->component_list);
4876e864344SKuninori Morimoto 	INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
4886e864344SKuninori Morimoto 	INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
4896e864344SKuninori Morimoto 	INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
4906e864344SKuninori Morimoto 	INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
4916e864344SKuninori Morimoto 
492929deb84SKuninori Morimoto 	rtd->card = card;
493929deb84SKuninori Morimoto 	rtd->dai_link = dai_link;
494929deb84SKuninori Morimoto 	if (!rtd->dai_link->ops)
495929deb84SKuninori Morimoto 		rtd->dai_link->ops = &null_snd_soc_ops;
496929deb84SKuninori Morimoto 
4976634e3d6SKuninori Morimoto 	/* see for_each_card_rtds */
4981a497983SMengdong Lin 	list_add_tail(&rtd->list, &card->rtd_list);
4991a497983SMengdong Lin 	rtd->num = card->num_rtd;
5001a497983SMengdong Lin 	card->num_rtd++;
501a848125eSKuninori Morimoto 
502a848125eSKuninori Morimoto 	return rtd;
5036e864344SKuninori Morimoto 
5046e864344SKuninori Morimoto free_rtd:
5056e864344SKuninori Morimoto 	soc_free_pcm_runtime(rtd);
5066e864344SKuninori Morimoto 	return NULL;
5071a497983SMengdong Lin }
5081a497983SMengdong Lin 
50965462e44SKuninori Morimoto static void snd_soc_flush_all_delayed_work(struct snd_soc_card *card)
51065462e44SKuninori Morimoto {
51165462e44SKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd;
51265462e44SKuninori Morimoto 
51365462e44SKuninori Morimoto 	for_each_card_rtds(card, rtd)
51465462e44SKuninori Morimoto 		flush_delayed_work(&rtd->delayed_work);
51565462e44SKuninori Morimoto }
51665462e44SKuninori Morimoto 
5176f8ab4acSMark Brown #ifdef CONFIG_PM_SLEEP
518db2a4165SFrank Mandarino /* powers down audio subsystem for suspend */
5196f8ab4acSMark Brown int snd_soc_suspend(struct device *dev)
520db2a4165SFrank Mandarino {
5216f8ab4acSMark Brown 	struct snd_soc_card *card = dev_get_drvdata(dev);
522d9fc4063SKuninori Morimoto 	struct snd_soc_component *component;
5231a497983SMengdong Lin 	struct snd_soc_pcm_runtime *rtd;
5241a497983SMengdong Lin 	int i;
525db2a4165SFrank Mandarino 
526c5599b87SLars-Peter Clausen 	/* If the card is not initialized yet there is nothing to do */
527c5599b87SLars-Peter Clausen 	if (!card->instantiated)
528e3509ff0SDaniel Mack 		return 0;
529e3509ff0SDaniel Mack 
5302c7b696aSMarcel Ziswiler 	/*
5312c7b696aSMarcel Ziswiler 	 * Due to the resume being scheduled into a workqueue we could
5326ed25978SAndy Green 	 * suspend before that's finished - wait for it to complete.
5336ed25978SAndy Green 	 */
534f0fba2adSLiam Girdwood 	snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
5356ed25978SAndy Green 
5366ed25978SAndy Green 	/* we're going to block userspace touching us until resume completes */
537f0fba2adSLiam Girdwood 	snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
5386ed25978SAndy Green 
539a00f90f9SMark Brown 	/* mute any active DACs */
540bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
5410b7990e3SKuninori Morimoto 		struct snd_soc_dai *dai;
5423efab7dcSMark Brown 
5431a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
5443efab7dcSMark Brown 			continue;
5453efab7dcSMark Brown 
5460b7990e3SKuninori Morimoto 		for_each_rtd_codec_dai(rtd, i, dai) {
54788fdffa2SKuninori Morimoto 			if (dai->playback_active)
54888fdffa2SKuninori Morimoto 				snd_soc_dai_digital_mute(dai, 1,
54988fdffa2SKuninori Morimoto 						SNDRV_PCM_STREAM_PLAYBACK);
550db2a4165SFrank Mandarino 		}
55188bd870fSBenoit Cousson 	}
552db2a4165SFrank Mandarino 
5534ccab3e7SLiam Girdwood 	/* suspend all pcms */
554bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
5551a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
5563efab7dcSMark Brown 			continue;
5573efab7dcSMark Brown 
5581a497983SMengdong Lin 		snd_pcm_suspend_all(rtd->pcm);
5593efab7dcSMark Brown 	}
5604ccab3e7SLiam Girdwood 
56187506549SMark Brown 	if (card->suspend_pre)
56270b2ac12SMark Brown 		card->suspend_pre(card);
563db2a4165SFrank Mandarino 
564bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
5651a497983SMengdong Lin 		struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
5663efab7dcSMark Brown 
5671a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
5683efab7dcSMark Brown 			continue;
5693efab7dcSMark Brown 
570e0f22622SKuninori Morimoto 		if (!cpu_dai->driver->bus_control)
571e0f22622SKuninori Morimoto 			snd_soc_dai_suspend(cpu_dai);
572db2a4165SFrank Mandarino 	}
573db2a4165SFrank Mandarino 
57437660b6dSLars-Peter Clausen 	/* close any waiting streams */
57565462e44SKuninori Morimoto 	snd_soc_flush_all_delayed_work(card);
576db2a4165SFrank Mandarino 
577bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
5783efab7dcSMark Brown 
5791a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
5803efab7dcSMark Brown 			continue;
5813efab7dcSMark Brown 
5821a497983SMengdong Lin 		snd_soc_dapm_stream_event(rtd,
5837bd3a6f3SMark Brown 					  SNDRV_PCM_STREAM_PLAYBACK,
584db2a4165SFrank Mandarino 					  SND_SOC_DAPM_STREAM_SUSPEND);
585f0fba2adSLiam Girdwood 
5861a497983SMengdong Lin 		snd_soc_dapm_stream_event(rtd,
5877bd3a6f3SMark Brown 					  SNDRV_PCM_STREAM_CAPTURE,
588db2a4165SFrank Mandarino 					  SND_SOC_DAPM_STREAM_SUSPEND);
589db2a4165SFrank Mandarino 	}
590db2a4165SFrank Mandarino 
5918be4da29SLars-Peter Clausen 	/* Recheck all endpoints too, their state is affected by suspend */
5928be4da29SLars-Peter Clausen 	dapm_mark_endpoints_dirty(card);
593e2d32ff6SMark Brown 	snd_soc_dapm_sync(&card->dapm);
594e2d32ff6SMark Brown 
5959178feb4SKuninori Morimoto 	/* suspend all COMPONENTs */
596f70f18f7SKuninori Morimoto 	for_each_card_components(card, component) {
5972c7b696aSMarcel Ziswiler 		struct snd_soc_dapm_context *dapm =
5982c7b696aSMarcel Ziswiler 				snd_soc_component_get_dapm(component);
599d9fc4063SKuninori Morimoto 
6002c7b696aSMarcel Ziswiler 		/*
6012c7b696aSMarcel Ziswiler 		 * If there are paths active then the COMPONENT will be held
6022c7b696aSMarcel Ziswiler 		 * with bias _ON and should not be suspended.
6032c7b696aSMarcel Ziswiler 		 */
604e40fadbcSKuninori Morimoto 		if (!snd_soc_component_is_suspended(component)) {
6054890140fSLars-Peter Clausen 			switch (snd_soc_dapm_get_bias_level(dapm)) {
6061547aba9SMark Brown 			case SND_SOC_BIAS_STANDBY:
607125a25daSMark Brown 				/*
6089178feb4SKuninori Morimoto 				 * If the COMPONENT is capable of idle
609125a25daSMark Brown 				 * bias off then being in STANDBY
610125a25daSMark Brown 				 * means it's doing something,
611125a25daSMark Brown 				 * otherwise fall through.
612125a25daSMark Brown 				 */
6134890140fSLars-Peter Clausen 				if (dapm->idle_bias_off) {
6149178feb4SKuninori Morimoto 					dev_dbg(component->dev,
61510e8aa9aSMichał Mirosław 						"ASoC: idle_bias_off CODEC on over suspend\n");
616125a25daSMark Brown 					break;
617125a25daSMark Brown 				}
6181a12d5dcSGustavo A. R. Silva 				/* fall through */
619a8093297SLars-Peter Clausen 
6201547aba9SMark Brown 			case SND_SOC_BIAS_OFF:
62166c51573SKuninori Morimoto 				snd_soc_component_suspend(component);
6229178feb4SKuninori Morimoto 				if (component->regmap)
6239178feb4SKuninori Morimoto 					regcache_mark_dirty(component->regmap);
624988e8cc4SNicolin Chen 				/* deactivate pins to sleep state */
6259178feb4SKuninori Morimoto 				pinctrl_pm_select_sleep_state(component->dev);
6261547aba9SMark Brown 				break;
6271547aba9SMark Brown 			default:
6289178feb4SKuninori Morimoto 				dev_dbg(component->dev,
6299178feb4SKuninori Morimoto 					"ASoC: COMPONENT is on over suspend\n");
6301547aba9SMark Brown 				break;
6311547aba9SMark Brown 			}
6321547aba9SMark Brown 		}
633f0fba2adSLiam Girdwood 	}
634db2a4165SFrank Mandarino 
635bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
6361a497983SMengdong Lin 		struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
6373efab7dcSMark Brown 
6381a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
6393efab7dcSMark Brown 			continue;
6403efab7dcSMark Brown 
641e0f22622SKuninori Morimoto 		if (cpu_dai->driver->bus_control)
642e0f22622SKuninori Morimoto 			snd_soc_dai_suspend(cpu_dai);
643988e8cc4SNicolin Chen 
644988e8cc4SNicolin Chen 		/* deactivate pins to sleep state */
645988e8cc4SNicolin Chen 		pinctrl_pm_select_sleep_state(cpu_dai->dev);
646db2a4165SFrank Mandarino 	}
647db2a4165SFrank Mandarino 
64887506549SMark Brown 	if (card->suspend_post)
64970b2ac12SMark Brown 		card->suspend_post(card);
650db2a4165SFrank Mandarino 
651db2a4165SFrank Mandarino 	return 0;
652db2a4165SFrank Mandarino }
6536f8ab4acSMark Brown EXPORT_SYMBOL_GPL(snd_soc_suspend);
654db2a4165SFrank Mandarino 
6552c7b696aSMarcel Ziswiler /*
6562c7b696aSMarcel Ziswiler  * deferred resume work, so resume can complete before we finished
6576ed25978SAndy Green  * setting our codec back up, which can be very slow on I2C
6586ed25978SAndy Green  */
6596ed25978SAndy Green static void soc_resume_deferred(struct work_struct *work)
660db2a4165SFrank Mandarino {
661f0fba2adSLiam Girdwood 	struct snd_soc_card *card =
6622c7b696aSMarcel Ziswiler 			container_of(work, struct snd_soc_card,
6632c7b696aSMarcel Ziswiler 				     deferred_resume_work);
6641a497983SMengdong Lin 	struct snd_soc_pcm_runtime *rtd;
665d9fc4063SKuninori Morimoto 	struct snd_soc_component *component;
6661a497983SMengdong Lin 	int i;
667db2a4165SFrank Mandarino 
6682c7b696aSMarcel Ziswiler 	/*
6692c7b696aSMarcel Ziswiler 	 * our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
6706ed25978SAndy Green 	 * so userspace apps are blocked from touching us
6716ed25978SAndy Green 	 */
6726ed25978SAndy Green 
673f110bfc7SLiam Girdwood 	dev_dbg(card->dev, "ASoC: starting resume work\n");
6746ed25978SAndy Green 
6759949788bSMark Brown 	/* Bring us up into D2 so that DAPM starts enabling things */
676f0fba2adSLiam Girdwood 	snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
6779949788bSMark Brown 
67887506549SMark Brown 	if (card->resume_pre)
67970b2ac12SMark Brown 		card->resume_pre(card);
680db2a4165SFrank Mandarino 
681bc263214SLars-Peter Clausen 	/* resume control bus DAIs */
682bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
6831a497983SMengdong Lin 		struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
6843efab7dcSMark Brown 
6851a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
6863efab7dcSMark Brown 			continue;
6873efab7dcSMark Brown 
68824b09d05SKuninori Morimoto 		if (cpu_dai->driver->bus_control)
68924b09d05SKuninori Morimoto 			snd_soc_dai_resume(cpu_dai);
690db2a4165SFrank Mandarino 	}
691db2a4165SFrank Mandarino 
692f70f18f7SKuninori Morimoto 	for_each_card_components(card, component) {
693e40fadbcSKuninori Morimoto 		if (snd_soc_component_is_suspended(component))
6949a840cbaSKuninori Morimoto 			snd_soc_component_resume(component);
6951547aba9SMark Brown 	}
696db2a4165SFrank Mandarino 
697bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
6983efab7dcSMark Brown 
6991a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
7003efab7dcSMark Brown 			continue;
7013efab7dcSMark Brown 
7021a497983SMengdong Lin 		snd_soc_dapm_stream_event(rtd,
703d9b0951bSLiam Girdwood 					  SNDRV_PCM_STREAM_PLAYBACK,
704db2a4165SFrank Mandarino 					  SND_SOC_DAPM_STREAM_RESUME);
705f0fba2adSLiam Girdwood 
7061a497983SMengdong Lin 		snd_soc_dapm_stream_event(rtd,
707d9b0951bSLiam Girdwood 					  SNDRV_PCM_STREAM_CAPTURE,
708db2a4165SFrank Mandarino 					  SND_SOC_DAPM_STREAM_RESUME);
709db2a4165SFrank Mandarino 	}
710db2a4165SFrank Mandarino 
7113ff3f64bSMark Brown 	/* unmute any active DACs */
712bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
7130b7990e3SKuninori Morimoto 		struct snd_soc_dai *dai;
7143efab7dcSMark Brown 
7151a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
7163efab7dcSMark Brown 			continue;
7173efab7dcSMark Brown 
7180b7990e3SKuninori Morimoto 		for_each_rtd_codec_dai(rtd, i, dai) {
71988fdffa2SKuninori Morimoto 			if (dai->playback_active)
72088fdffa2SKuninori Morimoto 				snd_soc_dai_digital_mute(dai, 0,
72188fdffa2SKuninori Morimoto 						SNDRV_PCM_STREAM_PLAYBACK);
722db2a4165SFrank Mandarino 		}
72388bd870fSBenoit Cousson 	}
724db2a4165SFrank Mandarino 
725bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
7261a497983SMengdong Lin 		struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
7273efab7dcSMark Brown 
7281a497983SMengdong Lin 		if (rtd->dai_link->ignore_suspend)
7293efab7dcSMark Brown 			continue;
7303efab7dcSMark Brown 
73124b09d05SKuninori Morimoto 		if (!cpu_dai->driver->bus_control)
73224b09d05SKuninori Morimoto 			snd_soc_dai_resume(cpu_dai);
733db2a4165SFrank Mandarino 	}
734db2a4165SFrank Mandarino 
73587506549SMark Brown 	if (card->resume_post)
73670b2ac12SMark Brown 		card->resume_post(card);
737db2a4165SFrank Mandarino 
738f110bfc7SLiam Girdwood 	dev_dbg(card->dev, "ASoC: resume work completed\n");
7396ed25978SAndy Green 
7408be4da29SLars-Peter Clausen 	/* Recheck all endpoints too, their state is affected by suspend */
7418be4da29SLars-Peter Clausen 	dapm_mark_endpoints_dirty(card);
742e2d32ff6SMark Brown 	snd_soc_dapm_sync(&card->dapm);
7431a7aaa58SJeeja KP 
7441a7aaa58SJeeja KP 	/* userspace can access us now we are back as we were before */
7451a7aaa58SJeeja KP 	snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
7466ed25978SAndy Green }
7476ed25978SAndy Green 
7486ed25978SAndy Green /* powers up audio subsystem after a suspend */
7496f8ab4acSMark Brown int snd_soc_resume(struct device *dev)
7506ed25978SAndy Green {
7516f8ab4acSMark Brown 	struct snd_soc_card *card = dev_get_drvdata(dev);
752bc263214SLars-Peter Clausen 	bool bus_control = false;
7531a497983SMengdong Lin 	struct snd_soc_pcm_runtime *rtd;
75422d251a5SKuninori Morimoto 	struct snd_soc_dai *codec_dai;
75522d251a5SKuninori Morimoto 	int i;
756b9dd94a8SPeter Ujfalusi 
757c5599b87SLars-Peter Clausen 	/* If the card is not initialized yet there is nothing to do */
758c5599b87SLars-Peter Clausen 	if (!card->instantiated)
7595ff1ddf2SEric Miao 		return 0;
7605ff1ddf2SEric Miao 
761988e8cc4SNicolin Chen 	/* activate pins from sleep state */
762bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
76388bd870fSBenoit Cousson 		struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
76488bd870fSBenoit Cousson 
765988e8cc4SNicolin Chen 		if (cpu_dai->active)
766988e8cc4SNicolin Chen 			pinctrl_pm_select_default_state(cpu_dai->dev);
76788bd870fSBenoit Cousson 
76822d251a5SKuninori Morimoto 		for_each_rtd_codec_dai(rtd, i, codec_dai) {
769988e8cc4SNicolin Chen 			if (codec_dai->active)
770988e8cc4SNicolin Chen 				pinctrl_pm_select_default_state(codec_dai->dev);
771988e8cc4SNicolin Chen 		}
77288bd870fSBenoit Cousson 	}
773988e8cc4SNicolin Chen 
774bc263214SLars-Peter Clausen 	/*
775bc263214SLars-Peter Clausen 	 * DAIs that also act as the control bus master might have other drivers
776bc263214SLars-Peter Clausen 	 * hanging off them so need to resume immediately. Other drivers don't
777bc263214SLars-Peter Clausen 	 * have that problem and may take a substantial amount of time to resume
77864ab9baaSMark Brown 	 * due to I/O costs and anti-pop so handle them out of line.
77964ab9baaSMark Brown 	 */
780bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
7811a497983SMengdong Lin 		struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
7822c7b696aSMarcel Ziswiler 
783bc263214SLars-Peter Clausen 		bus_control |= cpu_dai->driver->bus_control;
78482e14e8bSStephen Warren 	}
785bc263214SLars-Peter Clausen 	if (bus_control) {
786bc263214SLars-Peter Clausen 		dev_dbg(dev, "ASoC: Resuming control bus master immediately\n");
78764ab9baaSMark Brown 		soc_resume_deferred(&card->deferred_resume_work);
78864ab9baaSMark Brown 	} else {
789f110bfc7SLiam Girdwood 		dev_dbg(dev, "ASoC: Scheduling resume work\n");
7906308419aSMark Brown 		if (!schedule_work(&card->deferred_resume_work))
791f110bfc7SLiam Girdwood 			dev_err(dev, "ASoC: resume work item may be lost\n");
792f0fba2adSLiam Girdwood 	}
7936ed25978SAndy Green 
794db2a4165SFrank Mandarino 	return 0;
795db2a4165SFrank Mandarino }
7966f8ab4acSMark Brown EXPORT_SYMBOL_GPL(snd_soc_resume);
797b3da4251SKuninori Morimoto 
798b3da4251SKuninori Morimoto static void soc_resume_init(struct snd_soc_card *card)
799b3da4251SKuninori Morimoto {
800b3da4251SKuninori Morimoto 	/* deferred resume work */
801b3da4251SKuninori Morimoto 	INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
802b3da4251SKuninori Morimoto }
803db2a4165SFrank Mandarino #else
8046f8ab4acSMark Brown #define snd_soc_suspend NULL
8056f8ab4acSMark Brown #define snd_soc_resume NULL
806b3da4251SKuninori Morimoto static inline void soc_resume_init(struct snd_soc_card *card)
807b3da4251SKuninori Morimoto {
808b3da4251SKuninori Morimoto }
809db2a4165SFrank Mandarino #endif
810db2a4165SFrank Mandarino 
81185e7652dSLars-Peter Clausen static const struct snd_soc_dai_ops null_dai_ops = {
81202a06d30SBarry Song };
81302a06d30SBarry Song 
814c0834440SKuninori Morimoto static struct device_node
815c0834440SKuninori Morimoto *soc_component_to_node(struct snd_soc_component *component)
81612023a9aSMisael Lopez Cruz {
817c0834440SKuninori Morimoto 	struct device_node *of_node;
81812023a9aSMisael Lopez Cruz 
819c0834440SKuninori Morimoto 	of_node = component->dev->of_node;
820c0834440SKuninori Morimoto 	if (!of_node && component->dev->parent)
821c0834440SKuninori Morimoto 		of_node = component->dev->parent->of_node;
82234e81ab4SLars-Peter Clausen 
823c0834440SKuninori Morimoto 	return of_node;
82412023a9aSMisael Lopez Cruz }
82512023a9aSMisael Lopez Cruz 
826be6ac0a9SKuninori Morimoto static int snd_soc_is_matching_component(
827be6ac0a9SKuninori Morimoto 	const struct snd_soc_dai_link_component *dlc,
828be6ac0a9SKuninori Morimoto 	struct snd_soc_component *component)
829be6ac0a9SKuninori Morimoto {
830be6ac0a9SKuninori Morimoto 	struct device_node *component_of_node;
831be6ac0a9SKuninori Morimoto 
8327d7db5d3SKuninori Morimoto 	if (!dlc)
8337d7db5d3SKuninori Morimoto 		return 0;
8347d7db5d3SKuninori Morimoto 
8357d7db5d3SKuninori Morimoto 	component_of_node = soc_component_to_node(component);
836be6ac0a9SKuninori Morimoto 
837be6ac0a9SKuninori Morimoto 	if (dlc->of_node && component_of_node != dlc->of_node)
838be6ac0a9SKuninori Morimoto 		return 0;
839be6ac0a9SKuninori Morimoto 	if (dlc->name && strcmp(component->name, dlc->name))
840be6ac0a9SKuninori Morimoto 		return 0;
841be6ac0a9SKuninori Morimoto 
842be6ac0a9SKuninori Morimoto 	return 1;
843be6ac0a9SKuninori Morimoto }
844be6ac0a9SKuninori Morimoto 
845db2a4165SFrank Mandarino static struct snd_soc_component *soc_find_component(
846c1e230f0SKuninori Morimoto 	const struct snd_soc_dai_link_component *dlc)
847db2a4165SFrank Mandarino {
848db2a4165SFrank Mandarino 	struct snd_soc_component *component;
849db2a4165SFrank Mandarino 
850db2a4165SFrank Mandarino 	lockdep_assert_held(&client_mutex);
851db2a4165SFrank Mandarino 
852e3303268SKuninori Morimoto 	/*
853e3303268SKuninori Morimoto 	 * NOTE
854e3303268SKuninori Morimoto 	 *
855e3303268SKuninori Morimoto 	 * It returns *1st* found component, but some driver
856e3303268SKuninori Morimoto 	 * has few components by same of_node/name
857e3303268SKuninori Morimoto 	 * ex)
858e3303268SKuninori Morimoto 	 *	CPU component and generic DMAEngine component
859e3303268SKuninori Morimoto 	 */
860c1e230f0SKuninori Morimoto 	for_each_component(component)
861c1e230f0SKuninori Morimoto 		if (snd_soc_is_matching_component(dlc, component))
862db2a4165SFrank Mandarino 			return component;
863db2a4165SFrank Mandarino 
864db2a4165SFrank Mandarino 	return NULL;
86512023a9aSMisael Lopez Cruz }
86612023a9aSMisael Lopez Cruz 
867fbb88b5cSMengdong Lin /**
868fbb88b5cSMengdong Lin  * snd_soc_find_dai - Find a registered DAI
869fbb88b5cSMengdong Lin  *
8704958471bSJeffy Chen  * @dlc: name of the DAI or the DAI driver and optional component info to match
871fbb88b5cSMengdong Lin  *
872ad61dd30SStephen Boyd  * This function will search all registered components and their DAIs to
873fbb88b5cSMengdong Lin  * find the DAI of the same name. The component's of_node and name
874fbb88b5cSMengdong Lin  * should also match if being specified.
875fbb88b5cSMengdong Lin  *
876fbb88b5cSMengdong Lin  * Return: pointer of DAI, or NULL if not found.
877fbb88b5cSMengdong Lin  */
878305e9020SMengdong Lin struct snd_soc_dai *snd_soc_find_dai(
87914621c7eSLars-Peter Clausen 	const struct snd_soc_dai_link_component *dlc)
88012023a9aSMisael Lopez Cruz {
88114621c7eSLars-Peter Clausen 	struct snd_soc_component *component;
88214621c7eSLars-Peter Clausen 	struct snd_soc_dai *dai;
88312023a9aSMisael Lopez Cruz 
88434e81ab4SLars-Peter Clausen 	lockdep_assert_held(&client_mutex);
88534e81ab4SLars-Peter Clausen 
88614621c7eSLars-Peter Clausen 	/* Find CPU DAI from registered DAIs */
887368dee94SKuninori Morimoto 	for_each_component(component) {
888be6ac0a9SKuninori Morimoto 		if (!snd_soc_is_matching_component(dlc, component))
88912023a9aSMisael Lopez Cruz 			continue;
89015a0c645SKuninori Morimoto 		for_each_component_dais(component, dai) {
8914958471bSJeffy Chen 			if (dlc->dai_name && strcmp(dai->name, dlc->dai_name)
8926a6dafdaSJeffy Chen 			    && (!dai->driver->name
8936a6dafdaSJeffy Chen 				|| strcmp(dai->driver->name, dlc->dai_name)))
89414621c7eSLars-Peter Clausen 				continue;
89512023a9aSMisael Lopez Cruz 
89614621c7eSLars-Peter Clausen 			return dai;
89712023a9aSMisael Lopez Cruz 		}
89812023a9aSMisael Lopez Cruz 	}
89912023a9aSMisael Lopez Cruz 
90012023a9aSMisael Lopez Cruz 	return NULL;
90112023a9aSMisael Lopez Cruz }
902305e9020SMengdong Lin EXPORT_SYMBOL_GPL(snd_soc_find_dai);
90312023a9aSMisael Lopez Cruz 
904bfce78a5SKuninori Morimoto static int soc_dai_link_sanity_check(struct snd_soc_card *card,
90536794902SKuninori Morimoto 				     struct snd_soc_dai_link *link)
90636794902SKuninori Morimoto {
90736794902SKuninori Morimoto 	int i;
90836794902SKuninori Morimoto 	struct snd_soc_dai_link_component *codec, *platform;
90936794902SKuninori Morimoto 
91036794902SKuninori Morimoto 	for_each_link_codecs(link, i, codec) {
91136794902SKuninori Morimoto 		/*
91236794902SKuninori Morimoto 		 * Codec must be specified by 1 of name or OF node,
91336794902SKuninori Morimoto 		 * not both or neither.
91436794902SKuninori Morimoto 		 */
91536794902SKuninori Morimoto 		if (!!codec->name == !!codec->of_node) {
91636794902SKuninori Morimoto 			dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
91736794902SKuninori Morimoto 				link->name);
91836794902SKuninori Morimoto 			return -EINVAL;
91936794902SKuninori Morimoto 		}
92036794902SKuninori Morimoto 
92136794902SKuninori Morimoto 		/* Codec DAI name must be specified */
92236794902SKuninori Morimoto 		if (!codec->dai_name) {
92336794902SKuninori Morimoto 			dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
92436794902SKuninori Morimoto 				link->name);
92536794902SKuninori Morimoto 			return -EINVAL;
92636794902SKuninori Morimoto 		}
92736794902SKuninori Morimoto 
92836794902SKuninori Morimoto 		/*
92936794902SKuninori Morimoto 		 * Defer card registration if codec component is not added to
93036794902SKuninori Morimoto 		 * component list.
93136794902SKuninori Morimoto 		 */
93236794902SKuninori Morimoto 		if (!soc_find_component(codec))
93336794902SKuninori Morimoto 			return -EPROBE_DEFER;
93436794902SKuninori Morimoto 	}
93536794902SKuninori Morimoto 
93636794902SKuninori Morimoto 	for_each_link_platforms(link, i, platform) {
93736794902SKuninori Morimoto 		/*
93836794902SKuninori Morimoto 		 * Platform may be specified by either name or OF node, but it
93936794902SKuninori Morimoto 		 * can be left unspecified, then no components will be inserted
94036794902SKuninori Morimoto 		 * in the rtdcom list
94136794902SKuninori Morimoto 		 */
94236794902SKuninori Morimoto 		if (!!platform->name == !!platform->of_node) {
94336794902SKuninori Morimoto 			dev_err(card->dev,
94436794902SKuninori Morimoto 				"ASoC: Neither/both platform name/of_node are set for %s\n",
94536794902SKuninori Morimoto 				link->name);
94636794902SKuninori Morimoto 			return -EINVAL;
94736794902SKuninori Morimoto 		}
94836794902SKuninori Morimoto 
94936794902SKuninori Morimoto 		/*
95036794902SKuninori Morimoto 		 * Defer card registration if platform component is not added to
95136794902SKuninori Morimoto 		 * component list.
95236794902SKuninori Morimoto 		 */
95336794902SKuninori Morimoto 		if (!soc_find_component(platform))
95436794902SKuninori Morimoto 			return -EPROBE_DEFER;
95536794902SKuninori Morimoto 	}
95636794902SKuninori Morimoto 
95736794902SKuninori Morimoto 	/* FIXME */
95836794902SKuninori Morimoto 	if (link->num_cpus > 1) {
95936794902SKuninori Morimoto 		dev_err(card->dev,
96036794902SKuninori Morimoto 			"ASoC: multi cpu is not yet supported %s\n",
96136794902SKuninori Morimoto 			link->name);
96236794902SKuninori Morimoto 		return -EINVAL;
96336794902SKuninori Morimoto 	}
96436794902SKuninori Morimoto 
96536794902SKuninori Morimoto 	/*
96636794902SKuninori Morimoto 	 * CPU device may be specified by either name or OF node, but
96736794902SKuninori Morimoto 	 * can be left unspecified, and will be matched based on DAI
96836794902SKuninori Morimoto 	 * name alone..
96936794902SKuninori Morimoto 	 */
97036794902SKuninori Morimoto 	if (link->cpus->name && link->cpus->of_node) {
97136794902SKuninori Morimoto 		dev_err(card->dev,
97236794902SKuninori Morimoto 			"ASoC: Neither/both cpu name/of_node are set for %s\n",
97336794902SKuninori Morimoto 			link->name);
97436794902SKuninori Morimoto 		return -EINVAL;
97536794902SKuninori Morimoto 	}
97636794902SKuninori Morimoto 
97736794902SKuninori Morimoto 	/*
978cd3c5ad7SKuninori Morimoto 	 * Defer card registration if cpu dai component is not added to
97936794902SKuninori Morimoto 	 * component list.
98036794902SKuninori Morimoto 	 */
98136794902SKuninori Morimoto 	if ((link->cpus->of_node || link->cpus->name) &&
98236794902SKuninori Morimoto 	    !soc_find_component(link->cpus))
98336794902SKuninori Morimoto 		return -EPROBE_DEFER;
98436794902SKuninori Morimoto 
98536794902SKuninori Morimoto 	/*
98636794902SKuninori Morimoto 	 * At least one of CPU DAI name or CPU device name/node must be
98736794902SKuninori Morimoto 	 * specified
98836794902SKuninori Morimoto 	 */
98936794902SKuninori Morimoto 	if (!link->cpus->dai_name &&
99036794902SKuninori Morimoto 	    !(link->cpus->name || link->cpus->of_node)) {
99136794902SKuninori Morimoto 		dev_err(card->dev,
99236794902SKuninori Morimoto 			"ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
99336794902SKuninori Morimoto 			link->name);
99436794902SKuninori Morimoto 		return -EINVAL;
99536794902SKuninori Morimoto 	}
99636794902SKuninori Morimoto 
99736794902SKuninori Morimoto 	return 0;
99836794902SKuninori Morimoto }
99936794902SKuninori Morimoto 
1000da704f26SKuninori Morimoto /**
100150cd9b53SKuninori Morimoto  * snd_soc_remove_pcm_runtime - Remove a pcm_runtime from card
100250cd9b53SKuninori Morimoto  * @card: The ASoC card to which the pcm_runtime has
100350cd9b53SKuninori Morimoto  * @rtd: The pcm_runtime to remove
1004da704f26SKuninori Morimoto  *
100550cd9b53SKuninori Morimoto  * This function removes a pcm_runtime from the ASoC card.
1006da704f26SKuninori Morimoto  */
100750cd9b53SKuninori Morimoto void snd_soc_remove_pcm_runtime(struct snd_soc_card *card,
100850cd9b53SKuninori Morimoto 				struct snd_soc_pcm_runtime *rtd)
1009bc7a9091SKuninori Morimoto {
1010da704f26SKuninori Morimoto 	lockdep_assert_held(&client_mutex);
1011da704f26SKuninori Morimoto 
1012da704f26SKuninori Morimoto 	/*
1013da704f26SKuninori Morimoto 	 * Notify the machine driver for extra destruction
1014da704f26SKuninori Morimoto 	 */
1015da704f26SKuninori Morimoto 	if (card->remove_dai_link)
101650cd9b53SKuninori Morimoto 		card->remove_dai_link(card, rtd->dai_link);
1017da704f26SKuninori Morimoto 
1018bc7a9091SKuninori Morimoto 	soc_free_pcm_runtime(rtd);
1019bc7a9091SKuninori Morimoto }
102050cd9b53SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_remove_pcm_runtime);
1021bc7a9091SKuninori Morimoto 
102263dc47daSKuninori Morimoto /**
10230c048004SKuninori Morimoto  * snd_soc_add_pcm_runtime - Add a pcm_runtime dynamically via dai_link
10240c048004SKuninori Morimoto  * @card: The ASoC card to which the pcm_runtime is added
10250c048004SKuninori Morimoto  * @dai_link: The DAI link to find pcm_runtime
102663dc47daSKuninori Morimoto  *
10270c048004SKuninori Morimoto  * This function adds a pcm_runtime ASoC card by using dai_link.
102863dc47daSKuninori Morimoto  *
10290c048004SKuninori Morimoto  * Note: Topology can use this API to add pcm_runtime when probing the
103063dc47daSKuninori Morimoto  * topology component. And machine drivers can still define static
103163dc47daSKuninori Morimoto  * DAI links in dai_link array.
103263dc47daSKuninori Morimoto  */
10330c048004SKuninori Morimoto int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
10346f2f1ff0SMengdong Lin 			    struct snd_soc_dai_link *dai_link)
1035db2a4165SFrank Mandarino {
10361a497983SMengdong Lin 	struct snd_soc_pcm_runtime *rtd;
103734614739SJerome Brunet 	struct snd_soc_dai_link_component *codec, *platform;
103890be711eSKuninori Morimoto 	struct snd_soc_component *component;
1039bfce78a5SKuninori Morimoto 	int i, ret;
1040db2a4165SFrank Mandarino 
104163dc47daSKuninori Morimoto 	lockdep_assert_held(&client_mutex);
104263dc47daSKuninori Morimoto 
104363dc47daSKuninori Morimoto 	/*
104463dc47daSKuninori Morimoto 	 * Notify the machine driver for extra initialization
104563dc47daSKuninori Morimoto 	 */
104663dc47daSKuninori Morimoto 	if (card->add_dai_link)
104763dc47daSKuninori Morimoto 		card->add_dai_link(card, dai_link);
104863dc47daSKuninori Morimoto 
1049a655de80SLiam Girdwood 	if (dai_link->ignore)
1050a655de80SLiam Girdwood 		return 0;
1051a655de80SLiam Girdwood 
10526f2f1ff0SMengdong Lin 	dev_dbg(card->dev, "ASoC: binding %s\n", dai_link->name);
10536308419aSMark Brown 
1054bfce78a5SKuninori Morimoto 	ret = soc_dai_link_sanity_check(card, dai_link);
1055bfce78a5SKuninori Morimoto 	if (ret < 0)
1056bfce78a5SKuninori Morimoto 		return ret;
1057bfce78a5SKuninori Morimoto 
1058513cb311SSudip Mukherjee 	rtd = soc_new_pcm_runtime(card, dai_link);
1059513cb311SSudip Mukherjee 	if (!rtd)
1060513cb311SSudip Mukherjee 		return -ENOMEM;
1061513cb311SSudip Mukherjee 
106208a5841eSKuninori Morimoto 	/* FIXME: we need multi CPU support in the future */
106308a5841eSKuninori Morimoto 	rtd->cpu_dai = snd_soc_find_dai(dai_link->cpus);
1064b19e6e7bSMark Brown 	if (!rtd->cpu_dai) {
10656b490879SMartin Hundebøll 		dev_info(card->dev, "ASoC: CPU DAI %s not registered\n",
106608a5841eSKuninori Morimoto 			 dai_link->cpus->dai_name);
10671a497983SMengdong Lin 		goto _err_defer;
1068c5af3a2eSMark Brown 	}
106990be711eSKuninori Morimoto 	snd_soc_rtdcom_add(rtd, rtd->cpu_dai->component);
1070c5af3a2eSMark Brown 
107188bd870fSBenoit Cousson 	/* Find CODEC from registered CODECs */
1072e2b30edfSKuninori Morimoto 	rtd->num_codecs = dai_link->num_codecs;
107334614739SJerome Brunet 	for_each_link_codecs(dai_link, i, codec) {
107434614739SJerome Brunet 		rtd->codec_dais[i] = snd_soc_find_dai(codec);
10750a2cfcd9SKuninori Morimoto 		if (!rtd->codec_dais[i]) {
10767c7e2d6aSStefan Agner 			dev_info(card->dev, "ASoC: CODEC DAI %s not registered\n",
107734614739SJerome Brunet 				 codec->dai_name);
10781a497983SMengdong Lin 			goto _err_defer;
107912023a9aSMisael Lopez Cruz 		}
108034614739SJerome Brunet 
10810a2cfcd9SKuninori Morimoto 		snd_soc_rtdcom_add(rtd, rtd->codec_dais[i]->component);
108288bd870fSBenoit Cousson 	}
108388bd870fSBenoit Cousson 
108488bd870fSBenoit Cousson 	/* Single codec links expect codec and codec_dai in runtime data */
10850a2cfcd9SKuninori Morimoto 	rtd->codec_dai = rtd->codec_dais[0];
108612023a9aSMisael Lopez Cruz 
1087e2b30edfSKuninori Morimoto 	/* Find PLATFORM from registered PLATFORMs */
108834614739SJerome Brunet 	for_each_link_platforms(dai_link, i, platform) {
1089368dee94SKuninori Morimoto 		for_each_component(component) {
109034614739SJerome Brunet 			if (!snd_soc_is_matching_component(platform, component))
109190be711eSKuninori Morimoto 				continue;
109290be711eSKuninori Morimoto 
109390be711eSKuninori Morimoto 			snd_soc_rtdcom_add(rtd, component);
109490be711eSKuninori Morimoto 		}
109534614739SJerome Brunet 	}
109690be711eSKuninori Morimoto 
1097b19e6e7bSMark Brown 	return 0;
10981a497983SMengdong Lin 
10991a497983SMengdong Lin _err_defer:
110050cd9b53SKuninori Morimoto 	snd_soc_remove_pcm_runtime(card, rtd);
11011a497983SMengdong Lin 	return -EPROBE_DEFER;
11026b05eda6SMark Brown }
11030c048004SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_add_pcm_runtime);
11046b05eda6SMark Brown 
1105bfa0dd89SKuninori Morimoto static int soc_dai_pcm_new(struct snd_soc_dai **dais, int num_dais,
11069e9c70a5SKuninori Morimoto 			   struct snd_soc_pcm_runtime *rtd)
11079e9c70a5SKuninori Morimoto {
11089e9c70a5SKuninori Morimoto 	int i, ret = 0;
11099e9c70a5SKuninori Morimoto 
11109e9c70a5SKuninori Morimoto 	for (i = 0; i < num_dais; ++i) {
11119e9c70a5SKuninori Morimoto 		struct snd_soc_dai_driver *drv = dais[i]->driver;
11129e9c70a5SKuninori Morimoto 
11139e9c70a5SKuninori Morimoto 		if (drv->pcm_new)
11149e9c70a5SKuninori Morimoto 			ret = drv->pcm_new(rtd, dais[i]);
11159e9c70a5SKuninori Morimoto 		if (ret < 0) {
11169e9c70a5SKuninori Morimoto 			dev_err(dais[i]->dev,
11179e9c70a5SKuninori Morimoto 				"ASoC: Failed to bind %s with pcm device\n",
11189e9c70a5SKuninori Morimoto 				dais[i]->name);
11199e9c70a5SKuninori Morimoto 			return ret;
11209e9c70a5SKuninori Morimoto 		}
11219e9c70a5SKuninori Morimoto 	}
11229e9c70a5SKuninori Morimoto 
11239e9c70a5SKuninori Morimoto 	return 0;
11249e9c70a5SKuninori Morimoto }
11259e9c70a5SKuninori Morimoto 
1126eaffeefbSKuninori Morimoto static int soc_init_pcm_runtime(struct snd_soc_card *card,
112746496acbSKuninori Morimoto 				struct snd_soc_pcm_runtime *rtd)
112846496acbSKuninori Morimoto {
112946496acbSKuninori Morimoto 	struct snd_soc_dai_link *dai_link = rtd->dai_link;
113046496acbSKuninori Morimoto 	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
113146496acbSKuninori Morimoto 	struct snd_soc_rtdcom_list *rtdcom;
113246496acbSKuninori Morimoto 	struct snd_soc_component *component;
113346496acbSKuninori Morimoto 	int ret, num;
113446496acbSKuninori Morimoto 
113546496acbSKuninori Morimoto 	/* set default power off timeout */
113646496acbSKuninori Morimoto 	rtd->pmdown_time = pmdown_time;
113746496acbSKuninori Morimoto 
113846496acbSKuninori Morimoto 	/* do machine specific initialization */
113946496acbSKuninori Morimoto 	if (dai_link->init) {
114046496acbSKuninori Morimoto 		ret = dai_link->init(rtd);
114146496acbSKuninori Morimoto 		if (ret < 0) {
114246496acbSKuninori Morimoto 			dev_err(card->dev, "ASoC: failed to init %s: %d\n",
114346496acbSKuninori Morimoto 				dai_link->name, ret);
114446496acbSKuninori Morimoto 			return ret;
114546496acbSKuninori Morimoto 		}
114646496acbSKuninori Morimoto 	}
114746496acbSKuninori Morimoto 
114846496acbSKuninori Morimoto 	if (dai_link->dai_fmt) {
114946496acbSKuninori Morimoto 		ret = snd_soc_runtime_set_dai_fmt(rtd, dai_link->dai_fmt);
115046496acbSKuninori Morimoto 		if (ret)
115146496acbSKuninori Morimoto 			return ret;
115246496acbSKuninori Morimoto 	}
115346496acbSKuninori Morimoto 
115446496acbSKuninori Morimoto 	/* add DPCM sysfs entries */
115546496acbSKuninori Morimoto 	soc_dpcm_debugfs_add(rtd);
115646496acbSKuninori Morimoto 
115746496acbSKuninori Morimoto 	num = rtd->num;
115846496acbSKuninori Morimoto 
115946496acbSKuninori Morimoto 	/*
116046496acbSKuninori Morimoto 	 * most drivers will register their PCMs using DAI link ordering but
116146496acbSKuninori Morimoto 	 * topology based drivers can use the DAI link id field to set PCM
116246496acbSKuninori Morimoto 	 * device number and then use rtd + a base offset of the BEs.
116346496acbSKuninori Morimoto 	 */
116446496acbSKuninori Morimoto 	for_each_rtd_components(rtd, rtdcom, component) {
116546496acbSKuninori Morimoto 		if (!component->driver->use_dai_pcm_id)
116646496acbSKuninori Morimoto 			continue;
116746496acbSKuninori Morimoto 
116846496acbSKuninori Morimoto 		if (rtd->dai_link->no_pcm)
116946496acbSKuninori Morimoto 			num += component->driver->be_pcm_base;
117046496acbSKuninori Morimoto 		else
117146496acbSKuninori Morimoto 			num = rtd->dai_link->id;
117246496acbSKuninori Morimoto 	}
117346496acbSKuninori Morimoto 
117446496acbSKuninori Morimoto 	/* create compress_device if possible */
117546496acbSKuninori Morimoto 	ret = snd_soc_dai_compress_new(cpu_dai, rtd, num);
117646496acbSKuninori Morimoto 	if (ret != -ENOTSUPP) {
117746496acbSKuninori Morimoto 		if (ret < 0)
117846496acbSKuninori Morimoto 			dev_err(card->dev, "ASoC: can't create compress %s\n",
117946496acbSKuninori Morimoto 				dai_link->stream_name);
118046496acbSKuninori Morimoto 		return ret;
118146496acbSKuninori Morimoto 	}
118246496acbSKuninori Morimoto 
118346496acbSKuninori Morimoto 	/* create the pcm */
118446496acbSKuninori Morimoto 	ret = soc_new_pcm(rtd, num);
118546496acbSKuninori Morimoto 	if (ret < 0) {
118646496acbSKuninori Morimoto 		dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
118746496acbSKuninori Morimoto 			dai_link->stream_name, ret);
118846496acbSKuninori Morimoto 		return ret;
118946496acbSKuninori Morimoto 	}
119046496acbSKuninori Morimoto 	ret = soc_dai_pcm_new(&cpu_dai, 1, rtd);
119146496acbSKuninori Morimoto 	if (ret < 0)
119246496acbSKuninori Morimoto 		return ret;
119346496acbSKuninori Morimoto 	ret = soc_dai_pcm_new(rtd->codec_dais,
119446496acbSKuninori Morimoto 			      rtd->num_codecs, rtd);
119546496acbSKuninori Morimoto 	return ret;
119646496acbSKuninori Morimoto }
119746496acbSKuninori Morimoto 
1198ffd60fbaSKuninori Morimoto static void soc_set_of_name_prefix(struct snd_soc_component *component)
1199ffd60fbaSKuninori Morimoto {
1200ffd60fbaSKuninori Morimoto 	struct device_node *of_node = soc_component_to_node(component);
1201ffd60fbaSKuninori Morimoto 	const char *str;
1202ffd60fbaSKuninori Morimoto 	int ret;
1203ffd60fbaSKuninori Morimoto 
1204ffd60fbaSKuninori Morimoto 	ret = of_property_read_string(of_node, "sound-name-prefix", &str);
1205ffd60fbaSKuninori Morimoto 	if (!ret)
1206ffd60fbaSKuninori Morimoto 		component->name_prefix = str;
1207ffd60fbaSKuninori Morimoto }
1208ffd60fbaSKuninori Morimoto 
1209ffd60fbaSKuninori Morimoto static void soc_set_name_prefix(struct snd_soc_card *card,
1210ffd60fbaSKuninori Morimoto 				struct snd_soc_component *component)
1211ffd60fbaSKuninori Morimoto {
1212*aec3ff99SKuninori Morimoto 	struct device_node *of_node = soc_component_to_node(component);
1213ffd60fbaSKuninori Morimoto 	int i;
1214ffd60fbaSKuninori Morimoto 
12154702f991SKuninori Morimoto 	for (i = 0; i < card->num_configs; i++) {
1216ffd60fbaSKuninori Morimoto 		struct snd_soc_codec_conf *map = &card->codec_conf[i];
1217ffd60fbaSKuninori Morimoto 
1218ffd60fbaSKuninori Morimoto 		if (map->of_node && of_node != map->of_node)
1219ffd60fbaSKuninori Morimoto 			continue;
1220ffd60fbaSKuninori Morimoto 		if (map->dev_name && strcmp(component->name, map->dev_name))
1221ffd60fbaSKuninori Morimoto 			continue;
1222ffd60fbaSKuninori Morimoto 		component->name_prefix = map->name_prefix;
1223ffd60fbaSKuninori Morimoto 		return;
1224ffd60fbaSKuninori Morimoto 	}
1225ffd60fbaSKuninori Morimoto 
1226ffd60fbaSKuninori Morimoto 	/*
1227ffd60fbaSKuninori Morimoto 	 * If there is no configuration table or no match in the table,
1228ffd60fbaSKuninori Morimoto 	 * check if a prefix is provided in the node
1229ffd60fbaSKuninori Morimoto 	 */
1230ffd60fbaSKuninori Morimoto 	soc_set_of_name_prefix(component);
1231ffd60fbaSKuninori Morimoto }
1232ffd60fbaSKuninori Morimoto 
1233c6619b72SKuninori Morimoto static void soc_remove_component(struct snd_soc_component *component,
1234c6619b72SKuninori Morimoto 				 int probed)
123522d14231SKuninori Morimoto {
1236c6619b72SKuninori Morimoto 
1237c6619b72SKuninori Morimoto 	if (!component->card)
1238c6619b72SKuninori Morimoto 		return;
1239c6619b72SKuninori Morimoto 
1240c6619b72SKuninori Morimoto 	if (probed)
1241c6619b72SKuninori Morimoto 		snd_soc_component_remove(component);
1242c6619b72SKuninori Morimoto 
124304f770d9SKuninori Morimoto 	/* For framework level robustness */
12443bb936f5SAmadeusz Sławiński 	snd_soc_component_set_jack(component, NULL, NULL);
124504f770d9SKuninori Morimoto 
12467a5d9815SBard liao 	list_del_init(&component->card_list);
124722d14231SKuninori Morimoto 	snd_soc_dapm_free(snd_soc_component_get_dapm(component));
124822d14231SKuninori Morimoto 	soc_cleanup_component_debugfs(component);
124922d14231SKuninori Morimoto 	component->card = NULL;
12500e36f36bSPierre-Louis Bossart 	snd_soc_component_module_put_when_remove(component);
125122d14231SKuninori Morimoto }
125222d14231SKuninori Morimoto 
1253ffd60fbaSKuninori Morimoto static int soc_probe_component(struct snd_soc_card *card,
1254ffd60fbaSKuninori Morimoto 			       struct snd_soc_component *component)
1255ffd60fbaSKuninori Morimoto {
1256ffd60fbaSKuninori Morimoto 	struct snd_soc_dapm_context *dapm =
1257ffd60fbaSKuninori Morimoto 		snd_soc_component_get_dapm(component);
1258ffd60fbaSKuninori Morimoto 	struct snd_soc_dai *dai;
1259c6619b72SKuninori Morimoto 	int probed = 0;
1260ffd60fbaSKuninori Morimoto 	int ret;
1261ffd60fbaSKuninori Morimoto 
1262ffd60fbaSKuninori Morimoto 	if (!strcmp(component->name, "snd-soc-dummy"))
1263ffd60fbaSKuninori Morimoto 		return 0;
1264ffd60fbaSKuninori Morimoto 
1265ffd60fbaSKuninori Morimoto 	if (component->card) {
1266ffd60fbaSKuninori Morimoto 		if (component->card != card) {
1267ffd60fbaSKuninori Morimoto 			dev_err(component->dev,
1268ffd60fbaSKuninori Morimoto 				"Trying to bind component to card \"%s\" but is already bound to card \"%s\"\n",
1269ffd60fbaSKuninori Morimoto 				card->name, component->card->name);
1270ffd60fbaSKuninori Morimoto 			return -ENODEV;
1271ffd60fbaSKuninori Morimoto 		}
1272ffd60fbaSKuninori Morimoto 		return 0;
1273ffd60fbaSKuninori Morimoto 	}
1274ffd60fbaSKuninori Morimoto 
1275ffd60fbaSKuninori Morimoto 	ret = snd_soc_component_module_get_when_probe(component);
1276ffd60fbaSKuninori Morimoto 	if (ret < 0)
1277ffd60fbaSKuninori Morimoto 		return ret;
1278ffd60fbaSKuninori Morimoto 
1279ffd60fbaSKuninori Morimoto 	component->card = card;
1280ffd60fbaSKuninori Morimoto 	soc_set_name_prefix(card, component);
1281ffd60fbaSKuninori Morimoto 
1282ffd60fbaSKuninori Morimoto 	soc_init_component_debugfs(component);
1283ffd60fbaSKuninori Morimoto 
128495c267ddSKuninori Morimoto 	snd_soc_dapm_init(dapm, card, component);
1285b614beafSKuninori Morimoto 
1286ffd60fbaSKuninori Morimoto 	ret = snd_soc_dapm_new_controls(dapm,
1287ffd60fbaSKuninori Morimoto 					component->driver->dapm_widgets,
1288ffd60fbaSKuninori Morimoto 					component->driver->num_dapm_widgets);
1289ffd60fbaSKuninori Morimoto 
1290ffd60fbaSKuninori Morimoto 	if (ret != 0) {
1291ffd60fbaSKuninori Morimoto 		dev_err(component->dev,
1292ffd60fbaSKuninori Morimoto 			"Failed to create new controls %d\n", ret);
1293ffd60fbaSKuninori Morimoto 		goto err_probe;
1294ffd60fbaSKuninori Morimoto 	}
1295ffd60fbaSKuninori Morimoto 
1296ffd60fbaSKuninori Morimoto 	for_each_component_dais(component, dai) {
1297ffd60fbaSKuninori Morimoto 		ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
1298ffd60fbaSKuninori Morimoto 		if (ret != 0) {
1299ffd60fbaSKuninori Morimoto 			dev_err(component->dev,
1300ffd60fbaSKuninori Morimoto 				"Failed to create DAI widgets %d\n", ret);
1301ffd60fbaSKuninori Morimoto 			goto err_probe;
1302ffd60fbaSKuninori Morimoto 		}
1303ffd60fbaSKuninori Morimoto 	}
1304ffd60fbaSKuninori Morimoto 
1305ffd60fbaSKuninori Morimoto 	ret = snd_soc_component_probe(component);
1306ffd60fbaSKuninori Morimoto 	if (ret < 0) {
1307ffd60fbaSKuninori Morimoto 		dev_err(component->dev,
1308ffd60fbaSKuninori Morimoto 			"ASoC: failed to probe component %d\n", ret);
1309ffd60fbaSKuninori Morimoto 		goto err_probe;
1310ffd60fbaSKuninori Morimoto 	}
1311ffd60fbaSKuninori Morimoto 	WARN(dapm->idle_bias_off &&
1312ffd60fbaSKuninori Morimoto 	     dapm->bias_level != SND_SOC_BIAS_OFF,
1313ffd60fbaSKuninori Morimoto 	     "codec %s can not start from non-off bias with idle_bias_off==1\n",
1314ffd60fbaSKuninori Morimoto 	     component->name);
1315c6619b72SKuninori Morimoto 	probed = 1;
1316ffd60fbaSKuninori Morimoto 
1317ffd60fbaSKuninori Morimoto 	/* machine specific init */
1318ffd60fbaSKuninori Morimoto 	if (component->init) {
1319ffd60fbaSKuninori Morimoto 		ret = component->init(component);
1320ffd60fbaSKuninori Morimoto 		if (ret < 0) {
1321ffd60fbaSKuninori Morimoto 			dev_err(component->dev,
1322ffd60fbaSKuninori Morimoto 				"Failed to do machine specific init %d\n", ret);
1323ffd60fbaSKuninori Morimoto 			goto err_probe;
1324ffd60fbaSKuninori Morimoto 		}
1325ffd60fbaSKuninori Morimoto 	}
1326ffd60fbaSKuninori Morimoto 
1327ffd60fbaSKuninori Morimoto 	ret = snd_soc_add_component_controls(component,
1328ffd60fbaSKuninori Morimoto 					     component->driver->controls,
1329ffd60fbaSKuninori Morimoto 					     component->driver->num_controls);
1330ffd60fbaSKuninori Morimoto 	if (ret < 0)
1331ffd60fbaSKuninori Morimoto 		goto err_probe;
1332ffd60fbaSKuninori Morimoto 
1333ffd60fbaSKuninori Morimoto 	ret = snd_soc_dapm_add_routes(dapm,
1334ffd60fbaSKuninori Morimoto 				      component->driver->dapm_routes,
1335ffd60fbaSKuninori Morimoto 				      component->driver->num_dapm_routes);
1336ffd60fbaSKuninori Morimoto 	if (ret < 0)
1337ffd60fbaSKuninori Morimoto 		goto err_probe;
1338ffd60fbaSKuninori Morimoto 
1339ffd60fbaSKuninori Morimoto 	/* see for_each_card_components */
1340ffd60fbaSKuninori Morimoto 	list_add(&component->card_list, &card->component_dev_list);
1341ffd60fbaSKuninori Morimoto 
1342ffd60fbaSKuninori Morimoto err_probe:
1343ffd60fbaSKuninori Morimoto 	if (ret < 0)
1344c6619b72SKuninori Morimoto 		soc_remove_component(component, probed);
1345ffd60fbaSKuninori Morimoto 
1346ffd60fbaSKuninori Morimoto 	return ret;
1347ffd60fbaSKuninori Morimoto }
1348ffd60fbaSKuninori Morimoto 
1349e60cd14fSLars-Peter Clausen static void soc_remove_dai(struct snd_soc_dai *dai, int order)
1350589c3563SJarkko Nikula {
1351589c3563SJarkko Nikula 	int err;
1352589c3563SJarkko Nikula 
135352abe6ccSGuennadi Liakhovetski 	if (!dai || !dai->probed || !dai->driver ||
13542eda3cb1SKuninori Morimoto 	    dai->driver->remove_order != order)
13552eda3cb1SKuninori Morimoto 		return;
13562eda3cb1SKuninori Morimoto 
1357dcdab582SKuninori Morimoto 	err = snd_soc_dai_remove(dai);
1358589c3563SJarkko Nikula 	if (err < 0)
1359e60cd14fSLars-Peter Clausen 		dev_err(dai->dev,
1360b0aa88afSMisael Lopez Cruz 			"ASoC: failed to remove %s: %d\n",
1361e60cd14fSLars-Peter Clausen 			dai->name, err);
1362dcdab582SKuninori Morimoto 
1363e60cd14fSLars-Peter Clausen 	dai->probed = 0;
1364b0aa88afSMisael Lopez Cruz }
1365b0aa88afSMisael Lopez Cruz 
1366a7d44f78SKuninori Morimoto static int soc_probe_dai(struct snd_soc_dai *dai, int order)
1367a7d44f78SKuninori Morimoto {
1368a7d44f78SKuninori Morimoto 	int ret;
1369a7d44f78SKuninori Morimoto 
1370a7d44f78SKuninori Morimoto 	if (dai->probed ||
1371a7d44f78SKuninori Morimoto 	    dai->driver->probe_order != order)
1372a7d44f78SKuninori Morimoto 		return 0;
1373a7d44f78SKuninori Morimoto 
1374a7d44f78SKuninori Morimoto 	ret = snd_soc_dai_probe(dai);
1375a7d44f78SKuninori Morimoto 	if (ret < 0) {
1376a7d44f78SKuninori Morimoto 		dev_err(dai->dev, "ASoC: failed to probe DAI %s: %d\n",
1377a7d44f78SKuninori Morimoto 			dai->name, ret);
1378a7d44f78SKuninori Morimoto 		return ret;
1379a7d44f78SKuninori Morimoto 	}
1380a7d44f78SKuninori Morimoto 
1381a7d44f78SKuninori Morimoto 	dai->probed = 1;
1382a7d44f78SKuninori Morimoto 
1383a7d44f78SKuninori Morimoto 	return 0;
1384a7d44f78SKuninori Morimoto }
1385a7d44f78SKuninori Morimoto 
13864ca47d21SKuninori Morimoto static void soc_remove_link_dais(struct snd_soc_card *card)
1387f0fba2adSLiam Girdwood {
1388e60cd14fSLars-Peter Clausen 	int i;
13890b7990e3SKuninori Morimoto 	struct snd_soc_dai *codec_dai;
13904ca47d21SKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd;
13914ca47d21SKuninori Morimoto 	int order;
13924ca47d21SKuninori Morimoto 
13934ca47d21SKuninori Morimoto 	for_each_comp_order(order) {
13944ca47d21SKuninori Morimoto 		for_each_card_rtds(card, rtd) {
1395f0fba2adSLiam Girdwood 			/* remove the CODEC DAI */
13960b7990e3SKuninori Morimoto 			for_each_rtd_codec_dai(rtd, i, codec_dai)
13970b7990e3SKuninori Morimoto 				soc_remove_dai(codec_dai, order);
1398f0fba2adSLiam Girdwood 
1399e60cd14fSLars-Peter Clausen 			soc_remove_dai(rtd->cpu_dai, order);
1400f0fba2adSLiam Girdwood 		}
14014ca47d21SKuninori Morimoto 	}
14024ca47d21SKuninori Morimoto }
1403f0fba2adSLiam Girdwood 
1404bc7c16c2SKuninori Morimoto static int soc_probe_link_dais(struct snd_soc_card *card)
1405bc7c16c2SKuninori Morimoto {
1406bc7c16c2SKuninori Morimoto 	struct snd_soc_dai *codec_dai;
1407bc7c16c2SKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd;
1408bc7c16c2SKuninori Morimoto 	int i, order, ret;
1409bc7c16c2SKuninori Morimoto 
1410bc7c16c2SKuninori Morimoto 	for_each_comp_order(order) {
1411bc7c16c2SKuninori Morimoto 		for_each_card_rtds(card, rtd) {
1412bc7c16c2SKuninori Morimoto 
1413bc7c16c2SKuninori Morimoto 			dev_dbg(card->dev,
1414bc7c16c2SKuninori Morimoto 				"ASoC: probe %s dai link %d late %d\n",
1415bc7c16c2SKuninori Morimoto 				card->name, rtd->num, order);
1416bc7c16c2SKuninori Morimoto 
1417bc7c16c2SKuninori Morimoto 			ret = soc_probe_dai(rtd->cpu_dai, order);
1418bc7c16c2SKuninori Morimoto 			if (ret)
1419bc7c16c2SKuninori Morimoto 				return ret;
1420bc7c16c2SKuninori Morimoto 
1421bc7c16c2SKuninori Morimoto 			/* probe the CODEC DAI */
1422bc7c16c2SKuninori Morimoto 			for_each_rtd_codec_dai(rtd, i, codec_dai) {
1423bc7c16c2SKuninori Morimoto 				ret = soc_probe_dai(codec_dai, order);
1424bc7c16c2SKuninori Morimoto 				if (ret)
1425bc7c16c2SKuninori Morimoto 					return ret;
1426bc7c16c2SKuninori Morimoto 			}
1427bc7c16c2SKuninori Morimoto 		}
1428bc7c16c2SKuninori Morimoto 	}
1429bc7c16c2SKuninori Morimoto 
1430bc7c16c2SKuninori Morimoto 	return 0;
1431bc7c16c2SKuninori Morimoto }
1432bc7c16c2SKuninori Morimoto 
1433b006c0c6SKuninori Morimoto static void soc_remove_link_components(struct snd_soc_card *card)
143462ae68faSStephen Warren {
143561aca564SLars-Peter Clausen 	struct snd_soc_component *component;
1436b006c0c6SKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd;
143790be711eSKuninori Morimoto 	struct snd_soc_rtdcom_list *rtdcom;
1438b006c0c6SKuninori Morimoto 	int order;
143962ae68faSStephen Warren 
1440b006c0c6SKuninori Morimoto 	for_each_comp_order(order) {
1441b006c0c6SKuninori Morimoto 		for_each_card_rtds(card, rtd) {
14422b544dd7SKuninori Morimoto 			for_each_rtd_components(rtd, rtdcom, component) {
1443b006c0c6SKuninori Morimoto 				if (component->driver->remove_order != order)
1444b006c0c6SKuninori Morimoto 					continue;
1445b006c0c6SKuninori Morimoto 
1446c6619b72SKuninori Morimoto 				soc_remove_component(component, 1);
144762ae68faSStephen Warren 			}
144862ae68faSStephen Warren 		}
1449b006c0c6SKuninori Morimoto 	}
1450b006c0c6SKuninori Morimoto }
145162ae68faSStephen Warren 
145262f07a6bSKuninori Morimoto static int soc_probe_link_components(struct snd_soc_card *card)
14536fb03550SKuninori Morimoto {
14546fb03550SKuninori Morimoto 	struct snd_soc_component *component;
145562f07a6bSKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd;
14566fb03550SKuninori Morimoto 	struct snd_soc_rtdcom_list *rtdcom;
145762f07a6bSKuninori Morimoto 	int ret, order;
14586fb03550SKuninori Morimoto 
145962f07a6bSKuninori Morimoto 	for_each_comp_order(order) {
146062f07a6bSKuninori Morimoto 		for_each_card_rtds(card, rtd) {
14612b544dd7SKuninori Morimoto 			for_each_rtd_components(rtd, rtdcom, component) {
146262f07a6bSKuninori Morimoto 				if (component->driver->probe_order != order)
146362f07a6bSKuninori Morimoto 					continue;
146462f07a6bSKuninori Morimoto 
14656fb03550SKuninori Morimoto 				ret = soc_probe_component(card, component);
14666fb03550SKuninori Morimoto 				if (ret < 0)
14676fb03550SKuninori Morimoto 					return ret;
14686fb03550SKuninori Morimoto 			}
14696fb03550SKuninori Morimoto 		}
147062f07a6bSKuninori Morimoto 	}
14716fb03550SKuninori Morimoto 
14726fb03550SKuninori Morimoto 	return 0;
14736fb03550SKuninori Morimoto }
14746fb03550SKuninori Morimoto 
1475e8fbd250SKuninori Morimoto static void soc_unbind_aux_dev(struct snd_soc_card *card)
14764893a2ebSKuninori Morimoto {
1477e8fbd250SKuninori Morimoto 	struct snd_soc_component *component, *_component;
1478e8fbd250SKuninori Morimoto 
1479e8fbd250SKuninori Morimoto 	for_each_card_auxs_safe(card, component, _component) {
14804893a2ebSKuninori Morimoto 		component->init = NULL;
14814893a2ebSKuninori Morimoto 		list_del(&component->card_aux_list);
14824893a2ebSKuninori Morimoto 	}
1483e8fbd250SKuninori Morimoto }
14844893a2ebSKuninori Morimoto 
1485bee886f1SKuninori Morimoto static int soc_bind_aux_dev(struct snd_soc_card *card)
1486b19e6e7bSMark Brown {
1487f2ed6b07SMengdong Lin 	struct snd_soc_component *component;
1488bee886f1SKuninori Morimoto 	struct snd_soc_aux_dev *aux;
1489bee886f1SKuninori Morimoto 	int i;
14903ca041edSSebastian Reichel 
1491bee886f1SKuninori Morimoto 	for_each_card_pre_auxs(card, i, aux) {
1492f2ed6b07SMengdong Lin 		/* codecs, usually analog devices */
1493bee886f1SKuninori Morimoto 		component = soc_find_component(&aux->dlc);
1494f2ed6b07SMengdong Lin 		if (!component)
14953dc29b8bSKuninori Morimoto 			return -EPROBE_DEFER;
14963ca041edSSebastian Reichel 
1497bee886f1SKuninori Morimoto 		component->init = aux->init;
1498c2b71c71SKuninori Morimoto 		/* see for_each_card_auxs */
1499d2e3a135SSylwester Nawrocki 		list_add(&component->card_aux_list, &card->aux_comp_list);
1500bee886f1SKuninori Morimoto 	}
1501f2ed6b07SMengdong Lin 	return 0;
1502b19e6e7bSMark Brown }
1503b19e6e7bSMark Brown 
1504f2ed6b07SMengdong Lin static int soc_probe_aux_devices(struct snd_soc_card *card)
1505f2ed6b07SMengdong Lin {
150674bd3f92SKuninori Morimoto 	struct snd_soc_component *component;
1507f2ed6b07SMengdong Lin 	int order;
1508f2ed6b07SMengdong Lin 	int ret;
1509f2ed6b07SMengdong Lin 
15101a1035a9SKuninori Morimoto 	for_each_comp_order(order) {
151174bd3f92SKuninori Morimoto 		for_each_card_auxs(card, component) {
151274bd3f92SKuninori Morimoto 			if (component->driver->probe_order != order)
151374bd3f92SKuninori Morimoto 				continue;
151474bd3f92SKuninori Morimoto 
151574bd3f92SKuninori Morimoto 			ret = soc_probe_component(card,	component);
151674bd3f92SKuninori Morimoto 			if (ret < 0)
1517f2ed6b07SMengdong Lin 				return ret;
1518f2ed6b07SMengdong Lin 		}
1519f2ed6b07SMengdong Lin 	}
152065d9361fSLars-Peter Clausen 
152144c69bb1SLars-Peter Clausen 	return 0;
15223ca041edSSebastian Reichel }
15232eea392dSJarkko Nikula 
1524f2ed6b07SMengdong Lin static void soc_remove_aux_devices(struct snd_soc_card *card)
152544c69bb1SLars-Peter Clausen {
1526f2ed6b07SMengdong Lin 	struct snd_soc_component *comp, *_comp;
1527f2ed6b07SMengdong Lin 	int order;
152844c69bb1SLars-Peter Clausen 
15291a1035a9SKuninori Morimoto 	for_each_comp_order(order) {
1530c2b71c71SKuninori Morimoto 		for_each_card_auxs_safe(card, comp, _comp) {
1531e8fbd250SKuninori Morimoto 			if (comp->driver->remove_order == order)
1532c6619b72SKuninori Morimoto 				soc_remove_component(comp, 1);
15335f3484acSLars-Peter Clausen 		}
15342eea392dSJarkko Nikula 	}
15352eea392dSJarkko Nikula }
15362eea392dSJarkko Nikula 
1537ce64c8b9SLars-Peter Clausen /**
1538ce64c8b9SLars-Peter Clausen  * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1539ce64c8b9SLars-Peter Clausen  * @rtd: The runtime for which the DAI link format should be changed
1540ce64c8b9SLars-Peter Clausen  * @dai_fmt: The new DAI link format
1541ce64c8b9SLars-Peter Clausen  *
1542ce64c8b9SLars-Peter Clausen  * This function updates the DAI link format for all DAIs connected to the DAI
1543ce64c8b9SLars-Peter Clausen  * link for the specified runtime.
1544ce64c8b9SLars-Peter Clausen  *
1545ce64c8b9SLars-Peter Clausen  * Note: For setups with a static format set the dai_fmt field in the
1546ce64c8b9SLars-Peter Clausen  * corresponding snd_dai_link struct instead of using this function.
1547ce64c8b9SLars-Peter Clausen  *
1548ce64c8b9SLars-Peter Clausen  * Returns 0 on success, otherwise a negative error code.
1549ce64c8b9SLars-Peter Clausen  */
1550ce64c8b9SLars-Peter Clausen int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
1551ce64c8b9SLars-Peter Clausen 	unsigned int dai_fmt)
1552ce64c8b9SLars-Peter Clausen {
1553ce64c8b9SLars-Peter Clausen 	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
15540b7990e3SKuninori Morimoto 	struct snd_soc_dai *codec_dai;
1555ce64c8b9SLars-Peter Clausen 	unsigned int i;
1556ce64c8b9SLars-Peter Clausen 	int ret;
1557ce64c8b9SLars-Peter Clausen 
15580b7990e3SKuninori Morimoto 	for_each_rtd_codec_dai(rtd, i, codec_dai) {
1559ce64c8b9SLars-Peter Clausen 		ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1560ce64c8b9SLars-Peter Clausen 		if (ret != 0 && ret != -ENOTSUPP) {
1561ce64c8b9SLars-Peter Clausen 			dev_warn(codec_dai->dev,
1562ce64c8b9SLars-Peter Clausen 				 "ASoC: Failed to set DAI format: %d\n", ret);
1563ce64c8b9SLars-Peter Clausen 			return ret;
1564ce64c8b9SLars-Peter Clausen 		}
1565ce64c8b9SLars-Peter Clausen 	}
1566ce64c8b9SLars-Peter Clausen 
15672c7b696aSMarcel Ziswiler 	/*
15682c7b696aSMarcel Ziswiler 	 * Flip the polarity for the "CPU" end of a CODEC<->CODEC link
15692c7b696aSMarcel Ziswiler 	 * the component which has non_legacy_dai_naming is Codec
15702c7b696aSMarcel Ziswiler 	 */
1571999f7f5aSKuninori Morimoto 	if (cpu_dai->component->driver->non_legacy_dai_naming) {
1572ce64c8b9SLars-Peter Clausen 		unsigned int inv_dai_fmt;
1573ce64c8b9SLars-Peter Clausen 
1574ce64c8b9SLars-Peter Clausen 		inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
1575ce64c8b9SLars-Peter Clausen 		switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1576ce64c8b9SLars-Peter Clausen 		case SND_SOC_DAIFMT_CBM_CFM:
1577ce64c8b9SLars-Peter Clausen 			inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1578ce64c8b9SLars-Peter Clausen 			break;
1579ce64c8b9SLars-Peter Clausen 		case SND_SOC_DAIFMT_CBM_CFS:
1580ce64c8b9SLars-Peter Clausen 			inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1581ce64c8b9SLars-Peter Clausen 			break;
1582ce64c8b9SLars-Peter Clausen 		case SND_SOC_DAIFMT_CBS_CFM:
1583ce64c8b9SLars-Peter Clausen 			inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1584ce64c8b9SLars-Peter Clausen 			break;
1585ce64c8b9SLars-Peter Clausen 		case SND_SOC_DAIFMT_CBS_CFS:
1586ce64c8b9SLars-Peter Clausen 			inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1587ce64c8b9SLars-Peter Clausen 			break;
1588ce64c8b9SLars-Peter Clausen 		}
1589ce64c8b9SLars-Peter Clausen 
1590ce64c8b9SLars-Peter Clausen 		dai_fmt = inv_dai_fmt;
1591ce64c8b9SLars-Peter Clausen 	}
1592ce64c8b9SLars-Peter Clausen 
1593ce64c8b9SLars-Peter Clausen 	ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt);
1594ce64c8b9SLars-Peter Clausen 	if (ret != 0 && ret != -ENOTSUPP) {
1595ce64c8b9SLars-Peter Clausen 		dev_warn(cpu_dai->dev,
1596ce64c8b9SLars-Peter Clausen 			 "ASoC: Failed to set DAI format: %d\n", ret);
1597ce64c8b9SLars-Peter Clausen 		return ret;
1598ce64c8b9SLars-Peter Clausen 	}
1599ce64c8b9SLars-Peter Clausen 
1600ce64c8b9SLars-Peter Clausen 	return 0;
1601ce64c8b9SLars-Peter Clausen }
1602ddaca25aSLars-Peter Clausen EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt);
1603ce64c8b9SLars-Peter Clausen 
16041f5a4535STakashi Iwai #ifdef CONFIG_DMI
16052c7b696aSMarcel Ziswiler /*
16062c7b696aSMarcel Ziswiler  * Trim special characters, and replace '-' with '_' since '-' is used to
1607345233d7SLiam Girdwood  * separate different DMI fields in the card long name. Only number and
1608345233d7SLiam Girdwood  * alphabet characters and a few separator characters are kept.
1609345233d7SLiam Girdwood  */
1610345233d7SLiam Girdwood static void cleanup_dmi_name(char *name)
1611345233d7SLiam Girdwood {
1612345233d7SLiam Girdwood 	int i, j = 0;
1613345233d7SLiam Girdwood 
1614345233d7SLiam Girdwood 	for (i = 0; name[i]; i++) {
1615345233d7SLiam Girdwood 		if (isalnum(name[i]) || (name[i] == '.')
1616345233d7SLiam Girdwood 		    || (name[i] == '_'))
1617345233d7SLiam Girdwood 			name[j++] = name[i];
1618345233d7SLiam Girdwood 		else if (name[i] == '-')
1619345233d7SLiam Girdwood 			name[j++] = '_';
1620345233d7SLiam Girdwood 	}
1621345233d7SLiam Girdwood 
1622345233d7SLiam Girdwood 	name[j] = '\0';
1623345233d7SLiam Girdwood }
1624345233d7SLiam Girdwood 
16252c7b696aSMarcel Ziswiler /*
16262c7b696aSMarcel Ziswiler  * Check if a DMI field is valid, i.e. not containing any string
162798faf436SMengdong Lin  * in the black list.
162898faf436SMengdong Lin  */
162998faf436SMengdong Lin static int is_dmi_valid(const char *field)
163098faf436SMengdong Lin {
163198faf436SMengdong Lin 	int i = 0;
163298faf436SMengdong Lin 
163398faf436SMengdong Lin 	while (dmi_blacklist[i]) {
163498faf436SMengdong Lin 		if (strstr(field, dmi_blacklist[i]))
163598faf436SMengdong Lin 			return 0;
163698faf436SMengdong Lin 		i++;
163746b5a4d2SWu Fengguang 	}
163898faf436SMengdong Lin 
163998faf436SMengdong Lin 	return 1;
164098faf436SMengdong Lin }
164198faf436SMengdong Lin 
16424e01e5dbSJaroslav Kysela /*
16434e01e5dbSJaroslav Kysela  * Append a string to card->dmi_longname with character cleanups.
16444e01e5dbSJaroslav Kysela  */
16454e01e5dbSJaroslav Kysela static void append_dmi_string(struct snd_soc_card *card, const char *str)
16464e01e5dbSJaroslav Kysela {
16474e01e5dbSJaroslav Kysela 	char *dst = card->dmi_longname;
16484e01e5dbSJaroslav Kysela 	size_t dst_len = sizeof(card->dmi_longname);
16494e01e5dbSJaroslav Kysela 	size_t len;
16504e01e5dbSJaroslav Kysela 
16514e01e5dbSJaroslav Kysela 	len = strlen(dst);
16524e01e5dbSJaroslav Kysela 	snprintf(dst + len, dst_len - len, "-%s", str);
16534e01e5dbSJaroslav Kysela 
16544e01e5dbSJaroslav Kysela 	len++;	/* skip the separator "-" */
16554e01e5dbSJaroslav Kysela 	if (len < dst_len)
16564e01e5dbSJaroslav Kysela 		cleanup_dmi_name(dst + len);
16574e01e5dbSJaroslav Kysela }
16584e01e5dbSJaroslav Kysela 
1659345233d7SLiam Girdwood /**
1660345233d7SLiam Girdwood  * snd_soc_set_dmi_name() - Register DMI names to card
1661345233d7SLiam Girdwood  * @card: The card to register DMI names
1662345233d7SLiam Girdwood  * @flavour: The flavour "differentiator" for the card amongst its peers.
1663345233d7SLiam Girdwood  *
1664345233d7SLiam Girdwood  * An Intel machine driver may be used by many different devices but are
1665345233d7SLiam Girdwood  * difficult for userspace to differentiate, since machine drivers ususally
1666345233d7SLiam Girdwood  * use their own name as the card short name and leave the card long name
1667345233d7SLiam Girdwood  * blank. To differentiate such devices and fix bugs due to lack of
1668345233d7SLiam Girdwood  * device-specific configurations, this function allows DMI info to be used
1669345233d7SLiam Girdwood  * as the sound card long name, in the format of
1670345233d7SLiam Girdwood  * "vendor-product-version-board"
1671345233d7SLiam Girdwood  * (Character '-' is used to separate different DMI fields here).
1672345233d7SLiam Girdwood  * This will help the user space to load the device-specific Use Case Manager
1673345233d7SLiam Girdwood  * (UCM) configurations for the card.
1674345233d7SLiam Girdwood  *
1675345233d7SLiam Girdwood  * Possible card long names may be:
1676345233d7SLiam Girdwood  * DellInc.-XPS139343-01-0310JH
1677345233d7SLiam Girdwood  * ASUSTeKCOMPUTERINC.-T100TA-1.0-T100TA
1678345233d7SLiam Girdwood  * Circuitco-MinnowboardMaxD0PLATFORM-D0-MinnowBoardMAX
1679345233d7SLiam Girdwood  *
1680345233d7SLiam Girdwood  * This function also supports flavoring the card longname to provide
1681345233d7SLiam Girdwood  * the extra differentiation, like "vendor-product-version-board-flavor".
1682345233d7SLiam Girdwood  *
1683345233d7SLiam Girdwood  * We only keep number and alphabet characters and a few separator characters
1684345233d7SLiam Girdwood  * in the card long name since UCM in the user space uses the card long names
1685345233d7SLiam Girdwood  * as card configuration directory names and AudoConf cannot support special
1686345233d7SLiam Girdwood  * charactors like SPACE.
1687345233d7SLiam Girdwood  *
1688345233d7SLiam Girdwood  * Returns 0 on success, otherwise a negative error code.
1689345233d7SLiam Girdwood  */
1690345233d7SLiam Girdwood int snd_soc_set_dmi_name(struct snd_soc_card *card, const char *flavour)
1691345233d7SLiam Girdwood {
1692345233d7SLiam Girdwood 	const char *vendor, *product, *product_version, *board;
1693345233d7SLiam Girdwood 
1694345233d7SLiam Girdwood 	if (card->long_name)
1695345233d7SLiam Girdwood 		return 0; /* long name already set by driver or from DMI */
1696345233d7SLiam Girdwood 
16974e01e5dbSJaroslav Kysela 	/* make up dmi long name as: vendor-product-version-board */
1698345233d7SLiam Girdwood 	vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
169998faf436SMengdong Lin 	if (!vendor || !is_dmi_valid(vendor)) {
1700345233d7SLiam Girdwood 		dev_warn(card->dev, "ASoC: no DMI vendor name!\n");
1701345233d7SLiam Girdwood 		return 0;
1702345233d7SLiam Girdwood 	}
1703345233d7SLiam Girdwood 
17044e01e5dbSJaroslav Kysela 	snprintf(card->dmi_longname, sizeof(card->dmi_longname), "%s", vendor);
1705345233d7SLiam Girdwood 	cleanup_dmi_name(card->dmi_longname);
1706345233d7SLiam Girdwood 
1707345233d7SLiam Girdwood 	product = dmi_get_system_info(DMI_PRODUCT_NAME);
170898faf436SMengdong Lin 	if (product && is_dmi_valid(product)) {
17094e01e5dbSJaroslav Kysela 		append_dmi_string(card, product);
1710345233d7SLiam Girdwood 
17112c7b696aSMarcel Ziswiler 		/*
17122c7b696aSMarcel Ziswiler 		 * some vendors like Lenovo may only put a self-explanatory
1713345233d7SLiam Girdwood 		 * name in the product version field
1714345233d7SLiam Girdwood 		 */
1715345233d7SLiam Girdwood 		product_version = dmi_get_system_info(DMI_PRODUCT_VERSION);
17164e01e5dbSJaroslav Kysela 		if (product_version && is_dmi_valid(product_version))
17174e01e5dbSJaroslav Kysela 			append_dmi_string(card, product_version);
1718345233d7SLiam Girdwood 	}
1719345233d7SLiam Girdwood 
1720345233d7SLiam Girdwood 	board = dmi_get_system_info(DMI_BOARD_NAME);
172198faf436SMengdong Lin 	if (board && is_dmi_valid(board)) {
172239870b0dSJaroslav Kysela 		if (!product || strcasecmp(board, product))
17234e01e5dbSJaroslav Kysela 			append_dmi_string(card, board);
1724345233d7SLiam Girdwood 	} else if (!product) {
1725345233d7SLiam Girdwood 		/* fall back to using legacy name */
1726345233d7SLiam Girdwood 		dev_warn(card->dev, "ASoC: no DMI board/product name!\n");
1727345233d7SLiam Girdwood 		return 0;
1728345233d7SLiam Girdwood 	}
1729345233d7SLiam Girdwood 
1730345233d7SLiam Girdwood 	/* Add flavour to dmi long name */
17314e01e5dbSJaroslav Kysela 	if (flavour)
17324e01e5dbSJaroslav Kysela 		append_dmi_string(card, flavour);
1733345233d7SLiam Girdwood 
1734345233d7SLiam Girdwood 	/* set the card long name */
1735345233d7SLiam Girdwood 	card->long_name = card->dmi_longname;
1736345233d7SLiam Girdwood 
1737345233d7SLiam Girdwood 	return 0;
1738345233d7SLiam Girdwood }
1739345233d7SLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_set_dmi_name);
17401f5a4535STakashi Iwai #endif /* CONFIG_DMI */
1741345233d7SLiam Girdwood 
1742a655de80SLiam Girdwood static void soc_check_tplg_fes(struct snd_soc_card *card)
1743a655de80SLiam Girdwood {
1744a655de80SLiam Girdwood 	struct snd_soc_component *component;
1745a655de80SLiam Girdwood 	const struct snd_soc_component_driver *comp_drv;
1746a655de80SLiam Girdwood 	struct snd_soc_dai_link *dai_link;
1747a655de80SLiam Girdwood 	int i;
1748a655de80SLiam Girdwood 
1749368dee94SKuninori Morimoto 	for_each_component(component) {
1750a655de80SLiam Girdwood 
175149f9c4f2SDaniel Baluta 		/* does this component override BEs ? */
1752a655de80SLiam Girdwood 		if (!component->driver->ignore_machine)
1753a655de80SLiam Girdwood 			continue;
1754a655de80SLiam Girdwood 
1755a655de80SLiam Girdwood 		/* for this machine ? */
1756e194098bSPierre-Louis Bossart 		if (!strcmp(component->driver->ignore_machine,
1757a655de80SLiam Girdwood 			    card->dev->driver->name))
1758e194098bSPierre-Louis Bossart 			goto match;
1759e194098bSPierre-Louis Bossart 		if (strcmp(component->driver->ignore_machine,
1760e194098bSPierre-Louis Bossart 			   dev_name(card->dev)))
1761a655de80SLiam Girdwood 			continue;
1762e194098bSPierre-Louis Bossart match:
1763a655de80SLiam Girdwood 		/* machine matches, so override the rtd data */
17647fe072b4SKuninori Morimoto 		for_each_card_prelinks(card, i, dai_link) {
1765a655de80SLiam Girdwood 
1766a655de80SLiam Girdwood 			/* ignore this FE */
1767a655de80SLiam Girdwood 			if (dai_link->dynamic) {
1768a655de80SLiam Girdwood 				dai_link->ignore = true;
1769a655de80SLiam Girdwood 				continue;
1770a655de80SLiam Girdwood 			}
1771a655de80SLiam Girdwood 
177249f9c4f2SDaniel Baluta 			dev_info(card->dev, "info: override BE DAI link %s\n",
1773a655de80SLiam Girdwood 				 card->dai_link[i].name);
1774a655de80SLiam Girdwood 
1775a655de80SLiam Girdwood 			/* override platform component */
1776adb76b5bSKuninori Morimoto 			if (!dai_link->platforms) {
1777daecf46eSKuninori Morimoto 				dev_err(card->dev, "init platform error");
1778daecf46eSKuninori Morimoto 				continue;
1779daecf46eSKuninori Morimoto 			}
1780910fdcabSKuninori Morimoto 			dai_link->platforms->name = component->name;
1781a655de80SLiam Girdwood 
1782a655de80SLiam Girdwood 			/* convert non BE into BE */
1783a655de80SLiam Girdwood 			dai_link->no_pcm = 1;
1784a655de80SLiam Girdwood 
1785a655de80SLiam Girdwood 			/* override any BE fixups */
1786a655de80SLiam Girdwood 			dai_link->be_hw_params_fixup =
1787a655de80SLiam Girdwood 				component->driver->be_hw_params_fixup;
1788a655de80SLiam Girdwood 
17892c7b696aSMarcel Ziswiler 			/*
17902c7b696aSMarcel Ziswiler 			 * most BE links don't set stream name, so set it to
1791a655de80SLiam Girdwood 			 * dai link name if it's NULL to help bind widgets.
1792a655de80SLiam Girdwood 			 */
1793a655de80SLiam Girdwood 			if (!dai_link->stream_name)
1794a655de80SLiam Girdwood 				dai_link->stream_name = dai_link->name;
1795a655de80SLiam Girdwood 		}
1796a655de80SLiam Girdwood 
1797a655de80SLiam Girdwood 		/* Inform userspace we are using alternate topology */
1798a655de80SLiam Girdwood 		if (component->driver->topology_name_prefix) {
1799a655de80SLiam Girdwood 
1800a655de80SLiam Girdwood 			/* topology shortname created? */
1801a655de80SLiam Girdwood 			if (!card->topology_shortname_created) {
1802a655de80SLiam Girdwood 				comp_drv = component->driver;
1803a655de80SLiam Girdwood 
1804a655de80SLiam Girdwood 				snprintf(card->topology_shortname, 32, "%s-%s",
1805a655de80SLiam Girdwood 					 comp_drv->topology_name_prefix,
1806a655de80SLiam Girdwood 					 card->name);
1807a655de80SLiam Girdwood 				card->topology_shortname_created = true;
1808a655de80SLiam Girdwood 			}
1809a655de80SLiam Girdwood 
1810a655de80SLiam Girdwood 			/* use topology shortname */
1811a655de80SLiam Girdwood 			card->name = card->topology_shortname;
1812a655de80SLiam Girdwood 		}
1813a655de80SLiam Girdwood 	}
1814a655de80SLiam Girdwood }
1815a655de80SLiam Girdwood 
18160f23f718SKuninori Morimoto #define soc_setup_card_name(name, name1, name2, norm)		\
18170f23f718SKuninori Morimoto 	__soc_setup_card_name(name, sizeof(name), name1, name2, norm)
18180f23f718SKuninori Morimoto static void __soc_setup_card_name(char *name, int len,
18190f23f718SKuninori Morimoto 				  const char *name1, const char *name2,
18200f23f718SKuninori Morimoto 				  int normalization)
18210f23f718SKuninori Morimoto {
18220f23f718SKuninori Morimoto 	int i;
18230f23f718SKuninori Morimoto 
18240f23f718SKuninori Morimoto 	snprintf(name, len, "%s", name1 ? name1 : name2);
18250f23f718SKuninori Morimoto 
18260f23f718SKuninori Morimoto 	if (!normalization)
18270f23f718SKuninori Morimoto 		return;
18280f23f718SKuninori Morimoto 
18290f23f718SKuninori Morimoto 	/*
18300f23f718SKuninori Morimoto 	 * Name normalization
18310f23f718SKuninori Morimoto 	 *
18320f23f718SKuninori Morimoto 	 * The driver name is somewhat special, as it's used as a key for
18330f23f718SKuninori Morimoto 	 * searches in the user-space.
18340f23f718SKuninori Morimoto 	 *
18350f23f718SKuninori Morimoto 	 * ex)
18360f23f718SKuninori Morimoto 	 *	"abcd??efg" -> "abcd__efg"
18370f23f718SKuninori Morimoto 	 */
18380f23f718SKuninori Morimoto 	for (i = 0; i < len; i++) {
18390f23f718SKuninori Morimoto 		switch (name[i]) {
18400f23f718SKuninori Morimoto 		case '_':
18410f23f718SKuninori Morimoto 		case '-':
18420f23f718SKuninori Morimoto 		case '\0':
18430f23f718SKuninori Morimoto 			break;
18440f23f718SKuninori Morimoto 		default:
18450f23f718SKuninori Morimoto 			if (!isalnum(name[i]))
18460f23f718SKuninori Morimoto 				name[i] = '_';
18470f23f718SKuninori Morimoto 			break;
18480f23f718SKuninori Morimoto 		}
18490f23f718SKuninori Morimoto 	}
18500f23f718SKuninori Morimoto }
18510f23f718SKuninori Morimoto 
1852ce21401cSKuninori Morimoto static void soc_cleanup_card_resources(struct snd_soc_card *card,
1853ce21401cSKuninori Morimoto 				       int card_probed)
185453e947a0SKuninori Morimoto {
1855cc733900SKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd, *n;
18567ce6088fSKuninori Morimoto 
18570ced7b05SKuninori Morimoto 	if (card->snd_card)
18580ced7b05SKuninori Morimoto 		snd_card_disconnect_sync(card->snd_card);
185953e947a0SKuninori Morimoto 
18602a6f0892SKuninori Morimoto 	snd_soc_dapm_shutdown(card);
18612a6f0892SKuninori Morimoto 
186253e947a0SKuninori Morimoto 	/* remove and free each DAI */
18637ce6088fSKuninori Morimoto 	soc_remove_link_dais(card);
18640ced7b05SKuninori Morimoto 	soc_remove_link_components(card);
18657ce6088fSKuninori Morimoto 
1866cc733900SKuninori Morimoto 	for_each_card_rtds_safe(card, rtd, n)
186750cd9b53SKuninori Morimoto 		snd_soc_remove_pcm_runtime(card, rtd);
18687ce6088fSKuninori Morimoto 
186953e947a0SKuninori Morimoto 	/* remove auxiliary devices */
187053e947a0SKuninori Morimoto 	soc_remove_aux_devices(card);
1871e8fbd250SKuninori Morimoto 	soc_unbind_aux_dev(card);
187253e947a0SKuninori Morimoto 
187353e947a0SKuninori Morimoto 	snd_soc_dapm_free(&card->dapm);
187453e947a0SKuninori Morimoto 	soc_cleanup_card_debugfs(card);
187553e947a0SKuninori Morimoto 
187653e947a0SKuninori Morimoto 	/* remove the card */
1877ce21401cSKuninori Morimoto 	if (card_probed && card->remove)
187853e947a0SKuninori Morimoto 		card->remove(card);
18790ced7b05SKuninori Morimoto 
18800ced7b05SKuninori Morimoto 	if (card->snd_card) {
18810ced7b05SKuninori Morimoto 		snd_card_free(card->snd_card);
18820ced7b05SKuninori Morimoto 		card->snd_card = NULL;
18830ced7b05SKuninori Morimoto 	}
188453e947a0SKuninori Morimoto }
188553e947a0SKuninori Morimoto 
18862cc1afcfSKuninori Morimoto static void snd_soc_unbind_card(struct snd_soc_card *card, bool unregister)
18872cc1afcfSKuninori Morimoto {
18882cc1afcfSKuninori Morimoto 	if (card->instantiated) {
1889ce21401cSKuninori Morimoto 		int card_probed = 1;
1890ce21401cSKuninori Morimoto 
18912cc1afcfSKuninori Morimoto 		card->instantiated = false;
18922cc1afcfSKuninori Morimoto 		snd_soc_flush_all_delayed_work(card);
18932cc1afcfSKuninori Morimoto 
1894ce21401cSKuninori Morimoto 		soc_cleanup_card_resources(card, card_probed);
18952cc1afcfSKuninori Morimoto 		if (!unregister)
18962cc1afcfSKuninori Morimoto 			list_add(&card->list, &unbind_card_list);
18972cc1afcfSKuninori Morimoto 	} else {
18982cc1afcfSKuninori Morimoto 		if (unregister)
18992cc1afcfSKuninori Morimoto 			list_del(&card->list);
19002cc1afcfSKuninori Morimoto 	}
19012cc1afcfSKuninori Morimoto }
19022cc1afcfSKuninori Morimoto 
1903ed90c013SKuninori Morimoto static int snd_soc_bind_card(struct snd_soc_card *card)
1904f0fba2adSLiam Girdwood {
19051a497983SMengdong Lin 	struct snd_soc_pcm_runtime *rtd;
190661b0088bSMengdong Lin 	struct snd_soc_dai_link *dai_link;
1907ce21401cSKuninori Morimoto 	int ret, i, card_probed = 0;
190896dd3622SMark Brown 
190934e81ab4SLars-Peter Clausen 	mutex_lock(&client_mutex);
191001b9d99aSLiam Girdwood 	mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
1911f0fba2adSLiam Girdwood 
191295c267ddSKuninori Morimoto 	snd_soc_dapm_init(&card->dapm, card, NULL);
191353e947a0SKuninori Morimoto 
1914a655de80SLiam Girdwood 	/* check whether any platform is ignore machine FE and using topology */
1915a655de80SLiam Girdwood 	soc_check_tplg_fes(card);
1916a655de80SLiam Girdwood 
191744c69bb1SLars-Peter Clausen 	/* bind aux_devs too */
1918bee886f1SKuninori Morimoto 	ret = soc_bind_aux_dev(card);
1919bee886f1SKuninori Morimoto 	if (ret < 0)
192053e947a0SKuninori Morimoto 		goto probe_end;
1921db2a4165SFrank Mandarino 
1922f8f80361SMengdong Lin 	/* add predefined DAI links to the list */
1923d8145989SKuninori Morimoto 	card->num_rtd = 0;
19245b99a0aaSKuninori Morimoto 	for_each_card_prelinks(card, i, dai_link) {
19250c048004SKuninori Morimoto 		ret = snd_soc_add_pcm_runtime(card, dai_link);
19265b99a0aaSKuninori Morimoto 		if (ret < 0)
19275b99a0aaSKuninori Morimoto 			goto probe_end;
19285b99a0aaSKuninori Morimoto 	}
1929f8f80361SMengdong Lin 
1930f0fba2adSLiam Girdwood 	/* card bind complete so register a sound card */
1931102b5a8dSTakashi Iwai 	ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1932f0fba2adSLiam Girdwood 			card->owner, 0, &card->snd_card);
1933f0fba2adSLiam Girdwood 	if (ret < 0) {
193410e8aa9aSMichał Mirosław 		dev_err(card->dev,
193510e8aa9aSMichał Mirosław 			"ASoC: can't create sound card for card %s: %d\n",
193610e8aa9aSMichał Mirosław 			card->name, ret);
193753e947a0SKuninori Morimoto 		goto probe_end;
1938db2a4165SFrank Mandarino 	}
1939db2a4165SFrank Mandarino 
19400757d834SLars-Peter Clausen 	soc_init_card_debugfs(card);
19410757d834SLars-Peter Clausen 
1942b3da4251SKuninori Morimoto 	soc_resume_init(card);
19436ed25978SAndy Green 
1944b8ba3b57SKuninori Morimoto 	ret = snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
19459a841ebbSMark Brown 					card->num_dapm_widgets);
1946b8ba3b57SKuninori Morimoto 	if (ret < 0)
1947b8ba3b57SKuninori Morimoto 		goto probe_end;
19489a841ebbSMark Brown 
1949b8ba3b57SKuninori Morimoto 	ret = snd_soc_dapm_new_controls(&card->dapm, card->of_dapm_widgets,
1950f23e860eSNicolin Chen 					card->num_of_dapm_widgets);
1951b8ba3b57SKuninori Morimoto 	if (ret < 0)
1952b8ba3b57SKuninori Morimoto 		goto probe_end;
1953f23e860eSNicolin Chen 
1954f0fba2adSLiam Girdwood 	/* initialise the sound card only once */
1955f0fba2adSLiam Girdwood 	if (card->probe) {
1956e7361ec4SMark Brown 		ret = card->probe(card);
1957f0fba2adSLiam Girdwood 		if (ret < 0)
195853e947a0SKuninori Morimoto 			goto probe_end;
1959ce21401cSKuninori Morimoto 		card_probed = 1;
1960f0fba2adSLiam Girdwood 	}
1961f0fba2adSLiam Girdwood 
196262ae68faSStephen Warren 	/* probe all components used by DAI links on this card */
196362f07a6bSKuninori Morimoto 	ret = soc_probe_link_components(card);
196462ae68faSStephen Warren 	if (ret < 0) {
1965f110bfc7SLiam Girdwood 		dev_err(card->dev,
196662f07a6bSKuninori Morimoto 			"ASoC: failed to instantiate card %d\n", ret);
196753e947a0SKuninori Morimoto 		goto probe_end;
196862ae68faSStephen Warren 	}
196962ae68faSStephen Warren 
1970f2ed6b07SMengdong Lin 	/* probe auxiliary components */
1971f2ed6b07SMengdong Lin 	ret = soc_probe_aux_devices(card);
197274bd3f92SKuninori Morimoto 	if (ret < 0) {
197374bd3f92SKuninori Morimoto 		dev_err(card->dev,
197474bd3f92SKuninori Morimoto 			"ASoC: failed to probe aux component %d\n", ret);
197553e947a0SKuninori Morimoto 		goto probe_end;
197674bd3f92SKuninori Morimoto 	}
1977f2ed6b07SMengdong Lin 
197862ae68faSStephen Warren 	/* probe all DAI links on this card */
1979c7e73774SKuninori Morimoto 	ret = soc_probe_link_dais(card);
1980fe3e78e0SMark Brown 	if (ret < 0) {
1981f110bfc7SLiam Girdwood 		dev_err(card->dev,
1982c7e73774SKuninori Morimoto 			"ASoC: failed to instantiate card %d\n", ret);
198353e947a0SKuninori Morimoto 		goto probe_end;
1984fe3e78e0SMark Brown 	}
1985fe3e78e0SMark Brown 
1986626c2e57SKuninori Morimoto 	for_each_card_rtds(card, rtd) {
1987eaffeefbSKuninori Morimoto 		ret = soc_init_pcm_runtime(card, rtd);
1988626c2e57SKuninori Morimoto 		if (ret < 0)
1989626c2e57SKuninori Morimoto 			goto probe_end;
1990626c2e57SKuninori Morimoto 	}
1991c4b46982SKuninori Morimoto 
1992888df395SMark Brown 	snd_soc_dapm_link_dai_widgets(card);
1993b893ea5fSLiam Girdwood 	snd_soc_dapm_connect_dai_link_widgets(card);
1994888df395SMark Brown 
19959b98c7c2SKuninori Morimoto 	ret = snd_soc_add_card_controls(card, card->controls,
19962c7b696aSMarcel Ziswiler 					card->num_controls);
19979b98c7c2SKuninori Morimoto 	if (ret < 0)
19989b98c7c2SKuninori Morimoto 		goto probe_end;
1999b7af1dafSMark Brown 
2000daa480bdSKuninori Morimoto 	ret = snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
2001b8ad29deSMark Brown 				      card->num_dapm_routes);
2002daa480bdSKuninori Morimoto 	if (ret < 0)
2003daa480bdSKuninori Morimoto 		goto probe_end;
2004b8ad29deSMark Brown 
2005daa480bdSKuninori Morimoto 	ret = snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes,
2006f23e860eSNicolin Chen 				      card->num_of_dapm_routes);
2007daa480bdSKuninori Morimoto 	if (ret < 0)
2008daa480bdSKuninori Morimoto 		goto probe_end;
200975d9ac46SMark Brown 
2010861886d3STakashi Iwai 	/* try to set some sane longname if DMI is available */
2011861886d3STakashi Iwai 	snd_soc_set_dmi_name(card, NULL);
2012861886d3STakashi Iwai 
20130f23f718SKuninori Morimoto 	soc_setup_card_name(card->snd_card->shortname,
20140f23f718SKuninori Morimoto 			    card->name, NULL, 0);
20150f23f718SKuninori Morimoto 	soc_setup_card_name(card->snd_card->longname,
20160f23f718SKuninori Morimoto 			    card->long_name, card->name, 0);
20170f23f718SKuninori Morimoto 	soc_setup_card_name(card->snd_card->driver,
20180f23f718SKuninori Morimoto 			    card->driver_name, card->name, 1);
2019fe3e78e0SMark Brown 
2020dc73d73aSJaroslav Kysela 	if (card->components) {
2021dc73d73aSJaroslav Kysela 		/* the current implementation of snd_component_add() accepts */
2022dc73d73aSJaroslav Kysela 		/* multiple components in the string separated by space, */
2023dc73d73aSJaroslav Kysela 		/* but the string collision (identical string) check might */
2024dc73d73aSJaroslav Kysela 		/* not work correctly */
2025dc73d73aSJaroslav Kysela 		ret = snd_component_add(card->snd_card, card->components);
2026dc73d73aSJaroslav Kysela 		if (ret < 0) {
2027dc73d73aSJaroslav Kysela 			dev_err(card->dev, "ASoC: %s snd_component_add() failed: %d\n",
2028dc73d73aSJaroslav Kysela 				card->name, ret);
2029dc73d73aSJaroslav Kysela 			goto probe_end;
2030dc73d73aSJaroslav Kysela 		}
2031dc73d73aSJaroslav Kysela 	}
2032dc73d73aSJaroslav Kysela 
203328e9ad92SMark Brown 	if (card->late_probe) {
203428e9ad92SMark Brown 		ret = card->late_probe(card);
203528e9ad92SMark Brown 		if (ret < 0) {
2036f110bfc7SLiam Girdwood 			dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
203728e9ad92SMark Brown 				card->name, ret);
203853e947a0SKuninori Morimoto 			goto probe_end;
203928e9ad92SMark Brown 		}
204028e9ad92SMark Brown 	}
2041ce21401cSKuninori Morimoto 	card_probed = 1;
204228e9ad92SMark Brown 
2043824ef826SLars-Peter Clausen 	snd_soc_dapm_new_widgets(card);
20448c193b8dSLars-Peter Clausen 
2045f0fba2adSLiam Girdwood 	ret = snd_card_register(card->snd_card);
2046fe3e78e0SMark Brown 	if (ret < 0) {
2047f110bfc7SLiam Girdwood 		dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
2048f110bfc7SLiam Girdwood 				ret);
204953e947a0SKuninori Morimoto 		goto probe_end;
2050fe3e78e0SMark Brown 	}
2051fe3e78e0SMark Brown 
2052435c5e25SMark Brown 	card->instantiated = 1;
2053882eab6cSTzung-Bi Shih 	dapm_mark_endpoints_dirty(card);
20544f4c0072SMark Brown 	snd_soc_dapm_sync(&card->dapm);
2055b19e6e7bSMark Brown 
2056ed90c013SKuninori Morimoto 	/* deactivate pins to sleep state */
2057ed90c013SKuninori Morimoto 	for_each_card_rtds(card, rtd) {
2058ed90c013SKuninori Morimoto 		struct snd_soc_dai *dai;
2059ed90c013SKuninori Morimoto 
2060ed90c013SKuninori Morimoto 		for_each_rtd_codec_dai(rtd, i, dai) {
2061ed90c013SKuninori Morimoto 			if (!dai->active)
2062ed90c013SKuninori Morimoto 				pinctrl_pm_select_sleep_state(dai->dev);
2063ed90c013SKuninori Morimoto 		}
2064ed90c013SKuninori Morimoto 
2065ed90c013SKuninori Morimoto 		if (!rtd->cpu_dai->active)
2066ed90c013SKuninori Morimoto 			pinctrl_pm_select_sleep_state(rtd->cpu_dai->dev);
2067ed90c013SKuninori Morimoto 	}
2068ed90c013SKuninori Morimoto 
206953e947a0SKuninori Morimoto probe_end:
207053e947a0SKuninori Morimoto 	if (ret < 0)
2071ce21401cSKuninori Morimoto 		soc_cleanup_card_resources(card, card_probed);
2072db2a4165SFrank Mandarino 
2073f0fba2adSLiam Girdwood 	mutex_unlock(&card->mutex);
207434e81ab4SLars-Peter Clausen 	mutex_unlock(&client_mutex);
2075db2a4165SFrank Mandarino 
2076b19e6e7bSMark Brown 	return ret;
2077435c5e25SMark Brown }
2078435c5e25SMark Brown 
2079435c5e25SMark Brown /* probes a new socdev */
2080435c5e25SMark Brown static int soc_probe(struct platform_device *pdev)
2081435c5e25SMark Brown {
2082f0fba2adSLiam Girdwood 	struct snd_soc_card *card = platform_get_drvdata(pdev);
2083435c5e25SMark Brown 
208470a7ca34SVinod Koul 	/*
208570a7ca34SVinod Koul 	 * no card, so machine driver should be registering card
208670a7ca34SVinod Koul 	 * we should not be here in that case so ret error
208770a7ca34SVinod Koul 	 */
208870a7ca34SVinod Koul 	if (!card)
208970a7ca34SVinod Koul 		return -EINVAL;
209070a7ca34SVinod Koul 
2091fe4085e8SMark Brown 	dev_warn(&pdev->dev,
2092f110bfc7SLiam Girdwood 		 "ASoC: machine %s should use snd_soc_register_card()\n",
2093fe4085e8SMark Brown 		 card->name);
2094fe4085e8SMark Brown 
2095435c5e25SMark Brown 	/* Bodge while we unpick instantiation */
2096435c5e25SMark Brown 	card->dev = &pdev->dev;
2097f0fba2adSLiam Girdwood 
209828d528c8SMark Brown 	return snd_soc_register_card(card);
2099435c5e25SMark Brown }
2100435c5e25SMark Brown 
2101b0e26485SVinod Koul /* removes a socdev */
2102b0e26485SVinod Koul static int soc_remove(struct platform_device *pdev)
2103b0e26485SVinod Koul {
2104b0e26485SVinod Koul 	struct snd_soc_card *card = platform_get_drvdata(pdev);
2105b0e26485SVinod Koul 
2106c5af3a2eSMark Brown 	snd_soc_unregister_card(card);
2107db2a4165SFrank Mandarino 	return 0;
2108db2a4165SFrank Mandarino }
2109db2a4165SFrank Mandarino 
21106f8ab4acSMark Brown int snd_soc_poweroff(struct device *dev)
211151737470SMark Brown {
21126f8ab4acSMark Brown 	struct snd_soc_card *card = dev_get_drvdata(dev);
21131a497983SMengdong Lin 	struct snd_soc_pcm_runtime *rtd;
211451737470SMark Brown 
211551737470SMark Brown 	if (!card->instantiated)
2116416356fcSMark Brown 		return 0;
211751737470SMark Brown 
21182c7b696aSMarcel Ziswiler 	/*
21192c7b696aSMarcel Ziswiler 	 * Flush out pmdown_time work - we actually do want to run it
21202c7b696aSMarcel Ziswiler 	 * now, we're shutting down so no imminent restart.
21212c7b696aSMarcel Ziswiler 	 */
212265462e44SKuninori Morimoto 	snd_soc_flush_all_delayed_work(card);
212351737470SMark Brown 
2124f0fba2adSLiam Girdwood 	snd_soc_dapm_shutdown(card);
2125416356fcSMark Brown 
2126988e8cc4SNicolin Chen 	/* deactivate pins to sleep state */
2127bcb1fd1fSKuninori Morimoto 	for_each_card_rtds(card, rtd) {
212888bd870fSBenoit Cousson 		struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
21290b7990e3SKuninori Morimoto 		struct snd_soc_dai *codec_dai;
21301a497983SMengdong Lin 		int i;
213188bd870fSBenoit Cousson 
2132988e8cc4SNicolin Chen 		pinctrl_pm_select_sleep_state(cpu_dai->dev);
21330b7990e3SKuninori Morimoto 		for_each_rtd_codec_dai(rtd, i, codec_dai) {
213488bd870fSBenoit Cousson 			pinctrl_pm_select_sleep_state(codec_dai->dev);
213588bd870fSBenoit Cousson 		}
2136988e8cc4SNicolin Chen 	}
2137988e8cc4SNicolin Chen 
2138416356fcSMark Brown 	return 0;
213951737470SMark Brown }
21406f8ab4acSMark Brown EXPORT_SYMBOL_GPL(snd_soc_poweroff);
214151737470SMark Brown 
21426f8ab4acSMark Brown const struct dev_pm_ops snd_soc_pm_ops = {
2143b1dd5897SViresh Kumar 	.suspend = snd_soc_suspend,
2144b1dd5897SViresh Kumar 	.resume = snd_soc_resume,
2145b1dd5897SViresh Kumar 	.freeze = snd_soc_suspend,
2146b1dd5897SViresh Kumar 	.thaw = snd_soc_resume,
21476f8ab4acSMark Brown 	.poweroff = snd_soc_poweroff,
2148b1dd5897SViresh Kumar 	.restore = snd_soc_resume,
2149416356fcSMark Brown };
2150deb2607eSStephen Warren EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
2151416356fcSMark Brown 
2152db2a4165SFrank Mandarino /* ASoC platform driver */
2153db2a4165SFrank Mandarino static struct platform_driver soc_driver = {
2154db2a4165SFrank Mandarino 	.driver		= {
2155db2a4165SFrank Mandarino 		.name		= "soc-audio",
21566f8ab4acSMark Brown 		.pm		= &snd_soc_pm_ops,
2157db2a4165SFrank Mandarino 	},
2158db2a4165SFrank Mandarino 	.probe		= soc_probe,
2159db2a4165SFrank Mandarino 	.remove		= soc_remove,
2160db2a4165SFrank Mandarino };
2161db2a4165SFrank Mandarino 
2162096e49d5SMark Brown /**
2163db2a4165SFrank Mandarino  * snd_soc_cnew - create new control
2164db2a4165SFrank Mandarino  * @_template: control template
2165db2a4165SFrank Mandarino  * @data: control private data
2166ac11a2b3SMark Brown  * @long_name: control long name
2167efb7ac3fSMark Brown  * @prefix: control name prefix
2168db2a4165SFrank Mandarino  *
2169db2a4165SFrank Mandarino  * Create a new mixer control from a template control.
2170db2a4165SFrank Mandarino  *
2171db2a4165SFrank Mandarino  * Returns 0 for success, else error.
2172db2a4165SFrank Mandarino  */
2173db2a4165SFrank Mandarino struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
21743056557fSMark Brown 				  void *data, const char *long_name,
2175efb7ac3fSMark Brown 				  const char *prefix)
2176db2a4165SFrank Mandarino {
2177db2a4165SFrank Mandarino 	struct snd_kcontrol_new template;
2178efb7ac3fSMark Brown 	struct snd_kcontrol *kcontrol;
2179efb7ac3fSMark Brown 	char *name = NULL;
2180db2a4165SFrank Mandarino 
2181db2a4165SFrank Mandarino 	memcpy(&template, _template, sizeof(template));
2182db2a4165SFrank Mandarino 	template.index = 0;
2183db2a4165SFrank Mandarino 
2184efb7ac3fSMark Brown 	if (!long_name)
2185efb7ac3fSMark Brown 		long_name = template.name;
2186efb7ac3fSMark Brown 
2187efb7ac3fSMark Brown 	if (prefix) {
21882b581074SLars-Peter Clausen 		name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
2189efb7ac3fSMark Brown 		if (!name)
2190efb7ac3fSMark Brown 			return NULL;
2191efb7ac3fSMark Brown 
2192efb7ac3fSMark Brown 		template.name = name;
2193efb7ac3fSMark Brown 	} else {
2194efb7ac3fSMark Brown 		template.name = long_name;
2195efb7ac3fSMark Brown 	}
2196efb7ac3fSMark Brown 
2197efb7ac3fSMark Brown 	kcontrol = snd_ctl_new1(&template, data);
2198efb7ac3fSMark Brown 
2199efb7ac3fSMark Brown 	kfree(name);
2200efb7ac3fSMark Brown 
2201efb7ac3fSMark Brown 	return kcontrol;
2202db2a4165SFrank Mandarino }
2203db2a4165SFrank Mandarino EXPORT_SYMBOL_GPL(snd_soc_cnew);
2204db2a4165SFrank Mandarino 
2205022658beSLiam Girdwood static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2206022658beSLiam Girdwood 	const struct snd_kcontrol_new *controls, int num_controls,
2207022658beSLiam Girdwood 	const char *prefix, void *data)
2208022658beSLiam Girdwood {
2209022658beSLiam Girdwood 	int err, i;
2210022658beSLiam Girdwood 
2211022658beSLiam Girdwood 	for (i = 0; i < num_controls; i++) {
2212022658beSLiam Girdwood 		const struct snd_kcontrol_new *control = &controls[i];
22132c7b696aSMarcel Ziswiler 
2214022658beSLiam Girdwood 		err = snd_ctl_add(card, snd_soc_cnew(control, data,
2215022658beSLiam Girdwood 						     control->name, prefix));
2216022658beSLiam Girdwood 		if (err < 0) {
2217f110bfc7SLiam Girdwood 			dev_err(dev, "ASoC: Failed to add %s: %d\n",
2218f110bfc7SLiam Girdwood 				control->name, err);
2219022658beSLiam Girdwood 			return err;
2220022658beSLiam Girdwood 		}
2221022658beSLiam Girdwood 	}
2222022658beSLiam Girdwood 
2223022658beSLiam Girdwood 	return 0;
2224022658beSLiam Girdwood }
2225022658beSLiam Girdwood 
22264fefd698SDimitris Papastamos struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
22274fefd698SDimitris Papastamos 					       const char *name)
22284fefd698SDimitris Papastamos {
22294fefd698SDimitris Papastamos 	struct snd_card *card = soc_card->snd_card;
22304fefd698SDimitris Papastamos 	struct snd_kcontrol *kctl;
22314fefd698SDimitris Papastamos 
22324fefd698SDimitris Papastamos 	if (unlikely(!name))
22334fefd698SDimitris Papastamos 		return NULL;
22344fefd698SDimitris Papastamos 
22354fefd698SDimitris Papastamos 	list_for_each_entry(kctl, &card->controls, list)
22364fefd698SDimitris Papastamos 		if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
22374fefd698SDimitris Papastamos 			return kctl;
22384fefd698SDimitris Papastamos 	return NULL;
22394fefd698SDimitris Papastamos }
22404fefd698SDimitris Papastamos EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
22414fefd698SDimitris Papastamos 
2242db2a4165SFrank Mandarino /**
22430f2780adSLars-Peter Clausen  * snd_soc_add_component_controls - Add an array of controls to a component.
22440f2780adSLars-Peter Clausen  *
22450f2780adSLars-Peter Clausen  * @component: Component to add controls to
22460f2780adSLars-Peter Clausen  * @controls: Array of controls to add
22470f2780adSLars-Peter Clausen  * @num_controls: Number of elements in the array
22480f2780adSLars-Peter Clausen  *
22490f2780adSLars-Peter Clausen  * Return: 0 for success, else error.
22500f2780adSLars-Peter Clausen  */
22510f2780adSLars-Peter Clausen int snd_soc_add_component_controls(struct snd_soc_component *component,
22520f2780adSLars-Peter Clausen 	const struct snd_kcontrol_new *controls, unsigned int num_controls)
22530f2780adSLars-Peter Clausen {
22540f2780adSLars-Peter Clausen 	struct snd_card *card = component->card->snd_card;
22550f2780adSLars-Peter Clausen 
22560f2780adSLars-Peter Clausen 	return snd_soc_add_controls(card, component->dev, controls,
22570f2780adSLars-Peter Clausen 			num_controls, component->name_prefix, component);
22580f2780adSLars-Peter Clausen }
22590f2780adSLars-Peter Clausen EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
22600f2780adSLars-Peter Clausen 
22610f2780adSLars-Peter Clausen /**
2262022658beSLiam Girdwood  * snd_soc_add_card_controls - add an array of controls to a SoC card.
2263022658beSLiam Girdwood  * Convenience function to add a list of controls.
2264022658beSLiam Girdwood  *
2265022658beSLiam Girdwood  * @soc_card: SoC card to add controls to
2266022658beSLiam Girdwood  * @controls: array of controls to add
2267022658beSLiam Girdwood  * @num_controls: number of elements in the array
2268022658beSLiam Girdwood  *
2269022658beSLiam Girdwood  * Return 0 for success, else error.
2270022658beSLiam Girdwood  */
2271022658beSLiam Girdwood int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2272022658beSLiam Girdwood 	const struct snd_kcontrol_new *controls, int num_controls)
2273022658beSLiam Girdwood {
2274022658beSLiam Girdwood 	struct snd_card *card = soc_card->snd_card;
2275022658beSLiam Girdwood 
2276022658beSLiam Girdwood 	return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2277022658beSLiam Girdwood 			NULL, soc_card);
2278022658beSLiam Girdwood }
2279022658beSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2280022658beSLiam Girdwood 
2281022658beSLiam Girdwood /**
2282022658beSLiam Girdwood  * snd_soc_add_dai_controls - add an array of controls to a DAI.
2283022658beSLiam Girdwood  * Convienience function to add a list of controls.
2284022658beSLiam Girdwood  *
2285022658beSLiam Girdwood  * @dai: DAI to add controls to
2286022658beSLiam Girdwood  * @controls: array of controls to add
2287022658beSLiam Girdwood  * @num_controls: number of elements in the array
2288022658beSLiam Girdwood  *
2289022658beSLiam Girdwood  * Return 0 for success, else error.
2290022658beSLiam Girdwood  */
2291022658beSLiam Girdwood int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2292022658beSLiam Girdwood 	const struct snd_kcontrol_new *controls, int num_controls)
2293022658beSLiam Girdwood {
2294313665b9SLars-Peter Clausen 	struct snd_card *card = dai->component->card->snd_card;
2295022658beSLiam Girdwood 
2296022658beSLiam Girdwood 	return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2297022658beSLiam Girdwood 			NULL, dai);
2298022658beSLiam Girdwood }
2299022658beSLiam Girdwood EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2300022658beSLiam Girdwood 
2301c5af3a2eSMark Brown /**
2302c5af3a2eSMark Brown  * snd_soc_register_card - Register a card with the ASoC core
2303c5af3a2eSMark Brown  *
2304ac11a2b3SMark Brown  * @card: Card to register
2305c5af3a2eSMark Brown  *
2306c5af3a2eSMark Brown  */
230770a7ca34SVinod Koul int snd_soc_register_card(struct snd_soc_card *card)
2308c5af3a2eSMark Brown {
2309c5af3a2eSMark Brown 	if (!card->name || !card->dev)
2310c5af3a2eSMark Brown 		return -EINVAL;
2311c5af3a2eSMark Brown 
2312ed77cc12SMark Brown 	dev_set_drvdata(card->dev, card);
2313ed77cc12SMark Brown 
2314b03bfaecSKuninori Morimoto 	INIT_LIST_HEAD(&card->widgets);
2315b03bfaecSKuninori Morimoto 	INIT_LIST_HEAD(&card->paths);
2316b03bfaecSKuninori Morimoto 	INIT_LIST_HEAD(&card->dapm_list);
2317b03bfaecSKuninori Morimoto 	INIT_LIST_HEAD(&card->aux_comp_list);
2318b03bfaecSKuninori Morimoto 	INIT_LIST_HEAD(&card->component_dev_list);
2319b03bfaecSKuninori Morimoto 	INIT_LIST_HEAD(&card->list);
23201a497983SMengdong Lin 	INIT_LIST_HEAD(&card->rtd_list);
2321db432b41SMark Brown 	INIT_LIST_HEAD(&card->dapm_dirty);
23228a978234SLiam Girdwood 	INIT_LIST_HEAD(&card->dobj_list);
2323b03bfaecSKuninori Morimoto 
2324c5af3a2eSMark Brown 	card->instantiated = 0;
2325f0fba2adSLiam Girdwood 	mutex_init(&card->mutex);
2326a73fb2dfSLiam Girdwood 	mutex_init(&card->dapm_mutex);
232772b745e3SPeter Ujfalusi 	mutex_init(&card->pcm_mutex);
2328a9764869SKaiChieh Chuang 	spin_lock_init(&card->dpcm_lock);
2329c5af3a2eSMark Brown 
2330e894efefSSrinivas Kandagatla 	return snd_soc_bind_card(card);
2331c5af3a2eSMark Brown }
233270a7ca34SVinod Koul EXPORT_SYMBOL_GPL(snd_soc_register_card);
2333c5af3a2eSMark Brown 
2334c5af3a2eSMark Brown /**
2335c5af3a2eSMark Brown  * snd_soc_unregister_card - Unregister a card with the ASoC core
2336c5af3a2eSMark Brown  *
2337ac11a2b3SMark Brown  * @card: Card to unregister
2338c5af3a2eSMark Brown  *
2339c5af3a2eSMark Brown  */
234070a7ca34SVinod Koul int snd_soc_unregister_card(struct snd_soc_card *card)
2341c5af3a2eSMark Brown {
2342b545542aSKuninori Morimoto 	mutex_lock(&client_mutex);
2343e894efefSSrinivas Kandagatla 	snd_soc_unbind_card(card, true);
2344b545542aSKuninori Morimoto 	mutex_unlock(&client_mutex);
2345f110bfc7SLiam Girdwood 	dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
2346c5af3a2eSMark Brown 
2347c5af3a2eSMark Brown 	return 0;
2348c5af3a2eSMark Brown }
234970a7ca34SVinod Koul EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
2350c5af3a2eSMark Brown 
2351f0fba2adSLiam Girdwood /*
2352f0fba2adSLiam Girdwood  * Simplify DAI link configuration by removing ".-1" from device names
2353f0fba2adSLiam Girdwood  * and sanitizing names.
2354f0fba2adSLiam Girdwood  */
23550b9a214aSDimitris Papastamos static char *fmt_single_name(struct device *dev, int *id)
2356f0fba2adSLiam Girdwood {
2357f0fba2adSLiam Girdwood 	char *found, name[NAME_SIZE];
2358f0fba2adSLiam Girdwood 	int id1, id2;
2359f0fba2adSLiam Girdwood 
2360f0fba2adSLiam Girdwood 	if (dev_name(dev) == NULL)
2361f0fba2adSLiam Girdwood 		return NULL;
2362f0fba2adSLiam Girdwood 
236358818a77SDimitris Papastamos 	strlcpy(name, dev_name(dev), NAME_SIZE);
2364f0fba2adSLiam Girdwood 
2365f0fba2adSLiam Girdwood 	/* are we a "%s.%d" name (platform and SPI components) */
2366f0fba2adSLiam Girdwood 	found = strstr(name, dev->driver->name);
2367f0fba2adSLiam Girdwood 	if (found) {
2368f0fba2adSLiam Girdwood 		/* get ID */
2369f0fba2adSLiam Girdwood 		if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2370f0fba2adSLiam Girdwood 
2371f0fba2adSLiam Girdwood 			/* discard ID from name if ID == -1 */
2372f0fba2adSLiam Girdwood 			if (*id == -1)
2373f0fba2adSLiam Girdwood 				found[strlen(dev->driver->name)] = '\0';
2374f0fba2adSLiam Girdwood 		}
2375f0fba2adSLiam Girdwood 
2376f0fba2adSLiam Girdwood 	} else {
2377f0fba2adSLiam Girdwood 		/* I2C component devices are named "bus-addr" */
2378f0fba2adSLiam Girdwood 		if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2379f0fba2adSLiam Girdwood 			char tmp[NAME_SIZE];
2380f0fba2adSLiam Girdwood 
2381f0fba2adSLiam Girdwood 			/* create unique ID number from I2C addr and bus */
238205899446SJarkko Nikula 			*id = ((id1 & 0xffff) << 16) + id2;
2383f0fba2adSLiam Girdwood 
2384f0fba2adSLiam Girdwood 			/* sanitize component name for DAI link creation */
23852c7b696aSMarcel Ziswiler 			snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name,
23862c7b696aSMarcel Ziswiler 				 name);
238758818a77SDimitris Papastamos 			strlcpy(name, tmp, NAME_SIZE);
2388f0fba2adSLiam Girdwood 		} else
2389f0fba2adSLiam Girdwood 			*id = 0;
2390f0fba2adSLiam Girdwood 	}
2391f0fba2adSLiam Girdwood 
239250014499SKuninori Morimoto 	return devm_kstrdup(dev, name, GFP_KERNEL);
2393f0fba2adSLiam Girdwood }
2394f0fba2adSLiam Girdwood 
2395f0fba2adSLiam Girdwood /*
2396f0fba2adSLiam Girdwood  * Simplify DAI link naming for single devices with multiple DAIs by removing
2397f0fba2adSLiam Girdwood  * any ".-1" and using the DAI name (instead of device name).
2398f0fba2adSLiam Girdwood  */
2399f0fba2adSLiam Girdwood static inline char *fmt_multiple_name(struct device *dev,
2400f0fba2adSLiam Girdwood 		struct snd_soc_dai_driver *dai_drv)
2401f0fba2adSLiam Girdwood {
2402f0fba2adSLiam Girdwood 	if (dai_drv->name == NULL) {
240310e8aa9aSMichał Mirosław 		dev_err(dev,
240410e8aa9aSMichał Mirosław 			"ASoC: error - multiple DAI %s registered with no name\n",
240510e8aa9aSMichał Mirosław 			dev_name(dev));
2406f0fba2adSLiam Girdwood 		return NULL;
2407f0fba2adSLiam Girdwood 	}
2408f0fba2adSLiam Girdwood 
240950014499SKuninori Morimoto 	return devm_kstrdup(dev, dai_drv->name, GFP_KERNEL);
2410f0fba2adSLiam Girdwood }
2411f0fba2adSLiam Girdwood 
2412ffdbca0bSKuninori Morimoto void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2413e11381f3SKuninori Morimoto {
2414e11381f3SKuninori Morimoto 	dev_dbg(dai->dev, "ASoC: Unregistered DAI '%s'\n", dai->name);
2415e11381f3SKuninori Morimoto 	list_del(&dai->list);
2416e11381f3SKuninori Morimoto }
2417ffdbca0bSKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2418e11381f3SKuninori Morimoto 
24197ca24386SKuninori Morimoto /**
24207ca24386SKuninori Morimoto  * snd_soc_register_dai - Register a DAI dynamically & create its widgets
24217ca24386SKuninori Morimoto  *
24227ca24386SKuninori Morimoto  * @component: The component the DAIs are registered for
24237ca24386SKuninori Morimoto  * @dai_drv: DAI driver to use for the DAI
2424bc9a6655SRandy Dunlap  * @legacy_dai_naming: if %true, use legacy single-name format;
2425bc9a6655SRandy Dunlap  * 	if %false, use multiple-name format;
24267ca24386SKuninori Morimoto  *
24277ca24386SKuninori Morimoto  * Topology can use this API to register DAIs when probing a component.
24287ca24386SKuninori Morimoto  * These DAIs's widgets will be freed in the card cleanup and the DAIs
24297ca24386SKuninori Morimoto  * will be freed in the component cleanup.
24307ca24386SKuninori Morimoto  */
24317ca24386SKuninori Morimoto struct snd_soc_dai *snd_soc_register_dai(struct snd_soc_component *component,
24325e4fb372SMengdong Lin 					 struct snd_soc_dai_driver *dai_drv,
24335e4fb372SMengdong Lin 					 bool legacy_dai_naming)
24345e4fb372SMengdong Lin {
24355e4fb372SMengdong Lin 	struct device *dev = component->dev;
24365e4fb372SMengdong Lin 	struct snd_soc_dai *dai;
24375e4fb372SMengdong Lin 
24385e4fb372SMengdong Lin 	dev_dbg(dev, "ASoC: dynamically register DAI %s\n", dev_name(dev));
24395e4fb372SMengdong Lin 
24407ca24386SKuninori Morimoto 	lockdep_assert_held(&client_mutex);
24417ca24386SKuninori Morimoto 
244250014499SKuninori Morimoto 	dai = devm_kzalloc(dev, sizeof(*dai), GFP_KERNEL);
24435e4fb372SMengdong Lin 	if (dai == NULL)
24445e4fb372SMengdong Lin 		return NULL;
24455e4fb372SMengdong Lin 
24465e4fb372SMengdong Lin 	/*
24475e4fb372SMengdong Lin 	 * Back in the old days when we still had component-less DAIs,
24485e4fb372SMengdong Lin 	 * instead of having a static name, component-less DAIs would
24495e4fb372SMengdong Lin 	 * inherit the name of the parent device so it is possible to
24505e4fb372SMengdong Lin 	 * register multiple instances of the DAI. We still need to keep
24515e4fb372SMengdong Lin 	 * the same naming style even though those DAIs are not
24525e4fb372SMengdong Lin 	 * component-less anymore.
24535e4fb372SMengdong Lin 	 */
24545e4fb372SMengdong Lin 	if (legacy_dai_naming &&
24555e4fb372SMengdong Lin 	    (dai_drv->id == 0 || dai_drv->name == NULL)) {
24565e4fb372SMengdong Lin 		dai->name = fmt_single_name(dev, &dai->id);
24575e4fb372SMengdong Lin 	} else {
24585e4fb372SMengdong Lin 		dai->name = fmt_multiple_name(dev, dai_drv);
24595e4fb372SMengdong Lin 		if (dai_drv->id)
24605e4fb372SMengdong Lin 			dai->id = dai_drv->id;
24615e4fb372SMengdong Lin 		else
24625e4fb372SMengdong Lin 			dai->id = component->num_dai;
24635e4fb372SMengdong Lin 	}
246450014499SKuninori Morimoto 	if (!dai->name)
24655e4fb372SMengdong Lin 		return NULL;
24665e4fb372SMengdong Lin 
24675e4fb372SMengdong Lin 	dai->component = component;
24685e4fb372SMengdong Lin 	dai->dev = dev;
24695e4fb372SMengdong Lin 	dai->driver = dai_drv;
24705e4fb372SMengdong Lin 	if (!dai->driver->ops)
24715e4fb372SMengdong Lin 		dai->driver->ops = &null_dai_ops;
24725e4fb372SMengdong Lin 
247315a0c645SKuninori Morimoto 	/* see for_each_component_dais */
247458bf4179SKuninori Morimoto 	list_add_tail(&dai->list, &component->dai_list);
24755e4fb372SMengdong Lin 	component->num_dai++;
24765e4fb372SMengdong Lin 
24775e4fb372SMengdong Lin 	dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
24785e4fb372SMengdong Lin 	return dai;
24795e4fb372SMengdong Lin }
2480e11381f3SKuninori Morimoto 
24819115171aSMark Brown /**
24823f6674aeSKuninori Morimoto  * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
24833f6674aeSKuninori Morimoto  *
24843f6674aeSKuninori Morimoto  * @component: The component for which the DAIs should be unregistered
24853f6674aeSKuninori Morimoto  */
24863f6674aeSKuninori Morimoto static void snd_soc_unregister_dais(struct snd_soc_component *component)
24873f6674aeSKuninori Morimoto {
24883f6674aeSKuninori Morimoto 	struct snd_soc_dai *dai, *_dai;
24893f6674aeSKuninori Morimoto 
2490e11381f3SKuninori Morimoto 	for_each_component_dais_safe(component, dai, _dai)
2491e11381f3SKuninori Morimoto 		snd_soc_unregister_dai(dai);
24923f6674aeSKuninori Morimoto }
24933f6674aeSKuninori Morimoto 
24943f6674aeSKuninori Morimoto /**
2495daf77373SKuninori Morimoto  * snd_soc_register_dais - Register a DAI with the ASoC core
2496daf77373SKuninori Morimoto  *
2497daf77373SKuninori Morimoto  * @component: The component the DAIs are registered for
2498daf77373SKuninori Morimoto  * @dai_drv: DAI driver to use for the DAIs
2499daf77373SKuninori Morimoto  * @count: Number of DAIs
2500daf77373SKuninori Morimoto  */
2501daf77373SKuninori Morimoto static int snd_soc_register_dais(struct snd_soc_component *component,
2502daf77373SKuninori Morimoto 				 struct snd_soc_dai_driver *dai_drv,
2503daf77373SKuninori Morimoto 				 size_t count)
2504daf77373SKuninori Morimoto {
2505daf77373SKuninori Morimoto 	struct snd_soc_dai *dai;
2506daf77373SKuninori Morimoto 	unsigned int i;
2507daf77373SKuninori Morimoto 	int ret;
2508daf77373SKuninori Morimoto 
2509daf77373SKuninori Morimoto 	for (i = 0; i < count; i++) {
251071cb85f5SKuninori Morimoto 		dai = snd_soc_register_dai(component, dai_drv + i, count == 1 &&
2511daf77373SKuninori Morimoto 				  !component->driver->non_legacy_dai_naming);
2512daf77373SKuninori Morimoto 		if (dai == NULL) {
2513daf77373SKuninori Morimoto 			ret = -ENOMEM;
2514daf77373SKuninori Morimoto 			goto err;
2515daf77373SKuninori Morimoto 		}
2516daf77373SKuninori Morimoto 	}
2517daf77373SKuninori Morimoto 
2518daf77373SKuninori Morimoto 	return 0;
2519daf77373SKuninori Morimoto 
2520daf77373SKuninori Morimoto err:
2521daf77373SKuninori Morimoto 	snd_soc_unregister_dais(component);
2522daf77373SKuninori Morimoto 
2523daf77373SKuninori Morimoto 	return ret;
2524daf77373SKuninori Morimoto }
2525daf77373SKuninori Morimoto 
2526bb13109dSLars-Peter Clausen static int snd_soc_component_initialize(struct snd_soc_component *component,
2527bb13109dSLars-Peter Clausen 	const struct snd_soc_component_driver *driver, struct device *dev)
2528d191bd8dSKuninori Morimoto {
25298d92bb51SKuninori Morimoto 	INIT_LIST_HEAD(&component->dai_list);
2530495efdb0SKuninori Morimoto 	INIT_LIST_HEAD(&component->dobj_list);
2531495efdb0SKuninori Morimoto 	INIT_LIST_HEAD(&component->card_list);
25328d92bb51SKuninori Morimoto 	mutex_init(&component->io_mutex);
25338d92bb51SKuninori Morimoto 
2534bb13109dSLars-Peter Clausen 	component->name = fmt_single_name(dev, &component->id);
2535bb13109dSLars-Peter Clausen 	if (!component->name) {
2536bb13109dSLars-Peter Clausen 		dev_err(dev, "ASoC: Failed to allocate name\n");
2537d191bd8dSKuninori Morimoto 		return -ENOMEM;
2538d191bd8dSKuninori Morimoto 	}
2539d191bd8dSKuninori Morimoto 
2540bb13109dSLars-Peter Clausen 	component->dev = dev;
2541bb13109dSLars-Peter Clausen 	component->driver = driver;
2542e2c330b9SLars-Peter Clausen 
2543bb13109dSLars-Peter Clausen 	return 0;
2544d191bd8dSKuninori Morimoto }
2545d191bd8dSKuninori Morimoto 
254620feb881SLars-Peter Clausen static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
2547886f5692SLars-Peter Clausen {
2548886f5692SLars-Peter Clausen 	int val_bytes = regmap_get_val_bytes(component->regmap);
254920feb881SLars-Peter Clausen 
2550886f5692SLars-Peter Clausen 	/* Errors are legitimate for non-integer byte multiples */
2551886f5692SLars-Peter Clausen 	if (val_bytes > 0)
2552886f5692SLars-Peter Clausen 		component->val_bytes = val_bytes;
2553886f5692SLars-Peter Clausen }
255420feb881SLars-Peter Clausen 
2555e874bf5fSLars-Peter Clausen #ifdef CONFIG_REGMAP
2556e874bf5fSLars-Peter Clausen 
255720feb881SLars-Peter Clausen /**
25582c7b696aSMarcel Ziswiler  * snd_soc_component_init_regmap() - Initialize regmap instance for the
25592c7b696aSMarcel Ziswiler  *                                   component
256020feb881SLars-Peter Clausen  * @component: The component for which to initialize the regmap instance
256120feb881SLars-Peter Clausen  * @regmap: The regmap instance that should be used by the component
256220feb881SLars-Peter Clausen  *
256320feb881SLars-Peter Clausen  * This function allows deferred assignment of the regmap instance that is
256420feb881SLars-Peter Clausen  * associated with the component. Only use this if the regmap instance is not
256520feb881SLars-Peter Clausen  * yet ready when the component is registered. The function must also be called
256620feb881SLars-Peter Clausen  * before the first IO attempt of the component.
256720feb881SLars-Peter Clausen  */
256820feb881SLars-Peter Clausen void snd_soc_component_init_regmap(struct snd_soc_component *component,
256920feb881SLars-Peter Clausen 	struct regmap *regmap)
257020feb881SLars-Peter Clausen {
257120feb881SLars-Peter Clausen 	component->regmap = regmap;
257220feb881SLars-Peter Clausen 	snd_soc_component_setup_regmap(component);
2573886f5692SLars-Peter Clausen }
257420feb881SLars-Peter Clausen EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
257520feb881SLars-Peter Clausen 
257620feb881SLars-Peter Clausen /**
25772c7b696aSMarcel Ziswiler  * snd_soc_component_exit_regmap() - De-initialize regmap instance for the
25782c7b696aSMarcel Ziswiler  *                                   component
257920feb881SLars-Peter Clausen  * @component: The component for which to de-initialize the regmap instance
258020feb881SLars-Peter Clausen  *
258120feb881SLars-Peter Clausen  * Calls regmap_exit() on the regmap instance associated to the component and
258220feb881SLars-Peter Clausen  * removes the regmap instance from the component.
258320feb881SLars-Peter Clausen  *
258420feb881SLars-Peter Clausen  * This function should only be used if snd_soc_component_init_regmap() was used
258520feb881SLars-Peter Clausen  * to initialize the regmap instance.
258620feb881SLars-Peter Clausen  */
258720feb881SLars-Peter Clausen void snd_soc_component_exit_regmap(struct snd_soc_component *component)
258820feb881SLars-Peter Clausen {
258920feb881SLars-Peter Clausen 	regmap_exit(component->regmap);
259020feb881SLars-Peter Clausen 	component->regmap = NULL;
259120feb881SLars-Peter Clausen }
259220feb881SLars-Peter Clausen EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
2593886f5692SLars-Peter Clausen 
2594e874bf5fSLars-Peter Clausen #endif
2595d191bd8dSKuninori Morimoto 
2596273d778eSKuninori Morimoto #define ENDIANNESS_MAP(name) \
2597273d778eSKuninori Morimoto 	(SNDRV_PCM_FMTBIT_##name##LE | SNDRV_PCM_FMTBIT_##name##BE)
2598273d778eSKuninori Morimoto static u64 endianness_format_map[] = {
2599273d778eSKuninori Morimoto 	ENDIANNESS_MAP(S16_),
2600273d778eSKuninori Morimoto 	ENDIANNESS_MAP(U16_),
2601273d778eSKuninori Morimoto 	ENDIANNESS_MAP(S24_),
2602273d778eSKuninori Morimoto 	ENDIANNESS_MAP(U24_),
2603273d778eSKuninori Morimoto 	ENDIANNESS_MAP(S32_),
2604273d778eSKuninori Morimoto 	ENDIANNESS_MAP(U32_),
2605273d778eSKuninori Morimoto 	ENDIANNESS_MAP(S24_3),
2606273d778eSKuninori Morimoto 	ENDIANNESS_MAP(U24_3),
2607273d778eSKuninori Morimoto 	ENDIANNESS_MAP(S20_3),
2608273d778eSKuninori Morimoto 	ENDIANNESS_MAP(U20_3),
2609273d778eSKuninori Morimoto 	ENDIANNESS_MAP(S18_3),
2610273d778eSKuninori Morimoto 	ENDIANNESS_MAP(U18_3),
2611273d778eSKuninori Morimoto 	ENDIANNESS_MAP(FLOAT_),
2612273d778eSKuninori Morimoto 	ENDIANNESS_MAP(FLOAT64_),
2613273d778eSKuninori Morimoto 	ENDIANNESS_MAP(IEC958_SUBFRAME_),
2614273d778eSKuninori Morimoto };
2615273d778eSKuninori Morimoto 
2616273d778eSKuninori Morimoto /*
2617273d778eSKuninori Morimoto  * Fix up the DAI formats for endianness: codecs don't actually see
2618273d778eSKuninori Morimoto  * the endianness of the data but we're using the CPU format
2619273d778eSKuninori Morimoto  * definitions which do need to include endianness so we ensure that
2620273d778eSKuninori Morimoto  * codec DAIs always have both big and little endian variants set.
2621273d778eSKuninori Morimoto  */
2622273d778eSKuninori Morimoto static void convert_endianness_formats(struct snd_soc_pcm_stream *stream)
2623273d778eSKuninori Morimoto {
2624273d778eSKuninori Morimoto 	int i;
2625273d778eSKuninori Morimoto 
2626273d778eSKuninori Morimoto 	for (i = 0; i < ARRAY_SIZE(endianness_format_map); i++)
2627273d778eSKuninori Morimoto 		if (stream->formats & endianness_format_map[i])
2628273d778eSKuninori Morimoto 			stream->formats |= endianness_format_map[i];
2629273d778eSKuninori Morimoto }
2630273d778eSKuninori Morimoto 
2631e894efefSSrinivas Kandagatla static void snd_soc_try_rebind_card(void)
2632e894efefSSrinivas Kandagatla {
2633e894efefSSrinivas Kandagatla 	struct snd_soc_card *card, *c;
2634e894efefSSrinivas Kandagatla 
2635b245d273SKuninori Morimoto 	list_for_each_entry_safe(card, c, &unbind_card_list, list)
2636e894efefSSrinivas Kandagatla 		if (!snd_soc_bind_card(card))
2637e894efefSSrinivas Kandagatla 			list_del(&card->list);
2638e894efefSSrinivas Kandagatla }
2639e894efefSSrinivas Kandagatla 
2640486c7978SKuninori Morimoto static void snd_soc_del_component_unlocked(struct snd_soc_component *component)
2641486c7978SKuninori Morimoto {
2642b18768f5SKuninori Morimoto 	struct snd_soc_card *card = component->card;
2643b18768f5SKuninori Morimoto 
2644486c7978SKuninori Morimoto 	snd_soc_unregister_dais(component);
2645b18768f5SKuninori Morimoto 
2646b18768f5SKuninori Morimoto 	if (card)
2647b18768f5SKuninori Morimoto 		snd_soc_unbind_card(card, false);
2648b18768f5SKuninori Morimoto 
2649b18768f5SKuninori Morimoto 	list_del(&component->list);
2650486c7978SKuninori Morimoto }
2651486c7978SKuninori Morimoto 
2652e0dac41bSKuninori Morimoto int snd_soc_add_component(struct device *dev,
2653e0dac41bSKuninori Morimoto 			struct snd_soc_component *component,
2654cf9e829eSKuninori Morimoto 			const struct snd_soc_component_driver *component_driver,
2655d191bd8dSKuninori Morimoto 			struct snd_soc_dai_driver *dai_drv,
2656d191bd8dSKuninori Morimoto 			int num_dai)
2657d191bd8dSKuninori Morimoto {
2658bb13109dSLars-Peter Clausen 	int ret;
2659273d778eSKuninori Morimoto 	int i;
2660d191bd8dSKuninori Morimoto 
2661b18768f5SKuninori Morimoto 	mutex_lock(&client_mutex);
2662b18768f5SKuninori Morimoto 
2663cf9e829eSKuninori Morimoto 	ret = snd_soc_component_initialize(component, component_driver, dev);
2664bb13109dSLars-Peter Clausen 	if (ret)
2665bb13109dSLars-Peter Clausen 		goto err_free;
2666bb13109dSLars-Peter Clausen 
2667273d778eSKuninori Morimoto 	if (component_driver->endianness) {
2668273d778eSKuninori Morimoto 		for (i = 0; i < num_dai; i++) {
2669273d778eSKuninori Morimoto 			convert_endianness_formats(&dai_drv[i].playback);
2670273d778eSKuninori Morimoto 			convert_endianness_formats(&dai_drv[i].capture);
2671273d778eSKuninori Morimoto 		}
2672273d778eSKuninori Morimoto 	}
2673273d778eSKuninori Morimoto 
26740e7b25c6SKuninori Morimoto 	ret = snd_soc_register_dais(component, dai_drv, num_dai);
2675bb13109dSLars-Peter Clausen 	if (ret < 0) {
2676f42cf8d6SMasanari Iida 		dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
2677bb13109dSLars-Peter Clausen 		goto err_cleanup;
2678bb13109dSLars-Peter Clausen 	}
2679bb13109dSLars-Peter Clausen 
2680b18768f5SKuninori Morimoto 	if (!component->driver->write && !component->driver->read) {
2681b18768f5SKuninori Morimoto 		if (!component->regmap)
2682b18768f5SKuninori Morimoto 			component->regmap = dev_get_regmap(component->dev,
2683b18768f5SKuninori Morimoto 							   NULL);
2684b18768f5SKuninori Morimoto 		if (component->regmap)
2685b18768f5SKuninori Morimoto 			snd_soc_component_setup_regmap(component);
2686b18768f5SKuninori Morimoto 	}
2687bb13109dSLars-Peter Clausen 
2688b18768f5SKuninori Morimoto 	/* see for_each_component */
2689b18768f5SKuninori Morimoto 	list_add(&component->list, &component_list);
2690bb13109dSLars-Peter Clausen 
2691bb13109dSLars-Peter Clausen err_cleanup:
2692b18768f5SKuninori Morimoto 	if (ret < 0)
2693486c7978SKuninori Morimoto 		snd_soc_del_component_unlocked(component);
2694bb13109dSLars-Peter Clausen err_free:
2695b18768f5SKuninori Morimoto 	mutex_unlock(&client_mutex);
2696b18768f5SKuninori Morimoto 
2697b18768f5SKuninori Morimoto 	if (ret == 0)
2698b18768f5SKuninori Morimoto 		snd_soc_try_rebind_card();
2699b18768f5SKuninori Morimoto 
2700bb13109dSLars-Peter Clausen 	return ret;
2701d191bd8dSKuninori Morimoto }
2702e0dac41bSKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_add_component);
2703e0dac41bSKuninori Morimoto 
2704e0dac41bSKuninori Morimoto int snd_soc_register_component(struct device *dev,
2705e0dac41bSKuninori Morimoto 			const struct snd_soc_component_driver *component_driver,
2706e0dac41bSKuninori Morimoto 			struct snd_soc_dai_driver *dai_drv,
2707e0dac41bSKuninori Morimoto 			int num_dai)
2708e0dac41bSKuninori Morimoto {
2709e0dac41bSKuninori Morimoto 	struct snd_soc_component *component;
2710e0dac41bSKuninori Morimoto 
27117ecbd6a9SKuninori Morimoto 	component = devm_kzalloc(dev, sizeof(*component), GFP_KERNEL);
271208e61d03SKuninori Morimoto 	if (!component)
2713e0dac41bSKuninori Morimoto 		return -ENOMEM;
2714e0dac41bSKuninori Morimoto 
2715e0dac41bSKuninori Morimoto 	return snd_soc_add_component(dev, component, component_driver,
2716e0dac41bSKuninori Morimoto 				     dai_drv, num_dai);
2717e0dac41bSKuninori Morimoto }
2718d191bd8dSKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_register_component);
2719d191bd8dSKuninori Morimoto 
2720d191bd8dSKuninori Morimoto /**
27212eccea8cSKuninori Morimoto  * snd_soc_unregister_component - Unregister all related component
27222eccea8cSKuninori Morimoto  * from the ASoC core
2723d191bd8dSKuninori Morimoto  *
2724628536eaSJonathan Corbet  * @dev: The device to unregister
2725d191bd8dSKuninori Morimoto  */
27262eccea8cSKuninori Morimoto void snd_soc_unregister_component(struct device *dev)
27272eccea8cSKuninori Morimoto {
2728ac6a4dd3SKuninori Morimoto 	struct snd_soc_component *component;
2729ac6a4dd3SKuninori Morimoto 
2730ac6a4dd3SKuninori Morimoto 	mutex_lock(&client_mutex);
2731ac6a4dd3SKuninori Morimoto 	while (1) {
273218dd66eaSKuninori Morimoto 		component = snd_soc_lookup_component_nolocked(dev, NULL);
2733ac6a4dd3SKuninori Morimoto 		if (!component)
2734ac6a4dd3SKuninori Morimoto 			break;
2735ac6a4dd3SKuninori Morimoto 
2736ac6a4dd3SKuninori Morimoto 		snd_soc_del_component_unlocked(component);
2737ac6a4dd3SKuninori Morimoto 	}
2738ac6a4dd3SKuninori Morimoto 	mutex_unlock(&client_mutex);
2739d191bd8dSKuninori Morimoto }
2740d191bd8dSKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
2741d191bd8dSKuninori Morimoto 
2742bec4fa05SStephen Warren /* Retrieve a card's name from device tree */
2743b07609ceSKuninori Morimoto int snd_soc_of_parse_card_name(struct snd_soc_card *card,
2744bec4fa05SStephen Warren 			       const char *propname)
2745bec4fa05SStephen Warren {
2746b07609ceSKuninori Morimoto 	struct device_node *np;
2747bec4fa05SStephen Warren 	int ret;
2748bec4fa05SStephen Warren 
27497e07e7c0STushar Behera 	if (!card->dev) {
27507e07e7c0STushar Behera 		pr_err("card->dev is not set before calling %s\n", __func__);
27517e07e7c0STushar Behera 		return -EINVAL;
27527e07e7c0STushar Behera 	}
27537e07e7c0STushar Behera 
27547e07e7c0STushar Behera 	np = card->dev->of_node;
27557e07e7c0STushar Behera 
2756bec4fa05SStephen Warren 	ret = of_property_read_string_index(np, propname, 0, &card->name);
2757bec4fa05SStephen Warren 	/*
2758bec4fa05SStephen Warren 	 * EINVAL means the property does not exist. This is fine providing
2759bec4fa05SStephen Warren 	 * card->name was previously set, which is checked later in
2760bec4fa05SStephen Warren 	 * snd_soc_register_card.
2761bec4fa05SStephen Warren 	 */
2762bec4fa05SStephen Warren 	if (ret < 0 && ret != -EINVAL) {
2763bec4fa05SStephen Warren 		dev_err(card->dev,
2764f110bfc7SLiam Girdwood 			"ASoC: Property '%s' could not be read: %d\n",
2765bec4fa05SStephen Warren 			propname, ret);
2766bec4fa05SStephen Warren 		return ret;
2767bec4fa05SStephen Warren 	}
2768bec4fa05SStephen Warren 
2769bec4fa05SStephen Warren 	return 0;
2770bec4fa05SStephen Warren }
2771b07609ceSKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
2772bec4fa05SStephen Warren 
27739a6d4860SXiubo Li static const struct snd_soc_dapm_widget simple_widgets[] = {
27749a6d4860SXiubo Li 	SND_SOC_DAPM_MIC("Microphone", NULL),
27759a6d4860SXiubo Li 	SND_SOC_DAPM_LINE("Line", NULL),
27769a6d4860SXiubo Li 	SND_SOC_DAPM_HP("Headphone", NULL),
27779a6d4860SXiubo Li 	SND_SOC_DAPM_SPK("Speaker", NULL),
27789a6d4860SXiubo Li };
27799a6d4860SXiubo Li 
278021efde50SKuninori Morimoto int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
27819a6d4860SXiubo Li 					  const char *propname)
27829a6d4860SXiubo Li {
278321efde50SKuninori Morimoto 	struct device_node *np = card->dev->of_node;
27849a6d4860SXiubo Li 	struct snd_soc_dapm_widget *widgets;
27859a6d4860SXiubo Li 	const char *template, *wname;
27869a6d4860SXiubo Li 	int i, j, num_widgets, ret;
27879a6d4860SXiubo Li 
27889a6d4860SXiubo Li 	num_widgets = of_property_count_strings(np, propname);
27899a6d4860SXiubo Li 	if (num_widgets < 0) {
27909a6d4860SXiubo Li 		dev_err(card->dev,
27919a6d4860SXiubo Li 			"ASoC: Property '%s' does not exist\n",	propname);
27929a6d4860SXiubo Li 		return -EINVAL;
27939a6d4860SXiubo Li 	}
27949a6d4860SXiubo Li 	if (num_widgets & 1) {
27959a6d4860SXiubo Li 		dev_err(card->dev,
27969a6d4860SXiubo Li 			"ASoC: Property '%s' length is not even\n", propname);
27979a6d4860SXiubo Li 		return -EINVAL;
27989a6d4860SXiubo Li 	}
27999a6d4860SXiubo Li 
28009a6d4860SXiubo Li 	num_widgets /= 2;
28019a6d4860SXiubo Li 	if (!num_widgets) {
28029a6d4860SXiubo Li 		dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
28039a6d4860SXiubo Li 			propname);
28049a6d4860SXiubo Li 		return -EINVAL;
28059a6d4860SXiubo Li 	}
28069a6d4860SXiubo Li 
28079a6d4860SXiubo Li 	widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
28089a6d4860SXiubo Li 			       GFP_KERNEL);
28099a6d4860SXiubo Li 	if (!widgets) {
28109a6d4860SXiubo Li 		dev_err(card->dev,
28119a6d4860SXiubo Li 			"ASoC: Could not allocate memory for widgets\n");
28129a6d4860SXiubo Li 		return -ENOMEM;
28139a6d4860SXiubo Li 	}
28149a6d4860SXiubo Li 
28159a6d4860SXiubo Li 	for (i = 0; i < num_widgets; i++) {
28169a6d4860SXiubo Li 		ret = of_property_read_string_index(np, propname,
28179a6d4860SXiubo Li 			2 * i, &template);
28189a6d4860SXiubo Li 		if (ret) {
28199a6d4860SXiubo Li 			dev_err(card->dev,
28209a6d4860SXiubo Li 				"ASoC: Property '%s' index %d read error:%d\n",
28219a6d4860SXiubo Li 				propname, 2 * i, ret);
28229a6d4860SXiubo Li 			return -EINVAL;
28239a6d4860SXiubo Li 		}
28249a6d4860SXiubo Li 
28259a6d4860SXiubo Li 		for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
28269a6d4860SXiubo Li 			if (!strncmp(template, simple_widgets[j].name,
28279a6d4860SXiubo Li 				     strlen(simple_widgets[j].name))) {
28289a6d4860SXiubo Li 				widgets[i] = simple_widgets[j];
28299a6d4860SXiubo Li 				break;
28309a6d4860SXiubo Li 			}
28319a6d4860SXiubo Li 		}
28329a6d4860SXiubo Li 
28339a6d4860SXiubo Li 		if (j >= ARRAY_SIZE(simple_widgets)) {
28349a6d4860SXiubo Li 			dev_err(card->dev,
28359a6d4860SXiubo Li 				"ASoC: DAPM widget '%s' is not supported\n",
28369a6d4860SXiubo Li 				template);
28379a6d4860SXiubo Li 			return -EINVAL;
28389a6d4860SXiubo Li 		}
28399a6d4860SXiubo Li 
28409a6d4860SXiubo Li 		ret = of_property_read_string_index(np, propname,
28419a6d4860SXiubo Li 						    (2 * i) + 1,
28429a6d4860SXiubo Li 						    &wname);
28439a6d4860SXiubo Li 		if (ret) {
28449a6d4860SXiubo Li 			dev_err(card->dev,
28459a6d4860SXiubo Li 				"ASoC: Property '%s' index %d read error:%d\n",
28469a6d4860SXiubo Li 				propname, (2 * i) + 1, ret);
28479a6d4860SXiubo Li 			return -EINVAL;
28489a6d4860SXiubo Li 		}
28499a6d4860SXiubo Li 
28509a6d4860SXiubo Li 		widgets[i].name = wname;
28519a6d4860SXiubo Li 	}
28529a6d4860SXiubo Li 
2853f23e860eSNicolin Chen 	card->of_dapm_widgets = widgets;
2854f23e860eSNicolin Chen 	card->num_of_dapm_widgets = num_widgets;
28559a6d4860SXiubo Li 
28569a6d4860SXiubo Li 	return 0;
28579a6d4860SXiubo Li }
285821efde50SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
28599a6d4860SXiubo Li 
2860cbdfab3bSJerome Brunet int snd_soc_of_get_slot_mask(struct device_node *np,
28616131084aSJyri Sarha 			     const char *prop_name,
28626131084aSJyri Sarha 			     unsigned int *mask)
28636131084aSJyri Sarha {
28646131084aSJyri Sarha 	u32 val;
28656c84e591SJyri Sarha 	const __be32 *of_slot_mask = of_get_property(np, prop_name, &val);
28666131084aSJyri Sarha 	int i;
28676131084aSJyri Sarha 
28686131084aSJyri Sarha 	if (!of_slot_mask)
28696131084aSJyri Sarha 		return 0;
28706131084aSJyri Sarha 	val /= sizeof(u32);
28716131084aSJyri Sarha 	for (i = 0; i < val; i++)
28726131084aSJyri Sarha 		if (be32_to_cpup(&of_slot_mask[i]))
28736131084aSJyri Sarha 			*mask |= (1 << i);
28746131084aSJyri Sarha 
28756131084aSJyri Sarha 	return val;
28766131084aSJyri Sarha }
2877cbdfab3bSJerome Brunet EXPORT_SYMBOL_GPL(snd_soc_of_get_slot_mask);
28786131084aSJyri Sarha 
287989c67857SXiubo Li int snd_soc_of_parse_tdm_slot(struct device_node *np,
28806131084aSJyri Sarha 			      unsigned int *tx_mask,
28816131084aSJyri Sarha 			      unsigned int *rx_mask,
288289c67857SXiubo Li 			      unsigned int *slots,
288389c67857SXiubo Li 			      unsigned int *slot_width)
288489c67857SXiubo Li {
288589c67857SXiubo Li 	u32 val;
288689c67857SXiubo Li 	int ret;
288789c67857SXiubo Li 
28886131084aSJyri Sarha 	if (tx_mask)
28896131084aSJyri Sarha 		snd_soc_of_get_slot_mask(np, "dai-tdm-slot-tx-mask", tx_mask);
28906131084aSJyri Sarha 	if (rx_mask)
28916131084aSJyri Sarha 		snd_soc_of_get_slot_mask(np, "dai-tdm-slot-rx-mask", rx_mask);
28926131084aSJyri Sarha 
289389c67857SXiubo Li 	if (of_property_read_bool(np, "dai-tdm-slot-num")) {
289489c67857SXiubo Li 		ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
289589c67857SXiubo Li 		if (ret)
289689c67857SXiubo Li 			return ret;
289789c67857SXiubo Li 
289889c67857SXiubo Li 		if (slots)
289989c67857SXiubo Li 			*slots = val;
290089c67857SXiubo Li 	}
290189c67857SXiubo Li 
290289c67857SXiubo Li 	if (of_property_read_bool(np, "dai-tdm-slot-width")) {
290389c67857SXiubo Li 		ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
290489c67857SXiubo Li 		if (ret)
290589c67857SXiubo Li 			return ret;
290689c67857SXiubo Li 
290789c67857SXiubo Li 		if (slot_width)
290889c67857SXiubo Li 			*slot_width = val;
290989c67857SXiubo Li 	}
291089c67857SXiubo Li 
291189c67857SXiubo Li 	return 0;
291289c67857SXiubo Li }
291389c67857SXiubo Li EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
291489c67857SXiubo Li 
29153b710356SKuninori Morimoto void snd_soc_of_parse_node_prefix(struct device_node *np,
29165e3cdaa2SKuninori Morimoto 				  struct snd_soc_codec_conf *codec_conf,
29175e3cdaa2SKuninori Morimoto 				  struct device_node *of_node,
29185e3cdaa2SKuninori Morimoto 				  const char *propname)
29195e3cdaa2SKuninori Morimoto {
29205e3cdaa2SKuninori Morimoto 	const char *str;
29215e3cdaa2SKuninori Morimoto 	int ret;
29225e3cdaa2SKuninori Morimoto 
29235e3cdaa2SKuninori Morimoto 	ret = of_property_read_string(np, propname, &str);
29245e3cdaa2SKuninori Morimoto 	if (ret < 0) {
29255e3cdaa2SKuninori Morimoto 		/* no prefix is not error */
29265e3cdaa2SKuninori Morimoto 		return;
29275e3cdaa2SKuninori Morimoto 	}
29285e3cdaa2SKuninori Morimoto 
29295e3cdaa2SKuninori Morimoto 	codec_conf->of_node	= of_node;
29305e3cdaa2SKuninori Morimoto 	codec_conf->name_prefix	= str;
29315e3cdaa2SKuninori Morimoto }
29323b710356SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_of_parse_node_prefix);
29335e3cdaa2SKuninori Morimoto 
29342bc644afSKuninori Morimoto int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
2935a4a54dd5SStephen Warren 				   const char *propname)
2936a4a54dd5SStephen Warren {
29372bc644afSKuninori Morimoto 	struct device_node *np = card->dev->of_node;
2938e3b1e6a1SMark Brown 	int num_routes;
2939a4a54dd5SStephen Warren 	struct snd_soc_dapm_route *routes;
2940a4a54dd5SStephen Warren 	int i, ret;
2941a4a54dd5SStephen Warren 
2942a4a54dd5SStephen Warren 	num_routes = of_property_count_strings(np, propname);
2943c34ce320SRichard Zhao 	if (num_routes < 0 || num_routes & 1) {
294410e8aa9aSMichał Mirosław 		dev_err(card->dev,
294510e8aa9aSMichał Mirosław 			"ASoC: Property '%s' does not exist or its length is not even\n",
294610e8aa9aSMichał Mirosław 			propname);
2947a4a54dd5SStephen Warren 		return -EINVAL;
2948a4a54dd5SStephen Warren 	}
2949a4a54dd5SStephen Warren 	num_routes /= 2;
2950a4a54dd5SStephen Warren 	if (!num_routes) {
2951f110bfc7SLiam Girdwood 		dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
2952a4a54dd5SStephen Warren 			propname);
2953a4a54dd5SStephen Warren 		return -EINVAL;
2954a4a54dd5SStephen Warren 	}
2955a4a54dd5SStephen Warren 
2956a86854d0SKees Cook 	routes = devm_kcalloc(card->dev, num_routes, sizeof(*routes),
2957a4a54dd5SStephen Warren 			      GFP_KERNEL);
2958a4a54dd5SStephen Warren 	if (!routes) {
2959a4a54dd5SStephen Warren 		dev_err(card->dev,
2960f110bfc7SLiam Girdwood 			"ASoC: Could not allocate DAPM route table\n");
2961a4a54dd5SStephen Warren 		return -EINVAL;
2962a4a54dd5SStephen Warren 	}
2963a4a54dd5SStephen Warren 
2964a4a54dd5SStephen Warren 	for (i = 0; i < num_routes; i++) {
2965a4a54dd5SStephen Warren 		ret = of_property_read_string_index(np, propname,
2966e3b1e6a1SMark Brown 			2 * i, &routes[i].sink);
2967a4a54dd5SStephen Warren 		if (ret) {
2968c871bd0bSMark Brown 			dev_err(card->dev,
2969c871bd0bSMark Brown 				"ASoC: Property '%s' index %d could not be read: %d\n",
2970c871bd0bSMark Brown 				propname, 2 * i, ret);
2971a4a54dd5SStephen Warren 			return -EINVAL;
2972a4a54dd5SStephen Warren 		}
2973a4a54dd5SStephen Warren 		ret = of_property_read_string_index(np, propname,
2974e3b1e6a1SMark Brown 			(2 * i) + 1, &routes[i].source);
2975a4a54dd5SStephen Warren 		if (ret) {
2976a4a54dd5SStephen Warren 			dev_err(card->dev,
2977c871bd0bSMark Brown 				"ASoC: Property '%s' index %d could not be read: %d\n",
2978c871bd0bSMark Brown 				propname, (2 * i) + 1, ret);
2979a4a54dd5SStephen Warren 			return -EINVAL;
2980a4a54dd5SStephen Warren 		}
2981a4a54dd5SStephen Warren 	}
2982a4a54dd5SStephen Warren 
2983f23e860eSNicolin Chen 	card->num_of_dapm_routes = num_routes;
2984f23e860eSNicolin Chen 	card->of_dapm_routes = routes;
2985a4a54dd5SStephen Warren 
2986a4a54dd5SStephen Warren 	return 0;
2987a4a54dd5SStephen Warren }
29882bc644afSKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
2989a4a54dd5SStephen Warren 
2990a7930ed4SKuninori Morimoto unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
2991389cb834SJyri Sarha 				     const char *prefix,
2992389cb834SJyri Sarha 				     struct device_node **bitclkmaster,
2993389cb834SJyri Sarha 				     struct device_node **framemaster)
2994a7930ed4SKuninori Morimoto {
2995a7930ed4SKuninori Morimoto 	int ret, i;
2996a7930ed4SKuninori Morimoto 	char prop[128];
2997a7930ed4SKuninori Morimoto 	unsigned int format = 0;
2998a7930ed4SKuninori Morimoto 	int bit, frame;
2999a7930ed4SKuninori Morimoto 	const char *str;
3000a7930ed4SKuninori Morimoto 	struct {
3001a7930ed4SKuninori Morimoto 		char *name;
3002a7930ed4SKuninori Morimoto 		unsigned int val;
3003a7930ed4SKuninori Morimoto 	} of_fmt_table[] = {
3004a7930ed4SKuninori Morimoto 		{ "i2s",	SND_SOC_DAIFMT_I2S },
3005a7930ed4SKuninori Morimoto 		{ "right_j",	SND_SOC_DAIFMT_RIGHT_J },
3006a7930ed4SKuninori Morimoto 		{ "left_j",	SND_SOC_DAIFMT_LEFT_J },
3007a7930ed4SKuninori Morimoto 		{ "dsp_a",	SND_SOC_DAIFMT_DSP_A },
3008a7930ed4SKuninori Morimoto 		{ "dsp_b",	SND_SOC_DAIFMT_DSP_B },
3009a7930ed4SKuninori Morimoto 		{ "ac97",	SND_SOC_DAIFMT_AC97 },
3010a7930ed4SKuninori Morimoto 		{ "pdm",	SND_SOC_DAIFMT_PDM},
3011a7930ed4SKuninori Morimoto 		{ "msb",	SND_SOC_DAIFMT_MSB },
3012a7930ed4SKuninori Morimoto 		{ "lsb",	SND_SOC_DAIFMT_LSB },
3013a7930ed4SKuninori Morimoto 	};
3014a7930ed4SKuninori Morimoto 
3015a7930ed4SKuninori Morimoto 	if (!prefix)
3016a7930ed4SKuninori Morimoto 		prefix = "";
3017a7930ed4SKuninori Morimoto 
3018a7930ed4SKuninori Morimoto 	/*
30195711c979SKuninori Morimoto 	 * check "dai-format = xxx"
30205711c979SKuninori Morimoto 	 * or    "[prefix]format = xxx"
3021a7930ed4SKuninori Morimoto 	 * SND_SOC_DAIFMT_FORMAT_MASK area
3022a7930ed4SKuninori Morimoto 	 */
30235711c979SKuninori Morimoto 	ret = of_property_read_string(np, "dai-format", &str);
30245711c979SKuninori Morimoto 	if (ret < 0) {
3025a7930ed4SKuninori Morimoto 		snprintf(prop, sizeof(prop), "%sformat", prefix);
3026a7930ed4SKuninori Morimoto 		ret = of_property_read_string(np, prop, &str);
30275711c979SKuninori Morimoto 	}
3028a7930ed4SKuninori Morimoto 	if (ret == 0) {
3029a7930ed4SKuninori Morimoto 		for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3030a7930ed4SKuninori Morimoto 			if (strcmp(str, of_fmt_table[i].name) == 0) {
3031a7930ed4SKuninori Morimoto 				format |= of_fmt_table[i].val;
3032a7930ed4SKuninori Morimoto 				break;
3033a7930ed4SKuninori Morimoto 			}
3034a7930ed4SKuninori Morimoto 		}
3035a7930ed4SKuninori Morimoto 	}
3036a7930ed4SKuninori Morimoto 
3037a7930ed4SKuninori Morimoto 	/*
30388c2d6a9fSKuninori Morimoto 	 * check "[prefix]continuous-clock"
3039a7930ed4SKuninori Morimoto 	 * SND_SOC_DAIFMT_CLOCK_MASK area
3040a7930ed4SKuninori Morimoto 	 */
30418c2d6a9fSKuninori Morimoto 	snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
304251930295SJulia Lawall 	if (of_property_read_bool(np, prop))
30438c2d6a9fSKuninori Morimoto 		format |= SND_SOC_DAIFMT_CONT;
30448c2d6a9fSKuninori Morimoto 	else
30458c2d6a9fSKuninori Morimoto 		format |= SND_SOC_DAIFMT_GATED;
3046a7930ed4SKuninori Morimoto 
3047a7930ed4SKuninori Morimoto 	/*
3048a7930ed4SKuninori Morimoto 	 * check "[prefix]bitclock-inversion"
3049a7930ed4SKuninori Morimoto 	 * check "[prefix]frame-inversion"
3050a7930ed4SKuninori Morimoto 	 * SND_SOC_DAIFMT_INV_MASK area
3051a7930ed4SKuninori Morimoto 	 */
3052a7930ed4SKuninori Morimoto 	snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3053a7930ed4SKuninori Morimoto 	bit = !!of_get_property(np, prop, NULL);
3054a7930ed4SKuninori Morimoto 
3055a7930ed4SKuninori Morimoto 	snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3056a7930ed4SKuninori Morimoto 	frame = !!of_get_property(np, prop, NULL);
3057a7930ed4SKuninori Morimoto 
3058a7930ed4SKuninori Morimoto 	switch ((bit << 4) + frame) {
3059a7930ed4SKuninori Morimoto 	case 0x11:
3060a7930ed4SKuninori Morimoto 		format |= SND_SOC_DAIFMT_IB_IF;
3061a7930ed4SKuninori Morimoto 		break;
3062a7930ed4SKuninori Morimoto 	case 0x10:
3063a7930ed4SKuninori Morimoto 		format |= SND_SOC_DAIFMT_IB_NF;
3064a7930ed4SKuninori Morimoto 		break;
3065a7930ed4SKuninori Morimoto 	case 0x01:
3066a7930ed4SKuninori Morimoto 		format |= SND_SOC_DAIFMT_NB_IF;
3067a7930ed4SKuninori Morimoto 		break;
3068a7930ed4SKuninori Morimoto 	default:
3069a7930ed4SKuninori Morimoto 		/* SND_SOC_DAIFMT_NB_NF is default */
3070a7930ed4SKuninori Morimoto 		break;
3071a7930ed4SKuninori Morimoto 	}
3072a7930ed4SKuninori Morimoto 
3073a7930ed4SKuninori Morimoto 	/*
3074a7930ed4SKuninori Morimoto 	 * check "[prefix]bitclock-master"
3075a7930ed4SKuninori Morimoto 	 * check "[prefix]frame-master"
3076a7930ed4SKuninori Morimoto 	 * SND_SOC_DAIFMT_MASTER_MASK area
3077a7930ed4SKuninori Morimoto 	 */
3078a7930ed4SKuninori Morimoto 	snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3079a7930ed4SKuninori Morimoto 	bit = !!of_get_property(np, prop, NULL);
3080389cb834SJyri Sarha 	if (bit && bitclkmaster)
3081389cb834SJyri Sarha 		*bitclkmaster = of_parse_phandle(np, prop, 0);
3082a7930ed4SKuninori Morimoto 
3083a7930ed4SKuninori Morimoto 	snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3084a7930ed4SKuninori Morimoto 	frame = !!of_get_property(np, prop, NULL);
3085389cb834SJyri Sarha 	if (frame && framemaster)
3086389cb834SJyri Sarha 		*framemaster = of_parse_phandle(np, prop, 0);
3087a7930ed4SKuninori Morimoto 
3088a7930ed4SKuninori Morimoto 	switch ((bit << 4) + frame) {
3089a7930ed4SKuninori Morimoto 	case 0x11:
3090a7930ed4SKuninori Morimoto 		format |= SND_SOC_DAIFMT_CBM_CFM;
3091a7930ed4SKuninori Morimoto 		break;
3092a7930ed4SKuninori Morimoto 	case 0x10:
3093a7930ed4SKuninori Morimoto 		format |= SND_SOC_DAIFMT_CBM_CFS;
3094a7930ed4SKuninori Morimoto 		break;
3095a7930ed4SKuninori Morimoto 	case 0x01:
3096a7930ed4SKuninori Morimoto 		format |= SND_SOC_DAIFMT_CBS_CFM;
3097a7930ed4SKuninori Morimoto 		break;
3098a7930ed4SKuninori Morimoto 	default:
3099a7930ed4SKuninori Morimoto 		format |= SND_SOC_DAIFMT_CBS_CFS;
3100a7930ed4SKuninori Morimoto 		break;
3101a7930ed4SKuninori Morimoto 	}
3102a7930ed4SKuninori Morimoto 
3103a7930ed4SKuninori Morimoto 	return format;
3104a7930ed4SKuninori Morimoto }
3105a7930ed4SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3106a7930ed4SKuninori Morimoto 
3107a180e8b9SKuninori Morimoto int snd_soc_get_dai_id(struct device_node *ep)
3108a180e8b9SKuninori Morimoto {
310909d4cc03SKuninori Morimoto 	struct snd_soc_component *component;
3110c1e230f0SKuninori Morimoto 	struct snd_soc_dai_link_component dlc;
3111a180e8b9SKuninori Morimoto 	int ret;
3112a180e8b9SKuninori Morimoto 
3113c1e230f0SKuninori Morimoto 	dlc.of_node	= of_graph_get_port_parent(ep);
3114c1e230f0SKuninori Morimoto 	dlc.name	= NULL;
3115a180e8b9SKuninori Morimoto 	/*
3116a180e8b9SKuninori Morimoto 	 * For example HDMI case, HDMI has video/sound port,
3117a180e8b9SKuninori Morimoto 	 * but ALSA SoC needs sound port number only.
3118a180e8b9SKuninori Morimoto 	 * Thus counting HDMI DT port/endpoint doesn't work.
3119a180e8b9SKuninori Morimoto 	 * Then, it should have .of_xlate_dai_id
3120a180e8b9SKuninori Morimoto 	 */
3121a180e8b9SKuninori Morimoto 	ret = -ENOTSUPP;
3122a180e8b9SKuninori Morimoto 	mutex_lock(&client_mutex);
3123c1e230f0SKuninori Morimoto 	component = soc_find_component(&dlc);
31242c7b1704SKuninori Morimoto 	if (component)
31252c7b1704SKuninori Morimoto 		ret = snd_soc_component_of_xlate_dai_id(component, ep);
3126a180e8b9SKuninori Morimoto 	mutex_unlock(&client_mutex);
3127a180e8b9SKuninori Morimoto 
3128c1e230f0SKuninori Morimoto 	of_node_put(dlc.of_node);
3129c0a480d1STony Lindgren 
3130a180e8b9SKuninori Morimoto 	return ret;
3131a180e8b9SKuninori Morimoto }
3132a180e8b9SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_get_dai_id);
3133a180e8b9SKuninori Morimoto 
31341ad8ec53SKuninori Morimoto int snd_soc_get_dai_name(struct of_phandle_args *args,
3135cb470087SKuninori Morimoto 				const char **dai_name)
3136cb470087SKuninori Morimoto {
3137cb470087SKuninori Morimoto 	struct snd_soc_component *pos;
31383e0aa8d8SJyri Sarha 	struct device_node *component_of_node;
313993b0f3eeSJean-Francois Moine 	int ret = -EPROBE_DEFER;
3140cb470087SKuninori Morimoto 
3141cb470087SKuninori Morimoto 	mutex_lock(&client_mutex);
3142368dee94SKuninori Morimoto 	for_each_component(pos) {
3143c0834440SKuninori Morimoto 		component_of_node = soc_component_to_node(pos);
31443e0aa8d8SJyri Sarha 
31453e0aa8d8SJyri Sarha 		if (component_of_node != args->np)
3146cb470087SKuninori Morimoto 			continue;
3147cb470087SKuninori Morimoto 
3148a2a34175SKuninori Morimoto 		ret = snd_soc_component_of_xlate_dai_name(pos, args, dai_name);
3149a2a34175SKuninori Morimoto 		if (ret == -ENOTSUPP) {
315058bf4179SKuninori Morimoto 			struct snd_soc_dai *dai;
31516833c452SKuninori Morimoto 			int id = -1;
31526833c452SKuninori Morimoto 
315393b0f3eeSJean-Francois Moine 			switch (args->args_count) {
31546833c452SKuninori Morimoto 			case 0:
31556833c452SKuninori Morimoto 				id = 0; /* same as dai_drv[0] */
31566833c452SKuninori Morimoto 				break;
31576833c452SKuninori Morimoto 			case 1:
315893b0f3eeSJean-Francois Moine 				id = args->args[0];
31596833c452SKuninori Morimoto 				break;
31606833c452SKuninori Morimoto 			default:
31616833c452SKuninori Morimoto 				/* not supported */
3162cb470087SKuninori Morimoto 				break;
3163cb470087SKuninori Morimoto 			}
3164cb470087SKuninori Morimoto 
31656833c452SKuninori Morimoto 			if (id < 0 || id >= pos->num_dai) {
31666833c452SKuninori Morimoto 				ret = -EINVAL;
31673dcba280SNicolin Chen 				continue;
31686833c452SKuninori Morimoto 			}
3169e41975edSXiubo Li 
3170e41975edSXiubo Li 			ret = 0;
3171e41975edSXiubo Li 
317258bf4179SKuninori Morimoto 			/* find target DAI */
317315a0c645SKuninori Morimoto 			for_each_component_dais(pos, dai) {
317458bf4179SKuninori Morimoto 				if (id == 0)
317558bf4179SKuninori Morimoto 					break;
317658bf4179SKuninori Morimoto 				id--;
317758bf4179SKuninori Morimoto 			}
317858bf4179SKuninori Morimoto 
317958bf4179SKuninori Morimoto 			*dai_name = dai->driver->name;
3180e41975edSXiubo Li 			if (!*dai_name)
3181e41975edSXiubo Li 				*dai_name = pos->name;
31826833c452SKuninori Morimoto 		}
31836833c452SKuninori Morimoto 
3184cb470087SKuninori Morimoto 		break;
3185cb470087SKuninori Morimoto 	}
3186cb470087SKuninori Morimoto 	mutex_unlock(&client_mutex);
318793b0f3eeSJean-Francois Moine 	return ret;
318893b0f3eeSJean-Francois Moine }
31891ad8ec53SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_get_dai_name);
319093b0f3eeSJean-Francois Moine 
319193b0f3eeSJean-Francois Moine int snd_soc_of_get_dai_name(struct device_node *of_node,
319293b0f3eeSJean-Francois Moine 			    const char **dai_name)
319393b0f3eeSJean-Francois Moine {
319493b0f3eeSJean-Francois Moine 	struct of_phandle_args args;
319593b0f3eeSJean-Francois Moine 	int ret;
319693b0f3eeSJean-Francois Moine 
319793b0f3eeSJean-Francois Moine 	ret = of_parse_phandle_with_args(of_node, "sound-dai",
319893b0f3eeSJean-Francois Moine 					 "#sound-dai-cells", 0, &args);
319993b0f3eeSJean-Francois Moine 	if (ret)
320093b0f3eeSJean-Francois Moine 		return ret;
320193b0f3eeSJean-Francois Moine 
320293b0f3eeSJean-Francois Moine 	ret = snd_soc_get_dai_name(&args, dai_name);
3203cb470087SKuninori Morimoto 
3204cb470087SKuninori Morimoto 	of_node_put(args.np);
3205cb470087SKuninori Morimoto 
3206cb470087SKuninori Morimoto 	return ret;
3207cb470087SKuninori Morimoto }
3208cb470087SKuninori Morimoto EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3209cb470087SKuninori Morimoto 
321093b0f3eeSJean-Francois Moine /*
321194685763SSylwester Nawrocki  * snd_soc_of_put_dai_link_codecs - Dereference device nodes in the codecs array
321294685763SSylwester Nawrocki  * @dai_link: DAI link
321394685763SSylwester Nawrocki  *
321494685763SSylwester Nawrocki  * Dereference device nodes acquired by snd_soc_of_get_dai_link_codecs().
321594685763SSylwester Nawrocki  */
321694685763SSylwester Nawrocki void snd_soc_of_put_dai_link_codecs(struct snd_soc_dai_link *dai_link)
321794685763SSylwester Nawrocki {
32183db769f1SKuninori Morimoto 	struct snd_soc_dai_link_component *component;
321994685763SSylwester Nawrocki 	int index;
322094685763SSylwester Nawrocki 
32213db769f1SKuninori Morimoto 	for_each_link_codecs(dai_link, index, component) {
322294685763SSylwester Nawrocki 		if (!component->of_node)
322394685763SSylwester Nawrocki 			break;
322494685763SSylwester Nawrocki 		of_node_put(component->of_node);
322594685763SSylwester Nawrocki 		component->of_node = NULL;
322694685763SSylwester Nawrocki 	}
322794685763SSylwester Nawrocki }
322894685763SSylwester Nawrocki EXPORT_SYMBOL_GPL(snd_soc_of_put_dai_link_codecs);
322994685763SSylwester Nawrocki 
323094685763SSylwester Nawrocki /*
323193b0f3eeSJean-Francois Moine  * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
323293b0f3eeSJean-Francois Moine  * @dev: Card device
323393b0f3eeSJean-Francois Moine  * @of_node: Device node
323493b0f3eeSJean-Francois Moine  * @dai_link: DAI link
323593b0f3eeSJean-Francois Moine  *
323693b0f3eeSJean-Francois Moine  * Builds an array of CODEC DAI components from the DAI link property
323793b0f3eeSJean-Francois Moine  * 'sound-dai'.
323893b0f3eeSJean-Francois Moine  * The array is set in the DAI link and the number of DAIs is set accordingly.
323994685763SSylwester Nawrocki  * The device nodes in the array (of_node) must be dereferenced by calling
324094685763SSylwester Nawrocki  * snd_soc_of_put_dai_link_codecs() on @dai_link.
324193b0f3eeSJean-Francois Moine  *
324293b0f3eeSJean-Francois Moine  * Returns 0 for success
324393b0f3eeSJean-Francois Moine  */
324493b0f3eeSJean-Francois Moine int snd_soc_of_get_dai_link_codecs(struct device *dev,
324593b0f3eeSJean-Francois Moine 				   struct device_node *of_node,
324693b0f3eeSJean-Francois Moine 				   struct snd_soc_dai_link *dai_link)
324793b0f3eeSJean-Francois Moine {
324893b0f3eeSJean-Francois Moine 	struct of_phandle_args args;
324993b0f3eeSJean-Francois Moine 	struct snd_soc_dai_link_component *component;
325093b0f3eeSJean-Francois Moine 	char *name;
325193b0f3eeSJean-Francois Moine 	int index, num_codecs, ret;
325293b0f3eeSJean-Francois Moine 
325393b0f3eeSJean-Francois Moine 	/* Count the number of CODECs */
325493b0f3eeSJean-Francois Moine 	name = "sound-dai";
325593b0f3eeSJean-Francois Moine 	num_codecs = of_count_phandle_with_args(of_node, name,
325693b0f3eeSJean-Francois Moine 						"#sound-dai-cells");
325793b0f3eeSJean-Francois Moine 	if (num_codecs <= 0) {
325893b0f3eeSJean-Francois Moine 		if (num_codecs == -ENOENT)
325993b0f3eeSJean-Francois Moine 			dev_err(dev, "No 'sound-dai' property\n");
326093b0f3eeSJean-Francois Moine 		else
326193b0f3eeSJean-Francois Moine 			dev_err(dev, "Bad phandle in 'sound-dai'\n");
326293b0f3eeSJean-Francois Moine 		return num_codecs;
326393b0f3eeSJean-Francois Moine 	}
3264a86854d0SKees Cook 	component = devm_kcalloc(dev,
3265a86854d0SKees Cook 				 num_codecs, sizeof(*component),
326693b0f3eeSJean-Francois Moine 				 GFP_KERNEL);
326793b0f3eeSJean-Francois Moine 	if (!component)
326893b0f3eeSJean-Francois Moine 		return -ENOMEM;
326993b0f3eeSJean-Francois Moine 	dai_link->codecs = component;
327093b0f3eeSJean-Francois Moine 	dai_link->num_codecs = num_codecs;
327193b0f3eeSJean-Francois Moine 
327293b0f3eeSJean-Francois Moine 	/* Parse the list */
32733db769f1SKuninori Morimoto 	for_each_link_codecs(dai_link, index, component) {
327493b0f3eeSJean-Francois Moine 		ret = of_parse_phandle_with_args(of_node, name,
327593b0f3eeSJean-Francois Moine 						 "#sound-dai-cells",
327693b0f3eeSJean-Francois Moine 						 index, &args);
327793b0f3eeSJean-Francois Moine 		if (ret)
327893b0f3eeSJean-Francois Moine 			goto err;
327993b0f3eeSJean-Francois Moine 		component->of_node = args.np;
328093b0f3eeSJean-Francois Moine 		ret = snd_soc_get_dai_name(&args, &component->dai_name);
328193b0f3eeSJean-Francois Moine 		if (ret < 0)
328293b0f3eeSJean-Francois Moine 			goto err;
328393b0f3eeSJean-Francois Moine 	}
328493b0f3eeSJean-Francois Moine 	return 0;
328593b0f3eeSJean-Francois Moine err:
328694685763SSylwester Nawrocki 	snd_soc_of_put_dai_link_codecs(dai_link);
328793b0f3eeSJean-Francois Moine 	dai_link->codecs = NULL;
328893b0f3eeSJean-Francois Moine 	dai_link->num_codecs = 0;
328993b0f3eeSJean-Francois Moine 	return ret;
329093b0f3eeSJean-Francois Moine }
329193b0f3eeSJean-Francois Moine EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
329293b0f3eeSJean-Francois Moine 
3293c9b3a40fSTakashi Iwai static int __init snd_soc_init(void)
3294db2a4165SFrank Mandarino {
32956553bf06SLars-Peter Clausen 	snd_soc_debugfs_init();
3296fb257897SMark Brown 	snd_soc_util_init();
3297fb257897SMark Brown 
3298db2a4165SFrank Mandarino 	return platform_driver_register(&soc_driver);
3299db2a4165SFrank Mandarino }
33004abe8e16SMark Brown module_init(snd_soc_init);
3301db2a4165SFrank Mandarino 
33027d8c16a6SMark Brown static void __exit snd_soc_exit(void)
3303db2a4165SFrank Mandarino {
3304fb257897SMark Brown 	snd_soc_util_exit();
33056553bf06SLars-Peter Clausen 	snd_soc_debugfs_exit();
3306fb257897SMark Brown 
3307db2a4165SFrank Mandarino 	platform_driver_unregister(&soc_driver);
3308db2a4165SFrank Mandarino }
3309db2a4165SFrank Mandarino module_exit(snd_soc_exit);
3310db2a4165SFrank Mandarino 
3311db2a4165SFrank Mandarino /* Module information */
3312d331124dSLiam Girdwood MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
3313db2a4165SFrank Mandarino MODULE_DESCRIPTION("ALSA SoC Core");
3314db2a4165SFrank Mandarino MODULE_LICENSE("GPL");
33158b45a209SKay Sievers MODULE_ALIAS("platform:soc-audio");
3316