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