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