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