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