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