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