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