1 // SPDX-License-Identifier: GPL-2.0+
2 //
3 // soc-core.c  --  ALSA SoC Audio Layer
4 //
5 // Copyright 2005 Wolfson Microelectronics PLC.
6 // Copyright 2005 Openedhand Ltd.
7 // Copyright (C) 2010 Slimlogic Ltd.
8 // Copyright (C) 2010 Texas Instruments Inc.
9 //
10 // Author: Liam Girdwood <lrg@slimlogic.co.uk>
11 //         with code, comments and ideas from :-
12 //         Richard Purdie <richard@openedhand.com>
13 //
14 //  TODO:
15 //   o Add hw rules to enforce rates, etc.
16 //   o More testing with other codecs/machines.
17 //   o Add more codecs and platforms to ensure good API coverage.
18 //   o Support TDM on PCM and I2S
19 
20 #include <linux/module.h>
21 #include <linux/moduleparam.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/pm.h>
25 #include <linux/bitops.h>
26 #include <linux/debugfs.h>
27 #include <linux/platform_device.h>
28 #include <linux/pinctrl/consumer.h>
29 #include <linux/ctype.h>
30 #include <linux/slab.h>
31 #include <linux/of.h>
32 #include <linux/of_graph.h>
33 #include <linux/dmi.h>
34 #include <linux/acpi.h>
35 #include <sound/core.h>
36 #include <sound/pcm.h>
37 #include <sound/pcm_params.h>
38 #include <sound/soc.h>
39 #include <sound/soc-dpcm.h>
40 #include <sound/soc-topology.h>
41 #include <sound/soc-link.h>
42 #include <sound/initval.h>
43 
44 #define CREATE_TRACE_POINTS
45 #include <trace/events/asoc.h>
46 
47 static DEFINE_MUTEX(client_mutex);
48 static LIST_HEAD(component_list);
49 static LIST_HEAD(unbind_card_list);
50 
51 #define for_each_component(component)			\
52 	list_for_each_entry(component, &component_list, list)
53 
54 /*
55  * This is used if driver don't need to have CPU/Codec/Platform
56  * dai_link. see soc.h
57  */
58 struct snd_soc_dai_link_component null_dailink_component[0];
59 EXPORT_SYMBOL_GPL(null_dailink_component);
60 
61 /*
62  * This is a timeout to do a DAPM powerdown after a stream is closed().
63  * It can be used to eliminate pops between different playback streams, e.g.
64  * between two audio tracks.
65  */
66 static int pmdown_time = 5000;
67 module_param(pmdown_time, int, 0);
68 MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
69 
pmdown_time_show(struct device * dev,struct device_attribute * attr,char * buf)70 static ssize_t pmdown_time_show(struct device *dev,
71 				struct device_attribute *attr, char *buf)
72 {
73 	struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
74 
75 	return sprintf(buf, "%ld\n", rtd->pmdown_time);
76 }
77 
pmdown_time_set(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)78 static ssize_t pmdown_time_set(struct device *dev,
79 			       struct device_attribute *attr,
80 			       const char *buf, size_t count)
81 {
82 	struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
83 	int ret;
84 
85 	ret = kstrtol(buf, 10, &rtd->pmdown_time);
86 	if (ret)
87 		return ret;
88 
89 	return count;
90 }
91 
92 static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
93 
94 static struct attribute *soc_dev_attrs[] = {
95 	&dev_attr_pmdown_time.attr,
96 	NULL
97 };
98 
soc_dev_attr_is_visible(struct kobject * kobj,struct attribute * attr,int idx)99 static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
100 				       struct attribute *attr, int idx)
101 {
102 	struct device *dev = kobj_to_dev(kobj);
103 	struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
104 
105 	if (!rtd)
106 		return 0;
107 
108 	if (attr == &dev_attr_pmdown_time.attr)
109 		return attr->mode; /* always visible */
110 	return rtd->num_codecs ? attr->mode : 0; /* enabled only with codec */
111 }
112 
113 static const struct attribute_group soc_dapm_dev_group = {
114 	.attrs = soc_dapm_dev_attrs,
115 	.is_visible = soc_dev_attr_is_visible,
116 };
117 
118 static const struct attribute_group soc_dev_group = {
119 	.attrs = soc_dev_attrs,
120 	.is_visible = soc_dev_attr_is_visible,
121 };
122 
123 static const struct attribute_group *soc_dev_attr_groups[] = {
124 	&soc_dapm_dev_group,
125 	&soc_dev_group,
126 	NULL
127 };
128 
129 #ifdef CONFIG_DEBUG_FS
130 struct dentry *snd_soc_debugfs_root;
131 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
132 
soc_init_component_debugfs(struct snd_soc_component * component)133 static void soc_init_component_debugfs(struct snd_soc_component *component)
134 {
135 	if (!component->card->debugfs_card_root)
136 		return;
137 
138 	if (component->debugfs_prefix) {
139 		char *name;
140 
141 		name = kasprintf(GFP_KERNEL, "%s:%s",
142 			component->debugfs_prefix, component->name);
143 		if (name) {
144 			component->debugfs_root = debugfs_create_dir(name,
145 				component->card->debugfs_card_root);
146 			kfree(name);
147 		}
148 	} else {
149 		component->debugfs_root = debugfs_create_dir(component->name,
150 				component->card->debugfs_card_root);
151 	}
152 
153 	snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component),
154 		component->debugfs_root);
155 }
156 
soc_cleanup_component_debugfs(struct snd_soc_component * component)157 static void soc_cleanup_component_debugfs(struct snd_soc_component *component)
158 {
159 	if (!component->debugfs_root)
160 		return;
161 	debugfs_remove_recursive(component->debugfs_root);
162 	component->debugfs_root = NULL;
163 }
164 
dai_list_show(struct seq_file * m,void * v)165 static int dai_list_show(struct seq_file *m, void *v)
166 {
167 	struct snd_soc_component *component;
168 	struct snd_soc_dai *dai;
169 
170 	mutex_lock(&client_mutex);
171 
172 	for_each_component(component)
173 		for_each_component_dais(component, dai)
174 			seq_printf(m, "%s\n", dai->name);
175 
176 	mutex_unlock(&client_mutex);
177 
178 	return 0;
179 }
180 DEFINE_SHOW_ATTRIBUTE(dai_list);
181 
component_list_show(struct seq_file * m,void * v)182 static int component_list_show(struct seq_file *m, void *v)
183 {
184 	struct snd_soc_component *component;
185 
186 	mutex_lock(&client_mutex);
187 
188 	for_each_component(component)
189 		seq_printf(m, "%s\n", component->name);
190 
191 	mutex_unlock(&client_mutex);
192 
193 	return 0;
194 }
195 DEFINE_SHOW_ATTRIBUTE(component_list);
196 
soc_init_card_debugfs(struct snd_soc_card * card)197 static void soc_init_card_debugfs(struct snd_soc_card *card)
198 {
199 	card->debugfs_card_root = debugfs_create_dir(card->name,
200 						     snd_soc_debugfs_root);
201 
202 	debugfs_create_u32("dapm_pop_time", 0644, card->debugfs_card_root,
203 			   &card->pop_time);
204 
205 	snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
206 }
207 
soc_cleanup_card_debugfs(struct snd_soc_card * card)208 static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
209 {
210 	debugfs_remove_recursive(card->debugfs_card_root);
211 	card->debugfs_card_root = NULL;
212 }
213 
snd_soc_debugfs_init(void)214 static void snd_soc_debugfs_init(void)
215 {
216 	snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
217 
218 	debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
219 			    &dai_list_fops);
220 
221 	debugfs_create_file("components", 0444, snd_soc_debugfs_root, NULL,
222 			    &component_list_fops);
223 }
224 
snd_soc_debugfs_exit(void)225 static void snd_soc_debugfs_exit(void)
226 {
227 	debugfs_remove_recursive(snd_soc_debugfs_root);
228 }
229 
230 #else
231 
soc_init_component_debugfs(struct snd_soc_component * component)232 static inline void soc_init_component_debugfs(
233 	struct snd_soc_component *component)
234 {
235 }
236 
soc_cleanup_component_debugfs(struct snd_soc_component * component)237 static inline void soc_cleanup_component_debugfs(
238 	struct snd_soc_component *component)
239 {
240 }
241 
soc_init_card_debugfs(struct snd_soc_card * card)242 static inline void soc_init_card_debugfs(struct snd_soc_card *card)
243 {
244 }
245 
soc_cleanup_card_debugfs(struct snd_soc_card * card)246 static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
247 {
248 }
249 
snd_soc_debugfs_init(void)250 static inline void snd_soc_debugfs_init(void)
251 {
252 }
253 
snd_soc_debugfs_exit(void)254 static inline void snd_soc_debugfs_exit(void)
255 {
256 }
257 
258 #endif
259 
snd_soc_rtd_add_component(struct snd_soc_pcm_runtime * rtd,struct snd_soc_component * component)260 static int snd_soc_rtd_add_component(struct snd_soc_pcm_runtime *rtd,
261 				     struct snd_soc_component *component)
262 {
263 	struct snd_soc_component *comp;
264 	int i;
265 
266 	for_each_rtd_components(rtd, i, comp) {
267 		/* already connected */
268 		if (comp == component)
269 			return 0;
270 	}
271 
272 	/* see for_each_rtd_components */
273 	rtd->components[rtd->num_components] = component;
274 	rtd->num_components++;
275 
276 	return 0;
277 }
278 
snd_soc_rtdcom_lookup(struct snd_soc_pcm_runtime * rtd,const char * driver_name)279 struct snd_soc_component *snd_soc_rtdcom_lookup(struct snd_soc_pcm_runtime *rtd,
280 						const char *driver_name)
281 {
282 	struct snd_soc_component *component;
283 	int i;
284 
285 	if (!driver_name)
286 		return NULL;
287 
288 	/*
289 	 * NOTE
290 	 *
291 	 * snd_soc_rtdcom_lookup() will find component from rtd by using
292 	 * specified driver name.
293 	 * But, if many components which have same driver name are connected
294 	 * to 1 rtd, this function will return 1st found component.
295 	 */
296 	for_each_rtd_components(rtd, i, component) {
297 		const char *component_name = component->driver->name;
298 
299 		if (!component_name)
300 			continue;
301 
302 		if ((component_name == driver_name) ||
303 		    strcmp(component_name, driver_name) == 0)
304 			return component;
305 	}
306 
307 	return NULL;
308 }
309 EXPORT_SYMBOL_GPL(snd_soc_rtdcom_lookup);
310 
311 struct snd_soc_component
snd_soc_lookup_component_nolocked(struct device * dev,const char * driver_name)312 *snd_soc_lookup_component_nolocked(struct device *dev, const char *driver_name)
313 {
314 	struct snd_soc_component *component;
315 	struct snd_soc_component *found_component;
316 
317 	found_component = NULL;
318 	for_each_component(component) {
319 		if ((dev == component->dev) &&
320 		    (!driver_name ||
321 		     (driver_name == component->driver->name) ||
322 		     (strcmp(component->driver->name, driver_name) == 0))) {
323 			found_component = component;
324 			break;
325 		}
326 	}
327 
328 	return found_component;
329 }
330 EXPORT_SYMBOL_GPL(snd_soc_lookup_component_nolocked);
331 
snd_soc_lookup_component(struct device * dev,const char * driver_name)332 struct snd_soc_component *snd_soc_lookup_component(struct device *dev,
333 						   const char *driver_name)
334 {
335 	struct snd_soc_component *component;
336 
337 	mutex_lock(&client_mutex);
338 	component = snd_soc_lookup_component_nolocked(dev, driver_name);
339 	mutex_unlock(&client_mutex);
340 
341 	return component;
342 }
343 EXPORT_SYMBOL_GPL(snd_soc_lookup_component);
344 
345 struct snd_soc_pcm_runtime
snd_soc_get_pcm_runtime(struct snd_soc_card * card,struct snd_soc_dai_link * dai_link)346 *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
347 			 struct snd_soc_dai_link *dai_link)
348 {
349 	struct snd_soc_pcm_runtime *rtd;
350 
351 	for_each_card_rtds(card, rtd) {
352 		if (rtd->dai_link == dai_link)
353 			return rtd;
354 	}
355 	dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link->name);
356 	return NULL;
357 }
358 EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
359 
360 /*
361  * Power down the audio subsystem pmdown_time msecs after close is called.
362  * This is to ensure there are no pops or clicks in between any music tracks
363  * due to DAPM power cycling.
364  */
snd_soc_close_delayed_work(struct snd_soc_pcm_runtime * rtd)365 void snd_soc_close_delayed_work(struct snd_soc_pcm_runtime *rtd)
366 {
367 	struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
368 	int playback = SNDRV_PCM_STREAM_PLAYBACK;
369 
370 	mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
371 
372 	dev_dbg(rtd->dev,
373 		"ASoC: pop wq checking: %s status: %s waiting: %s\n",
374 		codec_dai->driver->playback.stream_name,
375 		snd_soc_dai_stream_active(codec_dai, playback) ?
376 		"active" : "inactive",
377 		rtd->pop_wait ? "yes" : "no");
378 
379 	/* are we waiting on this codec DAI stream */
380 	if (rtd->pop_wait == 1) {
381 		rtd->pop_wait = 0;
382 		snd_soc_dapm_stream_event(rtd, playback,
383 					  SND_SOC_DAPM_STREAM_STOP);
384 	}
385 
386 	mutex_unlock(&rtd->card->pcm_mutex);
387 }
388 EXPORT_SYMBOL_GPL(snd_soc_close_delayed_work);
389 
soc_release_rtd_dev(struct device * dev)390 static void soc_release_rtd_dev(struct device *dev)
391 {
392 	/* "dev" means "rtd->dev" */
393 	kfree(dev);
394 }
395 
soc_free_pcm_runtime(struct snd_soc_pcm_runtime * rtd)396 static void soc_free_pcm_runtime(struct snd_soc_pcm_runtime *rtd)
397 {
398 	if (!rtd)
399 		return;
400 
401 	list_del(&rtd->list);
402 
403 	if (delayed_work_pending(&rtd->delayed_work))
404 		flush_delayed_work(&rtd->delayed_work);
405 	snd_soc_pcm_component_free(rtd);
406 
407 	/*
408 	 * we don't need to call kfree() for rtd->dev
409 	 * see
410 	 *	soc_release_rtd_dev()
411 	 *
412 	 * We don't need rtd->dev NULL check, because
413 	 * it is alloced *before* rtd.
414 	 * see
415 	 *	soc_new_pcm_runtime()
416 	 *
417 	 * We don't need to mind freeing for rtd,
418 	 * because it was created from dev (= rtd->dev)
419 	 * see
420 	 *	soc_new_pcm_runtime()
421 	 *
422 	 *		rtd = devm_kzalloc(dev, ...);
423 	 *		rtd->dev = dev
424 	 */
425 	device_unregister(rtd->dev);
426 }
427 
close_delayed_work(struct work_struct * work)428 static void close_delayed_work(struct work_struct *work) {
429 	struct snd_soc_pcm_runtime *rtd =
430 			container_of(work, struct snd_soc_pcm_runtime,
431 				     delayed_work.work);
432 
433 	if (rtd->close_delayed_work_func)
434 		rtd->close_delayed_work_func(rtd);
435 }
436 
soc_new_pcm_runtime(struct snd_soc_card * card,struct snd_soc_dai_link * dai_link)437 static struct snd_soc_pcm_runtime *soc_new_pcm_runtime(
438 	struct snd_soc_card *card, struct snd_soc_dai_link *dai_link)
439 {
440 	struct snd_soc_pcm_runtime *rtd;
441 	struct snd_soc_component *component;
442 	struct device *dev;
443 	int ret;
444 	int stream;
445 
446 	/*
447 	 * for rtd->dev
448 	 */
449 	dev = kzalloc(sizeof(struct device), GFP_KERNEL);
450 	if (!dev)
451 		return NULL;
452 
453 	dev->parent	= card->dev;
454 	dev->release	= soc_release_rtd_dev;
455 
456 	dev_set_name(dev, "%s", dai_link->name);
457 
458 	ret = device_register(dev);
459 	if (ret < 0) {
460 		put_device(dev); /* soc_release_rtd_dev */
461 		return NULL;
462 	}
463 
464 	/*
465 	 * for rtd
466 	 */
467 	rtd = devm_kzalloc(dev,
468 			   sizeof(*rtd) +
469 			   sizeof(*component) * (dai_link->num_cpus +
470 						 dai_link->num_codecs +
471 						 dai_link->num_platforms),
472 			   GFP_KERNEL);
473 	if (!rtd) {
474 		device_unregister(dev);
475 		return NULL;
476 	}
477 
478 	rtd->dev = dev;
479 	INIT_LIST_HEAD(&rtd->list);
480 	for_each_pcm_streams(stream) {
481 		INIT_LIST_HEAD(&rtd->dpcm[stream].be_clients);
482 		INIT_LIST_HEAD(&rtd->dpcm[stream].fe_clients);
483 	}
484 	dev_set_drvdata(dev, rtd);
485 	INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
486 
487 	/*
488 	 * for rtd->dais
489 	 */
490 	rtd->dais = devm_kcalloc(dev, dai_link->num_cpus + dai_link->num_codecs,
491 					sizeof(struct snd_soc_dai *),
492 					GFP_KERNEL);
493 	if (!rtd->dais)
494 		goto free_rtd;
495 
496 	/*
497 	 * dais = [][][][][][][][][][][][][][][][][][]
498 	 *	  ^cpu_dais         ^codec_dais
499 	 *	  |--- num_cpus ---|--- num_codecs --|
500 	 * see
501 	 *	asoc_rtd_to_cpu()
502 	 *	asoc_rtd_to_codec()
503 	 */
504 	rtd->num_cpus	= dai_link->num_cpus;
505 	rtd->num_codecs	= dai_link->num_codecs;
506 	rtd->card	= card;
507 	rtd->dai_link	= dai_link;
508 	rtd->num	= card->num_rtd++;
509 
510 	/* see for_each_card_rtds */
511 	list_add_tail(&rtd->list, &card->rtd_list);
512 
513 	ret = device_add_groups(dev, soc_dev_attr_groups);
514 	if (ret < 0)
515 		goto free_rtd;
516 
517 	return rtd;
518 
519 free_rtd:
520 	soc_free_pcm_runtime(rtd);
521 	return NULL;
522 }
523 
snd_soc_flush_all_delayed_work(struct snd_soc_card * card)524 static void snd_soc_flush_all_delayed_work(struct snd_soc_card *card)
525 {
526 	struct snd_soc_pcm_runtime *rtd;
527 
528 	for_each_card_rtds(card, rtd)
529 		flush_delayed_work(&rtd->delayed_work);
530 }
531 
532 #ifdef CONFIG_PM_SLEEP
soc_playback_digital_mute(struct snd_soc_card * card,int mute)533 static void soc_playback_digital_mute(struct snd_soc_card *card, int mute)
534 {
535 	struct snd_soc_pcm_runtime *rtd;
536 	struct snd_soc_dai *dai;
537 	int playback = SNDRV_PCM_STREAM_PLAYBACK;
538 	int i;
539 
540 	for_each_card_rtds(card, rtd) {
541 
542 		if (rtd->dai_link->ignore_suspend)
543 			continue;
544 
545 		for_each_rtd_dais(rtd, i, dai) {
546 			if (snd_soc_dai_stream_active(dai, playback))
547 				snd_soc_dai_digital_mute(dai, mute, playback);
548 		}
549 	}
550 }
551 
soc_dapm_suspend_resume(struct snd_soc_card * card,int event)552 static void soc_dapm_suspend_resume(struct snd_soc_card *card, int event)
553 {
554 	struct snd_soc_pcm_runtime *rtd;
555 	int stream;
556 
557 	for_each_card_rtds(card, rtd) {
558 
559 		if (rtd->dai_link->ignore_suspend)
560 			continue;
561 
562 		for_each_pcm_streams(stream)
563 			snd_soc_dapm_stream_event(rtd, stream, event);
564 	}
565 }
566 
567 /* powers down audio subsystem for suspend */
snd_soc_suspend(struct device * dev)568 int snd_soc_suspend(struct device *dev)
569 {
570 	struct snd_soc_card *card = dev_get_drvdata(dev);
571 	struct snd_soc_component *component;
572 	struct snd_soc_pcm_runtime *rtd;
573 	int i;
574 
575 	/* If the card is not initialized yet there is nothing to do */
576 	if (!card->instantiated)
577 		return 0;
578 
579 	/*
580 	 * Due to the resume being scheduled into a workqueue we could
581 	 * suspend before that's finished - wait for it to complete.
582 	 */
583 	snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
584 
585 	/* we're going to block userspace touching us until resume completes */
586 	snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
587 
588 	/* mute any active DACs */
589 	soc_playback_digital_mute(card, 1);
590 
591 	/* suspend all pcms */
592 	for_each_card_rtds(card, rtd) {
593 		if (rtd->dai_link->ignore_suspend)
594 			continue;
595 
596 		snd_pcm_suspend_all(rtd->pcm);
597 	}
598 
599 	snd_soc_card_suspend_pre(card);
600 
601 	/* close any waiting streams */
602 	snd_soc_flush_all_delayed_work(card);
603 
604 	soc_dapm_suspend_resume(card, SND_SOC_DAPM_STREAM_SUSPEND);
605 
606 	/* Recheck all endpoints too, their state is affected by suspend */
607 	dapm_mark_endpoints_dirty(card);
608 	snd_soc_dapm_sync(&card->dapm);
609 
610 	/* suspend all COMPONENTs */
611 	for_each_card_rtds(card, rtd) {
612 
613 		if (rtd->dai_link->ignore_suspend)
614 			continue;
615 
616 		for_each_rtd_components(rtd, i, component) {
617 			struct snd_soc_dapm_context *dapm =
618 				snd_soc_component_get_dapm(component);
619 
620 			/*
621 			 * ignore if component was already suspended
622 			 */
623 			if (snd_soc_component_is_suspended(component))
624 				continue;
625 
626 			/*
627 			 * If there are paths active then the COMPONENT will be
628 			 * held with bias _ON and should not be suspended.
629 			 */
630 			switch (snd_soc_dapm_get_bias_level(dapm)) {
631 			case SND_SOC_BIAS_STANDBY:
632 				/*
633 				 * If the COMPONENT is capable of idle
634 				 * bias off then being in STANDBY
635 				 * means it's doing something,
636 				 * otherwise fall through.
637 				 */
638 				if (dapm->idle_bias_off) {
639 					dev_dbg(component->dev,
640 						"ASoC: idle_bias_off CODEC on over suspend\n");
641 					break;
642 				}
643 				fallthrough;
644 
645 			case SND_SOC_BIAS_OFF:
646 				snd_soc_component_suspend(component);
647 				if (component->regmap)
648 					regcache_mark_dirty(component->regmap);
649 				/* deactivate pins to sleep state */
650 				pinctrl_pm_select_sleep_state(component->dev);
651 				break;
652 			default:
653 				dev_dbg(component->dev,
654 					"ASoC: COMPONENT is on over suspend\n");
655 				break;
656 			}
657 		}
658 	}
659 
660 	snd_soc_card_suspend_post(card);
661 
662 	return 0;
663 }
664 EXPORT_SYMBOL_GPL(snd_soc_suspend);
665 
666 /*
667  * deferred resume work, so resume can complete before we finished
668  * setting our codec back up, which can be very slow on I2C
669  */
soc_resume_deferred(struct work_struct * work)670 static void soc_resume_deferred(struct work_struct *work)
671 {
672 	struct snd_soc_card *card =
673 			container_of(work, struct snd_soc_card,
674 				     deferred_resume_work);
675 	struct snd_soc_component *component;
676 
677 	/*
678 	 * our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
679 	 * so userspace apps are blocked from touching us
680 	 */
681 
682 	dev_dbg(card->dev, "ASoC: starting resume work\n");
683 
684 	/* Bring us up into D2 so that DAPM starts enabling things */
685 	snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
686 
687 	snd_soc_card_resume_pre(card);
688 
689 	for_each_card_components(card, component) {
690 		if (snd_soc_component_is_suspended(component))
691 			snd_soc_component_resume(component);
692 	}
693 
694 	soc_dapm_suspend_resume(card, SND_SOC_DAPM_STREAM_RESUME);
695 
696 	/* unmute any active DACs */
697 	soc_playback_digital_mute(card, 0);
698 
699 	snd_soc_card_resume_post(card);
700 
701 	dev_dbg(card->dev, "ASoC: resume work completed\n");
702 
703 	/* Recheck all endpoints too, their state is affected by suspend */
704 	dapm_mark_endpoints_dirty(card);
705 	snd_soc_dapm_sync(&card->dapm);
706 
707 	/* userspace can access us now we are back as we were before */
708 	snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
709 }
710 
711 /* powers up audio subsystem after a suspend */
snd_soc_resume(struct device * dev)712 int snd_soc_resume(struct device *dev)
713 {
714 	struct snd_soc_card *card = dev_get_drvdata(dev);
715 	struct snd_soc_component *component;
716 
717 	/* If the card is not initialized yet there is nothing to do */
718 	if (!card->instantiated)
719 		return 0;
720 
721 	/* activate pins from sleep state */
722 	for_each_card_components(card, component)
723 		if (snd_soc_component_active(component))
724 			pinctrl_pm_select_default_state(component->dev);
725 
726 	dev_dbg(dev, "ASoC: Scheduling resume work\n");
727 	if (!schedule_work(&card->deferred_resume_work))
728 		dev_err(dev, "ASoC: resume work item may be lost\n");
729 
730 	return 0;
731 }
732 EXPORT_SYMBOL_GPL(snd_soc_resume);
733 
soc_resume_init(struct snd_soc_card * card)734 static void soc_resume_init(struct snd_soc_card *card)
735 {
736 	/* deferred resume work */
737 	INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
738 }
739 #else
740 #define snd_soc_suspend NULL
741 #define snd_soc_resume NULL
soc_resume_init(struct snd_soc_card * card)742 static inline void soc_resume_init(struct snd_soc_card *card)
743 {
744 }
745 #endif
746 
747 static struct device_node
soc_component_to_node(struct snd_soc_component * component)748 *soc_component_to_node(struct snd_soc_component *component)
749 {
750 	struct device_node *of_node;
751 
752 	of_node = component->dev->of_node;
753 	if (!of_node && component->dev->parent)
754 		of_node = component->dev->parent->of_node;
755 
756 	return of_node;
757 }
758 
snd_soc_is_matching_component(const struct snd_soc_dai_link_component * dlc,struct snd_soc_component * component)759 static int snd_soc_is_matching_component(
760 	const struct snd_soc_dai_link_component *dlc,
761 	struct snd_soc_component *component)
762 {
763 	struct device_node *component_of_node;
764 
765 	if (!dlc)
766 		return 0;
767 
768 	component_of_node = soc_component_to_node(component);
769 
770 	if (dlc->of_node && component_of_node != dlc->of_node)
771 		return 0;
772 	if (dlc->name && strcmp(component->name, dlc->name))
773 		return 0;
774 
775 	return 1;
776 }
777 
soc_find_component(const struct snd_soc_dai_link_component * dlc)778 static struct snd_soc_component *soc_find_component(
779 	const struct snd_soc_dai_link_component *dlc)
780 {
781 	struct snd_soc_component *component;
782 
783 	lockdep_assert_held(&client_mutex);
784 
785 	/*
786 	 * NOTE
787 	 *
788 	 * It returns *1st* found component, but some driver
789 	 * has few components by same of_node/name
790 	 * ex)
791 	 *	CPU component and generic DMAEngine component
792 	 */
793 	for_each_component(component)
794 		if (snd_soc_is_matching_component(dlc, component))
795 			return component;
796 
797 	return NULL;
798 }
799 
800 /**
801  * snd_soc_find_dai - Find a registered DAI
802  *
803  * @dlc: name of the DAI or the DAI driver and optional component info to match
804  *
805  * This function will search all registered components and their DAIs to
806  * find the DAI of the same name. The component's of_node and name
807  * should also match if being specified.
808  *
809  * Return: pointer of DAI, or NULL if not found.
810  */
snd_soc_find_dai(const struct snd_soc_dai_link_component * dlc)811 struct snd_soc_dai *snd_soc_find_dai(
812 	const struct snd_soc_dai_link_component *dlc)
813 {
814 	struct snd_soc_component *component;
815 	struct snd_soc_dai *dai;
816 
817 	lockdep_assert_held(&client_mutex);
818 
819 	/* Find CPU DAI from registered DAIs */
820 	for_each_component(component) {
821 		if (!snd_soc_is_matching_component(dlc, component))
822 			continue;
823 		for_each_component_dais(component, dai) {
824 			if (dlc->dai_name && strcmp(dai->name, dlc->dai_name)
825 			    && (!dai->driver->name
826 				|| strcmp(dai->driver->name, dlc->dai_name)))
827 				continue;
828 
829 			return dai;
830 		}
831 	}
832 
833 	return NULL;
834 }
835 EXPORT_SYMBOL_GPL(snd_soc_find_dai);
836 
snd_soc_find_dai_with_mutex(const struct snd_soc_dai_link_component * dlc)837 struct snd_soc_dai *snd_soc_find_dai_with_mutex(
838 	const struct snd_soc_dai_link_component *dlc)
839 {
840 	struct snd_soc_dai *dai;
841 
842 	mutex_lock(&client_mutex);
843 	dai = snd_soc_find_dai(dlc);
844 	mutex_unlock(&client_mutex);
845 
846 	return dai;
847 }
848 EXPORT_SYMBOL_GPL(snd_soc_find_dai_with_mutex);
849 
soc_dai_link_sanity_check(struct snd_soc_card * card,struct snd_soc_dai_link * link)850 static int soc_dai_link_sanity_check(struct snd_soc_card *card,
851 				     struct snd_soc_dai_link *link)
852 {
853 	int i;
854 	struct snd_soc_dai_link_component *cpu, *codec, *platform;
855 
856 	for_each_link_codecs(link, i, codec) {
857 		/*
858 		 * Codec must be specified by 1 of name or OF node,
859 		 * not both or neither.
860 		 */
861 		if (!!codec->name == !!codec->of_node) {
862 			dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
863 				link->name);
864 			return -EINVAL;
865 		}
866 
867 		/* Codec DAI name must be specified */
868 		if (!codec->dai_name) {
869 			dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
870 				link->name);
871 			return -EINVAL;
872 		}
873 
874 		/*
875 		 * Defer card registration if codec component is not added to
876 		 * component list.
877 		 */
878 		if (!soc_find_component(codec)) {
879 			dev_dbg(card->dev,
880 				"ASoC: codec component %s not found for link %s\n",
881 				codec->name, link->name);
882 			return -EPROBE_DEFER;
883 		}
884 	}
885 
886 	for_each_link_platforms(link, i, platform) {
887 		/*
888 		 * Platform may be specified by either name or OF node, but it
889 		 * can be left unspecified, then no components will be inserted
890 		 * in the rtdcom list
891 		 */
892 		if (!!platform->name == !!platform->of_node) {
893 			dev_err(card->dev,
894 				"ASoC: Neither/both platform name/of_node are set for %s\n",
895 				link->name);
896 			return -EINVAL;
897 		}
898 
899 		/*
900 		 * Defer card registration if platform component is not added to
901 		 * component list.
902 		 */
903 		if (!soc_find_component(platform)) {
904 			dev_dbg(card->dev,
905 				"ASoC: platform component %s not found for link %s\n",
906 				platform->name, link->name);
907 			return -EPROBE_DEFER;
908 		}
909 	}
910 
911 	for_each_link_cpus(link, i, cpu) {
912 		/*
913 		 * CPU device may be specified by either name or OF node, but
914 		 * can be left unspecified, and will be matched based on DAI
915 		 * name alone..
916 		 */
917 		if (cpu->name && cpu->of_node) {
918 			dev_err(card->dev,
919 				"ASoC: Neither/both cpu name/of_node are set for %s\n",
920 				link->name);
921 			return -EINVAL;
922 		}
923 
924 		/*
925 		 * Defer card registration if cpu dai component is not added to
926 		 * component list.
927 		 */
928 		if ((cpu->of_node || cpu->name) &&
929 		    !soc_find_component(cpu)) {
930 			dev_dbg(card->dev,
931 				"ASoC: cpu component %s not found for link %s\n",
932 				cpu->name, link->name);
933 			return -EPROBE_DEFER;
934 		}
935 
936 		/*
937 		 * At least one of CPU DAI name or CPU device name/node must be
938 		 * specified
939 		 */
940 		if (!cpu->dai_name &&
941 		    !(cpu->name || cpu->of_node)) {
942 			dev_err(card->dev,
943 				"ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
944 				link->name);
945 			return -EINVAL;
946 		}
947 	}
948 
949 	return 0;
950 }
951 
952 /**
953  * snd_soc_remove_pcm_runtime - Remove a pcm_runtime from card
954  * @card: The ASoC card to which the pcm_runtime has
955  * @rtd: The pcm_runtime to remove
956  *
957  * This function removes a pcm_runtime from the ASoC card.
958  */
snd_soc_remove_pcm_runtime(struct snd_soc_card * card,struct snd_soc_pcm_runtime * rtd)959 void snd_soc_remove_pcm_runtime(struct snd_soc_card *card,
960 				struct snd_soc_pcm_runtime *rtd)
961 {
962 	lockdep_assert_held(&client_mutex);
963 
964 	/* release machine specific resources */
965 	snd_soc_link_exit(rtd);
966 
967 	/*
968 	 * Notify the machine driver for extra destruction
969 	 */
970 	snd_soc_card_remove_dai_link(card, rtd->dai_link);
971 
972 	soc_free_pcm_runtime(rtd);
973 }
974 EXPORT_SYMBOL_GPL(snd_soc_remove_pcm_runtime);
975 
976 /**
977  * snd_soc_add_pcm_runtime - Add a pcm_runtime dynamically via dai_link
978  * @card: The ASoC card to which the pcm_runtime is added
979  * @dai_link: The DAI link to find pcm_runtime
980  *
981  * This function adds a pcm_runtime ASoC card by using dai_link.
982  *
983  * Note: Topology can use this API to add pcm_runtime when probing the
984  * topology component. And machine drivers can still define static
985  * DAI links in dai_link array.
986  */
snd_soc_add_pcm_runtime(struct snd_soc_card * card,struct snd_soc_dai_link * dai_link)987 int snd_soc_add_pcm_runtime(struct snd_soc_card *card,
988 			    struct snd_soc_dai_link *dai_link)
989 {
990 	struct snd_soc_pcm_runtime *rtd;
991 	struct snd_soc_dai_link_component *codec, *platform, *cpu;
992 	struct snd_soc_component *component;
993 	int i, ret;
994 
995 	lockdep_assert_held(&client_mutex);
996 
997 	/*
998 	 * Notify the machine driver for extra initialization
999 	 */
1000 	ret = snd_soc_card_add_dai_link(card, dai_link);
1001 	if (ret < 0)
1002 		return ret;
1003 
1004 	if (dai_link->ignore)
1005 		return 0;
1006 
1007 	dev_dbg(card->dev, "ASoC: binding %s\n", dai_link->name);
1008 
1009 	ret = soc_dai_link_sanity_check(card, dai_link);
1010 	if (ret < 0)
1011 		return ret;
1012 
1013 	rtd = soc_new_pcm_runtime(card, dai_link);
1014 	if (!rtd)
1015 		return -ENOMEM;
1016 
1017 	for_each_link_cpus(dai_link, i, cpu) {
1018 		asoc_rtd_to_cpu(rtd, i) = snd_soc_find_dai(cpu);
1019 		if (!asoc_rtd_to_cpu(rtd, i)) {
1020 			dev_info(card->dev, "ASoC: CPU DAI %s not registered\n",
1021 				 cpu->dai_name);
1022 			goto _err_defer;
1023 		}
1024 		snd_soc_rtd_add_component(rtd, asoc_rtd_to_cpu(rtd, i)->component);
1025 	}
1026 
1027 	/* Find CODEC from registered CODECs */
1028 	for_each_link_codecs(dai_link, i, codec) {
1029 		asoc_rtd_to_codec(rtd, i) = snd_soc_find_dai(codec);
1030 		if (!asoc_rtd_to_codec(rtd, i)) {
1031 			dev_info(card->dev, "ASoC: CODEC DAI %s not registered\n",
1032 				 codec->dai_name);
1033 			goto _err_defer;
1034 		}
1035 
1036 		snd_soc_rtd_add_component(rtd, asoc_rtd_to_codec(rtd, i)->component);
1037 	}
1038 
1039 	/* Find PLATFORM from registered PLATFORMs */
1040 	for_each_link_platforms(dai_link, i, platform) {
1041 		for_each_component(component) {
1042 			if (!snd_soc_is_matching_component(platform, component))
1043 				continue;
1044 
1045 			snd_soc_rtd_add_component(rtd, component);
1046 		}
1047 	}
1048 
1049 	return 0;
1050 
1051 _err_defer:
1052 	snd_soc_remove_pcm_runtime(card, rtd);
1053 	return -EPROBE_DEFER;
1054 }
1055 EXPORT_SYMBOL_GPL(snd_soc_add_pcm_runtime);
1056 
soc_init_pcm_runtime(struct snd_soc_card * card,struct snd_soc_pcm_runtime * rtd)1057 static int soc_init_pcm_runtime(struct snd_soc_card *card,
1058 				struct snd_soc_pcm_runtime *rtd)
1059 {
1060 	struct snd_soc_dai_link *dai_link = rtd->dai_link;
1061 	struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
1062 	struct snd_soc_component *component;
1063 	int ret, num, i;
1064 
1065 	/* set default power off timeout */
1066 	rtd->pmdown_time = pmdown_time;
1067 
1068 	/* do machine specific initialization */
1069 	ret = snd_soc_link_init(rtd);
1070 	if (ret < 0)
1071 		return ret;
1072 
1073 	if (dai_link->dai_fmt) {
1074 		ret = snd_soc_runtime_set_dai_fmt(rtd, dai_link->dai_fmt);
1075 		if (ret)
1076 			return ret;
1077 	}
1078 
1079 	/* add DPCM sysfs entries */
1080 	soc_dpcm_debugfs_add(rtd);
1081 
1082 	num = rtd->num;
1083 
1084 	/*
1085 	 * most drivers will register their PCMs using DAI link ordering but
1086 	 * topology based drivers can use the DAI link id field to set PCM
1087 	 * device number and then use rtd + a base offset of the BEs.
1088 	 */
1089 	for_each_rtd_components(rtd, i, component) {
1090 		if (!component->driver->use_dai_pcm_id)
1091 			continue;
1092 
1093 		if (rtd->dai_link->no_pcm)
1094 			num += component->driver->be_pcm_base;
1095 		else
1096 			num = rtd->dai_link->id;
1097 	}
1098 
1099 	/* create compress_device if possible */
1100 	ret = snd_soc_dai_compress_new(cpu_dai, rtd, num);
1101 	if (ret != -ENOTSUPP)
1102 		return ret;
1103 
1104 	/* create the pcm */
1105 	ret = soc_new_pcm(rtd, num);
1106 	if (ret < 0) {
1107 		dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
1108 			dai_link->stream_name, ret);
1109 		return ret;
1110 	}
1111 
1112 	return snd_soc_pcm_dai_new(rtd);
1113 }
1114 
soc_set_name_prefix(struct snd_soc_card * card,struct snd_soc_component * component)1115 static void soc_set_name_prefix(struct snd_soc_card *card,
1116 				struct snd_soc_component *component)
1117 {
1118 	struct device_node *of_node = soc_component_to_node(component);
1119 	const char *str;
1120 	int ret, i;
1121 
1122 	for (i = 0; i < card->num_configs; i++) {
1123 		struct snd_soc_codec_conf *map = &card->codec_conf[i];
1124 
1125 		if (snd_soc_is_matching_component(&map->dlc, component) &&
1126 		    map->name_prefix) {
1127 			component->name_prefix = map->name_prefix;
1128 			return;
1129 		}
1130 	}
1131 
1132 	/*
1133 	 * If there is no configuration table or no match in the table,
1134 	 * check if a prefix is provided in the node
1135 	 */
1136 	ret = of_property_read_string(of_node, "sound-name-prefix", &str);
1137 	if (ret < 0)
1138 		return;
1139 
1140 	component->name_prefix = str;
1141 }
1142 
soc_remove_component(struct snd_soc_component * component,int probed)1143 static void soc_remove_component(struct snd_soc_component *component,
1144 				 int probed)
1145 {
1146 
1147 	if (!component->card)
1148 		return;
1149 
1150 	if (probed)
1151 		snd_soc_component_remove(component);
1152 
1153 	/* For framework level robustness */
1154 	snd_soc_component_set_jack(component, NULL, NULL);
1155 
1156 	list_del_init(&component->card_list);
1157 	snd_soc_dapm_free(snd_soc_component_get_dapm(component));
1158 	soc_cleanup_component_debugfs(component);
1159 	component->card = NULL;
1160 	snd_soc_component_module_put_when_remove(component);
1161 }
1162 
soc_probe_component(struct snd_soc_card * card,struct snd_soc_component * component)1163 static int soc_probe_component(struct snd_soc_card *card,
1164 			       struct snd_soc_component *component)
1165 {
1166 	struct snd_soc_dapm_context *dapm =
1167 		snd_soc_component_get_dapm(component);
1168 	struct snd_soc_dai *dai;
1169 	int probed = 0;
1170 	int ret;
1171 
1172 	if (snd_soc_component_is_dummy(component))
1173 		return 0;
1174 
1175 	if (component->card) {
1176 		if (component->card != card) {
1177 			dev_err(component->dev,
1178 				"Trying to bind component to card \"%s\" but is already bound to card \"%s\"\n",
1179 				card->name, component->card->name);
1180 			return -ENODEV;
1181 		}
1182 		return 0;
1183 	}
1184 
1185 	ret = snd_soc_component_module_get_when_probe(component);
1186 	if (ret < 0)
1187 		return ret;
1188 
1189 	component->card = card;
1190 	soc_set_name_prefix(card, component);
1191 
1192 	soc_init_component_debugfs(component);
1193 
1194 	snd_soc_dapm_init(dapm, card, component);
1195 
1196 	ret = snd_soc_dapm_new_controls(dapm,
1197 					component->driver->dapm_widgets,
1198 					component->driver->num_dapm_widgets);
1199 
1200 	if (ret != 0) {
1201 		dev_err(component->dev,
1202 			"Failed to create new controls %d\n", ret);
1203 		goto err_probe;
1204 	}
1205 
1206 	for_each_component_dais(component, dai) {
1207 		ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
1208 		if (ret != 0) {
1209 			dev_err(component->dev,
1210 				"Failed to create DAI widgets %d\n", ret);
1211 			goto err_probe;
1212 		}
1213 	}
1214 
1215 	ret = snd_soc_component_probe(component);
1216 	if (ret < 0)
1217 		goto err_probe;
1218 
1219 	WARN(dapm->idle_bias_off &&
1220 	     dapm->bias_level != SND_SOC_BIAS_OFF,
1221 	     "codec %s can not start from non-off bias with idle_bias_off==1\n",
1222 	     component->name);
1223 	probed = 1;
1224 
1225 	/*
1226 	 * machine specific init
1227 	 * see
1228 	 *	snd_soc_component_set_aux()
1229 	 */
1230 	ret = snd_soc_component_init(component);
1231 	if (ret < 0)
1232 		goto err_probe;
1233 
1234 	ret = snd_soc_add_component_controls(component,
1235 					     component->driver->controls,
1236 					     component->driver->num_controls);
1237 	if (ret < 0)
1238 		goto err_probe;
1239 
1240 	ret = snd_soc_dapm_add_routes(dapm,
1241 				      component->driver->dapm_routes,
1242 				      component->driver->num_dapm_routes);
1243 	if (ret < 0) {
1244 		if (card->disable_route_checks) {
1245 			dev_info(card->dev,
1246 				 "%s: disable_route_checks set, ignoring errors on add_routes\n",
1247 				 __func__);
1248 		} else {
1249 			dev_err(card->dev,
1250 				"%s: snd_soc_dapm_add_routes failed: %d\n",
1251 				__func__, ret);
1252 			goto err_probe;
1253 		}
1254 	}
1255 
1256 	/* see for_each_card_components */
1257 	list_add(&component->card_list, &card->component_dev_list);
1258 
1259 err_probe:
1260 	if (ret < 0)
1261 		soc_remove_component(component, probed);
1262 
1263 	return ret;
1264 }
1265 
soc_remove_link_dais(struct snd_soc_card * card)1266 static void soc_remove_link_dais(struct snd_soc_card *card)
1267 {
1268 	struct snd_soc_pcm_runtime *rtd;
1269 	int order;
1270 
1271 	for_each_comp_order(order) {
1272 		for_each_card_rtds(card, rtd) {
1273 			/* remove all rtd connected DAIs in good order */
1274 			snd_soc_pcm_dai_remove(rtd, order);
1275 		}
1276 	}
1277 }
1278 
soc_probe_link_dais(struct snd_soc_card * card)1279 static int soc_probe_link_dais(struct snd_soc_card *card)
1280 {
1281 	struct snd_soc_pcm_runtime *rtd;
1282 	int order, ret;
1283 
1284 	for_each_comp_order(order) {
1285 		for_each_card_rtds(card, rtd) {
1286 
1287 			dev_dbg(card->dev,
1288 				"ASoC: probe %s dai link %d late %d\n",
1289 				card->name, rtd->num, order);
1290 
1291 			/* probe all rtd connected DAIs in good order */
1292 			ret = snd_soc_pcm_dai_probe(rtd, order);
1293 			if (ret)
1294 				return ret;
1295 		}
1296 	}
1297 
1298 	return 0;
1299 }
1300 
soc_remove_link_components(struct snd_soc_card * card)1301 static void soc_remove_link_components(struct snd_soc_card *card)
1302 {
1303 	struct snd_soc_component *component;
1304 	struct snd_soc_pcm_runtime *rtd;
1305 	int i, order;
1306 
1307 	for_each_comp_order(order) {
1308 		for_each_card_rtds(card, rtd) {
1309 			for_each_rtd_components(rtd, i, component) {
1310 				if (component->driver->remove_order != order)
1311 					continue;
1312 
1313 				soc_remove_component(component, 1);
1314 			}
1315 		}
1316 	}
1317 }
1318 
soc_probe_link_components(struct snd_soc_card * card)1319 static int soc_probe_link_components(struct snd_soc_card *card)
1320 {
1321 	struct snd_soc_component *component;
1322 	struct snd_soc_pcm_runtime *rtd;
1323 	int i, ret, order;
1324 
1325 	for_each_comp_order(order) {
1326 		for_each_card_rtds(card, rtd) {
1327 			for_each_rtd_components(rtd, i, component) {
1328 				if (component->driver->probe_order != order)
1329 					continue;
1330 
1331 				ret = soc_probe_component(card, component);
1332 				if (ret < 0)
1333 					return ret;
1334 			}
1335 		}
1336 	}
1337 
1338 	return 0;
1339 }
1340 
soc_unbind_aux_dev(struct snd_soc_card * card)1341 static void soc_unbind_aux_dev(struct snd_soc_card *card)
1342 {
1343 	struct snd_soc_component *component, *_component;
1344 
1345 	for_each_card_auxs_safe(card, component, _component) {
1346 		/* for snd_soc_component_init() */
1347 		snd_soc_component_set_aux(component, NULL);
1348 		list_del(&component->card_aux_list);
1349 	}
1350 }
1351 
soc_bind_aux_dev(struct snd_soc_card * card)1352 static int soc_bind_aux_dev(struct snd_soc_card *card)
1353 {
1354 	struct snd_soc_component *component;
1355 	struct snd_soc_aux_dev *aux;
1356 	int i;
1357 
1358 	for_each_card_pre_auxs(card, i, aux) {
1359 		/* codecs, usually analog devices */
1360 		component = soc_find_component(&aux->dlc);
1361 		if (!component)
1362 			return -EPROBE_DEFER;
1363 
1364 		/* for snd_soc_component_init() */
1365 		snd_soc_component_set_aux(component, aux);
1366 		/* see for_each_card_auxs */
1367 		list_add(&component->card_aux_list, &card->aux_comp_list);
1368 	}
1369 	return 0;
1370 }
1371 
soc_probe_aux_devices(struct snd_soc_card * card)1372 static int soc_probe_aux_devices(struct snd_soc_card *card)
1373 {
1374 	struct snd_soc_component *component;
1375 	int order;
1376 	int ret;
1377 
1378 	for_each_comp_order(order) {
1379 		for_each_card_auxs(card, component) {
1380 			if (component->driver->probe_order != order)
1381 				continue;
1382 
1383 			ret = soc_probe_component(card,	component);
1384 			if (ret < 0)
1385 				return ret;
1386 		}
1387 	}
1388 
1389 	return 0;
1390 }
1391 
soc_remove_aux_devices(struct snd_soc_card * card)1392 static void soc_remove_aux_devices(struct snd_soc_card *card)
1393 {
1394 	struct snd_soc_component *comp, *_comp;
1395 	int order;
1396 
1397 	for_each_comp_order(order) {
1398 		for_each_card_auxs_safe(card, comp, _comp) {
1399 			if (comp->driver->remove_order == order)
1400 				soc_remove_component(comp, 1);
1401 		}
1402 	}
1403 }
1404 
1405 /**
1406  * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1407  * @rtd: The runtime for which the DAI link format should be changed
1408  * @dai_fmt: The new DAI link format
1409  *
1410  * This function updates the DAI link format for all DAIs connected to the DAI
1411  * link for the specified runtime.
1412  *
1413  * Note: For setups with a static format set the dai_fmt field in the
1414  * corresponding snd_dai_link struct instead of using this function.
1415  *
1416  * Returns 0 on success, otherwise a negative error code.
1417  */
snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime * rtd,unsigned int dai_fmt)1418 int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
1419 	unsigned int dai_fmt)
1420 {
1421 	struct snd_soc_dai *cpu_dai;
1422 	struct snd_soc_dai *codec_dai;
1423 	unsigned int inv_dai_fmt;
1424 	unsigned int i;
1425 	int ret;
1426 
1427 	for_each_rtd_codec_dais(rtd, i, codec_dai) {
1428 		ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1429 		if (ret != 0 && ret != -ENOTSUPP)
1430 			return ret;
1431 	}
1432 
1433 	/*
1434 	 * Flip the polarity for the "CPU" end of a CODEC<->CODEC link
1435 	 * the component which has non_legacy_dai_naming is Codec
1436 	 */
1437 	inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
1438 	switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1439 	case SND_SOC_DAIFMT_CBM_CFM:
1440 		inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1441 		break;
1442 	case SND_SOC_DAIFMT_CBM_CFS:
1443 		inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1444 		break;
1445 	case SND_SOC_DAIFMT_CBS_CFM:
1446 		inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1447 		break;
1448 	case SND_SOC_DAIFMT_CBS_CFS:
1449 		inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1450 		break;
1451 	}
1452 	for_each_rtd_cpu_dais(rtd, i, cpu_dai) {
1453 		unsigned int fmt = dai_fmt;
1454 
1455 		if (cpu_dai->component->driver->non_legacy_dai_naming)
1456 			fmt = inv_dai_fmt;
1457 
1458 		ret = snd_soc_dai_set_fmt(cpu_dai, fmt);
1459 		if (ret != 0 && ret != -ENOTSUPP)
1460 			return ret;
1461 	}
1462 
1463 	return 0;
1464 }
1465 EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt);
1466 
1467 #ifdef CONFIG_DMI
1468 /*
1469  * If a DMI filed contain strings in this blacklist (e.g.
1470  * "Type2 - Board Manufacturer" or "Type1 - TBD by OEM"), it will be taken
1471  * as invalid and dropped when setting the card long name from DMI info.
1472  */
1473 static const char * const dmi_blacklist[] = {
1474 	"To be filled by OEM",
1475 	"TBD by OEM",
1476 	"Default String",
1477 	"Board Manufacturer",
1478 	"Board Vendor Name",
1479 	"Board Product Name",
1480 	NULL,	/* terminator */
1481 };
1482 
1483 /*
1484  * Trim special characters, and replace '-' with '_' since '-' is used to
1485  * separate different DMI fields in the card long name. Only number and
1486  * alphabet characters and a few separator characters are kept.
1487  */
cleanup_dmi_name(char * name)1488 static void cleanup_dmi_name(char *name)
1489 {
1490 	int i, j = 0;
1491 
1492 	for (i = 0; name[i]; i++) {
1493 		if (isalnum(name[i]) || (name[i] == '.')
1494 		    || (name[i] == '_'))
1495 			name[j++] = name[i];
1496 		else if (name[i] == '-')
1497 			name[j++] = '_';
1498 	}
1499 
1500 	name[j] = '\0';
1501 }
1502 
1503 /*
1504  * Check if a DMI field is valid, i.e. not containing any string
1505  * in the black list.
1506  */
is_dmi_valid(const char * field)1507 static int is_dmi_valid(const char *field)
1508 {
1509 	int i = 0;
1510 
1511 	while (dmi_blacklist[i]) {
1512 		if (strstr(field, dmi_blacklist[i]))
1513 			return 0;
1514 		i++;
1515 	}
1516 
1517 	return 1;
1518 }
1519 
1520 /*
1521  * Append a string to card->dmi_longname with character cleanups.
1522  */
append_dmi_string(struct snd_soc_card * card,const char * str)1523 static void append_dmi_string(struct snd_soc_card *card, const char *str)
1524 {
1525 	char *dst = card->dmi_longname;
1526 	size_t dst_len = sizeof(card->dmi_longname);
1527 	size_t len;
1528 
1529 	len = strlen(dst);
1530 	snprintf(dst + len, dst_len - len, "-%s", str);
1531 
1532 	len++;	/* skip the separator "-" */
1533 	if (len < dst_len)
1534 		cleanup_dmi_name(dst + len);
1535 }
1536 
1537 /**
1538  * snd_soc_set_dmi_name() - Register DMI names to card
1539  * @card: The card to register DMI names
1540  * @flavour: The flavour "differentiator" for the card amongst its peers.
1541  *
1542  * An Intel machine driver may be used by many different devices but are
1543  * difficult for userspace to differentiate, since machine drivers ususally
1544  * use their own name as the card short name and leave the card long name
1545  * blank. To differentiate such devices and fix bugs due to lack of
1546  * device-specific configurations, this function allows DMI info to be used
1547  * as the sound card long name, in the format of
1548  * "vendor-product-version-board"
1549  * (Character '-' is used to separate different DMI fields here).
1550  * This will help the user space to load the device-specific Use Case Manager
1551  * (UCM) configurations for the card.
1552  *
1553  * Possible card long names may be:
1554  * DellInc.-XPS139343-01-0310JH
1555  * ASUSTeKCOMPUTERINC.-T100TA-1.0-T100TA
1556  * Circuitco-MinnowboardMaxD0PLATFORM-D0-MinnowBoardMAX
1557  *
1558  * This function also supports flavoring the card longname to provide
1559  * the extra differentiation, like "vendor-product-version-board-flavor".
1560  *
1561  * We only keep number and alphabet characters and a few separator characters
1562  * in the card long name since UCM in the user space uses the card long names
1563  * as card configuration directory names and AudoConf cannot support special
1564  * charactors like SPACE.
1565  *
1566  * Returns 0 on success, otherwise a negative error code.
1567  */
snd_soc_set_dmi_name(struct snd_soc_card * card,const char * flavour)1568 int snd_soc_set_dmi_name(struct snd_soc_card *card, const char *flavour)
1569 {
1570 	const char *vendor, *product, *product_version, *board;
1571 
1572 	if (card->long_name)
1573 		return 0; /* long name already set by driver or from DMI */
1574 
1575 	if (!dmi_available)
1576 		return 0;
1577 
1578 	/* make up dmi long name as: vendor-product-version-board */
1579 	vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1580 	if (!vendor || !is_dmi_valid(vendor)) {
1581 		dev_warn(card->dev, "ASoC: no DMI vendor name!\n");
1582 		return 0;
1583 	}
1584 
1585 	snprintf(card->dmi_longname, sizeof(card->dmi_longname), "%s", vendor);
1586 	cleanup_dmi_name(card->dmi_longname);
1587 
1588 	product = dmi_get_system_info(DMI_PRODUCT_NAME);
1589 	if (product && is_dmi_valid(product)) {
1590 		append_dmi_string(card, product);
1591 
1592 		/*
1593 		 * some vendors like Lenovo may only put a self-explanatory
1594 		 * name in the product version field
1595 		 */
1596 		product_version = dmi_get_system_info(DMI_PRODUCT_VERSION);
1597 		if (product_version && is_dmi_valid(product_version))
1598 			append_dmi_string(card, product_version);
1599 	}
1600 
1601 	board = dmi_get_system_info(DMI_BOARD_NAME);
1602 	if (board && is_dmi_valid(board)) {
1603 		if (!product || strcasecmp(board, product))
1604 			append_dmi_string(card, board);
1605 	} else if (!product) {
1606 		/* fall back to using legacy name */
1607 		dev_warn(card->dev, "ASoC: no DMI board/product name!\n");
1608 		return 0;
1609 	}
1610 
1611 	/* Add flavour to dmi long name */
1612 	if (flavour)
1613 		append_dmi_string(card, flavour);
1614 
1615 	/* set the card long name */
1616 	card->long_name = card->dmi_longname;
1617 
1618 	return 0;
1619 }
1620 EXPORT_SYMBOL_GPL(snd_soc_set_dmi_name);
1621 #endif /* CONFIG_DMI */
1622 
soc_check_tplg_fes(struct snd_soc_card * card)1623 static void soc_check_tplg_fes(struct snd_soc_card *card)
1624 {
1625 	struct snd_soc_component *component;
1626 	const struct snd_soc_component_driver *comp_drv;
1627 	struct snd_soc_dai_link *dai_link;
1628 	int i;
1629 
1630 	for_each_component(component) {
1631 
1632 		/* does this component override BEs ? */
1633 		if (!component->driver->ignore_machine)
1634 			continue;
1635 
1636 		/* for this machine ? */
1637 		if (!strcmp(component->driver->ignore_machine,
1638 			    card->dev->driver->name))
1639 			goto match;
1640 		if (strcmp(component->driver->ignore_machine,
1641 			   dev_name(card->dev)))
1642 			continue;
1643 match:
1644 		/* machine matches, so override the rtd data */
1645 		for_each_card_prelinks(card, i, dai_link) {
1646 
1647 			/* ignore this FE */
1648 			if (dai_link->dynamic) {
1649 				dai_link->ignore = true;
1650 				continue;
1651 			}
1652 
1653 			dev_dbg(card->dev, "info: override BE DAI link %s\n",
1654 				card->dai_link[i].name);
1655 
1656 			/* override platform component */
1657 			if (!dai_link->platforms) {
1658 				dev_err(card->dev, "init platform error");
1659 				continue;
1660 			}
1661 
1662 			if (component->dev->of_node)
1663 				dai_link->platforms->of_node = component->dev->of_node;
1664 			else
1665 				dai_link->platforms->name = component->name;
1666 
1667 			/* convert non BE into BE */
1668 			if (!dai_link->no_pcm) {
1669 				dai_link->no_pcm = 1;
1670 
1671 				if (dai_link->dpcm_playback)
1672 					dev_warn(card->dev,
1673 						 "invalid configuration, dailink %s has flags no_pcm=0 and dpcm_playback=1\n",
1674 						 dai_link->name);
1675 				if (dai_link->dpcm_capture)
1676 					dev_warn(card->dev,
1677 						 "invalid configuration, dailink %s has flags no_pcm=0 and dpcm_capture=1\n",
1678 						 dai_link->name);
1679 
1680 				/* convert normal link into DPCM one */
1681 				if (!(dai_link->dpcm_playback ||
1682 				      dai_link->dpcm_capture)) {
1683 					dai_link->dpcm_playback = !dai_link->capture_only;
1684 					dai_link->dpcm_capture = !dai_link->playback_only;
1685 				}
1686 			}
1687 
1688 			/*
1689 			 * override any BE fixups
1690 			 * see
1691 			 *	snd_soc_link_be_hw_params_fixup()
1692 			 */
1693 			dai_link->be_hw_params_fixup =
1694 				component->driver->be_hw_params_fixup;
1695 
1696 			/*
1697 			 * most BE links don't set stream name, so set it to
1698 			 * dai link name if it's NULL to help bind widgets.
1699 			 */
1700 			if (!dai_link->stream_name)
1701 				dai_link->stream_name = dai_link->name;
1702 		}
1703 
1704 		/* Inform userspace we are using alternate topology */
1705 		if (component->driver->topology_name_prefix) {
1706 
1707 			/* topology shortname created? */
1708 			if (!card->topology_shortname_created) {
1709 				comp_drv = component->driver;
1710 
1711 				snprintf(card->topology_shortname, 32, "%s-%s",
1712 					 comp_drv->topology_name_prefix,
1713 					 card->name);
1714 				card->topology_shortname_created = true;
1715 			}
1716 
1717 			/* use topology shortname */
1718 			card->name = card->topology_shortname;
1719 		}
1720 	}
1721 }
1722 
1723 #define soc_setup_card_name(name, name1, name2, norm)		\
1724 	__soc_setup_card_name(name, sizeof(name), name1, name2, norm)
__soc_setup_card_name(char * name,int len,const char * name1,const char * name2,int normalization)1725 static void __soc_setup_card_name(char *name, int len,
1726 				  const char *name1, const char *name2,
1727 				  int normalization)
1728 {
1729 	int i;
1730 
1731 	snprintf(name, len, "%s", name1 ? name1 : name2);
1732 
1733 	if (!normalization)
1734 		return;
1735 
1736 	/*
1737 	 * Name normalization
1738 	 *
1739 	 * The driver name is somewhat special, as it's used as a key for
1740 	 * searches in the user-space.
1741 	 *
1742 	 * ex)
1743 	 *	"abcd??efg" -> "abcd__efg"
1744 	 */
1745 	for (i = 0; i < len; i++) {
1746 		switch (name[i]) {
1747 		case '_':
1748 		case '-':
1749 		case '\0':
1750 			break;
1751 		default:
1752 			if (!isalnum(name[i]))
1753 				name[i] = '_';
1754 			break;
1755 		}
1756 	}
1757 }
1758 
soc_cleanup_card_resources(struct snd_soc_card * card)1759 static void soc_cleanup_card_resources(struct snd_soc_card *card)
1760 {
1761 	struct snd_soc_pcm_runtime *rtd, *n;
1762 
1763 	if (card->snd_card)
1764 		snd_card_disconnect_sync(card->snd_card);
1765 
1766 	snd_soc_dapm_shutdown(card);
1767 
1768 	/* remove and free each DAI */
1769 	soc_remove_link_dais(card);
1770 	soc_remove_link_components(card);
1771 
1772 	for_each_card_rtds_safe(card, rtd, n)
1773 		snd_soc_remove_pcm_runtime(card, rtd);
1774 
1775 	/* remove auxiliary devices */
1776 	soc_remove_aux_devices(card);
1777 	soc_unbind_aux_dev(card);
1778 
1779 	snd_soc_dapm_free(&card->dapm);
1780 	soc_cleanup_card_debugfs(card);
1781 
1782 	/* remove the card */
1783 	snd_soc_card_remove(card);
1784 
1785 	if (card->snd_card) {
1786 		snd_card_free(card->snd_card);
1787 		card->snd_card = NULL;
1788 	}
1789 }
1790 
snd_soc_unbind_card(struct snd_soc_card * card,bool unregister)1791 static void snd_soc_unbind_card(struct snd_soc_card *card, bool unregister)
1792 {
1793 	if (card->instantiated) {
1794 		card->instantiated = false;
1795 		snd_soc_flush_all_delayed_work(card);
1796 
1797 		soc_cleanup_card_resources(card);
1798 		if (!unregister)
1799 			list_add(&card->list, &unbind_card_list);
1800 	} else {
1801 		if (unregister)
1802 			list_del(&card->list);
1803 	}
1804 }
1805 
snd_soc_bind_card(struct snd_soc_card * card)1806 static int snd_soc_bind_card(struct snd_soc_card *card)
1807 {
1808 	struct snd_soc_pcm_runtime *rtd;
1809 	struct snd_soc_component *component;
1810 	struct snd_soc_dai_link *dai_link;
1811 	int ret, i;
1812 
1813 	mutex_lock(&client_mutex);
1814 	mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
1815 
1816 	snd_soc_dapm_init(&card->dapm, card, NULL);
1817 
1818 	/* check whether any platform is ignore machine FE and using topology */
1819 	soc_check_tplg_fes(card);
1820 
1821 	/* bind aux_devs too */
1822 	ret = soc_bind_aux_dev(card);
1823 	if (ret < 0)
1824 		goto probe_end;
1825 
1826 	/* add predefined DAI links to the list */
1827 	card->num_rtd = 0;
1828 	for_each_card_prelinks(card, i, dai_link) {
1829 		ret = snd_soc_add_pcm_runtime(card, dai_link);
1830 		if (ret < 0)
1831 			goto probe_end;
1832 	}
1833 
1834 	/* card bind complete so register a sound card */
1835 	ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1836 			card->owner, 0, &card->snd_card);
1837 	if (ret < 0) {
1838 		dev_err(card->dev,
1839 			"ASoC: can't create sound card for card %s: %d\n",
1840 			card->name, ret);
1841 		goto probe_end;
1842 	}
1843 
1844 	soc_init_card_debugfs(card);
1845 
1846 	soc_resume_init(card);
1847 
1848 	ret = snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1849 					card->num_dapm_widgets);
1850 	if (ret < 0)
1851 		goto probe_end;
1852 
1853 	ret = snd_soc_dapm_new_controls(&card->dapm, card->of_dapm_widgets,
1854 					card->num_of_dapm_widgets);
1855 	if (ret < 0)
1856 		goto probe_end;
1857 
1858 	/* initialise the sound card only once */
1859 	ret = snd_soc_card_probe(card);
1860 	if (ret < 0)
1861 		goto probe_end;
1862 
1863 	/* probe all components used by DAI links on this card */
1864 	ret = soc_probe_link_components(card);
1865 	if (ret < 0) {
1866 		dev_err(card->dev,
1867 			"ASoC: failed to instantiate card %d\n", ret);
1868 		goto probe_end;
1869 	}
1870 
1871 	/* probe auxiliary components */
1872 	ret = soc_probe_aux_devices(card);
1873 	if (ret < 0) {
1874 		dev_err(card->dev,
1875 			"ASoC: failed to probe aux component %d\n", ret);
1876 		goto probe_end;
1877 	}
1878 
1879 	/* probe all DAI links on this card */
1880 	ret = soc_probe_link_dais(card);
1881 	if (ret < 0) {
1882 		dev_err(card->dev,
1883 			"ASoC: failed to instantiate card %d\n", ret);
1884 		goto probe_end;
1885 	}
1886 
1887 	for_each_card_rtds(card, rtd) {
1888 		ret = soc_init_pcm_runtime(card, rtd);
1889 		if (ret < 0)
1890 			goto probe_end;
1891 	}
1892 
1893 	snd_soc_dapm_link_dai_widgets(card);
1894 	snd_soc_dapm_connect_dai_link_widgets(card);
1895 
1896 	ret = snd_soc_add_card_controls(card, card->controls,
1897 					card->num_controls);
1898 	if (ret < 0)
1899 		goto probe_end;
1900 
1901 	ret = snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1902 				      card->num_dapm_routes);
1903 	if (ret < 0) {
1904 		if (card->disable_route_checks) {
1905 			dev_info(card->dev,
1906 				 "%s: disable_route_checks set, ignoring errors on add_routes\n",
1907 				 __func__);
1908 		} else {
1909 			dev_err(card->dev,
1910 				 "%s: snd_soc_dapm_add_routes failed: %d\n",
1911 				 __func__, ret);
1912 			goto probe_end;
1913 		}
1914 	}
1915 
1916 	ret = snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes,
1917 				      card->num_of_dapm_routes);
1918 	if (ret < 0)
1919 		goto probe_end;
1920 
1921 	/* try to set some sane longname if DMI is available */
1922 	snd_soc_set_dmi_name(card, NULL);
1923 
1924 	soc_setup_card_name(card->snd_card->shortname,
1925 			    card->name, NULL, 0);
1926 	soc_setup_card_name(card->snd_card->longname,
1927 			    card->long_name, card->name, 0);
1928 	soc_setup_card_name(card->snd_card->driver,
1929 			    card->driver_name, card->name, 1);
1930 
1931 	if (card->components) {
1932 		/* the current implementation of snd_component_add() accepts */
1933 		/* multiple components in the string separated by space, */
1934 		/* but the string collision (identical string) check might */
1935 		/* not work correctly */
1936 		ret = snd_component_add(card->snd_card, card->components);
1937 		if (ret < 0) {
1938 			dev_err(card->dev, "ASoC: %s snd_component_add() failed: %d\n",
1939 				card->name, ret);
1940 			goto probe_end;
1941 		}
1942 	}
1943 
1944 	ret = snd_soc_card_late_probe(card);
1945 	if (ret < 0)
1946 		goto probe_end;
1947 
1948 	snd_soc_dapm_new_widgets(card);
1949 
1950 	ret = snd_card_register(card->snd_card);
1951 	if (ret < 0) {
1952 		dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1953 				ret);
1954 		goto probe_end;
1955 	}
1956 
1957 	card->instantiated = 1;
1958 	dapm_mark_endpoints_dirty(card);
1959 	snd_soc_dapm_sync(&card->dapm);
1960 
1961 	/* deactivate pins to sleep state */
1962 	for_each_card_components(card, component)
1963 		if (!snd_soc_component_active(component))
1964 			pinctrl_pm_select_sleep_state(component->dev);
1965 
1966 probe_end:
1967 	if (ret < 0)
1968 		soc_cleanup_card_resources(card);
1969 
1970 	mutex_unlock(&card->mutex);
1971 	mutex_unlock(&client_mutex);
1972 
1973 	return ret;
1974 }
1975 
1976 /* probes a new socdev */
soc_probe(struct platform_device * pdev)1977 static int soc_probe(struct platform_device *pdev)
1978 {
1979 	struct snd_soc_card *card = platform_get_drvdata(pdev);
1980 
1981 	/*
1982 	 * no card, so machine driver should be registering card
1983 	 * we should not be here in that case so ret error
1984 	 */
1985 	if (!card)
1986 		return -EINVAL;
1987 
1988 	dev_warn(&pdev->dev,
1989 		 "ASoC: machine %s should use snd_soc_register_card()\n",
1990 		 card->name);
1991 
1992 	/* Bodge while we unpick instantiation */
1993 	card->dev = &pdev->dev;
1994 
1995 	return devm_snd_soc_register_card(&pdev->dev, card);
1996 }
1997 
snd_soc_poweroff(struct device * dev)1998 int snd_soc_poweroff(struct device *dev)
1999 {
2000 	struct snd_soc_card *card = dev_get_drvdata(dev);
2001 	struct snd_soc_component *component;
2002 
2003 	if (!card->instantiated)
2004 		return 0;
2005 
2006 	/*
2007 	 * Flush out pmdown_time work - we actually do want to run it
2008 	 * now, we're shutting down so no imminent restart.
2009 	 */
2010 	snd_soc_flush_all_delayed_work(card);
2011 
2012 	snd_soc_dapm_shutdown(card);
2013 
2014 	/* deactivate pins to sleep state */
2015 	for_each_card_components(card, component)
2016 		pinctrl_pm_select_sleep_state(component->dev);
2017 
2018 	return 0;
2019 }
2020 EXPORT_SYMBOL_GPL(snd_soc_poweroff);
2021 
2022 const struct dev_pm_ops snd_soc_pm_ops = {
2023 	.suspend = snd_soc_suspend,
2024 	.resume = snd_soc_resume,
2025 	.freeze = snd_soc_suspend,
2026 	.thaw = snd_soc_resume,
2027 	.poweroff = snd_soc_poweroff,
2028 	.restore = snd_soc_resume,
2029 };
2030 EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
2031 
2032 /* ASoC platform driver */
2033 static struct platform_driver soc_driver = {
2034 	.driver		= {
2035 		.name		= "soc-audio",
2036 		.pm		= &snd_soc_pm_ops,
2037 	},
2038 	.probe		= soc_probe,
2039 };
2040 
2041 /**
2042  * snd_soc_cnew - create new control
2043  * @_template: control template
2044  * @data: control private data
2045  * @long_name: control long name
2046  * @prefix: control name prefix
2047  *
2048  * Create a new mixer control from a template control.
2049  *
2050  * Returns 0 for success, else error.
2051  */
snd_soc_cnew(const struct snd_kcontrol_new * _template,void * data,const char * long_name,const char * prefix)2052 struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2053 				  void *data, const char *long_name,
2054 				  const char *prefix)
2055 {
2056 	struct snd_kcontrol_new template;
2057 	struct snd_kcontrol *kcontrol;
2058 	char *name = NULL;
2059 
2060 	memcpy(&template, _template, sizeof(template));
2061 	template.index = 0;
2062 
2063 	if (!long_name)
2064 		long_name = template.name;
2065 
2066 	if (prefix) {
2067 		name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
2068 		if (!name)
2069 			return NULL;
2070 
2071 		template.name = name;
2072 	} else {
2073 		template.name = long_name;
2074 	}
2075 
2076 	kcontrol = snd_ctl_new1(&template, data);
2077 
2078 	kfree(name);
2079 
2080 	return kcontrol;
2081 }
2082 EXPORT_SYMBOL_GPL(snd_soc_cnew);
2083 
snd_soc_add_controls(struct snd_card * card,struct device * dev,const struct snd_kcontrol_new * controls,int num_controls,const char * prefix,void * data)2084 static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2085 	const struct snd_kcontrol_new *controls, int num_controls,
2086 	const char *prefix, void *data)
2087 {
2088 	int err, i;
2089 
2090 	for (i = 0; i < num_controls; i++) {
2091 		const struct snd_kcontrol_new *control = &controls[i];
2092 
2093 		err = snd_ctl_add(card, snd_soc_cnew(control, data,
2094 						     control->name, prefix));
2095 		if (err < 0) {
2096 			dev_err(dev, "ASoC: Failed to add %s: %d\n",
2097 				control->name, err);
2098 			return err;
2099 		}
2100 	}
2101 
2102 	return 0;
2103 }
2104 
2105 /**
2106  * snd_soc_add_component_controls - Add an array of controls to a component.
2107  *
2108  * @component: Component to add controls to
2109  * @controls: Array of controls to add
2110  * @num_controls: Number of elements in the array
2111  *
2112  * Return: 0 for success, else error.
2113  */
snd_soc_add_component_controls(struct snd_soc_component * component,const struct snd_kcontrol_new * controls,unsigned int num_controls)2114 int snd_soc_add_component_controls(struct snd_soc_component *component,
2115 	const struct snd_kcontrol_new *controls, unsigned int num_controls)
2116 {
2117 	struct snd_card *card = component->card->snd_card;
2118 
2119 	return snd_soc_add_controls(card, component->dev, controls,
2120 			num_controls, component->name_prefix, component);
2121 }
2122 EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
2123 
2124 /**
2125  * snd_soc_add_card_controls - add an array of controls to a SoC card.
2126  * Convenience function to add a list of controls.
2127  *
2128  * @soc_card: SoC card to add controls to
2129  * @controls: array of controls to add
2130  * @num_controls: number of elements in the array
2131  *
2132  * Return 0 for success, else error.
2133  */
snd_soc_add_card_controls(struct snd_soc_card * soc_card,const struct snd_kcontrol_new * controls,int num_controls)2134 int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2135 	const struct snd_kcontrol_new *controls, int num_controls)
2136 {
2137 	struct snd_card *card = soc_card->snd_card;
2138 
2139 	return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2140 			NULL, soc_card);
2141 }
2142 EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2143 
2144 /**
2145  * snd_soc_add_dai_controls - add an array of controls to a DAI.
2146  * Convienience function to add a list of controls.
2147  *
2148  * @dai: DAI to add controls to
2149  * @controls: array of controls to add
2150  * @num_controls: number of elements in the array
2151  *
2152  * Return 0 for success, else error.
2153  */
snd_soc_add_dai_controls(struct snd_soc_dai * dai,const struct snd_kcontrol_new * controls,int num_controls)2154 int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2155 	const struct snd_kcontrol_new *controls, int num_controls)
2156 {
2157 	struct snd_card *card = dai->component->card->snd_card;
2158 
2159 	return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2160 			NULL, dai);
2161 }
2162 EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2163 
2164 /**
2165  * snd_soc_register_card - Register a card with the ASoC core
2166  *
2167  * @card: Card to register
2168  *
2169  */
snd_soc_register_card(struct snd_soc_card * card)2170 int snd_soc_register_card(struct snd_soc_card *card)
2171 {
2172 	if (!card->name || !card->dev)
2173 		return -EINVAL;
2174 
2175 	dev_set_drvdata(card->dev, card);
2176 
2177 	INIT_LIST_HEAD(&card->widgets);
2178 	INIT_LIST_HEAD(&card->paths);
2179 	INIT_LIST_HEAD(&card->dapm_list);
2180 	INIT_LIST_HEAD(&card->aux_comp_list);
2181 	INIT_LIST_HEAD(&card->component_dev_list);
2182 	INIT_LIST_HEAD(&card->list);
2183 	INIT_LIST_HEAD(&card->rtd_list);
2184 	INIT_LIST_HEAD(&card->dapm_dirty);
2185 	INIT_LIST_HEAD(&card->dobj_list);
2186 
2187 	card->instantiated = 0;
2188 	mutex_init(&card->mutex);
2189 	mutex_init(&card->dapm_mutex);
2190 	mutex_init(&card->pcm_mutex);
2191 	spin_lock_init(&card->dpcm_lock);
2192 
2193 	return snd_soc_bind_card(card);
2194 }
2195 EXPORT_SYMBOL_GPL(snd_soc_register_card);
2196 
2197 /**
2198  * snd_soc_unregister_card - Unregister a card with the ASoC core
2199  *
2200  * @card: Card to unregister
2201  *
2202  */
snd_soc_unregister_card(struct snd_soc_card * card)2203 int snd_soc_unregister_card(struct snd_soc_card *card)
2204 {
2205 	mutex_lock(&client_mutex);
2206 	snd_soc_unbind_card(card, true);
2207 	mutex_unlock(&client_mutex);
2208 	dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
2209 
2210 	return 0;
2211 }
2212 EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
2213 
2214 /*
2215  * Simplify DAI link configuration by removing ".-1" from device names
2216  * and sanitizing names.
2217  */
fmt_single_name(struct device * dev,int * id)2218 static char *fmt_single_name(struct device *dev, int *id)
2219 {
2220 	const char *devname = dev_name(dev);
2221 	char *found, *name;
2222 	unsigned int id1, id2;
2223 
2224 	if (devname == NULL)
2225 		return NULL;
2226 
2227 	name = devm_kstrdup(dev, devname, GFP_KERNEL);
2228 
2229 	/* are we a "%s.%d" name (platform and SPI components) */
2230 	found = strstr(name, dev->driver->name);
2231 	if (found) {
2232 		/* get ID */
2233 		if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2234 
2235 			/* discard ID from name if ID == -1 */
2236 			if (*id == -1)
2237 				found[strlen(dev->driver->name)] = '\0';
2238 		}
2239 
2240 	/* I2C component devices are named "bus-addr" */
2241 	} else if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2242 
2243 		/* create unique ID number from I2C addr and bus */
2244 		*id = ((id1 & 0xffff) << 16) + id2;
2245 
2246 		devm_kfree(dev, name);
2247 
2248 		/* sanitize component name for DAI link creation */
2249 		name = devm_kasprintf(dev, GFP_KERNEL, "%s.%s", dev->driver->name, devname);
2250 	} else {
2251 		*id = 0;
2252 	}
2253 
2254 	return name;
2255 }
2256 
2257 /*
2258  * Simplify DAI link naming for single devices with multiple DAIs by removing
2259  * any ".-1" and using the DAI name (instead of device name).
2260  */
fmt_multiple_name(struct device * dev,struct snd_soc_dai_driver * dai_drv)2261 static inline char *fmt_multiple_name(struct device *dev,
2262 		struct snd_soc_dai_driver *dai_drv)
2263 {
2264 	if (dai_drv->name == NULL) {
2265 		dev_err(dev,
2266 			"ASoC: error - multiple DAI %s registered with no name\n",
2267 			dev_name(dev));
2268 		return NULL;
2269 	}
2270 
2271 	return devm_kstrdup(dev, dai_drv->name, GFP_KERNEL);
2272 }
2273 
snd_soc_unregister_dai(struct snd_soc_dai * dai)2274 void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2275 {
2276 	dev_dbg(dai->dev, "ASoC: Unregistered DAI '%s'\n", dai->name);
2277 	list_del(&dai->list);
2278 }
2279 EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2280 
2281 /**
2282  * snd_soc_register_dai - Register a DAI dynamically & create its widgets
2283  *
2284  * @component: The component the DAIs are registered for
2285  * @dai_drv: DAI driver to use for the DAI
2286  * @legacy_dai_naming: if %true, use legacy single-name format;
2287  * 	if %false, use multiple-name format;
2288  *
2289  * Topology can use this API to register DAIs when probing a component.
2290  * These DAIs's widgets will be freed in the card cleanup and the DAIs
2291  * will be freed in the component cleanup.
2292  */
snd_soc_register_dai(struct snd_soc_component * component,struct snd_soc_dai_driver * dai_drv,bool legacy_dai_naming)2293 struct snd_soc_dai *snd_soc_register_dai(struct snd_soc_component *component,
2294 					 struct snd_soc_dai_driver *dai_drv,
2295 					 bool legacy_dai_naming)
2296 {
2297 	struct device *dev = component->dev;
2298 	struct snd_soc_dai *dai;
2299 
2300 	dev_dbg(dev, "ASoC: dynamically register DAI %s\n", dev_name(dev));
2301 
2302 	lockdep_assert_held(&client_mutex);
2303 
2304 	dai = devm_kzalloc(dev, sizeof(*dai), GFP_KERNEL);
2305 	if (dai == NULL)
2306 		return NULL;
2307 
2308 	/*
2309 	 * Back in the old days when we still had component-less DAIs,
2310 	 * instead of having a static name, component-less DAIs would
2311 	 * inherit the name of the parent device so it is possible to
2312 	 * register multiple instances of the DAI. We still need to keep
2313 	 * the same naming style even though those DAIs are not
2314 	 * component-less anymore.
2315 	 */
2316 	if (legacy_dai_naming &&
2317 	    (dai_drv->id == 0 || dai_drv->name == NULL)) {
2318 		dai->name = fmt_single_name(dev, &dai->id);
2319 	} else {
2320 		dai->name = fmt_multiple_name(dev, dai_drv);
2321 		if (dai_drv->id)
2322 			dai->id = dai_drv->id;
2323 		else
2324 			dai->id = component->num_dai;
2325 	}
2326 	if (!dai->name)
2327 		return NULL;
2328 
2329 	dai->component = component;
2330 	dai->dev = dev;
2331 	dai->driver = dai_drv;
2332 
2333 	/* see for_each_component_dais */
2334 	list_add_tail(&dai->list, &component->dai_list);
2335 	component->num_dai++;
2336 
2337 	dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
2338 	return dai;
2339 }
2340 
2341 /**
2342  * snd_soc_unregister_dais - Unregister DAIs from the ASoC core
2343  *
2344  * @component: The component for which the DAIs should be unregistered
2345  */
snd_soc_unregister_dais(struct snd_soc_component * component)2346 static void snd_soc_unregister_dais(struct snd_soc_component *component)
2347 {
2348 	struct snd_soc_dai *dai, *_dai;
2349 
2350 	for_each_component_dais_safe(component, dai, _dai)
2351 		snd_soc_unregister_dai(dai);
2352 }
2353 
2354 /**
2355  * snd_soc_register_dais - Register a DAI with the ASoC core
2356  *
2357  * @component: The component the DAIs are registered for
2358  * @dai_drv: DAI driver to use for the DAIs
2359  * @count: Number of DAIs
2360  */
snd_soc_register_dais(struct snd_soc_component * component,struct snd_soc_dai_driver * dai_drv,size_t count)2361 static int snd_soc_register_dais(struct snd_soc_component *component,
2362 				 struct snd_soc_dai_driver *dai_drv,
2363 				 size_t count)
2364 {
2365 	struct snd_soc_dai *dai;
2366 	unsigned int i;
2367 	int ret;
2368 
2369 	for (i = 0; i < count; i++) {
2370 		dai = snd_soc_register_dai(component, dai_drv + i, count == 1 &&
2371 				  !component->driver->non_legacy_dai_naming);
2372 		if (dai == NULL) {
2373 			ret = -ENOMEM;
2374 			goto err;
2375 		}
2376 	}
2377 
2378 	return 0;
2379 
2380 err:
2381 	snd_soc_unregister_dais(component);
2382 
2383 	return ret;
2384 }
2385 
2386 #define ENDIANNESS_MAP(name) \
2387 	(SNDRV_PCM_FMTBIT_##name##LE | SNDRV_PCM_FMTBIT_##name##BE)
2388 static u64 endianness_format_map[] = {
2389 	ENDIANNESS_MAP(S16_),
2390 	ENDIANNESS_MAP(U16_),
2391 	ENDIANNESS_MAP(S24_),
2392 	ENDIANNESS_MAP(U24_),
2393 	ENDIANNESS_MAP(S32_),
2394 	ENDIANNESS_MAP(U32_),
2395 	ENDIANNESS_MAP(S24_3),
2396 	ENDIANNESS_MAP(U24_3),
2397 	ENDIANNESS_MAP(S20_3),
2398 	ENDIANNESS_MAP(U20_3),
2399 	ENDIANNESS_MAP(S18_3),
2400 	ENDIANNESS_MAP(U18_3),
2401 	ENDIANNESS_MAP(FLOAT_),
2402 	ENDIANNESS_MAP(FLOAT64_),
2403 	ENDIANNESS_MAP(IEC958_SUBFRAME_),
2404 };
2405 
2406 /*
2407  * Fix up the DAI formats for endianness: codecs don't actually see
2408  * the endianness of the data but we're using the CPU format
2409  * definitions which do need to include endianness so we ensure that
2410  * codec DAIs always have both big and little endian variants set.
2411  */
convert_endianness_formats(struct snd_soc_pcm_stream * stream)2412 static void convert_endianness_formats(struct snd_soc_pcm_stream *stream)
2413 {
2414 	int i;
2415 
2416 	for (i = 0; i < ARRAY_SIZE(endianness_format_map); i++)
2417 		if (stream->formats & endianness_format_map[i])
2418 			stream->formats |= endianness_format_map[i];
2419 }
2420 
snd_soc_try_rebind_card(void)2421 static void snd_soc_try_rebind_card(void)
2422 {
2423 	struct snd_soc_card *card, *c;
2424 
2425 	list_for_each_entry_safe(card, c, &unbind_card_list, list)
2426 		if (!snd_soc_bind_card(card))
2427 			list_del(&card->list);
2428 }
2429 
snd_soc_del_component_unlocked(struct snd_soc_component * component)2430 static void snd_soc_del_component_unlocked(struct snd_soc_component *component)
2431 {
2432 	struct snd_soc_card *card = component->card;
2433 
2434 	snd_soc_unregister_dais(component);
2435 
2436 	if (card)
2437 		snd_soc_unbind_card(card, false);
2438 
2439 	list_del(&component->list);
2440 }
2441 
snd_soc_component_initialize(struct snd_soc_component * component,const struct snd_soc_component_driver * driver,struct device * dev)2442 int snd_soc_component_initialize(struct snd_soc_component *component,
2443 				 const struct snd_soc_component_driver *driver,
2444 				 struct device *dev)
2445 {
2446 	INIT_LIST_HEAD(&component->dai_list);
2447 	INIT_LIST_HEAD(&component->dobj_list);
2448 	INIT_LIST_HEAD(&component->card_list);
2449 	mutex_init(&component->io_mutex);
2450 
2451 	component->name = fmt_single_name(dev, &component->id);
2452 	if (!component->name) {
2453 		dev_err(dev, "ASoC: Failed to allocate name\n");
2454 		return -ENOMEM;
2455 	}
2456 
2457 	component->dev		= dev;
2458 	component->driver	= driver;
2459 
2460 	return 0;
2461 }
2462 EXPORT_SYMBOL_GPL(snd_soc_component_initialize);
2463 
snd_soc_add_component(struct snd_soc_component * component,struct snd_soc_dai_driver * dai_drv,int num_dai)2464 int snd_soc_add_component(struct snd_soc_component *component,
2465 			  struct snd_soc_dai_driver *dai_drv,
2466 			  int num_dai)
2467 {
2468 	int ret;
2469 	int i;
2470 
2471 	mutex_lock(&client_mutex);
2472 
2473 	if (component->driver->endianness) {
2474 		for (i = 0; i < num_dai; i++) {
2475 			convert_endianness_formats(&dai_drv[i].playback);
2476 			convert_endianness_formats(&dai_drv[i].capture);
2477 		}
2478 	}
2479 
2480 	ret = snd_soc_register_dais(component, dai_drv, num_dai);
2481 	if (ret < 0) {
2482 		dev_err(component->dev, "ASoC: Failed to register DAIs: %d\n",
2483 			ret);
2484 		goto err_cleanup;
2485 	}
2486 
2487 	if (!component->driver->write && !component->driver->read) {
2488 		if (!component->regmap)
2489 			component->regmap = dev_get_regmap(component->dev,
2490 							   NULL);
2491 		if (component->regmap)
2492 			snd_soc_component_setup_regmap(component);
2493 	}
2494 
2495 	/* see for_each_component */
2496 	list_add(&component->list, &component_list);
2497 
2498 err_cleanup:
2499 	if (ret < 0)
2500 		snd_soc_del_component_unlocked(component);
2501 
2502 	mutex_unlock(&client_mutex);
2503 
2504 	if (ret == 0)
2505 		snd_soc_try_rebind_card();
2506 
2507 	return ret;
2508 }
2509 EXPORT_SYMBOL_GPL(snd_soc_add_component);
2510 
snd_soc_register_component(struct device * dev,const struct snd_soc_component_driver * component_driver,struct snd_soc_dai_driver * dai_drv,int num_dai)2511 int snd_soc_register_component(struct device *dev,
2512 			const struct snd_soc_component_driver *component_driver,
2513 			struct snd_soc_dai_driver *dai_drv,
2514 			int num_dai)
2515 {
2516 	struct snd_soc_component *component;
2517 	int ret;
2518 
2519 	component = devm_kzalloc(dev, sizeof(*component), GFP_KERNEL);
2520 	if (!component)
2521 		return -ENOMEM;
2522 
2523 	ret = snd_soc_component_initialize(component, component_driver, dev);
2524 	if (ret < 0)
2525 		return ret;
2526 
2527 	return snd_soc_add_component(component, dai_drv, num_dai);
2528 }
2529 EXPORT_SYMBOL_GPL(snd_soc_register_component);
2530 
2531 /**
2532  * snd_soc_unregister_component_by_driver - Unregister component using a given driver
2533  * from the ASoC core
2534  *
2535  * @dev: The device to unregister
2536  * @component_driver: The component driver to unregister
2537  */
snd_soc_unregister_component_by_driver(struct device * dev,const struct snd_soc_component_driver * component_driver)2538 void snd_soc_unregister_component_by_driver(struct device *dev,
2539 					    const struct snd_soc_component_driver *component_driver)
2540 {
2541 	struct snd_soc_component *component;
2542 
2543 	if (!component_driver)
2544 		return;
2545 
2546 	mutex_lock(&client_mutex);
2547 	component = snd_soc_lookup_component_nolocked(dev, component_driver->name);
2548 	if (!component)
2549 		goto out;
2550 
2551 	snd_soc_del_component_unlocked(component);
2552 
2553 out:
2554 	mutex_unlock(&client_mutex);
2555 }
2556 EXPORT_SYMBOL_GPL(snd_soc_unregister_component_by_driver);
2557 
2558 /**
2559  * snd_soc_unregister_component - Unregister all related component
2560  * from the ASoC core
2561  *
2562  * @dev: The device to unregister
2563  */
snd_soc_unregister_component(struct device * dev)2564 void snd_soc_unregister_component(struct device *dev)
2565 {
2566 	struct snd_soc_component *component;
2567 
2568 	mutex_lock(&client_mutex);
2569 	while (1) {
2570 		component = snd_soc_lookup_component_nolocked(dev, NULL);
2571 		if (!component)
2572 			break;
2573 
2574 		snd_soc_del_component_unlocked(component);
2575 	}
2576 	mutex_unlock(&client_mutex);
2577 }
2578 EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
2579 
2580 /* Retrieve a card's name from device tree */
snd_soc_of_parse_card_name(struct snd_soc_card * card,const char * propname)2581 int snd_soc_of_parse_card_name(struct snd_soc_card *card,
2582 			       const char *propname)
2583 {
2584 	struct device_node *np;
2585 	int ret;
2586 
2587 	if (!card->dev) {
2588 		pr_err("card->dev is not set before calling %s\n", __func__);
2589 		return -EINVAL;
2590 	}
2591 
2592 	np = card->dev->of_node;
2593 
2594 	ret = of_property_read_string_index(np, propname, 0, &card->name);
2595 	/*
2596 	 * EINVAL means the property does not exist. This is fine providing
2597 	 * card->name was previously set, which is checked later in
2598 	 * snd_soc_register_card.
2599 	 */
2600 	if (ret < 0 && ret != -EINVAL) {
2601 		dev_err(card->dev,
2602 			"ASoC: Property '%s' could not be read: %d\n",
2603 			propname, ret);
2604 		return ret;
2605 	}
2606 
2607 	return 0;
2608 }
2609 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
2610 
2611 static const struct snd_soc_dapm_widget simple_widgets[] = {
2612 	SND_SOC_DAPM_MIC("Microphone", NULL),
2613 	SND_SOC_DAPM_LINE("Line", NULL),
2614 	SND_SOC_DAPM_HP("Headphone", NULL),
2615 	SND_SOC_DAPM_SPK("Speaker", NULL),
2616 };
2617 
snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card * card,const char * propname)2618 int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
2619 					  const char *propname)
2620 {
2621 	struct device_node *np = card->dev->of_node;
2622 	struct snd_soc_dapm_widget *widgets;
2623 	const char *template, *wname;
2624 	int i, j, num_widgets, ret;
2625 
2626 	num_widgets = of_property_count_strings(np, propname);
2627 	if (num_widgets < 0) {
2628 		dev_err(card->dev,
2629 			"ASoC: Property '%s' does not exist\n",	propname);
2630 		return -EINVAL;
2631 	}
2632 	if (num_widgets & 1) {
2633 		dev_err(card->dev,
2634 			"ASoC: Property '%s' length is not even\n", propname);
2635 		return -EINVAL;
2636 	}
2637 
2638 	num_widgets /= 2;
2639 	if (!num_widgets) {
2640 		dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
2641 			propname);
2642 		return -EINVAL;
2643 	}
2644 
2645 	widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
2646 			       GFP_KERNEL);
2647 	if (!widgets) {
2648 		dev_err(card->dev,
2649 			"ASoC: Could not allocate memory for widgets\n");
2650 		return -ENOMEM;
2651 	}
2652 
2653 	for (i = 0; i < num_widgets; i++) {
2654 		ret = of_property_read_string_index(np, propname,
2655 			2 * i, &template);
2656 		if (ret) {
2657 			dev_err(card->dev,
2658 				"ASoC: Property '%s' index %d read error:%d\n",
2659 				propname, 2 * i, ret);
2660 			return -EINVAL;
2661 		}
2662 
2663 		for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
2664 			if (!strncmp(template, simple_widgets[j].name,
2665 				     strlen(simple_widgets[j].name))) {
2666 				widgets[i] = simple_widgets[j];
2667 				break;
2668 			}
2669 		}
2670 
2671 		if (j >= ARRAY_SIZE(simple_widgets)) {
2672 			dev_err(card->dev,
2673 				"ASoC: DAPM widget '%s' is not supported\n",
2674 				template);
2675 			return -EINVAL;
2676 		}
2677 
2678 		ret = of_property_read_string_index(np, propname,
2679 						    (2 * i) + 1,
2680 						    &wname);
2681 		if (ret) {
2682 			dev_err(card->dev,
2683 				"ASoC: Property '%s' index %d read error:%d\n",
2684 				propname, (2 * i) + 1, ret);
2685 			return -EINVAL;
2686 		}
2687 
2688 		widgets[i].name = wname;
2689 	}
2690 
2691 	card->of_dapm_widgets = widgets;
2692 	card->num_of_dapm_widgets = num_widgets;
2693 
2694 	return 0;
2695 }
2696 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
2697 
snd_soc_of_get_slot_mask(struct device_node * np,const char * prop_name,unsigned int * mask)2698 int snd_soc_of_get_slot_mask(struct device_node *np,
2699 			     const char *prop_name,
2700 			     unsigned int *mask)
2701 {
2702 	u32 val;
2703 	const __be32 *of_slot_mask = of_get_property(np, prop_name, &val);
2704 	int i;
2705 
2706 	if (!of_slot_mask)
2707 		return 0;
2708 	val /= sizeof(u32);
2709 	for (i = 0; i < val; i++)
2710 		if (be32_to_cpup(&of_slot_mask[i]))
2711 			*mask |= (1 << i);
2712 
2713 	return val;
2714 }
2715 EXPORT_SYMBOL_GPL(snd_soc_of_get_slot_mask);
2716 
snd_soc_of_parse_tdm_slot(struct device_node * np,unsigned int * tx_mask,unsigned int * rx_mask,unsigned int * slots,unsigned int * slot_width)2717 int snd_soc_of_parse_tdm_slot(struct device_node *np,
2718 			      unsigned int *tx_mask,
2719 			      unsigned int *rx_mask,
2720 			      unsigned int *slots,
2721 			      unsigned int *slot_width)
2722 {
2723 	u32 val;
2724 	int ret;
2725 
2726 	if (tx_mask)
2727 		snd_soc_of_get_slot_mask(np, "dai-tdm-slot-tx-mask", tx_mask);
2728 	if (rx_mask)
2729 		snd_soc_of_get_slot_mask(np, "dai-tdm-slot-rx-mask", rx_mask);
2730 
2731 	if (of_property_read_bool(np, "dai-tdm-slot-num")) {
2732 		ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
2733 		if (ret)
2734 			return ret;
2735 
2736 		if (slots)
2737 			*slots = val;
2738 	}
2739 
2740 	if (of_property_read_bool(np, "dai-tdm-slot-width")) {
2741 		ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
2742 		if (ret)
2743 			return ret;
2744 
2745 		if (slot_width)
2746 			*slot_width = val;
2747 	}
2748 
2749 	return 0;
2750 }
2751 EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
2752 
snd_soc_of_parse_node_prefix(struct device_node * np,struct snd_soc_codec_conf * codec_conf,struct device_node * of_node,const char * propname)2753 void snd_soc_of_parse_node_prefix(struct device_node *np,
2754 				  struct snd_soc_codec_conf *codec_conf,
2755 				  struct device_node *of_node,
2756 				  const char *propname)
2757 {
2758 	const char *str;
2759 	int ret;
2760 
2761 	ret = of_property_read_string(np, propname, &str);
2762 	if (ret < 0) {
2763 		/* no prefix is not error */
2764 		return;
2765 	}
2766 
2767 	codec_conf->dlc.of_node	= of_node;
2768 	codec_conf->name_prefix	= str;
2769 }
2770 EXPORT_SYMBOL_GPL(snd_soc_of_parse_node_prefix);
2771 
snd_soc_of_parse_audio_routing(struct snd_soc_card * card,const char * propname)2772 int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
2773 				   const char *propname)
2774 {
2775 	struct device_node *np = card->dev->of_node;
2776 	int num_routes;
2777 	struct snd_soc_dapm_route *routes;
2778 	int i, ret;
2779 
2780 	num_routes = of_property_count_strings(np, propname);
2781 	if (num_routes < 0 || num_routes & 1) {
2782 		dev_err(card->dev,
2783 			"ASoC: Property '%s' does not exist or its length is not even\n",
2784 			propname);
2785 		return -EINVAL;
2786 	}
2787 	num_routes /= 2;
2788 
2789 	routes = devm_kcalloc(card->dev, num_routes, sizeof(*routes),
2790 			      GFP_KERNEL);
2791 	if (!routes) {
2792 		dev_err(card->dev,
2793 			"ASoC: Could not allocate DAPM route table\n");
2794 		return -EINVAL;
2795 	}
2796 
2797 	for (i = 0; i < num_routes; i++) {
2798 		ret = of_property_read_string_index(np, propname,
2799 			2 * i, &routes[i].sink);
2800 		if (ret) {
2801 			dev_err(card->dev,
2802 				"ASoC: Property '%s' index %d could not be read: %d\n",
2803 				propname, 2 * i, ret);
2804 			return -EINVAL;
2805 		}
2806 		ret = of_property_read_string_index(np, propname,
2807 			(2 * i) + 1, &routes[i].source);
2808 		if (ret) {
2809 			dev_err(card->dev,
2810 				"ASoC: Property '%s' index %d could not be read: %d\n",
2811 				propname, (2 * i) + 1, ret);
2812 			return -EINVAL;
2813 		}
2814 	}
2815 
2816 	card->num_of_dapm_routes = num_routes;
2817 	card->of_dapm_routes = routes;
2818 
2819 	return 0;
2820 }
2821 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
2822 
snd_soc_of_parse_aux_devs(struct snd_soc_card * card,const char * propname)2823 int snd_soc_of_parse_aux_devs(struct snd_soc_card *card, const char *propname)
2824 {
2825 	struct device_node *node = card->dev->of_node;
2826 	struct snd_soc_aux_dev *aux;
2827 	int num, i;
2828 
2829 	num = of_count_phandle_with_args(node, propname, NULL);
2830 	if (num == -ENOENT) {
2831 		return 0;
2832 	} else if (num < 0) {
2833 		dev_err(card->dev, "ASOC: Property '%s' could not be read: %d\n",
2834 			propname, num);
2835 		return num;
2836 	}
2837 
2838 	aux = devm_kcalloc(card->dev, num, sizeof(*aux), GFP_KERNEL);
2839 	if (!aux)
2840 		return -ENOMEM;
2841 	card->aux_dev = aux;
2842 	card->num_aux_devs = num;
2843 
2844 	for_each_card_pre_auxs(card, i, aux) {
2845 		aux->dlc.of_node = of_parse_phandle(node, propname, i);
2846 		if (!aux->dlc.of_node)
2847 			return -EINVAL;
2848 	}
2849 
2850 	return 0;
2851 }
2852 EXPORT_SYMBOL_GPL(snd_soc_of_parse_aux_devs);
2853 
snd_soc_of_parse_daifmt(struct device_node * np,const char * prefix,struct device_node ** bitclkmaster,struct device_node ** framemaster)2854 unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
2855 				     const char *prefix,
2856 				     struct device_node **bitclkmaster,
2857 				     struct device_node **framemaster)
2858 {
2859 	int ret, i;
2860 	char prop[128];
2861 	unsigned int format = 0;
2862 	int bit, frame;
2863 	const char *str;
2864 	struct {
2865 		char *name;
2866 		unsigned int val;
2867 	} of_fmt_table[] = {
2868 		{ "i2s",	SND_SOC_DAIFMT_I2S },
2869 		{ "right_j",	SND_SOC_DAIFMT_RIGHT_J },
2870 		{ "left_j",	SND_SOC_DAIFMT_LEFT_J },
2871 		{ "dsp_a",	SND_SOC_DAIFMT_DSP_A },
2872 		{ "dsp_b",	SND_SOC_DAIFMT_DSP_B },
2873 		{ "ac97",	SND_SOC_DAIFMT_AC97 },
2874 		{ "pdm",	SND_SOC_DAIFMT_PDM},
2875 		{ "msb",	SND_SOC_DAIFMT_MSB },
2876 		{ "lsb",	SND_SOC_DAIFMT_LSB },
2877 	};
2878 
2879 	if (!prefix)
2880 		prefix = "";
2881 
2882 	/*
2883 	 * check "dai-format = xxx"
2884 	 * or    "[prefix]format = xxx"
2885 	 * SND_SOC_DAIFMT_FORMAT_MASK area
2886 	 */
2887 	ret = of_property_read_string(np, "dai-format", &str);
2888 	if (ret < 0) {
2889 		snprintf(prop, sizeof(prop), "%sformat", prefix);
2890 		ret = of_property_read_string(np, prop, &str);
2891 	}
2892 	if (ret == 0) {
2893 		for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
2894 			if (strcmp(str, of_fmt_table[i].name) == 0) {
2895 				format |= of_fmt_table[i].val;
2896 				break;
2897 			}
2898 		}
2899 	}
2900 
2901 	/*
2902 	 * check "[prefix]continuous-clock"
2903 	 * SND_SOC_DAIFMT_CLOCK_MASK area
2904 	 */
2905 	snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
2906 	if (of_property_read_bool(np, prop))
2907 		format |= SND_SOC_DAIFMT_CONT;
2908 	else
2909 		format |= SND_SOC_DAIFMT_GATED;
2910 
2911 	/*
2912 	 * check "[prefix]bitclock-inversion"
2913 	 * check "[prefix]frame-inversion"
2914 	 * SND_SOC_DAIFMT_INV_MASK area
2915 	 */
2916 	snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
2917 	bit = !!of_get_property(np, prop, NULL);
2918 
2919 	snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
2920 	frame = !!of_get_property(np, prop, NULL);
2921 
2922 	switch ((bit << 4) + frame) {
2923 	case 0x11:
2924 		format |= SND_SOC_DAIFMT_IB_IF;
2925 		break;
2926 	case 0x10:
2927 		format |= SND_SOC_DAIFMT_IB_NF;
2928 		break;
2929 	case 0x01:
2930 		format |= SND_SOC_DAIFMT_NB_IF;
2931 		break;
2932 	default:
2933 		/* SND_SOC_DAIFMT_NB_NF is default */
2934 		break;
2935 	}
2936 
2937 	/*
2938 	 * check "[prefix]bitclock-master"
2939 	 * check "[prefix]frame-master"
2940 	 * SND_SOC_DAIFMT_MASTER_MASK area
2941 	 */
2942 	snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
2943 	bit = !!of_get_property(np, prop, NULL);
2944 	if (bit && bitclkmaster)
2945 		*bitclkmaster = of_parse_phandle(np, prop, 0);
2946 
2947 	snprintf(prop, sizeof(prop), "%sframe-master", prefix);
2948 	frame = !!of_get_property(np, prop, NULL);
2949 	if (frame && framemaster)
2950 		*framemaster = of_parse_phandle(np, prop, 0);
2951 
2952 	switch ((bit << 4) + frame) {
2953 	case 0x11:
2954 		format |= SND_SOC_DAIFMT_CBM_CFM;
2955 		break;
2956 	case 0x10:
2957 		format |= SND_SOC_DAIFMT_CBM_CFS;
2958 		break;
2959 	case 0x01:
2960 		format |= SND_SOC_DAIFMT_CBS_CFM;
2961 		break;
2962 	default:
2963 		format |= SND_SOC_DAIFMT_CBS_CFS;
2964 		break;
2965 	}
2966 
2967 	return format;
2968 }
2969 EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
2970 
snd_soc_get_dai_id(struct device_node * ep)2971 int snd_soc_get_dai_id(struct device_node *ep)
2972 {
2973 	struct snd_soc_component *component;
2974 	struct snd_soc_dai_link_component dlc;
2975 	int ret;
2976 
2977 	dlc.of_node	= of_graph_get_port_parent(ep);
2978 	dlc.name	= NULL;
2979 	/*
2980 	 * For example HDMI case, HDMI has video/sound port,
2981 	 * but ALSA SoC needs sound port number only.
2982 	 * Thus counting HDMI DT port/endpoint doesn't work.
2983 	 * Then, it should have .of_xlate_dai_id
2984 	 */
2985 	ret = -ENOTSUPP;
2986 	mutex_lock(&client_mutex);
2987 	component = soc_find_component(&dlc);
2988 	if (component)
2989 		ret = snd_soc_component_of_xlate_dai_id(component, ep);
2990 	mutex_unlock(&client_mutex);
2991 
2992 	of_node_put(dlc.of_node);
2993 
2994 	return ret;
2995 }
2996 EXPORT_SYMBOL_GPL(snd_soc_get_dai_id);
2997 
snd_soc_get_dai_name(const struct of_phandle_args * args,const char ** dai_name)2998 int snd_soc_get_dai_name(const struct of_phandle_args *args,
2999 				const char **dai_name)
3000 {
3001 	struct snd_soc_component *pos;
3002 	struct device_node *component_of_node;
3003 	int ret = -EPROBE_DEFER;
3004 
3005 	mutex_lock(&client_mutex);
3006 	for_each_component(pos) {
3007 		component_of_node = soc_component_to_node(pos);
3008 
3009 		if (component_of_node != args->np)
3010 			continue;
3011 
3012 		ret = snd_soc_component_of_xlate_dai_name(pos, args, dai_name);
3013 		if (ret == -ENOTSUPP) {
3014 			struct snd_soc_dai *dai;
3015 			int id = -1;
3016 
3017 			switch (args->args_count) {
3018 			case 0:
3019 				id = 0; /* same as dai_drv[0] */
3020 				break;
3021 			case 1:
3022 				id = args->args[0];
3023 				break;
3024 			default:
3025 				/* not supported */
3026 				break;
3027 			}
3028 
3029 			if (id < 0 || id >= pos->num_dai) {
3030 				ret = -EINVAL;
3031 				continue;
3032 			}
3033 
3034 			ret = 0;
3035 
3036 			/* find target DAI */
3037 			for_each_component_dais(pos, dai) {
3038 				if (id == 0)
3039 					break;
3040 				id--;
3041 			}
3042 
3043 			*dai_name = dai->driver->name;
3044 			if (!*dai_name)
3045 				*dai_name = pos->name;
3046 		} else if (ret) {
3047 			/*
3048 			 * if another error than ENOTSUPP is returned go on and
3049 			 * check if another component is provided with the same
3050 			 * node. This may happen if a device provides several
3051 			 * components
3052 			 */
3053 			continue;
3054 		}
3055 
3056 		break;
3057 	}
3058 	mutex_unlock(&client_mutex);
3059 	return ret;
3060 }
3061 EXPORT_SYMBOL_GPL(snd_soc_get_dai_name);
3062 
snd_soc_of_get_dai_name(struct device_node * of_node,const char ** dai_name)3063 int snd_soc_of_get_dai_name(struct device_node *of_node,
3064 			    const char **dai_name)
3065 {
3066 	struct of_phandle_args args;
3067 	int ret;
3068 
3069 	ret = of_parse_phandle_with_args(of_node, "sound-dai",
3070 					 "#sound-dai-cells", 0, &args);
3071 	if (ret)
3072 		return ret;
3073 
3074 	ret = snd_soc_get_dai_name(&args, dai_name);
3075 
3076 	of_node_put(args.np);
3077 
3078 	return ret;
3079 }
3080 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3081 
3082 /*
3083  * snd_soc_of_put_dai_link_codecs - Dereference device nodes in the codecs array
3084  * @dai_link: DAI link
3085  *
3086  * Dereference device nodes acquired by snd_soc_of_get_dai_link_codecs().
3087  */
snd_soc_of_put_dai_link_codecs(struct snd_soc_dai_link * dai_link)3088 void snd_soc_of_put_dai_link_codecs(struct snd_soc_dai_link *dai_link)
3089 {
3090 	struct snd_soc_dai_link_component *component;
3091 	int index;
3092 
3093 	for_each_link_codecs(dai_link, index, component) {
3094 		if (!component->of_node)
3095 			break;
3096 		of_node_put(component->of_node);
3097 		component->of_node = NULL;
3098 	}
3099 }
3100 EXPORT_SYMBOL_GPL(snd_soc_of_put_dai_link_codecs);
3101 
3102 /*
3103  * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3104  * @dev: Card device
3105  * @of_node: Device node
3106  * @dai_link: DAI link
3107  *
3108  * Builds an array of CODEC DAI components from the DAI link property
3109  * 'sound-dai'.
3110  * The array is set in the DAI link and the number of DAIs is set accordingly.
3111  * The device nodes in the array (of_node) must be dereferenced by calling
3112  * snd_soc_of_put_dai_link_codecs() on @dai_link.
3113  *
3114  * Returns 0 for success
3115  */
snd_soc_of_get_dai_link_codecs(struct device * dev,struct device_node * of_node,struct snd_soc_dai_link * dai_link)3116 int snd_soc_of_get_dai_link_codecs(struct device *dev,
3117 				   struct device_node *of_node,
3118 				   struct snd_soc_dai_link *dai_link)
3119 {
3120 	struct of_phandle_args args;
3121 	struct snd_soc_dai_link_component *component;
3122 	char *name;
3123 	int index, num_codecs, ret;
3124 
3125 	/* Count the number of CODECs */
3126 	name = "sound-dai";
3127 	num_codecs = of_count_phandle_with_args(of_node, name,
3128 						"#sound-dai-cells");
3129 	if (num_codecs <= 0) {
3130 		if (num_codecs == -ENOENT)
3131 			dev_err(dev, "No 'sound-dai' property\n");
3132 		else
3133 			dev_err(dev, "Bad phandle in 'sound-dai'\n");
3134 		return num_codecs;
3135 	}
3136 	component = devm_kcalloc(dev,
3137 				 num_codecs, sizeof(*component),
3138 				 GFP_KERNEL);
3139 	if (!component)
3140 		return -ENOMEM;
3141 	dai_link->codecs = component;
3142 	dai_link->num_codecs = num_codecs;
3143 
3144 	/* Parse the list */
3145 	for_each_link_codecs(dai_link, index, component) {
3146 		ret = of_parse_phandle_with_args(of_node, name,
3147 						 "#sound-dai-cells",
3148 						 index, &args);
3149 		if (ret)
3150 			goto err;
3151 		component->of_node = args.np;
3152 		ret = snd_soc_get_dai_name(&args, &component->dai_name);
3153 		if (ret < 0)
3154 			goto err;
3155 	}
3156 	return 0;
3157 err:
3158 	snd_soc_of_put_dai_link_codecs(dai_link);
3159 	dai_link->codecs = NULL;
3160 	dai_link->num_codecs = 0;
3161 	return ret;
3162 }
3163 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3164 
snd_soc_init(void)3165 static int __init snd_soc_init(void)
3166 {
3167 	snd_soc_debugfs_init();
3168 	snd_soc_util_init();
3169 
3170 	return platform_driver_register(&soc_driver);
3171 }
3172 module_init(snd_soc_init);
3173 
snd_soc_exit(void)3174 static void __exit snd_soc_exit(void)
3175 {
3176 	snd_soc_util_exit();
3177 	snd_soc_debugfs_exit();
3178 
3179 	platform_driver_unregister(&soc_driver);
3180 }
3181 module_exit(snd_soc_exit);
3182 
3183 /* Module information */
3184 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
3185 MODULE_DESCRIPTION("ALSA SoC Core");
3186 MODULE_LICENSE("GPL");
3187 MODULE_ALIAS("platform:soc-audio");
3188