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