ASoC: soc-core: remove legacy style dai_link
[sfrench/cifs-2.6.git] / sound / soc / soc-core.c
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 <sound/core.h>
35 #include <sound/jack.h>
36 #include <sound/pcm.h>
37 #include <sound/pcm_params.h>
38 #include <sound/soc.h>
39 #include <sound/soc-dpcm.h>
40 #include <sound/soc-topology.h>
41 #include <sound/initval.h>
42
43 #define CREATE_TRACE_POINTS
44 #include <trace/events/asoc.h>
45
46 #define NAME_SIZE       32
47
48 #ifdef CONFIG_DEBUG_FS
49 struct dentry *snd_soc_debugfs_root;
50 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
51 #endif
52
53 static DEFINE_MUTEX(client_mutex);
54 static LIST_HEAD(component_list);
55 static LIST_HEAD(unbind_card_list);
56
57 #define for_each_component(component)                   \
58         list_for_each_entry(component, &component_list, list)
59
60 /*
61  * This is used if driver don't need to have CPU/Codec/Platform
62  * dai_link. see soc.h
63  */
64 struct snd_soc_dai_link_component null_dailink_component[0];
65 EXPORT_SYMBOL_GPL(null_dailink_component);
66
67 /*
68  * This is a timeout to do a DAPM powerdown after a stream is closed().
69  * It can be used to eliminate pops between different playback streams, e.g.
70  * between two audio tracks.
71  */
72 static int pmdown_time = 5000;
73 module_param(pmdown_time, int, 0);
74 MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
75
76 /*
77  * If a DMI filed contain strings in this blacklist (e.g.
78  * "Type2 - Board Manufacturer" or "Type1 - TBD by OEM"), it will be taken
79  * as invalid and dropped when setting the card long name from DMI info.
80  */
81 static const char * const dmi_blacklist[] = {
82         "To be filled by OEM",
83         "TBD by OEM",
84         "Default String",
85         "Board Manufacturer",
86         "Board Vendor Name",
87         "Board Product Name",
88         NULL,   /* terminator */
89 };
90
91 static ssize_t pmdown_time_show(struct device *dev,
92                                 struct device_attribute *attr, char *buf)
93 {
94         struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
95
96         return sprintf(buf, "%ld\n", rtd->pmdown_time);
97 }
98
99 static ssize_t pmdown_time_set(struct device *dev,
100                                struct device_attribute *attr,
101                                const char *buf, size_t count)
102 {
103         struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
104         int ret;
105
106         ret = kstrtol(buf, 10, &rtd->pmdown_time);
107         if (ret)
108                 return ret;
109
110         return count;
111 }
112
113 static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
114
115 static struct attribute *soc_dev_attrs[] = {
116         &dev_attr_pmdown_time.attr,
117         NULL
118 };
119
120 static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
121                                        struct attribute *attr, int idx)
122 {
123         struct device *dev = kobj_to_dev(kobj);
124         struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
125
126         if (attr == &dev_attr_pmdown_time.attr)
127                 return attr->mode; /* always visible */
128         return rtd->num_codecs ? attr->mode : 0; /* enabled only with codec */
129 }
130
131 static const struct attribute_group soc_dapm_dev_group = {
132         .attrs = soc_dapm_dev_attrs,
133         .is_visible = soc_dev_attr_is_visible,
134 };
135
136 static const struct attribute_group soc_dev_group = {
137         .attrs = soc_dev_attrs,
138         .is_visible = soc_dev_attr_is_visible,
139 };
140
141 static const struct attribute_group *soc_dev_attr_groups[] = {
142         &soc_dapm_dev_group,
143         &soc_dev_group,
144         NULL
145 };
146
147 #ifdef CONFIG_DEBUG_FS
148 static void soc_init_component_debugfs(struct snd_soc_component *component)
149 {
150         if (!component->card->debugfs_card_root)
151                 return;
152
153         if (component->debugfs_prefix) {
154                 char *name;
155
156                 name = kasprintf(GFP_KERNEL, "%s:%s",
157                         component->debugfs_prefix, component->name);
158                 if (name) {
159                         component->debugfs_root = debugfs_create_dir(name,
160                                 component->card->debugfs_card_root);
161                         kfree(name);
162                 }
163         } else {
164                 component->debugfs_root = debugfs_create_dir(component->name,
165                                 component->card->debugfs_card_root);
166         }
167
168         if (!component->debugfs_root) {
169                 dev_warn(component->dev,
170                         "ASoC: Failed to create component debugfs directory\n");
171                 return;
172         }
173
174         snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component),
175                 component->debugfs_root);
176 }
177
178 static void soc_cleanup_component_debugfs(struct snd_soc_component *component)
179 {
180         debugfs_remove_recursive(component->debugfs_root);
181 }
182
183 static int dai_list_show(struct seq_file *m, void *v)
184 {
185         struct snd_soc_component *component;
186         struct snd_soc_dai *dai;
187
188         mutex_lock(&client_mutex);
189
190         for_each_component(component)
191                 for_each_component_dais(component, dai)
192                         seq_printf(m, "%s\n", dai->name);
193
194         mutex_unlock(&client_mutex);
195
196         return 0;
197 }
198 DEFINE_SHOW_ATTRIBUTE(dai_list);
199
200 static int component_list_show(struct seq_file *m, void *v)
201 {
202         struct snd_soc_component *component;
203
204         mutex_lock(&client_mutex);
205
206         for_each_component(component)
207                 seq_printf(m, "%s\n", component->name);
208
209         mutex_unlock(&client_mutex);
210
211         return 0;
212 }
213 DEFINE_SHOW_ATTRIBUTE(component_list);
214
215 static void soc_init_card_debugfs(struct snd_soc_card *card)
216 {
217         if (!snd_soc_debugfs_root)
218                 return;
219
220         card->debugfs_card_root = debugfs_create_dir(card->name,
221                                                      snd_soc_debugfs_root);
222         if (!card->debugfs_card_root) {
223                 dev_warn(card->dev,
224                          "ASoC: Failed to create card debugfs directory\n");
225                 return;
226         }
227
228         card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
229                                                     card->debugfs_card_root,
230                                                     &card->pop_time);
231         if (!card->debugfs_pop_time)
232                 dev_warn(card->dev,
233                          "ASoC: Failed to create pop time debugfs file\n");
234 }
235
236 static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
237 {
238         if (!card->debugfs_card_root)
239                 return;
240         debugfs_remove_recursive(card->debugfs_card_root);
241         card->debugfs_card_root = NULL;
242 }
243
244 static void snd_soc_debugfs_init(void)
245 {
246         snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
247         if (IS_ERR_OR_NULL(snd_soc_debugfs_root)) {
248                 pr_warn("ASoC: Failed to create debugfs directory\n");
249                 snd_soc_debugfs_root = NULL;
250                 return;
251         }
252
253         if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
254                                  &dai_list_fops))
255                 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
256
257         if (!debugfs_create_file("components", 0444, snd_soc_debugfs_root, NULL,
258                                  &component_list_fops))
259                 pr_warn("ASoC: Failed to create component list debugfs file\n");
260 }
261
262 static void snd_soc_debugfs_exit(void)
263 {
264         debugfs_remove_recursive(snd_soc_debugfs_root);
265 }
266
267 #else
268
269 static inline void soc_init_component_debugfs(
270         struct snd_soc_component *component)
271 {
272 }
273
274 static inline void soc_cleanup_component_debugfs(
275         struct snd_soc_component *component)
276 {
277 }
278
279 static inline void soc_init_card_debugfs(struct snd_soc_card *card)
280 {
281 }
282
283 static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
284 {
285 }
286
287 static inline void snd_soc_debugfs_init(void)
288 {
289 }
290
291 static inline void snd_soc_debugfs_exit(void)
292 {
293 }
294
295 #endif
296
297 static int snd_soc_rtdcom_add(struct snd_soc_pcm_runtime *rtd,
298                               struct snd_soc_component *component)
299 {
300         struct snd_soc_rtdcom_list *rtdcom;
301         struct snd_soc_rtdcom_list *new_rtdcom;
302
303         for_each_rtdcom(rtd, rtdcom) {
304                 /* already connected */
305                 if (rtdcom->component == component)
306                         return 0;
307         }
308
309         new_rtdcom = kmalloc(sizeof(*new_rtdcom), GFP_KERNEL);
310         if (!new_rtdcom)
311                 return -ENOMEM;
312
313         new_rtdcom->component = component;
314         INIT_LIST_HEAD(&new_rtdcom->list);
315
316         list_add_tail(&new_rtdcom->list, &rtd->component_list);
317
318         return 0;
319 }
320
321 static void snd_soc_rtdcom_del_all(struct snd_soc_pcm_runtime *rtd)
322 {
323         struct snd_soc_rtdcom_list *rtdcom1, *rtdcom2;
324
325         for_each_rtdcom_safe(rtd, rtdcom1, rtdcom2)
326                 kfree(rtdcom1);
327
328         INIT_LIST_HEAD(&rtd->component_list);
329 }
330
331 struct snd_soc_component *snd_soc_rtdcom_lookup(struct snd_soc_pcm_runtime *rtd,
332                                                 const char *driver_name)
333 {
334         struct snd_soc_rtdcom_list *rtdcom;
335
336         if (!driver_name)
337                 return NULL;
338
339         for_each_rtdcom(rtd, rtdcom) {
340                 const char *component_name = rtdcom->component->driver->name;
341
342                 if (!component_name)
343                         continue;
344
345                 if ((component_name == driver_name) ||
346                     strcmp(component_name, driver_name) == 0)
347                         return rtdcom->component;
348         }
349
350         return NULL;
351 }
352 EXPORT_SYMBOL_GPL(snd_soc_rtdcom_lookup);
353
354 struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
355                 const char *dai_link, int stream)
356 {
357         struct snd_soc_pcm_runtime *rtd;
358
359         for_each_card_rtds(card, rtd) {
360                 if (rtd->dai_link->no_pcm &&
361                         !strcmp(rtd->dai_link->name, dai_link))
362                         return rtd->pcm->streams[stream].substream;
363         }
364         dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
365         return NULL;
366 }
367 EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
368
369 static const struct snd_soc_ops null_snd_soc_ops;
370
371 static struct snd_soc_pcm_runtime *soc_new_pcm_runtime(
372         struct snd_soc_card *card, struct snd_soc_dai_link *dai_link)
373 {
374         struct snd_soc_pcm_runtime *rtd;
375
376         rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
377         if (!rtd)
378                 return NULL;
379
380         INIT_LIST_HEAD(&rtd->component_list);
381         rtd->card = card;
382         rtd->dai_link = dai_link;
383         if (!rtd->dai_link->ops)
384                 rtd->dai_link->ops = &null_snd_soc_ops;
385
386         rtd->codec_dais = kcalloc(dai_link->num_codecs,
387                                         sizeof(struct snd_soc_dai *),
388                                         GFP_KERNEL);
389         if (!rtd->codec_dais) {
390                 kfree(rtd);
391                 return NULL;
392         }
393
394         return rtd;
395 }
396
397 static void soc_free_pcm_runtime(struct snd_soc_pcm_runtime *rtd)
398 {
399         kfree(rtd->codec_dais);
400         snd_soc_rtdcom_del_all(rtd);
401         kfree(rtd);
402 }
403
404 static void soc_add_pcm_runtime(struct snd_soc_card *card,
405                 struct snd_soc_pcm_runtime *rtd)
406 {
407         list_add_tail(&rtd->list, &card->rtd_list);
408         rtd->num = card->num_rtd;
409         card->num_rtd++;
410 }
411
412 static void soc_remove_pcm_runtimes(struct snd_soc_card *card)
413 {
414         struct snd_soc_pcm_runtime *rtd, *_rtd;
415
416         for_each_card_rtds_safe(card, rtd, _rtd) {
417                 list_del(&rtd->list);
418                 soc_free_pcm_runtime(rtd);
419         }
420
421         card->num_rtd = 0;
422 }
423
424 struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
425                 const char *dai_link)
426 {
427         struct snd_soc_pcm_runtime *rtd;
428
429         for_each_card_rtds(card, rtd) {
430                 if (!strcmp(rtd->dai_link->name, dai_link))
431                         return rtd;
432         }
433         dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
434         return NULL;
435 }
436 EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
437
438 static void snd_soc_flush_all_delayed_work(struct snd_soc_card *card)
439 {
440         struct snd_soc_pcm_runtime *rtd;
441
442         for_each_card_rtds(card, rtd)
443                 flush_delayed_work(&rtd->delayed_work);
444 }
445
446 static void codec2codec_close_delayed_work(struct work_struct *work)
447 {
448         /*
449          * Currently nothing to do for c2c links
450          * Since c2c links are internal nodes in the DAPM graph and
451          * don't interface with the outside world or application layer
452          * we don't have to do any special handling on close.
453          */
454 }
455
456 #ifdef CONFIG_PM_SLEEP
457 /* powers down audio subsystem for suspend */
458 int snd_soc_suspend(struct device *dev)
459 {
460         struct snd_soc_card *card = dev_get_drvdata(dev);
461         struct snd_soc_component *component;
462         struct snd_soc_pcm_runtime *rtd;
463         int i;
464
465         /* If the card is not initialized yet there is nothing to do */
466         if (!card->instantiated)
467                 return 0;
468
469         /*
470          * Due to the resume being scheduled into a workqueue we could
471          * suspend before that's finished - wait for it to complete.
472          */
473         snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
474
475         /* we're going to block userspace touching us until resume completes */
476         snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
477
478         /* mute any active DACs */
479         for_each_card_rtds(card, rtd) {
480                 struct snd_soc_dai *dai;
481
482                 if (rtd->dai_link->ignore_suspend)
483                         continue;
484
485                 for_each_rtd_codec_dai(rtd, i, dai) {
486                         struct snd_soc_dai_driver *drv = dai->driver;
487
488                         if (drv->ops->digital_mute && dai->playback_active)
489                                 drv->ops->digital_mute(dai, 1);
490                 }
491         }
492
493         /* suspend all pcms */
494         for_each_card_rtds(card, rtd) {
495                 if (rtd->dai_link->ignore_suspend)
496                         continue;
497
498                 snd_pcm_suspend_all(rtd->pcm);
499         }
500
501         if (card->suspend_pre)
502                 card->suspend_pre(card);
503
504         for_each_card_rtds(card, rtd) {
505                 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
506
507                 if (rtd->dai_link->ignore_suspend)
508                         continue;
509
510                 if (cpu_dai->driver->suspend && !cpu_dai->driver->bus_control)
511                         cpu_dai->driver->suspend(cpu_dai);
512         }
513
514         /* close any waiting streams */
515         snd_soc_flush_all_delayed_work(card);
516
517         for_each_card_rtds(card, rtd) {
518
519                 if (rtd->dai_link->ignore_suspend)
520                         continue;
521
522                 snd_soc_dapm_stream_event(rtd,
523                                           SNDRV_PCM_STREAM_PLAYBACK,
524                                           SND_SOC_DAPM_STREAM_SUSPEND);
525
526                 snd_soc_dapm_stream_event(rtd,
527                                           SNDRV_PCM_STREAM_CAPTURE,
528                                           SND_SOC_DAPM_STREAM_SUSPEND);
529         }
530
531         /* Recheck all endpoints too, their state is affected by suspend */
532         dapm_mark_endpoints_dirty(card);
533         snd_soc_dapm_sync(&card->dapm);
534
535         /* suspend all COMPONENTs */
536         for_each_card_components(card, component) {
537                 struct snd_soc_dapm_context *dapm =
538                                 snd_soc_component_get_dapm(component);
539
540                 /*
541                  * If there are paths active then the COMPONENT will be held
542                  * with bias _ON and should not be suspended.
543                  */
544                 if (!component->suspended) {
545                         switch (snd_soc_dapm_get_bias_level(dapm)) {
546                         case SND_SOC_BIAS_STANDBY:
547                                 /*
548                                  * If the COMPONENT is capable of idle
549                                  * bias off then being in STANDBY
550                                  * means it's doing something,
551                                  * otherwise fall through.
552                                  */
553                                 if (dapm->idle_bias_off) {
554                                         dev_dbg(component->dev,
555                                                 "ASoC: idle_bias_off CODEC on over suspend\n");
556                                         break;
557                                 }
558                                 /* fall through */
559
560                         case SND_SOC_BIAS_OFF:
561                                 if (component->driver->suspend)
562                                         component->driver->suspend(component);
563                                 component->suspended = 1;
564                                 if (component->regmap)
565                                         regcache_mark_dirty(component->regmap);
566                                 /* deactivate pins to sleep state */
567                                 pinctrl_pm_select_sleep_state(component->dev);
568                                 break;
569                         default:
570                                 dev_dbg(component->dev,
571                                         "ASoC: COMPONENT is on over suspend\n");
572                                 break;
573                         }
574                 }
575         }
576
577         for_each_card_rtds(card, rtd) {
578                 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
579
580                 if (rtd->dai_link->ignore_suspend)
581                         continue;
582
583                 if (cpu_dai->driver->suspend && cpu_dai->driver->bus_control)
584                         cpu_dai->driver->suspend(cpu_dai);
585
586                 /* deactivate pins to sleep state */
587                 pinctrl_pm_select_sleep_state(cpu_dai->dev);
588         }
589
590         if (card->suspend_post)
591                 card->suspend_post(card);
592
593         return 0;
594 }
595 EXPORT_SYMBOL_GPL(snd_soc_suspend);
596
597 /*
598  * deferred resume work, so resume can complete before we finished
599  * setting our codec back up, which can be very slow on I2C
600  */
601 static void soc_resume_deferred(struct work_struct *work)
602 {
603         struct snd_soc_card *card =
604                         container_of(work, struct snd_soc_card,
605                                      deferred_resume_work);
606         struct snd_soc_pcm_runtime *rtd;
607         struct snd_soc_component *component;
608         int i;
609
610         /*
611          * our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
612          * so userspace apps are blocked from touching us
613          */
614
615         dev_dbg(card->dev, "ASoC: starting resume work\n");
616
617         /* Bring us up into D2 so that DAPM starts enabling things */
618         snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
619
620         if (card->resume_pre)
621                 card->resume_pre(card);
622
623         /* resume control bus DAIs */
624         for_each_card_rtds(card, rtd) {
625                 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
626
627                 if (rtd->dai_link->ignore_suspend)
628                         continue;
629
630                 if (cpu_dai->driver->resume && cpu_dai->driver->bus_control)
631                         cpu_dai->driver->resume(cpu_dai);
632         }
633
634         for_each_card_components(card, component) {
635                 if (component->suspended) {
636                         if (component->driver->resume)
637                                 component->driver->resume(component);
638                         component->suspended = 0;
639                 }
640         }
641
642         for_each_card_rtds(card, rtd) {
643
644                 if (rtd->dai_link->ignore_suspend)
645                         continue;
646
647                 snd_soc_dapm_stream_event(rtd,
648                                           SNDRV_PCM_STREAM_PLAYBACK,
649                                           SND_SOC_DAPM_STREAM_RESUME);
650
651                 snd_soc_dapm_stream_event(rtd,
652                                           SNDRV_PCM_STREAM_CAPTURE,
653                                           SND_SOC_DAPM_STREAM_RESUME);
654         }
655
656         /* unmute any active DACs */
657         for_each_card_rtds(card, rtd) {
658                 struct snd_soc_dai *dai;
659
660                 if (rtd->dai_link->ignore_suspend)
661                         continue;
662
663                 for_each_rtd_codec_dai(rtd, i, dai) {
664                         struct snd_soc_dai_driver *drv = dai->driver;
665
666                         if (drv->ops->digital_mute && dai->playback_active)
667                                 drv->ops->digital_mute(dai, 0);
668                 }
669         }
670
671         for_each_card_rtds(card, rtd) {
672                 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
673
674                 if (rtd->dai_link->ignore_suspend)
675                         continue;
676
677                 if (cpu_dai->driver->resume && !cpu_dai->driver->bus_control)
678                         cpu_dai->driver->resume(cpu_dai);
679         }
680
681         if (card->resume_post)
682                 card->resume_post(card);
683
684         dev_dbg(card->dev, "ASoC: resume work completed\n");
685
686         /* Recheck all endpoints too, their state is affected by suspend */
687         dapm_mark_endpoints_dirty(card);
688         snd_soc_dapm_sync(&card->dapm);
689
690         /* userspace can access us now we are back as we were before */
691         snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
692 }
693
694 /* powers up audio subsystem after a suspend */
695 int snd_soc_resume(struct device *dev)
696 {
697         struct snd_soc_card *card = dev_get_drvdata(dev);
698         bool bus_control = false;
699         struct snd_soc_pcm_runtime *rtd;
700         struct snd_soc_dai *codec_dai;
701         int i;
702
703         /* If the card is not initialized yet there is nothing to do */
704         if (!card->instantiated)
705                 return 0;
706
707         /* activate pins from sleep state */
708         for_each_card_rtds(card, rtd) {
709                 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
710
711                 if (cpu_dai->active)
712                         pinctrl_pm_select_default_state(cpu_dai->dev);
713
714                 for_each_rtd_codec_dai(rtd, i, codec_dai) {
715                         if (codec_dai->active)
716                                 pinctrl_pm_select_default_state(codec_dai->dev);
717                 }
718         }
719
720         /*
721          * DAIs that also act as the control bus master might have other drivers
722          * hanging off them so need to resume immediately. Other drivers don't
723          * have that problem and may take a substantial amount of time to resume
724          * due to I/O costs and anti-pop so handle them out of line.
725          */
726         for_each_card_rtds(card, rtd) {
727                 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
728
729                 bus_control |= cpu_dai->driver->bus_control;
730         }
731         if (bus_control) {
732                 dev_dbg(dev, "ASoC: Resuming control bus master immediately\n");
733                 soc_resume_deferred(&card->deferred_resume_work);
734         } else {
735                 dev_dbg(dev, "ASoC: Scheduling resume work\n");
736                 if (!schedule_work(&card->deferred_resume_work))
737                         dev_err(dev, "ASoC: resume work item may be lost\n");
738         }
739
740         return 0;
741 }
742 EXPORT_SYMBOL_GPL(snd_soc_resume);
743 #else
744 #define snd_soc_suspend NULL
745 #define snd_soc_resume NULL
746 #endif
747
748 static const struct snd_soc_dai_ops null_dai_ops = {
749 };
750
751 static struct device_node
752 *soc_component_to_node(struct snd_soc_component *component)
753 {
754         struct device_node *of_node;
755
756         of_node = component->dev->of_node;
757         if (!of_node && component->dev->parent)
758                 of_node = component->dev->parent->of_node;
759
760         return of_node;
761 }
762
763 static struct snd_soc_component *soc_find_component(
764         const struct device_node *of_node, const char *name)
765 {
766         struct snd_soc_component *component;
767         struct device_node *component_of_node;
768
769         lockdep_assert_held(&client_mutex);
770
771         for_each_component(component) {
772                 if (of_node) {
773                         component_of_node = soc_component_to_node(component);
774
775                         if (component_of_node == of_node)
776                                 return component;
777                 } else if (name && strcmp(component->name, name) == 0) {
778                         return component;
779                 }
780         }
781
782         return NULL;
783 }
784
785 static int snd_soc_is_matching_component(
786         const struct snd_soc_dai_link_component *dlc,
787         struct snd_soc_component *component)
788 {
789         struct device_node *component_of_node;
790
791         component_of_node = soc_component_to_node(component);
792
793         if (dlc->of_node && component_of_node != dlc->of_node)
794                 return 0;
795         if (dlc->name && strcmp(component->name, dlc->name))
796                 return 0;
797
798         return 1;
799 }
800
801 /**
802  * snd_soc_find_dai - Find a registered DAI
803  *
804  * @dlc: name of the DAI or the DAI driver and optional component info to match
805  *
806  * This function will search all registered components and their DAIs to
807  * find the DAI of the same name. The component's of_node and name
808  * should also match if being specified.
809  *
810  * Return: pointer of DAI, or NULL if not found.
811  */
812 struct snd_soc_dai *snd_soc_find_dai(
813         const struct snd_soc_dai_link_component *dlc)
814 {
815         struct snd_soc_component *component;
816         struct snd_soc_dai *dai;
817
818         lockdep_assert_held(&client_mutex);
819
820         /* Find CPU DAI from registered DAIs */
821         for_each_component(component) {
822                 if (!snd_soc_is_matching_component(dlc, component))
823                         continue;
824                 for_each_component_dais(component, dai) {
825                         if (dlc->dai_name && strcmp(dai->name, dlc->dai_name)
826                             && (!dai->driver->name
827                                 || strcmp(dai->driver->name, dlc->dai_name)))
828                                 continue;
829
830                         return dai;
831                 }
832         }
833
834         return NULL;
835 }
836 EXPORT_SYMBOL_GPL(snd_soc_find_dai);
837
838 /**
839  * snd_soc_find_dai_link - Find a DAI link
840  *
841  * @card: soc card
842  * @id: DAI link ID to match
843  * @name: DAI link name to match, optional
844  * @stream_name: DAI link stream name to match, optional
845  *
846  * This function will search all existing DAI links of the soc card to
847  * find the link of the same ID. Since DAI links may not have their
848  * unique ID, so name and stream name should also match if being
849  * specified.
850  *
851  * Return: pointer of DAI link, or NULL if not found.
852  */
853 struct snd_soc_dai_link *snd_soc_find_dai_link(struct snd_soc_card *card,
854                                                int id, const char *name,
855                                                const char *stream_name)
856 {
857         struct snd_soc_dai_link *link, *_link;
858
859         lockdep_assert_held(&client_mutex);
860
861         for_each_card_links_safe(card, link, _link) {
862                 if (link->id != id)
863                         continue;
864
865                 if (name && (!link->name || strcmp(name, link->name)))
866                         continue;
867
868                 if (stream_name && (!link->stream_name
869                         || strcmp(stream_name, link->stream_name)))
870                         continue;
871
872                 return link;
873         }
874
875         return NULL;
876 }
877 EXPORT_SYMBOL_GPL(snd_soc_find_dai_link);
878
879 static bool soc_is_dai_link_bound(struct snd_soc_card *card,
880                 struct snd_soc_dai_link *dai_link)
881 {
882         struct snd_soc_pcm_runtime *rtd;
883
884         for_each_card_rtds(card, rtd) {
885                 if (rtd->dai_link == dai_link)
886                         return true;
887         }
888
889         return false;
890 }
891
892 static int soc_bind_dai_link(struct snd_soc_card *card,
893         struct snd_soc_dai_link *dai_link)
894 {
895         struct snd_soc_pcm_runtime *rtd;
896         struct snd_soc_dai_link_component *codecs;
897         struct snd_soc_component *component;
898         int i;
899
900         if (dai_link->ignore)
901                 return 0;
902
903         dev_dbg(card->dev, "ASoC: binding %s\n", dai_link->name);
904
905         if (soc_is_dai_link_bound(card, dai_link)) {
906                 dev_dbg(card->dev, "ASoC: dai link %s already bound\n",
907                         dai_link->name);
908                 return 0;
909         }
910
911         rtd = soc_new_pcm_runtime(card, dai_link);
912         if (!rtd)
913                 return -ENOMEM;
914
915         /* FIXME: we need multi CPU support in the future */
916         rtd->cpu_dai = snd_soc_find_dai(dai_link->cpus);
917         if (!rtd->cpu_dai) {
918                 dev_info(card->dev, "ASoC: CPU DAI %s not registered\n",
919                          dai_link->cpus->dai_name);
920                 goto _err_defer;
921         }
922         snd_soc_rtdcom_add(rtd, rtd->cpu_dai->component);
923
924         /* Find CODEC from registered CODECs */
925         rtd->num_codecs = dai_link->num_codecs;
926         for_each_link_codecs(dai_link, i, codecs) {
927                 rtd->codec_dais[i] = snd_soc_find_dai(codecs);
928                 if (!rtd->codec_dais[i]) {
929                         dev_info(card->dev, "ASoC: CODEC DAI %s not registered\n",
930                                  codecs->dai_name);
931                         goto _err_defer;
932                 }
933                 snd_soc_rtdcom_add(rtd, rtd->codec_dais[i]->component);
934         }
935
936         /* Single codec links expect codec and codec_dai in runtime data */
937         rtd->codec_dai = rtd->codec_dais[0];
938
939         /* Find PLATFORM from registered PLATFORMs */
940         for_each_component(component) {
941                 if (!snd_soc_is_matching_component(dai_link->platforms,
942                                                    component))
943                         continue;
944
945                 snd_soc_rtdcom_add(rtd, component);
946         }
947
948         soc_add_pcm_runtime(card, rtd);
949         return 0;
950
951 _err_defer:
952         soc_free_pcm_runtime(rtd);
953         return -EPROBE_DEFER;
954 }
955
956 static void soc_cleanup_component(struct snd_soc_component *component)
957 {
958         snd_soc_component_set_jack(component, NULL, NULL);
959         list_del(&component->card_list);
960         snd_soc_dapm_free(snd_soc_component_get_dapm(component));
961         soc_cleanup_component_debugfs(component);
962         component->card = NULL;
963         if (!component->driver->module_get_upon_open)
964                 module_put(component->dev->driver->owner);
965 }
966
967 static void soc_remove_component(struct snd_soc_component *component)
968 {
969         if (!component->card)
970                 return;
971
972         if (component->driver->remove)
973                 component->driver->remove(component);
974
975         soc_cleanup_component(component);
976 }
977
978 static void soc_remove_dai(struct snd_soc_dai *dai, int order)
979 {
980         int err;
981
982         if (!dai || !dai->probed || !dai->driver ||
983             dai->driver->remove_order != order)
984                 return;
985
986         if (dai->driver->remove) {
987                 err = dai->driver->remove(dai);
988                 if (err < 0)
989                         dev_err(dai->dev,
990                                 "ASoC: failed to remove %s: %d\n",
991                                 dai->name, err);
992         }
993         dai->probed = 0;
994 }
995
996 static void soc_remove_link_dais(struct snd_soc_card *card,
997                 struct snd_soc_pcm_runtime *rtd, int order)
998 {
999         int i;
1000         struct snd_soc_dai *codec_dai;
1001
1002         /* unregister the rtd device */
1003         if (rtd->dev_registered) {
1004                 device_unregister(rtd->dev);
1005                 rtd->dev_registered = 0;
1006         }
1007
1008         /* remove the CODEC DAI */
1009         for_each_rtd_codec_dai(rtd, i, codec_dai)
1010                 soc_remove_dai(codec_dai, order);
1011
1012         soc_remove_dai(rtd->cpu_dai, order);
1013 }
1014
1015 static void soc_remove_link_components(struct snd_soc_card *card,
1016         struct snd_soc_pcm_runtime *rtd, int order)
1017 {
1018         struct snd_soc_component *component;
1019         struct snd_soc_rtdcom_list *rtdcom;
1020
1021         mutex_lock(&client_mutex);
1022         for_each_rtdcom(rtd, rtdcom) {
1023                 component = rtdcom->component;
1024
1025                 if (component->driver->remove_order == order)
1026                         soc_remove_component(component);
1027         }
1028         mutex_unlock(&client_mutex);
1029 }
1030
1031 static void soc_remove_dai_links(struct snd_soc_card *card)
1032 {
1033         int order;
1034         struct snd_soc_pcm_runtime *rtd;
1035         struct snd_soc_dai_link *link, *_link;
1036
1037         for_each_comp_order(order) {
1038                 for_each_card_rtds(card, rtd)
1039                         soc_remove_link_dais(card, rtd, order);
1040         }
1041
1042         for_each_comp_order(order) {
1043                 for_each_card_rtds(card, rtd)
1044                         soc_remove_link_components(card, rtd, order);
1045         }
1046
1047         for_each_card_links_safe(card, link, _link) {
1048                 if (link->dobj.type == SND_SOC_DOBJ_DAI_LINK)
1049                         dev_warn(card->dev, "Topology forgot to remove link %s?\n",
1050                                 link->name);
1051
1052                 list_del(&link->list);
1053         }
1054 }
1055
1056 static struct snd_soc_dai_link_component dummy_link = COMP_DUMMY();
1057
1058 static int soc_init_dai_link(struct snd_soc_card *card,
1059                              struct snd_soc_dai_link *link)
1060 {
1061         int i;
1062         struct snd_soc_dai_link_component *codec;
1063
1064         /* default Platform */
1065         if (!link->platforms || !link->num_platforms) {
1066                 link->platforms = &dummy_link;
1067                 link->num_platforms = 1;
1068         }
1069
1070         for_each_link_codecs(link, i, codec) {
1071                 /*
1072                  * Codec must be specified by 1 of name or OF node,
1073                  * not both or neither.
1074                  */
1075                 if (!!codec->name ==
1076                     !!codec->of_node) {
1077                         dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
1078                                 link->name);
1079                         return -EINVAL;
1080                 }
1081                 /* Codec DAI name must be specified */
1082                 if (!codec->dai_name) {
1083                         dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
1084                                 link->name);
1085                         return -EINVAL;
1086                 }
1087         }
1088
1089         /* FIXME */
1090         if (link->num_platforms > 1) {
1091                 dev_err(card->dev,
1092                         "ASoC: multi platform is not yet supported %s\n",
1093                         link->name);
1094                 return -EINVAL;
1095         }
1096
1097         /*
1098          * Platform may be specified by either name or OF node, but
1099          * can be left unspecified, and a dummy platform will be used.
1100          */
1101         if (link->platforms->name && link->platforms->of_node) {
1102                 dev_err(card->dev,
1103                         "ASoC: Both platform name/of_node are set for %s\n",
1104                         link->name);
1105                 return -EINVAL;
1106         }
1107
1108         /*
1109          * Defer card registartion if platform dai component is not added to
1110          * component list.
1111          */
1112         if ((link->platforms->of_node || link->platforms->name) &&
1113             !soc_find_component(link->platforms->of_node, link->platforms->name))
1114                 return -EPROBE_DEFER;
1115
1116         /* FIXME */
1117         if (link->num_cpus > 1) {
1118                 dev_err(card->dev,
1119                         "ASoC: multi cpu is not yet supported %s\n",
1120                         link->name);
1121                 return -EINVAL;
1122         }
1123
1124         /*
1125          * CPU device may be specified by either name or OF node, but
1126          * can be left unspecified, and will be matched based on DAI
1127          * name alone..
1128          */
1129         if (link->cpus->name && link->cpus->of_node) {
1130                 dev_err(card->dev,
1131                         "ASoC: Neither/both cpu name/of_node are set for %s\n",
1132                         link->name);
1133                 return -EINVAL;
1134         }
1135
1136         /*
1137          * Defer card registartion if cpu dai component is not added to
1138          * component list.
1139          */
1140         if ((link->cpus->of_node || link->cpus->name) &&
1141             !soc_find_component(link->cpus->of_node, link->cpus->name))
1142                 return -EPROBE_DEFER;
1143
1144         /*
1145          * At least one of CPU DAI name or CPU device name/node must be
1146          * specified
1147          */
1148         if (!link->cpus->dai_name &&
1149             !(link->cpus->name || link->cpus->of_node)) {
1150                 dev_err(card->dev,
1151                         "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
1152                         link->name);
1153                 return -EINVAL;
1154         }
1155
1156         return 0;
1157 }
1158
1159 void snd_soc_disconnect_sync(struct device *dev)
1160 {
1161         struct snd_soc_component *component =
1162                         snd_soc_lookup_component(dev, NULL);
1163
1164         if (!component || !component->card)
1165                 return;
1166
1167         snd_card_disconnect_sync(component->card->snd_card);
1168 }
1169 EXPORT_SYMBOL_GPL(snd_soc_disconnect_sync);
1170
1171 /**
1172  * snd_soc_add_dai_link - Add a DAI link dynamically
1173  * @card: The ASoC card to which the DAI link is added
1174  * @dai_link: The new DAI link to add
1175  *
1176  * This function adds a DAI link to the ASoC card's link list.
1177  *
1178  * Note: Topology can use this API to add DAI links when probing the
1179  * topology component. And machine drivers can still define static
1180  * DAI links in dai_link array.
1181  */
1182 int snd_soc_add_dai_link(struct snd_soc_card *card,
1183                 struct snd_soc_dai_link *dai_link)
1184 {
1185         if (dai_link->dobj.type
1186             && dai_link->dobj.type != SND_SOC_DOBJ_DAI_LINK) {
1187                 dev_err(card->dev, "Invalid dai link type %d\n",
1188                         dai_link->dobj.type);
1189                 return -EINVAL;
1190         }
1191
1192         lockdep_assert_held(&client_mutex);
1193         /*
1194          * Notify the machine driver for extra initialization
1195          * on the link created by topology.
1196          */
1197         if (dai_link->dobj.type && card->add_dai_link)
1198                 card->add_dai_link(card, dai_link);
1199
1200         list_add_tail(&dai_link->list, &card->dai_link_list);
1201
1202         return 0;
1203 }
1204 EXPORT_SYMBOL_GPL(snd_soc_add_dai_link);
1205
1206 /**
1207  * snd_soc_remove_dai_link - Remove a DAI link from the list
1208  * @card: The ASoC card that owns the link
1209  * @dai_link: The DAI link to remove
1210  *
1211  * This function removes a DAI link from the ASoC card's link list.
1212  *
1213  * For DAI links previously added by topology, topology should
1214  * remove them by using the dobj embedded in the link.
1215  */
1216 void snd_soc_remove_dai_link(struct snd_soc_card *card,
1217                              struct snd_soc_dai_link *dai_link)
1218 {
1219         struct snd_soc_dai_link *link, *_link;
1220
1221         if (dai_link->dobj.type
1222             && dai_link->dobj.type != SND_SOC_DOBJ_DAI_LINK) {
1223                 dev_err(card->dev, "Invalid dai link type %d\n",
1224                         dai_link->dobj.type);
1225                 return;
1226         }
1227
1228         lockdep_assert_held(&client_mutex);
1229         /*
1230          * Notify the machine driver for extra destruction
1231          * on the link created by topology.
1232          */
1233         if (dai_link->dobj.type && card->remove_dai_link)
1234                 card->remove_dai_link(card, dai_link);
1235
1236         for_each_card_links_safe(card, link, _link) {
1237                 if (link == dai_link) {
1238                         list_del(&link->list);
1239                         return;
1240                 }
1241         }
1242 }
1243 EXPORT_SYMBOL_GPL(snd_soc_remove_dai_link);
1244
1245 static void soc_set_of_name_prefix(struct snd_soc_component *component)
1246 {
1247         struct device_node *component_of_node = soc_component_to_node(component);
1248         const char *str;
1249         int ret;
1250
1251         ret = of_property_read_string(component_of_node, "sound-name-prefix",
1252                                       &str);
1253         if (!ret)
1254                 component->name_prefix = str;
1255 }
1256
1257 static void soc_set_name_prefix(struct snd_soc_card *card,
1258                                 struct snd_soc_component *component)
1259 {
1260         int i;
1261
1262         for (i = 0; i < card->num_configs && card->codec_conf; i++) {
1263                 struct snd_soc_codec_conf *map = &card->codec_conf[i];
1264                 struct device_node *component_of_node = soc_component_to_node(component);
1265
1266                 if (map->of_node && component_of_node != map->of_node)
1267                         continue;
1268                 if (map->dev_name && strcmp(component->name, map->dev_name))
1269                         continue;
1270                 component->name_prefix = map->name_prefix;
1271                 return;
1272         }
1273
1274         /*
1275          * If there is no configuration table or no match in the table,
1276          * check if a prefix is provided in the node
1277          */
1278         soc_set_of_name_prefix(component);
1279 }
1280
1281 static int soc_probe_component(struct snd_soc_card *card,
1282         struct snd_soc_component *component)
1283 {
1284         struct snd_soc_dapm_context *dapm =
1285                         snd_soc_component_get_dapm(component);
1286         struct snd_soc_dai *dai;
1287         int ret;
1288
1289         if (!strcmp(component->name, "snd-soc-dummy"))
1290                 return 0;
1291
1292         if (component->card) {
1293                 if (component->card != card) {
1294                         dev_err(component->dev,
1295                                 "Trying to bind component to card \"%s\" but is already bound to card \"%s\"\n",
1296                                 card->name, component->card->name);
1297                         return -ENODEV;
1298                 }
1299                 return 0;
1300         }
1301
1302         if (!component->driver->module_get_upon_open &&
1303             !try_module_get(component->dev->driver->owner))
1304                 return -ENODEV;
1305
1306         component->card = card;
1307         dapm->card = card;
1308         INIT_LIST_HEAD(&component->card_list);
1309         INIT_LIST_HEAD(&dapm->list);
1310         soc_set_name_prefix(card, component);
1311
1312         soc_init_component_debugfs(component);
1313
1314         if (component->driver->dapm_widgets) {
1315                 ret = snd_soc_dapm_new_controls(dapm,
1316                                         component->driver->dapm_widgets,
1317                                         component->driver->num_dapm_widgets);
1318
1319                 if (ret != 0) {
1320                         dev_err(component->dev,
1321                                 "Failed to create new controls %d\n", ret);
1322                         goto err_probe;
1323                 }
1324         }
1325
1326         for_each_component_dais(component, dai) {
1327                 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
1328                 if (ret != 0) {
1329                         dev_err(component->dev,
1330                                 "Failed to create DAI widgets %d\n", ret);
1331                         goto err_probe;
1332                 }
1333         }
1334
1335         if (component->driver->probe) {
1336                 ret = component->driver->probe(component);
1337                 if (ret < 0) {
1338                         dev_err(component->dev,
1339                                 "ASoC: failed to probe component %d\n", ret);
1340                         goto err_probe;
1341                 }
1342         }
1343         WARN(dapm->idle_bias_off &&
1344              dapm->bias_level != SND_SOC_BIAS_OFF,
1345              "codec %s can not start from non-off bias with idle_bias_off==1\n",
1346              component->name);
1347
1348         /* machine specific init */
1349         if (component->init) {
1350                 ret = component->init(component);
1351                 if (ret < 0) {
1352                         dev_err(component->dev,
1353                                 "Failed to do machine specific init %d\n", ret);
1354                         goto err_probe;
1355                 }
1356         }
1357
1358         if (component->driver->controls)
1359                 snd_soc_add_component_controls(component,
1360                                                component->driver->controls,
1361                                                component->driver->num_controls);
1362         if (component->driver->dapm_routes)
1363                 snd_soc_dapm_add_routes(dapm,
1364                                         component->driver->dapm_routes,
1365                                         component->driver->num_dapm_routes);
1366
1367         list_add(&dapm->list, &card->dapm_list);
1368         /* see for_each_card_components */
1369         list_add(&component->card_list, &card->component_dev_list);
1370
1371 err_probe:
1372         if (ret < 0)
1373                 soc_cleanup_component(component);
1374
1375         return ret;
1376 }
1377
1378 static void rtd_release(struct device *dev)
1379 {
1380         kfree(dev);
1381 }
1382
1383 static int soc_post_component_init(struct snd_soc_pcm_runtime *rtd,
1384         const char *name)
1385 {
1386         int ret = 0;
1387
1388         /* register the rtd device */
1389         rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1390         if (!rtd->dev)
1391                 return -ENOMEM;
1392         device_initialize(rtd->dev);
1393         rtd->dev->parent = rtd->card->dev;
1394         rtd->dev->release = rtd_release;
1395         rtd->dev->groups = soc_dev_attr_groups;
1396         dev_set_name(rtd->dev, "%s", name);
1397         dev_set_drvdata(rtd->dev, rtd);
1398         mutex_init(&rtd->pcm_mutex);
1399         INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1400         INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1401         INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1402         INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
1403         ret = device_add(rtd->dev);
1404         if (ret < 0) {
1405                 /* calling put_device() here to free the rtd->dev */
1406                 put_device(rtd->dev);
1407                 dev_err(rtd->card->dev,
1408                         "ASoC: failed to register runtime device: %d\n", ret);
1409                 return ret;
1410         }
1411         rtd->dev_registered = 1;
1412         return 0;
1413 }
1414
1415 static int soc_probe_link_components(struct snd_soc_card *card,
1416                                      struct snd_soc_pcm_runtime *rtd, int order)
1417 {
1418         struct snd_soc_component *component;
1419         struct snd_soc_rtdcom_list *rtdcom;
1420         int ret;
1421
1422         for_each_rtdcom(rtd, rtdcom) {
1423                 component = rtdcom->component;
1424
1425                 if (component->driver->probe_order == order) {
1426                         ret = soc_probe_component(card, component);
1427                         if (ret < 0)
1428                                 return ret;
1429                 }
1430         }
1431
1432         return 0;
1433 }
1434
1435 static int soc_probe_dai(struct snd_soc_dai *dai, int order)
1436 {
1437         if (dai->probed ||
1438             dai->driver->probe_order != order)
1439                 return 0;
1440
1441         if (dai->driver->probe) {
1442                 int ret = dai->driver->probe(dai);
1443
1444                 if (ret < 0) {
1445                         dev_err(dai->dev, "ASoC: failed to probe DAI %s: %d\n",
1446                                 dai->name, ret);
1447                         return ret;
1448                 }
1449         }
1450
1451         dai->probed = 1;
1452
1453         return 0;
1454 }
1455
1456 static int soc_link_dai_pcm_new(struct snd_soc_dai **dais, int num_dais,
1457                                 struct snd_soc_pcm_runtime *rtd)
1458 {
1459         int i, ret = 0;
1460
1461         for (i = 0; i < num_dais; ++i) {
1462                 struct snd_soc_dai_driver *drv = dais[i]->driver;
1463
1464                 if (drv->pcm_new)
1465                         ret = drv->pcm_new(rtd, dais[i]);
1466                 if (ret < 0) {
1467                         dev_err(dais[i]->dev,
1468                                 "ASoC: Failed to bind %s with pcm device\n",
1469                                 dais[i]->name);
1470                         return ret;
1471                 }
1472         }
1473
1474         return 0;
1475 }
1476
1477 static int soc_probe_link_dais(struct snd_soc_card *card,
1478                 struct snd_soc_pcm_runtime *rtd, int order)
1479 {
1480         struct snd_soc_dai_link *dai_link = rtd->dai_link;
1481         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1482         struct snd_soc_rtdcom_list *rtdcom;
1483         struct snd_soc_component *component;
1484         struct snd_soc_dai *codec_dai;
1485         int i, ret, num;
1486
1487         dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
1488                         card->name, rtd->num, order);
1489
1490         /* set default power off timeout */
1491         rtd->pmdown_time = pmdown_time;
1492
1493         ret = soc_probe_dai(cpu_dai, order);
1494         if (ret)
1495                 return ret;
1496
1497         /* probe the CODEC DAI */
1498         for_each_rtd_codec_dai(rtd, i, codec_dai) {
1499                 ret = soc_probe_dai(codec_dai, order);
1500                 if (ret)
1501                         return ret;
1502         }
1503
1504         /* complete DAI probe during last probe */
1505         if (order != SND_SOC_COMP_ORDER_LAST)
1506                 return 0;
1507
1508         /* do machine specific initialization */
1509         if (dai_link->init) {
1510                 ret = dai_link->init(rtd);
1511                 if (ret < 0) {
1512                         dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1513                                 dai_link->name, ret);
1514                         return ret;
1515                 }
1516         }
1517
1518         if (dai_link->dai_fmt)
1519                 snd_soc_runtime_set_dai_fmt(rtd, dai_link->dai_fmt);
1520
1521         ret = soc_post_component_init(rtd, dai_link->name);
1522         if (ret)
1523                 return ret;
1524
1525 #ifdef CONFIG_DEBUG_FS
1526         /* add DPCM sysfs entries */
1527         if (dai_link->dynamic)
1528                 soc_dpcm_debugfs_add(rtd);
1529 #endif
1530
1531         num = rtd->num;
1532
1533         /*
1534          * most drivers will register their PCMs using DAI link ordering but
1535          * topology based drivers can use the DAI link id field to set PCM
1536          * device number and then use rtd + a base offset of the BEs.
1537          */
1538         for_each_rtdcom(rtd, rtdcom) {
1539                 component = rtdcom->component;
1540
1541                 if (!component->driver->use_dai_pcm_id)
1542                         continue;
1543
1544                 if (rtd->dai_link->no_pcm)
1545                         num += component->driver->be_pcm_base;
1546                 else
1547                         num = rtd->dai_link->id;
1548         }
1549
1550         if (cpu_dai->driver->compress_new) {
1551                 /* create compress_device" */
1552                 ret = cpu_dai->driver->compress_new(rtd, num);
1553                 if (ret < 0) {
1554                         dev_err(card->dev, "ASoC: can't create compress %s\n",
1555                                          dai_link->stream_name);
1556                         return ret;
1557                 }
1558         } else if (!dai_link->params) {
1559                 /* create the pcm */
1560                 ret = soc_new_pcm(rtd, num);
1561                 if (ret < 0) {
1562                         dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
1563                                 dai_link->stream_name, ret);
1564                         return ret;
1565                 }
1566                 ret = soc_link_dai_pcm_new(&cpu_dai, 1, rtd);
1567                 if (ret < 0)
1568                         return ret;
1569                 ret = soc_link_dai_pcm_new(rtd->codec_dais,
1570                                            rtd->num_codecs, rtd);
1571                 if (ret < 0)
1572                         return ret;
1573         } else {
1574                 INIT_DELAYED_WORK(&rtd->delayed_work,
1575                                   codec2codec_close_delayed_work);
1576         }
1577
1578         return 0;
1579 }
1580
1581 static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
1582 {
1583         struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1584         struct snd_soc_component *component;
1585         const char *name;
1586         struct device_node *codec_of_node;
1587
1588         if (aux_dev->codec_of_node || aux_dev->codec_name) {
1589                 /* codecs, usually analog devices */
1590                 name = aux_dev->codec_name;
1591                 codec_of_node = aux_dev->codec_of_node;
1592                 component = soc_find_component(codec_of_node, name);
1593                 if (!component) {
1594                         if (codec_of_node)
1595                                 name = of_node_full_name(codec_of_node);
1596                         goto err_defer;
1597                 }
1598         } else if (aux_dev->name) {
1599                 /* generic components */
1600                 name = aux_dev->name;
1601                 component = soc_find_component(NULL, name);
1602                 if (!component)
1603                         goto err_defer;
1604         } else {
1605                 dev_err(card->dev, "ASoC: Invalid auxiliary device\n");
1606                 return -EINVAL;
1607         }
1608
1609         component->init = aux_dev->init;
1610         list_add(&component->card_aux_list, &card->aux_comp_list);
1611
1612         return 0;
1613
1614 err_defer:
1615         dev_err(card->dev, "ASoC: %s not registered\n", name);
1616         return -EPROBE_DEFER;
1617 }
1618
1619 static int soc_probe_aux_devices(struct snd_soc_card *card)
1620 {
1621         struct snd_soc_component *comp;
1622         int order;
1623         int ret;
1624
1625         for_each_comp_order(order) {
1626                 list_for_each_entry(comp, &card->aux_comp_list, card_aux_list) {
1627                         if (comp->driver->probe_order == order) {
1628                                 ret = soc_probe_component(card, comp);
1629                                 if (ret < 0) {
1630                                         dev_err(card->dev,
1631                                                 "ASoC: failed to probe aux component %s %d\n",
1632                                                 comp->name, ret);
1633                                         return ret;
1634                                 }
1635                         }
1636                 }
1637         }
1638
1639         return 0;
1640 }
1641
1642 static void soc_remove_aux_devices(struct snd_soc_card *card)
1643 {
1644         struct snd_soc_component *comp, *_comp;
1645         int order;
1646
1647         for_each_comp_order(order) {
1648                 list_for_each_entry_safe(comp, _comp,
1649                         &card->aux_comp_list, card_aux_list) {
1650
1651                         if (comp->driver->remove_order == order) {
1652                                 soc_remove_component(comp);
1653                                 /* remove it from the card's aux_comp_list */
1654                                 list_del(&comp->card_aux_list);
1655                         }
1656                 }
1657         }
1658 }
1659
1660 /**
1661  * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1662  * @rtd: The runtime for which the DAI link format should be changed
1663  * @dai_fmt: The new DAI link format
1664  *
1665  * This function updates the DAI link format for all DAIs connected to the DAI
1666  * link for the specified runtime.
1667  *
1668  * Note: For setups with a static format set the dai_fmt field in the
1669  * corresponding snd_dai_link struct instead of using this function.
1670  *
1671  * Returns 0 on success, otherwise a negative error code.
1672  */
1673 int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
1674         unsigned int dai_fmt)
1675 {
1676         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1677         struct snd_soc_dai *codec_dai;
1678         unsigned int i;
1679         int ret;
1680
1681         for_each_rtd_codec_dai(rtd, i, codec_dai) {
1682                 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1683                 if (ret != 0 && ret != -ENOTSUPP) {
1684                         dev_warn(codec_dai->dev,
1685                                  "ASoC: Failed to set DAI format: %d\n", ret);
1686                         return ret;
1687                 }
1688         }
1689
1690         /*
1691          * Flip the polarity for the "CPU" end of a CODEC<->CODEC link
1692          * the component which has non_legacy_dai_naming is Codec
1693          */
1694         if (cpu_dai->component->driver->non_legacy_dai_naming) {
1695                 unsigned int inv_dai_fmt;
1696
1697                 inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
1698                 switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1699                 case SND_SOC_DAIFMT_CBM_CFM:
1700                         inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1701                         break;
1702                 case SND_SOC_DAIFMT_CBM_CFS:
1703                         inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1704                         break;
1705                 case SND_SOC_DAIFMT_CBS_CFM:
1706                         inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1707                         break;
1708                 case SND_SOC_DAIFMT_CBS_CFS:
1709                         inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1710                         break;
1711                 }
1712
1713                 dai_fmt = inv_dai_fmt;
1714         }
1715
1716         ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt);
1717         if (ret != 0 && ret != -ENOTSUPP) {
1718                 dev_warn(cpu_dai->dev,
1719                          "ASoC: Failed to set DAI format: %d\n", ret);
1720                 return ret;
1721         }
1722
1723         return 0;
1724 }
1725 EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt);
1726
1727 #ifdef CONFIG_DMI
1728 /*
1729  * Trim special characters, and replace '-' with '_' since '-' is used to
1730  * separate different DMI fields in the card long name. Only number and
1731  * alphabet characters and a few separator characters are kept.
1732  */
1733 static void cleanup_dmi_name(char *name)
1734 {
1735         int i, j = 0;
1736
1737         for (i = 0; name[i]; i++) {
1738                 if (isalnum(name[i]) || (name[i] == '.')
1739                     || (name[i] == '_'))
1740                         name[j++] = name[i];
1741                 else if (name[i] == '-')
1742                         name[j++] = '_';
1743         }
1744
1745         name[j] = '\0';
1746 }
1747
1748 /*
1749  * Check if a DMI field is valid, i.e. not containing any string
1750  * in the black list.
1751  */
1752 static int is_dmi_valid(const char *field)
1753 {
1754         int i = 0;
1755
1756         while (dmi_blacklist[i]) {
1757                 if (strstr(field, dmi_blacklist[i]))
1758                         return 0;
1759                 i++;
1760         }
1761
1762         return 1;
1763 }
1764
1765 /**
1766  * snd_soc_set_dmi_name() - Register DMI names to card
1767  * @card: The card to register DMI names
1768  * @flavour: The flavour "differentiator" for the card amongst its peers.
1769  *
1770  * An Intel machine driver may be used by many different devices but are
1771  * difficult for userspace to differentiate, since machine drivers ususally
1772  * use their own name as the card short name and leave the card long name
1773  * blank. To differentiate such devices and fix bugs due to lack of
1774  * device-specific configurations, this function allows DMI info to be used
1775  * as the sound card long name, in the format of
1776  * "vendor-product-version-board"
1777  * (Character '-' is used to separate different DMI fields here).
1778  * This will help the user space to load the device-specific Use Case Manager
1779  * (UCM) configurations for the card.
1780  *
1781  * Possible card long names may be:
1782  * DellInc.-XPS139343-01-0310JH
1783  * ASUSTeKCOMPUTERINC.-T100TA-1.0-T100TA
1784  * Circuitco-MinnowboardMaxD0PLATFORM-D0-MinnowBoardMAX
1785  *
1786  * This function also supports flavoring the card longname to provide
1787  * the extra differentiation, like "vendor-product-version-board-flavor".
1788  *
1789  * We only keep number and alphabet characters and a few separator characters
1790  * in the card long name since UCM in the user space uses the card long names
1791  * as card configuration directory names and AudoConf cannot support special
1792  * charactors like SPACE.
1793  *
1794  * Returns 0 on success, otherwise a negative error code.
1795  */
1796 int snd_soc_set_dmi_name(struct snd_soc_card *card, const char *flavour)
1797 {
1798         const char *vendor, *product, *product_version, *board;
1799         size_t longname_buf_size = sizeof(card->snd_card->longname);
1800         size_t len;
1801
1802         if (card->long_name)
1803                 return 0; /* long name already set by driver or from DMI */
1804
1805         /* make up dmi long name as: vendor.product.version.board */
1806         vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1807         if (!vendor || !is_dmi_valid(vendor)) {
1808                 dev_warn(card->dev, "ASoC: no DMI vendor name!\n");
1809                 return 0;
1810         }
1811
1812         snprintf(card->dmi_longname, sizeof(card->snd_card->longname),
1813                          "%s", vendor);
1814         cleanup_dmi_name(card->dmi_longname);
1815
1816         product = dmi_get_system_info(DMI_PRODUCT_NAME);
1817         if (product && is_dmi_valid(product)) {
1818                 len = strlen(card->dmi_longname);
1819                 snprintf(card->dmi_longname + len,
1820                          longname_buf_size - len,
1821                          "-%s", product);
1822
1823                 len++;  /* skip the separator "-" */
1824                 if (len < longname_buf_size)
1825                         cleanup_dmi_name(card->dmi_longname + len);
1826
1827                 /*
1828                  * some vendors like Lenovo may only put a self-explanatory
1829                  * name in the product version field
1830                  */
1831                 product_version = dmi_get_system_info(DMI_PRODUCT_VERSION);
1832                 if (product_version && is_dmi_valid(product_version)) {
1833                         len = strlen(card->dmi_longname);
1834                         snprintf(card->dmi_longname + len,
1835                                  longname_buf_size - len,
1836                                  "-%s", product_version);
1837
1838                         len++;
1839                         if (len < longname_buf_size)
1840                                 cleanup_dmi_name(card->dmi_longname + len);
1841                 }
1842         }
1843
1844         board = dmi_get_system_info(DMI_BOARD_NAME);
1845         if (board && is_dmi_valid(board)) {
1846                 len = strlen(card->dmi_longname);
1847                 snprintf(card->dmi_longname + len,
1848                          longname_buf_size - len,
1849                          "-%s", board);
1850
1851                 len++;
1852                 if (len < longname_buf_size)
1853                         cleanup_dmi_name(card->dmi_longname + len);
1854         } else if (!product) {
1855                 /* fall back to using legacy name */
1856                 dev_warn(card->dev, "ASoC: no DMI board/product name!\n");
1857                 return 0;
1858         }
1859
1860         /* Add flavour to dmi long name */
1861         if (flavour) {
1862                 len = strlen(card->dmi_longname);
1863                 snprintf(card->dmi_longname + len,
1864                          longname_buf_size - len,
1865                          "-%s", flavour);
1866
1867                 len++;
1868                 if (len < longname_buf_size)
1869                         cleanup_dmi_name(card->dmi_longname + len);
1870         }
1871
1872         /* set the card long name */
1873         card->long_name = card->dmi_longname;
1874
1875         return 0;
1876 }
1877 EXPORT_SYMBOL_GPL(snd_soc_set_dmi_name);
1878 #endif /* CONFIG_DMI */
1879
1880 static void soc_check_tplg_fes(struct snd_soc_card *card)
1881 {
1882         struct snd_soc_component *component;
1883         const struct snd_soc_component_driver *comp_drv;
1884         struct snd_soc_dai_link *dai_link;
1885         int i;
1886
1887         for_each_component(component) {
1888
1889                 /* does this component override FEs ? */
1890                 if (!component->driver->ignore_machine)
1891                         continue;
1892
1893                 /* for this machine ? */
1894                 if (!strcmp(component->driver->ignore_machine,
1895                             card->dev->driver->name))
1896                         goto match;
1897                 if (strcmp(component->driver->ignore_machine,
1898                            dev_name(card->dev)))
1899                         continue;
1900 match:
1901                 /* machine matches, so override the rtd data */
1902                 for_each_card_prelinks(card, i, dai_link) {
1903
1904                         /* ignore this FE */
1905                         if (dai_link->dynamic) {
1906                                 dai_link->ignore = true;
1907                                 continue;
1908                         }
1909
1910                         dev_info(card->dev, "info: override FE DAI link %s\n",
1911                                  card->dai_link[i].name);
1912
1913                         /* override platform component */
1914                         if (!dai_link->platforms) {
1915                                 dev_err(card->dev, "init platform error");
1916                                 continue;
1917                         }
1918                         dai_link->platforms->name = component->name;
1919
1920                         /* convert non BE into BE */
1921                         dai_link->no_pcm = 1;
1922
1923                         /* override any BE fixups */
1924                         dai_link->be_hw_params_fixup =
1925                                 component->driver->be_hw_params_fixup;
1926
1927                         /*
1928                          * most BE links don't set stream name, so set it to
1929                          * dai link name if it's NULL to help bind widgets.
1930                          */
1931                         if (!dai_link->stream_name)
1932                                 dai_link->stream_name = dai_link->name;
1933                 }
1934
1935                 /* Inform userspace we are using alternate topology */
1936                 if (component->driver->topology_name_prefix) {
1937
1938                         /* topology shortname created? */
1939                         if (!card->topology_shortname_created) {
1940                                 comp_drv = component->driver;
1941
1942                                 snprintf(card->topology_shortname, 32, "%s-%s",
1943                                          comp_drv->topology_name_prefix,
1944                                          card->name);
1945                                 card->topology_shortname_created = true;
1946                         }
1947
1948                         /* use topology shortname */
1949                         card->name = card->topology_shortname;
1950                 }
1951         }
1952 }
1953
1954 static int soc_cleanup_card_resources(struct snd_soc_card *card)
1955 {
1956         /* free the ALSA card at first; this syncs with pending operations */
1957         if (card->snd_card) {
1958                 snd_card_free(card->snd_card);
1959                 card->snd_card = NULL;
1960         }
1961
1962         /* remove and free each DAI */
1963         soc_remove_dai_links(card);
1964         soc_remove_pcm_runtimes(card);
1965
1966         /* remove auxiliary devices */
1967         soc_remove_aux_devices(card);
1968
1969         snd_soc_dapm_free(&card->dapm);
1970         soc_cleanup_card_debugfs(card);
1971
1972         /* remove the card */
1973         if (card->remove)
1974                 card->remove(card);
1975
1976         return 0;
1977 }
1978
1979 static int snd_soc_instantiate_card(struct snd_soc_card *card)
1980 {
1981         struct snd_soc_pcm_runtime *rtd;
1982         struct snd_soc_dai_link *dai_link;
1983         int ret, i, order;
1984
1985         mutex_lock(&client_mutex);
1986         mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
1987
1988         card->dapm.bias_level = SND_SOC_BIAS_OFF;
1989         card->dapm.dev = card->dev;
1990         card->dapm.card = card;
1991         list_add(&card->dapm.list, &card->dapm_list);
1992
1993         /* check whether any platform is ignore machine FE and using topology */
1994         soc_check_tplg_fes(card);
1995
1996         /* bind DAIs */
1997         for_each_card_prelinks(card, i, dai_link) {
1998                 ret = soc_bind_dai_link(card, dai_link);
1999                 if (ret != 0)
2000                         goto probe_end;
2001         }
2002
2003         /* bind aux_devs too */
2004         for (i = 0; i < card->num_aux_devs; i++) {
2005                 ret = soc_bind_aux_dev(card, i);
2006                 if (ret != 0)
2007                         goto probe_end;
2008         }
2009
2010         /* add predefined DAI links to the list */
2011         for_each_card_prelinks(card, i, dai_link)
2012                 snd_soc_add_dai_link(card, dai_link);
2013
2014         /* card bind complete so register a sound card */
2015         ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
2016                         card->owner, 0, &card->snd_card);
2017         if (ret < 0) {
2018                 dev_err(card->dev,
2019                         "ASoC: can't create sound card for card %s: %d\n",
2020                         card->name, ret);
2021                 goto probe_end;
2022         }
2023
2024         soc_init_card_debugfs(card);
2025
2026 #ifdef CONFIG_DEBUG_FS
2027         snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
2028 #endif
2029
2030 #ifdef CONFIG_PM_SLEEP
2031         /* deferred resume work */
2032         INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
2033 #endif
2034
2035         if (card->dapm_widgets)
2036                 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
2037                                           card->num_dapm_widgets);
2038
2039         if (card->of_dapm_widgets)
2040                 snd_soc_dapm_new_controls(&card->dapm, card->of_dapm_widgets,
2041                                           card->num_of_dapm_widgets);
2042
2043         /* initialise the sound card only once */
2044         if (card->probe) {
2045                 ret = card->probe(card);
2046                 if (ret < 0)
2047                         goto probe_end;
2048         }
2049
2050         /* probe all components used by DAI links on this card */
2051         for_each_comp_order(order) {
2052                 for_each_card_rtds(card, rtd) {
2053                         ret = soc_probe_link_components(card, rtd, order);
2054                         if (ret < 0) {
2055                                 dev_err(card->dev,
2056                                         "ASoC: failed to instantiate card %d\n",
2057                                         ret);
2058                                 goto probe_end;
2059                         }
2060                 }
2061         }
2062
2063         /* probe auxiliary components */
2064         ret = soc_probe_aux_devices(card);
2065         if (ret < 0)
2066                 goto probe_end;
2067
2068         /*
2069          * Find new DAI links added during probing components and bind them.
2070          * Components with topology may bring new DAIs and DAI links.
2071          */
2072         for_each_card_links(card, dai_link) {
2073                 if (soc_is_dai_link_bound(card, dai_link))
2074                         continue;
2075
2076                 ret = soc_init_dai_link(card, dai_link);
2077                 if (ret)
2078                         goto probe_end;
2079                 ret = soc_bind_dai_link(card, dai_link);
2080                 if (ret)
2081                         goto probe_end;
2082         }
2083
2084         /* probe all DAI links on this card */
2085         for_each_comp_order(order) {
2086                 for_each_card_rtds(card, rtd) {
2087                         ret = soc_probe_link_dais(card, rtd, order);
2088                         if (ret < 0) {
2089                                 dev_err(card->dev,
2090                                         "ASoC: failed to instantiate card %d\n",
2091                                         ret);
2092                                 goto probe_end;
2093                         }
2094                 }
2095         }
2096
2097         snd_soc_dapm_link_dai_widgets(card);
2098         snd_soc_dapm_connect_dai_link_widgets(card);
2099
2100         if (card->controls)
2101                 snd_soc_add_card_controls(card, card->controls,
2102                                           card->num_controls);
2103
2104         if (card->dapm_routes)
2105                 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
2106                                         card->num_dapm_routes);
2107
2108         if (card->of_dapm_routes)
2109                 snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes,
2110                                         card->num_of_dapm_routes);
2111
2112         /* try to set some sane longname if DMI is available */
2113         snd_soc_set_dmi_name(card, NULL);
2114
2115         snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
2116                  "%s", card->name);
2117         snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
2118                  "%s", card->long_name ? card->long_name : card->name);
2119         snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
2120                  "%s", card->driver_name ? card->driver_name : card->name);
2121         for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
2122                 switch (card->snd_card->driver[i]) {
2123                 case '_':
2124                 case '-':
2125                 case '\0':
2126                         break;
2127                 default:
2128                         if (!isalnum(card->snd_card->driver[i]))
2129                                 card->snd_card->driver[i] = '_';
2130                         break;
2131                 }
2132         }
2133
2134         if (card->late_probe) {
2135                 ret = card->late_probe(card);
2136                 if (ret < 0) {
2137                         dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
2138                                 card->name, ret);
2139                         goto probe_end;
2140                 }
2141         }
2142
2143         snd_soc_dapm_new_widgets(card);
2144
2145         ret = snd_card_register(card->snd_card);
2146         if (ret < 0) {
2147                 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
2148                                 ret);
2149                 goto probe_end;
2150         }
2151
2152         card->instantiated = 1;
2153         dapm_mark_endpoints_dirty(card);
2154         snd_soc_dapm_sync(&card->dapm);
2155
2156 probe_end:
2157         if (ret < 0)
2158                 soc_cleanup_card_resources(card);
2159
2160         mutex_unlock(&card->mutex);
2161         mutex_unlock(&client_mutex);
2162
2163         return ret;
2164 }
2165
2166 /* probes a new socdev */
2167 static int soc_probe(struct platform_device *pdev)
2168 {
2169         struct snd_soc_card *card = platform_get_drvdata(pdev);
2170
2171         /*
2172          * no card, so machine driver should be registering card
2173          * we should not be here in that case so ret error
2174          */
2175         if (!card)
2176                 return -EINVAL;
2177
2178         dev_warn(&pdev->dev,
2179                  "ASoC: machine %s should use snd_soc_register_card()\n",
2180                  card->name);
2181
2182         /* Bodge while we unpick instantiation */
2183         card->dev = &pdev->dev;
2184
2185         return snd_soc_register_card(card);
2186 }
2187
2188 /* removes a socdev */
2189 static int soc_remove(struct platform_device *pdev)
2190 {
2191         struct snd_soc_card *card = platform_get_drvdata(pdev);
2192
2193         snd_soc_unregister_card(card);
2194         return 0;
2195 }
2196
2197 int snd_soc_poweroff(struct device *dev)
2198 {
2199         struct snd_soc_card *card = dev_get_drvdata(dev);
2200         struct snd_soc_pcm_runtime *rtd;
2201
2202         if (!card->instantiated)
2203                 return 0;
2204
2205         /*
2206          * Flush out pmdown_time work - we actually do want to run it
2207          * now, we're shutting down so no imminent restart.
2208          */
2209         snd_soc_flush_all_delayed_work(card);
2210
2211         snd_soc_dapm_shutdown(card);
2212
2213         /* deactivate pins to sleep state */
2214         for_each_card_rtds(card, rtd) {
2215                 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2216                 struct snd_soc_dai *codec_dai;
2217                 int i;
2218
2219                 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2220                 for_each_rtd_codec_dai(rtd, i, codec_dai) {
2221                         pinctrl_pm_select_sleep_state(codec_dai->dev);
2222                 }
2223         }
2224
2225         return 0;
2226 }
2227 EXPORT_SYMBOL_GPL(snd_soc_poweroff);
2228
2229 const struct dev_pm_ops snd_soc_pm_ops = {
2230         .suspend = snd_soc_suspend,
2231         .resume = snd_soc_resume,
2232         .freeze = snd_soc_suspend,
2233         .thaw = snd_soc_resume,
2234         .poweroff = snd_soc_poweroff,
2235         .restore = snd_soc_resume,
2236 };
2237 EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
2238
2239 /* ASoC platform driver */
2240 static struct platform_driver soc_driver = {
2241         .driver         = {
2242                 .name           = "soc-audio",
2243                 .pm             = &snd_soc_pm_ops,
2244         },
2245         .probe          = soc_probe,
2246         .remove         = soc_remove,
2247 };
2248
2249 /**
2250  * snd_soc_cnew - create new control
2251  * @_template: control template
2252  * @data: control private data
2253  * @long_name: control long name
2254  * @prefix: control name prefix
2255  *
2256  * Create a new mixer control from a template control.
2257  *
2258  * Returns 0 for success, else error.
2259  */
2260 struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2261                                   void *data, const char *long_name,
2262                                   const char *prefix)
2263 {
2264         struct snd_kcontrol_new template;
2265         struct snd_kcontrol *kcontrol;
2266         char *name = NULL;
2267
2268         memcpy(&template, _template, sizeof(template));
2269         template.index = 0;
2270
2271         if (!long_name)
2272                 long_name = template.name;
2273
2274         if (prefix) {
2275                 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
2276                 if (!name)
2277                         return NULL;
2278
2279                 template.name = name;
2280         } else {
2281                 template.name = long_name;
2282         }
2283
2284         kcontrol = snd_ctl_new1(&template, data);
2285
2286         kfree(name);
2287
2288         return kcontrol;
2289 }
2290 EXPORT_SYMBOL_GPL(snd_soc_cnew);
2291
2292 static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2293         const struct snd_kcontrol_new *controls, int num_controls,
2294         const char *prefix, void *data)
2295 {
2296         int err, i;
2297
2298         for (i = 0; i < num_controls; i++) {
2299                 const struct snd_kcontrol_new *control = &controls[i];
2300
2301                 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2302                                                      control->name, prefix));
2303                 if (err < 0) {
2304                         dev_err(dev, "ASoC: Failed to add %s: %d\n",
2305                                 control->name, err);
2306                         return err;
2307                 }
2308         }
2309
2310         return 0;
2311 }
2312
2313 struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2314                                                const char *name)
2315 {
2316         struct snd_card *card = soc_card->snd_card;
2317         struct snd_kcontrol *kctl;
2318
2319         if (unlikely(!name))
2320                 return NULL;
2321
2322         list_for_each_entry(kctl, &card->controls, list)
2323                 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2324                         return kctl;
2325         return NULL;
2326 }
2327 EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2328
2329 /**
2330  * snd_soc_add_component_controls - Add an array of controls to a component.
2331  *
2332  * @component: Component to add controls to
2333  * @controls: Array of controls to add
2334  * @num_controls: Number of elements in the array
2335  *
2336  * Return: 0 for success, else error.
2337  */
2338 int snd_soc_add_component_controls(struct snd_soc_component *component,
2339         const struct snd_kcontrol_new *controls, unsigned int num_controls)
2340 {
2341         struct snd_card *card = component->card->snd_card;
2342
2343         return snd_soc_add_controls(card, component->dev, controls,
2344                         num_controls, component->name_prefix, component);
2345 }
2346 EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
2347
2348 /**
2349  * snd_soc_add_card_controls - add an array of controls to a SoC card.
2350  * Convenience function to add a list of controls.
2351  *
2352  * @soc_card: SoC card to add controls to
2353  * @controls: array of controls to add
2354  * @num_controls: number of elements in the array
2355  *
2356  * Return 0 for success, else error.
2357  */
2358 int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2359         const struct snd_kcontrol_new *controls, int num_controls)
2360 {
2361         struct snd_card *card = soc_card->snd_card;
2362
2363         return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2364                         NULL, soc_card);
2365 }
2366 EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2367
2368 /**
2369  * snd_soc_add_dai_controls - add an array of controls to a DAI.
2370  * Convienience function to add a list of controls.
2371  *
2372  * @dai: DAI to add controls to
2373  * @controls: array of controls to add
2374  * @num_controls: number of elements in the array
2375  *
2376  * Return 0 for success, else error.
2377  */
2378 int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2379         const struct snd_kcontrol_new *controls, int num_controls)
2380 {
2381         struct snd_card *card = dai->component->card->snd_card;
2382
2383         return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2384                         NULL, dai);
2385 }
2386 EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2387
2388 /**
2389  * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2390  * @dai: DAI
2391  * @clk_id: DAI specific clock ID
2392  * @freq: new clock frequency in Hz
2393  * @dir: new clock direction - input/output.
2394  *
2395  * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2396  */
2397 int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2398         unsigned int freq, int dir)
2399 {
2400         if (dai->driver->ops->set_sysclk)
2401                 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
2402
2403         return snd_soc_component_set_sysclk(dai->component, clk_id, 0,
2404                                             freq, dir);
2405 }
2406 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2407
2408 /**
2409  * snd_soc_component_set_sysclk - configure COMPONENT system or master clock.
2410  * @component: COMPONENT
2411  * @clk_id: DAI specific clock ID
2412  * @source: Source for the clock
2413  * @freq: new clock frequency in Hz
2414  * @dir: new clock direction - input/output.
2415  *
2416  * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2417  */
2418 int snd_soc_component_set_sysclk(struct snd_soc_component *component,
2419                                  int clk_id, int source, unsigned int freq,
2420                                  int dir)
2421 {
2422         if (component->driver->set_sysclk)
2423                 return component->driver->set_sysclk(component, clk_id, source,
2424                                                  freq, dir);
2425
2426         return -ENOTSUPP;
2427 }
2428 EXPORT_SYMBOL_GPL(snd_soc_component_set_sysclk);
2429
2430 /**
2431  * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2432  * @dai: DAI
2433  * @div_id: DAI specific clock divider ID
2434  * @div: new clock divisor.
2435  *
2436  * Configures the clock dividers. This is used to derive the best DAI bit and
2437  * frame clocks from the system or master clock. It's best to set the DAI bit
2438  * and frame clocks as low as possible to save system power.
2439  */
2440 int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2441         int div_id, int div)
2442 {
2443         if (dai->driver->ops->set_clkdiv)
2444                 return dai->driver->ops->set_clkdiv(dai, div_id, div);
2445         else
2446                 return -EINVAL;
2447 }
2448 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2449
2450 /**
2451  * snd_soc_dai_set_pll - configure DAI PLL.
2452  * @dai: DAI
2453  * @pll_id: DAI specific PLL ID
2454  * @source: DAI specific source for the PLL
2455  * @freq_in: PLL input clock frequency in Hz
2456  * @freq_out: requested PLL output clock frequency in Hz
2457  *
2458  * Configures and enables PLL to generate output clock based on input clock.
2459  */
2460 int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2461         unsigned int freq_in, unsigned int freq_out)
2462 {
2463         if (dai->driver->ops->set_pll)
2464                 return dai->driver->ops->set_pll(dai, pll_id, source,
2465                                          freq_in, freq_out);
2466
2467         return snd_soc_component_set_pll(dai->component, pll_id, source,
2468                                          freq_in, freq_out);
2469 }
2470 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2471
2472 /*
2473  * snd_soc_component_set_pll - configure component PLL.
2474  * @component: COMPONENT
2475  * @pll_id: DAI specific PLL ID
2476  * @source: DAI specific source for the PLL
2477  * @freq_in: PLL input clock frequency in Hz
2478  * @freq_out: requested PLL output clock frequency in Hz
2479  *
2480  * Configures and enables PLL to generate output clock based on input clock.
2481  */
2482 int snd_soc_component_set_pll(struct snd_soc_component *component, int pll_id,
2483                               int source, unsigned int freq_in,
2484                               unsigned int freq_out)
2485 {
2486         if (component->driver->set_pll)
2487                 return component->driver->set_pll(component, pll_id, source,
2488                                                   freq_in, freq_out);
2489
2490         return -EINVAL;
2491 }
2492 EXPORT_SYMBOL_GPL(snd_soc_component_set_pll);
2493
2494 /**
2495  * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2496  * @dai: DAI
2497  * @ratio: Ratio of BCLK to Sample rate.
2498  *
2499  * Configures the DAI for a preset BCLK to sample rate ratio.
2500  */
2501 int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2502 {
2503         if (dai->driver->ops->set_bclk_ratio)
2504                 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2505         else
2506                 return -EINVAL;
2507 }
2508 EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2509
2510 /**
2511  * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2512  * @dai: DAI
2513  * @fmt: SND_SOC_DAIFMT_* format value.
2514  *
2515  * Configures the DAI hardware format and clocking.
2516  */
2517 int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2518 {
2519         if (dai->driver->ops->set_fmt == NULL)
2520                 return -ENOTSUPP;
2521         return dai->driver->ops->set_fmt(dai, fmt);
2522 }
2523 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2524
2525 /**
2526  * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
2527  * @slots: Number of slots in use.
2528  * @tx_mask: bitmask representing active TX slots.
2529  * @rx_mask: bitmask representing active RX slots.
2530  *
2531  * Generates the TDM tx and rx slot default masks for DAI.
2532  */
2533 static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
2534                                        unsigned int *tx_mask,
2535                                        unsigned int *rx_mask)
2536 {
2537         if (*tx_mask || *rx_mask)
2538                 return 0;
2539
2540         if (!slots)
2541                 return -EINVAL;
2542
2543         *tx_mask = (1 << slots) - 1;
2544         *rx_mask = (1 << slots) - 1;
2545
2546         return 0;
2547 }
2548
2549 /**
2550  * snd_soc_dai_set_tdm_slot() - Configures a DAI for TDM operation
2551  * @dai: The DAI to configure
2552  * @tx_mask: bitmask representing active TX slots.
2553  * @rx_mask: bitmask representing active RX slots.
2554  * @slots: Number of slots in use.
2555  * @slot_width: Width in bits for each slot.
2556  *
2557  * This function configures the specified DAI for TDM operation. @slot contains
2558  * the total number of slots of the TDM stream and @slot_with the width of each
2559  * slot in bit clock cycles. @tx_mask and @rx_mask are bitmasks specifying the
2560  * active slots of the TDM stream for the specified DAI, i.e. which slots the
2561  * DAI should write to or read from. If a bit is set the corresponding slot is
2562  * active, if a bit is cleared the corresponding slot is inactive. Bit 0 maps to
2563  * the first slot, bit 1 to the second slot and so on. The first active slot
2564  * maps to the first channel of the DAI, the second active slot to the second
2565  * channel and so on.
2566  *
2567  * TDM mode can be disabled by passing 0 for @slots. In this case @tx_mask,
2568  * @rx_mask and @slot_width will be ignored.
2569  *
2570  * Returns 0 on success, a negative error code otherwise.
2571  */
2572 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
2573         unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
2574 {
2575         if (dai->driver->ops->xlate_tdm_slot_mask)
2576                 dai->driver->ops->xlate_tdm_slot_mask(slots,
2577                                                 &tx_mask, &rx_mask);
2578         else
2579                 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
2580
2581         dai->tx_mask = tx_mask;
2582         dai->rx_mask = rx_mask;
2583
2584         if (dai->driver->ops->set_tdm_slot)
2585                 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
2586                                 slots, slot_width);
2587         else
2588                 return -ENOTSUPP;
2589 }
2590 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2591
2592 /**
2593  * snd_soc_dai_set_channel_map - configure DAI audio channel map
2594  * @dai: DAI
2595  * @tx_num: how many TX channels
2596  * @tx_slot: pointer to an array which imply the TX slot number channel
2597  *           0~num-1 uses
2598  * @rx_num: how many RX channels
2599  * @rx_slot: pointer to an array which imply the RX slot number channel
2600  *           0~num-1 uses
2601  *
2602  * configure the relationship between channel number and TDM slot number.
2603  */
2604 int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2605         unsigned int tx_num, unsigned int *tx_slot,
2606         unsigned int rx_num, unsigned int *rx_slot)
2607 {
2608         if (dai->driver->ops->set_channel_map)
2609                 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
2610                         rx_num, rx_slot);
2611         else
2612                 return -EINVAL;
2613 }
2614 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2615
2616 /**
2617  * snd_soc_dai_get_channel_map - Get DAI audio channel map
2618  * @dai: DAI
2619  * @tx_num: how many TX channels
2620  * @tx_slot: pointer to an array which imply the TX slot number channel
2621  *           0~num-1 uses
2622  * @rx_num: how many RX channels
2623  * @rx_slot: pointer to an array which imply the RX slot number channel
2624  *           0~num-1 uses
2625  */
2626 int snd_soc_dai_get_channel_map(struct snd_soc_dai *dai,
2627         unsigned int *tx_num, unsigned int *tx_slot,
2628         unsigned int *rx_num, unsigned int *rx_slot)
2629 {
2630         if (dai->driver->ops->get_channel_map)
2631                 return dai->driver->ops->get_channel_map(dai, tx_num, tx_slot,
2632                         rx_num, rx_slot);
2633         else
2634                 return -ENOTSUPP;
2635 }
2636 EXPORT_SYMBOL_GPL(snd_soc_dai_get_channel_map);
2637
2638 /**
2639  * snd_soc_dai_set_tristate - configure DAI system or master clock.
2640  * @dai: DAI
2641  * @tristate: tristate enable
2642  *
2643  * Tristates the DAI so that others can use it.
2644  */
2645 int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2646 {
2647         if (dai->driver->ops->set_tristate)
2648                 return dai->driver->ops->set_tristate(dai, tristate);
2649         else
2650                 return -EINVAL;
2651 }
2652 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2653
2654 /**
2655  * snd_soc_dai_digital_mute - configure DAI system or master clock.
2656  * @dai: DAI
2657  * @mute: mute enable
2658  * @direction: stream to mute
2659  *
2660  * Mutes the DAI DAC.
2661  */
2662 int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2663                              int direction)
2664 {
2665         if (dai->driver->ops->mute_stream)
2666                 return dai->driver->ops->mute_stream(dai, mute, direction);
2667         else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2668                  dai->driver->ops->digital_mute)
2669                 return dai->driver->ops->digital_mute(dai, mute);
2670         else
2671                 return -ENOTSUPP;
2672 }
2673 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2674
2675 static int snd_soc_bind_card(struct snd_soc_card *card)
2676 {
2677         struct snd_soc_pcm_runtime *rtd;
2678         int ret;
2679
2680         ret = snd_soc_instantiate_card(card);
2681         if (ret != 0)
2682                 return ret;
2683
2684         /* deactivate pins to sleep state */
2685         for_each_card_rtds(card, rtd) {
2686                 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2687                 struct snd_soc_dai *codec_dai;
2688                 int j;
2689
2690                 for_each_rtd_codec_dai(rtd, j, codec_dai) {
2691                         if (!codec_dai->active)
2692                                 pinctrl_pm_select_sleep_state(codec_dai->dev);
2693                 }
2694
2695                 if (!cpu_dai->active)
2696                         pinctrl_pm_select_sleep_state(cpu_dai->dev);
2697         }
2698
2699         return ret;
2700 }
2701
2702 /**
2703  * snd_soc_register_card - Register a card with the ASoC core
2704  *
2705  * @card: Card to register
2706  *
2707  */
2708 int snd_soc_register_card(struct snd_soc_card *card)
2709 {
2710         int i, ret;
2711         struct snd_soc_dai_link *link;
2712
2713         if (!card->name || !card->dev)
2714                 return -EINVAL;
2715
2716         mutex_lock(&client_mutex);
2717         for_each_card_prelinks(card, i, link) {
2718
2719                 ret = soc_init_dai_link(card, link);
2720                 if (ret) {
2721                         dev_err(card->dev, "ASoC: failed to init link %s\n",
2722                                 link->name);
2723                         mutex_unlock(&client_mutex);
2724                         return ret;
2725                 }
2726         }
2727         mutex_unlock(&client_mutex);
2728
2729         dev_set_drvdata(card->dev, card);
2730
2731         snd_soc_initialize_card_lists(card);
2732
2733         INIT_LIST_HEAD(&card->dai_link_list);
2734
2735         INIT_LIST_HEAD(&card->rtd_list);
2736         card->num_rtd = 0;
2737
2738         INIT_LIST_HEAD(&card->dapm_dirty);
2739         INIT_LIST_HEAD(&card->dobj_list);
2740         card->instantiated = 0;
2741         mutex_init(&card->mutex);
2742         mutex_init(&card->dapm_mutex);
2743         spin_lock_init(&card->dpcm_lock);
2744
2745         return snd_soc_bind_card(card);
2746 }
2747 EXPORT_SYMBOL_GPL(snd_soc_register_card);
2748
2749 static void snd_soc_unbind_card(struct snd_soc_card *card, bool unregister)
2750 {
2751         struct snd_soc_pcm_runtime *rtd;
2752         int order;
2753
2754         if (card->instantiated) {
2755                 card->instantiated = false;
2756                 snd_soc_dapm_shutdown(card);
2757                 snd_soc_flush_all_delayed_work(card);
2758
2759                 /* remove all components used by DAI links on this card */
2760                 for_each_comp_order(order) {
2761                         for_each_card_rtds(card, rtd) {
2762                                 soc_remove_link_components(card, rtd, order);
2763                         }
2764                 }
2765
2766                 soc_cleanup_card_resources(card);
2767                 if (!unregister)
2768                         list_add(&card->list, &unbind_card_list);
2769         } else {
2770                 if (unregister)
2771                         list_del(&card->list);
2772         }
2773 }
2774
2775 /**
2776  * snd_soc_unregister_card - Unregister a card with the ASoC core
2777  *
2778  * @card: Card to unregister
2779  *
2780  */
2781 int snd_soc_unregister_card(struct snd_soc_card *card)
2782 {
2783         snd_soc_unbind_card(card, true);
2784         dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
2785
2786         return 0;
2787 }
2788 EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
2789
2790 /*
2791  * Simplify DAI link configuration by removing ".-1" from device names
2792  * and sanitizing names.
2793  */
2794 static char *fmt_single_name(struct device *dev, int *id)
2795 {
2796         char *found, name[NAME_SIZE];
2797         int id1, id2;
2798
2799         if (dev_name(dev) == NULL)
2800                 return NULL;
2801
2802         strlcpy(name, dev_name(dev), NAME_SIZE);
2803
2804         /* are we a "%s.%d" name (platform and SPI components) */
2805         found = strstr(name, dev->driver->name);
2806         if (found) {
2807                 /* get ID */
2808                 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2809
2810                         /* discard ID from name if ID == -1 */
2811                         if (*id == -1)
2812                                 found[strlen(dev->driver->name)] = '\0';
2813                 }
2814
2815         } else {
2816                 /* I2C component devices are named "bus-addr" */
2817                 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2818                         char tmp[NAME_SIZE];
2819
2820                         /* create unique ID number from I2C addr and bus */
2821                         *id = ((id1 & 0xffff) << 16) + id2;
2822
2823                         /* sanitize component name for DAI link creation */
2824                         snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name,
2825                                  name);
2826                         strlcpy(name, tmp, NAME_SIZE);
2827                 } else
2828                         *id = 0;
2829         }
2830
2831         return kstrdup(name, GFP_KERNEL);
2832 }
2833
2834 /*
2835  * Simplify DAI link naming for single devices with multiple DAIs by removing
2836  * any ".-1" and using the DAI name (instead of device name).
2837  */
2838 static inline char *fmt_multiple_name(struct device *dev,
2839                 struct snd_soc_dai_driver *dai_drv)
2840 {
2841         if (dai_drv->name == NULL) {
2842                 dev_err(dev,
2843                         "ASoC: error - multiple DAI %s registered with no name\n",
2844                         dev_name(dev));
2845                 return NULL;
2846         }
2847
2848         return kstrdup(dai_drv->name, GFP_KERNEL);
2849 }
2850
2851 /**
2852  * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
2853  *
2854  * @component: The component for which the DAIs should be unregistered
2855  */
2856 static void snd_soc_unregister_dais(struct snd_soc_component *component)
2857 {
2858         struct snd_soc_dai *dai, *_dai;
2859
2860         for_each_component_dais_safe(component, dai, _dai) {
2861                 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2862                         dai->name);
2863                 list_del(&dai->list);
2864                 kfree(dai->name);
2865                 kfree(dai);
2866         }
2867 }
2868
2869 /* Create a DAI and add it to the component's DAI list */
2870 static struct snd_soc_dai *soc_add_dai(struct snd_soc_component *component,
2871         struct snd_soc_dai_driver *dai_drv,
2872         bool legacy_dai_naming)
2873 {
2874         struct device *dev = component->dev;
2875         struct snd_soc_dai *dai;
2876
2877         dev_dbg(dev, "ASoC: dynamically register DAI %s\n", dev_name(dev));
2878
2879         dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
2880         if (dai == NULL)
2881                 return NULL;
2882
2883         /*
2884          * Back in the old days when we still had component-less DAIs,
2885          * instead of having a static name, component-less DAIs would
2886          * inherit the name of the parent device so it is possible to
2887          * register multiple instances of the DAI. We still need to keep
2888          * the same naming style even though those DAIs are not
2889          * component-less anymore.
2890          */
2891         if (legacy_dai_naming &&
2892             (dai_drv->id == 0 || dai_drv->name == NULL)) {
2893                 dai->name = fmt_single_name(dev, &dai->id);
2894         } else {
2895                 dai->name = fmt_multiple_name(dev, dai_drv);
2896                 if (dai_drv->id)
2897                         dai->id = dai_drv->id;
2898                 else
2899                         dai->id = component->num_dai;
2900         }
2901         if (dai->name == NULL) {
2902                 kfree(dai);
2903                 return NULL;
2904         }
2905
2906         dai->component = component;
2907         dai->dev = dev;
2908         dai->driver = dai_drv;
2909         if (!dai->driver->ops)
2910                 dai->driver->ops = &null_dai_ops;
2911
2912         /* see for_each_component_dais */
2913         list_add_tail(&dai->list, &component->dai_list);
2914         component->num_dai++;
2915
2916         dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
2917         return dai;
2918 }
2919
2920 /**
2921  * snd_soc_register_dais - Register a DAI with the ASoC core
2922  *
2923  * @component: The component the DAIs are registered for
2924  * @dai_drv: DAI driver to use for the DAIs
2925  * @count: Number of DAIs
2926  */
2927 static int snd_soc_register_dais(struct snd_soc_component *component,
2928                                  struct snd_soc_dai_driver *dai_drv,
2929                                  size_t count)
2930 {
2931         struct device *dev = component->dev;
2932         struct snd_soc_dai *dai;
2933         unsigned int i;
2934         int ret;
2935
2936         dev_dbg(dev, "ASoC: dai register %s #%zu\n", dev_name(dev), count);
2937
2938         for (i = 0; i < count; i++) {
2939
2940                 dai = soc_add_dai(component, dai_drv + i, count == 1 &&
2941                                   !component->driver->non_legacy_dai_naming);
2942                 if (dai == NULL) {
2943                         ret = -ENOMEM;
2944                         goto err;
2945                 }
2946         }
2947
2948         return 0;
2949
2950 err:
2951         snd_soc_unregister_dais(component);
2952
2953         return ret;
2954 }
2955
2956 /**
2957  * snd_soc_register_dai - Register a DAI dynamically & create its widgets
2958  *
2959  * @component: The component the DAIs are registered for
2960  * @dai_drv: DAI driver to use for the DAI
2961  *
2962  * Topology can use this API to register DAIs when probing a component.
2963  * These DAIs's widgets will be freed in the card cleanup and the DAIs
2964  * will be freed in the component cleanup.
2965  */
2966 int snd_soc_register_dai(struct snd_soc_component *component,
2967         struct snd_soc_dai_driver *dai_drv)
2968 {
2969         struct snd_soc_dapm_context *dapm =
2970                 snd_soc_component_get_dapm(component);
2971         struct snd_soc_dai *dai;
2972         int ret;
2973
2974         if (dai_drv->dobj.type != SND_SOC_DOBJ_PCM) {
2975                 dev_err(component->dev, "Invalid dai type %d\n",
2976                         dai_drv->dobj.type);
2977                 return -EINVAL;
2978         }
2979
2980         lockdep_assert_held(&client_mutex);
2981         dai = soc_add_dai(component, dai_drv, false);
2982         if (!dai)
2983                 return -ENOMEM;
2984
2985         /*
2986          * Create the DAI widgets here. After adding DAIs, topology may
2987          * also add routes that need these widgets as source or sink.
2988          */
2989         ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
2990         if (ret != 0) {
2991                 dev_err(component->dev,
2992                         "Failed to create DAI widgets %d\n", ret);
2993         }
2994
2995         return ret;
2996 }
2997 EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2998
2999 static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
3000         enum snd_soc_dapm_type type, int subseq)
3001 {
3002         struct snd_soc_component *component = dapm->component;
3003
3004         component->driver->seq_notifier(component, type, subseq);
3005 }
3006
3007 static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
3008         int event)
3009 {
3010         struct snd_soc_component *component = dapm->component;
3011
3012         return component->driver->stream_event(component, event);
3013 }
3014
3015 static int snd_soc_component_set_bias_level(struct snd_soc_dapm_context *dapm,
3016                                         enum snd_soc_bias_level level)
3017 {
3018         struct snd_soc_component *component = dapm->component;
3019
3020         return component->driver->set_bias_level(component, level);
3021 }
3022
3023 static int snd_soc_component_initialize(struct snd_soc_component *component,
3024         const struct snd_soc_component_driver *driver, struct device *dev)
3025 {
3026         struct snd_soc_dapm_context *dapm;
3027
3028         component->name = fmt_single_name(dev, &component->id);
3029         if (!component->name) {
3030                 dev_err(dev, "ASoC: Failed to allocate name\n");
3031                 return -ENOMEM;
3032         }
3033
3034         component->dev = dev;
3035         component->driver = driver;
3036
3037         dapm = snd_soc_component_get_dapm(component);
3038         dapm->dev = dev;
3039         dapm->component = component;
3040         dapm->bias_level = SND_SOC_BIAS_OFF;
3041         dapm->idle_bias_off = !driver->idle_bias_on;
3042         dapm->suspend_bias_off = driver->suspend_bias_off;
3043         if (driver->seq_notifier)
3044                 dapm->seq_notifier = snd_soc_component_seq_notifier;
3045         if (driver->stream_event)
3046                 dapm->stream_event = snd_soc_component_stream_event;
3047         if (driver->set_bias_level)
3048                 dapm->set_bias_level = snd_soc_component_set_bias_level;
3049
3050         INIT_LIST_HEAD(&component->dai_list);
3051         mutex_init(&component->io_mutex);
3052
3053         return 0;
3054 }
3055
3056 static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
3057 {
3058         int val_bytes = regmap_get_val_bytes(component->regmap);
3059
3060         /* Errors are legitimate for non-integer byte multiples */
3061         if (val_bytes > 0)
3062                 component->val_bytes = val_bytes;
3063 }
3064
3065 #ifdef CONFIG_REGMAP
3066
3067 /**
3068  * snd_soc_component_init_regmap() - Initialize regmap instance for the
3069  *                                   component
3070  * @component: The component for which to initialize the regmap instance
3071  * @regmap: The regmap instance that should be used by the component
3072  *
3073  * This function allows deferred assignment of the regmap instance that is
3074  * associated with the component. Only use this if the regmap instance is not
3075  * yet ready when the component is registered. The function must also be called
3076  * before the first IO attempt of the component.
3077  */
3078 void snd_soc_component_init_regmap(struct snd_soc_component *component,
3079         struct regmap *regmap)
3080 {
3081         component->regmap = regmap;
3082         snd_soc_component_setup_regmap(component);
3083 }
3084 EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
3085
3086 /**
3087  * snd_soc_component_exit_regmap() - De-initialize regmap instance for the
3088  *                                   component
3089  * @component: The component for which to de-initialize the regmap instance
3090  *
3091  * Calls regmap_exit() on the regmap instance associated to the component and
3092  * removes the regmap instance from the component.
3093  *
3094  * This function should only be used if snd_soc_component_init_regmap() was used
3095  * to initialize the regmap instance.
3096  */
3097 void snd_soc_component_exit_regmap(struct snd_soc_component *component)
3098 {
3099         regmap_exit(component->regmap);
3100         component->regmap = NULL;
3101 }
3102 EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
3103
3104 #endif
3105
3106 static void snd_soc_component_add(struct snd_soc_component *component)
3107 {
3108         mutex_lock(&client_mutex);
3109
3110         if (!component->driver->write && !component->driver->read) {
3111                 if (!component->regmap)
3112                         component->regmap = dev_get_regmap(component->dev,
3113                                                            NULL);
3114                 if (component->regmap)
3115                         snd_soc_component_setup_regmap(component);
3116         }
3117
3118         /* see for_each_component */
3119         list_add(&component->list, &component_list);
3120         INIT_LIST_HEAD(&component->dobj_list);
3121
3122         mutex_unlock(&client_mutex);
3123 }
3124
3125 static void snd_soc_component_cleanup(struct snd_soc_component *component)
3126 {
3127         snd_soc_unregister_dais(component);
3128         kfree(component->name);
3129 }
3130
3131 static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
3132 {
3133         struct snd_soc_card *card = component->card;
3134
3135         if (card)
3136                 snd_soc_unbind_card(card, false);
3137
3138         list_del(&component->list);
3139 }
3140
3141 #define ENDIANNESS_MAP(name) \
3142         (SNDRV_PCM_FMTBIT_##name##LE | SNDRV_PCM_FMTBIT_##name##BE)
3143 static u64 endianness_format_map[] = {
3144         ENDIANNESS_MAP(S16_),
3145         ENDIANNESS_MAP(U16_),
3146         ENDIANNESS_MAP(S24_),
3147         ENDIANNESS_MAP(U24_),
3148         ENDIANNESS_MAP(S32_),
3149         ENDIANNESS_MAP(U32_),
3150         ENDIANNESS_MAP(S24_3),
3151         ENDIANNESS_MAP(U24_3),
3152         ENDIANNESS_MAP(S20_3),
3153         ENDIANNESS_MAP(U20_3),
3154         ENDIANNESS_MAP(S18_3),
3155         ENDIANNESS_MAP(U18_3),
3156         ENDIANNESS_MAP(FLOAT_),
3157         ENDIANNESS_MAP(FLOAT64_),
3158         ENDIANNESS_MAP(IEC958_SUBFRAME_),
3159 };
3160
3161 /*
3162  * Fix up the DAI formats for endianness: codecs don't actually see
3163  * the endianness of the data but we're using the CPU format
3164  * definitions which do need to include endianness so we ensure that
3165  * codec DAIs always have both big and little endian variants set.
3166  */
3167 static void convert_endianness_formats(struct snd_soc_pcm_stream *stream)
3168 {
3169         int i;
3170
3171         for (i = 0; i < ARRAY_SIZE(endianness_format_map); i++)
3172                 if (stream->formats & endianness_format_map[i])
3173                         stream->formats |= endianness_format_map[i];
3174 }
3175
3176 static void snd_soc_try_rebind_card(void)
3177 {
3178         struct snd_soc_card *card, *c;
3179
3180         if (!list_empty(&unbind_card_list)) {
3181                 list_for_each_entry_safe(card, c, &unbind_card_list, list) {
3182                         if (!snd_soc_bind_card(card))
3183                                 list_del(&card->list);
3184                 }
3185         }
3186 }
3187
3188 int snd_soc_add_component(struct device *dev,
3189                         struct snd_soc_component *component,
3190                         const struct snd_soc_component_driver *component_driver,
3191                         struct snd_soc_dai_driver *dai_drv,
3192                         int num_dai)
3193 {
3194         int ret;
3195         int i;
3196
3197         ret = snd_soc_component_initialize(component, component_driver, dev);
3198         if (ret)
3199                 goto err_free;
3200
3201         if (component_driver->endianness) {
3202                 for (i = 0; i < num_dai; i++) {
3203                         convert_endianness_formats(&dai_drv[i].playback);
3204                         convert_endianness_formats(&dai_drv[i].capture);
3205                 }
3206         }
3207
3208         ret = snd_soc_register_dais(component, dai_drv, num_dai);
3209         if (ret < 0) {
3210                 dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
3211                 goto err_cleanup;
3212         }
3213
3214         snd_soc_component_add(component);
3215         snd_soc_try_rebind_card();
3216
3217         return 0;
3218
3219 err_cleanup:
3220         snd_soc_component_cleanup(component);
3221 err_free:
3222         return ret;
3223 }
3224 EXPORT_SYMBOL_GPL(snd_soc_add_component);
3225
3226 int snd_soc_register_component(struct device *dev,
3227                         const struct snd_soc_component_driver *component_driver,
3228                         struct snd_soc_dai_driver *dai_drv,
3229                         int num_dai)
3230 {
3231         struct snd_soc_component *component;
3232
3233         component = devm_kzalloc(dev, sizeof(*component), GFP_KERNEL);
3234         if (!component)
3235                 return -ENOMEM;
3236
3237         return snd_soc_add_component(dev, component, component_driver,
3238                                      dai_drv, num_dai);
3239 }
3240 EXPORT_SYMBOL_GPL(snd_soc_register_component);
3241
3242 /**
3243  * snd_soc_unregister_component - Unregister all related component
3244  * from the ASoC core
3245  *
3246  * @dev: The device to unregister
3247  */
3248 static int __snd_soc_unregister_component(struct device *dev)
3249 {
3250         struct snd_soc_component *component;
3251         int found = 0;
3252
3253         mutex_lock(&client_mutex);
3254         for_each_component(component) {
3255                 if (dev != component->dev)
3256                         continue;
3257
3258                 snd_soc_tplg_component_remove(component,
3259                                               SND_SOC_TPLG_INDEX_ALL);
3260                 snd_soc_component_del_unlocked(component);
3261                 found = 1;
3262                 break;
3263         }
3264         mutex_unlock(&client_mutex);
3265
3266         if (found)
3267                 snd_soc_component_cleanup(component);
3268
3269         return found;
3270 }
3271
3272 void snd_soc_unregister_component(struct device *dev)
3273 {
3274         while (__snd_soc_unregister_component(dev))
3275                 ;
3276 }
3277 EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
3278
3279 struct snd_soc_component *snd_soc_lookup_component(struct device *dev,
3280                                                    const char *driver_name)
3281 {
3282         struct snd_soc_component *component;
3283         struct snd_soc_component *ret;
3284
3285         ret = NULL;
3286         mutex_lock(&client_mutex);
3287         for_each_component(component) {
3288                 if (dev != component->dev)
3289                         continue;
3290
3291                 if (driver_name &&
3292                     (driver_name != component->driver->name) &&
3293                     (strcmp(component->driver->name, driver_name) != 0))
3294                         continue;
3295
3296                 ret = component;
3297                 break;
3298         }
3299         mutex_unlock(&client_mutex);
3300
3301         return ret;
3302 }
3303 EXPORT_SYMBOL_GPL(snd_soc_lookup_component);
3304
3305 /* Retrieve a card's name from device tree */
3306 int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3307                                const char *propname)
3308 {
3309         struct device_node *np;
3310         int ret;
3311
3312         if (!card->dev) {
3313                 pr_err("card->dev is not set before calling %s\n", __func__);
3314                 return -EINVAL;
3315         }
3316
3317         np = card->dev->of_node;
3318
3319         ret = of_property_read_string_index(np, propname, 0, &card->name);
3320         /*
3321          * EINVAL means the property does not exist. This is fine providing
3322          * card->name was previously set, which is checked later in
3323          * snd_soc_register_card.
3324          */
3325         if (ret < 0 && ret != -EINVAL) {
3326                 dev_err(card->dev,
3327                         "ASoC: Property '%s' could not be read: %d\n",
3328                         propname, ret);
3329                 return ret;
3330         }
3331
3332         return 0;
3333 }
3334 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3335
3336 static const struct snd_soc_dapm_widget simple_widgets[] = {
3337         SND_SOC_DAPM_MIC("Microphone", NULL),
3338         SND_SOC_DAPM_LINE("Line", NULL),
3339         SND_SOC_DAPM_HP("Headphone", NULL),
3340         SND_SOC_DAPM_SPK("Speaker", NULL),
3341 };
3342
3343 int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
3344                                           const char *propname)
3345 {
3346         struct device_node *np = card->dev->of_node;
3347         struct snd_soc_dapm_widget *widgets;
3348         const char *template, *wname;
3349         int i, j, num_widgets, ret;
3350
3351         num_widgets = of_property_count_strings(np, propname);
3352         if (num_widgets < 0) {
3353                 dev_err(card->dev,
3354                         "ASoC: Property '%s' does not exist\n", propname);
3355                 return -EINVAL;
3356         }
3357         if (num_widgets & 1) {
3358                 dev_err(card->dev,
3359                         "ASoC: Property '%s' length is not even\n", propname);
3360                 return -EINVAL;
3361         }
3362
3363         num_widgets /= 2;
3364         if (!num_widgets) {
3365                 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3366                         propname);
3367                 return -EINVAL;
3368         }
3369
3370         widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3371                                GFP_KERNEL);
3372         if (!widgets) {
3373                 dev_err(card->dev,
3374                         "ASoC: Could not allocate memory for widgets\n");
3375                 return -ENOMEM;
3376         }
3377
3378         for (i = 0; i < num_widgets; i++) {
3379                 ret = of_property_read_string_index(np, propname,
3380                         2 * i, &template);
3381                 if (ret) {
3382                         dev_err(card->dev,
3383                                 "ASoC: Property '%s' index %d read error:%d\n",
3384                                 propname, 2 * i, ret);
3385                         return -EINVAL;
3386                 }
3387
3388                 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3389                         if (!strncmp(template, simple_widgets[j].name,
3390                                      strlen(simple_widgets[j].name))) {
3391                                 widgets[i] = simple_widgets[j];
3392                                 break;
3393                         }
3394                 }
3395
3396                 if (j >= ARRAY_SIZE(simple_widgets)) {
3397                         dev_err(card->dev,
3398                                 "ASoC: DAPM widget '%s' is not supported\n",
3399                                 template);
3400                         return -EINVAL;
3401                 }
3402
3403                 ret = of_property_read_string_index(np, propname,
3404                                                     (2 * i) + 1,
3405                                                     &wname);
3406                 if (ret) {
3407                         dev_err(card->dev,
3408                                 "ASoC: Property '%s' index %d read error:%d\n",
3409                                 propname, (2 * i) + 1, ret);
3410                         return -EINVAL;
3411                 }
3412
3413                 widgets[i].name = wname;
3414         }
3415
3416         card->of_dapm_widgets = widgets;
3417         card->num_of_dapm_widgets = num_widgets;
3418
3419         return 0;
3420 }
3421 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
3422
3423 int snd_soc_of_get_slot_mask(struct device_node *np,
3424                              const char *prop_name,
3425                              unsigned int *mask)
3426 {
3427         u32 val;
3428         const __be32 *of_slot_mask = of_get_property(np, prop_name, &val);
3429         int i;
3430
3431         if (!of_slot_mask)
3432                 return 0;
3433         val /= sizeof(u32);
3434         for (i = 0; i < val; i++)
3435                 if (be32_to_cpup(&of_slot_mask[i]))
3436                         *mask |= (1 << i);
3437
3438         return val;
3439 }
3440 EXPORT_SYMBOL_GPL(snd_soc_of_get_slot_mask);
3441
3442 int snd_soc_of_parse_tdm_slot(struct device_node *np,
3443                               unsigned int *tx_mask,
3444                               unsigned int *rx_mask,
3445                               unsigned int *slots,
3446                               unsigned int *slot_width)
3447 {
3448         u32 val;
3449         int ret;
3450
3451         if (tx_mask)
3452                 snd_soc_of_get_slot_mask(np, "dai-tdm-slot-tx-mask", tx_mask);
3453         if (rx_mask)
3454                 snd_soc_of_get_slot_mask(np, "dai-tdm-slot-rx-mask", rx_mask);
3455
3456         if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3457                 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3458                 if (ret)
3459                         return ret;
3460
3461                 if (slots)
3462                         *slots = val;
3463         }
3464
3465         if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3466                 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3467                 if (ret)
3468                         return ret;
3469
3470                 if (slot_width)
3471                         *slot_width = val;
3472         }
3473
3474         return 0;
3475 }
3476 EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3477
3478 void snd_soc_of_parse_node_prefix(struct device_node *np,
3479                                   struct snd_soc_codec_conf *codec_conf,
3480                                   struct device_node *of_node,
3481                                   const char *propname)
3482 {
3483         const char *str;
3484         int ret;
3485
3486         ret = of_property_read_string(np, propname, &str);
3487         if (ret < 0) {
3488                 /* no prefix is not error */
3489                 return;
3490         }
3491
3492         codec_conf->of_node     = of_node;
3493         codec_conf->name_prefix = str;
3494 }
3495 EXPORT_SYMBOL_GPL(snd_soc_of_parse_node_prefix);
3496
3497 int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3498                                    const char *propname)
3499 {
3500         struct device_node *np = card->dev->of_node;
3501         int num_routes;
3502         struct snd_soc_dapm_route *routes;
3503         int i, ret;
3504
3505         num_routes = of_property_count_strings(np, propname);
3506         if (num_routes < 0 || num_routes & 1) {
3507                 dev_err(card->dev,
3508                         "ASoC: Property '%s' does not exist or its length is not even\n",
3509                         propname);
3510                 return -EINVAL;
3511         }
3512         num_routes /= 2;
3513         if (!num_routes) {
3514                 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3515                         propname);
3516                 return -EINVAL;
3517         }
3518
3519         routes = devm_kcalloc(card->dev, num_routes, sizeof(*routes),
3520                               GFP_KERNEL);
3521         if (!routes) {
3522                 dev_err(card->dev,
3523                         "ASoC: Could not allocate DAPM route table\n");
3524                 return -EINVAL;
3525         }
3526
3527         for (i = 0; i < num_routes; i++) {
3528                 ret = of_property_read_string_index(np, propname,
3529                         2 * i, &routes[i].sink);
3530                 if (ret) {
3531                         dev_err(card->dev,
3532                                 "ASoC: Property '%s' index %d could not be read: %d\n",
3533                                 propname, 2 * i, ret);
3534                         return -EINVAL;
3535                 }
3536                 ret = of_property_read_string_index(np, propname,
3537                         (2 * i) + 1, &routes[i].source);
3538                 if (ret) {
3539                         dev_err(card->dev,
3540                                 "ASoC: Property '%s' index %d could not be read: %d\n",
3541                                 propname, (2 * i) + 1, ret);
3542                         return -EINVAL;
3543                 }
3544         }
3545
3546         card->num_of_dapm_routes = num_routes;
3547         card->of_dapm_routes = routes;
3548
3549         return 0;
3550 }
3551 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3552
3553 unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
3554                                      const char *prefix,
3555                                      struct device_node **bitclkmaster,
3556                                      struct device_node **framemaster)
3557 {
3558         int ret, i;
3559         char prop[128];
3560         unsigned int format = 0;
3561         int bit, frame;
3562         const char *str;
3563         struct {
3564                 char *name;
3565                 unsigned int val;
3566         } of_fmt_table[] = {
3567                 { "i2s",        SND_SOC_DAIFMT_I2S },
3568                 { "right_j",    SND_SOC_DAIFMT_RIGHT_J },
3569                 { "left_j",     SND_SOC_DAIFMT_LEFT_J },
3570                 { "dsp_a",      SND_SOC_DAIFMT_DSP_A },
3571                 { "dsp_b",      SND_SOC_DAIFMT_DSP_B },
3572                 { "ac97",       SND_SOC_DAIFMT_AC97 },
3573                 { "pdm",        SND_SOC_DAIFMT_PDM},
3574                 { "msb",        SND_SOC_DAIFMT_MSB },
3575                 { "lsb",        SND_SOC_DAIFMT_LSB },
3576         };
3577
3578         if (!prefix)
3579                 prefix = "";
3580
3581         /*
3582          * check "dai-format = xxx"
3583          * or    "[prefix]format = xxx"
3584          * SND_SOC_DAIFMT_FORMAT_MASK area
3585          */
3586         ret = of_property_read_string(np, "dai-format", &str);
3587         if (ret < 0) {
3588                 snprintf(prop, sizeof(prop), "%sformat", prefix);
3589                 ret = of_property_read_string(np, prop, &str);
3590         }
3591         if (ret == 0) {
3592                 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3593                         if (strcmp(str, of_fmt_table[i].name) == 0) {
3594                                 format |= of_fmt_table[i].val;
3595                                 break;
3596                         }
3597                 }
3598         }
3599
3600         /*
3601          * check "[prefix]continuous-clock"
3602          * SND_SOC_DAIFMT_CLOCK_MASK area
3603          */
3604         snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
3605         if (of_property_read_bool(np, prop))
3606                 format |= SND_SOC_DAIFMT_CONT;
3607         else
3608                 format |= SND_SOC_DAIFMT_GATED;
3609
3610         /*
3611          * check "[prefix]bitclock-inversion"
3612          * check "[prefix]frame-inversion"
3613          * SND_SOC_DAIFMT_INV_MASK area
3614          */
3615         snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3616         bit = !!of_get_property(np, prop, NULL);
3617
3618         snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3619         frame = !!of_get_property(np, prop, NULL);
3620
3621         switch ((bit << 4) + frame) {
3622         case 0x11:
3623                 format |= SND_SOC_DAIFMT_IB_IF;
3624                 break;
3625         case 0x10:
3626                 format |= SND_SOC_DAIFMT_IB_NF;
3627                 break;
3628         case 0x01:
3629                 format |= SND_SOC_DAIFMT_NB_IF;
3630                 break;
3631         default:
3632                 /* SND_SOC_DAIFMT_NB_NF is default */
3633                 break;
3634         }
3635
3636         /*
3637          * check "[prefix]bitclock-master"
3638          * check "[prefix]frame-master"
3639          * SND_SOC_DAIFMT_MASTER_MASK area
3640          */
3641         snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3642         bit = !!of_get_property(np, prop, NULL);
3643         if (bit && bitclkmaster)
3644                 *bitclkmaster = of_parse_phandle(np, prop, 0);
3645
3646         snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3647         frame = !!of_get_property(np, prop, NULL);
3648         if (frame && framemaster)
3649                 *framemaster = of_parse_phandle(np, prop, 0);
3650
3651         switch ((bit << 4) + frame) {
3652         case 0x11:
3653                 format |= SND_SOC_DAIFMT_CBM_CFM;
3654                 break;
3655         case 0x10:
3656                 format |= SND_SOC_DAIFMT_CBM_CFS;
3657                 break;
3658         case 0x01:
3659                 format |= SND_SOC_DAIFMT_CBS_CFM;
3660                 break;
3661         default:
3662                 format |= SND_SOC_DAIFMT_CBS_CFS;
3663                 break;
3664         }
3665
3666         return format;
3667 }
3668 EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3669
3670 int snd_soc_get_dai_id(struct device_node *ep)
3671 {
3672         struct snd_soc_component *component;
3673         struct device_node *node;
3674         int ret;
3675
3676         node = of_graph_get_port_parent(ep);
3677
3678         /*
3679          * For example HDMI case, HDMI has video/sound port,
3680          * but ALSA SoC needs sound port number only.
3681          * Thus counting HDMI DT port/endpoint doesn't work.
3682          * Then, it should have .of_xlate_dai_id
3683          */
3684         ret = -ENOTSUPP;
3685         mutex_lock(&client_mutex);
3686         component = soc_find_component(node, NULL);
3687         if (component &&
3688             component->driver->of_xlate_dai_id)
3689                 ret = component->driver->of_xlate_dai_id(component, ep);
3690         mutex_unlock(&client_mutex);
3691
3692         of_node_put(node);
3693
3694         return ret;
3695 }
3696 EXPORT_SYMBOL_GPL(snd_soc_get_dai_id);
3697
3698 int snd_soc_get_dai_name(struct of_phandle_args *args,
3699                                 const char **dai_name)
3700 {
3701         struct snd_soc_component *pos;
3702         struct device_node *component_of_node;
3703         int ret = -EPROBE_DEFER;
3704
3705         mutex_lock(&client_mutex);
3706         for_each_component(pos) {
3707                 component_of_node = soc_component_to_node(pos);
3708
3709                 if (component_of_node != args->np)
3710                         continue;
3711
3712                 if (pos->driver->of_xlate_dai_name) {
3713                         ret = pos->driver->of_xlate_dai_name(pos,
3714                                                              args,
3715                                                              dai_name);
3716                 } else {
3717                         struct snd_soc_dai *dai;
3718                         int id = -1;
3719
3720                         switch (args->args_count) {
3721                         case 0:
3722                                 id = 0; /* same as dai_drv[0] */
3723                                 break;
3724                         case 1:
3725                                 id = args->args[0];
3726                                 break;
3727                         default:
3728                                 /* not supported */
3729                                 break;
3730                         }
3731
3732                         if (id < 0 || id >= pos->num_dai) {
3733                                 ret = -EINVAL;
3734                                 continue;
3735                         }
3736
3737                         ret = 0;
3738
3739                         /* find target DAI */
3740                         for_each_component_dais(pos, dai) {
3741                                 if (id == 0)
3742                                         break;
3743                                 id--;
3744                         }
3745
3746                         *dai_name = dai->driver->name;
3747                         if (!*dai_name)
3748                                 *dai_name = pos->name;
3749                 }
3750
3751                 break;
3752         }
3753         mutex_unlock(&client_mutex);
3754         return ret;
3755 }
3756 EXPORT_SYMBOL_GPL(snd_soc_get_dai_name);
3757
3758 int snd_soc_of_get_dai_name(struct device_node *of_node,
3759                             const char **dai_name)
3760 {
3761         struct of_phandle_args args;
3762         int ret;
3763
3764         ret = of_parse_phandle_with_args(of_node, "sound-dai",
3765                                          "#sound-dai-cells", 0, &args);
3766         if (ret)
3767                 return ret;
3768
3769         ret = snd_soc_get_dai_name(&args, dai_name);
3770
3771         of_node_put(args.np);
3772
3773         return ret;
3774 }
3775 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3776
3777 /*
3778  * snd_soc_of_put_dai_link_codecs - Dereference device nodes in the codecs array
3779  * @dai_link: DAI link
3780  *
3781  * Dereference device nodes acquired by snd_soc_of_get_dai_link_codecs().
3782  */
3783 void snd_soc_of_put_dai_link_codecs(struct snd_soc_dai_link *dai_link)
3784 {
3785         struct snd_soc_dai_link_component *component;
3786         int index;
3787
3788         for_each_link_codecs(dai_link, index, component) {
3789                 if (!component->of_node)
3790                         break;
3791                 of_node_put(component->of_node);
3792                 component->of_node = NULL;
3793         }
3794 }
3795 EXPORT_SYMBOL_GPL(snd_soc_of_put_dai_link_codecs);
3796
3797 /*
3798  * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3799  * @dev: Card device
3800  * @of_node: Device node
3801  * @dai_link: DAI link
3802  *
3803  * Builds an array of CODEC DAI components from the DAI link property
3804  * 'sound-dai'.
3805  * The array is set in the DAI link and the number of DAIs is set accordingly.
3806  * The device nodes in the array (of_node) must be dereferenced by calling
3807  * snd_soc_of_put_dai_link_codecs() on @dai_link.
3808  *
3809  * Returns 0 for success
3810  */
3811 int snd_soc_of_get_dai_link_codecs(struct device *dev,
3812                                    struct device_node *of_node,
3813                                    struct snd_soc_dai_link *dai_link)
3814 {
3815         struct of_phandle_args args;
3816         struct snd_soc_dai_link_component *component;
3817         char *name;
3818         int index, num_codecs, ret;
3819
3820         /* Count the number of CODECs */
3821         name = "sound-dai";
3822         num_codecs = of_count_phandle_with_args(of_node, name,
3823                                                 "#sound-dai-cells");
3824         if (num_codecs <= 0) {
3825                 if (num_codecs == -ENOENT)
3826                         dev_err(dev, "No 'sound-dai' property\n");
3827                 else
3828                         dev_err(dev, "Bad phandle in 'sound-dai'\n");
3829                 return num_codecs;
3830         }
3831         component = devm_kcalloc(dev,
3832                                  num_codecs, sizeof(*component),
3833                                  GFP_KERNEL);
3834         if (!component)
3835                 return -ENOMEM;
3836         dai_link->codecs = component;
3837         dai_link->num_codecs = num_codecs;
3838
3839         /* Parse the list */
3840         for_each_link_codecs(dai_link, index, component) {
3841                 ret = of_parse_phandle_with_args(of_node, name,
3842                                                  "#sound-dai-cells",
3843                                                  index, &args);
3844                 if (ret)
3845                         goto err;
3846                 component->of_node = args.np;
3847                 ret = snd_soc_get_dai_name(&args, &component->dai_name);
3848                 if (ret < 0)
3849                         goto err;
3850         }
3851         return 0;
3852 err:
3853         snd_soc_of_put_dai_link_codecs(dai_link);
3854         dai_link->codecs = NULL;
3855         dai_link->num_codecs = 0;
3856         return ret;
3857 }
3858 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3859
3860 static int __init snd_soc_init(void)
3861 {
3862         snd_soc_debugfs_init();
3863         snd_soc_util_init();
3864
3865         return platform_driver_register(&soc_driver);
3866 }
3867 module_init(snd_soc_init);
3868
3869 static void __exit snd_soc_exit(void)
3870 {
3871         snd_soc_util_exit();
3872         snd_soc_debugfs_exit();
3873
3874         platform_driver_unregister(&soc_driver);
3875 }
3876 module_exit(snd_soc_exit);
3877
3878 /* Module information */
3879 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
3880 MODULE_DESCRIPTION("ALSA SoC Core");
3881 MODULE_LICENSE("GPL");
3882 MODULE_ALIAS("platform:soc-audio");