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