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