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