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