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