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