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