blob: d0efd5eaaa0b33d53a1c89948f274bbe29eb7ea4 [file] [log] [blame]
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001/*
2 * soc-core.c -- ALSA SoC Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwood0664d882006-12-18 14:39:02 +01005 * Copyright 2005 Openedhand Ltd.
6 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +01008 * with code, comments and ideas from :-
9 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020010 *
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 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020016 * 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>
Troy Kisky12ef1932008-10-13 17:42:14 -070029#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020030#include <linux/platform_device.h>
Marek Vasut474828a2009-07-22 13:01:03 +020031#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020032#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
Frank Mandarinodb2a4162006-10-06 18:31:09 +020039static DEFINE_MUTEX(pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
41
Mark Brown384c89e2008-12-03 17:34:03 +000042#ifdef CONFIG_DEBUG_FS
43static struct dentry *debugfs_root;
44#endif
45
Mark Brownc5af3a22008-11-28 13:29:45 +000046static DEFINE_MUTEX(client_mutex);
47static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000048static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000049static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000050static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000051
52static int snd_soc_register_card(struct snd_soc_card *card);
53static int snd_soc_unregister_card(struct snd_soc_card *card);
54
Frank Mandarinodb2a4162006-10-06 18:31:09 +020055/*
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
Liam Girdwood965ac422007-01-31 14:14:57 +010064/*
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
Mark Brown2624d5f2009-11-03 21:56:13 +000083/* 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
Mark Browndbe21402010-02-12 11:37:24 +0000133static 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
Mark Brown6c5f1fe2010-02-17 14:30:44 +0000139 return sprintf(buf, "%ld\n", card->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000140}
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
Mark Brown2624d5f2009-11-03 21:56:13 +0000156#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
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200273#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;
Mark Brown4ac5c612009-04-01 19:35:01 +0100291 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200292 codec->ac97->dev.release = soc_ac97_device_release;
293
Kay Sieversbb072bf2008-11-02 03:50:35 +0100294 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
295 codec->card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200296 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
Mark Brown06f409d2009-04-07 18:10:13 +0100306static 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) {
318 dev_dbg(card->dev, "Symmetry forces %dHz rate\n",
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
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200335/*
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;
Mark Brown87689d52008-12-02 16:01:14 +0000344 struct snd_soc_card *card = socdev->card;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200345 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100346 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000347 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100348 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
349 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200350 int ret = 0;
351
352 mutex_lock(&pcm_mutex);
353
354 /* startup the audio subsystem */
Eric Miao6335d052009-03-03 09:41:00 +0800355 if (cpu_dai->ops->startup) {
356 ret = cpu_dai->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200357 if (ret < 0) {
358 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100359 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200360 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
Eric Miao6335d052009-03-03 09:41:00 +0800372 if (codec_dai->ops->startup) {
373 ret = codec_dai->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100374 if (ret < 0) {
375 printk(KERN_ERR "asoc: can't open codec %s\n",
376 codec_dai->name);
377 goto codec_dai_err;
378 }
379 }
380
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200381 if (machine->ops && machine->ops->startup) {
382 ret = machine->ops->startup(substream);
383 if (ret < 0) {
384 printk(KERN_ERR "asoc: %s startup failed\n", machine->name);
385 goto machine_err;
386 }
387 }
388
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200389 /* Check that the codec and cpu DAI's are compatible */
390 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
391 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200392 max(codec_dai->playback.rate_min,
393 cpu_dai->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200394 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200395 min(codec_dai->playback.rate_max,
396 cpu_dai->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200397 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100398 max(codec_dai->playback.channels_min,
399 cpu_dai->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200400 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100401 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;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200407 } else {
408 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200409 max(codec_dai->capture.rate_min,
410 cpu_dai->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200411 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200412 min(codec_dai->capture.rate_max,
413 cpu_dai->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200414 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100415 max(codec_dai->capture.channels_min,
416 cpu_dai->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200417 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100418 min(codec_dai->capture.channels_max,
419 cpu_dai->capture.channels_max);
420 runtime->hw.formats =
421 codec_dai->capture.formats & cpu_dai->capture.formats;
422 runtime->hw.rates =
423 codec_dai->capture.rates & cpu_dai->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200424 }
425
426 snd_pcm_limit_hw_rates(runtime);
427 if (!runtime->hw.rates) {
428 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100429 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900430 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200431 }
432 if (!runtime->hw.formats) {
433 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100434 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900435 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200436 }
437 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
438 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100439 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900440 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200441 }
442
Mark Brown06f409d2009-04-07 18:10:13 +0100443 /* Symmetry only applies if we've already got an active stream. */
444 if (cpu_dai->active || codec_dai->active) {
445 ret = soc_pcm_apply_symmetry(substream);
446 if (ret != 0)
Jassi Brarbb1c0472010-02-25 11:24:53 +0900447 goto config_err;
Mark Brown06f409d2009-04-07 18:10:13 +0100448 }
449
Mark Brownf24368c2008-10-21 21:45:08 +0100450 pr_debug("asoc: %s <-> %s info:\n", codec_dai->name, cpu_dai->name);
451 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
452 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
453 runtime->hw.channels_max);
454 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
455 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200456
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200457 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100458 cpu_dai->playback.active = codec_dai->playback.active = 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200459 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100460 cpu_dai->capture.active = codec_dai->capture.active = 1;
461 cpu_dai->active = codec_dai->active = 1;
462 cpu_dai->runtime = runtime;
Mark Brown6627a652009-01-23 22:55:23 +0000463 card->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200464 mutex_unlock(&pcm_mutex);
465 return 0;
466
Jassi Brarbb1c0472010-02-25 11:24:53 +0900467config_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200468 if (machine->ops && machine->ops->shutdown)
469 machine->ops->shutdown(substream);
470
Jassi Brarbb1c0472010-02-25 11:24:53 +0900471machine_err:
472 if (codec_dai->ops->shutdown)
473 codec_dai->ops->shutdown(substream, codec_dai);
474
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100475codec_dai_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200476 if (platform->pcm_ops->close)
477 platform->pcm_ops->close(substream);
478
479platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800480 if (cpu_dai->ops->shutdown)
481 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200482out:
483 mutex_unlock(&pcm_mutex);
484 return ret;
485}
486
487/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200488 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200489 * This is to ensure there are no pops or clicks in between any music tracks
490 * due to DAPM power cycling.
491 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100492static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200493{
Mark Brown63084192008-12-02 15:08:03 +0000494 struct snd_soc_card *card = container_of(work, struct snd_soc_card,
495 delayed_work.work);
Mark Brown6627a652009-01-23 22:55:23 +0000496 struct snd_soc_codec *codec = card->codec;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100497 struct snd_soc_dai *codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200498 int i;
499
500 mutex_lock(&pcm_mutex);
Mark Brown3ff3f642008-05-19 12:32:25 +0200501 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200502 codec_dai = &codec->dai[i];
503
Mark Brownf24368c2008-10-21 21:45:08 +0100504 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
505 codec_dai->playback.stream_name,
506 codec_dai->playback.active ? "active" : "inactive",
507 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200508
509 /* are we waiting on this codec DAI stream */
510 if (codec_dai->pop_wait == 1) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200511 codec_dai->pop_wait = 0;
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100512 snd_soc_dapm_stream_event(codec,
513 codec_dai->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200514 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200515 }
516 }
517 mutex_unlock(&pcm_mutex);
518}
519
520/*
521 * Called by ALSA when a PCM substream is closed. Private data can be
522 * freed here. The cpu DAI, codec DAI, machine and platform are also
523 * shutdown.
524 */
525static int soc_codec_close(struct snd_pcm_substream *substream)
526{
527 struct snd_soc_pcm_runtime *rtd = substream->private_data;
528 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000529 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100530 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000531 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100532 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
533 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000534 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200535
536 mutex_lock(&pcm_mutex);
537
538 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100539 cpu_dai->playback.active = codec_dai->playback.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200540 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100541 cpu_dai->capture.active = codec_dai->capture.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200542
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100543 if (codec_dai->playback.active == 0 &&
544 codec_dai->capture.active == 0) {
545 cpu_dai->active = codec_dai->active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200546 }
547 codec->active--;
548
Mark Brown6010b2d2008-09-06 18:33:24 +0100549 /* Muting the DAC suppresses artifacts caused during digital
550 * shutdown, for example from stopping clocks.
551 */
552 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
553 snd_soc_dai_digital_mute(codec_dai, 1);
554
Eric Miao6335d052009-03-03 09:41:00 +0800555 if (cpu_dai->ops->shutdown)
556 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200557
Eric Miao6335d052009-03-03 09:41:00 +0800558 if (codec_dai->ops->shutdown)
559 codec_dai->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200560
561 if (machine->ops && machine->ops->shutdown)
562 machine->ops->shutdown(substream);
563
564 if (platform->pcm_ops->close)
565 platform->pcm_ops->close(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100566 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200567
568 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
569 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100570 codec_dai->pop_wait = 1;
Mark Brown63084192008-12-02 15:08:03 +0000571 schedule_delayed_work(&card->delayed_work,
Mark Brown96dd3622010-02-12 11:05:44 +0000572 msecs_to_jiffies(card->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200573 } else {
574 /* capture streams can be powered down now */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100575 snd_soc_dapm_stream_event(codec,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100576 codec_dai->capture.stream_name,
577 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200578 }
579
580 mutex_unlock(&pcm_mutex);
581 return 0;
582}
583
584/*
585 * Called by ALSA when the PCM substream is prepared, can set format, sample
586 * rate, etc. This function is non atomic and can be called multiple times,
587 * it can refer to the runtime info.
588 */
589static int soc_pcm_prepare(struct snd_pcm_substream *substream)
590{
591 struct snd_soc_pcm_runtime *rtd = substream->private_data;
592 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000593 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100594 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000595 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100596 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
597 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000598 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200599 int ret = 0;
600
601 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100602
603 if (machine->ops && machine->ops->prepare) {
604 ret = machine->ops->prepare(substream);
605 if (ret < 0) {
606 printk(KERN_ERR "asoc: machine prepare error\n");
607 goto out;
608 }
609 }
610
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200611 if (platform->pcm_ops->prepare) {
612 ret = platform->pcm_ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200613 if (ret < 0) {
614 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200615 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200616 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200617 }
618
Eric Miao6335d052009-03-03 09:41:00 +0800619 if (codec_dai->ops->prepare) {
620 ret = codec_dai->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200621 if (ret < 0) {
622 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200623 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200624 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200625 }
626
Eric Miao6335d052009-03-03 09:41:00 +0800627 if (cpu_dai->ops->prepare) {
628 ret = cpu_dai->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100629 if (ret < 0) {
630 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
631 goto out;
632 }
633 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200634
Mark Brownd45f6212008-10-14 13:58:36 +0100635 /* cancel any delayed stream shutdown that is pending */
636 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
637 codec_dai->pop_wait) {
638 codec_dai->pop_wait = 0;
Mark Brown63084192008-12-02 15:08:03 +0000639 cancel_delayed_work(&card->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100640 }
641
Mark Brown452c5ea2009-05-17 21:41:23 +0100642 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
643 snd_soc_dapm_stream_event(codec,
644 codec_dai->playback.stream_name,
645 SND_SOC_DAPM_STREAM_START);
646 else
647 snd_soc_dapm_stream_event(codec,
648 codec_dai->capture.stream_name,
649 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100650
Mark Brown452c5ea2009-05-17 21:41:23 +0100651 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200652
653out:
654 mutex_unlock(&pcm_mutex);
655 return ret;
656}
657
658/*
659 * Called by ALSA when the hardware params are set by application. This
660 * function can also be called multiple times and can allocate buffers
661 * (using snd_pcm_lib_* ). It's non-atomic.
662 */
663static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
664 struct snd_pcm_hw_params *params)
665{
666 struct snd_soc_pcm_runtime *rtd = substream->private_data;
667 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100668 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000669 struct snd_soc_card *card = socdev->card;
670 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100671 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
672 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200673 int ret = 0;
674
675 mutex_lock(&pcm_mutex);
676
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100677 if (machine->ops && machine->ops->hw_params) {
678 ret = machine->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200679 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100680 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200681 goto out;
682 }
683 }
684
Eric Miao6335d052009-03-03 09:41:00 +0800685 if (codec_dai->ops->hw_params) {
686 ret = codec_dai->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100687 if (ret < 0) {
688 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
689 codec_dai->name);
690 goto codec_err;
691 }
692 }
693
Eric Miao6335d052009-03-03 09:41:00 +0800694 if (cpu_dai->ops->hw_params) {
695 ret = cpu_dai->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200696 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200697 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100698 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200699 goto interface_err;
700 }
701 }
702
703 if (platform->pcm_ops->hw_params) {
704 ret = platform->pcm_ops->hw_params(substream, params);
705 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200706 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200707 platform->name);
708 goto platform_err;
709 }
710 }
711
Mark Brown06f409d2009-04-07 18:10:13 +0100712 machine->rate = params_rate(params);
713
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200714out:
715 mutex_unlock(&pcm_mutex);
716 return ret;
717
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200718platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800719 if (cpu_dai->ops->hw_free)
720 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200721
722interface_err:
Eric Miao6335d052009-03-03 09:41:00 +0800723 if (codec_dai->ops->hw_free)
724 codec_dai->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100725
726codec_err:
Mark Brown3ff3f642008-05-19 12:32:25 +0200727 if (machine->ops && machine->ops->hw_free)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100728 machine->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200729
730 mutex_unlock(&pcm_mutex);
731 return ret;
732}
733
734/*
735 * Free's resources allocated by hw_params, can be called multiple times
736 */
737static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
738{
739 struct snd_soc_pcm_runtime *rtd = substream->private_data;
740 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100741 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000742 struct snd_soc_card *card = socdev->card;
743 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100744 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
745 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000746 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200747
748 mutex_lock(&pcm_mutex);
749
750 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100751 if (!codec->active)
752 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200753
754 /* free any machine hw params */
755 if (machine->ops && machine->ops->hw_free)
756 machine->ops->hw_free(substream);
757
758 /* free any DMA resources */
759 if (platform->pcm_ops->hw_free)
760 platform->pcm_ops->hw_free(substream);
761
762 /* now free hw params for the DAI's */
Eric Miao6335d052009-03-03 09:41:00 +0800763 if (codec_dai->ops->hw_free)
764 codec_dai->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200765
Eric Miao6335d052009-03-03 09:41:00 +0800766 if (cpu_dai->ops->hw_free)
767 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200768
769 mutex_unlock(&pcm_mutex);
770 return 0;
771}
772
773static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
774{
775 struct snd_soc_pcm_runtime *rtd = substream->private_data;
776 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000777 struct snd_soc_card *card= socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100778 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000779 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100780 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
781 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200782 int ret;
783
Eric Miao6335d052009-03-03 09:41:00 +0800784 if (codec_dai->ops->trigger) {
785 ret = codec_dai->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200786 if (ret < 0)
787 return ret;
788 }
789
790 if (platform->pcm_ops->trigger) {
791 ret = platform->pcm_ops->trigger(substream, cmd);
792 if (ret < 0)
793 return ret;
794 }
795
Eric Miao6335d052009-03-03 09:41:00 +0800796 if (cpu_dai->ops->trigger) {
797 ret = cpu_dai->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200798 if (ret < 0)
799 return ret;
800 }
801 return 0;
802}
803
804/* ASoC PCM operations */
805static struct snd_pcm_ops soc_pcm_ops = {
806 .open = soc_pcm_open,
807 .close = soc_codec_close,
808 .hw_params = soc_pcm_hw_params,
809 .hw_free = soc_pcm_hw_free,
810 .prepare = soc_pcm_prepare,
811 .trigger = soc_pcm_trigger,
812};
813
814#ifdef CONFIG_PM
815/* powers down audio subsystem for suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100816static int soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200817{
Mark Brown416356f2009-06-30 19:05:15 +0100818 struct platform_device *pdev = to_platform_device(dev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200819 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +0000820 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +0000821 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200822 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000823 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200824 int i;
825
Daniel Macke3509ff2009-06-03 17:44:49 +0200826 /* If the initialization of this soc device failed, there is no codec
827 * associated with it. Just bail out in this case.
828 */
829 if (!codec)
830 return 0;
831
Andy Green6ed25972008-06-13 16:24:05 +0100832 /* Due to the resume being scheduled into a workqueue we could
833 * suspend before that's finished - wait for it to complete.
834 */
835 snd_power_lock(codec->card);
836 snd_power_wait(codec->card, SNDRV_CTL_POWER_D0);
837 snd_power_unlock(codec->card);
838
839 /* we're going to block userspace touching us until resume completes */
840 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D3hot);
841
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200842 /* mute any active DAC's */
Mark Browndee89c42008-11-18 22:11:38 +0000843 for (i = 0; i < card->num_links; i++) {
844 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800845 if (dai->ops->digital_mute && dai->playback.active)
846 dai->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200847 }
848
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100849 /* suspend all pcms */
Mark Brown87506542008-11-18 20:50:34 +0000850 for (i = 0; i < card->num_links; i++)
851 snd_pcm_suspend_all(card->dai_link[i].pcm);
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100852
Mark Brown87506542008-11-18 20:50:34 +0000853 if (card->suspend_pre)
Mark Brown416356f2009-06-30 19:05:15 +0100854 card->suspend_pre(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200855
Mark Brown87506542008-11-18 20:50:34 +0000856 for (i = 0; i < card->num_links; i++) {
857 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000858 if (cpu_dai->suspend && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000859 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200860 if (platform->suspend)
Mark Brown07c84d02008-12-03 18:17:28 +0000861 platform->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200862 }
863
864 /* close any waiting streams and save state */
Mark Brown63084192008-12-02 15:08:03 +0000865 run_delayed_work(&card->delayed_work);
Mark Brown0be98982008-05-19 12:31:28 +0200866 codec->suspend_bias_level = codec->bias_level;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200867
Mark Brown3ff3f642008-05-19 12:32:25 +0200868 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200869 char *stream = codec->dai[i].playback.stream_name;
870 if (stream != NULL)
871 snd_soc_dapm_stream_event(codec, stream,
872 SND_SOC_DAPM_STREAM_SUSPEND);
873 stream = codec->dai[i].capture.stream_name;
874 if (stream != NULL)
875 snd_soc_dapm_stream_event(codec, stream,
876 SND_SOC_DAPM_STREAM_SUSPEND);
877 }
878
879 if (codec_dev->suspend)
Mark Brown416356f2009-06-30 19:05:15 +0100880 codec_dev->suspend(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200881
Mark Brown87506542008-11-18 20:50:34 +0000882 for (i = 0; i < card->num_links; i++) {
883 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000884 if (cpu_dai->suspend && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000885 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200886 }
887
Mark Brown87506542008-11-18 20:50:34 +0000888 if (card->suspend_post)
Mark Brown416356f2009-06-30 19:05:15 +0100889 card->suspend_post(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200890
891 return 0;
892}
893
Andy Green6ed25972008-06-13 16:24:05 +0100894/* deferred resume work, so resume can complete before we finished
895 * setting our codec back up, which can be very slow on I2C
896 */
897static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200898{
Mark Brown63084192008-12-02 15:08:03 +0000899 struct snd_soc_card *card = container_of(work,
900 struct snd_soc_card,
901 deferred_resume_work);
902 struct snd_soc_device *socdev = card->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000903 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200904 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000905 struct snd_soc_codec *codec = card->codec;
Andy Green6ed25972008-06-13 16:24:05 +0100906 struct platform_device *pdev = to_platform_device(socdev->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200907 int i;
908
Andy Green6ed25972008-06-13 16:24:05 +0100909 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
910 * so userspace apps are blocked from touching us
911 */
912
Mark Brownfde22f22008-11-24 18:08:18 +0000913 dev_dbg(socdev->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100914
Mark Brown87506542008-11-18 20:50:34 +0000915 if (card->resume_pre)
916 card->resume_pre(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200917
Mark Brown87506542008-11-18 20:50:34 +0000918 for (i = 0; i < card->num_links; i++) {
919 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000920 if (cpu_dai->resume && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000921 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200922 }
923
924 if (codec_dev->resume)
925 codec_dev->resume(pdev);
926
Mark Brown3ff3f642008-05-19 12:32:25 +0200927 for (i = 0; i < codec->num_dai; i++) {
928 char *stream = codec->dai[i].playback.stream_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200929 if (stream != NULL)
930 snd_soc_dapm_stream_event(codec, stream,
931 SND_SOC_DAPM_STREAM_RESUME);
932 stream = codec->dai[i].capture.stream_name;
933 if (stream != NULL)
934 snd_soc_dapm_stream_event(codec, stream,
935 SND_SOC_DAPM_STREAM_RESUME);
936 }
937
Mark Brown3ff3f642008-05-19 12:32:25 +0200938 /* unmute any active DACs */
Mark Browndee89c42008-11-18 22:11:38 +0000939 for (i = 0; i < card->num_links; i++) {
940 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800941 if (dai->ops->digital_mute && dai->playback.active)
942 dai->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200943 }
944
Mark Brown87506542008-11-18 20:50:34 +0000945 for (i = 0; i < card->num_links; i++) {
946 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000947 if (cpu_dai->resume && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000948 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200949 if (platform->resume)
Mark Brown07c84d02008-12-03 18:17:28 +0000950 platform->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200951 }
952
Mark Brown87506542008-11-18 20:50:34 +0000953 if (card->resume_post)
954 card->resume_post(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200955
Mark Brownfde22f22008-11-24 18:08:18 +0000956 dev_dbg(socdev->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100957
958 /* userspace can access us now we are back as we were before */
959 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0);
960}
961
962/* powers up audio subsystem after a suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100963static int soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100964{
Mark Brown416356f2009-06-30 19:05:15 +0100965 struct platform_device *pdev = to_platform_device(dev);
Andy Green6ed25972008-06-13 16:24:05 +0100966 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown63084192008-12-02 15:08:03 +0000967 struct snd_soc_card *card = socdev->card;
Mark Brown64ab9ba2009-03-31 11:27:03 +0100968 struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai;
Andy Green6ed25972008-06-13 16:24:05 +0100969
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200970 /* If the initialization of this soc device failed, there is no codec
971 * associated with it. Just bail out in this case.
972 */
973 if (!card->codec)
974 return 0;
975
Mark Brown64ab9ba2009-03-31 11:27:03 +0100976 /* AC97 devices might have other drivers hanging off them so
977 * need to resume immediately. Other drivers don't have that
978 * problem and may take a substantial amount of time to resume
979 * due to I/O costs and anti-pop so handle them out of line.
980 */
981 if (cpu_dai->ac97_control) {
982 dev_dbg(socdev->dev, "Resuming AC97 immediately\n");
983 soc_resume_deferred(&card->deferred_resume_work);
984 } else {
985 dev_dbg(socdev->dev, "Scheduling resume work\n");
986 if (!schedule_work(&card->deferred_resume_work))
987 dev_err(socdev->dev, "resume work item may be lost\n");
988 }
Andy Green6ed25972008-06-13 16:24:05 +0100989
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200990 return 0;
991}
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200992#else
993#define soc_suspend NULL
994#define soc_resume NULL
995#endif
996
Barry Song02a06d32009-10-16 18:13:38 +0800997static struct snd_soc_dai_ops null_dai_ops = {
998};
999
Mark Brown435c5e22008-12-04 15:32:53 +00001000static void snd_soc_instantiate_card(struct snd_soc_card *card)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001001{
Mark Brown435c5e22008-12-04 15:32:53 +00001002 struct platform_device *pdev = container_of(card->dev,
1003 struct platform_device,
1004 dev);
1005 struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001006 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001007 struct snd_soc_platform *platform;
1008 struct snd_soc_dai *dai;
Mark Brown6b05eda2008-12-08 19:26:48 +00001009 int i, found, ret, ac97;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001010
Mark Brown435c5e22008-12-04 15:32:53 +00001011 if (card->instantiated)
1012 return;
Mark Brown63084192008-12-02 15:08:03 +00001013
Mark Brown435c5e22008-12-04 15:32:53 +00001014 found = 0;
1015 list_for_each_entry(platform, &platform_list, list)
1016 if (card->platform == platform) {
1017 found = 1;
1018 break;
1019 }
1020 if (!found) {
1021 dev_dbg(card->dev, "Platform %s not registered\n",
1022 card->platform->name);
1023 return;
Mark Brownc5af3a22008-11-28 13:29:45 +00001024 }
1025
Mark Brown6b05eda2008-12-08 19:26:48 +00001026 ac97 = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001027 for (i = 0; i < card->num_links; i++) {
1028 found = 0;
1029 list_for_each_entry(dai, &dai_list, list)
1030 if (card->dai_link[i].cpu_dai == dai) {
1031 found = 1;
1032 break;
1033 }
1034 if (!found) {
1035 dev_dbg(card->dev, "DAI %s not registered\n",
1036 card->dai_link[i].cpu_dai->name);
1037 return;
1038 }
Mark Brown6b05eda2008-12-08 19:26:48 +00001039
1040 if (card->dai_link[i].cpu_dai->ac97_control)
1041 ac97 = 1;
Mark Brown435c5e22008-12-04 15:32:53 +00001042 }
1043
Barry Song02a06d32009-10-16 18:13:38 +08001044 for (i = 0; i < card->num_links; i++) {
1045 if (!card->dai_link[i].codec_dai->ops)
1046 card->dai_link[i].codec_dai->ops = &null_dai_ops;
1047 }
1048
Mark Brown6b05eda2008-12-08 19:26:48 +00001049 /* If we have AC97 in the system then don't wait for the
1050 * codec. This will need revisiting if we have to handle
1051 * systems with mixed AC97 and non-AC97 parts. Only check for
1052 * DAIs currently; we can't do this per link since some AC97
1053 * codecs have non-AC97 DAIs.
1054 */
1055 if (!ac97)
1056 for (i = 0; i < card->num_links; i++) {
1057 found = 0;
1058 list_for_each_entry(dai, &dai_list, list)
1059 if (card->dai_link[i].codec_dai == dai) {
1060 found = 1;
1061 break;
1062 }
1063 if (!found) {
1064 dev_dbg(card->dev, "DAI %s not registered\n",
1065 card->dai_link[i].codec_dai->name);
1066 return;
1067 }
1068 }
1069
Mark Brown435c5e22008-12-04 15:32:53 +00001070 /* Note that we do not current check for codec components */
1071
1072 dev_dbg(card->dev, "All components present, instantiating\n");
1073
1074 /* Found everything, bring it up */
Mark Brown96dd3622010-02-12 11:05:44 +00001075 card->pmdown_time = pmdown_time;
1076
Mark Brown87506542008-11-18 20:50:34 +00001077 if (card->probe) {
1078 ret = card->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +02001079 if (ret < 0)
Mark Brown435c5e22008-12-04 15:32:53 +00001080 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001081 }
1082
Mark Brown87506542008-11-18 20:50:34 +00001083 for (i = 0; i < card->num_links; i++) {
1084 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001085 if (cpu_dai->probe) {
Mark Brownbdb92872008-06-11 13:47:10 +01001086 ret = cpu_dai->probe(pdev, cpu_dai);
Mark Brown3ff3f642008-05-19 12:32:25 +02001087 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001088 goto cpu_dai_err;
1089 }
1090 }
1091
1092 if (codec_dev->probe) {
1093 ret = codec_dev->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +02001094 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001095 goto cpu_dai_err;
1096 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001097 codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001098
1099 if (platform->probe) {
1100 ret = platform->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +02001101 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001102 goto platform_err;
1103 }
1104
1105 /* DAPM stream work */
Mark Brown63084192008-12-02 15:08:03 +00001106 INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
Randy Dunlap1301a962008-06-17 19:19:34 +01001107#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +01001108 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001109 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001110#endif
Andy Green6ed25972008-06-13 16:24:05 +01001111
Mark Brownfe3e78e2009-11-03 22:13:13 +00001112 for (i = 0; i < card->num_links; i++) {
1113 if (card->dai_link[i].init) {
1114 ret = card->dai_link[i].init(codec);
1115 if (ret < 0) {
1116 printk(KERN_ERR "asoc: failed to init %s\n",
1117 card->dai_link[i].stream_name);
1118 continue;
1119 }
1120 }
Barry Songf7732052009-11-12 12:01:47 +08001121 if (card->dai_link[i].codec_dai->ac97_control)
Mark Brownfe3e78e2009-11-03 22:13:13 +00001122 ac97 = 1;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001123 }
1124
1125 snprintf(codec->card->shortname, sizeof(codec->card->shortname),
1126 "%s", card->name);
1127 snprintf(codec->card->longname, sizeof(codec->card->longname),
1128 "%s (%s)", card->name, codec->name);
1129
1130 /* Make sure all DAPM widgets are instantiated */
1131 snd_soc_dapm_new_widgets(codec);
1132
1133 ret = snd_card_register(codec->card);
1134 if (ret < 0) {
1135 printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
1136 codec->name);
1137 goto card_err;
1138 }
1139
1140 mutex_lock(&codec->mutex);
1141#ifdef CONFIG_SND_SOC_AC97_BUS
1142 /* Only instantiate AC97 if not already done by the adaptor
1143 * for the generic AC97 subsystem.
1144 */
1145 if (ac97 && strcmp(codec->name, "AC97") != 0) {
1146 ret = soc_ac97_dev_register(codec);
1147 if (ret < 0) {
1148 printk(KERN_ERR "asoc: AC97 device register failed\n");
1149 snd_card_free(codec->card);
1150 mutex_unlock(&codec->mutex);
1151 goto card_err;
1152 }
1153 }
1154#endif
1155
1156 ret = snd_soc_dapm_sys_add(card->socdev->dev);
1157 if (ret < 0)
1158 printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
1159
Mark Browndbe21402010-02-12 11:37:24 +00001160 ret = device_create_file(card->socdev->dev, &dev_attr_pmdown_time);
1161 if (ret < 0)
1162 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1163
Mark Brownfe3e78e2009-11-03 22:13:13 +00001164 ret = device_create_file(card->socdev->dev, &dev_attr_codec_reg);
1165 if (ret < 0)
1166 printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
1167
1168 soc_init_codec_debugfs(codec);
1169 mutex_unlock(&codec->mutex);
1170
Mark Brown435c5e22008-12-04 15:32:53 +00001171 card->instantiated = 1;
1172
1173 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001174
Mark Brownfe3e78e2009-11-03 22:13:13 +00001175card_err:
1176 if (platform->remove)
1177 platform->remove(pdev);
1178
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001179platform_err:
1180 if (codec_dev->remove)
1181 codec_dev->remove(pdev);
1182
1183cpu_dai_err:
Liam Girdwood18b9b3d2007-01-30 17:18:45 +01001184 for (i--; i >= 0; i--) {
Mark Brown87506542008-11-18 20:50:34 +00001185 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001186 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +01001187 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001188 }
1189
Mark Brown87506542008-11-18 20:50:34 +00001190 if (card->remove)
1191 card->remove(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001192}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001193
Mark Brown435c5e22008-12-04 15:32:53 +00001194/*
1195 * Attempt to initialise any uninitalised cards. Must be called with
1196 * client_mutex.
1197 */
1198static void snd_soc_instantiate_cards(void)
1199{
1200 struct snd_soc_card *card;
1201 list_for_each_entry(card, &card_list, list)
1202 snd_soc_instantiate_card(card);
1203}
1204
1205/* probes a new socdev */
1206static int soc_probe(struct platform_device *pdev)
1207{
1208 int ret = 0;
1209 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1210 struct snd_soc_card *card = socdev->card;
1211
1212 /* Bodge while we push things out of socdev */
1213 card->socdev = socdev;
1214
1215 /* Bodge while we unpick instantiation */
1216 card->dev = &pdev->dev;
1217 ret = snd_soc_register_card(card);
1218 if (ret != 0) {
1219 dev_err(&pdev->dev, "Failed to register card\n");
1220 return ret;
1221 }
1222
1223 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001224}
1225
1226/* removes a socdev */
1227static int soc_remove(struct platform_device *pdev)
1228{
1229 int i;
1230 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +00001231 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +00001232 struct snd_soc_platform *platform = card->platform;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001233 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
1234
Mike Rapoport914dc182009-05-11 13:04:55 +03001235 if (!card->instantiated)
1236 return 0;
1237
Mark Brown63084192008-12-02 15:08:03 +00001238 run_delayed_work(&card->delayed_work);
Liam Girdwood965ac422007-01-31 14:14:57 +01001239
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001240 if (platform->remove)
1241 platform->remove(pdev);
1242
1243 if (codec_dev->remove)
1244 codec_dev->remove(pdev);
1245
Mark Brown87506542008-11-18 20:50:34 +00001246 for (i = 0; i < card->num_links; i++) {
1247 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001248 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +01001249 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001250 }
1251
Mark Brown87506542008-11-18 20:50:34 +00001252 if (card->remove)
1253 card->remove(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001254
Mark Brownc5af3a22008-11-28 13:29:45 +00001255 snd_soc_unregister_card(card);
1256
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001257 return 0;
1258}
1259
Mark Brown416356f2009-06-30 19:05:15 +01001260static int soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001261{
Mark Brown416356f2009-06-30 19:05:15 +01001262 struct platform_device *pdev = to_platform_device(dev);
Mark Brown51737472009-06-22 13:16:51 +01001263 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1264 struct snd_soc_card *card = socdev->card;
1265
1266 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001267 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001268
1269 /* Flush out pmdown_time work - we actually do want to run it
1270 * now, we're shutting down so no imminent restart. */
1271 run_delayed_work(&card->delayed_work);
1272
1273 snd_soc_dapm_shutdown(socdev);
Mark Brown416356f2009-06-30 19:05:15 +01001274
1275 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001276}
1277
Alexey Dobriyan47145212009-12-14 18:00:08 -08001278static const struct dev_pm_ops soc_pm_ops = {
Mark Brown416356f2009-06-30 19:05:15 +01001279 .suspend = soc_suspend,
1280 .resume = soc_resume,
1281 .poweroff = soc_poweroff,
1282};
1283
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001284/* ASoC platform driver */
1285static struct platform_driver soc_driver = {
1286 .driver = {
1287 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001288 .owner = THIS_MODULE,
Mark Brown416356f2009-06-30 19:05:15 +01001289 .pm = &soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001290 },
1291 .probe = soc_probe,
1292 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001293};
1294
1295/* create a new pcm */
1296static int soc_new_pcm(struct snd_soc_device *socdev,
1297 struct snd_soc_dai_link *dai_link, int num)
1298{
Mark Brown87689d52008-12-02 16:01:14 +00001299 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001300 struct snd_soc_codec *codec = card->codec;
Mark Brown87689d52008-12-02 16:01:14 +00001301 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001302 struct snd_soc_dai *codec_dai = dai_link->codec_dai;
1303 struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001304 struct snd_soc_pcm_runtime *rtd;
1305 struct snd_pcm *pcm;
1306 char new_name[64];
1307 int ret = 0, playback = 0, capture = 0;
1308
1309 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
1310 if (rtd == NULL)
1311 return -ENOMEM;
Liam Girdwoodcb666e52007-02-02 17:13:49 +01001312
1313 rtd->dai = dai_link;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001314 rtd->socdev = socdev;
Mark Brown6627a652009-01-23 22:55:23 +00001315 codec_dai->codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001316
1317 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00001318 snprintf(new_name, sizeof(new_name), "%s %s-%d",
1319 dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001320
1321 if (codec_dai->playback.channels_min)
1322 playback = 1;
1323 if (codec_dai->capture.channels_min)
1324 capture = 1;
1325
1326 ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
1327 capture, &pcm);
1328 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001329 printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
1330 codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001331 kfree(rtd);
1332 return ret;
1333 }
1334
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001335 dai_link->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001336 pcm->private_data = rtd;
Mark Brown87689d52008-12-02 16:01:14 +00001337 soc_pcm_ops.mmap = platform->pcm_ops->mmap;
1338 soc_pcm_ops.pointer = platform->pcm_ops->pointer;
1339 soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
1340 soc_pcm_ops.copy = platform->pcm_ops->copy;
1341 soc_pcm_ops.silence = platform->pcm_ops->silence;
1342 soc_pcm_ops.ack = platform->pcm_ops->ack;
1343 soc_pcm_ops.page = platform->pcm_ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001344
1345 if (playback)
1346 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
1347
1348 if (capture)
1349 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
1350
Mark Brown87689d52008-12-02 16:01:14 +00001351 ret = platform->pcm_new(codec->card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001352 if (ret < 0) {
1353 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
1354 kfree(rtd);
1355 return ret;
1356 }
1357
Mark Brown87689d52008-12-02 16:01:14 +00001358 pcm->private_free = platform->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001359 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
1360 cpu_dai->name);
1361 return ret;
1362}
1363
Mark Brown096e49d2009-07-05 15:12:22 +01001364/**
1365 * snd_soc_codec_volatile_register: Report if a register is volatile.
1366 *
1367 * @codec: CODEC to query.
1368 * @reg: Register to query.
1369 *
1370 * Boolean function indiciating if a CODEC register is volatile.
1371 */
1372int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
1373{
1374 if (codec->volatile_register)
1375 return codec->volatile_register(reg);
1376 else
1377 return 0;
1378}
1379EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1380
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001381/**
1382 * snd_soc_new_ac97_codec - initailise AC97 device
1383 * @codec: audio codec
1384 * @ops: AC97 bus operations
1385 * @num: AC97 codec number
1386 *
1387 * Initialises AC97 codec resources for use by ad-hoc devices only.
1388 */
1389int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1390 struct snd_ac97_bus_ops *ops, int num)
1391{
1392 mutex_lock(&codec->mutex);
1393
1394 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1395 if (codec->ac97 == NULL) {
1396 mutex_unlock(&codec->mutex);
1397 return -ENOMEM;
1398 }
1399
1400 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1401 if (codec->ac97->bus == NULL) {
1402 kfree(codec->ac97);
1403 codec->ac97 = NULL;
1404 mutex_unlock(&codec->mutex);
1405 return -ENOMEM;
1406 }
1407
1408 codec->ac97->bus->ops = ops;
1409 codec->ac97->num = num;
Mark Brown27186252010-01-28 12:36:29 +00001410 codec->dev = &codec->ac97->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001411 mutex_unlock(&codec->mutex);
1412 return 0;
1413}
1414EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1415
1416/**
1417 * snd_soc_free_ac97_codec - free AC97 codec device
1418 * @codec: audio codec
1419 *
1420 * Frees AC97 codec device resources.
1421 */
1422void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1423{
1424 mutex_lock(&codec->mutex);
1425 kfree(codec->ac97->bus);
1426 kfree(codec->ac97);
1427 codec->ac97 = NULL;
1428 mutex_unlock(&codec->mutex);
1429}
1430EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1431
1432/**
1433 * snd_soc_update_bits - update codec register bits
1434 * @codec: audio codec
1435 * @reg: codec register
1436 * @mask: register mask
1437 * @value: new value
1438 *
1439 * Writes new register value.
1440 *
1441 * Returns 1 for change else 0.
1442 */
1443int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001444 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001445{
1446 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001447 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001448
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001449 old = snd_soc_read(codec, reg);
1450 new = (old & ~mask) | value;
1451 change = old != new;
1452 if (change)
1453 snd_soc_write(codec, reg, new);
1454
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001455 return change;
1456}
1457EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1458
1459/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001460 * snd_soc_update_bits_locked - update codec register bits
1461 * @codec: audio codec
1462 * @reg: codec register
1463 * @mask: register mask
1464 * @value: new value
1465 *
1466 * Writes new register value, and takes the codec mutex.
1467 *
1468 * Returns 1 for change else 0.
1469 */
Mark Browndd1b3d52009-12-04 14:22:03 +00001470int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
1471 unsigned short reg, unsigned int mask,
1472 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001473{
1474 int change;
1475
1476 mutex_lock(&codec->mutex);
1477 change = snd_soc_update_bits(codec, reg, mask, value);
1478 mutex_unlock(&codec->mutex);
1479
1480 return change;
1481}
Mark Browndd1b3d52009-12-04 14:22:03 +00001482EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001483
1484/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001485 * snd_soc_test_bits - test register for change
1486 * @codec: audio codec
1487 * @reg: codec register
1488 * @mask: register mask
1489 * @value: new value
1490 *
1491 * Tests a register with a new value and checks if the new value is
1492 * different from the old value.
1493 *
1494 * Returns 1 for change else 0.
1495 */
1496int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001497 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001498{
1499 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001500 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001501
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001502 old = snd_soc_read(codec, reg);
1503 new = (old & ~mask) | value;
1504 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001505
1506 return change;
1507}
1508EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1509
1510/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001511 * snd_soc_new_pcms - create new sound card and pcms
1512 * @socdev: the SoC audio device
Mark Brownac11a2b2009-01-01 12:18:17 +00001513 * @idx: ALSA card index
1514 * @xid: card identification
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001515 *
1516 * Create a new sound card based upon the codec and interface pcms.
1517 *
1518 * Returns 0 for success, else error.
1519 */
Liam Girdwoodbc7320c2007-02-01 12:26:07 +01001520int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001521{
Mark Brown87506542008-11-18 20:50:34 +00001522 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001523 struct snd_soc_codec *codec = card->codec;
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001524 int ret, i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001525
1526 mutex_lock(&codec->mutex);
1527
1528 /* register a sound card */
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001529 ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
1530 if (ret < 0) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001531 printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
1532 codec->name);
1533 mutex_unlock(&codec->mutex);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001534 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001535 }
1536
Mark Brown452c5ea2009-05-17 21:41:23 +01001537 codec->socdev = socdev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001538 codec->card->dev = socdev->dev;
1539 codec->card->private_data = codec;
1540 strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
1541
1542 /* create the pcms */
Mark Brown87506542008-11-18 20:50:34 +00001543 for (i = 0; i < card->num_links; i++) {
1544 ret = soc_new_pcm(socdev, &card->dai_link[i], i);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001545 if (ret < 0) {
1546 printk(KERN_ERR "asoc: can't create pcm %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001547 card->dai_link[i].stream_name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001548 mutex_unlock(&codec->mutex);
1549 return ret;
1550 }
Graham Gowerfb48e3c2010-03-25 10:52:12 +10301551 /* Check for codec->ac97 to handle the ac97.c fun */
1552 if (card->dai_link[i].codec_dai->ac97_control && codec->ac97) {
Barry Songf7732052009-11-12 12:01:47 +08001553 snd_ac97_dev_add_pdata(codec->ac97,
1554 card->dai_link[i].cpu_dai->ac97_pdata);
1555 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001556 }
1557
1558 mutex_unlock(&codec->mutex);
1559 return ret;
1560}
1561EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
1562
1563/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001564 * snd_soc_free_pcms - free sound card and pcms
1565 * @socdev: the SoC audio device
1566 *
1567 * Frees sound card and pcms associated with the socdev.
1568 * Also unregister the codec if it is an AC97 device.
1569 */
1570void snd_soc_free_pcms(struct snd_soc_device *socdev)
1571{
Mark Brown6627a652009-01-23 22:55:23 +00001572 struct snd_soc_codec *codec = socdev->card->codec;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001573#ifdef CONFIG_SND_SOC_AC97_BUS
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001574 struct snd_soc_dai *codec_dai;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001575 int i;
1576#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001577
1578 mutex_lock(&codec->mutex);
Mark Brown6627a652009-01-23 22:55:23 +00001579 soc_cleanup_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001580#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown3ff3f642008-05-19 12:32:25 +02001581 for (i = 0; i < codec->num_dai; i++) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001582 codec_dai = &codec->dai[i];
Atsushi Nemotod2314e02009-03-16 23:26:20 +09001583 if (codec_dai->ac97_control && codec->ac97 &&
1584 strcmp(codec->name, "AC97") != 0) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001585 soc_ac97_dev_unregister(codec);
1586 goto free_card;
1587 }
1588 }
1589free_card:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001590#endif
1591
1592 if (codec->card)
1593 snd_card_free(codec->card);
1594 device_remove_file(socdev->dev, &dev_attr_codec_reg);
1595 mutex_unlock(&codec->mutex);
1596}
1597EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
1598
1599/**
1600 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1601 * @substream: the pcm substream
1602 * @hw: the hardware parameters
1603 *
1604 * Sets the substream runtime hardware parameters.
1605 */
1606int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1607 const struct snd_pcm_hardware *hw)
1608{
1609 struct snd_pcm_runtime *runtime = substream->runtime;
1610 runtime->hw.info = hw->info;
1611 runtime->hw.formats = hw->formats;
1612 runtime->hw.period_bytes_min = hw->period_bytes_min;
1613 runtime->hw.period_bytes_max = hw->period_bytes_max;
1614 runtime->hw.periods_min = hw->periods_min;
1615 runtime->hw.periods_max = hw->periods_max;
1616 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1617 runtime->hw.fifo_size = hw->fifo_size;
1618 return 0;
1619}
1620EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1621
1622/**
1623 * snd_soc_cnew - create new control
1624 * @_template: control template
1625 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001626 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001627 *
1628 * Create a new mixer control from a template control.
1629 *
1630 * Returns 0 for success, else error.
1631 */
1632struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
1633 void *data, char *long_name)
1634{
1635 struct snd_kcontrol_new template;
1636
1637 memcpy(&template, _template, sizeof(template));
1638 if (long_name)
1639 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001640 template.index = 0;
1641
1642 return snd_ctl_new1(&template, data);
1643}
1644EXPORT_SYMBOL_GPL(snd_soc_cnew);
1645
1646/**
Ian Molton3e8e1952009-01-09 00:23:21 +00001647 * snd_soc_add_controls - add an array of controls to a codec.
1648 * Convienience function to add a list of controls. Many codecs were
1649 * duplicating this code.
1650 *
1651 * @codec: codec to add controls to
1652 * @controls: array of controls to add
1653 * @num_controls: number of elements in the array
1654 *
1655 * Return 0 for success, else error.
1656 */
1657int snd_soc_add_controls(struct snd_soc_codec *codec,
1658 const struct snd_kcontrol_new *controls, int num_controls)
1659{
1660 struct snd_card *card = codec->card;
1661 int err, i;
1662
1663 for (i = 0; i < num_controls; i++) {
1664 const struct snd_kcontrol_new *control = &controls[i];
1665 err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
1666 if (err < 0) {
1667 dev_err(codec->dev, "%s: Failed to add %s\n",
1668 codec->name, control->name);
1669 return err;
1670 }
1671 }
1672
1673 return 0;
1674}
1675EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1676
1677/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001678 * snd_soc_info_enum_double - enumerated double mixer info callback
1679 * @kcontrol: mixer control
1680 * @uinfo: control element information
1681 *
1682 * Callback to provide information about a double enumerated
1683 * mixer control.
1684 *
1685 * Returns 0 for success.
1686 */
1687int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
1688 struct snd_ctl_elem_info *uinfo)
1689{
1690 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1691
1692 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1693 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001694 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001695
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001696 if (uinfo->value.enumerated.item > e->max - 1)
1697 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001698 strcpy(uinfo->value.enumerated.name,
1699 e->texts[uinfo->value.enumerated.item]);
1700 return 0;
1701}
1702EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
1703
1704/**
1705 * snd_soc_get_enum_double - enumerated double mixer get callback
1706 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001707 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001708 *
1709 * Callback to get the value of a double enumerated mixer.
1710 *
1711 * Returns 0 for success.
1712 */
1713int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
1714 struct snd_ctl_elem_value *ucontrol)
1715{
1716 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1717 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001718 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001719
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001720 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001721 ;
1722 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02001723 ucontrol->value.enumerated.item[0]
1724 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001725 if (e->shift_l != e->shift_r)
1726 ucontrol->value.enumerated.item[1] =
1727 (val >> e->shift_r) & (bitmask - 1);
1728
1729 return 0;
1730}
1731EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
1732
1733/**
1734 * snd_soc_put_enum_double - enumerated double mixer put callback
1735 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001736 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001737 *
1738 * Callback to set the value of a double enumerated mixer.
1739 *
1740 * Returns 0 for success.
1741 */
1742int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
1743 struct snd_ctl_elem_value *ucontrol)
1744{
1745 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1746 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001747 unsigned int val;
1748 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001749
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001750 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001751 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001752 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001753 return -EINVAL;
1754 val = ucontrol->value.enumerated.item[0] << e->shift_l;
1755 mask = (bitmask - 1) << e->shift_l;
1756 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001757 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001758 return -EINVAL;
1759 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1760 mask |= (bitmask - 1) << e->shift_r;
1761 }
1762
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001763 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001764}
1765EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
1766
1767/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001768 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1769 * @kcontrol: mixer control
1770 * @ucontrol: control element information
1771 *
1772 * Callback to get the value of a double semi enumerated mixer.
1773 *
1774 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1775 * used for handling bitfield coded enumeration for example.
1776 *
1777 * Returns 0 for success.
1778 */
1779int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
1780 struct snd_ctl_elem_value *ucontrol)
1781{
1782 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001783 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001784 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001785
1786 reg_val = snd_soc_read(codec, e->reg);
1787 val = (reg_val >> e->shift_l) & e->mask;
1788 for (mux = 0; mux < e->max; mux++) {
1789 if (val == e->values[mux])
1790 break;
1791 }
1792 ucontrol->value.enumerated.item[0] = mux;
1793 if (e->shift_l != e->shift_r) {
1794 val = (reg_val >> e->shift_r) & e->mask;
1795 for (mux = 0; mux < e->max; mux++) {
1796 if (val == e->values[mux])
1797 break;
1798 }
1799 ucontrol->value.enumerated.item[1] = mux;
1800 }
1801
1802 return 0;
1803}
1804EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
1805
1806/**
1807 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1808 * @kcontrol: mixer control
1809 * @ucontrol: control element information
1810 *
1811 * Callback to set the value of a double semi enumerated mixer.
1812 *
1813 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1814 * used for handling bitfield coded enumeration for example.
1815 *
1816 * Returns 0 for success.
1817 */
1818int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
1819 struct snd_ctl_elem_value *ucontrol)
1820{
1821 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001822 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001823 unsigned int val;
1824 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001825
1826 if (ucontrol->value.enumerated.item[0] > e->max - 1)
1827 return -EINVAL;
1828 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1829 mask = e->mask << e->shift_l;
1830 if (e->shift_l != e->shift_r) {
1831 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1832 return -EINVAL;
1833 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1834 mask |= e->mask << e->shift_r;
1835 }
1836
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001837 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001838}
1839EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
1840
1841/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001842 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1843 * @kcontrol: mixer control
1844 * @uinfo: control element information
1845 *
1846 * Callback to provide information about an external enumerated
1847 * single mixer.
1848 *
1849 * Returns 0 for success.
1850 */
1851int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
1852 struct snd_ctl_elem_info *uinfo)
1853{
1854 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1855
1856 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1857 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001858 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001859
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001860 if (uinfo->value.enumerated.item > e->max - 1)
1861 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001862 strcpy(uinfo->value.enumerated.name,
1863 e->texts[uinfo->value.enumerated.item]);
1864 return 0;
1865}
1866EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
1867
1868/**
1869 * snd_soc_info_volsw_ext - external single mixer info callback
1870 * @kcontrol: mixer control
1871 * @uinfo: control element information
1872 *
1873 * Callback to provide information about a single external mixer control.
1874 *
1875 * Returns 0 for success.
1876 */
1877int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
1878 struct snd_ctl_elem_info *uinfo)
1879{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001880 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001881
Mark Brownfd5dfad2009-04-15 21:37:46 +01001882 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001883 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1884 else
1885 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1886
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001887 uinfo->count = 1;
1888 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001889 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001890 return 0;
1891}
1892EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
1893
1894/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001895 * snd_soc_info_volsw - single mixer info callback
1896 * @kcontrol: mixer control
1897 * @uinfo: control element information
1898 *
1899 * Callback to provide information about a single mixer control.
1900 *
1901 * Returns 0 for success.
1902 */
1903int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
1904 struct snd_ctl_elem_info *uinfo)
1905{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001906 struct soc_mixer_control *mc =
1907 (struct soc_mixer_control *)kcontrol->private_value;
1908 int max = mc->max;
Mark Brown762b8df2008-10-30 12:37:08 +00001909 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001910 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001911
Mark Brownfd5dfad2009-04-15 21:37:46 +01001912 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001913 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1914 else
1915 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1916
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001917 uinfo->count = shift == rshift ? 1 : 2;
1918 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001919 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001920 return 0;
1921}
1922EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
1923
1924/**
1925 * snd_soc_get_volsw - single mixer get callback
1926 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001927 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001928 *
1929 * Callback to get the value of a single mixer control.
1930 *
1931 * Returns 0 for success.
1932 */
1933int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
1934 struct snd_ctl_elem_value *ucontrol)
1935{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001936 struct soc_mixer_control *mc =
1937 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001938 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001939 unsigned int reg = mc->reg;
1940 unsigned int shift = mc->shift;
1941 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001942 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001943 unsigned int mask = (1 << fls(max)) - 1;
1944 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001945
1946 ucontrol->value.integer.value[0] =
1947 (snd_soc_read(codec, reg) >> shift) & mask;
1948 if (shift != rshift)
1949 ucontrol->value.integer.value[1] =
1950 (snd_soc_read(codec, reg) >> rshift) & mask;
1951 if (invert) {
1952 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001953 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001954 if (shift != rshift)
1955 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001956 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001957 }
1958
1959 return 0;
1960}
1961EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
1962
1963/**
1964 * snd_soc_put_volsw - single mixer put callback
1965 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001966 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001967 *
1968 * Callback to set the value of a single mixer control.
1969 *
1970 * Returns 0 for success.
1971 */
1972int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
1973 struct snd_ctl_elem_value *ucontrol)
1974{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001975 struct soc_mixer_control *mc =
1976 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001977 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001978 unsigned int reg = mc->reg;
1979 unsigned int shift = mc->shift;
1980 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001981 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001982 unsigned int mask = (1 << fls(max)) - 1;
1983 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001984 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001985
1986 val = (ucontrol->value.integer.value[0] & mask);
1987 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001988 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001989 val_mask = mask << shift;
1990 val = val << shift;
1991 if (shift != rshift) {
1992 val2 = (ucontrol->value.integer.value[1] & mask);
1993 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001994 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001995 val_mask |= mask << rshift;
1996 val |= val2 << rshift;
1997 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001998 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001999}
2000EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2001
2002/**
2003 * snd_soc_info_volsw_2r - double mixer info callback
2004 * @kcontrol: mixer control
2005 * @uinfo: control element information
2006 *
2007 * Callback to provide information about a double mixer control that
2008 * spans 2 codec registers.
2009 *
2010 * Returns 0 for success.
2011 */
2012int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2013 struct snd_ctl_elem_info *uinfo)
2014{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002015 struct soc_mixer_control *mc =
2016 (struct soc_mixer_control *)kcontrol->private_value;
2017 int max = mc->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002018
Mark Brownfd5dfad2009-04-15 21:37:46 +01002019 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002020 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2021 else
2022 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2023
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002024 uinfo->count = 2;
2025 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002026 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002027 return 0;
2028}
2029EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2030
2031/**
2032 * snd_soc_get_volsw_2r - double mixer get callback
2033 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002034 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002035 *
2036 * Callback to get the value of a double mixer control that spans 2 registers.
2037 *
2038 * Returns 0 for success.
2039 */
2040int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2041 struct snd_ctl_elem_value *ucontrol)
2042{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002043 struct soc_mixer_control *mc =
2044 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002045 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002046 unsigned int reg = mc->reg;
2047 unsigned int reg2 = mc->rreg;
2048 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002049 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002050 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002051 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002052
2053 ucontrol->value.integer.value[0] =
2054 (snd_soc_read(codec, reg) >> shift) & mask;
2055 ucontrol->value.integer.value[1] =
2056 (snd_soc_read(codec, reg2) >> shift) & mask;
2057 if (invert) {
2058 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002059 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002060 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002061 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002062 }
2063
2064 return 0;
2065}
2066EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2067
2068/**
2069 * snd_soc_put_volsw_2r - double mixer set callback
2070 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002071 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002072 *
2073 * Callback to set the value of a double mixer control that spans 2 registers.
2074 *
2075 * Returns 0 for success.
2076 */
2077int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2078 struct snd_ctl_elem_value *ucontrol)
2079{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002080 struct soc_mixer_control *mc =
2081 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002082 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002083 unsigned int reg = mc->reg;
2084 unsigned int reg2 = mc->rreg;
2085 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002086 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002087 unsigned int mask = (1 << fls(max)) - 1;
2088 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002089 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002090 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002091
2092 val_mask = mask << shift;
2093 val = (ucontrol->value.integer.value[0] & mask);
2094 val2 = (ucontrol->value.integer.value[1] & mask);
2095
2096 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002097 val = max - val;
2098 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002099 }
2100
2101 val = val << shift;
2102 val2 = val2 << shift;
2103
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002104 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002105 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002106 return err;
2107
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002108 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002109 return err;
2110}
2111EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2112
Mark Browne13ac2e2008-05-28 17:58:05 +01002113/**
2114 * snd_soc_info_volsw_s8 - signed mixer info callback
2115 * @kcontrol: mixer control
2116 * @uinfo: control element information
2117 *
2118 * Callback to provide information about a signed mixer control.
2119 *
2120 * Returns 0 for success.
2121 */
2122int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2123 struct snd_ctl_elem_info *uinfo)
2124{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002125 struct soc_mixer_control *mc =
2126 (struct soc_mixer_control *)kcontrol->private_value;
2127 int max = mc->max;
2128 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002129
2130 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2131 uinfo->count = 2;
2132 uinfo->value.integer.min = 0;
2133 uinfo->value.integer.max = max-min;
2134 return 0;
2135}
2136EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2137
2138/**
2139 * snd_soc_get_volsw_s8 - signed mixer get callback
2140 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002141 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002142 *
2143 * Callback to get the value of a signed mixer control.
2144 *
2145 * Returns 0 for success.
2146 */
2147int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2148 struct snd_ctl_elem_value *ucontrol)
2149{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002150 struct soc_mixer_control *mc =
2151 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002152 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002153 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002154 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002155 int val = snd_soc_read(codec, reg);
2156
2157 ucontrol->value.integer.value[0] =
2158 ((signed char)(val & 0xff))-min;
2159 ucontrol->value.integer.value[1] =
2160 ((signed char)((val >> 8) & 0xff))-min;
2161 return 0;
2162}
2163EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2164
2165/**
2166 * snd_soc_put_volsw_sgn - signed mixer put callback
2167 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002168 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002169 *
2170 * Callback to set the value of a signed mixer control.
2171 *
2172 * Returns 0 for success.
2173 */
2174int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2175 struct snd_ctl_elem_value *ucontrol)
2176{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002177 struct soc_mixer_control *mc =
2178 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002179 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002180 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002181 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002182 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002183
2184 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2185 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2186
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002187 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002188}
2189EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2190
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002191/**
2192 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2193 * @dai: DAI
2194 * @clk_id: DAI specific clock ID
2195 * @freq: new clock frequency in Hz
2196 * @dir: new clock direction - input/output.
2197 *
2198 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2199 */
2200int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2201 unsigned int freq, int dir)
2202{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002203 if (dai->ops && dai->ops->set_sysclk)
Eric Miao6335d052009-03-03 09:41:00 +08002204 return dai->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002205 else
2206 return -EINVAL;
2207}
2208EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2209
2210/**
2211 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2212 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002213 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002214 * @div: new clock divisor.
2215 *
2216 * Configures the clock dividers. This is used to derive the best DAI bit and
2217 * frame clocks from the system or master clock. It's best to set the DAI bit
2218 * and frame clocks as low as possible to save system power.
2219 */
2220int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2221 int div_id, int div)
2222{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002223 if (dai->ops && dai->ops->set_clkdiv)
Eric Miao6335d052009-03-03 09:41:00 +08002224 return dai->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002225 else
2226 return -EINVAL;
2227}
2228EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2229
2230/**
2231 * snd_soc_dai_set_pll - configure DAI PLL.
2232 * @dai: DAI
2233 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002234 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002235 * @freq_in: PLL input clock frequency in Hz
2236 * @freq_out: requested PLL output clock frequency in Hz
2237 *
2238 * Configures and enables PLL to generate output clock based on input clock.
2239 */
Mark Brown85488032009-09-05 18:52:16 +01002240int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2241 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002242{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002243 if (dai->ops && dai->ops->set_pll)
Mark Brown85488032009-09-05 18:52:16 +01002244 return dai->ops->set_pll(dai, pll_id, source,
2245 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002246 else
2247 return -EINVAL;
2248}
2249EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2250
2251/**
2252 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2253 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002254 * @fmt: SND_SOC_DAIFMT_ format value.
2255 *
2256 * Configures the DAI hardware format and clocking.
2257 */
2258int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2259{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002260 if (dai->ops && dai->ops->set_fmt)
Eric Miao6335d052009-03-03 09:41:00 +08002261 return dai->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002262 else
2263 return -EINVAL;
2264}
2265EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2266
2267/**
2268 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2269 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002270 * @tx_mask: bitmask representing active TX slots.
2271 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002272 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002273 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002274 *
2275 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2276 * specific.
2277 */
2278int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002279 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002280{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002281 if (dai->ops && dai->ops->set_tdm_slot)
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002282 return dai->ops->set_tdm_slot(dai, tx_mask, rx_mask,
2283 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002284 else
2285 return -EINVAL;
2286}
2287EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2288
2289/**
Barry Song472df3c2009-09-12 01:16:29 +08002290 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2291 * @dai: DAI
2292 * @tx_num: how many TX channels
2293 * @tx_slot: pointer to an array which imply the TX slot number channel
2294 * 0~num-1 uses
2295 * @rx_num: how many RX channels
2296 * @rx_slot: pointer to an array which imply the RX slot number channel
2297 * 0~num-1 uses
2298 *
2299 * configure the relationship between channel number and TDM slot number.
2300 */
2301int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2302 unsigned int tx_num, unsigned int *tx_slot,
2303 unsigned int rx_num, unsigned int *rx_slot)
2304{
2305 if (dai->ops && dai->ops->set_channel_map)
2306 return dai->ops->set_channel_map(dai, tx_num, tx_slot,
2307 rx_num, rx_slot);
2308 else
2309 return -EINVAL;
2310}
2311EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2312
2313/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002314 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2315 * @dai: DAI
2316 * @tristate: tristate enable
2317 *
2318 * Tristates the DAI so that others can use it.
2319 */
2320int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2321{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002322 if (dai->ops && dai->ops->set_tristate)
Eric Miao6335d052009-03-03 09:41:00 +08002323 return dai->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002324 else
2325 return -EINVAL;
2326}
2327EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2328
2329/**
2330 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2331 * @dai: DAI
2332 * @mute: mute enable
2333 *
2334 * Mutes the DAI DAC.
2335 */
2336int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2337{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002338 if (dai->ops && dai->ops->digital_mute)
Eric Miao6335d052009-03-03 09:41:00 +08002339 return dai->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002340 else
2341 return -EINVAL;
2342}
2343EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2344
Mark Brownc5af3a22008-11-28 13:29:45 +00002345/**
2346 * snd_soc_register_card - Register a card with the ASoC core
2347 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002348 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002349 *
2350 * Note that currently this is an internal only function: it will be
2351 * exposed to machine drivers after further backporting of ASoC v2
2352 * registration APIs.
2353 */
2354static int snd_soc_register_card(struct snd_soc_card *card)
2355{
2356 if (!card->name || !card->dev)
2357 return -EINVAL;
2358
2359 INIT_LIST_HEAD(&card->list);
2360 card->instantiated = 0;
2361
2362 mutex_lock(&client_mutex);
2363 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002364 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002365 mutex_unlock(&client_mutex);
2366
2367 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2368
2369 return 0;
2370}
2371
2372/**
2373 * snd_soc_unregister_card - Unregister a card with the ASoC core
2374 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002375 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002376 *
2377 * Note that currently this is an internal only function: it will be
2378 * exposed to machine drivers after further backporting of ASoC v2
2379 * registration APIs.
2380 */
2381static int snd_soc_unregister_card(struct snd_soc_card *card)
2382{
2383 mutex_lock(&client_mutex);
2384 list_del(&card->list);
2385 mutex_unlock(&client_mutex);
2386
2387 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2388
2389 return 0;
2390}
2391
Mark Brown91151712008-11-30 23:31:24 +00002392/**
2393 * snd_soc_register_dai - Register a DAI with the ASoC core
2394 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002395 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00002396 */
2397int snd_soc_register_dai(struct snd_soc_dai *dai)
2398{
2399 if (!dai->name)
2400 return -EINVAL;
2401
2402 /* The device should become mandatory over time */
2403 if (!dai->dev)
2404 printk(KERN_WARNING "No device for DAI %s\n", dai->name);
2405
Eric Miao6335d052009-03-03 09:41:00 +08002406 if (!dai->ops)
2407 dai->ops = &null_dai_ops;
2408
Mark Brown91151712008-11-30 23:31:24 +00002409 INIT_LIST_HEAD(&dai->list);
2410
2411 mutex_lock(&client_mutex);
2412 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002413 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00002414 mutex_unlock(&client_mutex);
2415
2416 pr_debug("Registered DAI '%s'\n", dai->name);
2417
2418 return 0;
2419}
2420EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2421
2422/**
2423 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2424 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002425 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00002426 */
2427void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2428{
2429 mutex_lock(&client_mutex);
2430 list_del(&dai->list);
2431 mutex_unlock(&client_mutex);
2432
2433 pr_debug("Unregistered DAI '%s'\n", dai->name);
2434}
2435EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2436
2437/**
2438 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2439 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002440 * @dai: Array of DAIs to register
2441 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002442 */
2443int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
2444{
2445 int i, ret;
2446
2447 for (i = 0; i < count; i++) {
2448 ret = snd_soc_register_dai(&dai[i]);
2449 if (ret != 0)
2450 goto err;
2451 }
2452
2453 return 0;
2454
2455err:
2456 for (i--; i >= 0; i--)
2457 snd_soc_unregister_dai(&dai[i]);
2458
2459 return ret;
2460}
2461EXPORT_SYMBOL_GPL(snd_soc_register_dais);
2462
2463/**
2464 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2465 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002466 * @dai: Array of DAIs to unregister
2467 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002468 */
2469void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
2470{
2471 int i;
2472
2473 for (i = 0; i < count; i++)
2474 snd_soc_unregister_dai(&dai[i]);
2475}
2476EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
2477
Mark Brown12a48a8c2008-12-03 19:40:30 +00002478/**
2479 * snd_soc_register_platform - Register a platform with the ASoC core
2480 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002481 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00002482 */
2483int snd_soc_register_platform(struct snd_soc_platform *platform)
2484{
2485 if (!platform->name)
2486 return -EINVAL;
2487
2488 INIT_LIST_HEAD(&platform->list);
2489
2490 mutex_lock(&client_mutex);
2491 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002492 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00002493 mutex_unlock(&client_mutex);
2494
2495 pr_debug("Registered platform '%s'\n", platform->name);
2496
2497 return 0;
2498}
2499EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2500
2501/**
2502 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2503 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002504 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002505 */
2506void snd_soc_unregister_platform(struct snd_soc_platform *platform)
2507{
2508 mutex_lock(&client_mutex);
2509 list_del(&platform->list);
2510 mutex_unlock(&client_mutex);
2511
2512 pr_debug("Unregistered platform '%s'\n", platform->name);
2513}
2514EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2515
Mark Brown151ab222009-05-09 16:22:58 +01002516static u64 codec_format_map[] = {
2517 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2518 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2519 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2520 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2521 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2522 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2523 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2524 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2525 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2526 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2527 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2528 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2529 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2530 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2531 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2532 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2533};
2534
2535/* Fix up the DAI formats for endianness: codecs don't actually see
2536 * the endianness of the data but we're using the CPU format
2537 * definitions which do need to include endianness so we ensure that
2538 * codec DAIs always have both big and little endian variants set.
2539 */
2540static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2541{
2542 int i;
2543
2544 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2545 if (stream->formats & codec_format_map[i])
2546 stream->formats |= codec_format_map[i];
2547}
2548
Mark Brown0d0cf002008-12-10 14:32:45 +00002549/**
2550 * snd_soc_register_codec - Register a codec with the ASoC core
2551 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002552 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002553 */
2554int snd_soc_register_codec(struct snd_soc_codec *codec)
2555{
Mark Brown151ab222009-05-09 16:22:58 +01002556 int i;
2557
Mark Brown0d0cf002008-12-10 14:32:45 +00002558 if (!codec->name)
2559 return -EINVAL;
2560
2561 /* The device should become mandatory over time */
2562 if (!codec->dev)
2563 printk(KERN_WARNING "No device for codec %s\n", codec->name);
2564
2565 INIT_LIST_HEAD(&codec->list);
2566
Mark Brown151ab222009-05-09 16:22:58 +01002567 for (i = 0; i < codec->num_dai; i++) {
2568 fixup_codec_formats(&codec->dai[i].playback);
2569 fixup_codec_formats(&codec->dai[i].capture);
2570 }
2571
Mark Brown0d0cf002008-12-10 14:32:45 +00002572 mutex_lock(&client_mutex);
2573 list_add(&codec->list, &codec_list);
2574 snd_soc_instantiate_cards();
2575 mutex_unlock(&client_mutex);
2576
2577 pr_debug("Registered codec '%s'\n", codec->name);
2578
2579 return 0;
2580}
2581EXPORT_SYMBOL_GPL(snd_soc_register_codec);
2582
2583/**
2584 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2585 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002586 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00002587 */
2588void snd_soc_unregister_codec(struct snd_soc_codec *codec)
2589{
2590 mutex_lock(&client_mutex);
2591 list_del(&codec->list);
2592 mutex_unlock(&client_mutex);
2593
2594 pr_debug("Unregistered codec '%s'\n", codec->name);
2595}
2596EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
2597
Takashi Iwaic9b3a402008-12-10 07:47:22 +01002598static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002599{
Mark Brown384c89e2008-12-03 17:34:03 +00002600#ifdef CONFIG_DEBUG_FS
2601 debugfs_root = debugfs_create_dir("asoc", NULL);
2602 if (IS_ERR(debugfs_root) || !debugfs_root) {
2603 printk(KERN_WARNING
2604 "ASoC: Failed to create debugfs directory\n");
2605 debugfs_root = NULL;
2606 }
2607#endif
2608
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002609 return platform_driver_register(&soc_driver);
2610}
2611
Mark Brown7d8c16a2008-11-30 22:11:24 +00002612static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002613{
Mark Brown384c89e2008-12-03 17:34:03 +00002614#ifdef CONFIG_DEBUG_FS
2615 debugfs_remove_recursive(debugfs_root);
2616#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02002617 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002618}
2619
2620module_init(snd_soc_init);
2621module_exit(snd_soc_exit);
2622
2623/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01002624MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002625MODULE_DESCRIPTION("ALSA SoC Core");
2626MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02002627MODULE_ALIAS("platform:soc-audio");