Merge remote-tracking branch 'asoc/topic/core' into asoc-next
[pandora-kernel.git] / sound / soc / soc-core.c
1 /*
2  * soc-core.c  --  ALSA SoC Audio Layer
3  *
4  * Copyright 2005 Wolfson Microelectronics PLC.
5  * Copyright 2005 Openedhand Ltd.
6  * Copyright (C) 2010 Slimlogic Ltd.
7  * Copyright (C) 2010 Texas Instruments Inc.
8  *
9  * Author: Liam Girdwood <lrg@slimlogic.co.uk>
10  *         with code, comments and ideas from :-
11  *         Richard Purdie <richard@openedhand.com>
12  *
13  *  This program is free software; you can redistribute  it and/or modify it
14  *  under  the terms of  the GNU General  Public License as published by the
15  *  Free Software Foundation;  either version 2 of the  License, or (at your
16  *  option) any later version.
17  *
18  *  TODO:
19  *   o Add hw rules to enforce rates, etc.
20  *   o More testing with other codecs/machines.
21  *   o Add more codecs and platforms to ensure good API coverage.
22  *   o Support TDM on PCM and I2S
23  */
24
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/pm.h>
30 #include <linux/bitops.h>
31 #include <linux/debugfs.h>
32 #include <linux/platform_device.h>
33 #include <linux/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         strlcpy(uinfo->value.enumerated.name,
2555                 e->texts[uinfo->value.enumerated.item],
2556                 sizeof(uinfo->value.enumerated.name));
2557         return 0;
2558 }
2559 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2560
2561 /**
2562  * snd_soc_get_enum_double - enumerated double mixer get callback
2563  * @kcontrol: mixer control
2564  * @ucontrol: control element information
2565  *
2566  * Callback to get the value of a double enumerated mixer.
2567  *
2568  * Returns 0 for success.
2569  */
2570 int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2571         struct snd_ctl_elem_value *ucontrol)
2572 {
2573         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2574         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2575         unsigned int val;
2576
2577         val = snd_soc_read(codec, e->reg);
2578         ucontrol->value.enumerated.item[0]
2579                 = (val >> e->shift_l) & e->mask;
2580         if (e->shift_l != e->shift_r)
2581                 ucontrol->value.enumerated.item[1] =
2582                         (val >> e->shift_r) & e->mask;
2583
2584         return 0;
2585 }
2586 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2587
2588 /**
2589  * snd_soc_put_enum_double - enumerated double mixer put callback
2590  * @kcontrol: mixer control
2591  * @ucontrol: control element information
2592  *
2593  * Callback to set the value of a double enumerated mixer.
2594  *
2595  * Returns 0 for success.
2596  */
2597 int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2598         struct snd_ctl_elem_value *ucontrol)
2599 {
2600         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2601         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2602         unsigned int val;
2603         unsigned int mask;
2604
2605         if (ucontrol->value.enumerated.item[0] > e->max - 1)
2606                 return -EINVAL;
2607         val = ucontrol->value.enumerated.item[0] << e->shift_l;
2608         mask = e->mask << e->shift_l;
2609         if (e->shift_l != e->shift_r) {
2610                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2611                         return -EINVAL;
2612                 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2613                 mask |= e->mask << e->shift_r;
2614         }
2615
2616         return snd_soc_update_bits_locked(codec, e->reg, mask, val);
2617 }
2618 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2619
2620 /**
2621  * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2622  * @kcontrol: mixer control
2623  * @ucontrol: control element information
2624  *
2625  * Callback to get the value of a double semi enumerated mixer.
2626  *
2627  * Semi enumerated mixer: the enumerated items are referred as values. Can be
2628  * used for handling bitfield coded enumeration for example.
2629  *
2630  * Returns 0 for success.
2631  */
2632 int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2633         struct snd_ctl_elem_value *ucontrol)
2634 {
2635         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2636         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2637         unsigned int reg_val, val, mux;
2638
2639         reg_val = snd_soc_read(codec, e->reg);
2640         val = (reg_val >> e->shift_l) & e->mask;
2641         for (mux = 0; mux < e->max; mux++) {
2642                 if (val == e->values[mux])
2643                         break;
2644         }
2645         ucontrol->value.enumerated.item[0] = mux;
2646         if (e->shift_l != e->shift_r) {
2647                 val = (reg_val >> e->shift_r) & e->mask;
2648                 for (mux = 0; mux < e->max; mux++) {
2649                         if (val == e->values[mux])
2650                                 break;
2651                 }
2652                 ucontrol->value.enumerated.item[1] = mux;
2653         }
2654
2655         return 0;
2656 }
2657 EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2658
2659 /**
2660  * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2661  * @kcontrol: mixer control
2662  * @ucontrol: control element information
2663  *
2664  * Callback to set the value of a double semi enumerated mixer.
2665  *
2666  * Semi enumerated mixer: the enumerated items are referred as values. Can be
2667  * used for handling bitfield coded enumeration for example.
2668  *
2669  * Returns 0 for success.
2670  */
2671 int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2672         struct snd_ctl_elem_value *ucontrol)
2673 {
2674         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2675         struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2676         unsigned int val;
2677         unsigned int mask;
2678
2679         if (ucontrol->value.enumerated.item[0] > e->max - 1)
2680                 return -EINVAL;
2681         val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2682         mask = e->mask << e->shift_l;
2683         if (e->shift_l != e->shift_r) {
2684                 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2685                         return -EINVAL;
2686                 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2687                 mask |= e->mask << e->shift_r;
2688         }
2689
2690         return snd_soc_update_bits_locked(codec, e->reg, mask, val);
2691 }
2692 EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2693
2694 /**
2695  * snd_soc_info_volsw - single mixer info callback
2696  * @kcontrol: mixer control
2697  * @uinfo: control element information
2698  *
2699  * Callback to provide information about a single mixer control, or a double
2700  * mixer control that spans 2 registers.
2701  *
2702  * Returns 0 for success.
2703  */
2704 int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2705         struct snd_ctl_elem_info *uinfo)
2706 {
2707         struct soc_mixer_control *mc =
2708                 (struct soc_mixer_control *)kcontrol->private_value;
2709         int platform_max;
2710
2711         if (!mc->platform_max)
2712                 mc->platform_max = mc->max;
2713         platform_max = mc->platform_max;
2714
2715         if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
2716                 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2717         else
2718                 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2719
2720         uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
2721         uinfo->value.integer.min = 0;
2722         uinfo->value.integer.max = platform_max;
2723         return 0;
2724 }
2725 EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2726
2727 /**
2728  * snd_soc_get_volsw - single mixer get callback
2729  * @kcontrol: mixer control
2730  * @ucontrol: control element information
2731  *
2732  * Callback to get the value of a single mixer control, or a double mixer
2733  * control that spans 2 registers.
2734  *
2735  * Returns 0 for success.
2736  */
2737 int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2738         struct snd_ctl_elem_value *ucontrol)
2739 {
2740         struct soc_mixer_control *mc =
2741                 (struct soc_mixer_control *)kcontrol->private_value;
2742         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2743         unsigned int reg = mc->reg;
2744         unsigned int reg2 = mc->rreg;
2745         unsigned int shift = mc->shift;
2746         unsigned int rshift = mc->rshift;
2747         int max = mc->max;
2748         unsigned int mask = (1 << fls(max)) - 1;
2749         unsigned int invert = mc->invert;
2750
2751         ucontrol->value.integer.value[0] =
2752                 (snd_soc_read(codec, reg) >> shift) & mask;
2753         if (invert)
2754                 ucontrol->value.integer.value[0] =
2755                         max - ucontrol->value.integer.value[0];
2756
2757         if (snd_soc_volsw_is_stereo(mc)) {
2758                 if (reg == reg2)
2759                         ucontrol->value.integer.value[1] =
2760                                 (snd_soc_read(codec, reg) >> rshift) & mask;
2761                 else
2762                         ucontrol->value.integer.value[1] =
2763                                 (snd_soc_read(codec, reg2) >> shift) & mask;
2764                 if (invert)
2765                         ucontrol->value.integer.value[1] =
2766                                 max - ucontrol->value.integer.value[1];
2767         }
2768
2769         return 0;
2770 }
2771 EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2772
2773 /**
2774  * snd_soc_put_volsw - single mixer put callback
2775  * @kcontrol: mixer control
2776  * @ucontrol: control element information
2777  *
2778  * Callback to set the value of a single mixer control, or a double mixer
2779  * control that spans 2 registers.
2780  *
2781  * Returns 0 for success.
2782  */
2783 int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2784         struct snd_ctl_elem_value *ucontrol)
2785 {
2786         struct soc_mixer_control *mc =
2787                 (struct soc_mixer_control *)kcontrol->private_value;
2788         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2789         unsigned int reg = mc->reg;
2790         unsigned int reg2 = mc->rreg;
2791         unsigned int shift = mc->shift;
2792         unsigned int rshift = mc->rshift;
2793         int max = mc->max;
2794         unsigned int mask = (1 << fls(max)) - 1;
2795         unsigned int invert = mc->invert;
2796         int err;
2797         bool type_2r = 0;
2798         unsigned int val2 = 0;
2799         unsigned int val, val_mask;
2800
2801         val = (ucontrol->value.integer.value[0] & mask);
2802         if (invert)
2803                 val = max - val;
2804         val_mask = mask << shift;
2805         val = val << shift;
2806         if (snd_soc_volsw_is_stereo(mc)) {
2807                 val2 = (ucontrol->value.integer.value[1] & mask);
2808                 if (invert)
2809                         val2 = max - val2;
2810                 if (reg == reg2) {
2811                         val_mask |= mask << rshift;
2812                         val |= val2 << rshift;
2813                 } else {
2814                         val2 = val2 << shift;
2815                         type_2r = 1;
2816                 }
2817         }
2818         err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
2819         if (err < 0)
2820                 return err;
2821
2822         if (type_2r)
2823                 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2824
2825         return err;
2826 }
2827 EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2828
2829 /**
2830  * snd_soc_get_volsw_sx - single mixer get callback
2831  * @kcontrol: mixer control
2832  * @ucontrol: control element information
2833  *
2834  * Callback to get the value of a single mixer control, or a double mixer
2835  * control that spans 2 registers.
2836  *
2837  * Returns 0 for success.
2838  */
2839 int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2840                       struct snd_ctl_elem_value *ucontrol)
2841 {
2842         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2843         struct soc_mixer_control *mc =
2844             (struct soc_mixer_control *)kcontrol->private_value;
2845
2846         unsigned int reg = mc->reg;
2847         unsigned int reg2 = mc->rreg;
2848         unsigned int shift = mc->shift;
2849         unsigned int rshift = mc->rshift;
2850         int max = mc->max;
2851         int min = mc->min;
2852         int mask = (1 << (fls(min + max) - 1)) - 1;
2853
2854         ucontrol->value.integer.value[0] =
2855             ((snd_soc_read(codec, reg) >> shift) - min) & mask;
2856
2857         if (snd_soc_volsw_is_stereo(mc))
2858                 ucontrol->value.integer.value[1] =
2859                         ((snd_soc_read(codec, reg2) >> rshift) - min) & mask;
2860
2861         return 0;
2862 }
2863 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2864
2865 /**
2866  * snd_soc_put_volsw_sx - double mixer set callback
2867  * @kcontrol: mixer control
2868  * @uinfo: control element information
2869  *
2870  * Callback to set the value of a double mixer control that spans 2 registers.
2871  *
2872  * Returns 0 for success.
2873  */
2874 int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2875                          struct snd_ctl_elem_value *ucontrol)
2876 {
2877         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2878         struct soc_mixer_control *mc =
2879             (struct soc_mixer_control *)kcontrol->private_value;
2880
2881         unsigned int reg = mc->reg;
2882         unsigned int reg2 = mc->rreg;
2883         unsigned int shift = mc->shift;
2884         unsigned int rshift = mc->rshift;
2885         int max = mc->max;
2886         int min = mc->min;
2887         int mask = (1 << (fls(min + max) - 1)) - 1;
2888         int err = 0;
2889         unsigned short val, val_mask, val2 = 0;
2890
2891         val_mask = mask << shift;
2892         val = (ucontrol->value.integer.value[0] + min) & mask;
2893         val = val << shift;
2894
2895         err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
2896         if (err < 0)
2897                 return err;
2898
2899         if (snd_soc_volsw_is_stereo(mc)) {
2900                 val_mask = mask << rshift;
2901                 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2902                 val2 = val2 << rshift;
2903
2904                 if (snd_soc_update_bits_locked(codec, reg2, val_mask, val2))
2905                         return err;
2906         }
2907         return 0;
2908 }
2909 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2910
2911 /**
2912  * snd_soc_info_volsw_s8 - signed mixer info callback
2913  * @kcontrol: mixer control
2914  * @uinfo: control element information
2915  *
2916  * Callback to provide information about a signed mixer control.
2917  *
2918  * Returns 0 for success.
2919  */
2920 int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2921         struct snd_ctl_elem_info *uinfo)
2922 {
2923         struct soc_mixer_control *mc =
2924                 (struct soc_mixer_control *)kcontrol->private_value;
2925         int platform_max;
2926         int min = mc->min;
2927
2928         if (!mc->platform_max)
2929                 mc->platform_max = mc->max;
2930         platform_max = mc->platform_max;
2931
2932         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2933         uinfo->count = 2;
2934         uinfo->value.integer.min = 0;
2935         uinfo->value.integer.max = platform_max - min;
2936         return 0;
2937 }
2938 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2939
2940 /**
2941  * snd_soc_get_volsw_s8 - signed mixer get callback
2942  * @kcontrol: mixer control
2943  * @ucontrol: control element information
2944  *
2945  * Callback to get the value of a signed mixer control.
2946  *
2947  * Returns 0 for success.
2948  */
2949 int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2950         struct snd_ctl_elem_value *ucontrol)
2951 {
2952         struct soc_mixer_control *mc =
2953                 (struct soc_mixer_control *)kcontrol->private_value;
2954         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2955         unsigned int reg = mc->reg;
2956         int min = mc->min;
2957         int val = snd_soc_read(codec, reg);
2958
2959         ucontrol->value.integer.value[0] =
2960                 ((signed char)(val & 0xff))-min;
2961         ucontrol->value.integer.value[1] =
2962                 ((signed char)((val >> 8) & 0xff))-min;
2963         return 0;
2964 }
2965 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2966
2967 /**
2968  * snd_soc_put_volsw_sgn - signed mixer put callback
2969  * @kcontrol: mixer control
2970  * @ucontrol: control element information
2971  *
2972  * Callback to set the value of a signed mixer control.
2973  *
2974  * Returns 0 for success.
2975  */
2976 int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2977         struct snd_ctl_elem_value *ucontrol)
2978 {
2979         struct soc_mixer_control *mc =
2980                 (struct soc_mixer_control *)kcontrol->private_value;
2981         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2982         unsigned int reg = mc->reg;
2983         int min = mc->min;
2984         unsigned int val;
2985
2986         val = (ucontrol->value.integer.value[0]+min) & 0xff;
2987         val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2988
2989         return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
2990 }
2991 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2992
2993 /**
2994  * snd_soc_info_volsw_range - single mixer info callback with range.
2995  * @kcontrol: mixer control
2996  * @uinfo: control element information
2997  *
2998  * Callback to provide information, within a range, about a single
2999  * mixer control.
3000  *
3001  * returns 0 for success.
3002  */
3003 int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
3004         struct snd_ctl_elem_info *uinfo)
3005 {
3006         struct soc_mixer_control *mc =
3007                 (struct soc_mixer_control *)kcontrol->private_value;
3008         int platform_max;
3009         int min = mc->min;
3010
3011         if (!mc->platform_max)
3012                 mc->platform_max = mc->max;
3013         platform_max = mc->platform_max;
3014
3015         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3016         uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
3017         uinfo->value.integer.min = 0;
3018         uinfo->value.integer.max = platform_max - min;
3019
3020         return 0;
3021 }
3022 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
3023
3024 /**
3025  * snd_soc_put_volsw_range - single mixer put value callback with range.
3026  * @kcontrol: mixer control
3027  * @ucontrol: control element information
3028  *
3029  * Callback to set the value, within a range, for a single mixer control.
3030  *
3031  * Returns 0 for success.
3032  */
3033 int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
3034         struct snd_ctl_elem_value *ucontrol)
3035 {
3036         struct soc_mixer_control *mc =
3037                 (struct soc_mixer_control *)kcontrol->private_value;
3038         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3039         unsigned int reg = mc->reg;
3040         unsigned int rreg = mc->rreg;
3041         unsigned int shift = mc->shift;
3042         int min = mc->min;
3043         int max = mc->max;
3044         unsigned int mask = (1 << fls(max)) - 1;
3045         unsigned int invert = mc->invert;
3046         unsigned int val, val_mask;
3047         int ret;
3048
3049         val = ((ucontrol->value.integer.value[0] + min) & mask);
3050         if (invert)
3051                 val = max - val;
3052         val_mask = mask << shift;
3053         val = val << shift;
3054
3055         ret = snd_soc_update_bits_locked(codec, reg, val_mask, val);
3056         if (ret < 0)
3057                 return ret;
3058
3059         if (snd_soc_volsw_is_stereo(mc)) {
3060                 val = ((ucontrol->value.integer.value[1] + min) & mask);
3061                 if (invert)
3062                         val = max - val;
3063                 val_mask = mask << shift;
3064                 val = val << shift;
3065
3066                 ret = snd_soc_update_bits_locked(codec, rreg, val_mask, val);
3067         }
3068
3069         return ret;
3070 }
3071 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
3072
3073 /**
3074  * snd_soc_get_volsw_range - single mixer get callback with range
3075  * @kcontrol: mixer control
3076  * @ucontrol: control element information
3077  *
3078  * Callback to get the value, within a range, of a single mixer control.
3079  *
3080  * Returns 0 for success.
3081  */
3082 int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
3083         struct snd_ctl_elem_value *ucontrol)
3084 {
3085         struct soc_mixer_control *mc =
3086                 (struct soc_mixer_control *)kcontrol->private_value;
3087         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3088         unsigned int reg = mc->reg;
3089         unsigned int rreg = mc->rreg;
3090         unsigned int shift = mc->shift;
3091         int min = mc->min;
3092         int max = mc->max;
3093         unsigned int mask = (1 << fls(max)) - 1;
3094         unsigned int invert = mc->invert;
3095
3096         ucontrol->value.integer.value[0] =
3097                 (snd_soc_read(codec, reg) >> shift) & mask;
3098         if (invert)
3099                 ucontrol->value.integer.value[0] =
3100                         max - ucontrol->value.integer.value[0];
3101         ucontrol->value.integer.value[0] =
3102                 ucontrol->value.integer.value[0] - min;
3103
3104         if (snd_soc_volsw_is_stereo(mc)) {
3105                 ucontrol->value.integer.value[1] =
3106                         (snd_soc_read(codec, rreg) >> shift) & mask;
3107                 if (invert)
3108                         ucontrol->value.integer.value[1] =
3109                                 max - ucontrol->value.integer.value[1];
3110                 ucontrol->value.integer.value[1] =
3111                         ucontrol->value.integer.value[1] - min;
3112         }
3113
3114         return 0;
3115 }
3116 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
3117
3118 /**
3119  * snd_soc_limit_volume - Set new limit to an existing volume control.
3120  *
3121  * @codec: where to look for the control
3122  * @name: Name of the control
3123  * @max: new maximum limit
3124  *
3125  * Return 0 for success, else error.
3126  */
3127 int snd_soc_limit_volume(struct snd_soc_codec *codec,
3128         const char *name, int max)
3129 {
3130         struct snd_card *card = codec->card->snd_card;
3131         struct snd_kcontrol *kctl;
3132         struct soc_mixer_control *mc;
3133         int found = 0;
3134         int ret = -EINVAL;
3135
3136         /* Sanity check for name and max */
3137         if (unlikely(!name || max <= 0))
3138                 return -EINVAL;
3139
3140         list_for_each_entry(kctl, &card->controls, list) {
3141                 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3142                         found = 1;
3143                         break;
3144                 }
3145         }
3146         if (found) {
3147                 mc = (struct soc_mixer_control *)kctl->private_value;
3148                 if (max <= mc->max) {
3149                         mc->platform_max = max;
3150                         ret = 0;
3151                 }
3152         }
3153         return ret;
3154 }
3155 EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3156
3157 int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
3158                        struct snd_ctl_elem_info *uinfo)
3159 {
3160         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3161         struct soc_bytes *params = (void *)kcontrol->private_value;
3162
3163         uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
3164         uinfo->count = params->num_regs * codec->val_bytes;
3165
3166         return 0;
3167 }
3168 EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
3169
3170 int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
3171                       struct snd_ctl_elem_value *ucontrol)
3172 {
3173         struct soc_bytes *params = (void *)kcontrol->private_value;
3174         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3175         int ret;
3176
3177         if (codec->using_regmap)
3178                 ret = regmap_raw_read(codec->control_data, params->base,
3179                                       ucontrol->value.bytes.data,
3180                                       params->num_regs * codec->val_bytes);
3181         else
3182                 ret = -EINVAL;
3183
3184         /* Hide any masked bytes to ensure consistent data reporting */
3185         if (ret == 0 && params->mask) {
3186                 switch (codec->val_bytes) {
3187                 case 1:
3188                         ucontrol->value.bytes.data[0] &= ~params->mask;
3189                         break;
3190                 case 2:
3191                         ((u16 *)(&ucontrol->value.bytes.data))[0]
3192                                 &= ~params->mask;
3193                         break;
3194                 case 4:
3195                         ((u32 *)(&ucontrol->value.bytes.data))[0]
3196                                 &= ~params->mask;
3197                         break;
3198                 default:
3199                         return -EINVAL;
3200                 }
3201         }
3202
3203         return ret;
3204 }
3205 EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
3206
3207 int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
3208                       struct snd_ctl_elem_value *ucontrol)
3209 {
3210         struct soc_bytes *params = (void *)kcontrol->private_value;
3211         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3212         int ret, len;
3213         unsigned int val;
3214         void *data;
3215
3216         if (!codec->using_regmap)
3217                 return -EINVAL;
3218
3219         len = params->num_regs * codec->val_bytes;
3220
3221         data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
3222         if (!data)
3223                 return -ENOMEM;
3224
3225         /*
3226          * If we've got a mask then we need to preserve the register
3227          * bits.  We shouldn't modify the incoming data so take a
3228          * copy.
3229          */
3230         if (params->mask) {
3231                 ret = regmap_read(codec->control_data, params->base, &val);
3232                 if (ret != 0)
3233                         goto out;
3234
3235                 val &= params->mask;
3236
3237                 switch (codec->val_bytes) {
3238                 case 1:
3239                         ((u8 *)data)[0] &= ~params->mask;
3240                         ((u8 *)data)[0] |= val;
3241                         break;
3242                 case 2:
3243                         ((u16 *)data)[0] &= cpu_to_be16(~params->mask);
3244                         ((u16 *)data)[0] |= cpu_to_be16(val);
3245                         break;
3246                 case 4:
3247                         ((u32 *)data)[0] &= cpu_to_be32(~params->mask);
3248                         ((u32 *)data)[0] |= cpu_to_be32(val);
3249                         break;
3250                 default:
3251                         ret = -EINVAL;
3252                         goto out;
3253                 }
3254         }
3255
3256         ret = regmap_raw_write(codec->control_data, params->base,
3257                                data, len);
3258
3259 out:
3260         kfree(data);
3261
3262         return ret;
3263 }
3264 EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
3265
3266 /**
3267  * snd_soc_info_xr_sx - signed multi register info callback
3268  * @kcontrol: mreg control
3269  * @uinfo: control element information
3270  *
3271  * Callback to provide information of a control that can
3272  * span multiple codec registers which together
3273  * forms a single signed value in a MSB/LSB manner.
3274  *
3275  * Returns 0 for success.
3276  */
3277 int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
3278         struct snd_ctl_elem_info *uinfo)
3279 {
3280         struct soc_mreg_control *mc =
3281                 (struct soc_mreg_control *)kcontrol->private_value;
3282         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3283         uinfo->count = 1;
3284         uinfo->value.integer.min = mc->min;
3285         uinfo->value.integer.max = mc->max;
3286
3287         return 0;
3288 }
3289 EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
3290
3291 /**
3292  * snd_soc_get_xr_sx - signed multi register get callback
3293  * @kcontrol: mreg control
3294  * @ucontrol: control element information
3295  *
3296  * Callback to get the value of a control that can span
3297  * multiple codec registers which together forms a single
3298  * signed value in a MSB/LSB manner. The control supports
3299  * specifying total no of bits used to allow for bitfields
3300  * across the multiple codec registers.
3301  *
3302  * Returns 0 for success.
3303  */
3304 int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
3305         struct snd_ctl_elem_value *ucontrol)
3306 {
3307         struct soc_mreg_control *mc =
3308                 (struct soc_mreg_control *)kcontrol->private_value;
3309         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3310         unsigned int regbase = mc->regbase;
3311         unsigned int regcount = mc->regcount;
3312         unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3313         unsigned int regwmask = (1<<regwshift)-1;
3314         unsigned int invert = mc->invert;
3315         unsigned long mask = (1UL<<mc->nbits)-1;
3316         long min = mc->min;
3317         long max = mc->max;
3318         long val = 0;
3319         unsigned long regval;
3320         unsigned int i;
3321
3322         for (i = 0; i < regcount; i++) {
3323                 regval = snd_soc_read(codec, regbase+i) & regwmask;
3324                 val |= regval << (regwshift*(regcount-i-1));
3325         }
3326         val &= mask;
3327         if (min < 0 && val > max)
3328                 val |= ~mask;
3329         if (invert)
3330                 val = max - val;
3331         ucontrol->value.integer.value[0] = val;
3332
3333         return 0;
3334 }
3335 EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
3336
3337 /**
3338  * snd_soc_put_xr_sx - signed multi register get callback
3339  * @kcontrol: mreg control
3340  * @ucontrol: control element information
3341  *
3342  * Callback to set the value of a control that can span
3343  * multiple codec registers which together forms a single
3344  * signed value in a MSB/LSB manner. The control supports
3345  * specifying total no of bits used to allow for bitfields
3346  * across the multiple codec registers.
3347  *
3348  * Returns 0 for success.
3349  */
3350 int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
3351         struct snd_ctl_elem_value *ucontrol)
3352 {
3353         struct soc_mreg_control *mc =
3354                 (struct soc_mreg_control *)kcontrol->private_value;
3355         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3356         unsigned int regbase = mc->regbase;
3357         unsigned int regcount = mc->regcount;
3358         unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3359         unsigned int regwmask = (1<<regwshift)-1;
3360         unsigned int invert = mc->invert;
3361         unsigned long mask = (1UL<<mc->nbits)-1;
3362         long max = mc->max;
3363         long val = ucontrol->value.integer.value[0];
3364         unsigned int i, regval, regmask;
3365         int err;
3366
3367         if (invert)
3368                 val = max - val;
3369         val &= mask;
3370         for (i = 0; i < regcount; i++) {
3371                 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3372                 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
3373                 err = snd_soc_update_bits_locked(codec, regbase+i,
3374                                 regmask, regval);
3375                 if (err < 0)
3376                         return err;
3377         }
3378
3379         return 0;
3380 }
3381 EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3382
3383 /**
3384  * snd_soc_get_strobe - strobe get callback
3385  * @kcontrol: mixer control
3386  * @ucontrol: control element information
3387  *
3388  * Callback get the value of a strobe mixer control.
3389  *
3390  * Returns 0 for success.
3391  */
3392 int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
3393         struct snd_ctl_elem_value *ucontrol)
3394 {
3395         struct soc_mixer_control *mc =
3396                 (struct soc_mixer_control *)kcontrol->private_value;
3397         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3398         unsigned int reg = mc->reg;
3399         unsigned int shift = mc->shift;
3400         unsigned int mask = 1 << shift;
3401         unsigned int invert = mc->invert != 0;
3402         unsigned int val = snd_soc_read(codec, reg) & mask;
3403
3404         if (shift != 0 && val != 0)
3405                 val = val >> shift;
3406         ucontrol->value.enumerated.item[0] = val ^ invert;
3407
3408         return 0;
3409 }
3410 EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3411
3412 /**
3413  * snd_soc_put_strobe - strobe put callback
3414  * @kcontrol: mixer control
3415  * @ucontrol: control element information
3416  *
3417  * Callback strobe a register bit to high then low (or the inverse)
3418  * in one pass of a single mixer enum control.
3419  *
3420  * Returns 1 for success.
3421  */
3422 int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3423         struct snd_ctl_elem_value *ucontrol)
3424 {
3425         struct soc_mixer_control *mc =
3426                 (struct soc_mixer_control *)kcontrol->private_value;
3427         struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3428         unsigned int reg = mc->reg;
3429         unsigned int shift = mc->shift;
3430         unsigned int mask = 1 << shift;
3431         unsigned int invert = mc->invert != 0;
3432         unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3433         unsigned int val1 = (strobe ^ invert) ? mask : 0;
3434         unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3435         int err;
3436
3437         err = snd_soc_update_bits_locked(codec, reg, mask, val1);
3438         if (err < 0)
3439                 return err;
3440
3441         err = snd_soc_update_bits_locked(codec, reg, mask, val2);
3442         return err;
3443 }
3444 EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3445
3446 /**
3447  * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3448  * @dai: DAI
3449  * @clk_id: DAI specific clock ID
3450  * @freq: new clock frequency in Hz
3451  * @dir: new clock direction - input/output.
3452  *
3453  * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3454  */
3455 int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3456         unsigned int freq, int dir)
3457 {
3458         if (dai->driver && dai->driver->ops->set_sysclk)
3459                 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
3460         else if (dai->codec && dai->codec->driver->set_sysclk)
3461                 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
3462                                                       freq, dir);
3463         else
3464                 return -EINVAL;
3465 }
3466 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3467
3468 /**
3469  * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3470  * @codec: CODEC
3471  * @clk_id: DAI specific clock ID
3472  * @source: Source for the clock
3473  * @freq: new clock frequency in Hz
3474  * @dir: new clock direction - input/output.
3475  *
3476  * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3477  */
3478 int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
3479                              int source, unsigned int freq, int dir)
3480 {
3481         if (codec->driver->set_sysclk)
3482                 return codec->driver->set_sysclk(codec, clk_id, source,
3483                                                  freq, dir);
3484         else
3485                 return -EINVAL;
3486 }
3487 EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3488
3489 /**
3490  * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3491  * @dai: DAI
3492  * @div_id: DAI specific clock divider ID
3493  * @div: new clock divisor.
3494  *
3495  * Configures the clock dividers. This is used to derive the best DAI bit and
3496  * frame clocks from the system or master clock. It's best to set the DAI bit
3497  * and frame clocks as low as possible to save system power.
3498  */
3499 int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3500         int div_id, int div)
3501 {
3502         if (dai->driver && dai->driver->ops->set_clkdiv)
3503                 return dai->driver->ops->set_clkdiv(dai, div_id, div);
3504         else
3505                 return -EINVAL;
3506 }
3507 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3508
3509 /**
3510  * snd_soc_dai_set_pll - configure DAI PLL.
3511  * @dai: DAI
3512  * @pll_id: DAI specific PLL ID
3513  * @source: DAI specific source for the PLL
3514  * @freq_in: PLL input clock frequency in Hz
3515  * @freq_out: requested PLL output clock frequency in Hz
3516  *
3517  * Configures and enables PLL to generate output clock based on input clock.
3518  */
3519 int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3520         unsigned int freq_in, unsigned int freq_out)
3521 {
3522         if (dai->driver && dai->driver->ops->set_pll)
3523                 return dai->driver->ops->set_pll(dai, pll_id, source,
3524                                          freq_in, freq_out);
3525         else if (dai->codec && dai->codec->driver->set_pll)
3526                 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3527                                                    freq_in, freq_out);
3528         else
3529                 return -EINVAL;
3530 }
3531 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3532
3533 /*
3534  * snd_soc_codec_set_pll - configure codec PLL.
3535  * @codec: CODEC
3536  * @pll_id: DAI specific PLL ID
3537  * @source: DAI specific source for the PLL
3538  * @freq_in: PLL input clock frequency in Hz
3539  * @freq_out: requested PLL output clock frequency in Hz
3540  *
3541  * Configures and enables PLL to generate output clock based on input clock.
3542  */
3543 int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3544                           unsigned int freq_in, unsigned int freq_out)
3545 {
3546         if (codec->driver->set_pll)
3547                 return codec->driver->set_pll(codec, pll_id, source,
3548                                               freq_in, freq_out);
3549         else
3550                 return -EINVAL;
3551 }
3552 EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3553
3554 /**
3555  * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
3556  * @dai: DAI
3557  * @ratio Ratio of BCLK to Sample rate.
3558  *
3559  * Configures the DAI for a preset BCLK to sample rate ratio.
3560  */
3561 int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
3562 {
3563         if (dai->driver && dai->driver->ops->set_bclk_ratio)
3564                 return dai->driver->ops->set_bclk_ratio(dai, ratio);
3565         else
3566                 return -EINVAL;
3567 }
3568 EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
3569
3570 /**
3571  * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3572  * @dai: DAI
3573  * @fmt: SND_SOC_DAIFMT_ format value.
3574  *
3575  * Configures the DAI hardware format and clocking.
3576  */
3577 int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3578 {
3579         if (dai->driver == NULL)
3580                 return -EINVAL;
3581         if (dai->driver->ops->set_fmt == NULL)
3582                 return -ENOTSUPP;
3583         return dai->driver->ops->set_fmt(dai, fmt);
3584 }
3585 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3586
3587 /**
3588  * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3589  * @dai: DAI
3590  * @tx_mask: bitmask representing active TX slots.
3591  * @rx_mask: bitmask representing active RX slots.
3592  * @slots: Number of slots in use.
3593  * @slot_width: Width in bits for each slot.
3594  *
3595  * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3596  * specific.
3597  */
3598 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
3599         unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
3600 {
3601         if (dai->driver && dai->driver->ops->set_tdm_slot)
3602                 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
3603                                 slots, slot_width);
3604         else
3605                 return -EINVAL;
3606 }
3607 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3608
3609 /**
3610  * snd_soc_dai_set_channel_map - configure DAI audio channel map
3611  * @dai: DAI
3612  * @tx_num: how many TX channels
3613  * @tx_slot: pointer to an array which imply the TX slot number channel
3614  *           0~num-1 uses
3615  * @rx_num: how many RX channels
3616  * @rx_slot: pointer to an array which imply the RX slot number channel
3617  *           0~num-1 uses
3618  *
3619  * configure the relationship between channel number and TDM slot number.
3620  */
3621 int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3622         unsigned int tx_num, unsigned int *tx_slot,
3623         unsigned int rx_num, unsigned int *rx_slot)
3624 {
3625         if (dai->driver && dai->driver->ops->set_channel_map)
3626                 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
3627                         rx_num, rx_slot);
3628         else
3629                 return -EINVAL;
3630 }
3631 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3632
3633 /**
3634  * snd_soc_dai_set_tristate - configure DAI system or master clock.
3635  * @dai: DAI
3636  * @tristate: tristate enable
3637  *
3638  * Tristates the DAI so that others can use it.
3639  */
3640 int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3641 {
3642         if (dai->driver && dai->driver->ops->set_tristate)
3643                 return dai->driver->ops->set_tristate(dai, tristate);
3644         else
3645                 return -EINVAL;
3646 }
3647 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3648
3649 /**
3650  * snd_soc_dai_digital_mute - configure DAI system or master clock.
3651  * @dai: DAI
3652  * @mute: mute enable
3653  * @direction: stream to mute
3654  *
3655  * Mutes the DAI DAC.
3656  */
3657 int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
3658                              int direction)
3659 {
3660         if (!dai->driver)
3661                 return -ENOTSUPP;
3662
3663         if (dai->driver->ops->mute_stream)
3664                 return dai->driver->ops->mute_stream(dai, mute, direction);
3665         else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
3666                  dai->driver->ops->digital_mute)
3667                 return dai->driver->ops->digital_mute(dai, mute);
3668         else
3669                 return -ENOTSUPP;
3670 }
3671 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3672
3673 /**
3674  * snd_soc_register_card - Register a card with the ASoC core
3675  *
3676  * @card: Card to register
3677  *
3678  */
3679 int snd_soc_register_card(struct snd_soc_card *card)
3680 {
3681         int i, ret;
3682
3683         if (!card->name || !card->dev)
3684                 return -EINVAL;
3685
3686         for (i = 0; i < card->num_links; i++) {
3687                 struct snd_soc_dai_link *link = &card->dai_link[i];
3688
3689                 /*
3690                  * Codec must be specified by 1 of name or OF node,
3691                  * not both or neither.
3692                  */
3693                 if (!!link->codec_name == !!link->codec_of_node) {
3694                         dev_err(card->dev,
3695                                 "ASoC: Neither/both codec name/of_node are set for %s\n",
3696                                 link->name);
3697                         return -EINVAL;
3698                 }
3699                 /* Codec DAI name must be specified */
3700                 if (!link->codec_dai_name) {
3701                         dev_err(card->dev,
3702                                 "ASoC: codec_dai_name not set for %s\n",
3703                                 link->name);
3704                         return -EINVAL;
3705                 }
3706
3707                 /*
3708                  * Platform may be specified by either name or OF node, but
3709                  * can be left unspecified, and a dummy platform will be used.
3710                  */
3711                 if (link->platform_name && link->platform_of_node) {
3712                         dev_err(card->dev,
3713                                 "ASoC: Both platform name/of_node are set for %s\n",
3714                                 link->name);
3715                         return -EINVAL;
3716                 }
3717
3718                 /*
3719                  * CPU device may be specified by either name or OF node, but
3720                  * can be left unspecified, and will be matched based on DAI
3721                  * name alone..
3722                  */
3723                 if (link->cpu_name && link->cpu_of_node) {
3724                         dev_err(card->dev,
3725                                 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3726                                 link->name);
3727                         return -EINVAL;
3728                 }
3729                 /*
3730                  * At least one of CPU DAI name or CPU device name/node must be
3731                  * specified
3732                  */
3733                 if (!link->cpu_dai_name &&
3734                     !(link->cpu_name || link->cpu_of_node)) {
3735                         dev_err(card->dev,
3736                                 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3737                                 link->name);
3738                         return -EINVAL;
3739                 }
3740         }
3741
3742         dev_set_drvdata(card->dev, card);
3743
3744         snd_soc_initialize_card_lists(card);
3745
3746         soc_init_card_debugfs(card);
3747
3748         card->rtd = devm_kzalloc(card->dev,
3749                                  sizeof(struct snd_soc_pcm_runtime) *
3750                                  (card->num_links + card->num_aux_devs),
3751                                  GFP_KERNEL);
3752         if (card->rtd == NULL)
3753                 return -ENOMEM;
3754         card->num_rtd = 0;
3755         card->rtd_aux = &card->rtd[card->num_links];
3756
3757         for (i = 0; i < card->num_links; i++)
3758                 card->rtd[i].dai_link = &card->dai_link[i];
3759
3760         INIT_LIST_HEAD(&card->list);
3761         INIT_LIST_HEAD(&card->dapm_dirty);
3762         card->instantiated = 0;
3763         mutex_init(&card->mutex);
3764         mutex_init(&card->dapm_mutex);
3765
3766         ret = snd_soc_instantiate_card(card);
3767         if (ret != 0)
3768                 soc_cleanup_card_debugfs(card);
3769
3770         return ret;
3771 }
3772 EXPORT_SYMBOL_GPL(snd_soc_register_card);
3773
3774 /**
3775  * snd_soc_unregister_card - Unregister a card with the ASoC core
3776  *
3777  * @card: Card to unregister
3778  *
3779  */
3780 int snd_soc_unregister_card(struct snd_soc_card *card)
3781 {
3782         if (card->instantiated)
3783                 soc_cleanup_card_resources(card);
3784         dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
3785
3786         return 0;
3787 }
3788 EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
3789
3790 /*
3791  * Simplify DAI link configuration by removing ".-1" from device names
3792  * and sanitizing names.
3793  */
3794 static char *fmt_single_name(struct device *dev, int *id)
3795 {
3796         char *found, name[NAME_SIZE];
3797         int id1, id2;
3798
3799         if (dev_name(dev) == NULL)
3800                 return NULL;
3801
3802         strlcpy(name, dev_name(dev), NAME_SIZE);
3803
3804         /* are we a "%s.%d" name (platform and SPI components) */
3805         found = strstr(name, dev->driver->name);
3806         if (found) {
3807                 /* get ID */
3808                 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3809
3810                         /* discard ID from name if ID == -1 */
3811                         if (*id == -1)
3812                                 found[strlen(dev->driver->name)] = '\0';
3813                 }
3814
3815         } else {
3816                 /* I2C component devices are named "bus-addr"  */
3817                 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3818                         char tmp[NAME_SIZE];
3819
3820                         /* create unique ID number from I2C addr and bus */
3821                         *id = ((id1 & 0xffff) << 16) + id2;
3822
3823                         /* sanitize component name for DAI link creation */
3824                         snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
3825                         strlcpy(name, tmp, NAME_SIZE);
3826                 } else
3827                         *id = 0;
3828         }
3829
3830         return kstrdup(name, GFP_KERNEL);
3831 }
3832
3833 /*
3834  * Simplify DAI link naming for single devices with multiple DAIs by removing
3835  * any ".-1" and using the DAI name (instead of device name).
3836  */
3837 static inline char *fmt_multiple_name(struct device *dev,
3838                 struct snd_soc_dai_driver *dai_drv)
3839 {
3840         if (dai_drv->name == NULL) {
3841                 dev_err(dev,
3842                         "ASoC: error - multiple DAI %s registered with no name\n",
3843                         dev_name(dev));
3844                 return NULL;
3845         }
3846
3847         return kstrdup(dai_drv->name, GFP_KERNEL);
3848 }
3849
3850 /**
3851  * snd_soc_register_dai - Register a DAI with the ASoC core
3852  *
3853  * @dai: DAI to register
3854  */
3855 static int snd_soc_register_dai(struct device *dev,
3856                 struct snd_soc_dai_driver *dai_drv)
3857 {
3858         struct snd_soc_codec *codec;
3859         struct snd_soc_dai *dai;
3860
3861         dev_dbg(dev, "ASoC: dai register %s\n", dev_name(dev));
3862
3863         dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3864         if (dai == NULL)
3865                 return -ENOMEM;
3866
3867         /* create DAI component name */
3868         dai->name = fmt_single_name(dev, &dai->id);
3869         if (dai->name == NULL) {
3870                 kfree(dai);
3871                 return -ENOMEM;
3872         }
3873
3874         dai->dev = dev;
3875         dai->driver = dai_drv;
3876         dai->dapm.dev = dev;
3877         if (!dai->driver->ops)
3878                 dai->driver->ops = &null_dai_ops;
3879
3880         mutex_lock(&client_mutex);
3881
3882         list_for_each_entry(codec, &codec_list, list) {
3883                 if (codec->dev == dev) {
3884                         dev_dbg(dev, "ASoC: Mapped DAI %s to CODEC %s\n",
3885                                 dai->name, codec->name);
3886                         dai->codec = codec;
3887                         break;
3888                 }
3889         }
3890
3891         if (!dai->codec)
3892                 dai->dapm.idle_bias_off = 1;
3893
3894         list_add(&dai->list, &dai_list);
3895
3896         mutex_unlock(&client_mutex);
3897
3898         dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
3899
3900         return 0;
3901 }
3902
3903 /**
3904  * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3905  *
3906  * @dai: DAI to unregister
3907  */
3908 static void snd_soc_unregister_dai(struct device *dev)
3909 {
3910         struct snd_soc_dai *dai;
3911
3912         list_for_each_entry(dai, &dai_list, list) {
3913                 if (dev == dai->dev)
3914                         goto found;
3915         }
3916         return;
3917
3918 found:
3919         mutex_lock(&client_mutex);
3920         list_del(&dai->list);
3921         mutex_unlock(&client_mutex);
3922
3923         dev_dbg(dev, "ASoC: Unregistered DAI '%s'\n", dai->name);
3924         kfree(dai->name);
3925         kfree(dai);
3926 }
3927
3928 /**
3929  * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3930  *
3931  * @dai: Array of DAIs to register
3932  * @count: Number of DAIs
3933  */
3934 static int snd_soc_register_dais(struct device *dev,
3935                 struct snd_soc_dai_driver *dai_drv, size_t count)
3936 {
3937         struct snd_soc_codec *codec;
3938         struct snd_soc_dai *dai;
3939         int i, ret = 0;
3940
3941         dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
3942
3943         for (i = 0; i < count; i++) {
3944
3945                 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3946                 if (dai == NULL) {
3947                         ret = -ENOMEM;
3948                         goto err;
3949                 }
3950
3951                 /* create DAI component name */
3952                 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3953                 if (dai->name == NULL) {
3954                         kfree(dai);
3955                         ret = -EINVAL;
3956                         goto err;
3957                 }
3958
3959                 dai->dev = dev;
3960                 dai->driver = &dai_drv[i];
3961                 if (dai->driver->id)
3962                         dai->id = dai->driver->id;
3963                 else
3964                         dai->id = i;
3965                 dai->dapm.dev = dev;
3966                 if (!dai->driver->ops)
3967                         dai->driver->ops = &null_dai_ops;
3968
3969                 mutex_lock(&client_mutex);
3970
3971                 list_for_each_entry(codec, &codec_list, list) {
3972                         if (codec->dev == dev) {
3973                                 dev_dbg(dev,
3974                                         "ASoC: Mapped DAI %s to CODEC %s\n",
3975                                         dai->name, codec->name);
3976                                 dai->codec = codec;
3977                                 break;
3978                         }
3979                 }
3980
3981                 if (!dai->codec)
3982                         dai->dapm.idle_bias_off = 1;
3983
3984                 list_add(&dai->list, &dai_list);
3985
3986                 mutex_unlock(&client_mutex);
3987
3988                 dev_dbg(dai->dev, "ASoC: Registered DAI '%s'\n", dai->name);
3989         }
3990
3991         return 0;
3992
3993 err:
3994         for (i--; i >= 0; i--)
3995                 snd_soc_unregister_dai(dev);
3996
3997         return ret;
3998 }
3999
4000 /**
4001  * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
4002  *
4003  * @dai: Array of DAIs to unregister
4004  * @count: Number of DAIs
4005  */
4006 static void snd_soc_unregister_dais(struct device *dev, size_t count)
4007 {
4008         int i;
4009
4010         for (i = 0; i < count; i++)
4011                 snd_soc_unregister_dai(dev);
4012 }
4013
4014 /**
4015  * snd_soc_register_component - Register a component with the ASoC core
4016  *
4017  */
4018 static int
4019 __snd_soc_register_component(struct device *dev,
4020                              struct snd_soc_component *cmpnt,
4021                              const struct snd_soc_component_driver *cmpnt_drv,
4022                              struct snd_soc_dai_driver *dai_drv,
4023                              int num_dai, bool allow_single_dai)
4024 {
4025         int ret;
4026
4027         dev_dbg(dev, "component register %s\n", dev_name(dev));
4028
4029         if (!cmpnt) {
4030                 dev_err(dev, "ASoC: Failed to connecting component\n");
4031                 return -ENOMEM;
4032         }
4033
4034         cmpnt->name = fmt_single_name(dev, &cmpnt->id);
4035         if (!cmpnt->name) {
4036                 dev_err(dev, "ASoC: Failed to simplifying name\n");
4037                 return -ENOMEM;
4038         }
4039
4040         cmpnt->dev      = dev;
4041         cmpnt->driver   = cmpnt_drv;
4042         cmpnt->dai_drv  = dai_drv;
4043         cmpnt->num_dai  = num_dai;
4044
4045         /*
4046          * snd_soc_register_dai()  uses fmt_single_name(), and
4047          * snd_soc_register_dais() uses fmt_multiple_name()
4048          * for dai->name which is used for name based matching
4049          *
4050          * this function is used from cpu/codec.
4051          * allow_single_dai flag can ignore "codec" driver reworking
4052          * since it had been used snd_soc_register_dais(),
4053          */
4054         if ((1 == num_dai) && allow_single_dai)
4055                 ret = snd_soc_register_dai(dev, dai_drv);
4056         else
4057                 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
4058         if (ret < 0) {
4059                 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4060                 goto error_component_name;
4061         }
4062
4063         mutex_lock(&client_mutex);
4064         list_add(&cmpnt->list, &component_list);
4065         mutex_unlock(&client_mutex);
4066
4067         dev_dbg(cmpnt->dev, "ASoC: Registered component '%s'\n", cmpnt->name);
4068
4069         return ret;
4070
4071 error_component_name:
4072         kfree(cmpnt->name);
4073
4074         return ret;
4075 }
4076
4077 int snd_soc_register_component(struct device *dev,
4078                                const struct snd_soc_component_driver *cmpnt_drv,
4079                                struct snd_soc_dai_driver *dai_drv,
4080                                int num_dai)
4081 {
4082         struct snd_soc_component *cmpnt;
4083
4084         cmpnt = devm_kzalloc(dev, sizeof(*cmpnt), GFP_KERNEL);
4085         if (!cmpnt) {
4086                 dev_err(dev, "ASoC: Failed to allocate memory\n");
4087                 return -ENOMEM;
4088         }
4089
4090         return __snd_soc_register_component(dev, cmpnt, cmpnt_drv,
4091                                             dai_drv, num_dai, true);
4092 }
4093 EXPORT_SYMBOL_GPL(snd_soc_register_component);
4094
4095 /**
4096  * snd_soc_unregister_component - Unregister a component from the ASoC core
4097  *
4098  */
4099 void snd_soc_unregister_component(struct device *dev)
4100 {
4101         struct snd_soc_component *cmpnt;
4102
4103         list_for_each_entry(cmpnt, &component_list, list) {
4104                 if (dev == cmpnt->dev)
4105                         goto found;
4106         }
4107         return;
4108
4109 found:
4110         snd_soc_unregister_dais(dev, cmpnt->num_dai);
4111
4112         mutex_lock(&client_mutex);
4113         list_del(&cmpnt->list);
4114         mutex_unlock(&client_mutex);
4115
4116         dev_dbg(dev, "ASoC: Unregistered component '%s'\n", cmpnt->name);
4117         kfree(cmpnt->name);
4118 }
4119 EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
4120
4121 /**
4122  * snd_soc_add_platform - Add a platform to the ASoC core
4123  * @dev: The parent device for the platform
4124  * @platform: The platform to add
4125  * @platform_driver: The driver for the platform
4126  */
4127 int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
4128                 const struct snd_soc_platform_driver *platform_drv)
4129 {
4130         /* create platform component name */
4131         platform->name = fmt_single_name(dev, &platform->id);
4132         if (platform->name == NULL)
4133                 return -ENOMEM;
4134
4135         platform->dev = dev;
4136         platform->driver = platform_drv;
4137         platform->dapm.dev = dev;
4138         platform->dapm.platform = platform;
4139         platform->dapm.stream_event = platform_drv->stream_event;
4140         mutex_init(&platform->mutex);
4141
4142         mutex_lock(&client_mutex);
4143         list_add(&platform->list, &platform_list);
4144         mutex_unlock(&client_mutex);
4145
4146         dev_dbg(dev, "ASoC: Registered platform '%s'\n", platform->name);
4147
4148         return 0;
4149 }
4150 EXPORT_SYMBOL_GPL(snd_soc_add_platform);
4151
4152 /**
4153  * snd_soc_register_platform - Register a platform with the ASoC core
4154  *
4155  * @platform: platform to register
4156  */
4157 int snd_soc_register_platform(struct device *dev,
4158                 const struct snd_soc_platform_driver *platform_drv)
4159 {
4160         struct snd_soc_platform *platform;
4161         int ret;
4162
4163         dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
4164
4165         platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
4166         if (platform == NULL)
4167                 return -ENOMEM;
4168
4169         ret = snd_soc_add_platform(dev, platform, platform_drv);
4170         if (ret)
4171                 kfree(platform);
4172
4173         return ret;
4174 }
4175 EXPORT_SYMBOL_GPL(snd_soc_register_platform);
4176
4177 /**
4178  * snd_soc_remove_platform - Remove a platform from the ASoC core
4179  * @platform: the platform to remove
4180  */
4181 void snd_soc_remove_platform(struct snd_soc_platform *platform)
4182 {
4183         mutex_lock(&client_mutex);
4184         list_del(&platform->list);
4185         mutex_unlock(&client_mutex);
4186
4187         dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
4188                 platform->name);
4189         kfree(platform->name);
4190 }
4191 EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
4192
4193 struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
4194 {
4195         struct snd_soc_platform *platform;
4196
4197         list_for_each_entry(platform, &platform_list, list) {
4198                 if (dev == platform->dev)
4199                         return platform;
4200         }
4201
4202         return NULL;
4203 }
4204 EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
4205
4206 /**
4207  * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4208  *
4209  * @platform: platform to unregister
4210  */
4211 void snd_soc_unregister_platform(struct device *dev)
4212 {
4213         struct snd_soc_platform *platform;
4214
4215         platform = snd_soc_lookup_platform(dev);
4216         if (!platform)
4217                 return;
4218
4219         snd_soc_remove_platform(platform);
4220         kfree(platform);
4221 }
4222 EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
4223
4224 static u64 codec_format_map[] = {
4225         SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
4226         SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
4227         SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
4228         SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
4229         SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
4230         SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
4231         SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4232         SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4233         SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
4234         SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
4235         SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
4236         SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
4237         SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
4238         SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
4239         SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4240         | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
4241 };
4242
4243 /* Fix up the DAI formats for endianness: codecs don't actually see
4244  * the endianness of the data but we're using the CPU format
4245  * definitions which do need to include endianness so we ensure that
4246  * codec DAIs always have both big and little endian variants set.
4247  */
4248 static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
4249 {
4250         int i;
4251
4252         for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
4253                 if (stream->formats & codec_format_map[i])
4254                         stream->formats |= codec_format_map[i];
4255 }
4256
4257 /**
4258  * snd_soc_register_codec - Register a codec with the ASoC core
4259  *
4260  * @codec: codec to register
4261  */
4262 int snd_soc_register_codec(struct device *dev,
4263                            const struct snd_soc_codec_driver *codec_drv,
4264                            struct snd_soc_dai_driver *dai_drv,
4265                            int num_dai)
4266 {
4267         struct snd_soc_codec *codec;
4268         int ret, i;
4269
4270         dev_dbg(dev, "codec register %s\n", dev_name(dev));
4271
4272         codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
4273         if (codec == NULL)
4274                 return -ENOMEM;
4275
4276         /* create CODEC component name */
4277         codec->name = fmt_single_name(dev, &codec->id);
4278         if (codec->name == NULL) {
4279                 ret = -ENOMEM;
4280                 goto fail_codec;
4281         }
4282
4283         codec->write = codec_drv->write;
4284         codec->read = codec_drv->read;
4285         codec->volatile_register = codec_drv->volatile_register;
4286         codec->readable_register = codec_drv->readable_register;
4287         codec->writable_register = codec_drv->writable_register;
4288         codec->ignore_pmdown_time = codec_drv->ignore_pmdown_time;
4289         codec->dapm.bias_level = SND_SOC_BIAS_OFF;
4290         codec->dapm.dev = dev;
4291         codec->dapm.codec = codec;
4292         codec->dapm.seq_notifier = codec_drv->seq_notifier;
4293         codec->dapm.stream_event = codec_drv->stream_event;
4294         codec->dev = dev;
4295         codec->driver = codec_drv;
4296         codec->num_dai = num_dai;
4297         mutex_init(&codec->mutex);
4298
4299         for (i = 0; i < num_dai; i++) {
4300                 fixup_codec_formats(&dai_drv[i].playback);
4301                 fixup_codec_formats(&dai_drv[i].capture);
4302         }
4303
4304         mutex_lock(&client_mutex);
4305         list_add(&codec->list, &codec_list);
4306         mutex_unlock(&client_mutex);
4307
4308         /* register component */
4309         ret = __snd_soc_register_component(dev, &codec->component,
4310                                            &codec_drv->component_driver,
4311                                            dai_drv, num_dai, false);
4312         if (ret < 0) {
4313                 dev_err(codec->dev, "ASoC: Failed to regster component: %d\n", ret);
4314                 goto fail_codec_name;
4315         }
4316
4317         dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n", codec->name);
4318         return 0;
4319
4320 fail_codec_name:
4321         mutex_lock(&client_mutex);
4322         list_del(&codec->list);
4323         mutex_unlock(&client_mutex);
4324
4325         kfree(codec->name);
4326 fail_codec:
4327         kfree(codec);
4328         return ret;
4329 }
4330 EXPORT_SYMBOL_GPL(snd_soc_register_codec);
4331
4332 /**
4333  * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4334  *
4335  * @codec: codec to unregister
4336  */
4337 void snd_soc_unregister_codec(struct device *dev)
4338 {
4339         struct snd_soc_codec *codec;
4340
4341         list_for_each_entry(codec, &codec_list, list) {
4342                 if (dev == codec->dev)
4343                         goto found;
4344         }
4345         return;
4346
4347 found:
4348         snd_soc_unregister_component(dev);
4349
4350         mutex_lock(&client_mutex);
4351         list_del(&codec->list);
4352         mutex_unlock(&client_mutex);
4353
4354         dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n", codec->name);
4355
4356         snd_soc_cache_exit(codec);
4357         kfree(codec->name);
4358         kfree(codec);
4359 }
4360 EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
4361
4362 /* Retrieve a card's name from device tree */
4363 int snd_soc_of_parse_card_name(struct snd_soc_card *card,
4364                                const char *propname)
4365 {
4366         struct device_node *np = card->dev->of_node;
4367         int ret;
4368
4369         ret = of_property_read_string_index(np, propname, 0, &card->name);
4370         /*
4371          * EINVAL means the property does not exist. This is fine providing
4372          * card->name was previously set, which is checked later in
4373          * snd_soc_register_card.
4374          */
4375         if (ret < 0 && ret != -EINVAL) {
4376                 dev_err(card->dev,
4377                         "ASoC: Property '%s' could not be read: %d\n",
4378                         propname, ret);
4379                 return ret;
4380         }
4381
4382         return 0;
4383 }
4384 EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
4385
4386 int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
4387                                    const char *propname)
4388 {
4389         struct device_node *np = card->dev->of_node;
4390         int num_routes;
4391         struct snd_soc_dapm_route *routes;
4392         int i, ret;
4393
4394         num_routes = of_property_count_strings(np, propname);
4395         if (num_routes < 0 || num_routes & 1) {
4396                 dev_err(card->dev,
4397                         "ASoC: Property '%s' does not exist or its length is not even\n",
4398                         propname);
4399                 return -EINVAL;
4400         }
4401         num_routes /= 2;
4402         if (!num_routes) {
4403                 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
4404                         propname);
4405                 return -EINVAL;
4406         }
4407
4408         routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
4409                               GFP_KERNEL);
4410         if (!routes) {
4411                 dev_err(card->dev,
4412                         "ASoC: Could not allocate DAPM route table\n");
4413                 return -EINVAL;
4414         }
4415
4416         for (i = 0; i < num_routes; i++) {
4417                 ret = of_property_read_string_index(np, propname,
4418                         2 * i, &routes[i].sink);
4419                 if (ret) {
4420                         dev_err(card->dev,
4421                                 "ASoC: Property '%s' index %d could not be read: %d\n",
4422                                 propname, 2 * i, ret);
4423                         return -EINVAL;
4424                 }
4425                 ret = of_property_read_string_index(np, propname,
4426                         (2 * i) + 1, &routes[i].source);
4427                 if (ret) {
4428                         dev_err(card->dev,
4429                                 "ASoC: Property '%s' index %d could not be read: %d\n",
4430                                 propname, (2 * i) + 1, ret);
4431                         return -EINVAL;
4432                 }
4433         }
4434
4435         card->num_dapm_routes = num_routes;
4436         card->dapm_routes = routes;
4437
4438         return 0;
4439 }
4440 EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
4441
4442 unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
4443                                      const char *prefix)
4444 {
4445         int ret, i;
4446         char prop[128];
4447         unsigned int format = 0;
4448         int bit, frame;
4449         const char *str;
4450         struct {
4451                 char *name;
4452                 unsigned int val;
4453         } of_fmt_table[] = {
4454                 { "i2s",        SND_SOC_DAIFMT_I2S },
4455                 { "right_j",    SND_SOC_DAIFMT_RIGHT_J },
4456                 { "left_j",     SND_SOC_DAIFMT_LEFT_J },
4457                 { "dsp_a",      SND_SOC_DAIFMT_DSP_A },
4458                 { "dsp_b",      SND_SOC_DAIFMT_DSP_B },
4459                 { "ac97",       SND_SOC_DAIFMT_AC97 },
4460                 { "pdm",        SND_SOC_DAIFMT_PDM},
4461                 { "msb",        SND_SOC_DAIFMT_MSB },
4462                 { "lsb",        SND_SOC_DAIFMT_LSB },
4463         };
4464
4465         if (!prefix)
4466                 prefix = "";
4467
4468         /*
4469          * check "[prefix]format = xxx"
4470          * SND_SOC_DAIFMT_FORMAT_MASK area
4471          */
4472         snprintf(prop, sizeof(prop), "%sformat", prefix);
4473         ret = of_property_read_string(np, prop, &str);
4474         if (ret == 0) {
4475                 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
4476                         if (strcmp(str, of_fmt_table[i].name) == 0) {
4477                                 format |= of_fmt_table[i].val;
4478                                 break;
4479                         }
4480                 }
4481         }
4482
4483         /*
4484          * check "[prefix]continuous-clock"
4485          * SND_SOC_DAIFMT_CLOCK_MASK area
4486          */
4487         snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
4488         if (of_get_property(np, prop, NULL))
4489                 format |= SND_SOC_DAIFMT_CONT;
4490         else
4491                 format |= SND_SOC_DAIFMT_GATED;
4492
4493         /*
4494          * check "[prefix]bitclock-inversion"
4495          * check "[prefix]frame-inversion"
4496          * SND_SOC_DAIFMT_INV_MASK area
4497          */
4498         snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
4499         bit = !!of_get_property(np, prop, NULL);
4500
4501         snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
4502         frame = !!of_get_property(np, prop, NULL);
4503
4504         switch ((bit << 4) + frame) {
4505         case 0x11:
4506                 format |= SND_SOC_DAIFMT_IB_IF;
4507                 break;
4508         case 0x10:
4509                 format |= SND_SOC_DAIFMT_IB_NF;
4510                 break;
4511         case 0x01:
4512                 format |= SND_SOC_DAIFMT_NB_IF;
4513                 break;
4514         default:
4515                 /* SND_SOC_DAIFMT_NB_NF is default */
4516                 break;
4517         }
4518
4519         /*
4520          * check "[prefix]bitclock-master"
4521          * check "[prefix]frame-master"
4522          * SND_SOC_DAIFMT_MASTER_MASK area
4523          */
4524         snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4525         bit = !!of_get_property(np, prop, NULL);
4526
4527         snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4528         frame = !!of_get_property(np, prop, NULL);
4529
4530         switch ((bit << 4) + frame) {
4531         case 0x11:
4532                 format |= SND_SOC_DAIFMT_CBM_CFM;
4533                 break;
4534         case 0x10:
4535                 format |= SND_SOC_DAIFMT_CBM_CFS;
4536                 break;
4537         case 0x01:
4538                 format |= SND_SOC_DAIFMT_CBS_CFM;
4539                 break;
4540         default:
4541                 format |= SND_SOC_DAIFMT_CBS_CFS;
4542                 break;
4543         }
4544
4545         return format;
4546 }
4547 EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4548
4549 int snd_soc_of_get_dai_name(struct device_node *of_node,
4550                             const char **dai_name)
4551 {
4552         struct snd_soc_component *pos;
4553         struct of_phandle_args args;
4554         int ret;
4555
4556         ret = of_parse_phandle_with_args(of_node, "sound-dai",
4557                                          "#sound-dai-cells", 0, &args);
4558         if (ret)
4559                 return ret;
4560
4561         ret = -EPROBE_DEFER;
4562
4563         mutex_lock(&client_mutex);
4564         list_for_each_entry(pos, &component_list, list) {
4565                 if (pos->dev->of_node != args.np)
4566                         continue;
4567
4568                 if (pos->driver->of_xlate_dai_name) {
4569                         ret = pos->driver->of_xlate_dai_name(pos, &args, dai_name);
4570                 } else {
4571                         int id = -1;
4572
4573                         switch (args.args_count) {
4574                         case 0:
4575                                 id = 0; /* same as dai_drv[0] */
4576                                 break;
4577                         case 1:
4578                                 id = args.args[0];
4579                                 break;
4580                         default:
4581                                 /* not supported */
4582                                 break;
4583                         }
4584
4585                         if (id < 0 || id >= pos->num_dai) {
4586                                 ret = -EINVAL;
4587                         } else {
4588                                 *dai_name = pos->dai_drv[id].name;
4589                                 ret = 0;
4590                         }
4591                 }
4592
4593                 break;
4594         }
4595         mutex_unlock(&client_mutex);
4596
4597         of_node_put(args.np);
4598
4599         return ret;
4600 }
4601 EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
4602
4603 static int __init snd_soc_init(void)
4604 {
4605 #ifdef CONFIG_DEBUG_FS
4606         snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
4607         if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
4608                 pr_warn("ASoC: Failed to create debugfs directory\n");
4609                 snd_soc_debugfs_root = NULL;
4610         }
4611
4612         if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
4613                                  &codec_list_fops))
4614                 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4615
4616         if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
4617                                  &dai_list_fops))
4618                 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
4619
4620         if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
4621                                  &platform_list_fops))
4622                 pr_warn("ASoC: Failed to create platform list debugfs file\n");
4623 #endif
4624
4625         snd_soc_util_init();
4626
4627         return platform_driver_register(&soc_driver);
4628 }
4629 module_init(snd_soc_init);
4630
4631 static void __exit snd_soc_exit(void)
4632 {
4633         snd_soc_util_exit();
4634
4635 #ifdef CONFIG_DEBUG_FS
4636         debugfs_remove_recursive(snd_soc_debugfs_root);
4637 #endif
4638         platform_driver_unregister(&soc_driver);
4639 }
4640 module_exit(snd_soc_exit);
4641
4642 /* Module information */
4643 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4644 MODULE_DESCRIPTION("ALSA SoC Core");
4645 MODULE_LICENSE("GPL");
4646 MODULE_ALIAS("platform:soc-audio");