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