]> git.karo-electronics.de Git - karo-tx-linux.git/blob - sound/soc/soc-core.c
arm: imx6: defconfig: update tx6 defconfigs
[karo-tx-linux.git] / sound / soc / soc-core.c
1 /*
2  * soc-core.c  --  ALSA SoC Audio Layer
3  *
4  * Copyright 2005 Wolfson Microelectronics PLC.
5  * Copyright 2005 Openedhand Ltd.
6  * Copyright (C) 2010 Slimlogic Ltd.
7  * Copyright (C) 2010 Texas Instruments Inc.
8  *
9  * Author: Liam Girdwood <lrg@slimlogic.co.uk>
10  *         with code, comments and ideas from :-
11  *         Richard Purdie <richard@openedhand.com>
12  *
13  *  This program is free software; you can redistribute  it and/or modify it
14  *  under  the terms of  the GNU General  Public License as published by the
15  *  Free Software Foundation;  either version 2 of the  License, or (at your
16  *  option) any later version.
17  *
18  *  TODO:
19  *   o Add hw rules to enforce rates, etc.
20  *   o More testing with other codecs/machines.
21  *   o Add more codecs and platforms to ensure good API coverage.
22  *   o Support TDM on PCM and I2S
23  */
24
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/pm.h>
30 #include <linux/bitops.h>
31 #include <linux/debugfs.h>
32 #include <linux/platform_device.h>
33 #include <linux/pinctrl/consumer.h>
34 #include <linux/ctype.h>
35 #include <linux/slab.h>
36 #include <linux/of.h>
37 #include <linux/gpio.h>
38 #include <linux/of_gpio.h>
39 #include <sound/ac97_codec.h>
40 #include <sound/core.h>
41 #include <sound/jack.h>
42 #include <sound/pcm.h>
43 #include <sound/pcm_params.h>
44 #include <sound/soc.h>
45 #include <sound/soc-dpcm.h>
46 #include <sound/initval.h>
47
48 #define CREATE_TRACE_POINTS
49 #include <trace/events/asoc.h>
50
51 #define NAME_SIZE       32
52
53 #ifdef CONFIG_DEBUG_FS
54 struct dentry *snd_soc_debugfs_root;
55 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
56 #endif
57
58 static DEFINE_MUTEX(client_mutex);
59 static LIST_HEAD(dai_list);
60 static LIST_HEAD(platform_list);
61 static LIST_HEAD(codec_list);
62 static LIST_HEAD(component_list);
63
64 /*
65  * This is a timeout to do a DAPM powerdown after a stream is closed().
66  * It can be used to eliminate pops between different playback streams, e.g.
67  * between two audio tracks.
68  */
69 static int pmdown_time = 5000;
70 module_param(pmdown_time, int, 0);
71 MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
72
73 struct snd_ac97_reset_cfg {
74         struct pinctrl *pctl;
75         struct pinctrl_state *pstate_reset;
76         struct pinctrl_state *pstate_warm_reset;
77         struct pinctrl_state *pstate_run;
78         int gpio_sdata;
79         int gpio_sync;
80         int gpio_reset;
81 };
82
83 /* returns the minimum number of bytes needed to represent
84  * a particular given value */
85 static int min_bytes_needed(unsigned long val)
86 {
87         int c = 0;
88         int i;
89
90         for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
91                 if (val & (1UL << i))
92                         break;
93         c = (sizeof val * 8) - c;
94         if (!c || (c % 8))
95                 c = (c + 8) / 8;
96         else
97                 c /= 8;
98         return c;
99 }
100
101 /* fill buf which is 'len' bytes with a formatted
102  * string of the form 'reg: value\n' */
103 static int format_register_str(struct snd_soc_codec *codec,
104                                unsigned int reg, char *buf, size_t len)
105 {
106         int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
107         int regsize = codec->driver->reg_word_size * 2;
108         int ret;
109         char tmpbuf[len + 1];
110         char regbuf[regsize + 1];
111
112         /* since tmpbuf is allocated on the stack, warn the callers if they
113          * try to abuse this function */
114         WARN_ON(len > 63);
115
116         /* +2 for ': ' and + 1 for '\n' */
117         if (wordsize + regsize + 2 + 1 != len)
118                 return -EINVAL;
119
120         ret = snd_soc_read(codec, reg);
121         if (ret < 0) {
122                 memset(regbuf, 'X', regsize);
123                 regbuf[regsize] = '\0';
124         } else {
125                 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
126         }
127
128         /* prepare the buffer */
129         snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
130         /* copy it back to the caller without the '\0' */
131         memcpy(buf, tmpbuf, len);
132
133         return 0;
134 }
135
136 /* codec register dump */
137 static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
138                                   size_t count, loff_t pos)
139 {
140         int i, step = 1;
141         int wordsize, regsize;
142         int len;
143         size_t total = 0;
144         loff_t p = 0;
145
146         wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
147         regsize = codec->driver->reg_word_size * 2;
148
149         len = wordsize + regsize + 2 + 1;
150
151         if (!codec->driver->reg_cache_size)
152                 return 0;
153
154         if (codec->driver->reg_cache_step)
155                 step = codec->driver->reg_cache_step;
156
157         for (i = 0; i < codec->driver->reg_cache_size; i += step) {
158                 if (!snd_soc_codec_readable_register(codec, i))
159                         continue;
160                 if (codec->driver->display_register) {
161                         count += codec->driver->display_register(codec, buf + count,
162                                                          PAGE_SIZE - count, i);
163                 } else {
164                         /* only support larger than PAGE_SIZE bytes debugfs
165                          * entries for the default case */
166                         if (p >= pos) {
167                                 if (total + len >= count - 1)
168                                         break;
169                                 format_register_str(codec, i, buf + total, len);
170                                 total += len;
171                         }
172                         p += len;
173                 }
174         }
175
176         total = min(total, count - 1);
177
178         return total;
179 }
180
181 static ssize_t codec_reg_show(struct device *dev,
182         struct device_attribute *attr, char *buf)
183 {
184         struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
185
186         return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
187 }
188
189 static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
190
191 static ssize_t pmdown_time_show(struct device *dev,
192                                 struct device_attribute *attr, char *buf)
193 {
194         struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
195
196         return sprintf(buf, "%ld\n", rtd->pmdown_time);
197 }
198
199 static ssize_t pmdown_time_set(struct device *dev,
200                                struct device_attribute *attr,
201                                const char *buf, size_t count)
202 {
203         struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
204         int ret;
205
206         ret = kstrtol(buf, 10, &rtd->pmdown_time);
207         if (ret)
208                 return ret;
209
210         return count;
211 }
212
213 static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
214
215 #ifdef CONFIG_DEBUG_FS
216 static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
217                                    size_t count, loff_t *ppos)
218 {
219         ssize_t ret;
220         struct snd_soc_codec *codec = file->private_data;
221         char *buf;
222
223         if (*ppos < 0 || !count)
224                 return -EINVAL;
225
226         buf = kmalloc(count, GFP_KERNEL);
227         if (!buf)
228                 return -ENOMEM;
229
230         ret = soc_codec_reg_show(codec, buf, count, *ppos);
231         if (ret >= 0) {
232                 if (copy_to_user(user_buf, buf, ret)) {
233                         kfree(buf);
234                         return -EFAULT;
235                 }
236                 *ppos += ret;
237         }
238
239         kfree(buf);
240         return ret;
241 }
242
243 static ssize_t codec_reg_write_file(struct file *file,
244                 const char __user *user_buf, size_t count, loff_t *ppos)
245 {
246         char buf[32];
247         size_t buf_size;
248         char *start = buf;
249         unsigned long reg, value;
250         struct snd_soc_codec *codec = file->private_data;
251         int ret;
252
253         buf_size = min(count, (sizeof(buf)-1));
254         if (copy_from_user(buf, user_buf, buf_size))
255                 return -EFAULT;
256         buf[buf_size] = 0;
257
258         while (*start == ' ')
259                 start++;
260         reg = simple_strtoul(start, &start, 16);
261         while (*start == ' ')
262                 start++;
263         ret = kstrtoul(start, 16, &value);
264         if (ret)
265                 return ret;
266
267         /* Userspace has been fiddling around behind the kernel's back */
268         add_taint(TAINT_USER, LOCKDEP_NOW_UNRELIABLE);
269
270         snd_soc_write(codec, reg, value);
271         return buf_size;
272 }
273
274 static const struct file_operations codec_reg_fops = {
275         .open = simple_open,
276         .read = codec_reg_read_file,
277         .write = codec_reg_write_file,
278         .llseek = default_llseek,
279 };
280
281 static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
282 {
283         struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
284
285         codec->debugfs_codec_root = debugfs_create_dir(codec->name,
286                                                        debugfs_card_root);
287         if (!codec->debugfs_codec_root) {
288                 dev_warn(codec->dev,
289                         "ASoC: Failed to create codec debugfs directory\n");
290                 return;
291         }
292
293         debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
294                             &codec->cache_sync);
295         debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
296                             &codec->cache_only);
297
298         codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
299                                                  codec->debugfs_codec_root,
300                                                  codec, &codec_reg_fops);
301         if (!codec->debugfs_reg)
302                 dev_warn(codec->dev,
303                         "ASoC: Failed to create codec register debugfs file\n");
304
305         snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
306 }
307
308 static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
309 {
310         debugfs_remove_recursive(codec->debugfs_codec_root);
311 }
312
313 static void soc_init_platform_debugfs(struct snd_soc_platform *platform)
314 {
315         struct dentry *debugfs_card_root = platform->card->debugfs_card_root;
316
317         platform->debugfs_platform_root = debugfs_create_dir(platform->name,
318                                                        debugfs_card_root);
319         if (!platform->debugfs_platform_root) {
320                 dev_warn(platform->dev,
321                         "ASoC: Failed to create platform debugfs directory\n");
322                 return;
323         }
324
325         snd_soc_dapm_debugfs_init(&platform->dapm,
326                 platform->debugfs_platform_root);
327 }
328
329 static void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
330 {
331         debugfs_remove_recursive(platform->debugfs_platform_root);
332 }
333
334 static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
335                                     size_t count, loff_t *ppos)
336 {
337         char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
338         ssize_t len, ret = 0;
339         struct snd_soc_codec *codec;
340
341         if (!buf)
342                 return -ENOMEM;
343
344         list_for_each_entry(codec, &codec_list, list) {
345                 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
346                                codec->name);
347                 if (len >= 0)
348                         ret += len;
349                 if (ret > PAGE_SIZE) {
350                         ret = PAGE_SIZE;
351                         break;
352                 }
353         }
354
355         if (ret >= 0)
356                 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
357
358         kfree(buf);
359
360         return ret;
361 }
362
363 static const struct file_operations codec_list_fops = {
364         .read = codec_list_read_file,
365         .llseek = default_llseek,/* read accesses f_pos */
366 };
367
368 static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
369                                   size_t count, loff_t *ppos)
370 {
371         char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
372         ssize_t len, ret = 0;
373         struct snd_soc_dai *dai;
374
375         if (!buf)
376                 return -ENOMEM;
377
378         list_for_each_entry(dai, &dai_list, list) {
379                 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
380                 if (len >= 0)
381                         ret += len;
382                 if (ret > PAGE_SIZE) {
383                         ret = PAGE_SIZE;
384                         break;
385                 }
386         }
387
388         ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
389
390         kfree(buf);
391
392         return ret;
393 }
394
395 static const struct file_operations dai_list_fops = {
396         .read = dai_list_read_file,
397         .llseek = default_llseek,/* read accesses f_pos */
398 };
399
400 static ssize_t platform_list_read_file(struct file *file,
401                                        char __user *user_buf,
402                                        size_t count, loff_t *ppos)
403 {
404         char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
405         ssize_t len, ret = 0;
406         struct snd_soc_platform *platform;
407
408         if (!buf)
409                 return -ENOMEM;
410
411         list_for_each_entry(platform, &platform_list, list) {
412                 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
413                                platform->name);
414                 if (len >= 0)
415                         ret += len;
416                 if (ret > PAGE_SIZE) {
417                         ret = PAGE_SIZE;
418                         break;
419                 }
420         }
421
422         ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
423
424         kfree(buf);
425
426         return ret;
427 }
428
429 static const struct file_operations platform_list_fops = {
430         .read = platform_list_read_file,
431         .llseek = default_llseek,/* read accesses f_pos */
432 };
433
434 static void soc_init_card_debugfs(struct snd_soc_card *card)
435 {
436         card->debugfs_card_root = debugfs_create_dir(card->name,
437                                                      snd_soc_debugfs_root);
438         if (!card->debugfs_card_root) {
439                 dev_warn(card->dev,
440                          "ASoC: Failed to create card debugfs directory\n");
441                 return;
442         }
443
444         card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
445                                                     card->debugfs_card_root,
446                                                     &card->pop_time);
447         if (!card->debugfs_pop_time)
448                 dev_warn(card->dev,
449                        "ASoC: Failed to create pop time debugfs file\n");
450 }
451
452 static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
453 {
454         debugfs_remove_recursive(card->debugfs_card_root);
455 }
456
457 #else
458
459 static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
460 {
461 }
462
463 static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
464 {
465 }
466
467 static inline void soc_init_platform_debugfs(struct snd_soc_platform *platform)
468 {
469 }
470
471 static inline void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
472 {
473 }
474
475 static inline void soc_init_card_debugfs(struct snd_soc_card *card)
476 {
477 }
478
479 static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
480 {
481 }
482 #endif
483
484 struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
485                 const char *dai_link, int stream)
486 {
487         int i;
488
489         for (i = 0; i < card->num_links; i++) {
490                 if (card->rtd[i].dai_link->no_pcm &&
491                         !strcmp(card->rtd[i].dai_link->name, dai_link))
492                         return card->rtd[i].pcm->streams[stream].substream;
493         }
494         dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
495         return NULL;
496 }
497 EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
498
499 struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
500                 const char *dai_link)
501 {
502         int i;
503
504         for (i = 0; i < card->num_links; i++) {
505                 if (!strcmp(card->rtd[i].dai_link->name, dai_link))
506                         return &card->rtd[i];
507         }
508         dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
509         return NULL;
510 }
511 EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
512
513 #ifdef CONFIG_SND_SOC_AC97_BUS
514 /* unregister ac97 codec */
515 static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
516 {
517         if (codec->ac97->dev.bus)
518                 device_unregister(&codec->ac97->dev);
519         return 0;
520 }
521
522 /* stop no dev release warning */
523 static void soc_ac97_device_release(struct device *dev){}
524
525 /* register ac97 codec to bus */
526 static int soc_ac97_dev_register(struct snd_soc_codec *codec)
527 {
528         int err;
529
530         codec->ac97->dev.bus = &ac97_bus_type;
531         codec->ac97->dev.parent = codec->card->dev;
532         codec->ac97->dev.release = soc_ac97_device_release;
533
534         dev_set_name(&codec->ac97->dev, "%d-%d:%s",
535                      codec->card->snd_card->number, 0, codec->name);
536         err = device_register(&codec->ac97->dev);
537         if (err < 0) {
538                 dev_err(codec->dev, "ASoC: Can't register ac97 bus\n");
539                 codec->ac97->dev.bus = NULL;
540                 return err;
541         }
542         return 0;
543 }
544 #endif
545
546 static void codec2codec_close_delayed_work(struct work_struct *work)
547 {
548         /* Currently nothing to do for c2c links
549          * Since c2c links are internal nodes in the DAPM graph and
550          * don't interface with the outside world or application layer
551          * we don't have to do any special handling on close.
552          */
553 }
554
555 #ifdef CONFIG_PM_SLEEP
556 /* powers down audio subsystem for suspend */
557 int snd_soc_suspend(struct device *dev)
558 {
559         struct snd_soc_card *card = dev_get_drvdata(dev);
560         struct snd_soc_codec *codec;
561         int i;
562
563         /* If the initialization of this soc device failed, there is no codec
564          * associated with it. Just bail out in this case.
565          */
566         if (list_empty(&card->codec_dev_list))
567                 return 0;
568
569         /* Due to the resume being scheduled into a workqueue we could
570         * suspend before that's finished - wait for it to complete.
571          */
572         snd_power_lock(card->snd_card);
573         snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
574         snd_power_unlock(card->snd_card);
575
576         /* we're going to block userspace touching us until resume completes */
577         snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
578
579         /* mute any active DACs */
580         for (i = 0; i < card->num_rtd; i++) {
581                 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
582                 struct snd_soc_dai_driver *drv = dai->driver;
583
584                 if (card->rtd[i].dai_link->ignore_suspend)
585                         continue;
586
587                 if (drv->ops->digital_mute && dai->playback_active)
588                         drv->ops->digital_mute(dai, 1);
589         }
590
591         /* suspend all pcms */
592         for (i = 0; i < card->num_rtd; i++) {
593                 if (card->rtd[i].dai_link->ignore_suspend)
594                         continue;
595
596                 snd_pcm_suspend_all(card->rtd[i].pcm);
597         }
598
599         if (card->suspend_pre)
600                 card->suspend_pre(card);
601
602         for (i = 0; i < card->num_rtd; i++) {
603                 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
604                 struct snd_soc_platform *platform = card->rtd[i].platform;
605
606                 if (card->rtd[i].dai_link->ignore_suspend)
607                         continue;
608
609                 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
610                         cpu_dai->driver->suspend(cpu_dai);
611                 if (platform->driver->suspend && !platform->suspended) {
612                         platform->driver->suspend(cpu_dai);
613                         platform->suspended = 1;
614                 }
615         }
616
617         /* close any waiting streams and save state */
618         for (i = 0; i < card->num_rtd; i++) {
619                 flush_delayed_work(&card->rtd[i].delayed_work);
620                 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
621         }
622
623         for (i = 0; i < card->num_rtd; i++) {
624
625                 if (card->rtd[i].dai_link->ignore_suspend)
626                         continue;
627
628                 snd_soc_dapm_stream_event(&card->rtd[i],
629                                           SNDRV_PCM_STREAM_PLAYBACK,
630                                           SND_SOC_DAPM_STREAM_SUSPEND);
631
632                 snd_soc_dapm_stream_event(&card->rtd[i],
633                                           SNDRV_PCM_STREAM_CAPTURE,
634                                           SND_SOC_DAPM_STREAM_SUSPEND);
635         }
636
637         /* Recheck all analogue paths too */
638         dapm_mark_io_dirty(&card->dapm);
639         snd_soc_dapm_sync(&card->dapm);
640
641         /* suspend all CODECs */
642         list_for_each_entry(codec, &card->codec_dev_list, card_list) {
643                 /* If there are paths active then the CODEC will be held with
644                  * bias _ON and should not be suspended. */
645                 if (!codec->suspended && codec->driver->suspend) {
646                         switch (codec->dapm.bias_level) {
647                         case SND_SOC_BIAS_STANDBY:
648                                 /*
649                                  * If the CODEC is capable of idle
650                                  * bias off then being in STANDBY
651                                  * means it's doing something,
652                                  * otherwise fall through.
653                                  */
654                                 if (codec->dapm.idle_bias_off) {
655                                         dev_dbg(codec->dev,
656                                                 "ASoC: idle_bias_off CODEC on over suspend\n");
657                                         break;
658                                 }
659                         case SND_SOC_BIAS_OFF:
660                                 codec->driver->suspend(codec);
661                                 codec->suspended = 1;
662                                 codec->cache_sync = 1;
663                                 if (codec->using_regmap)
664                                         regcache_mark_dirty(codec->control_data);
665                                 break;
666                         default:
667                                 dev_dbg(codec->dev,
668                                         "ASoC: CODEC is on over suspend\n");
669                                 break;
670                         }
671                 }
672         }
673
674         for (i = 0; i < card->num_rtd; i++) {
675                 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
676
677                 if (card->rtd[i].dai_link->ignore_suspend)
678                         continue;
679
680                 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
681                         cpu_dai->driver->suspend(cpu_dai);
682         }
683
684         if (card->suspend_post)
685                 card->suspend_post(card);
686
687         return 0;
688 }
689 EXPORT_SYMBOL_GPL(snd_soc_suspend);
690
691 /* deferred resume work, so resume can complete before we finished
692  * setting our codec back up, which can be very slow on I2C
693  */
694 static void soc_resume_deferred(struct work_struct *work)
695 {
696         struct snd_soc_card *card =
697                         container_of(work, struct snd_soc_card, deferred_resume_work);
698         struct snd_soc_codec *codec;
699         int i;
700
701         /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
702          * so userspace apps are blocked from touching us
703          */
704
705         dev_dbg(card->dev, "ASoC: starting resume work\n");
706
707         /* Bring us up into D2 so that DAPM starts enabling things */
708         snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
709
710         if (card->resume_pre)
711                 card->resume_pre(card);
712
713         /* resume AC97 DAIs */
714         for (i = 0; i < card->num_rtd; i++) {
715                 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
716
717                 if (card->rtd[i].dai_link->ignore_suspend)
718                         continue;
719
720                 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
721                         cpu_dai->driver->resume(cpu_dai);
722         }
723
724         list_for_each_entry(codec, &card->codec_dev_list, card_list) {
725                 /* If the CODEC was idle over suspend then it will have been
726                  * left with bias OFF or STANDBY and suspended so we must now
727                  * resume.  Otherwise the suspend was suppressed.
728                  */
729                 if (codec->driver->resume && codec->suspended) {
730                         switch (codec->dapm.bias_level) {
731                         case SND_SOC_BIAS_STANDBY:
732                         case SND_SOC_BIAS_OFF:
733                                 codec->driver->resume(codec);
734                                 codec->suspended = 0;
735                                 break;
736                         default:
737                                 dev_dbg(codec->dev,
738                                         "ASoC: CODEC was on over suspend\n");
739                                 break;
740                         }
741                 }
742         }
743
744         for (i = 0; i < card->num_rtd; i++) {
745
746                 if (card->rtd[i].dai_link->ignore_suspend)
747                         continue;
748
749                 snd_soc_dapm_stream_event(&card->rtd[i],
750                                           SNDRV_PCM_STREAM_PLAYBACK,
751                                           SND_SOC_DAPM_STREAM_RESUME);
752
753                 snd_soc_dapm_stream_event(&card->rtd[i],
754                                           SNDRV_PCM_STREAM_CAPTURE,
755                                           SND_SOC_DAPM_STREAM_RESUME);
756         }
757
758         /* unmute any active DACs */
759         for (i = 0; i < card->num_rtd; i++) {
760                 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
761                 struct snd_soc_dai_driver *drv = dai->driver;
762
763                 if (card->rtd[i].dai_link->ignore_suspend)
764                         continue;
765
766                 if (drv->ops->digital_mute && dai->playback_active)
767                         drv->ops->digital_mute(dai, 0);
768         }
769
770         for (i = 0; i < card->num_rtd; i++) {
771                 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
772                 struct snd_soc_platform *platform = card->rtd[i].platform;
773
774                 if (card->rtd[i].dai_link->ignore_suspend)
775                         continue;
776
777                 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
778                         cpu_dai->driver->resume(cpu_dai);
779                 if (platform->driver->resume && platform->suspended) {
780                         platform->driver->resume(cpu_dai);
781                         platform->suspended = 0;
782                 }
783         }
784
785         if (card->resume_post)
786                 card->resume_post(card);
787
788         dev_dbg(card->dev, "ASoC: resume work completed\n");
789
790         /* userspace can access us now we are back as we were before */
791         snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
792
793         /* Recheck all analogue paths too */
794         dapm_mark_io_dirty(&card->dapm);
795         snd_soc_dapm_sync(&card->dapm);
796 }
797
798 /* powers up audio subsystem after a suspend */
799 int snd_soc_resume(struct device *dev)
800 {
801         struct snd_soc_card *card = dev_get_drvdata(dev);
802         int i, ac97_control = 0;
803
804         /* If the initialization of this soc device failed, there is no codec
805          * associated with it. Just bail out in this case.
806          */
807         if (list_empty(&card->codec_dev_list))
808                 return 0;
809
810         /* AC97 devices might have other drivers hanging off them so
811          * need to resume immediately.  Other drivers don't have that
812          * problem and may take a substantial amount of time to resume
813          * due to I/O costs and anti-pop so handle them out of line.
814          */
815         for (i = 0; i < card->num_rtd; i++) {
816                 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
817                 ac97_control |= cpu_dai->driver->ac97_control;
818         }
819         if (ac97_control) {
820                 dev_dbg(dev, "ASoC: Resuming AC97 immediately\n");
821                 soc_resume_deferred(&card->deferred_resume_work);
822         } else {
823                 dev_dbg(dev, "ASoC: Scheduling resume work\n");
824                 if (!schedule_work(&card->deferred_resume_work))
825                         dev_err(dev, "ASoC: resume work item may be lost\n");
826         }
827
828         return 0;
829 }
830 EXPORT_SYMBOL_GPL(snd_soc_resume);
831 #else
832 #define snd_soc_suspend NULL
833 #define snd_soc_resume NULL
834 #endif
835
836 static const struct snd_soc_dai_ops null_dai_ops = {
837 };
838
839 static int soc_bind_dai_link(struct snd_soc_card *card, int num)
840 {
841         struct snd_soc_dai_link *dai_link = &card->dai_link[num];
842         struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
843         struct snd_soc_codec *codec;
844         struct snd_soc_platform *platform;
845         struct snd_soc_dai *codec_dai, *cpu_dai;
846         const char *platform_name;
847
848         dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
849
850         /* Find CPU DAI from registered DAIs*/
851         list_for_each_entry(cpu_dai, &dai_list, list) {
852                 if (dai_link->cpu_of_node &&
853                     (cpu_dai->dev->of_node != dai_link->cpu_of_node))
854                         continue;
855                 if (dai_link->cpu_name &&
856                     strcmp(dev_name(cpu_dai->dev), dai_link->cpu_name))
857                         continue;
858                 if (dai_link->cpu_dai_name &&
859                     strcmp(cpu_dai->name, dai_link->cpu_dai_name))
860                         continue;
861
862                 rtd->cpu_dai = cpu_dai;
863         }
864
865         if (!rtd->cpu_dai) {
866                 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
867                         dai_link->cpu_dai_name);
868                 return -EPROBE_DEFER;
869         }
870
871         /* Find CODEC from registered CODECs */
872         list_for_each_entry(codec, &codec_list, list) {
873                 if (dai_link->codec_of_node) {
874                         if (codec->dev->of_node != dai_link->codec_of_node)
875                                 continue;
876                 } else {
877                         if (strcmp(codec->name, dai_link->codec_name))
878                                 continue;
879                 }
880
881                 rtd->codec = codec;
882
883                 /*
884                  * CODEC found, so find CODEC DAI from registered DAIs from
885                  * this CODEC
886                  */
887                 list_for_each_entry(codec_dai, &dai_list, list) {
888                         if (codec->dev == codec_dai->dev &&
889                                 !strcmp(codec_dai->name,
890                                         dai_link->codec_dai_name)) {
891
892                                 rtd->codec_dai = codec_dai;
893                         }
894                 }
895
896                 if (!rtd->codec_dai) {
897                         dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
898                                 dai_link->codec_dai_name);
899                         return -EPROBE_DEFER;
900                 }
901         }
902
903         if (!rtd->codec) {
904                 dev_err(card->dev, "ASoC: CODEC %s not registered\n",
905                         dai_link->codec_name);
906                 return -EPROBE_DEFER;
907         }
908
909         /* if there's no platform we match on the empty platform */
910         platform_name = dai_link->platform_name;
911         if (!platform_name && !dai_link->platform_of_node)
912                 platform_name = "snd-soc-dummy";
913
914         /* find one from the set of registered platforms */
915         list_for_each_entry(platform, &platform_list, list) {
916                 if (dai_link->platform_of_node) {
917                         if (platform->dev->of_node !=
918                             dai_link->platform_of_node)
919                                 continue;
920                 } else {
921                         if (strcmp(platform->name, platform_name))
922                                 continue;
923                 }
924
925                 rtd->platform = platform;
926         }
927         if (!rtd->platform) {
928                 dev_err(card->dev, "ASoC: platform %s not registered\n",
929                         dai_link->platform_name);
930                 return -EPROBE_DEFER;
931         }
932
933         card->num_rtd++;
934
935         return 0;
936 }
937
938 static int soc_remove_platform(struct snd_soc_platform *platform)
939 {
940         int ret;
941
942         if (platform->driver->remove) {
943                 ret = platform->driver->remove(platform);
944                 if (ret < 0)
945                         dev_err(platform->dev, "ASoC: failed to remove %d\n",
946                                 ret);
947         }
948
949         /* Make sure all DAPM widgets are freed */
950         snd_soc_dapm_free(&platform->dapm);
951
952         soc_cleanup_platform_debugfs(platform);
953         platform->probed = 0;
954         list_del(&platform->card_list);
955         module_put(platform->dev->driver->owner);
956
957         return 0;
958 }
959
960 static void soc_remove_codec(struct snd_soc_codec *codec)
961 {
962         int err;
963
964         if (codec->driver->remove) {
965                 err = codec->driver->remove(codec);
966                 if (err < 0)
967                         dev_err(codec->dev, "ASoC: failed to remove %d\n", err);
968         }
969
970         /* Make sure all DAPM widgets are freed */
971         snd_soc_dapm_free(&codec->dapm);
972
973         soc_cleanup_codec_debugfs(codec);
974         codec->probed = 0;
975         list_del(&codec->card_list);
976         module_put(codec->dev->driver->owner);
977 }
978
979 static void soc_remove_link_dais(struct snd_soc_card *card, int num, int order)
980 {
981         struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
982         struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
983         int err;
984
985         /* unregister the rtd device */
986         if (rtd->dev_registered) {
987                 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
988                 device_remove_file(rtd->dev, &dev_attr_codec_reg);
989                 device_unregister(rtd->dev);
990                 rtd->dev_registered = 0;
991         }
992
993         /* remove the CODEC DAI */
994         if (codec_dai && codec_dai->probed &&
995                         codec_dai->driver->remove_order == order) {
996                 if (codec_dai->driver->remove) {
997                         err = codec_dai->driver->remove(codec_dai);
998                         if (err < 0)
999                                 dev_err(codec_dai->dev,
1000                                         "ASoC: failed to remove %s: %d\n",
1001                                         codec_dai->name, err);
1002                 }
1003                 codec_dai->probed = 0;
1004                 list_del(&codec_dai->card_list);
1005         }
1006
1007         /* remove the cpu_dai */
1008         if (cpu_dai && cpu_dai->probed &&
1009                         cpu_dai->driver->remove_order == order) {
1010                 if (cpu_dai->driver->remove) {
1011                         err = cpu_dai->driver->remove(cpu_dai);
1012                         if (err < 0)
1013                                 dev_err(cpu_dai->dev,
1014                                         "ASoC: failed to remove %s: %d\n",
1015                                         cpu_dai->name, err);
1016                 }
1017                 cpu_dai->probed = 0;
1018                 list_del(&cpu_dai->card_list);
1019
1020                 if (!cpu_dai->codec) {
1021                         snd_soc_dapm_free(&cpu_dai->dapm);
1022                         module_put(cpu_dai->dev->driver->owner);
1023                 }
1024         }
1025 }
1026
1027 static void soc_remove_link_components(struct snd_soc_card *card, int num,
1028                                        int order)
1029 {
1030         struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1031         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1032         struct snd_soc_dai *codec_dai = rtd->codec_dai;
1033         struct snd_soc_platform *platform = rtd->platform;
1034         struct snd_soc_codec *codec;
1035
1036         /* remove the platform */
1037         if (platform && platform->probed &&
1038             platform->driver->remove_order == order) {
1039                 soc_remove_platform(platform);
1040         }
1041
1042         /* remove the CODEC-side CODEC */
1043         if (codec_dai) {
1044                 codec = codec_dai->codec;
1045                 if (codec && codec->probed &&
1046                     codec->driver->remove_order == order)
1047                         soc_remove_codec(codec);
1048         }
1049
1050         /* remove any CPU-side CODEC */
1051         if (cpu_dai) {
1052                 codec = cpu_dai->codec;
1053                 if (codec && codec->probed &&
1054                     codec->driver->remove_order == order)
1055                         soc_remove_codec(codec);
1056         }
1057 }
1058
1059 static void soc_remove_dai_links(struct snd_soc_card *card)
1060 {
1061         int dai, order;
1062
1063         for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1064                         order++) {
1065                 for (dai = 0; dai < card->num_rtd; dai++)
1066                         soc_remove_link_dais(card, dai, order);
1067         }
1068
1069         for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1070                         order++) {
1071                 for (dai = 0; dai < card->num_rtd; dai++)
1072                         soc_remove_link_components(card, dai, order);
1073         }
1074
1075         card->num_rtd = 0;
1076 }
1077
1078 static void soc_set_name_prefix(struct snd_soc_card *card,
1079                                 struct snd_soc_codec *codec)
1080 {
1081         int i;
1082
1083         if (card->codec_conf == NULL)
1084                 return;
1085
1086         for (i = 0; i < card->num_configs; i++) {
1087                 struct snd_soc_codec_conf *map = &card->codec_conf[i];
1088                 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1089                         codec->name_prefix = map->name_prefix;
1090                         break;
1091                 }
1092         }
1093 }
1094
1095 static int soc_probe_codec(struct snd_soc_card *card,
1096                            struct snd_soc_codec *codec)
1097 {
1098         int ret = 0;
1099         const struct snd_soc_codec_driver *driver = codec->driver;
1100         struct snd_soc_dai *dai;
1101
1102         codec->card = card;
1103         codec->dapm.card = card;
1104         soc_set_name_prefix(card, codec);
1105
1106         if (!try_module_get(codec->dev->driver->owner))
1107                 return -ENODEV;
1108
1109         soc_init_codec_debugfs(codec);
1110
1111         if (driver->dapm_widgets)
1112                 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1113                                           driver->num_dapm_widgets);
1114
1115         /* Create DAPM widgets for each DAI stream */
1116         list_for_each_entry(dai, &dai_list, list) {
1117                 if (dai->dev != codec->dev)
1118                         continue;
1119
1120                 snd_soc_dapm_new_dai_widgets(&codec->dapm, dai);
1121         }
1122
1123         codec->dapm.idle_bias_off = driver->idle_bias_off;
1124
1125         if (driver->probe) {
1126                 ret = driver->probe(codec);
1127                 if (ret < 0) {
1128                         dev_err(codec->dev,
1129                                 "ASoC: failed to probe CODEC %d\n", ret);
1130                         goto err_probe;
1131                 }
1132                 WARN(codec->dapm.idle_bias_off &&
1133                         codec->dapm.bias_level != SND_SOC_BIAS_OFF,
1134                         "codec %s can not start from non-off bias with idle_bias_off==1\n",
1135                         codec->name);
1136         }
1137
1138         /* If the driver didn't set I/O up try regmap */
1139         if (!codec->write && dev_get_regmap(codec->dev, NULL))
1140                 snd_soc_codec_set_cache_io(codec, 0, 0, SND_SOC_REGMAP);
1141
1142         if (driver->controls)
1143                 snd_soc_add_codec_controls(codec, driver->controls,
1144                                      driver->num_controls);
1145         if (driver->dapm_routes)
1146                 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1147                                         driver->num_dapm_routes);
1148
1149         /* mark codec as probed and add to card codec list */
1150         codec->probed = 1;
1151         list_add(&codec->card_list, &card->codec_dev_list);
1152         list_add(&codec->dapm.list, &card->dapm_list);
1153
1154         return 0;
1155
1156 err_probe:
1157         soc_cleanup_codec_debugfs(codec);
1158         module_put(codec->dev->driver->owner);
1159
1160         return ret;
1161 }
1162
1163 static int soc_probe_platform(struct snd_soc_card *card,
1164                            struct snd_soc_platform *platform)
1165 {
1166         int ret = 0;
1167         const struct snd_soc_platform_driver *driver = platform->driver;
1168         struct snd_soc_dai *dai;
1169
1170         platform->card = card;
1171         platform->dapm.card = card;
1172
1173         if (!try_module_get(platform->dev->driver->owner))
1174                 return -ENODEV;
1175
1176         soc_init_platform_debugfs(platform);
1177
1178         if (driver->dapm_widgets)
1179                 snd_soc_dapm_new_controls(&platform->dapm,
1180                         driver->dapm_widgets, driver->num_dapm_widgets);
1181
1182         /* Create DAPM widgets for each DAI stream */
1183         list_for_each_entry(dai, &dai_list, list) {
1184                 if (dai->dev != platform->dev)
1185                         continue;
1186
1187                 snd_soc_dapm_new_dai_widgets(&platform->dapm, dai);
1188         }
1189
1190         platform->dapm.idle_bias_off = 1;
1191
1192         if (driver->probe) {
1193                 ret = driver->probe(platform);
1194                 if (ret < 0) {
1195                         dev_err(platform->dev,
1196                                 "ASoC: failed to probe platform %d\n", ret);
1197                         goto err_probe;
1198                 }
1199         }
1200
1201         if (driver->controls)
1202                 snd_soc_add_platform_controls(platform, driver->controls,
1203                                      driver->num_controls);
1204         if (driver->dapm_routes)
1205                 snd_soc_dapm_add_routes(&platform->dapm, driver->dapm_routes,
1206                                         driver->num_dapm_routes);
1207
1208         /* mark platform as probed and add to card platform list */
1209         platform->probed = 1;
1210         list_add(&platform->card_list, &card->platform_dev_list);
1211         list_add(&platform->dapm.list, &card->dapm_list);
1212
1213         return 0;
1214
1215 err_probe:
1216         soc_cleanup_platform_debugfs(platform);
1217         module_put(platform->dev->driver->owner);
1218
1219         return ret;
1220 }
1221
1222 static void rtd_release(struct device *dev)
1223 {
1224         kfree(dev);
1225 }
1226
1227 static int soc_post_component_init(struct snd_soc_card *card,
1228                                    struct snd_soc_codec *codec,
1229                                    int num, int dailess)
1230 {
1231         struct snd_soc_dai_link *dai_link = NULL;
1232         struct snd_soc_aux_dev *aux_dev = NULL;
1233         struct snd_soc_pcm_runtime *rtd;
1234         const char *temp, *name;
1235         int ret = 0;
1236
1237         if (!dailess) {
1238                 dai_link = &card->dai_link[num];
1239                 rtd = &card->rtd[num];
1240                 name = dai_link->name;
1241         } else {
1242                 aux_dev = &card->aux_dev[num];
1243                 rtd = &card->rtd_aux[num];
1244                 name = aux_dev->name;
1245         }
1246         rtd->card = card;
1247
1248         /* machine controls, routes and widgets are not prefixed */
1249         temp = codec->name_prefix;
1250         codec->name_prefix = NULL;
1251
1252         /* do machine specific initialization */
1253         if (!dailess && dai_link->init)
1254                 ret = dai_link->init(rtd);
1255         else if (dailess && aux_dev->init)
1256                 ret = aux_dev->init(&codec->dapm);
1257         if (ret < 0) {
1258                 dev_err(card->dev, "ASoC: failed to init %s: %d\n", name, ret);
1259                 return ret;
1260         }
1261         codec->name_prefix = temp;
1262
1263         /* register the rtd device */
1264         rtd->codec = codec;
1265
1266         rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1267         if (!rtd->dev)
1268                 return -ENOMEM;
1269         device_initialize(rtd->dev);
1270         rtd->dev->parent = card->dev;
1271         rtd->dev->release = rtd_release;
1272         rtd->dev->init_name = name;
1273         dev_set_drvdata(rtd->dev, rtd);
1274         mutex_init(&rtd->pcm_mutex);
1275         INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1276         INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1277         INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1278         INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
1279         ret = device_add(rtd->dev);
1280         if (ret < 0) {
1281                 /* calling put_device() here to free the rtd->dev */
1282                 put_device(rtd->dev);
1283                 dev_err(card->dev,
1284                         "ASoC: failed to register runtime device: %d\n", ret);
1285                 return ret;
1286         }
1287         rtd->dev_registered = 1;
1288
1289         /* add DAPM sysfs entries for this codec */
1290         ret = snd_soc_dapm_sys_add(rtd->dev);
1291         if (ret < 0)
1292                 dev_err(codec->dev,
1293                         "ASoC: failed to add codec dapm sysfs entries: %d\n", ret);
1294
1295         /* add codec sysfs entries */
1296         ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
1297         if (ret < 0)
1298                 dev_err(codec->dev,
1299                         "ASoC: failed to add codec sysfs files: %d\n", ret);
1300
1301 #ifdef CONFIG_DEBUG_FS
1302         /* add DPCM sysfs entries */
1303         if (!dailess && !dai_link->dynamic)
1304                 goto out;
1305
1306         ret = soc_dpcm_debugfs_add(rtd);
1307         if (ret < 0)
1308                 dev_err(rtd->dev, "ASoC: failed to add dpcm sysfs entries: %d\n", ret);
1309
1310 out:
1311 #endif
1312         return 0;
1313 }
1314
1315 static int soc_probe_link_components(struct snd_soc_card *card, int num,
1316                                      int order)
1317 {
1318         struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1319         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1320         struct snd_soc_dai *codec_dai = rtd->codec_dai;
1321         struct snd_soc_platform *platform = rtd->platform;
1322         int ret;
1323
1324         /* probe the CPU-side component, if it is a CODEC */
1325         if (cpu_dai->codec &&
1326             !cpu_dai->codec->probed &&
1327             cpu_dai->codec->driver->probe_order == order) {
1328                 ret = soc_probe_codec(card, cpu_dai->codec);
1329                 if (ret < 0)
1330                         return ret;
1331         }
1332
1333         /* probe the CODEC-side component */
1334         if (!codec_dai->codec->probed &&
1335             codec_dai->codec->driver->probe_order == order) {
1336                 ret = soc_probe_codec(card, codec_dai->codec);
1337                 if (ret < 0)
1338                         return ret;
1339         }
1340
1341         /* probe the platform */
1342         if (!platform->probed &&
1343             platform->driver->probe_order == order) {
1344                 ret = soc_probe_platform(card, platform);
1345                 if (ret < 0)
1346                         return ret;
1347         }
1348
1349         return 0;
1350 }
1351
1352 static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
1353 {
1354         struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1355         struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1356         struct snd_soc_codec *codec = rtd->codec;
1357         struct snd_soc_platform *platform = rtd->platform;
1358         struct snd_soc_dai *codec_dai = rtd->codec_dai;
1359         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1360         struct snd_soc_dapm_widget *play_w, *capture_w;
1361         int ret;
1362
1363         dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
1364                         card->name, num, order);
1365
1366         /* config components */
1367         cpu_dai->platform = platform;
1368         codec_dai->card = card;
1369         cpu_dai->card = card;
1370
1371         /* set default power off timeout */
1372         rtd->pmdown_time = pmdown_time;
1373
1374         /* probe the cpu_dai */
1375         if (!cpu_dai->probed &&
1376                         cpu_dai->driver->probe_order == order) {
1377                 if (!cpu_dai->codec) {
1378                         cpu_dai->dapm.card = card;
1379                         if (!try_module_get(cpu_dai->dev->driver->owner))
1380                                 return -ENODEV;
1381
1382                         list_add(&cpu_dai->dapm.list, &card->dapm_list);
1383                 }
1384
1385                 if (cpu_dai->driver->probe) {
1386                         ret = cpu_dai->driver->probe(cpu_dai);
1387                         if (ret < 0) {
1388                                 dev_err(cpu_dai->dev,
1389                                         "ASoC: failed to probe CPU DAI %s: %d\n",
1390                                         cpu_dai->name, ret);
1391                                 module_put(cpu_dai->dev->driver->owner);
1392                                 return ret;
1393                         }
1394                 }
1395                 cpu_dai->probed = 1;
1396                 /* mark cpu_dai as probed and add to card dai list */
1397                 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1398         }
1399
1400         /* probe the CODEC DAI */
1401         if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
1402                 if (codec_dai->driver->probe) {
1403                         ret = codec_dai->driver->probe(codec_dai);
1404                         if (ret < 0) {
1405                                 dev_err(codec_dai->dev,
1406                                         "ASoC: failed to probe CODEC DAI %s: %d\n",
1407                                         codec_dai->name, ret);
1408                                 return ret;
1409                         }
1410                 }
1411
1412                 /* mark codec_dai as probed and add to card dai list */
1413                 codec_dai->probed = 1;
1414                 list_add(&codec_dai->card_list, &card->dai_dev_list);
1415         }
1416
1417         /* complete DAI probe during last probe */
1418         if (order != SND_SOC_COMP_ORDER_LAST)
1419                 return 0;
1420
1421         ret = soc_post_component_init(card, codec, num, 0);
1422         if (ret)
1423                 return ret;
1424
1425         ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
1426         if (ret < 0)
1427                 dev_warn(rtd->dev, "ASoC: failed to add pmdown_time sysfs: %d\n",
1428                         ret);
1429
1430         if (cpu_dai->driver->compress_dai) {
1431                 /*create compress_device"*/
1432                 ret = soc_new_compress(rtd, num);
1433                 if (ret < 0) {
1434                         dev_err(card->dev, "ASoC: can't create compress %s\n",
1435                                          dai_link->stream_name);
1436                         return ret;
1437                 }
1438         } else {
1439
1440                 if (!dai_link->params) {
1441                         /* create the pcm */
1442                         ret = soc_new_pcm(rtd, num);
1443                         if (ret < 0) {
1444                                 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
1445                                        dai_link->stream_name, ret);
1446                                 return ret;
1447                         }
1448                 } else {
1449                         INIT_DELAYED_WORK(&rtd->delayed_work,
1450                                                 codec2codec_close_delayed_work);
1451
1452                         /* link the DAI widgets */
1453                         play_w = codec_dai->playback_widget;
1454                         capture_w = cpu_dai->capture_widget;
1455                         if (play_w && capture_w) {
1456                                 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1457                                                    capture_w, play_w);
1458                                 if (ret != 0) {
1459                                         dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1460                                                 play_w->name, capture_w->name, ret);
1461                                         return ret;
1462                                 }
1463                         }
1464
1465                         play_w = cpu_dai->playback_widget;
1466                         capture_w = codec_dai->capture_widget;
1467                         if (play_w && capture_w) {
1468                                 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1469                                                    capture_w, play_w);
1470                                 if (ret != 0) {
1471                                         dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1472                                                 play_w->name, capture_w->name, ret);
1473                                         return ret;
1474                                 }
1475                         }
1476                 }
1477         }
1478
1479         /* add platform data for AC97 devices */
1480         if (rtd->codec_dai->driver->ac97_control)
1481                 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1482
1483         return 0;
1484 }
1485
1486 #ifdef CONFIG_SND_SOC_AC97_BUS
1487 static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1488 {
1489         int ret;
1490
1491         /* Only instantiate AC97 if not already done by the adaptor
1492          * for the generic AC97 subsystem.
1493          */
1494         if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
1495                 /*
1496                  * It is possible that the AC97 device is already registered to
1497                  * the device subsystem. This happens when the device is created
1498                  * via snd_ac97_mixer(). Currently only SoC codec that does so
1499                  * is the generic AC97 glue but others migh emerge.
1500                  *
1501                  * In those cases we don't try to register the device again.
1502                  */
1503                 if (!rtd->codec->ac97_created)
1504                         return 0;
1505
1506                 ret = soc_ac97_dev_register(rtd->codec);
1507                 if (ret < 0) {
1508                         dev_err(rtd->codec->dev,
1509                                 "ASoC: AC97 device register failed: %d\n", ret);
1510                         return ret;
1511                 }
1512
1513                 rtd->codec->ac97_registered = 1;
1514         }
1515         return 0;
1516 }
1517
1518 static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1519 {
1520         if (codec->ac97_registered) {
1521                 soc_ac97_dev_unregister(codec);
1522                 codec->ac97_registered = 0;
1523         }
1524 }
1525 #endif
1526
1527 static int soc_check_aux_dev(struct snd_soc_card *card, int num)
1528 {
1529         struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1530         struct snd_soc_codec *codec;
1531
1532         /* find CODEC from registered CODECs*/
1533         list_for_each_entry(codec, &codec_list, list) {
1534                 if (!strcmp(codec->name, aux_dev->codec_name))
1535                         return 0;
1536         }
1537
1538         dev_err(card->dev, "ASoC: %s not registered\n", aux_dev->codec_name);
1539
1540         return -EPROBE_DEFER;
1541 }
1542
1543 static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1544 {
1545         struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1546         struct snd_soc_codec *codec;
1547         int ret = -ENODEV;
1548
1549         /* find CODEC from registered CODECs*/
1550         list_for_each_entry(codec, &codec_list, list) {
1551                 if (!strcmp(codec->name, aux_dev->codec_name)) {
1552                         if (codec->probed) {
1553                                 dev_err(codec->dev,
1554                                         "ASoC: codec already probed");
1555                                 ret = -EBUSY;
1556                                 goto out;
1557                         }
1558                         goto found;
1559                 }
1560         }
1561         /* codec not found */
1562         dev_err(card->dev, "ASoC: codec %s not found", aux_dev->codec_name);
1563         return -EPROBE_DEFER;
1564
1565 found:
1566         ret = soc_probe_codec(card, codec);
1567         if (ret < 0)
1568                 return ret;
1569
1570         ret = soc_post_component_init(card, codec, num, 1);
1571
1572 out:
1573         return ret;
1574 }
1575
1576 static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1577 {
1578         struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1579         struct snd_soc_codec *codec = rtd->codec;
1580
1581         /* unregister the rtd device */
1582         if (rtd->dev_registered) {
1583                 device_remove_file(rtd->dev, &dev_attr_codec_reg);
1584                 device_unregister(rtd->dev);
1585                 rtd->dev_registered = 0;
1586         }
1587
1588         if (codec && codec->probed)
1589                 soc_remove_codec(codec);
1590 }
1591
1592 static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
1593 {
1594         int ret;
1595
1596         if (codec->cache_init)
1597                 return 0;
1598
1599         ret = snd_soc_cache_init(codec);
1600         if (ret < 0) {
1601                 dev_err(codec->dev,
1602                         "ASoC: Failed to set cache compression type: %d\n",
1603                         ret);
1604                 return ret;
1605         }
1606         codec->cache_init = 1;
1607         return 0;
1608 }
1609
1610 static int snd_soc_instantiate_card(struct snd_soc_card *card)
1611 {
1612         struct snd_soc_codec *codec;
1613         struct snd_soc_dai_link *dai_link;
1614         int ret, i, order, dai_fmt;
1615
1616         mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
1617
1618         /* bind DAIs */
1619         for (i = 0; i < card->num_links; i++) {
1620                 ret = soc_bind_dai_link(card, i);
1621                 if (ret != 0)
1622                         goto base_error;
1623         }
1624
1625         /* check aux_devs too */
1626         for (i = 0; i < card->num_aux_devs; i++) {
1627                 ret = soc_check_aux_dev(card, i);
1628                 if (ret != 0)
1629                         goto base_error;
1630         }
1631
1632         /* initialize the register cache for each available codec */
1633         list_for_each_entry(codec, &codec_list, list) {
1634                 if (codec->cache_init)
1635                         continue;
1636                 ret = snd_soc_init_codec_cache(codec);
1637                 if (ret < 0)
1638                         goto base_error;
1639         }
1640
1641         /* card bind complete so register a sound card */
1642         ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1643                         card->owner, 0, &card->snd_card);
1644         if (ret < 0) {
1645                 dev_err(card->dev,
1646                         "ASoC: can't create sound card for card %s: %d\n",
1647                         card->name, ret);
1648                 goto base_error;
1649         }
1650         card->snd_card->dev = card->dev;
1651
1652         card->dapm.bias_level = SND_SOC_BIAS_OFF;
1653         card->dapm.dev = card->dev;
1654         card->dapm.card = card;
1655         list_add(&card->dapm.list, &card->dapm_list);
1656
1657 #ifdef CONFIG_DEBUG_FS
1658         snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1659 #endif
1660
1661 #ifdef CONFIG_PM_SLEEP
1662         /* deferred resume work */
1663         INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
1664 #endif
1665
1666         if (card->dapm_widgets)
1667                 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1668                                           card->num_dapm_widgets);
1669
1670         /* initialise the sound card only once */
1671         if (card->probe) {
1672                 ret = card->probe(card);
1673                 if (ret < 0)
1674                         goto card_probe_error;
1675         }
1676
1677         /* probe all components used by DAI links on this card */
1678         for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1679                         order++) {
1680                 for (i = 0; i < card->num_links; i++) {
1681                         ret = soc_probe_link_components(card, i, order);
1682                         if (ret < 0) {
1683                                 dev_err(card->dev,
1684                                         "ASoC: failed to instantiate card %d\n",
1685                                         ret);
1686                                 goto probe_dai_err;
1687                         }
1688                 }
1689         }
1690
1691         /* probe all DAI links on this card */
1692         for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1693                         order++) {
1694                 for (i = 0; i < card->num_links; i++) {
1695                         ret = soc_probe_link_dais(card, i, order);
1696                         if (ret < 0) {
1697                                 dev_err(card->dev,
1698                                         "ASoC: failed to instantiate card %d\n",
1699                                         ret);
1700                                 goto probe_dai_err;
1701                         }
1702                 }
1703         }
1704
1705         for (i = 0; i < card->num_aux_devs; i++) {
1706                 ret = soc_probe_aux_dev(card, i);
1707                 if (ret < 0) {
1708                         dev_err(card->dev,
1709                                 "ASoC: failed to add auxiliary devices %d\n",
1710                                 ret);
1711                         goto probe_aux_dev_err;
1712                 }
1713         }
1714
1715         snd_soc_dapm_link_dai_widgets(card);
1716
1717         if (card->controls)
1718                 snd_soc_add_card_controls(card, card->controls, card->num_controls);
1719
1720         if (card->dapm_routes)
1721                 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1722                                         card->num_dapm_routes);
1723
1724         for (i = 0; i < card->num_links; i++) {
1725                 dai_link = &card->dai_link[i];
1726                 dai_fmt = dai_link->dai_fmt;
1727
1728                 if (dai_fmt) {
1729                         ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
1730                                                   dai_fmt);
1731                         if (ret != 0 && ret != -ENOTSUPP)
1732                                 dev_warn(card->rtd[i].codec_dai->dev,
1733                                          "ASoC: Failed to set DAI format: %d\n",
1734                                          ret);
1735                 }
1736
1737                 /* If this is a regular CPU link there will be a platform */
1738                 if (dai_fmt &&
1739                     (dai_link->platform_name || dai_link->platform_of_node)) {
1740                         ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1741                                                   dai_fmt);
1742                         if (ret != 0 && ret != -ENOTSUPP)
1743                                 dev_warn(card->rtd[i].cpu_dai->dev,
1744                                          "ASoC: Failed to set DAI format: %d\n",
1745                                          ret);
1746                 } else if (dai_fmt) {
1747                         /* Flip the polarity for the "CPU" end */
1748                         dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1749                         switch (dai_link->dai_fmt &
1750                                 SND_SOC_DAIFMT_MASTER_MASK) {
1751                         case SND_SOC_DAIFMT_CBM_CFM:
1752                                 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1753                                 break;
1754                         case SND_SOC_DAIFMT_CBM_CFS:
1755                                 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1756                                 break;
1757                         case SND_SOC_DAIFMT_CBS_CFM:
1758                                 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1759                                 break;
1760                         case SND_SOC_DAIFMT_CBS_CFS:
1761                                 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1762                                 break;
1763                         }
1764
1765                         ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1766                                                   dai_fmt);
1767                         if (ret != 0 && ret != -ENOTSUPP)
1768                                 dev_warn(card->rtd[i].cpu_dai->dev,
1769                                          "ASoC: Failed to set DAI format: %d\n",
1770                                          ret);
1771                 }
1772         }
1773
1774         snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1775                  "%s", card->name);
1776         snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1777                  "%s", card->long_name ? card->long_name : card->name);
1778         snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1779                  "%s", card->driver_name ? card->driver_name : card->name);
1780         for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1781                 switch (card->snd_card->driver[i]) {
1782                 case '_':
1783                 case '-':
1784                 case '\0':
1785                         break;
1786                 default:
1787                         if (!isalnum(card->snd_card->driver[i]))
1788                                 card->snd_card->driver[i] = '_';
1789                         break;
1790                 }
1791         }
1792
1793         if (card->late_probe) {
1794                 ret = card->late_probe(card);
1795                 if (ret < 0) {
1796                         dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
1797                                 card->name, ret);
1798                         goto probe_aux_dev_err;
1799                 }
1800         }
1801
1802         if (card->fully_routed)
1803                 list_for_each_entry(codec, &card->codec_dev_list, card_list)
1804                         snd_soc_dapm_auto_nc_codec_pins(codec);
1805
1806         snd_soc_dapm_new_widgets(card);
1807
1808         ret = snd_card_register(card->snd_card);
1809         if (ret < 0) {
1810                 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1811                                 ret);
1812                 goto probe_aux_dev_err;
1813         }
1814
1815 #ifdef CONFIG_SND_SOC_AC97_BUS
1816         /* register any AC97 codecs */
1817         for (i = 0; i < card->num_rtd; i++) {
1818                 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1819                 if (ret < 0) {
1820                         dev_err(card->dev,
1821                                 "ASoC: failed to register AC97: %d\n", ret);
1822                         while (--i >= 0)
1823                                 soc_unregister_ac97_dai_link(card->rtd[i].codec);
1824                         goto probe_aux_dev_err;
1825                 }
1826         }
1827 #endif
1828
1829         card->instantiated = 1;
1830         snd_soc_dapm_sync(&card->dapm);
1831         mutex_unlock(&card->mutex);
1832
1833         return 0;
1834
1835 probe_aux_dev_err:
1836         for (i = 0; i < card->num_aux_devs; i++)
1837                 soc_remove_aux_dev(card, i);
1838
1839 probe_dai_err:
1840         soc_remove_dai_links(card);
1841
1842 card_probe_error:
1843         if (card->remove)
1844                 card->remove(card);
1845
1846         snd_card_free(card->snd_card);
1847
1848 base_error:
1849         mutex_unlock(&card->mutex);
1850
1851         return ret;
1852 }
1853
1854 /* probes a new socdev */
1855 static int soc_probe(struct platform_device *pdev)
1856 {
1857         struct snd_soc_card *card = platform_get_drvdata(pdev);
1858
1859         /*
1860          * no card, so machine driver should be registering card
1861          * we should not be here in that case so ret error
1862          */
1863         if (!card)
1864                 return -EINVAL;
1865
1866         dev_warn(&pdev->dev,
1867                  "ASoC: machine %s should use snd_soc_register_card()\n",
1868                  card->name);
1869
1870         /* Bodge while we unpick instantiation */
1871         card->dev = &pdev->dev;
1872
1873         return snd_soc_register_card(card);
1874 }
1875
1876 static int soc_cleanup_card_resources(struct snd_soc_card *card)
1877 {
1878         int i;
1879
1880         /* make sure any delayed work runs */
1881         for (i = 0; i < card->num_rtd; i++) {
1882                 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1883                 flush_delayed_work(&rtd->delayed_work);
1884         }
1885
1886         /* remove auxiliary devices */
1887         for (i = 0; i < card->num_aux_devs; i++)
1888                 soc_remove_aux_dev(card, i);
1889
1890         /* remove and free each DAI */
1891         soc_remove_dai_links(card);
1892
1893         soc_cleanup_card_debugfs(card);
1894
1895         /* remove the card */
1896         if (card->remove)
1897                 card->remove(card);
1898
1899         snd_soc_dapm_free(&card->dapm);
1900
1901         snd_card_free(card->snd_card);
1902         return 0;
1903
1904 }
1905
1906 /* removes a socdev */
1907 static int soc_remove(struct platform_device *pdev)
1908 {
1909         struct snd_soc_card *card = platform_get_drvdata(pdev);
1910
1911         snd_soc_unregister_card(card);
1912         return 0;
1913 }
1914
1915 int snd_soc_poweroff(struct device *dev)
1916 {
1917         struct snd_soc_card *card = dev_get_drvdata(dev);
1918         int i;
1919
1920         if (!card->instantiated)
1921                 return 0;
1922
1923         /* Flush out pmdown_time work - we actually do want to run it
1924          * now, we're shutting down so no imminent restart. */
1925         for (i = 0; i < card->num_rtd; i++) {
1926                 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1927                 flush_delayed_work(&rtd->delayed_work);
1928         }
1929
1930         snd_soc_dapm_shutdown(card);
1931
1932         return 0;
1933 }
1934 EXPORT_SYMBOL_GPL(snd_soc_poweroff);
1935
1936 const struct dev_pm_ops snd_soc_pm_ops = {
1937         .suspend = snd_soc_suspend,
1938         .resume = snd_soc_resume,
1939         .freeze = snd_soc_suspend,
1940         .thaw = snd_soc_resume,
1941         .poweroff = snd_soc_poweroff,
1942         .restore = snd_soc_resume,
1943 };
1944 EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
1945
1946 /* ASoC platform driver */
1947 static struct platform_driver soc_driver = {
1948         .driver         = {
1949                 .name           = "soc-audio",
1950                 .owner          = THIS_MODULE,
1951                 .pm             = &snd_soc_pm_ops,
1952         },
1953         .probe          = soc_probe,
1954         .remove         = soc_remove,
1955 };
1956
1957 /**
1958  * snd_soc_codec_volatile_register: Report if a register is volatile.
1959  *
1960  * @codec: CODEC to query.
1961  * @reg: Register to query.
1962  *
1963  * Boolean function indiciating if a CODEC register is volatile.
1964  */
1965 int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1966                                     unsigned int reg)
1967 {
1968         if (codec->volatile_register)
1969                 return codec->volatile_register(codec, reg);
1970         else
1971                 return 0;
1972 }
1973 EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1974
1975 /**
1976  * snd_soc_codec_readable_register: Report if a register is readable.
1977  *
1978  * @codec: CODEC to query.
1979  * @reg: Register to query.
1980  *
1981  * Boolean function indicating if a CODEC register is readable.
1982  */
1983 int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
1984                                     unsigned int reg)
1985 {
1986         if (codec->readable_register)
1987                 return codec->readable_register(codec, reg);
1988         else
1989                 return 1;
1990 }
1991 EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
1992
1993 /**
1994  * snd_soc_codec_writable_register: Report if a register is writable.
1995  *
1996  * @codec: CODEC to query.
1997  * @reg: Register to query.
1998  *
1999  * Boolean function indicating if a CODEC register is writable.
2000  */
2001 int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
2002                                     unsigned int reg)
2003 {
2004         if (codec->writable_register)
2005                 return codec->writable_register(codec, reg);
2006         else
2007                 return 1;
2008 }
2009 EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
2010
2011 int snd_soc_platform_read(struct snd_soc_platform *platform,
2012                                         unsigned int reg)
2013 {
2014         unsigned int ret;
2015
2016         if (!platform->driver->read) {
2017                 dev_err(platform->dev, "ASoC: platform has no read back\n");
2018                 return -1;
2019         }
2020
2021         ret = platform->driver->read(platform, reg);
2022         dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
2023         trace_snd_soc_preg_read(platform, reg, ret);
2024
2025         return ret;
2026 }
2027 EXPORT_SYMBOL_GPL(snd_soc_platform_read);
2028
2029 int snd_soc_platform_write(struct snd_soc_platform *platform,
2030                                          unsigned int reg, unsigned int val)
2031 {
2032         if (!platform->driver->write) {
2033                 dev_err(platform->dev, "ASoC: platform has no write back\n");
2034                 return -1;
2035         }
2036
2037         dev_dbg(platform->dev, "write %x = %x\n", reg, val);
2038         trace_snd_soc_preg_write(platform, reg, val);
2039         return platform->driver->write(platform, reg, val);
2040 }
2041 EXPORT_SYMBOL_GPL(snd_soc_platform_write);
2042
2043 /**
2044  * snd_soc_new_ac97_codec - initailise AC97 device
2045  * @codec: audio codec
2046  * @ops: AC97 bus operations
2047  * @num: AC97 codec number
2048  *
2049  * Initialises AC97 codec resources for use by ad-hoc devices only.
2050  */
2051 int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2052         struct snd_ac97_bus_ops *ops, int num)
2053 {
2054         mutex_lock(&codec->mutex);
2055
2056         codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2057         if (codec->ac97 == NULL) {
2058                 mutex_unlock(&codec->mutex);
2059                 return -ENOMEM;
2060         }
2061
2062         codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2063         if (codec->ac97->bus == NULL) {
2064                 kfree(codec->ac97);
2065                 codec->ac97 = NULL;
2066                 mutex_unlock(&codec->mutex);
2067                 return -ENOMEM;
2068         }
2069
2070         codec->ac97->bus->ops = ops;
2071         codec->ac97->num = num;
2072
2073         /*
2074          * Mark the AC97 device to be created by us. This way we ensure that the
2075          * device will be registered with the device subsystem later on.
2076          */
2077         codec->ac97_created = 1;
2078
2079         mutex_unlock(&codec->mutex);
2080         return 0;
2081 }
2082 EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2083
2084 static struct snd_ac97_reset_cfg snd_ac97_rst_cfg;
2085
2086 static void snd_soc_ac97_warm_reset(struct snd_ac97 *ac97)
2087 {
2088         struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2089
2090         pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_warm_reset);
2091
2092         gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 1);
2093
2094         udelay(10);
2095
2096         gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2097
2098         pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2099         msleep(2);
2100 }
2101
2102 static void snd_soc_ac97_reset(struct snd_ac97 *ac97)
2103 {
2104         struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2105
2106         pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_reset);
2107
2108         gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2109         gpio_direction_output(snd_ac97_rst_cfg.gpio_sdata, 0);
2110         gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 0);
2111
2112         udelay(10);
2113
2114         gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 1);
2115
2116         pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2117         msleep(2);
2118 }
2119
2120 static int snd_soc_ac97_parse_pinctl(struct device *dev,
2121                 struct snd_ac97_reset_cfg *cfg)
2122 {
2123         struct pinctrl *p;
2124         struct pinctrl_state *state;
2125         int gpio;
2126         int ret;
2127
2128         p = devm_pinctrl_get(dev);
2129         if (IS_ERR(p)) {
2130                 dev_err(dev, "Failed to get pinctrl\n");
2131                 return PTR_RET(p);
2132         }
2133         cfg->pctl = p;
2134
2135         state = pinctrl_lookup_state(p, "ac97-reset");
2136         if (IS_ERR(state)) {
2137                 dev_err(dev, "Can't find pinctrl state ac97-reset\n");
2138                 return PTR_RET(state);
2139         }
2140         cfg->pstate_reset = state;
2141
2142         state = pinctrl_lookup_state(p, "ac97-warm-reset");
2143         if (IS_ERR(state)) {
2144                 dev_err(dev, "Can't find pinctrl state ac97-warm-reset\n");
2145                 return PTR_RET(state);
2146         }
2147         cfg->pstate_warm_reset = state;
2148
2149         state = pinctrl_lookup_state(p, "ac97-running");
2150         if (IS_ERR(state)) {
2151                 dev_err(dev, "Can't find pinctrl state ac97-running\n");
2152                 return PTR_RET(state);
2153         }
2154         cfg->pstate_run = state;
2155
2156         gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 0);
2157         if (gpio < 0) {
2158                 dev_err(dev, "Can't find ac97-sync gpio\n");
2159                 return gpio;
2160         }
2161         ret = devm_gpio_request(dev, gpio, "AC97 link sync");
2162         if (ret) {
2163                 dev_err(dev, "Failed requesting ac97-sync gpio\n");
2164                 return ret;
2165         }
2166         cfg->gpio_sync = gpio;
2167
2168         gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 1);
2169         if (gpio < 0) {
2170                 dev_err(dev, "Can't find ac97-sdata gpio %d\n", gpio);
2171                 return gpio;
2172         }
2173         ret = devm_gpio_request(dev, gpio, "AC97 link sdata");
2174         if (ret) {
2175                 dev_err(dev, "Failed requesting ac97-sdata gpio\n");
2176                 return ret;
2177         }
2178         cfg->gpio_sdata = gpio;
2179
2180         gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 2);
2181         if (gpio < 0) {
2182                 dev_err(dev, "Can't find ac97-reset gpio\n");
2183                 return gpio;
2184         }
2185         ret = devm_gpio_request(dev, gpio, "AC97 link reset");
2186         if (ret) {
2187                 dev_err(dev, "Failed requesting ac97-reset gpio\n");
2188                 return ret;
2189         }
2190         cfg->gpio_reset = gpio;
2191
2192         return 0;
2193 }
2194
2195 struct snd_ac97_bus_ops *soc_ac97_ops;
2196 EXPORT_SYMBOL_GPL(soc_ac97_ops);
2197
2198 int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
2199 {
2200         if (ops == soc_ac97_ops)
2201                 return 0;
2202
2203         if (soc_ac97_ops && ops)
2204                 return -EBUSY;
2205
2206         soc_ac97_ops = ops;
2207
2208         return 0;
2209 }
2210 EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops);
2211
2212 /**
2213  * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
2214  *
2215  * This function sets the reset and warm_reset properties of ops and parses
2216  * the device node of pdev to get pinctrl states and gpio numbers to use.
2217  */
2218 int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
2219                 struct platform_device *pdev)
2220 {
2221         struct device *dev = &pdev->dev;
2222         struct snd_ac97_reset_cfg cfg;
2223         int ret;
2224
2225         ret = snd_soc_ac97_parse_pinctl(dev, &cfg);
2226         if (ret)
2227                 return ret;
2228
2229         ret = snd_soc_set_ac97_ops(ops);
2230         if (ret)
2231                 return ret;
2232
2233         ops->warm_reset = snd_soc_ac97_warm_reset;
2234         ops->reset = snd_soc_ac97_reset;
2235
2236         snd_ac97_rst_cfg = cfg;
2237         return 0;
2238 }
2239 EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset);
2240
2241 /**
2242  * snd_soc_free_ac97_codec - free AC97 codec device
2243  * @codec: audio codec
2244  *
2245  * Frees AC97 codec device resources.
2246  */
2247 void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2248 {
2249         mutex_lock(&codec->mutex);
2250 #ifdef CONFIG_SND_SOC_AC97_BUS
2251         soc_unregister_ac97_dai_link(codec);
2252 #endif
2253         kfree(codec->ac97->bus);
2254         kfree(codec->ac97);
2255         codec->ac97 = NULL;
2256         codec->ac97_created = 0;
2257         mutex_unlock(&codec->mutex);
2258 }
2259 EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2260
2261 unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2262 {
2263         unsigned int ret;
2264
2265         ret = codec->read(codec, reg);
2266         dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
2267         trace_snd_soc_reg_read(codec, reg, ret);
2268
2269         return ret;
2270 }
2271 EXPORT_SYMBOL_GPL(snd_soc_read);
2272
2273 unsigned int snd_soc_write(struct snd_soc_codec *codec,
2274                            unsigned int reg, unsigned int val)
2275 {
2276         dev_dbg(codec->dev, "write %x = %x\n", reg, val);
2277         trace_snd_soc_reg_write(codec, reg, val);
2278         return codec->write(codec, reg, val);
2279 }
2280 EXPORT_SYMBOL_GPL(snd_soc_write);
2281
2282 /**
2283  * snd_soc_update_bits - update codec register bits
2284  * @codec: audio codec
2285  * @reg: codec register
2286  * @mask: register mask
2287  * @value: new value
2288  *
2289  * Writes new register value.
2290  *
2291  * Returns 1 for change, 0 for no change, or negative error code.
2292  */
2293 int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
2294                                 unsigned int mask, unsigned int value)
2295 {
2296         bool change;
2297         unsigned int old, new;
2298         int ret;
2299
2300         if (codec->using_regmap) {
2301                 ret = regmap_update_bits_check(codec->control_data, reg,
2302                                                mask, value, &change);
2303         } else {
2304                 ret = snd_soc_read(codec, reg);
2305                 if (ret < 0)
2306                         return ret;
2307
2308                 old = ret;
2309                 new = (old & ~mask) | (value & mask);
2310                 change = old != new;
2311                 if (change)
2312                         ret = snd_soc_write(codec, reg, new);
2313         }
2314
2315         if (ret < 0)
2316                 return ret;
2317
2318         return change;
2319 }
2320 EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2321
2322 /**
2323  * snd_soc_update_bits_locked - update codec register bits
2324  * @codec: audio codec
2325  * @reg: codec register
2326  * @mask: register mask
2327  * @value: new value
2328  *
2329  * Writes new register value, and takes the codec mutex.
2330  *
2331  * Returns 1 for change else 0.
2332  */
2333 int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2334                                unsigned short reg, unsigned int mask,
2335                                unsigned int value)
2336 {
2337         int change;
2338
2339         mutex_lock(&codec->mutex);
2340         change = snd_soc_update_bits(codec, reg, mask, value);
2341         mutex_unlock(&codec->mutex);
2342
2343         return change;
2344 }
2345 EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
2346
2347 /**
2348  * snd_soc_test_bits - test register for change
2349  * @codec: audio codec
2350  * @reg: codec register
2351  * @mask: register mask
2352  * @value: new value
2353  *
2354  * Tests a register with a new value and checks if the new value is
2355  * different from the old value.
2356  *
2357  * Returns 1 for change else 0.
2358  */
2359 int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
2360                                 unsigned int mask, unsigned int value)
2361 {
2362         int change;
2363         unsigned int old, new;
2364
2365         old = snd_soc_read(codec, reg);
2366         new = (old & ~mask) | value;
2367         change = old != new;
2368
2369         return change;
2370 }
2371 EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2372
2373 /**
2374  * snd_soc_cnew - create new control
2375  * @_template: control template
2376  * @data: control private data
2377  * @long_name: control long name
2378  * @prefix: control name prefix
2379  *
2380  * Create a new mixer control from a template control.
2381  *
2382  * Returns 0 for success, else error.
2383  */
2384 struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2385                                   void *data, const char *long_name,
2386                                   const char *prefix)
2387 {
2388         struct snd_kcontrol_new template;
2389         struct snd_kcontrol *kcontrol;
2390         char *name = NULL;
2391
2392         memcpy(&template, _template, sizeof(template));
2393         template.index = 0;
2394
2395         if (!long_name)
2396                 long_name = template.name;
2397
2398         if (prefix) {
2399                 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
2400                 if (!name)
2401                         return NULL;
2402
2403                 template.name = name;
2404         } else {
2405                 template.name = long_name;
2406         }
2407
2408         kcontrol = snd_ctl_new1(&template, data);
2409
2410         kfree(name);
2411
2412         return kcontrol;
2413 }
2414 EXPORT_SYMBOL_GPL(snd_soc_cnew);
2415
2416 static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2417         const struct snd_kcontrol_new *controls, int num_controls,
2418         const char *prefix, void *data)
2419 {
2420         int err, i;
2421
2422         for (i = 0; i < num_controls; i++) {
2423                 const struct snd_kcontrol_new *control = &controls[i];
2424                 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2425                                                      control->name, prefix));
2426                 if (err < 0) {
2427                         dev_err(dev, "ASoC: Failed to add %s: %d\n",
2428                                 control->name, err);
2429                         return err;
2430                 }
2431         }
2432
2433         return 0;
2434 }
2435
2436 struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2437                                                const char *name)
2438 {
2439         struct snd_card *card = soc_card->snd_card;
2440         struct snd_kcontrol *kctl;
2441
2442         if (unlikely(!name))
2443                 return NULL;
2444
2445         list_for_each_entry(kctl, &card->controls, list)
2446                 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2447                         return kctl;
2448         return NULL;
2449 }
2450 EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2451
2452 /**
2453  * snd_soc_add_codec_controls - add an array of controls to a codec.
2454  * Convenience function to add a list of controls. Many codecs were
2455  * duplicating this code.
2456  *
2457  * @codec: codec to add controls to
2458  * @controls: array of controls to add
2459  * @num_controls: number of elements in the array
2460  *
2461  * Return 0 for success, else error.
2462  */
2463 int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
2464         const struct snd_kcontrol_new *controls, int num_controls)
2465 {
2466         struct snd_card *card = codec->card->snd_card;
2467
2468         return snd_soc_add_controls(card, codec->dev, controls, num_controls,
2469                         codec->name_prefix, codec);
2470 }
2471 EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
2472
2473 /**
2474  * snd_soc_add_platform_controls - add an array of controls to a platform.
2475  * Convenience function to add a list of controls.
2476  *
2477  * @platform: platform to add controls to
2478  * @controls: array of controls to add
2479  * @num_controls: number of elements in the array
2480  *
2481  * Return 0 for success, else error.
2482  */
2483 int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2484         const struct snd_kcontrol_new *controls, int num_controls)
2485 {
2486         struct snd_card *card = platform->card->snd_card;
2487
2488         return snd_soc_add_controls(card, platform->dev, controls, num_controls,
2489                         NULL, platform);
2490 }
2491 EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2492
2493 /**
2494  * snd_soc_add_card_controls - add an array of controls to a SoC card.
2495  * Convenience function to add a list of controls.
2496  *
2497  * @soc_card: SoC card to add controls to
2498  * @controls: array of controls to add
2499  * @num_controls: number of elements in the array
2500  *
2501  * Return 0 for success, else error.
2502  */
2503 int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2504         const struct snd_kcontrol_new *controls, int num_controls)
2505 {
2506         struct snd_card *card = soc_card->snd_card;
2507
2508         return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2509                         NULL, soc_card);
2510 }
2511 EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2512
2513 /**
2514  * snd_soc_add_dai_controls - add an array of controls to a DAI.
2515  * Convienience function to add a list of controls.
2516  *
2517  * @dai: DAI to add controls to
2518  * @controls: array of controls to add
2519  * @num_controls: number of elements in the array
2520  *
2521  * Return 0 for success, else error.
2522  */
2523 int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2524         const struct snd_kcontrol_new *controls, int num_controls)
2525 {
2526         struct snd_card *card = dai->card->snd_card;
2527
2528         return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2529                         NULL, dai);
2530 }
2531 EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2532
2533 /**
2534  * snd_soc_info_enum_double - enumerated double mixer info callback
2535  * @kcontrol: mixer control
2536  * @uinfo: control element information
2537  *
2538  * Callback to provide information about a double enumerated
2539  * mixer control.
2540  *
2541  * Returns 0 for success.
2542  */
2543 int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2544         struct snd_ctl_elem_info *uinfo)
2545 {
2546         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2547
2548         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2549         uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
2550         uinfo->value.enumerated.items = e->max;
2551
2552         if (uinfo->value.enumerated.item > e->max - 1)
2553                 uinfo->value.enumerated.item = e->max - 1;
2554         strcpy(uinfo->value.enumerated.name,
2555                 e->texts[uinfo->value.enumerated.item]);
2556         return 0;
2557 }
2558 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2559
2560 /**
2561  * snd_soc_get_enum_double - enumerated double mixer get callback
2562  * @kcontrol: mixer control
2563  * @ucontrol: control element information
2564  *
2565  * Callback to get the value of a double enumerated mixer.
2566  *
2567  * Returns 0 for success.
2568  */
2569 int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2570         struct snd_ctl_elem_value *ucontrol)
2571 {
2572         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2573         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2574         unsigned int val;
2575
2576         val = snd_soc_read(codec, e->reg);
2577         ucontrol->value.enumerated.item[0]
2578                 = (val >> e->shift_l) & e->mask;
2579         if (e->shift_l != e->shift_r)
2580                 ucontrol->value.enumerated.item[1] =
2581                         (val >> e->shift_r) & e->mask;
2582
2583         return 0;
2584 }
2585 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2586
2587 /**
2588  * snd_soc_put_enum_double - enumerated double mixer put callback
2589  * @kcontrol: mixer control
2590  * @ucontrol: control element information
2591  *
2592  * Callback to set the value of a double enumerated mixer.
2593  *
2594  * Returns 0 for success.
2595  */
2596 int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2597         struct snd_ctl_elem_value *ucontrol)
2598 {
2599         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2600         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2601         unsigned int val;
2602         unsigned int mask;
2603
2604         if (ucontrol->value.enumerated.item[0] > e->max - 1)
2605                 return -EINVAL;
2606         val = ucontrol->value.enumerated.item[0] << e->shift_l;
2607         mask = e->mask << e->shift_l;
2608         if (e->shift_l != e->shift_r) {
2609                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2610                         return -EINVAL;
2611                 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2612                 mask |= e->mask << e->shift_r;
2613         }
2614
2615         return snd_soc_update_bits_locked(codec, e->reg, mask, val);
2616 }
2617 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2618
2619 /**
2620  * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2621  * @kcontrol: mixer control
2622  * @ucontrol: control element information
2623  *
2624  * Callback to get the value of a double semi enumerated mixer.
2625  *
2626  * Semi enumerated mixer: the enumerated items are referred as values. Can be
2627  * used for handling bitfield coded enumeration for example.
2628  *
2629  * Returns 0 for success.
2630  */
2631 int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2632         struct snd_ctl_elem_value *ucontrol)
2633 {
2634         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2635         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2636         unsigned int reg_val, val, mux;
2637
2638         reg_val = snd_soc_read(codec, e->reg);
2639         val = (reg_val >> e->shift_l) & e->mask;
2640         for (mux = 0; mux < e->max; mux++) {
2641                 if (val == e->values[mux])
2642                         break;
2643         }
2644         ucontrol->value.enumerated.item[0] = mux;
2645         if (e->shift_l != e->shift_r) {
2646                 val = (reg_val >> e->shift_r) & e->mask;
2647                 for (mux = 0; mux < e->max; mux++) {
2648                         if (val == e->values[mux])
2649                                 break;
2650                 }
2651                 ucontrol->value.enumerated.item[1] = mux;
2652         }
2653
2654         return 0;
2655 }
2656 EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2657
2658 /**
2659  * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2660  * @kcontrol: mixer control
2661  * @ucontrol: control element information
2662  *
2663  * Callback to set the value of a double semi enumerated mixer.
2664  *
2665  * Semi enumerated mixer: the enumerated items are referred as values. Can be
2666  * used for handling bitfield coded enumeration for example.
2667  *
2668  * Returns 0 for success.
2669  */
2670 int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2671         struct snd_ctl_elem_value *ucontrol)
2672 {
2673         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2674         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2675         unsigned int val;
2676         unsigned int mask;
2677
2678         if (ucontrol->value.enumerated.item[0] > e->max - 1)
2679                 return -EINVAL;
2680         val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2681         mask = e->mask << e->shift_l;
2682         if (e->shift_l != e->shift_r) {
2683                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2684                         return -EINVAL;
2685                 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2686                 mask |= e->mask << e->shift_r;
2687         }
2688
2689         return snd_soc_update_bits_locked(codec, e->reg, mask, val);
2690 }
2691 EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2692
2693 /**
2694  * snd_soc_info_volsw - single mixer info callback
2695  * @kcontrol: mixer control
2696  * @uinfo: control element information
2697  *
2698  * Callback to provide information about a single mixer control, or a double
2699  * mixer control that spans 2 registers.
2700  *
2701  * Returns 0 for success.
2702  */
2703 int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2704         struct snd_ctl_elem_info *uinfo)
2705 {
2706         struct soc_mixer_control *mc =
2707                 (struct soc_mixer_control *)kcontrol->private_value;
2708         int platform_max;
2709
2710         if (!mc->platform_max)
2711                 mc->platform_max = mc->max;
2712         platform_max = mc->platform_max;
2713
2714         if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
2715                 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2716         else
2717                 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2718
2719         uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
2720         uinfo->value.integer.min = 0;
2721         uinfo->value.integer.max = platform_max;
2722         return 0;
2723 }
2724 EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2725
2726 /**
2727  * snd_soc_get_volsw - single mixer get callback
2728  * @kcontrol: mixer control
2729  * @ucontrol: control element information
2730  *
2731  * Callback to get the value of a single mixer control, or a double mixer
2732  * control that spans 2 registers.
2733  *
2734  * Returns 0 for success.
2735  */
2736 int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2737         struct snd_ctl_elem_value *ucontrol)
2738 {
2739         struct soc_mixer_control *mc =
2740                 (struct soc_mixer_control *)kcontrol->private_value;
2741         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2742         unsigned int reg = mc->reg;
2743         unsigned int reg2 = mc->rreg;
2744         unsigned int shift = mc->shift;
2745         unsigned int rshift = mc->rshift;
2746         int max = mc->max;
2747         unsigned int mask = (1 << fls(max)) - 1;
2748         unsigned int invert = mc->invert;
2749
2750         ucontrol->value.integer.value[0] =
2751                 (snd_soc_read(codec, reg) >> shift) & mask;
2752         if (invert)
2753                 ucontrol->value.integer.value[0] =
2754                         max - ucontrol->value.integer.value[0];
2755
2756         if (snd_soc_volsw_is_stereo(mc)) {
2757                 if (reg == reg2)
2758                         ucontrol->value.integer.value[1] =
2759                                 (snd_soc_read(codec, reg) >> rshift) & mask;
2760                 else
2761                         ucontrol->value.integer.value[1] =
2762                                 (snd_soc_read(codec, reg2) >> shift) & mask;
2763                 if (invert)
2764                         ucontrol->value.integer.value[1] =
2765                                 max - ucontrol->value.integer.value[1];
2766         }
2767
2768         return 0;
2769 }
2770 EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2771
2772 /**
2773  * snd_soc_put_volsw - single mixer put callback
2774  * @kcontrol: mixer control
2775  * @ucontrol: control element information
2776  *
2777  * Callback to set the value of a single mixer control, or a double mixer
2778  * control that spans 2 registers.
2779  *
2780  * Returns 0 for success.
2781  */
2782 int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2783         struct snd_ctl_elem_value *ucontrol)
2784 {
2785         struct soc_mixer_control *mc =
2786                 (struct soc_mixer_control *)kcontrol->private_value;
2787         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2788         unsigned int reg = mc->reg;
2789         unsigned int reg2 = mc->rreg;
2790         unsigned int shift = mc->shift;
2791         unsigned int rshift = mc->rshift;
2792         int max = mc->max;
2793         unsigned int mask = (1 << fls(max)) - 1;
2794         unsigned int invert = mc->invert;
2795         int err;
2796         bool type_2r = 0;
2797         unsigned int val2 = 0;
2798         unsigned int val, val_mask;
2799
2800         val = (ucontrol->value.integer.value[0] & mask);
2801         if (invert)
2802                 val = max - val;
2803         val_mask = mask << shift;
2804         val = val << shift;
2805         if (snd_soc_volsw_is_stereo(mc)) {
2806                 val2 = (ucontrol->value.integer.value[1] & mask);
2807                 if (invert)
2808                         val2 = max - val2;
2809                 if (reg == reg2) {
2810                         val_mask |= mask << rshift;
2811                         val |= val2 << rshift;
2812                 } else {
2813                         val2 = val2 << shift;
2814                         type_2r = 1;
2815                 }
2816         }
2817         err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
2818         if (err < 0)
2819                 return err;
2820
2821         if (type_2r)
2822                 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2823
2824         return err;
2825 }
2826 EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2827
2828 /**
2829  * snd_soc_get_volsw_sx - single mixer get callback
2830  * @kcontrol: mixer control
2831  * @ucontrol: control element information
2832  *
2833  * Callback to get the value of a single mixer control, or a double mixer
2834  * control that spans 2 registers.
2835  *
2836  * Returns 0 for success.
2837  */
2838 int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2839                       struct snd_ctl_elem_value *ucontrol)
2840 {
2841         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2842         struct soc_mixer_control *mc =
2843             (struct soc_mixer_control *)kcontrol->private_value;
2844
2845         unsigned int reg = mc->reg;
2846         unsigned int reg2 = mc->rreg;
2847         unsigned int shift = mc->shift;
2848         unsigned int rshift = mc->rshift;
2849         int max = mc->max;
2850         int min = mc->min;
2851         int mask = (1 << (fls(min + max) - 1)) - 1;
2852
2853         ucontrol->value.integer.value[0] =
2854             ((snd_soc_read(codec, reg) >> shift) - min) & mask;
2855
2856         if (snd_soc_volsw_is_stereo(mc))
2857                 ucontrol->value.integer.value[1] =
2858                         ((snd_soc_read(codec, reg2) >> rshift) - min) & mask;
2859
2860         return 0;
2861 }
2862 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2863
2864 /**
2865  * snd_soc_put_volsw_sx - double mixer set callback
2866  * @kcontrol: mixer control
2867  * @uinfo: control element information
2868  *
2869  * Callback to set the value of a double mixer control that spans 2 registers.
2870  *
2871  * Returns 0 for success.
2872  */
2873 int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2874                          struct snd_ctl_elem_value *ucontrol)
2875 {
2876         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2877         struct soc_mixer_control *mc =
2878             (struct soc_mixer_control *)kcontrol->private_value;
2879
2880         unsigned int reg = mc->reg;
2881         unsigned int reg2 = mc->rreg;
2882         unsigned int shift = mc->shift;
2883         unsigned int rshift = mc->rshift;
2884         int max = mc->max;
2885         int min = mc->min;
2886         int mask = (1 << (fls(min + max) - 1)) - 1;
2887         int err = 0;
2888         unsigned short val, val_mask, val2 = 0;
2889
2890         val_mask = mask << shift;
2891         val = (ucontrol->value.integer.value[0] + min) & mask;
2892         val = val << shift;
2893
2894         err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
2895         if (err < 0)
2896                 return err;
2897
2898         if (snd_soc_volsw_is_stereo(mc)) {
2899                 val_mask = mask << rshift;
2900                 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2901                 val2 = val2 << rshift;
2902
2903                 if (snd_soc_update_bits_locked(codec, reg2, val_mask, val2))
2904                         return err;
2905         }
2906         return 0;
2907 }
2908 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2909
2910 /**
2911  * snd_soc_info_volsw_s8 - signed mixer info callback
2912  * @kcontrol: mixer control
2913  * @uinfo: control element information
2914  *
2915  * Callback to provide information about a signed mixer control.
2916  *
2917  * Returns 0 for success.
2918  */
2919 int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2920         struct snd_ctl_elem_info *uinfo)
2921 {
2922         struct soc_mixer_control *mc =
2923                 (struct soc_mixer_control *)kcontrol->private_value;
2924         int platform_max;
2925         int min = mc->min;
2926
2927         if (!mc->platform_max)
2928                 mc->platform_max = mc->max;
2929         platform_max = mc->platform_max;
2930
2931         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2932         uinfo->count = 2;
2933         uinfo->value.integer.min = 0;
2934         uinfo->value.integer.max = platform_max - min;
2935         return 0;
2936 }
2937 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2938
2939 /**
2940  * snd_soc_get_volsw_s8 - signed mixer get callback
2941  * @kcontrol: mixer control
2942  * @ucontrol: control element information
2943  *
2944  * Callback to get the value of a signed mixer control.
2945  *
2946  * Returns 0 for success.
2947  */
2948 int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2949         struct snd_ctl_elem_value *ucontrol)
2950 {
2951         struct soc_mixer_control *mc =
2952                 (struct soc_mixer_control *)kcontrol->private_value;
2953         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2954         unsigned int reg = mc->reg;
2955         int min = mc->min;
2956         int val = snd_soc_read(codec, reg);
2957
2958         ucontrol->value.integer.value[0] =
2959                 ((signed char)(val & 0xff))-min;
2960         ucontrol->value.integer.value[1] =
2961                 ((signed char)((val >> 8) & 0xff))-min;
2962         return 0;
2963 }
2964 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2965
2966 /**
2967  * snd_soc_put_volsw_sgn - signed mixer put callback
2968  * @kcontrol: mixer control
2969  * @ucontrol: control element information
2970  *
2971  * Callback to set the value of a signed mixer control.
2972  *
2973  * Returns 0 for success.
2974  */
2975 int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2976         struct snd_ctl_elem_value *ucontrol)
2977 {
2978         struct soc_mixer_control *mc =
2979                 (struct soc_mixer_control *)kcontrol->private_value;
2980         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2981         unsigned int reg = mc->reg;
2982         int min = mc->min;
2983         unsigned int val;
2984
2985         val = (ucontrol->value.integer.value[0]+min) & 0xff;
2986         val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2987
2988         return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
2989 }
2990 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2991
2992 /**
2993  * snd_soc_info_volsw_range - single mixer info callback with range.
2994  * @kcontrol: mixer control
2995  * @uinfo: control element information
2996  *
2997  * Callback to provide information, within a range, about a single
2998  * mixer control.
2999  *
3000  * returns 0 for success.
3001  */
3002 int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
3003         struct snd_ctl_elem_info *uinfo)
3004 {
3005         struct soc_mixer_control *mc =
3006                 (struct soc_mixer_control *)kcontrol->private_value;
3007         int platform_max;
3008         int min = mc->min;
3009
3010         if (!mc->platform_max)
3011                 mc->platform_max = mc->max;
3012         platform_max = mc->platform_max;
3013
3014         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3015         uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
3016         uinfo->value.integer.min = 0;
3017         uinfo->value.integer.max = platform_max - min;
3018
3019         return 0;
3020 }
3021 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
3022
3023 /**
3024  * snd_soc_put_volsw_range - single mixer put value callback with range.
3025  * @kcontrol: mixer control
3026  * @ucontrol: control element information
3027  *
3028  * Callback to set the value, within a range, for a single mixer control.
3029  *
3030  * Returns 0 for success.
3031  */
3032 int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
3033         struct snd_ctl_elem_value *ucontrol)
3034 {
3035         struct soc_mixer_control *mc =
3036                 (struct soc_mixer_control *)kcontrol->private_value;
3037         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3038         unsigned int reg = mc->reg;
3039         unsigned int rreg = mc->rreg;
3040         unsigned int shift = mc->shift;
3041         int min = mc->min;
3042         int max = mc->max;
3043         unsigned int mask = (1 << fls(max)) - 1;
3044         unsigned int invert = mc->invert;
3045         unsigned int val, val_mask;
3046         int ret;
3047
3048         val = ((ucontrol->value.integer.value[0] + min) & mask);
3049         if (invert)
3050                 val = max - val;
3051         val_mask = mask << shift;
3052         val = val << shift;
3053
3054         ret = snd_soc_update_bits_locked(codec, reg, val_mask, val);
3055         if (ret < 0)
3056                 return ret;
3057
3058         if (snd_soc_volsw_is_stereo(mc)) {
3059                 val = ((ucontrol->value.integer.value[1] + min) & mask);
3060                 if (invert)
3061                         val = max - val;
3062                 val_mask = mask << shift;
3063                 val = val << shift;
3064
3065                 ret = snd_soc_update_bits_locked(codec, rreg, val_mask, val);
3066         }
3067
3068         return ret;
3069 }
3070 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
3071
3072 /**
3073  * snd_soc_get_volsw_range - single mixer get callback with range
3074  * @kcontrol: mixer control
3075  * @ucontrol: control element information
3076  *
3077  * Callback to get the value, within a range, of a single mixer control.
3078  *
3079  * Returns 0 for success.
3080  */
3081 int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
3082         struct snd_ctl_elem_value *ucontrol)
3083 {
3084         struct soc_mixer_control *mc =
3085                 (struct soc_mixer_control *)kcontrol->private_value;
3086         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3087         unsigned int reg = mc->reg;
3088         unsigned int rreg = mc->rreg;
3089         unsigned int shift = mc->shift;
3090         int min = mc->min;
3091         int max = mc->max;
3092         unsigned int mask = (1 << fls(max)) - 1;
3093         unsigned int invert = mc->invert;
3094
3095         ucontrol->value.integer.value[0] =
3096                 (snd_soc_read(codec, reg) >> shift) & mask;
3097         if (invert)
3098                 ucontrol->value.integer.value[0] =
3099                         max - ucontrol->value.integer.value[0];
3100         ucontrol->value.integer.value[0] =
3101                 ucontrol->value.integer.value[0] - min;
3102
3103         if (snd_soc_volsw_is_stereo(mc)) {
3104                 ucontrol->value.integer.value[1] =
3105                         (snd_soc_read(codec, rreg) >> shift) & mask;
3106                 if (invert)
3107                         ucontrol->value.integer.value[1] =
3108                                 max - ucontrol->value.integer.value[1];
3109                 ucontrol->value.integer.value[1] =
3110                         ucontrol->value.integer.value[1] - min;
3111         }
3112
3113         return 0;
3114 }
3115 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
3116
3117 /**
3118  * snd_soc_limit_volume - Set new limit to an existing volume control.
3119  *
3120  * @codec: where to look for the control
3121  * @name: Name of the control
3122  * @max: new maximum limit
3123  *
3124  * Return 0 for success, else error.
3125  */
3126 int snd_soc_limit_volume(struct snd_soc_codec *codec,
3127         const char *name, int max)
3128 {
3129         struct snd_card *card = codec->card->snd_card;
3130         struct snd_kcontrol *kctl;
3131         struct soc_mixer_control *mc;
3132         int found = 0;
3133         int ret = -EINVAL;
3134
3135         /* Sanity check for name and max */
3136         if (unlikely(!name || max <= 0))
3137                 return -EINVAL;
3138
3139         list_for_each_entry(kctl, &card->controls, list) {
3140                 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3141                         found = 1;
3142                         break;
3143                 }
3144         }
3145         if (found) {
3146                 mc = (struct soc_mixer_control *)kctl->private_value;
3147                 if (max <= mc->max) {
3148                         mc->platform_max = max;
3149                         ret = 0;
3150                 }
3151         }
3152         return ret;
3153 }
3154 EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3155
3156 int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
3157                        struct snd_ctl_elem_info *uinfo)
3158 {
3159         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3160         struct soc_bytes *params = (void *)kcontrol->private_value;
3161
3162         uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
3163         uinfo->count = params->num_regs * codec->val_bytes;
3164
3165         return 0;
3166 }
3167 EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
3168
3169 int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
3170                       struct snd_ctl_elem_value *ucontrol)
3171 {
3172         struct soc_bytes *params = (void *)kcontrol->private_value;
3173         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3174         int ret;
3175
3176         if (codec->using_regmap)
3177                 ret = regmap_raw_read(codec->control_data, params->base,
3178                                       ucontrol->value.bytes.data,
3179                                       params->num_regs * codec->val_bytes);
3180         else
3181                 ret = -EINVAL;
3182
3183         /* Hide any masked bytes to ensure consistent data reporting */
3184         if (ret == 0 && params->mask) {
3185                 switch (codec->val_bytes) {
3186                 case 1:
3187                         ucontrol->value.bytes.data[0] &= ~params->mask;
3188                         break;
3189                 case 2:
3190                         ((u16 *)(&ucontrol->value.bytes.data))[0]
3191                                 &= ~params->mask;
3192                         break;
3193                 case 4:
3194                         ((u32 *)(&ucontrol->value.bytes.data))[0]
3195                                 &= ~params->mask;
3196                         break;
3197                 default:
3198                         return -EINVAL;
3199                 }
3200         }
3201
3202         return ret;
3203 }
3204 EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
3205
3206 int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
3207                       struct snd_ctl_elem_value *ucontrol)
3208 {
3209         struct soc_bytes *params = (void *)kcontrol->private_value;
3210         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3211         int ret, len;
3212         unsigned int val;
3213         void *data;
3214
3215         if (!codec->using_regmap)
3216                 return -EINVAL;
3217
3218         len = params->num_regs * codec->val_bytes;
3219
3220         data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
3221         if (!data)
3222                 return -ENOMEM;
3223
3224         /*
3225          * If we've got a mask then we need to preserve the register
3226          * bits.  We shouldn't modify the incoming data so take a
3227          * copy.
3228          */
3229         if (params->mask) {
3230                 ret = regmap_read(codec->control_data, params->base, &val);
3231                 if (ret != 0)
3232                         goto out;
3233
3234                 val &= params->mask;
3235
3236                 switch (codec->val_bytes) {
3237                 case 1:
3238                         ((u8 *)data)[0] &= ~params->mask;
3239                         ((u8 *)data)[0] |= val;
3240                         break;
3241                 case 2:
3242                         ((u16 *)data)[0] &= cpu_to_be16(~params->mask);
3243                         ((u16 *)data)[0] |= cpu_to_be16(val);
3244                         break;
3245                 case 4:
3246                         ((u32 *)data)[0] &= cpu_to_be32(~params->mask);
3247                         ((u32 *)data)[0] |= cpu_to_be32(val);
3248                         break;
3249                 default:
3250                         ret = -EINVAL;
3251                         goto out;
3252                 }
3253         }
3254
3255         ret = regmap_raw_write(codec->control_data, params->base,
3256                                data, len);
3257
3258 out:
3259         kfree(data);
3260
3261         return ret;
3262 }
3263 EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
3264
3265 /**
3266  * snd_soc_info_xr_sx - signed multi register info callback
3267  * @kcontrol: mreg control
3268  * @uinfo: control element information
3269  *
3270  * Callback to provide information of a control that can
3271  * span multiple codec registers which together
3272  * forms a single signed value in a MSB/LSB manner.
3273  *
3274  * Returns 0 for success.
3275  */
3276 int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
3277         struct snd_ctl_elem_info *uinfo)
3278 {
3279         struct soc_mreg_control *mc =
3280                 (struct soc_mreg_control *)kcontrol->private_value;
3281         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3282         uinfo->count = 1;
3283         uinfo->value.integer.min = mc->min;
3284         uinfo->value.integer.max = mc->max;
3285
3286         return 0;
3287 }
3288 EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
3289
3290 /**
3291  * snd_soc_get_xr_sx - signed multi register get callback
3292  * @kcontrol: mreg control
3293  * @ucontrol: control element information
3294  *
3295  * Callback to get the value of a control that can span
3296  * multiple codec registers which together forms a single
3297  * signed value in a MSB/LSB manner. The control supports
3298  * specifying total no of bits used to allow for bitfields
3299  * across the multiple codec registers.
3300  *
3301  * Returns 0 for success.
3302  */
3303 int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
3304         struct snd_ctl_elem_value *ucontrol)
3305 {
3306         struct soc_mreg_control *mc =
3307                 (struct soc_mreg_control *)kcontrol->private_value;
3308         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3309         unsigned int regbase = mc->regbase;
3310         unsigned int regcount = mc->regcount;
3311         unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3312         unsigned int regwmask = (1<<regwshift)-1;
3313         unsigned int invert = mc->invert;
3314         unsigned long mask = (1UL<<mc->nbits)-1;
3315         long min = mc->min;
3316         long max = mc->max;
3317         long val = 0;
3318         unsigned long regval;
3319         unsigned int i;
3320
3321         for (i = 0; i < regcount; i++) {
3322                 regval = snd_soc_read(codec, regbase+i) & regwmask;
3323                 val |= regval << (regwshift*(regcount-i-1));
3324         }
3325         val &= mask;
3326         if (min < 0 && val > max)
3327                 val |= ~mask;
3328         if (invert)
3329                 val = max - val;
3330         ucontrol->value.integer.value[0] = val;
3331
3332         return 0;
3333 }
3334 EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
3335
3336 /**
3337  * snd_soc_put_xr_sx - signed multi register get callback
3338  * @kcontrol: mreg control
3339  * @ucontrol: control element information
3340  *
3341  * Callback to set the value of a control that can span
3342  * multiple codec registers which together forms a single
3343  * signed value in a MSB/LSB manner. The control supports
3344  * specifying total no of bits used to allow for bitfields
3345  * across the multiple codec registers.
3346  *
3347  * Returns 0 for success.
3348  */
3349 int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
3350         struct snd_ctl_elem_value *ucontrol)
3351 {
3352         struct soc_mreg_control *mc =
3353                 (struct soc_mreg_control *)kcontrol->private_value;
3354         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3355         unsigned int regbase = mc->regbase;
3356         unsigned int regcount = mc->regcount;
3357         unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3358         unsigned int regwmask = (1<<regwshift)-1;
3359         unsigned int invert = mc->invert;
3360         unsigned long mask = (1UL<<mc->nbits)-1;
3361         long max = mc->max;
3362         long val = ucontrol->value.integer.value[0];
3363         unsigned int i, regval, regmask;
3364         int err;
3365
3366         if (invert)
3367                 val = max - val;
3368         val &= mask;
3369         for (i = 0; i < regcount; i++) {
3370                 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3371                 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
3372                 err = snd_soc_update_bits_locked(codec, regbase+i,
3373                                 regmask, regval);
3374                 if (err < 0)
3375                         return err;
3376         }
3377
3378         return 0;
3379 }
3380 EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3381
3382 /**
3383  * snd_soc_get_strobe - strobe get callback
3384  * @kcontrol: mixer control
3385  * @ucontrol: control element information
3386  *
3387  * Callback get the value of a strobe mixer control.
3388  *
3389  * Returns 0 for success.
3390  */
3391 int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
3392         struct snd_ctl_elem_value *ucontrol)
3393 {
3394         struct soc_mixer_control *mc =
3395                 (struct soc_mixer_control *)kcontrol->private_value;
3396         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3397         unsigned int reg = mc->reg;
3398         unsigned int shift = mc->shift;
3399         unsigned int mask = 1 << shift;
3400         unsigned int invert = mc->invert != 0;
3401         unsigned int val = snd_soc_read(codec, reg) & mask;
3402
3403         if (shift != 0 && val != 0)
3404                 val = val >> shift;
3405         ucontrol->value.enumerated.item[0] = val ^ invert;
3406
3407         return 0;
3408 }
3409 EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3410
3411 /**
3412  * snd_soc_put_strobe - strobe put callback
3413  * @kcontrol: mixer control
3414  * @ucontrol: control element information
3415  *
3416  * Callback strobe a register bit to high then low (or the inverse)
3417  * in one pass of a single mixer enum control.
3418  *
3419  * Returns 1 for success.
3420  */
3421 int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3422         struct snd_ctl_elem_value *ucontrol)
3423 {
3424         struct soc_mixer_control *mc =
3425                 (struct soc_mixer_control *)kcontrol->private_value;
3426         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3427         unsigned int reg = mc->reg;
3428         unsigned int shift = mc->shift;
3429         unsigned int mask = 1 << shift;
3430         unsigned int invert = mc->invert != 0;
3431         unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3432         unsigned int val1 = (strobe ^ invert) ? mask : 0;
3433         unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3434         int err;
3435
3436         err = snd_soc_update_bits_locked(codec, reg, mask, val1);
3437         if (err < 0)
3438                 return err;
3439
3440         err = snd_soc_update_bits_locked(codec, reg, mask, val2);
3441         return err;
3442 }
3443 EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3444
3445 /**
3446  * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3447  * @dai: DAI
3448  * @clk_id: DAI specific clock ID
3449  * @freq: new clock frequency in Hz
3450  * @dir: new clock direction - input/output.
3451  *
3452  * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3453  */
3454 int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3455         unsigned int freq, int dir)
3456 {
3457         if (dai->driver && dai->driver->ops->set_sysclk)
3458                 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
3459         else if (dai->codec && dai->codec->driver->set_sysclk)
3460                 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
3461                                                       freq, dir);
3462         else
3463                 return -EINVAL;
3464 }
3465 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3466
3467 /**
3468  * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3469  * @codec: CODEC
3470  * @clk_id: DAI specific clock ID
3471  * @source: Source for the clock
3472  * @freq: new clock frequency in Hz
3473  * @dir: new clock direction - input/output.
3474  *
3475  * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3476  */
3477 int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
3478                              int source, unsigned int freq, int dir)
3479 {
3480         if (codec->driver->set_sysclk)
3481                 return codec->driver->set_sysclk(codec, clk_id, source,
3482                                                  freq, dir);
3483         else
3484                 return -EINVAL;
3485 }
3486 EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3487
3488 /**
3489  * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3490  * @dai: DAI
3491  * @div_id: DAI specific clock divider ID
3492  * @div: new clock divisor.
3493  *
3494  * Configures the clock dividers. This is used to derive the best DAI bit and
3495  * frame clocks from the system or master clock. It's best to set the DAI bit
3496  * and frame clocks as low as possible to save system power.
3497  */
3498 int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3499         int div_id, int div)
3500 {
3501         if (dai->driver && dai->driver->ops->set_clkdiv)
3502                 return dai->driver->ops->set_clkdiv(dai, div_id, div);
3503         else
3504                 return -EINVAL;
3505 }
3506 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3507
3508 /**
3509  * snd_soc_dai_set_pll - configure DAI PLL.
3510  * @dai: DAI
3511  * @pll_id: DAI specific PLL ID
3512  * @source: DAI specific source for the PLL
3513  * @freq_in: PLL input clock frequency in Hz
3514  * @freq_out: requested PLL output clock frequency in Hz
3515  *
3516  * Configures and enables PLL to generate output clock based on input clock.
3517  */
3518 int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3519         unsigned int freq_in, unsigned int freq_out)
3520 {
3521         if (dai->driver && dai->driver->ops->set_pll)
3522                 return dai->driver->ops->set_pll(dai, pll_id, source,
3523                                          freq_in, freq_out);
3524         else if (dai->codec && dai->codec->driver->set_pll)
3525                 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3526                                                    freq_in, freq_out);
3527         else
3528                 return -EINVAL;
3529 }
3530 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3531
3532 /*
3533  * snd_soc_codec_set_pll - configure codec PLL.
3534  * @codec: CODEC
3535  * @pll_id: DAI specific PLL ID
3536  * @source: DAI specific source for the PLL
3537  * @freq_in: PLL input clock frequency in Hz
3538  * @freq_out: requested PLL output clock frequency in Hz
3539  *
3540  * Configures and enables PLL to generate output clock based on input clock.
3541  */
3542 int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3543                           unsigned int freq_in, unsigned int freq_out)
3544 {
3545         if (codec->driver->set_pll)
3546                 return codec->driver->set_pll(codec, pll_id, source,
3547                                               freq_in, freq_out);
3548         else
3549                 return -EINVAL;
3550 }
3551 EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3552
3553 /**
3554  * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
3555  * @dai: DAI
3556  * @ratio Ratio of BCLK to Sample rate.
3557  *
3558  * Configures the DAI for a preset BCLK to sample rate ratio.
3559  */
3560 int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
3561 {
3562         if (dai->driver && dai->driver->ops->set_bclk_ratio)
3563                 return dai->driver->ops->set_bclk_ratio(dai, ratio);
3564         else
3565                 return -EINVAL;
3566 }
3567 EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
3568
3569 /**
3570  * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3571  * @dai: DAI
3572  * @fmt: SND_SOC_DAIFMT_ format value.
3573  *
3574  * Configures the DAI hardware format and clocking.
3575  */
3576 int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3577 {
3578         if (dai->driver == NULL)
3579                 return -EINVAL;
3580         if (dai->driver->ops->set_fmt == NULL)
3581                 return -ENOTSUPP;
3582         return dai->driver->ops->set_fmt(dai, fmt);
3583 }
3584 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3585
3586 /**
3587  * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3588  * @dai: DAI
3589  * @tx_mask: bitmask representing active TX slots.
3590  * @rx_mask: bitmask representing active RX slots.
3591  * @slots: Number of slots in use.
3592  * @slot_width: Width in bits for each slot.
3593  *
3594  * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3595  * specific.
3596  */
3597 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
3598         unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
3599 {
3600         if (dai->driver && dai->driver->ops->set_tdm_slot)
3601                 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
3602                                 slots, slot_width);
3603         else
3604                 return -EINVAL;
3605 }
3606 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3607
3608 /**
3609  * snd_soc_dai_set_channel_map - configure DAI audio channel map
3610  * @dai: DAI
3611  * @tx_num: how many TX channels
3612  * @tx_slot: pointer to an array which imply the TX slot number channel
3613  *           0~num-1 uses
3614  * @rx_num: how many RX channels
3615  * @rx_slot: pointer to an array which imply the RX slot number channel
3616  *           0~num-1 uses
3617  *
3618  * configure the relationship between channel number and TDM slot number.
3619  */
3620 int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3621         unsigned int tx_num, unsigned int *tx_slot,
3622         unsigned int rx_num, unsigned int *rx_slot)
3623 {
3624         if (dai->driver && dai->driver->ops->set_channel_map)
3625                 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
3626                         rx_num, rx_slot);
3627         else
3628                 return -EINVAL;
3629 }
3630 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3631
3632 /**
3633  * snd_soc_dai_set_tristate - configure DAI system or master clock.
3634  * @dai: DAI
3635  * @tristate: tristate enable
3636  *
3637  * Tristates the DAI so that others can use it.
3638  */
3639 int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3640 {
3641         if (dai->driver && dai->driver->ops->set_tristate)
3642                 return dai->driver->ops->set_tristate(dai, tristate);
3643         else
3644                 return -EINVAL;
3645 }
3646 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3647
3648 /**
3649  * snd_soc_dai_digital_mute - configure DAI system or master clock.
3650  * @dai: DAI
3651  * @mute: mute enable
3652  * @direction: stream to mute
3653  *
3654  * Mutes the DAI DAC.
3655  */
3656 int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
3657                              int direction)
3658 {
3659         if (!dai->driver)
3660                 return -ENOTSUPP;
3661
3662         if (dai->driver->ops->mute_stream)
3663                 return dai->driver->ops->mute_stream(dai, mute, direction);
3664         else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
3665                  dai->driver->ops->digital_mute)
3666                 return dai->driver->ops->digital_mute(dai, mute);
3667         else
3668                 return -ENOTSUPP;
3669 }
3670 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3671
3672 /**
3673  * snd_soc_register_card - Register a card with the ASoC core
3674  *
3675  * @card: Card to register
3676  *
3677  */
3678 int snd_soc_register_card(struct snd_soc_card *card)
3679 {
3680         int i, ret;
3681
3682         if (!card->name || !card->dev)
3683                 return -EINVAL;
3684
3685         for (i = 0; i < card->num_links; i++) {
3686                 struct snd_soc_dai_link *link = &card->dai_link[i];
3687
3688                 /*
3689                  * Codec must be specified by 1 of name or OF node,
3690                  * not both or neither.
3691                  */
3692                 if (!!link->codec_name == !!link->codec_of_node) {
3693                         dev_err(card->dev,
3694                                 "ASoC: Neither/both codec name/of_node are set for %s\n",
3695                                 link->name);
3696                         return -EINVAL;
3697                 }
3698                 /* Codec DAI name must be specified */
3699                 if (!link->codec_dai_name) {
3700                         dev_err(card->dev,
3701                                 "ASoC: codec_dai_name not set for %s\n",
3702                                 link->name);
3703                         return -EINVAL;
3704                 }
3705
3706                 /*
3707                  * Platform may be specified by either name or OF node, but
3708                  * can be left unspecified, and a dummy platform will be used.
3709                  */
3710                 if (link->platform_name && link->platform_of_node) {
3711                         dev_err(card->dev,
3712                                 "ASoC: Both platform name/of_node are set for %s\n",
3713                                 link->name);
3714                         return -EINVAL;
3715                 }
3716
3717                 /*
3718                  * CPU device may be specified by either name or OF node, but
3719                  * can be left unspecified, and will be matched based on DAI
3720                  * name alone..
3721                  */
3722                 if (link->cpu_name && link->cpu_of_node) {
3723                         dev_err(card->dev,
3724                                 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3725                                 link->name);
3726                         return -EINVAL;
3727                 }
3728                 /*
3729                  * At least one of CPU DAI name or CPU device name/node must be
3730                  * specified
3731                  */
3732                 if (!link->cpu_dai_name &&
3733                     !(link->cpu_name || link->cpu_of_node)) {
3734                         dev_err(card->dev,
3735                                 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3736                                 link->name);
3737                         return -EINVAL;
3738                 }
3739         }
3740
3741         dev_set_drvdata(card->dev, card);
3742
3743         snd_soc_initialize_card_lists(card);
3744
3745         soc_init_card_debugfs(card);
3746
3747         card->rtd = devm_kzalloc(card->dev,
3748                                  sizeof(struct snd_soc_pcm_runtime) *
3749                                  (card->num_links + card->num_aux_devs),
3750                                  GFP_KERNEL);
3751         if (card->rtd == NULL)
3752                 return -ENOMEM;
3753         card->num_rtd = 0;
3754         card->rtd_aux = &card->rtd[card->num_links];
3755
3756         for (i = 0; i < card->num_links; i++)
3757                 card->rtd[i].dai_link = &card->dai_link[i];
3758
3759         INIT_LIST_HEAD(&card->list);
3760         INIT_LIST_HEAD(&card->dapm_dirty);
3761         card->instantiated = 0;
3762         mutex_init(&card->mutex);
3763         mutex_init(&card->dapm_mutex);
3764
3765         ret = snd_soc_instantiate_card(card);
3766         if (ret != 0)
3767                 soc_cleanup_card_debugfs(card);
3768
3769         return ret;
3770 }
3771 EXPORT_SYMBOL_GPL(snd_soc_register_card);
3772
3773 /**
3774  * snd_soc_unregister_card - Unregister a card with the ASoC core
3775  *
3776  * @card: Card to unregister
3777  *
3778  */
3779 int snd_soc_unregister_card(struct snd_soc_card *card)
3780 {
3781         if (card->instantiated)
3782                 soc_cleanup_card_resources(card);
3783         dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
3784
3785         return 0;
3786 }
3787 EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
3788
3789 /*
3790  * Simplify DAI link configuration by removing ".-1" from device names
3791  * and sanitizing names.
3792  */
3793 static char *fmt_single_name(struct device *dev, int *id)
3794 {
3795         char *found, name[NAME_SIZE];
3796         int id1, id2;
3797
3798         if (dev_name(dev) == NULL)
3799                 return NULL;
3800
3801         strlcpy(name, dev_name(dev), NAME_SIZE);
3802
3803         /* are we a "%s.%d" name (platform and SPI components) */
3804         found = strstr(name, dev->driver->name);
3805         if (found) {
3806                 /* get ID */
3807                 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3808
3809                         /* discard ID from name if ID == -1 */
3810                         if (*id == -1)
3811                                 found[strlen(dev->driver->name)] = '\0';
3812                 }
3813
3814         } else {
3815                 /* I2C component devices are named "bus-addr"  */
3816                 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3817                         char tmp[NAME_SIZE];
3818
3819                         /* create unique ID number from I2C addr and bus */
3820                         *id = ((id1 & 0xffff) << 16) + id2;
3821
3822                         /* sanitize component name for DAI link creation */
3823                         snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
3824                         strlcpy(name, tmp, NAME_SIZE);
3825                 } else
3826                         *id = 0;
3827         }
3828
3829         return kstrdup(name, GFP_KERNEL);
3830 }
3831
3832 /*
3833  * Simplify DAI link naming for single devices with multiple DAIs by removing
3834  * any ".-1" and using the DAI name (instead of device name).
3835  */
3836 static inline char *fmt_multiple_name(struct device *dev,
3837                 struct snd_soc_dai_driver *dai_drv)
3838 {
3839         if (dai_drv->name == NULL) {
3840                 dev_err(dev,
3841                         "ASoC: error - multiple DAI %s registered with no name\n",
3842                         dev_name(dev));
3843                 return NULL;
3844         }
3845
3846         return kstrdup(dai_drv->name, GFP_KERNEL);
3847 }
3848
3849 /**
3850  * snd_soc_register_dai - Register a DAI with the ASoC core
3851  *
3852  * @dai: DAI to register
3853  */
3854 static int snd_soc_register_dai(struct device *dev,
3855                 struct snd_soc_dai_driver *dai_drv)
3856 {
3857         struct snd_soc_codec *codec;
3858         struct snd_soc_dai *dai;
3859
3860         dev_dbg(dev, "ASoC: dai register %s\n", dev_name(dev));
3861
3862         dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3863         if (dai == NULL)
3864                 return -ENOMEM;
3865
3866         /* create DAI component name */
3867         dai->name = fmt_single_name(dev, &dai->id);
3868         if (dai->name == NULL) {
3869                 kfree(dai);
3870                 return -ENOMEM;
3871         }
3872
3873         dai->dev = dev;
3874         dai->driver = dai_drv;
3875         dai->dapm.dev = dev;
3876         if (!dai->driver->ops)
3877                 dai->driver->ops = &null_dai_ops;
3878
3879         mutex_lock(&client_mutex);
3880
3881         list_for_each_entry(codec, &codec_list, list) {
3882                 if (codec->dev == dev) {
3883                         dev_dbg(dev, "ASoC: Mapped DAI %s to CODEC %s\n",
3884                                 dai->name, codec->name);
3885                         dai->codec = codec;
3886                         break;
3887                 }
3888         }
3889
3890         if (!dai->codec)
3891                 dai->dapm.idle_bias_off = 1;
3892
3893         list_add(&dai->list, &dai_list);
3894
3895         mutex_unlock(&client_mutex);
3896
3897         dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
3898
3899         return 0;
3900 }
3901
3902 /**
3903  * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3904  *
3905  * @dai: DAI to unregister
3906  */
3907 static void snd_soc_unregister_dai(struct device *dev)
3908 {
3909         struct snd_soc_dai *dai;
3910
3911         list_for_each_entry(dai, &dai_list, list) {
3912                 if (dev == dai->dev)
3913                         goto found;
3914         }
3915         return;
3916
3917 found:
3918         mutex_lock(&client_mutex);
3919         list_del(&dai->list);
3920         mutex_unlock(&client_mutex);
3921
3922         dev_dbg(dev, "ASoC: Unregistered DAI '%s'\n", dai->name);
3923         kfree(dai->name);
3924         kfree(dai);
3925 }
3926
3927 /**
3928  * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3929  *
3930  * @dai: Array of DAIs to register
3931  * @count: Number of DAIs
3932  */
3933 static int snd_soc_register_dais(struct device *dev,
3934                 struct snd_soc_dai_driver *dai_drv, size_t count)
3935 {
3936         struct snd_soc_codec *codec;
3937         struct snd_soc_dai *dai;
3938         int i, ret = 0;
3939
3940         dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
3941
3942         for (i = 0; i < count; i++) {
3943
3944                 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3945                 if (dai == NULL) {
3946                         ret = -ENOMEM;
3947                         goto err;
3948                 }
3949
3950                 /* create DAI component name */
3951                 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3952                 if (dai->name == NULL) {
3953                         kfree(dai);
3954                         ret = -EINVAL;
3955                         goto err;
3956                 }
3957
3958                 dai->dev = dev;
3959                 dai->driver = &dai_drv[i];
3960                 if (dai->driver->id)
3961                         dai->id = dai->driver->id;
3962                 else
3963                         dai->id = i;
3964                 dai->dapm.dev = dev;
3965                 if (!dai->driver->ops)
3966                         dai->driver->ops = &null_dai_ops;
3967
3968                 mutex_lock(&client_mutex);
3969
3970                 list_for_each_entry(codec, &codec_list, list) {
3971                         if (codec->dev == dev) {
3972                                 dev_dbg(dev,
3973                                         "ASoC: Mapped DAI %s to CODEC %s\n",
3974                                         dai->name, codec->name);
3975                                 dai->codec = codec;
3976                                 break;
3977                         }
3978                 }
3979
3980                 if (!dai->codec)
3981                         dai->dapm.idle_bias_off = 1;
3982
3983                 list_add(&dai->list, &dai_list);
3984
3985                 mutex_unlock(&client_mutex);
3986
3987                 dev_dbg(dai->dev, "ASoC: Registered DAI '%s'\n", dai->name);
3988         }
3989
3990         return 0;
3991
3992 err:
3993         for (i--; i >= 0; i--)
3994                 snd_soc_unregister_dai(dev);
3995
3996         return ret;
3997 }
3998
3999 /**
4000  * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
4001  *
4002  * @dai: Array of DAIs to unregister
4003  * @count: Number of DAIs
4004  */
4005 static void snd_soc_unregister_dais(struct device *dev, size_t count)
4006 {
4007         int i;
4008
4009         for (i = 0; i < count; i++)
4010                 snd_soc_unregister_dai(dev);
4011 }
4012
4013 /**
4014  * snd_soc_register_component - Register a component with the ASoC core
4015  *
4016  */
4017 static int
4018 __snd_soc_register_component(struct device *dev,
4019                              struct snd_soc_component *cmpnt,
4020                              const struct snd_soc_component_driver *cmpnt_drv,
4021                              struct snd_soc_dai_driver *dai_drv,
4022                              int num_dai, bool allow_single_dai)
4023 {
4024         int ret;
4025
4026         dev_dbg(dev, "component register %s\n", dev_name(dev));
4027
4028         if (!cmpnt) {
4029                 dev_err(dev, "ASoC: Failed to connecting component\n");
4030                 return -ENOMEM;
4031         }
4032
4033         cmpnt->name = fmt_single_name(dev, &cmpnt->id);
4034         if (!cmpnt->name) {
4035                 dev_err(dev, "ASoC: Failed to simplifying name\n");
4036                 return -ENOMEM;
4037         }
4038
4039         cmpnt->dev      = dev;
4040         cmpnt->driver   = cmpnt_drv;
4041         cmpnt->dai_drv  = dai_drv;
4042         cmpnt->num_dai  = num_dai;
4043
4044         /*
4045          * snd_soc_register_dai()  uses fmt_single_name(), and
4046          * snd_soc_register_dais() uses fmt_multiple_name()
4047          * for dai->name which is used for name based matching
4048          *
4049          * this function is used from cpu/codec.
4050          * allow_single_dai flag can ignore "codec" driver reworking
4051          * since it had been used snd_soc_register_dais(),
4052          */
4053         if ((1 == num_dai) && allow_single_dai)
4054                 ret = snd_soc_register_dai(dev, dai_drv);
4055         else
4056                 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
4057         if (ret < 0) {
4058                 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4059                 goto error_component_name;
4060         }
4061
4062         mutex_lock(&client_mutex);
4063         list_add(&cmpnt->list, &component_list);
4064         mutex_unlock(&client_mutex);
4065
4066         dev_dbg(cmpnt->dev, "ASoC: Registered component '%s'\n", cmpnt->name);
4067
4068         return ret;
4069
4070 error_component_name:
4071         kfree(cmpnt->name);
4072
4073         return ret;
4074 }
4075
4076 int snd_soc_register_component(struct device *dev,
4077                                const struct snd_soc_component_driver *cmpnt_drv,
4078                                struct snd_soc_dai_driver *dai_drv,
4079                                int num_dai)
4080 {
4081         struct snd_soc_component *cmpnt;
4082
4083         cmpnt = devm_kzalloc(dev, sizeof(*cmpnt), GFP_KERNEL);
4084         if (!cmpnt) {
4085                 dev_err(dev, "ASoC: Failed to allocate memory\n");
4086                 return -ENOMEM;
4087         }
4088
4089         return __snd_soc_register_component(dev, cmpnt, cmpnt_drv,
4090                                             dai_drv, num_dai, true);
4091 }
4092 EXPORT_SYMBOL_GPL(snd_soc_register_component);
4093
4094 /**
4095  * snd_soc_unregister_component - Unregister a component from the ASoC core
4096  *
4097  */
4098 void snd_soc_unregister_component(struct device *dev)
4099 {
4100         struct snd_soc_component *cmpnt;
4101
4102         list_for_each_entry(cmpnt, &component_list, list) {
4103                 if (dev == cmpnt->dev)
4104                         goto found;
4105         }
4106         return;
4107
4108 found:
4109         snd_soc_unregister_dais(dev, cmpnt->num_dai);
4110
4111         mutex_lock(&client_mutex);
4112         list_del(&cmpnt->list);
4113         mutex_unlock(&client_mutex);
4114
4115         dev_dbg(dev, "ASoC: Unregistered component '%s'\n", cmpnt->name);
4116         kfree(cmpnt->name);
4117 }
4118 EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
4119
4120 /**
4121  * snd_soc_add_platform - Add a platform to the ASoC core
4122  * @dev: The parent device for the platform
4123  * @platform: The platform to add
4124  * @platform_driver: The driver for the platform
4125  */
4126 int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
4127                 const struct snd_soc_platform_driver *platform_drv)
4128 {
4129         /* create platform component name */
4130         platform->name = fmt_single_name(dev, &platform->id);
4131         if (platform->name == NULL)
4132                 return -ENOMEM;
4133
4134         platform->dev = dev;
4135         platform->driver = platform_drv;
4136         platform->dapm.dev = dev;
4137         platform->dapm.platform = platform;
4138         platform->dapm.stream_event = platform_drv->stream_event;
4139         mutex_init(&platform->mutex);
4140
4141         mutex_lock(&client_mutex);
4142         list_add(&platform->list, &platform_list);
4143         mutex_unlock(&client_mutex);
4144
4145         dev_dbg(dev, "ASoC: Registered platform '%s'\n", platform->name);
4146
4147         return 0;
4148 }
4149 EXPORT_SYMBOL_GPL(snd_soc_add_platform);
4150
4151 /**
4152  * snd_soc_register_platform - Register a platform with the ASoC core
4153  *
4154  * @platform: platform to register
4155  */
4156 int snd_soc_register_platform(struct device *dev,
4157                 const struct snd_soc_platform_driver *platform_drv)
4158 {
4159         struct snd_soc_platform *platform;
4160         int ret;
4161
4162         dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
4163
4164         platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
4165         if (platform == NULL)
4166                 return -ENOMEM;
4167
4168         ret = snd_soc_add_platform(dev, platform, platform_drv);
4169         if (ret)
4170                 kfree(platform);
4171
4172         return ret;
4173 }
4174 EXPORT_SYMBOL_GPL(snd_soc_register_platform);
4175
4176 /**
4177  * snd_soc_remove_platform - Remove a platform from the ASoC core
4178  * @platform: the platform to remove
4179  */
4180 void snd_soc_remove_platform(struct snd_soc_platform *platform)
4181 {
4182         mutex_lock(&client_mutex);
4183         list_del(&platform->list);
4184         mutex_unlock(&client_mutex);
4185
4186         dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
4187                 platform->name);
4188         kfree(platform->name);
4189 }
4190 EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
4191
4192 struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
4193 {
4194         struct snd_soc_platform *platform;
4195
4196         list_for_each_entry(platform, &platform_list, list) {
4197                 if (dev == platform->dev)
4198                         return platform;
4199         }
4200
4201         return NULL;
4202 }
4203 EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
4204
4205 /**
4206  * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4207  *
4208  * @platform: platform to unregister
4209  */
4210 void snd_soc_unregister_platform(struct device *dev)
4211 {
4212         struct snd_soc_platform *platform;
4213
4214         platform = snd_soc_lookup_platform(dev);
4215         if (!platform)
4216                 return;
4217
4218         snd_soc_remove_platform(platform);
4219         kfree(platform);
4220 }
4221 EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
4222
4223 static u64 codec_format_map[] = {
4224         SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
4225         SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
4226         SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
4227         SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
4228         SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
4229         SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
4230         SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4231         SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4232         SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
4233         SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
4234         SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
4235         SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
4236         SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
4237         SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
4238         SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4239         | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
4240 };
4241
4242 /* Fix up the DAI formats for endianness: codecs don't actually see
4243  * the endianness of the data but we're using the CPU format
4244  * definitions which do need to include endianness so we ensure that
4245  * codec DAIs always have both big and little endian variants set.
4246  */
4247 static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
4248 {
4249         int i;
4250
4251         for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
4252                 if (stream->formats & codec_format_map[i])
4253                         stream->formats |= codec_format_map[i];
4254 }
4255
4256 /**
4257  * snd_soc_register_codec - Register a codec with the ASoC core
4258  *
4259  * @codec: codec to register
4260  */
4261 int snd_soc_register_codec(struct device *dev,
4262                            const struct snd_soc_codec_driver *codec_drv,
4263                            struct snd_soc_dai_driver *dai_drv,
4264                            int num_dai)
4265 {
4266         struct snd_soc_codec *codec;
4267         int ret, i;
4268
4269         dev_dbg(dev, "codec register %s\n", dev_name(dev));
4270
4271         codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
4272         if (codec == NULL)
4273                 return -ENOMEM;
4274
4275         /* create CODEC component name */
4276         codec->name = fmt_single_name(dev, &codec->id);
4277         if (codec->name == NULL) {
4278                 ret = -ENOMEM;
4279                 goto fail_codec;
4280         }
4281
4282         codec->write = codec_drv->write;
4283         codec->read = codec_drv->read;
4284         codec->volatile_register = codec_drv->volatile_register;
4285         codec->readable_register = codec_drv->readable_register;
4286         codec->writable_register = codec_drv->writable_register;
4287         codec->ignore_pmdown_time = codec_drv->ignore_pmdown_time;
4288         codec->dapm.bias_level = SND_SOC_BIAS_OFF;
4289         codec->dapm.dev = dev;
4290         codec->dapm.codec = codec;
4291         codec->dapm.seq_notifier = codec_drv->seq_notifier;
4292         codec->dapm.stream_event = codec_drv->stream_event;
4293         codec->dev = dev;
4294         codec->driver = codec_drv;
4295         codec->num_dai = num_dai;
4296         mutex_init(&codec->mutex);
4297
4298         for (i = 0; i < num_dai; i++) {
4299                 fixup_codec_formats(&dai_drv[i].playback);
4300                 fixup_codec_formats(&dai_drv[i].capture);
4301         }
4302
4303         mutex_lock(&client_mutex);
4304         list_add(&codec->list, &codec_list);
4305         mutex_unlock(&client_mutex);
4306
4307         /* register component */
4308         ret = __snd_soc_register_component(dev, &codec->component,
4309                                            &codec_drv->component_driver,
4310                                            dai_drv, num_dai, false);
4311         if (ret < 0) {
4312                 dev_err(codec->dev, "ASoC: Failed to regster component: %d\n", ret);
4313                 goto fail_codec_name;
4314         }
4315
4316         dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n", codec->name);
4317         return 0;
4318
4319 fail_codec_name:
4320         mutex_lock(&client_mutex);
4321         list_del(&codec->list);
4322         mutex_unlock(&client_mutex);
4323
4324         kfree(codec->name);
4325 fail_codec:
4326         kfree(codec);
4327         return ret;
4328 }
4329 EXPORT_SYMBOL_GPL(snd_soc_register_codec);
4330
4331 /**
4332  * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4333  *
4334  * @codec: codec to unregister
4335  */
4336 void snd_soc_unregister_codec(struct device *dev)
4337 {
4338         struct snd_soc_codec *codec;
4339
4340         list_for_each_entry(codec, &codec_list, list) {
4341                 if (dev == codec->dev)
4342                         goto found;
4343         }
4344         return;
4345
4346 found:
4347         snd_soc_unregister_component(dev);
4348
4349         mutex_lock(&client_mutex);
4350         list_del(&codec->list);
4351         mutex_unlock(&client_mutex);
4352
4353         dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n", codec->name);
4354
4355         snd_soc_cache_exit(codec);
4356         kfree(codec->name);
4357         kfree(codec);
4358 }
4359 EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
4360
4361 /* Retrieve a card's name from device tree */
4362 int snd_soc_of_parse_card_name(struct snd_soc_card *card,
4363                                const char *propname)
4364 {
4365         struct device_node *np = card->dev->of_node;
4366         int ret;
4367
4368         ret = of_property_read_string_index(np, propname, 0, &card->name);
4369         /*
4370          * EINVAL means the property does not exist. This is fine providing
4371          * card->name was previously set, which is checked later in
4372          * snd_soc_register_card.
4373          */
4374         if (ret < 0 && ret != -EINVAL) {
4375                 dev_err(card->dev,
4376                         "ASoC: Property '%s' could not be read: %d\n",
4377                         propname, ret);
4378                 return ret;
4379         }
4380
4381         return 0;
4382 }
4383 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
4384
4385 int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
4386                                    const char *propname)
4387 {
4388         struct device_node *np = card->dev->of_node;
4389         int num_routes;
4390         struct snd_soc_dapm_route *routes;
4391         int i, ret;
4392
4393         num_routes = of_property_count_strings(np, propname);
4394         if (num_routes < 0 || num_routes & 1) {
4395                 dev_err(card->dev,
4396                         "ASoC: Property '%s' does not exist or its length is not even\n",
4397                         propname);
4398                 return -EINVAL;
4399         }
4400         num_routes /= 2;
4401         if (!num_routes) {
4402                 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
4403                         propname);
4404                 return -EINVAL;
4405         }
4406
4407         routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
4408                               GFP_KERNEL);
4409         if (!routes) {
4410                 dev_err(card->dev,
4411                         "ASoC: Could not allocate DAPM route table\n");
4412                 return -EINVAL;
4413         }
4414
4415         for (i = 0; i < num_routes; i++) {
4416                 ret = of_property_read_string_index(np, propname,
4417                         2 * i, &routes[i].sink);
4418                 if (ret) {
4419                         dev_err(card->dev,
4420                                 "ASoC: Property '%s' index %d could not be read: %d\n",
4421                                 propname, 2 * i, ret);
4422                         return -EINVAL;
4423                 }
4424                 ret = of_property_read_string_index(np, propname,
4425                         (2 * i) + 1, &routes[i].source);
4426                 if (ret) {
4427                         dev_err(card->dev,
4428                                 "ASoC: Property '%s' index %d could not be read: %d\n",
4429                                 propname, (2 * i) + 1, ret);
4430                         return -EINVAL;
4431                 }
4432         }
4433
4434         card->num_dapm_routes = num_routes;
4435         card->dapm_routes = routes;
4436
4437         return 0;
4438 }
4439 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
4440
4441 unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
4442                                      const char *prefix)
4443 {
4444         int ret, i;
4445         char prop[128];
4446         unsigned int format = 0;
4447         int bit, frame;
4448         const char *str;
4449         struct {
4450                 char *name;
4451                 unsigned int val;
4452         } of_fmt_table[] = {
4453                 { "i2s",        SND_SOC_DAIFMT_I2S },
4454                 { "right_j",    SND_SOC_DAIFMT_RIGHT_J },
4455                 { "left_j",     SND_SOC_DAIFMT_LEFT_J },
4456                 { "dsp_a",      SND_SOC_DAIFMT_DSP_A },
4457                 { "dsp_b",      SND_SOC_DAIFMT_DSP_B },
4458                 { "ac97",       SND_SOC_DAIFMT_AC97 },
4459                 { "pdm",        SND_SOC_DAIFMT_PDM},
4460                 { "msb",        SND_SOC_DAIFMT_MSB },
4461                 { "lsb",        SND_SOC_DAIFMT_LSB },
4462         };
4463
4464         if (!prefix)
4465                 prefix = "";
4466
4467         /*
4468          * check "[prefix]format = xxx"
4469          * SND_SOC_DAIFMT_FORMAT_MASK area
4470          */
4471         snprintf(prop, sizeof(prop), "%sformat", prefix);
4472         ret = of_property_read_string(np, prop, &str);
4473         if (ret == 0) {
4474                 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
4475                         if (strcmp(str, of_fmt_table[i].name) == 0) {
4476                                 format |= of_fmt_table[i].val;
4477                                 break;
4478                         }
4479                 }
4480         }
4481
4482         /*
4483          * check "[prefix]continuous-clock"
4484          * SND_SOC_DAIFMT_CLOCK_MASK area
4485          */
4486         snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
4487         if (of_get_property(np, prop, NULL))
4488                 format |= SND_SOC_DAIFMT_CONT;
4489         else
4490                 format |= SND_SOC_DAIFMT_GATED;
4491
4492         /*
4493          * check "[prefix]bitclock-inversion"
4494          * check "[prefix]frame-inversion"
4495          * SND_SOC_DAIFMT_INV_MASK area
4496          */
4497         snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
4498         bit = !!of_get_property(np, prop, NULL);
4499
4500         snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
4501         frame = !!of_get_property(np, prop, NULL);
4502
4503         switch ((bit << 4) + frame) {
4504         case 0x11:
4505                 format |= SND_SOC_DAIFMT_IB_IF;
4506                 break;
4507         case 0x10:
4508                 format |= SND_SOC_DAIFMT_IB_NF;
4509                 break;
4510         case 0x01:
4511                 format |= SND_SOC_DAIFMT_NB_IF;
4512                 break;
4513         default:
4514                 /* SND_SOC_DAIFMT_NB_NF is default */
4515                 break;
4516         }
4517
4518         /*
4519          * check "[prefix]bitclock-master"
4520          * check "[prefix]frame-master"
4521          * SND_SOC_DAIFMT_MASTER_MASK area
4522          */
4523         snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4524         bit = !!of_get_property(np, prop, NULL);
4525
4526         snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4527         frame = !!of_get_property(np, prop, NULL);
4528
4529         switch ((bit << 4) + frame) {
4530         case 0x11:
4531                 format |= SND_SOC_DAIFMT_CBM_CFM;
4532                 break;
4533         case 0x10:
4534                 format |= SND_SOC_DAIFMT_CBM_CFS;
4535                 break;
4536         case 0x01:
4537                 format |= SND_SOC_DAIFMT_CBS_CFM;
4538                 break;
4539         default:
4540                 format |= SND_SOC_DAIFMT_CBS_CFS;
4541                 break;
4542         }
4543
4544         return format;
4545 }
4546 EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4547
4548 int snd_soc_of_get_dai_name(struct device_node *of_node,
4549                             const char **dai_name)
4550 {
4551         struct snd_soc_component *pos;
4552         struct of_phandle_args args;
4553         int ret;
4554
4555         ret = of_parse_phandle_with_args(of_node, "sound-dai",
4556                                          "#sound-dai-cells", 0, &args);
4557         if (ret)
4558                 return ret;
4559
4560         ret = -EPROBE_DEFER;
4561
4562         mutex_lock(&client_mutex);
4563         list_for_each_entry(pos, &component_list, list) {
4564                 if (pos->dev->of_node != args.np)
4565                         continue;
4566
4567                 if (pos->driver->of_xlate_dai_name) {
4568                         ret = pos->driver->of_xlate_dai_name(pos, &args, dai_name);
4569                 } else {
4570                         int id = -1;
4571
4572                         switch (args.args_count) {
4573                         case 0:
4574                                 id = 0; /* same as dai_drv[0] */
4575                                 break;
4576                         case 1:
4577                                 id = args.args[0];
4578                                 break;
4579                         default:
4580                                 /* not supported */
4581                                 break;
4582                         }
4583
4584                         if (id < 0 || id >= pos->num_dai) {
4585                                 ret = -EINVAL;
4586                         } else {
4587                                 *dai_name = pos->dai_drv[id].name;
4588                                 ret = 0;
4589                         }
4590                 }
4591
4592                 break;
4593         }
4594         mutex_unlock(&client_mutex);
4595
4596         of_node_put(args.np);
4597
4598         return ret;
4599 }
4600 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
4601
4602 static int __init snd_soc_init(void)
4603 {
4604 #ifdef CONFIG_DEBUG_FS
4605         snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
4606         if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
4607                 pr_warn("ASoC: Failed to create debugfs directory\n");
4608                 snd_soc_debugfs_root = NULL;
4609         }
4610
4611         if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
4612                                  &codec_list_fops))
4613                 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4614
4615         if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
4616                                  &dai_list_fops))
4617                 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
4618
4619         if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
4620                                  &platform_list_fops))
4621                 pr_warn("ASoC: Failed to create platform list debugfs file\n");
4622 #endif
4623
4624         snd_soc_util_init();
4625
4626         return platform_driver_register(&soc_driver);
4627 }
4628 module_init(snd_soc_init);
4629
4630 static void __exit snd_soc_exit(void)
4631 {
4632         snd_soc_util_exit();
4633
4634 #ifdef CONFIG_DEBUG_FS
4635         debugfs_remove_recursive(snd_soc_debugfs_root);
4636 #endif
4637         platform_driver_unregister(&soc_driver);
4638 }
4639 module_exit(snd_soc_exit);
4640
4641 /* Module information */
4642 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4643 MODULE_DESCRIPTION("ALSA SoC Core");
4644 MODULE_LICENSE("GPL");
4645 MODULE_ALIAS("platform:soc-audio");