blob: 94b9cde26139623121780e27eedb78138c52e097 [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
133#ifdef CONFIG_DEBUG_FS
134static int codec_reg_open_file(struct inode *inode, struct file *file)
135{
136 file->private_data = inode->i_private;
137 return 0;
138}
139
140static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
141 size_t count, loff_t *ppos)
142{
143 ssize_t ret;
144 struct snd_soc_codec *codec = file->private_data;
145 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
146 if (!buf)
147 return -ENOMEM;
148 ret = soc_codec_reg_show(codec, buf);
149 if (ret >= 0)
150 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
151 kfree(buf);
152 return ret;
153}
154
155static ssize_t codec_reg_write_file(struct file *file,
156 const char __user *user_buf, size_t count, loff_t *ppos)
157{
158 char buf[32];
159 int buf_size;
160 char *start = buf;
161 unsigned long reg, value;
162 int step = 1;
163 struct snd_soc_codec *codec = file->private_data;
164
165 buf_size = min(count, (sizeof(buf)-1));
166 if (copy_from_user(buf, user_buf, buf_size))
167 return -EFAULT;
168 buf[buf_size] = 0;
169
170 if (codec->reg_cache_step)
171 step = codec->reg_cache_step;
172
173 while (*start == ' ')
174 start++;
175 reg = simple_strtoul(start, &start, 16);
176 if ((reg >= codec->reg_cache_size) || (reg % step))
177 return -EINVAL;
178 while (*start == ' ')
179 start++;
180 if (strict_strtoul(start, 16, &value))
181 return -EINVAL;
182 codec->write(codec, reg, value);
183 return buf_size;
184}
185
186static const struct file_operations codec_reg_fops = {
187 .open = codec_reg_open_file,
188 .read = codec_reg_read_file,
189 .write = codec_reg_write_file,
190};
191
192static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
193{
194 char codec_root[128];
195
196 if (codec->dev)
197 snprintf(codec_root, sizeof(codec_root),
198 "%s.%s", codec->name, dev_name(codec->dev));
199 else
200 snprintf(codec_root, sizeof(codec_root),
201 "%s", codec->name);
202
203 codec->debugfs_codec_root = debugfs_create_dir(codec_root,
204 debugfs_root);
205 if (!codec->debugfs_codec_root) {
206 printk(KERN_WARNING
207 "ASoC: Failed to create codec debugfs directory\n");
208 return;
209 }
210
211 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
212 codec->debugfs_codec_root,
213 codec, &codec_reg_fops);
214 if (!codec->debugfs_reg)
215 printk(KERN_WARNING
216 "ASoC: Failed to create codec register debugfs file\n");
217
218 codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0744,
219 codec->debugfs_codec_root,
220 &codec->pop_time);
221 if (!codec->debugfs_pop_time)
222 printk(KERN_WARNING
223 "Failed to create pop time debugfs file\n");
224
225 codec->debugfs_dapm = debugfs_create_dir("dapm",
226 codec->debugfs_codec_root);
227 if (!codec->debugfs_dapm)
228 printk(KERN_WARNING
229 "Failed to create DAPM debugfs directory\n");
230
231 snd_soc_dapm_debugfs_init(codec);
232}
233
234static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
235{
236 debugfs_remove_recursive(codec->debugfs_codec_root);
237}
238
239#else
240
241static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
242{
243}
244
245static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
246{
247}
248#endif
249
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200250#ifdef CONFIG_SND_SOC_AC97_BUS
251/* unregister ac97 codec */
252static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
253{
254 if (codec->ac97->dev.bus)
255 device_unregister(&codec->ac97->dev);
256 return 0;
257}
258
259/* stop no dev release warning */
260static void soc_ac97_device_release(struct device *dev){}
261
262/* register ac97 codec to bus */
263static int soc_ac97_dev_register(struct snd_soc_codec *codec)
264{
265 int err;
266
267 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100268 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200269 codec->ac97->dev.release = soc_ac97_device_release;
270
Kay Sieversbb072bf2008-11-02 03:50:35 +0100271 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
272 codec->card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200273 err = device_register(&codec->ac97->dev);
274 if (err < 0) {
275 snd_printk(KERN_ERR "Can't register ac97 bus\n");
276 codec->ac97->dev.bus = NULL;
277 return err;
278 }
279 return 0;
280}
281#endif
282
Mark Brown06f409d2009-04-07 18:10:13 +0100283static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
284{
285 struct snd_soc_pcm_runtime *rtd = substream->private_data;
286 struct snd_soc_device *socdev = rtd->socdev;
287 struct snd_soc_card *card = socdev->card;
288 struct snd_soc_dai_link *machine = rtd->dai;
289 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
290 struct snd_soc_dai *codec_dai = machine->codec_dai;
291 int ret;
292
293 if (codec_dai->symmetric_rates || cpu_dai->symmetric_rates ||
294 machine->symmetric_rates) {
295 dev_dbg(card->dev, "Symmetry forces %dHz rate\n",
296 machine->rate);
297
298 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
299 SNDRV_PCM_HW_PARAM_RATE,
300 machine->rate,
301 machine->rate);
302 if (ret < 0) {
303 dev_err(card->dev,
304 "Unable to apply rate symmetry constraint: %d\n", ret);
305 return ret;
306 }
307 }
308
309 return 0;
310}
311
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200312/*
313 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
314 * then initialized and any private data can be allocated. This also calls
315 * startup for the cpu DAI, platform, machine and codec DAI.
316 */
317static int soc_pcm_open(struct snd_pcm_substream *substream)
318{
319 struct snd_soc_pcm_runtime *rtd = substream->private_data;
320 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000321 struct snd_soc_card *card = socdev->card;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200322 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100323 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000324 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100325 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
326 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200327 int ret = 0;
328
329 mutex_lock(&pcm_mutex);
330
331 /* startup the audio subsystem */
Eric Miao6335d052009-03-03 09:41:00 +0800332 if (cpu_dai->ops->startup) {
333 ret = cpu_dai->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200334 if (ret < 0) {
335 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100336 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200337 goto out;
338 }
339 }
340
341 if (platform->pcm_ops->open) {
342 ret = platform->pcm_ops->open(substream);
343 if (ret < 0) {
344 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
345 goto platform_err;
346 }
347 }
348
Eric Miao6335d052009-03-03 09:41:00 +0800349 if (codec_dai->ops->startup) {
350 ret = codec_dai->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100351 if (ret < 0) {
352 printk(KERN_ERR "asoc: can't open codec %s\n",
353 codec_dai->name);
354 goto codec_dai_err;
355 }
356 }
357
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200358 if (machine->ops && machine->ops->startup) {
359 ret = machine->ops->startup(substream);
360 if (ret < 0) {
361 printk(KERN_ERR "asoc: %s startup failed\n", machine->name);
362 goto machine_err;
363 }
364 }
365
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200366 /* Check that the codec and cpu DAI's are compatible */
367 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
368 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200369 max(codec_dai->playback.rate_min,
370 cpu_dai->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200371 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200372 min(codec_dai->playback.rate_max,
373 cpu_dai->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200374 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100375 max(codec_dai->playback.channels_min,
376 cpu_dai->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200377 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100378 min(codec_dai->playback.channels_max,
379 cpu_dai->playback.channels_max);
380 runtime->hw.formats =
381 codec_dai->playback.formats & cpu_dai->playback.formats;
382 runtime->hw.rates =
383 codec_dai->playback.rates & cpu_dai->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200384 } else {
385 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200386 max(codec_dai->capture.rate_min,
387 cpu_dai->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200388 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200389 min(codec_dai->capture.rate_max,
390 cpu_dai->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200391 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100392 max(codec_dai->capture.channels_min,
393 cpu_dai->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200394 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100395 min(codec_dai->capture.channels_max,
396 cpu_dai->capture.channels_max);
397 runtime->hw.formats =
398 codec_dai->capture.formats & cpu_dai->capture.formats;
399 runtime->hw.rates =
400 codec_dai->capture.rates & cpu_dai->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200401 }
402
403 snd_pcm_limit_hw_rates(runtime);
404 if (!runtime->hw.rates) {
405 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100406 codec_dai->name, cpu_dai->name);
407 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200408 }
409 if (!runtime->hw.formats) {
410 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100411 codec_dai->name, cpu_dai->name);
412 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200413 }
414 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
415 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100416 codec_dai->name, cpu_dai->name);
417 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200418 }
419
Mark Brown06f409d2009-04-07 18:10:13 +0100420 /* Symmetry only applies if we've already got an active stream. */
421 if (cpu_dai->active || codec_dai->active) {
422 ret = soc_pcm_apply_symmetry(substream);
423 if (ret != 0)
424 goto machine_err;
425 }
426
Mark Brownf24368c2008-10-21 21:45:08 +0100427 pr_debug("asoc: %s <-> %s info:\n", codec_dai->name, cpu_dai->name);
428 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
429 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
430 runtime->hw.channels_max);
431 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
432 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200433
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200434 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100435 cpu_dai->playback.active = codec_dai->playback.active = 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200436 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100437 cpu_dai->capture.active = codec_dai->capture.active = 1;
438 cpu_dai->active = codec_dai->active = 1;
439 cpu_dai->runtime = runtime;
Mark Brown6627a652009-01-23 22:55:23 +0000440 card->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200441 mutex_unlock(&pcm_mutex);
442 return 0;
443
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100444machine_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200445 if (machine->ops && machine->ops->shutdown)
446 machine->ops->shutdown(substream);
447
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100448codec_dai_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200449 if (platform->pcm_ops->close)
450 platform->pcm_ops->close(substream);
451
452platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800453 if (cpu_dai->ops->shutdown)
454 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200455out:
456 mutex_unlock(&pcm_mutex);
457 return ret;
458}
459
460/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200461 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200462 * This is to ensure there are no pops or clicks in between any music tracks
463 * due to DAPM power cycling.
464 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100465static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200466{
Mark Brown63084192008-12-02 15:08:03 +0000467 struct snd_soc_card *card = container_of(work, struct snd_soc_card,
468 delayed_work.work);
Mark Brown6627a652009-01-23 22:55:23 +0000469 struct snd_soc_codec *codec = card->codec;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100470 struct snd_soc_dai *codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200471 int i;
472
473 mutex_lock(&pcm_mutex);
Mark Brown3ff3f642008-05-19 12:32:25 +0200474 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200475 codec_dai = &codec->dai[i];
476
Mark Brownf24368c2008-10-21 21:45:08 +0100477 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
478 codec_dai->playback.stream_name,
479 codec_dai->playback.active ? "active" : "inactive",
480 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200481
482 /* are we waiting on this codec DAI stream */
483 if (codec_dai->pop_wait == 1) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200484 codec_dai->pop_wait = 0;
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100485 snd_soc_dapm_stream_event(codec,
486 codec_dai->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200487 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200488 }
489 }
490 mutex_unlock(&pcm_mutex);
491}
492
493/*
494 * Called by ALSA when a PCM substream is closed. Private data can be
495 * freed here. The cpu DAI, codec DAI, machine and platform are also
496 * shutdown.
497 */
498static int soc_codec_close(struct snd_pcm_substream *substream)
499{
500 struct snd_soc_pcm_runtime *rtd = substream->private_data;
501 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000502 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100503 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000504 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100505 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
506 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000507 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200508
509 mutex_lock(&pcm_mutex);
510
511 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100512 cpu_dai->playback.active = codec_dai->playback.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200513 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100514 cpu_dai->capture.active = codec_dai->capture.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200515
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100516 if (codec_dai->playback.active == 0 &&
517 codec_dai->capture.active == 0) {
518 cpu_dai->active = codec_dai->active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200519 }
520 codec->active--;
521
Mark Brown6010b2d2008-09-06 18:33:24 +0100522 /* Muting the DAC suppresses artifacts caused during digital
523 * shutdown, for example from stopping clocks.
524 */
525 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
526 snd_soc_dai_digital_mute(codec_dai, 1);
527
Eric Miao6335d052009-03-03 09:41:00 +0800528 if (cpu_dai->ops->shutdown)
529 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200530
Eric Miao6335d052009-03-03 09:41:00 +0800531 if (codec_dai->ops->shutdown)
532 codec_dai->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200533
534 if (machine->ops && machine->ops->shutdown)
535 machine->ops->shutdown(substream);
536
537 if (platform->pcm_ops->close)
538 platform->pcm_ops->close(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100539 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200540
541 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
542 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100543 codec_dai->pop_wait = 1;
Mark Brown63084192008-12-02 15:08:03 +0000544 schedule_delayed_work(&card->delayed_work,
Mark Brown96dd3622010-02-12 11:05:44 +0000545 msecs_to_jiffies(card->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200546 } else {
547 /* capture streams can be powered down now */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100548 snd_soc_dapm_stream_event(codec,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100549 codec_dai->capture.stream_name,
550 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200551 }
552
553 mutex_unlock(&pcm_mutex);
554 return 0;
555}
556
557/*
558 * Called by ALSA when the PCM substream is prepared, can set format, sample
559 * rate, etc. This function is non atomic and can be called multiple times,
560 * it can refer to the runtime info.
561 */
562static int soc_pcm_prepare(struct snd_pcm_substream *substream)
563{
564 struct snd_soc_pcm_runtime *rtd = substream->private_data;
565 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000566 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100567 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000568 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100569 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
570 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000571 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200572 int ret = 0;
573
574 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100575
576 if (machine->ops && machine->ops->prepare) {
577 ret = machine->ops->prepare(substream);
578 if (ret < 0) {
579 printk(KERN_ERR "asoc: machine prepare error\n");
580 goto out;
581 }
582 }
583
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200584 if (platform->pcm_ops->prepare) {
585 ret = platform->pcm_ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200586 if (ret < 0) {
587 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200588 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200589 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200590 }
591
Eric Miao6335d052009-03-03 09:41:00 +0800592 if (codec_dai->ops->prepare) {
593 ret = codec_dai->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200594 if (ret < 0) {
595 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200596 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200597 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200598 }
599
Eric Miao6335d052009-03-03 09:41:00 +0800600 if (cpu_dai->ops->prepare) {
601 ret = cpu_dai->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100602 if (ret < 0) {
603 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
604 goto out;
605 }
606 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200607
Mark Brownd45f6212008-10-14 13:58:36 +0100608 /* cancel any delayed stream shutdown that is pending */
609 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
610 codec_dai->pop_wait) {
611 codec_dai->pop_wait = 0;
Mark Brown63084192008-12-02 15:08:03 +0000612 cancel_delayed_work(&card->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100613 }
614
Mark Brown452c5ea2009-05-17 21:41:23 +0100615 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
616 snd_soc_dapm_stream_event(codec,
617 codec_dai->playback.stream_name,
618 SND_SOC_DAPM_STREAM_START);
619 else
620 snd_soc_dapm_stream_event(codec,
621 codec_dai->capture.stream_name,
622 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100623
Mark Brown452c5ea2009-05-17 21:41:23 +0100624 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200625
626out:
627 mutex_unlock(&pcm_mutex);
628 return ret;
629}
630
631/*
632 * Called by ALSA when the hardware params are set by application. This
633 * function can also be called multiple times and can allocate buffers
634 * (using snd_pcm_lib_* ). It's non-atomic.
635 */
636static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
637 struct snd_pcm_hw_params *params)
638{
639 struct snd_soc_pcm_runtime *rtd = substream->private_data;
640 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100641 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000642 struct snd_soc_card *card = socdev->card;
643 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100644 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
645 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200646 int ret = 0;
647
648 mutex_lock(&pcm_mutex);
649
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100650 if (machine->ops && machine->ops->hw_params) {
651 ret = machine->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200652 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100653 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200654 goto out;
655 }
656 }
657
Eric Miao6335d052009-03-03 09:41:00 +0800658 if (codec_dai->ops->hw_params) {
659 ret = codec_dai->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100660 if (ret < 0) {
661 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
662 codec_dai->name);
663 goto codec_err;
664 }
665 }
666
Eric Miao6335d052009-03-03 09:41:00 +0800667 if (cpu_dai->ops->hw_params) {
668 ret = cpu_dai->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200669 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200670 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100671 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200672 goto interface_err;
673 }
674 }
675
676 if (platform->pcm_ops->hw_params) {
677 ret = platform->pcm_ops->hw_params(substream, params);
678 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200679 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200680 platform->name);
681 goto platform_err;
682 }
683 }
684
Mark Brown06f409d2009-04-07 18:10:13 +0100685 machine->rate = params_rate(params);
686
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200687out:
688 mutex_unlock(&pcm_mutex);
689 return ret;
690
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200691platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800692 if (cpu_dai->ops->hw_free)
693 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200694
695interface_err:
Eric Miao6335d052009-03-03 09:41:00 +0800696 if (codec_dai->ops->hw_free)
697 codec_dai->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100698
699codec_err:
Mark Brown3ff3f642008-05-19 12:32:25 +0200700 if (machine->ops && machine->ops->hw_free)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100701 machine->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200702
703 mutex_unlock(&pcm_mutex);
704 return ret;
705}
706
707/*
708 * Free's resources allocated by hw_params, can be called multiple times
709 */
710static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
711{
712 struct snd_soc_pcm_runtime *rtd = substream->private_data;
713 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100714 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000715 struct snd_soc_card *card = socdev->card;
716 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100717 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
718 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000719 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200720
721 mutex_lock(&pcm_mutex);
722
723 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100724 if (!codec->active)
725 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200726
727 /* free any machine hw params */
728 if (machine->ops && machine->ops->hw_free)
729 machine->ops->hw_free(substream);
730
731 /* free any DMA resources */
732 if (platform->pcm_ops->hw_free)
733 platform->pcm_ops->hw_free(substream);
734
735 /* now free hw params for the DAI's */
Eric Miao6335d052009-03-03 09:41:00 +0800736 if (codec_dai->ops->hw_free)
737 codec_dai->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200738
Eric Miao6335d052009-03-03 09:41:00 +0800739 if (cpu_dai->ops->hw_free)
740 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200741
742 mutex_unlock(&pcm_mutex);
743 return 0;
744}
745
746static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
747{
748 struct snd_soc_pcm_runtime *rtd = substream->private_data;
749 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000750 struct snd_soc_card *card= socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100751 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000752 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100753 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
754 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200755 int ret;
756
Eric Miao6335d052009-03-03 09:41:00 +0800757 if (codec_dai->ops->trigger) {
758 ret = codec_dai->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200759 if (ret < 0)
760 return ret;
761 }
762
763 if (platform->pcm_ops->trigger) {
764 ret = platform->pcm_ops->trigger(substream, cmd);
765 if (ret < 0)
766 return ret;
767 }
768
Eric Miao6335d052009-03-03 09:41:00 +0800769 if (cpu_dai->ops->trigger) {
770 ret = cpu_dai->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200771 if (ret < 0)
772 return ret;
773 }
774 return 0;
775}
776
777/* ASoC PCM operations */
778static struct snd_pcm_ops soc_pcm_ops = {
779 .open = soc_pcm_open,
780 .close = soc_codec_close,
781 .hw_params = soc_pcm_hw_params,
782 .hw_free = soc_pcm_hw_free,
783 .prepare = soc_pcm_prepare,
784 .trigger = soc_pcm_trigger,
785};
786
787#ifdef CONFIG_PM
788/* powers down audio subsystem for suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100789static int soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200790{
Mark Brown416356f2009-06-30 19:05:15 +0100791 struct platform_device *pdev = to_platform_device(dev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200792 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +0000793 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +0000794 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200795 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000796 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200797 int i;
798
Daniel Macke3509ff2009-06-03 17:44:49 +0200799 /* If the initialization of this soc device failed, there is no codec
800 * associated with it. Just bail out in this case.
801 */
802 if (!codec)
803 return 0;
804
Andy Green6ed25972008-06-13 16:24:05 +0100805 /* Due to the resume being scheduled into a workqueue we could
806 * suspend before that's finished - wait for it to complete.
807 */
808 snd_power_lock(codec->card);
809 snd_power_wait(codec->card, SNDRV_CTL_POWER_D0);
810 snd_power_unlock(codec->card);
811
812 /* we're going to block userspace touching us until resume completes */
813 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D3hot);
814
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200815 /* mute any active DAC's */
Mark Browndee89c42008-11-18 22:11:38 +0000816 for (i = 0; i < card->num_links; i++) {
817 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800818 if (dai->ops->digital_mute && dai->playback.active)
819 dai->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200820 }
821
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100822 /* suspend all pcms */
Mark Brown87506542008-11-18 20:50:34 +0000823 for (i = 0; i < card->num_links; i++)
824 snd_pcm_suspend_all(card->dai_link[i].pcm);
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100825
Mark Brown87506542008-11-18 20:50:34 +0000826 if (card->suspend_pre)
Mark Brown416356f2009-06-30 19:05:15 +0100827 card->suspend_pre(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200828
Mark Brown87506542008-11-18 20:50:34 +0000829 for (i = 0; i < card->num_links; i++) {
830 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000831 if (cpu_dai->suspend && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000832 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200833 if (platform->suspend)
Mark Brown07c84d02008-12-03 18:17:28 +0000834 platform->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200835 }
836
837 /* close any waiting streams and save state */
Mark Brown63084192008-12-02 15:08:03 +0000838 run_delayed_work(&card->delayed_work);
Mark Brown0be98982008-05-19 12:31:28 +0200839 codec->suspend_bias_level = codec->bias_level;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200840
Mark Brown3ff3f642008-05-19 12:32:25 +0200841 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200842 char *stream = codec->dai[i].playback.stream_name;
843 if (stream != NULL)
844 snd_soc_dapm_stream_event(codec, stream,
845 SND_SOC_DAPM_STREAM_SUSPEND);
846 stream = codec->dai[i].capture.stream_name;
847 if (stream != NULL)
848 snd_soc_dapm_stream_event(codec, stream,
849 SND_SOC_DAPM_STREAM_SUSPEND);
850 }
851
852 if (codec_dev->suspend)
Mark Brown416356f2009-06-30 19:05:15 +0100853 codec_dev->suspend(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200854
Mark Brown87506542008-11-18 20:50:34 +0000855 for (i = 0; i < card->num_links; i++) {
856 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000857 if (cpu_dai->suspend && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000858 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200859 }
860
Mark Brown87506542008-11-18 20:50:34 +0000861 if (card->suspend_post)
Mark Brown416356f2009-06-30 19:05:15 +0100862 card->suspend_post(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200863
864 return 0;
865}
866
Andy Green6ed25972008-06-13 16:24:05 +0100867/* deferred resume work, so resume can complete before we finished
868 * setting our codec back up, which can be very slow on I2C
869 */
870static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200871{
Mark Brown63084192008-12-02 15:08:03 +0000872 struct snd_soc_card *card = container_of(work,
873 struct snd_soc_card,
874 deferred_resume_work);
875 struct snd_soc_device *socdev = card->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000876 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200877 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000878 struct snd_soc_codec *codec = card->codec;
Andy Green6ed25972008-06-13 16:24:05 +0100879 struct platform_device *pdev = to_platform_device(socdev->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200880 int i;
881
Andy Green6ed25972008-06-13 16:24:05 +0100882 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
883 * so userspace apps are blocked from touching us
884 */
885
Mark Brownfde22f22008-11-24 18:08:18 +0000886 dev_dbg(socdev->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100887
Mark Brown87506542008-11-18 20:50:34 +0000888 if (card->resume_pre)
889 card->resume_pre(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200890
Mark Brown87506542008-11-18 20:50:34 +0000891 for (i = 0; i < card->num_links; i++) {
892 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000893 if (cpu_dai->resume && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000894 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200895 }
896
897 if (codec_dev->resume)
898 codec_dev->resume(pdev);
899
Mark Brown3ff3f642008-05-19 12:32:25 +0200900 for (i = 0; i < codec->num_dai; i++) {
901 char *stream = codec->dai[i].playback.stream_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200902 if (stream != NULL)
903 snd_soc_dapm_stream_event(codec, stream,
904 SND_SOC_DAPM_STREAM_RESUME);
905 stream = codec->dai[i].capture.stream_name;
906 if (stream != NULL)
907 snd_soc_dapm_stream_event(codec, stream,
908 SND_SOC_DAPM_STREAM_RESUME);
909 }
910
Mark Brown3ff3f642008-05-19 12:32:25 +0200911 /* unmute any active DACs */
Mark Browndee89c42008-11-18 22:11:38 +0000912 for (i = 0; i < card->num_links; i++) {
913 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800914 if (dai->ops->digital_mute && dai->playback.active)
915 dai->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200916 }
917
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 if (platform->resume)
Mark Brown07c84d02008-12-03 18:17:28 +0000923 platform->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200924 }
925
Mark Brown87506542008-11-18 20:50:34 +0000926 if (card->resume_post)
927 card->resume_post(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200928
Mark Brownfde22f22008-11-24 18:08:18 +0000929 dev_dbg(socdev->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100930
931 /* userspace can access us now we are back as we were before */
932 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0);
933}
934
935/* powers up audio subsystem after a suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100936static int soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100937{
Mark Brown416356f2009-06-30 19:05:15 +0100938 struct platform_device *pdev = to_platform_device(dev);
Andy Green6ed25972008-06-13 16:24:05 +0100939 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown63084192008-12-02 15:08:03 +0000940 struct snd_soc_card *card = socdev->card;
Mark Brown64ab9ba2009-03-31 11:27:03 +0100941 struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai;
Andy Green6ed25972008-06-13 16:24:05 +0100942
Mark Brown64ab9ba2009-03-31 11:27:03 +0100943 /* AC97 devices might have other drivers hanging off them so
944 * need to resume immediately. Other drivers don't have that
945 * problem and may take a substantial amount of time to resume
946 * due to I/O costs and anti-pop so handle them out of line.
947 */
948 if (cpu_dai->ac97_control) {
949 dev_dbg(socdev->dev, "Resuming AC97 immediately\n");
950 soc_resume_deferred(&card->deferred_resume_work);
951 } else {
952 dev_dbg(socdev->dev, "Scheduling resume work\n");
953 if (!schedule_work(&card->deferred_resume_work))
954 dev_err(socdev->dev, "resume work item may be lost\n");
955 }
Andy Green6ed25972008-06-13 16:24:05 +0100956
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200957 return 0;
958}
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200959#else
960#define soc_suspend NULL
961#define soc_resume NULL
962#endif
963
Barry Song02a06d32009-10-16 18:13:38 +0800964static struct snd_soc_dai_ops null_dai_ops = {
965};
966
Mark Brown435c5e22008-12-04 15:32:53 +0000967static void snd_soc_instantiate_card(struct snd_soc_card *card)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200968{
Mark Brown435c5e22008-12-04 15:32:53 +0000969 struct platform_device *pdev = container_of(card->dev,
970 struct platform_device,
971 dev);
972 struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev;
Mark Brownfe3e78e2009-11-03 22:13:13 +0000973 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000974 struct snd_soc_platform *platform;
975 struct snd_soc_dai *dai;
Mark Brown6b05eda2008-12-08 19:26:48 +0000976 int i, found, ret, ac97;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200977
Mark Brown435c5e22008-12-04 15:32:53 +0000978 if (card->instantiated)
979 return;
Mark Brown63084192008-12-02 15:08:03 +0000980
Mark Brown435c5e22008-12-04 15:32:53 +0000981 found = 0;
982 list_for_each_entry(platform, &platform_list, list)
983 if (card->platform == platform) {
984 found = 1;
985 break;
986 }
987 if (!found) {
988 dev_dbg(card->dev, "Platform %s not registered\n",
989 card->platform->name);
990 return;
Mark Brownc5af3a22008-11-28 13:29:45 +0000991 }
992
Mark Brown6b05eda2008-12-08 19:26:48 +0000993 ac97 = 0;
Mark Brown435c5e22008-12-04 15:32:53 +0000994 for (i = 0; i < card->num_links; i++) {
995 found = 0;
996 list_for_each_entry(dai, &dai_list, list)
997 if (card->dai_link[i].cpu_dai == dai) {
998 found = 1;
999 break;
1000 }
1001 if (!found) {
1002 dev_dbg(card->dev, "DAI %s not registered\n",
1003 card->dai_link[i].cpu_dai->name);
1004 return;
1005 }
Mark Brown6b05eda2008-12-08 19:26:48 +00001006
1007 if (card->dai_link[i].cpu_dai->ac97_control)
1008 ac97 = 1;
Mark Brown435c5e22008-12-04 15:32:53 +00001009 }
1010
Barry Song02a06d32009-10-16 18:13:38 +08001011 for (i = 0; i < card->num_links; i++) {
1012 if (!card->dai_link[i].codec_dai->ops)
1013 card->dai_link[i].codec_dai->ops = &null_dai_ops;
1014 }
1015
Mark Brown6b05eda2008-12-08 19:26:48 +00001016 /* If we have AC97 in the system then don't wait for the
1017 * codec. This will need revisiting if we have to handle
1018 * systems with mixed AC97 and non-AC97 parts. Only check for
1019 * DAIs currently; we can't do this per link since some AC97
1020 * codecs have non-AC97 DAIs.
1021 */
1022 if (!ac97)
1023 for (i = 0; i < card->num_links; i++) {
1024 found = 0;
1025 list_for_each_entry(dai, &dai_list, list)
1026 if (card->dai_link[i].codec_dai == dai) {
1027 found = 1;
1028 break;
1029 }
1030 if (!found) {
1031 dev_dbg(card->dev, "DAI %s not registered\n",
1032 card->dai_link[i].codec_dai->name);
1033 return;
1034 }
1035 }
1036
Mark Brown435c5e22008-12-04 15:32:53 +00001037 /* Note that we do not current check for codec components */
1038
1039 dev_dbg(card->dev, "All components present, instantiating\n");
1040
1041 /* Found everything, bring it up */
Mark Brown96dd3622010-02-12 11:05:44 +00001042 card->pmdown_time = pmdown_time;
1043
Mark Brown87506542008-11-18 20:50:34 +00001044 if (card->probe) {
1045 ret = card->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +02001046 if (ret < 0)
Mark Brown435c5e22008-12-04 15:32:53 +00001047 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001048 }
1049
Mark Brown87506542008-11-18 20:50:34 +00001050 for (i = 0; i < card->num_links; i++) {
1051 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001052 if (cpu_dai->probe) {
Mark Brownbdb92872008-06-11 13:47:10 +01001053 ret = cpu_dai->probe(pdev, cpu_dai);
Mark Brown3ff3f642008-05-19 12:32:25 +02001054 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001055 goto cpu_dai_err;
1056 }
1057 }
1058
1059 if (codec_dev->probe) {
1060 ret = codec_dev->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +02001061 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001062 goto cpu_dai_err;
1063 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001064 codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001065
1066 if (platform->probe) {
1067 ret = platform->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +02001068 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001069 goto platform_err;
1070 }
1071
1072 /* DAPM stream work */
Mark Brown63084192008-12-02 15:08:03 +00001073 INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
Randy Dunlap1301a962008-06-17 19:19:34 +01001074#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +01001075 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001076 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001077#endif
Andy Green6ed25972008-06-13 16:24:05 +01001078
Mark Brownfe3e78e2009-11-03 22:13:13 +00001079 for (i = 0; i < card->num_links; i++) {
1080 if (card->dai_link[i].init) {
1081 ret = card->dai_link[i].init(codec);
1082 if (ret < 0) {
1083 printk(KERN_ERR "asoc: failed to init %s\n",
1084 card->dai_link[i].stream_name);
1085 continue;
1086 }
1087 }
Barry Songf7732052009-11-12 12:01:47 +08001088 if (card->dai_link[i].codec_dai->ac97_control)
Mark Brownfe3e78e2009-11-03 22:13:13 +00001089 ac97 = 1;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001090 }
1091
1092 snprintf(codec->card->shortname, sizeof(codec->card->shortname),
1093 "%s", card->name);
1094 snprintf(codec->card->longname, sizeof(codec->card->longname),
1095 "%s (%s)", card->name, codec->name);
1096
1097 /* Make sure all DAPM widgets are instantiated */
1098 snd_soc_dapm_new_widgets(codec);
1099
1100 ret = snd_card_register(codec->card);
1101 if (ret < 0) {
1102 printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
1103 codec->name);
1104 goto card_err;
1105 }
1106
1107 mutex_lock(&codec->mutex);
1108#ifdef CONFIG_SND_SOC_AC97_BUS
1109 /* Only instantiate AC97 if not already done by the adaptor
1110 * for the generic AC97 subsystem.
1111 */
1112 if (ac97 && strcmp(codec->name, "AC97") != 0) {
1113 ret = soc_ac97_dev_register(codec);
1114 if (ret < 0) {
1115 printk(KERN_ERR "asoc: AC97 device register failed\n");
1116 snd_card_free(codec->card);
1117 mutex_unlock(&codec->mutex);
1118 goto card_err;
1119 }
1120 }
1121#endif
1122
1123 ret = snd_soc_dapm_sys_add(card->socdev->dev);
1124 if (ret < 0)
1125 printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
1126
1127 ret = device_create_file(card->socdev->dev, &dev_attr_codec_reg);
1128 if (ret < 0)
1129 printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
1130
1131 soc_init_codec_debugfs(codec);
1132 mutex_unlock(&codec->mutex);
1133
Mark Brown435c5e22008-12-04 15:32:53 +00001134 card->instantiated = 1;
1135
1136 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001137
Mark Brownfe3e78e2009-11-03 22:13:13 +00001138card_err:
1139 if (platform->remove)
1140 platform->remove(pdev);
1141
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001142platform_err:
1143 if (codec_dev->remove)
1144 codec_dev->remove(pdev);
1145
1146cpu_dai_err:
Liam Girdwood18b9b3d2007-01-30 17:18:45 +01001147 for (i--; i >= 0; i--) {
Mark Brown87506542008-11-18 20:50:34 +00001148 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001149 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +01001150 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001151 }
1152
Mark Brown87506542008-11-18 20:50:34 +00001153 if (card->remove)
1154 card->remove(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001155}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001156
Mark Brown435c5e22008-12-04 15:32:53 +00001157/*
1158 * Attempt to initialise any uninitalised cards. Must be called with
1159 * client_mutex.
1160 */
1161static void snd_soc_instantiate_cards(void)
1162{
1163 struct snd_soc_card *card;
1164 list_for_each_entry(card, &card_list, list)
1165 snd_soc_instantiate_card(card);
1166}
1167
1168/* probes a new socdev */
1169static int soc_probe(struct platform_device *pdev)
1170{
1171 int ret = 0;
1172 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1173 struct snd_soc_card *card = socdev->card;
1174
1175 /* Bodge while we push things out of socdev */
1176 card->socdev = socdev;
1177
1178 /* Bodge while we unpick instantiation */
1179 card->dev = &pdev->dev;
1180 ret = snd_soc_register_card(card);
1181 if (ret != 0) {
1182 dev_err(&pdev->dev, "Failed to register card\n");
1183 return ret;
1184 }
1185
1186 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001187}
1188
1189/* removes a socdev */
1190static int soc_remove(struct platform_device *pdev)
1191{
1192 int i;
1193 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +00001194 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +00001195 struct snd_soc_platform *platform = card->platform;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001196 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
1197
Mike Rapoport914dc182009-05-11 13:04:55 +03001198 if (!card->instantiated)
1199 return 0;
1200
Mark Brown63084192008-12-02 15:08:03 +00001201 run_delayed_work(&card->delayed_work);
Liam Girdwood965ac422007-01-31 14:14:57 +01001202
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001203 if (platform->remove)
1204 platform->remove(pdev);
1205
1206 if (codec_dev->remove)
1207 codec_dev->remove(pdev);
1208
Mark Brown87506542008-11-18 20:50:34 +00001209 for (i = 0; i < card->num_links; i++) {
1210 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001211 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +01001212 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001213 }
1214
Mark Brown87506542008-11-18 20:50:34 +00001215 if (card->remove)
1216 card->remove(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001217
Mark Brownc5af3a22008-11-28 13:29:45 +00001218 snd_soc_unregister_card(card);
1219
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001220 return 0;
1221}
1222
Mark Brown416356f2009-06-30 19:05:15 +01001223static int soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001224{
Mark Brown416356f2009-06-30 19:05:15 +01001225 struct platform_device *pdev = to_platform_device(dev);
Mark Brown51737472009-06-22 13:16:51 +01001226 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1227 struct snd_soc_card *card = socdev->card;
1228
1229 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001230 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001231
1232 /* Flush out pmdown_time work - we actually do want to run it
1233 * now, we're shutting down so no imminent restart. */
1234 run_delayed_work(&card->delayed_work);
1235
1236 snd_soc_dapm_shutdown(socdev);
Mark Brown416356f2009-06-30 19:05:15 +01001237
1238 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001239}
1240
Alexey Dobriyan47145212009-12-14 18:00:08 -08001241static const struct dev_pm_ops soc_pm_ops = {
Mark Brown416356f2009-06-30 19:05:15 +01001242 .suspend = soc_suspend,
1243 .resume = soc_resume,
1244 .poweroff = soc_poweroff,
1245};
1246
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001247/* ASoC platform driver */
1248static struct platform_driver soc_driver = {
1249 .driver = {
1250 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001251 .owner = THIS_MODULE,
Mark Brown416356f2009-06-30 19:05:15 +01001252 .pm = &soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001253 },
1254 .probe = soc_probe,
1255 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001256};
1257
1258/* create a new pcm */
1259static int soc_new_pcm(struct snd_soc_device *socdev,
1260 struct snd_soc_dai_link *dai_link, int num)
1261{
Mark Brown87689d52008-12-02 16:01:14 +00001262 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001263 struct snd_soc_codec *codec = card->codec;
Mark Brown87689d52008-12-02 16:01:14 +00001264 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001265 struct snd_soc_dai *codec_dai = dai_link->codec_dai;
1266 struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001267 struct snd_soc_pcm_runtime *rtd;
1268 struct snd_pcm *pcm;
1269 char new_name[64];
1270 int ret = 0, playback = 0, capture = 0;
1271
1272 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
1273 if (rtd == NULL)
1274 return -ENOMEM;
Liam Girdwoodcb666e52007-02-02 17:13:49 +01001275
1276 rtd->dai = dai_link;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001277 rtd->socdev = socdev;
Mark Brown6627a652009-01-23 22:55:23 +00001278 codec_dai->codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001279
1280 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00001281 snprintf(new_name, sizeof(new_name), "%s %s-%d",
1282 dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001283
1284 if (codec_dai->playback.channels_min)
1285 playback = 1;
1286 if (codec_dai->capture.channels_min)
1287 capture = 1;
1288
1289 ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
1290 capture, &pcm);
1291 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001292 printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
1293 codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001294 kfree(rtd);
1295 return ret;
1296 }
1297
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001298 dai_link->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001299 pcm->private_data = rtd;
Mark Brown87689d52008-12-02 16:01:14 +00001300 soc_pcm_ops.mmap = platform->pcm_ops->mmap;
1301 soc_pcm_ops.pointer = platform->pcm_ops->pointer;
1302 soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
1303 soc_pcm_ops.copy = platform->pcm_ops->copy;
1304 soc_pcm_ops.silence = platform->pcm_ops->silence;
1305 soc_pcm_ops.ack = platform->pcm_ops->ack;
1306 soc_pcm_ops.page = platform->pcm_ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001307
1308 if (playback)
1309 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
1310
1311 if (capture)
1312 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
1313
Mark Brown87689d52008-12-02 16:01:14 +00001314 ret = platform->pcm_new(codec->card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001315 if (ret < 0) {
1316 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
1317 kfree(rtd);
1318 return ret;
1319 }
1320
Mark Brown87689d52008-12-02 16:01:14 +00001321 pcm->private_free = platform->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001322 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
1323 cpu_dai->name);
1324 return ret;
1325}
1326
Mark Brown096e49d2009-07-05 15:12:22 +01001327/**
1328 * snd_soc_codec_volatile_register: Report if a register is volatile.
1329 *
1330 * @codec: CODEC to query.
1331 * @reg: Register to query.
1332 *
1333 * Boolean function indiciating if a CODEC register is volatile.
1334 */
1335int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
1336{
1337 if (codec->volatile_register)
1338 return codec->volatile_register(reg);
1339 else
1340 return 0;
1341}
1342EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1343
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001344/**
1345 * snd_soc_new_ac97_codec - initailise AC97 device
1346 * @codec: audio codec
1347 * @ops: AC97 bus operations
1348 * @num: AC97 codec number
1349 *
1350 * Initialises AC97 codec resources for use by ad-hoc devices only.
1351 */
1352int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1353 struct snd_ac97_bus_ops *ops, int num)
1354{
1355 mutex_lock(&codec->mutex);
1356
1357 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1358 if (codec->ac97 == NULL) {
1359 mutex_unlock(&codec->mutex);
1360 return -ENOMEM;
1361 }
1362
1363 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1364 if (codec->ac97->bus == NULL) {
1365 kfree(codec->ac97);
1366 codec->ac97 = NULL;
1367 mutex_unlock(&codec->mutex);
1368 return -ENOMEM;
1369 }
1370
1371 codec->ac97->bus->ops = ops;
1372 codec->ac97->num = num;
Mark Brown27186252010-01-28 12:36:29 +00001373 codec->dev = &codec->ac97->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001374 mutex_unlock(&codec->mutex);
1375 return 0;
1376}
1377EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1378
1379/**
1380 * snd_soc_free_ac97_codec - free AC97 codec device
1381 * @codec: audio codec
1382 *
1383 * Frees AC97 codec device resources.
1384 */
1385void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1386{
1387 mutex_lock(&codec->mutex);
1388 kfree(codec->ac97->bus);
1389 kfree(codec->ac97);
1390 codec->ac97 = NULL;
1391 mutex_unlock(&codec->mutex);
1392}
1393EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1394
1395/**
1396 * snd_soc_update_bits - update codec register bits
1397 * @codec: audio codec
1398 * @reg: codec register
1399 * @mask: register mask
1400 * @value: new value
1401 *
1402 * Writes new register value.
1403 *
1404 * Returns 1 for change else 0.
1405 */
1406int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001407 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001408{
1409 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001410 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001411
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001412 old = snd_soc_read(codec, reg);
1413 new = (old & ~mask) | value;
1414 change = old != new;
1415 if (change)
1416 snd_soc_write(codec, reg, new);
1417
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001418 return change;
1419}
1420EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1421
1422/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001423 * snd_soc_update_bits_locked - update codec register bits
1424 * @codec: audio codec
1425 * @reg: codec register
1426 * @mask: register mask
1427 * @value: new value
1428 *
1429 * Writes new register value, and takes the codec mutex.
1430 *
1431 * Returns 1 for change else 0.
1432 */
Mark Browndd1b3d52009-12-04 14:22:03 +00001433int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
1434 unsigned short reg, unsigned int mask,
1435 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001436{
1437 int change;
1438
1439 mutex_lock(&codec->mutex);
1440 change = snd_soc_update_bits(codec, reg, mask, value);
1441 mutex_unlock(&codec->mutex);
1442
1443 return change;
1444}
Mark Browndd1b3d52009-12-04 14:22:03 +00001445EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001446
1447/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001448 * snd_soc_test_bits - test register for change
1449 * @codec: audio codec
1450 * @reg: codec register
1451 * @mask: register mask
1452 * @value: new value
1453 *
1454 * Tests a register with a new value and checks if the new value is
1455 * different from the old value.
1456 *
1457 * Returns 1 for change else 0.
1458 */
1459int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001460 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001461{
1462 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001463 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001464
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001465 old = snd_soc_read(codec, reg);
1466 new = (old & ~mask) | value;
1467 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001468
1469 return change;
1470}
1471EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1472
1473/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001474 * snd_soc_new_pcms - create new sound card and pcms
1475 * @socdev: the SoC audio device
Mark Brownac11a2b2009-01-01 12:18:17 +00001476 * @idx: ALSA card index
1477 * @xid: card identification
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001478 *
1479 * Create a new sound card based upon the codec and interface pcms.
1480 *
1481 * Returns 0 for success, else error.
1482 */
Liam Girdwoodbc7320c2007-02-01 12:26:07 +01001483int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001484{
Mark Brown87506542008-11-18 20:50:34 +00001485 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001486 struct snd_soc_codec *codec = card->codec;
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001487 int ret, i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001488
1489 mutex_lock(&codec->mutex);
1490
1491 /* register a sound card */
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001492 ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
1493 if (ret < 0) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001494 printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
1495 codec->name);
1496 mutex_unlock(&codec->mutex);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001497 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001498 }
1499
Mark Brown452c5ea2009-05-17 21:41:23 +01001500 codec->socdev = socdev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001501 codec->card->dev = socdev->dev;
1502 codec->card->private_data = codec;
1503 strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
1504
1505 /* create the pcms */
Mark Brown87506542008-11-18 20:50:34 +00001506 for (i = 0; i < card->num_links; i++) {
1507 ret = soc_new_pcm(socdev, &card->dai_link[i], i);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001508 if (ret < 0) {
1509 printk(KERN_ERR "asoc: can't create pcm %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001510 card->dai_link[i].stream_name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001511 mutex_unlock(&codec->mutex);
1512 return ret;
1513 }
Barry Songf7732052009-11-12 12:01:47 +08001514 if (card->dai_link[i].codec_dai->ac97_control) {
1515 snd_ac97_dev_add_pdata(codec->ac97,
1516 card->dai_link[i].cpu_dai->ac97_pdata);
1517 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001518 }
1519
1520 mutex_unlock(&codec->mutex);
1521 return ret;
1522}
1523EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
1524
1525/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001526 * snd_soc_free_pcms - free sound card and pcms
1527 * @socdev: the SoC audio device
1528 *
1529 * Frees sound card and pcms associated with the socdev.
1530 * Also unregister the codec if it is an AC97 device.
1531 */
1532void snd_soc_free_pcms(struct snd_soc_device *socdev)
1533{
Mark Brown6627a652009-01-23 22:55:23 +00001534 struct snd_soc_codec *codec = socdev->card->codec;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001535#ifdef CONFIG_SND_SOC_AC97_BUS
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001536 struct snd_soc_dai *codec_dai;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001537 int i;
1538#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001539
1540 mutex_lock(&codec->mutex);
Mark Brown6627a652009-01-23 22:55:23 +00001541 soc_cleanup_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001542#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown3ff3f642008-05-19 12:32:25 +02001543 for (i = 0; i < codec->num_dai; i++) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001544 codec_dai = &codec->dai[i];
Atsushi Nemotod2314e02009-03-16 23:26:20 +09001545 if (codec_dai->ac97_control && codec->ac97 &&
1546 strcmp(codec->name, "AC97") != 0) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001547 soc_ac97_dev_unregister(codec);
1548 goto free_card;
1549 }
1550 }
1551free_card:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001552#endif
1553
1554 if (codec->card)
1555 snd_card_free(codec->card);
1556 device_remove_file(socdev->dev, &dev_attr_codec_reg);
1557 mutex_unlock(&codec->mutex);
1558}
1559EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
1560
1561/**
1562 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1563 * @substream: the pcm substream
1564 * @hw: the hardware parameters
1565 *
1566 * Sets the substream runtime hardware parameters.
1567 */
1568int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1569 const struct snd_pcm_hardware *hw)
1570{
1571 struct snd_pcm_runtime *runtime = substream->runtime;
1572 runtime->hw.info = hw->info;
1573 runtime->hw.formats = hw->formats;
1574 runtime->hw.period_bytes_min = hw->period_bytes_min;
1575 runtime->hw.period_bytes_max = hw->period_bytes_max;
1576 runtime->hw.periods_min = hw->periods_min;
1577 runtime->hw.periods_max = hw->periods_max;
1578 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1579 runtime->hw.fifo_size = hw->fifo_size;
1580 return 0;
1581}
1582EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1583
1584/**
1585 * snd_soc_cnew - create new control
1586 * @_template: control template
1587 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001588 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001589 *
1590 * Create a new mixer control from a template control.
1591 *
1592 * Returns 0 for success, else error.
1593 */
1594struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
1595 void *data, char *long_name)
1596{
1597 struct snd_kcontrol_new template;
1598
1599 memcpy(&template, _template, sizeof(template));
1600 if (long_name)
1601 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001602 template.index = 0;
1603
1604 return snd_ctl_new1(&template, data);
1605}
1606EXPORT_SYMBOL_GPL(snd_soc_cnew);
1607
1608/**
Ian Molton3e8e1952009-01-09 00:23:21 +00001609 * snd_soc_add_controls - add an array of controls to a codec.
1610 * Convienience function to add a list of controls. Many codecs were
1611 * duplicating this code.
1612 *
1613 * @codec: codec to add controls to
1614 * @controls: array of controls to add
1615 * @num_controls: number of elements in the array
1616 *
1617 * Return 0 for success, else error.
1618 */
1619int snd_soc_add_controls(struct snd_soc_codec *codec,
1620 const struct snd_kcontrol_new *controls, int num_controls)
1621{
1622 struct snd_card *card = codec->card;
1623 int err, i;
1624
1625 for (i = 0; i < num_controls; i++) {
1626 const struct snd_kcontrol_new *control = &controls[i];
1627 err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
1628 if (err < 0) {
1629 dev_err(codec->dev, "%s: Failed to add %s\n",
1630 codec->name, control->name);
1631 return err;
1632 }
1633 }
1634
1635 return 0;
1636}
1637EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1638
1639/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001640 * snd_soc_info_enum_double - enumerated double mixer info callback
1641 * @kcontrol: mixer control
1642 * @uinfo: control element information
1643 *
1644 * Callback to provide information about a double enumerated
1645 * mixer control.
1646 *
1647 * Returns 0 for success.
1648 */
1649int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
1650 struct snd_ctl_elem_info *uinfo)
1651{
1652 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1653
1654 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1655 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001656 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001657
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001658 if (uinfo->value.enumerated.item > e->max - 1)
1659 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001660 strcpy(uinfo->value.enumerated.name,
1661 e->texts[uinfo->value.enumerated.item]);
1662 return 0;
1663}
1664EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
1665
1666/**
1667 * snd_soc_get_enum_double - enumerated double mixer get callback
1668 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001669 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001670 *
1671 * Callback to get the value of a double enumerated mixer.
1672 *
1673 * Returns 0 for success.
1674 */
1675int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
1676 struct snd_ctl_elem_value *ucontrol)
1677{
1678 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1679 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001680 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001681
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001682 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001683 ;
1684 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02001685 ucontrol->value.enumerated.item[0]
1686 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001687 if (e->shift_l != e->shift_r)
1688 ucontrol->value.enumerated.item[1] =
1689 (val >> e->shift_r) & (bitmask - 1);
1690
1691 return 0;
1692}
1693EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
1694
1695/**
1696 * snd_soc_put_enum_double - enumerated double mixer put callback
1697 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001698 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001699 *
1700 * Callback to set the value of a double enumerated mixer.
1701 *
1702 * Returns 0 for success.
1703 */
1704int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
1705 struct snd_ctl_elem_value *ucontrol)
1706{
1707 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1708 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001709 unsigned int val;
1710 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001711
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001712 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001713 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001714 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001715 return -EINVAL;
1716 val = ucontrol->value.enumerated.item[0] << e->shift_l;
1717 mask = (bitmask - 1) << e->shift_l;
1718 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001719 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001720 return -EINVAL;
1721 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1722 mask |= (bitmask - 1) << e->shift_r;
1723 }
1724
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001725 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001726}
1727EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
1728
1729/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001730 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1731 * @kcontrol: mixer control
1732 * @ucontrol: control element information
1733 *
1734 * Callback to get the value of a double semi enumerated mixer.
1735 *
1736 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1737 * used for handling bitfield coded enumeration for example.
1738 *
1739 * Returns 0 for success.
1740 */
1741int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
1742 struct snd_ctl_elem_value *ucontrol)
1743{
1744 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001745 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001746 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001747
1748 reg_val = snd_soc_read(codec, e->reg);
1749 val = (reg_val >> e->shift_l) & e->mask;
1750 for (mux = 0; mux < e->max; mux++) {
1751 if (val == e->values[mux])
1752 break;
1753 }
1754 ucontrol->value.enumerated.item[0] = mux;
1755 if (e->shift_l != e->shift_r) {
1756 val = (reg_val >> e->shift_r) & e->mask;
1757 for (mux = 0; mux < e->max; mux++) {
1758 if (val == e->values[mux])
1759 break;
1760 }
1761 ucontrol->value.enumerated.item[1] = mux;
1762 }
1763
1764 return 0;
1765}
1766EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
1767
1768/**
1769 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1770 * @kcontrol: mixer control
1771 * @ucontrol: control element information
1772 *
1773 * Callback to set the value of a double semi enumerated mixer.
1774 *
1775 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1776 * used for handling bitfield coded enumeration for example.
1777 *
1778 * Returns 0 for success.
1779 */
1780int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
1781 struct snd_ctl_elem_value *ucontrol)
1782{
1783 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001784 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001785 unsigned int val;
1786 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001787
1788 if (ucontrol->value.enumerated.item[0] > e->max - 1)
1789 return -EINVAL;
1790 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1791 mask = e->mask << e->shift_l;
1792 if (e->shift_l != e->shift_r) {
1793 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1794 return -EINVAL;
1795 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1796 mask |= e->mask << e->shift_r;
1797 }
1798
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001799 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001800}
1801EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
1802
1803/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001804 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1805 * @kcontrol: mixer control
1806 * @uinfo: control element information
1807 *
1808 * Callback to provide information about an external enumerated
1809 * single mixer.
1810 *
1811 * Returns 0 for success.
1812 */
1813int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
1814 struct snd_ctl_elem_info *uinfo)
1815{
1816 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1817
1818 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1819 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001820 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001821
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001822 if (uinfo->value.enumerated.item > e->max - 1)
1823 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001824 strcpy(uinfo->value.enumerated.name,
1825 e->texts[uinfo->value.enumerated.item]);
1826 return 0;
1827}
1828EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
1829
1830/**
1831 * snd_soc_info_volsw_ext - external single mixer info callback
1832 * @kcontrol: mixer control
1833 * @uinfo: control element information
1834 *
1835 * Callback to provide information about a single external mixer control.
1836 *
1837 * Returns 0 for success.
1838 */
1839int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
1840 struct snd_ctl_elem_info *uinfo)
1841{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001842 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001843
Mark Brownfd5dfad2009-04-15 21:37:46 +01001844 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001845 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1846 else
1847 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1848
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001849 uinfo->count = 1;
1850 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001851 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001852 return 0;
1853}
1854EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
1855
1856/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001857 * snd_soc_info_volsw - single mixer info callback
1858 * @kcontrol: mixer control
1859 * @uinfo: control element information
1860 *
1861 * Callback to provide information about a single mixer control.
1862 *
1863 * Returns 0 for success.
1864 */
1865int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
1866 struct snd_ctl_elem_info *uinfo)
1867{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001868 struct soc_mixer_control *mc =
1869 (struct soc_mixer_control *)kcontrol->private_value;
1870 int max = mc->max;
Mark Brown762b8df2008-10-30 12:37:08 +00001871 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001872 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001873
Mark Brownfd5dfad2009-04-15 21:37:46 +01001874 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001875 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1876 else
1877 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1878
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001879 uinfo->count = shift == rshift ? 1 : 2;
1880 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001881 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001882 return 0;
1883}
1884EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
1885
1886/**
1887 * snd_soc_get_volsw - single mixer get callback
1888 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001889 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001890 *
1891 * Callback to get the value of a single mixer control.
1892 *
1893 * Returns 0 for success.
1894 */
1895int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
1896 struct snd_ctl_elem_value *ucontrol)
1897{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001898 struct soc_mixer_control *mc =
1899 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001900 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001901 unsigned int reg = mc->reg;
1902 unsigned int shift = mc->shift;
1903 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001904 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001905 unsigned int mask = (1 << fls(max)) - 1;
1906 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001907
1908 ucontrol->value.integer.value[0] =
1909 (snd_soc_read(codec, reg) >> shift) & mask;
1910 if (shift != rshift)
1911 ucontrol->value.integer.value[1] =
1912 (snd_soc_read(codec, reg) >> rshift) & mask;
1913 if (invert) {
1914 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001915 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001916 if (shift != rshift)
1917 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001918 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001919 }
1920
1921 return 0;
1922}
1923EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
1924
1925/**
1926 * snd_soc_put_volsw - single mixer put callback
1927 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001928 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001929 *
1930 * Callback to set the value of a single mixer control.
1931 *
1932 * Returns 0 for success.
1933 */
1934int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
1935 struct snd_ctl_elem_value *ucontrol)
1936{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001937 struct soc_mixer_control *mc =
1938 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001939 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001940 unsigned int reg = mc->reg;
1941 unsigned int shift = mc->shift;
1942 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001943 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001944 unsigned int mask = (1 << fls(max)) - 1;
1945 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001946 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001947
1948 val = (ucontrol->value.integer.value[0] & mask);
1949 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001950 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001951 val_mask = mask << shift;
1952 val = val << shift;
1953 if (shift != rshift) {
1954 val2 = (ucontrol->value.integer.value[1] & mask);
1955 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001956 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001957 val_mask |= mask << rshift;
1958 val |= val2 << rshift;
1959 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001960 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001961}
1962EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
1963
1964/**
1965 * snd_soc_info_volsw_2r - double mixer info callback
1966 * @kcontrol: mixer control
1967 * @uinfo: control element information
1968 *
1969 * Callback to provide information about a double mixer control that
1970 * spans 2 codec registers.
1971 *
1972 * Returns 0 for success.
1973 */
1974int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
1975 struct snd_ctl_elem_info *uinfo)
1976{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001977 struct soc_mixer_control *mc =
1978 (struct soc_mixer_control *)kcontrol->private_value;
1979 int max = mc->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001980
Mark Brownfd5dfad2009-04-15 21:37:46 +01001981 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001982 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1983 else
1984 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1985
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001986 uinfo->count = 2;
1987 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001988 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001989 return 0;
1990}
1991EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
1992
1993/**
1994 * snd_soc_get_volsw_2r - double mixer get callback
1995 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001996 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001997 *
1998 * Callback to get the value of a double mixer control that spans 2 registers.
1999 *
2000 * Returns 0 for success.
2001 */
2002int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2003 struct snd_ctl_elem_value *ucontrol)
2004{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002005 struct soc_mixer_control *mc =
2006 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002007 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002008 unsigned int reg = mc->reg;
2009 unsigned int reg2 = mc->rreg;
2010 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002011 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002012 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002013 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002014
2015 ucontrol->value.integer.value[0] =
2016 (snd_soc_read(codec, reg) >> shift) & mask;
2017 ucontrol->value.integer.value[1] =
2018 (snd_soc_read(codec, reg2) >> shift) & mask;
2019 if (invert) {
2020 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002021 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002022 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002023 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002024 }
2025
2026 return 0;
2027}
2028EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2029
2030/**
2031 * snd_soc_put_volsw_2r - double mixer set callback
2032 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002033 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002034 *
2035 * Callback to set the value of a double mixer control that spans 2 registers.
2036 *
2037 * Returns 0 for success.
2038 */
2039int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2040 struct snd_ctl_elem_value *ucontrol)
2041{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002042 struct soc_mixer_control *mc =
2043 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002044 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002045 unsigned int reg = mc->reg;
2046 unsigned int reg2 = mc->rreg;
2047 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002048 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002049 unsigned int mask = (1 << fls(max)) - 1;
2050 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002051 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002052 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002053
2054 val_mask = mask << shift;
2055 val = (ucontrol->value.integer.value[0] & mask);
2056 val2 = (ucontrol->value.integer.value[1] & mask);
2057
2058 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002059 val = max - val;
2060 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002061 }
2062
2063 val = val << shift;
2064 val2 = val2 << shift;
2065
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002066 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002067 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002068 return err;
2069
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002070 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002071 return err;
2072}
2073EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2074
Mark Browne13ac2e2008-05-28 17:58:05 +01002075/**
2076 * snd_soc_info_volsw_s8 - signed mixer info callback
2077 * @kcontrol: mixer control
2078 * @uinfo: control element information
2079 *
2080 * Callback to provide information about a signed mixer control.
2081 *
2082 * Returns 0 for success.
2083 */
2084int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2085 struct snd_ctl_elem_info *uinfo)
2086{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002087 struct soc_mixer_control *mc =
2088 (struct soc_mixer_control *)kcontrol->private_value;
2089 int max = mc->max;
2090 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002091
2092 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2093 uinfo->count = 2;
2094 uinfo->value.integer.min = 0;
2095 uinfo->value.integer.max = max-min;
2096 return 0;
2097}
2098EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2099
2100/**
2101 * snd_soc_get_volsw_s8 - signed mixer get callback
2102 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002103 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002104 *
2105 * Callback to get the value of a signed mixer control.
2106 *
2107 * Returns 0 for success.
2108 */
2109int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2110 struct snd_ctl_elem_value *ucontrol)
2111{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002112 struct soc_mixer_control *mc =
2113 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002114 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002115 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002116 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002117 int val = snd_soc_read(codec, reg);
2118
2119 ucontrol->value.integer.value[0] =
2120 ((signed char)(val & 0xff))-min;
2121 ucontrol->value.integer.value[1] =
2122 ((signed char)((val >> 8) & 0xff))-min;
2123 return 0;
2124}
2125EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2126
2127/**
2128 * snd_soc_put_volsw_sgn - signed mixer put callback
2129 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002130 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002131 *
2132 * Callback to set the value of a signed mixer control.
2133 *
2134 * Returns 0 for success.
2135 */
2136int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2137 struct snd_ctl_elem_value *ucontrol)
2138{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002139 struct soc_mixer_control *mc =
2140 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002141 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002142 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002143 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002144 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002145
2146 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2147 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2148
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002149 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002150}
2151EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2152
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002153/**
2154 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2155 * @dai: DAI
2156 * @clk_id: DAI specific clock ID
2157 * @freq: new clock frequency in Hz
2158 * @dir: new clock direction - input/output.
2159 *
2160 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2161 */
2162int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2163 unsigned int freq, int dir)
2164{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002165 if (dai->ops && dai->ops->set_sysclk)
Eric Miao6335d052009-03-03 09:41:00 +08002166 return dai->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002167 else
2168 return -EINVAL;
2169}
2170EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2171
2172/**
2173 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2174 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002175 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002176 * @div: new clock divisor.
2177 *
2178 * Configures the clock dividers. This is used to derive the best DAI bit and
2179 * frame clocks from the system or master clock. It's best to set the DAI bit
2180 * and frame clocks as low as possible to save system power.
2181 */
2182int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2183 int div_id, int div)
2184{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002185 if (dai->ops && dai->ops->set_clkdiv)
Eric Miao6335d052009-03-03 09:41:00 +08002186 return dai->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002187 else
2188 return -EINVAL;
2189}
2190EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2191
2192/**
2193 * snd_soc_dai_set_pll - configure DAI PLL.
2194 * @dai: DAI
2195 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002196 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002197 * @freq_in: PLL input clock frequency in Hz
2198 * @freq_out: requested PLL output clock frequency in Hz
2199 *
2200 * Configures and enables PLL to generate output clock based on input clock.
2201 */
Mark Brown85488032009-09-05 18:52:16 +01002202int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2203 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002204{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002205 if (dai->ops && dai->ops->set_pll)
Mark Brown85488032009-09-05 18:52:16 +01002206 return dai->ops->set_pll(dai, pll_id, source,
2207 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002208 else
2209 return -EINVAL;
2210}
2211EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2212
2213/**
2214 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2215 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002216 * @fmt: SND_SOC_DAIFMT_ format value.
2217 *
2218 * Configures the DAI hardware format and clocking.
2219 */
2220int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2221{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002222 if (dai->ops && dai->ops->set_fmt)
Eric Miao6335d052009-03-03 09:41:00 +08002223 return dai->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002224 else
2225 return -EINVAL;
2226}
2227EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2228
2229/**
2230 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2231 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002232 * @tx_mask: bitmask representing active TX slots.
2233 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002234 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002235 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002236 *
2237 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2238 * specific.
2239 */
2240int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002241 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002242{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002243 if (dai->ops && dai->ops->set_tdm_slot)
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002244 return dai->ops->set_tdm_slot(dai, tx_mask, rx_mask,
2245 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002246 else
2247 return -EINVAL;
2248}
2249EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2250
2251/**
Barry Song472df3c2009-09-12 01:16:29 +08002252 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2253 * @dai: DAI
2254 * @tx_num: how many TX channels
2255 * @tx_slot: pointer to an array which imply the TX slot number channel
2256 * 0~num-1 uses
2257 * @rx_num: how many RX channels
2258 * @rx_slot: pointer to an array which imply the RX slot number channel
2259 * 0~num-1 uses
2260 *
2261 * configure the relationship between channel number and TDM slot number.
2262 */
2263int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2264 unsigned int tx_num, unsigned int *tx_slot,
2265 unsigned int rx_num, unsigned int *rx_slot)
2266{
2267 if (dai->ops && dai->ops->set_channel_map)
2268 return dai->ops->set_channel_map(dai, tx_num, tx_slot,
2269 rx_num, rx_slot);
2270 else
2271 return -EINVAL;
2272}
2273EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2274
2275/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002276 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2277 * @dai: DAI
2278 * @tristate: tristate enable
2279 *
2280 * Tristates the DAI so that others can use it.
2281 */
2282int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2283{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002284 if (dai->ops && dai->ops->set_tristate)
Eric Miao6335d052009-03-03 09:41:00 +08002285 return dai->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002286 else
2287 return -EINVAL;
2288}
2289EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2290
2291/**
2292 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2293 * @dai: DAI
2294 * @mute: mute enable
2295 *
2296 * Mutes the DAI DAC.
2297 */
2298int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2299{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002300 if (dai->ops && dai->ops->digital_mute)
Eric Miao6335d052009-03-03 09:41:00 +08002301 return dai->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002302 else
2303 return -EINVAL;
2304}
2305EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2306
Mark Brownc5af3a22008-11-28 13:29:45 +00002307/**
2308 * snd_soc_register_card - Register a card with the ASoC core
2309 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002310 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002311 *
2312 * Note that currently this is an internal only function: it will be
2313 * exposed to machine drivers after further backporting of ASoC v2
2314 * registration APIs.
2315 */
2316static int snd_soc_register_card(struct snd_soc_card *card)
2317{
2318 if (!card->name || !card->dev)
2319 return -EINVAL;
2320
2321 INIT_LIST_HEAD(&card->list);
2322 card->instantiated = 0;
2323
2324 mutex_lock(&client_mutex);
2325 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002326 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002327 mutex_unlock(&client_mutex);
2328
2329 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2330
2331 return 0;
2332}
2333
2334/**
2335 * snd_soc_unregister_card - Unregister a card with the ASoC core
2336 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002337 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002338 *
2339 * Note that currently this is an internal only function: it will be
2340 * exposed to machine drivers after further backporting of ASoC v2
2341 * registration APIs.
2342 */
2343static int snd_soc_unregister_card(struct snd_soc_card *card)
2344{
2345 mutex_lock(&client_mutex);
2346 list_del(&card->list);
2347 mutex_unlock(&client_mutex);
2348
2349 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2350
2351 return 0;
2352}
2353
Mark Brown91151712008-11-30 23:31:24 +00002354/**
2355 * snd_soc_register_dai - Register a DAI with the ASoC core
2356 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002357 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00002358 */
2359int snd_soc_register_dai(struct snd_soc_dai *dai)
2360{
2361 if (!dai->name)
2362 return -EINVAL;
2363
2364 /* The device should become mandatory over time */
2365 if (!dai->dev)
2366 printk(KERN_WARNING "No device for DAI %s\n", dai->name);
2367
Eric Miao6335d052009-03-03 09:41:00 +08002368 if (!dai->ops)
2369 dai->ops = &null_dai_ops;
2370
Mark Brown91151712008-11-30 23:31:24 +00002371 INIT_LIST_HEAD(&dai->list);
2372
2373 mutex_lock(&client_mutex);
2374 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002375 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00002376 mutex_unlock(&client_mutex);
2377
2378 pr_debug("Registered DAI '%s'\n", dai->name);
2379
2380 return 0;
2381}
2382EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2383
2384/**
2385 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2386 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002387 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00002388 */
2389void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2390{
2391 mutex_lock(&client_mutex);
2392 list_del(&dai->list);
2393 mutex_unlock(&client_mutex);
2394
2395 pr_debug("Unregistered DAI '%s'\n", dai->name);
2396}
2397EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2398
2399/**
2400 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2401 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002402 * @dai: Array of DAIs to register
2403 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002404 */
2405int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
2406{
2407 int i, ret;
2408
2409 for (i = 0; i < count; i++) {
2410 ret = snd_soc_register_dai(&dai[i]);
2411 if (ret != 0)
2412 goto err;
2413 }
2414
2415 return 0;
2416
2417err:
2418 for (i--; i >= 0; i--)
2419 snd_soc_unregister_dai(&dai[i]);
2420
2421 return ret;
2422}
2423EXPORT_SYMBOL_GPL(snd_soc_register_dais);
2424
2425/**
2426 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2427 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002428 * @dai: Array of DAIs to unregister
2429 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002430 */
2431void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
2432{
2433 int i;
2434
2435 for (i = 0; i < count; i++)
2436 snd_soc_unregister_dai(&dai[i]);
2437}
2438EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
2439
Mark Brown12a48a8c2008-12-03 19:40:30 +00002440/**
2441 * snd_soc_register_platform - Register a platform with the ASoC core
2442 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002443 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00002444 */
2445int snd_soc_register_platform(struct snd_soc_platform *platform)
2446{
2447 if (!platform->name)
2448 return -EINVAL;
2449
2450 INIT_LIST_HEAD(&platform->list);
2451
2452 mutex_lock(&client_mutex);
2453 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002454 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00002455 mutex_unlock(&client_mutex);
2456
2457 pr_debug("Registered platform '%s'\n", platform->name);
2458
2459 return 0;
2460}
2461EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2462
2463/**
2464 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2465 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002466 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002467 */
2468void snd_soc_unregister_platform(struct snd_soc_platform *platform)
2469{
2470 mutex_lock(&client_mutex);
2471 list_del(&platform->list);
2472 mutex_unlock(&client_mutex);
2473
2474 pr_debug("Unregistered platform '%s'\n", platform->name);
2475}
2476EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2477
Mark Brown151ab222009-05-09 16:22:58 +01002478static u64 codec_format_map[] = {
2479 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2480 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2481 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2482 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2483 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2484 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2485 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2486 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2487 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2488 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2489 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2490 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2491 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2492 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2493 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2494 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2495};
2496
2497/* Fix up the DAI formats for endianness: codecs don't actually see
2498 * the endianness of the data but we're using the CPU format
2499 * definitions which do need to include endianness so we ensure that
2500 * codec DAIs always have both big and little endian variants set.
2501 */
2502static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2503{
2504 int i;
2505
2506 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2507 if (stream->formats & codec_format_map[i])
2508 stream->formats |= codec_format_map[i];
2509}
2510
Mark Brown0d0cf002008-12-10 14:32:45 +00002511/**
2512 * snd_soc_register_codec - Register a codec with the ASoC core
2513 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002514 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002515 */
2516int snd_soc_register_codec(struct snd_soc_codec *codec)
2517{
Mark Brown151ab222009-05-09 16:22:58 +01002518 int i;
2519
Mark Brown0d0cf002008-12-10 14:32:45 +00002520 if (!codec->name)
2521 return -EINVAL;
2522
2523 /* The device should become mandatory over time */
2524 if (!codec->dev)
2525 printk(KERN_WARNING "No device for codec %s\n", codec->name);
2526
2527 INIT_LIST_HEAD(&codec->list);
2528
Mark Brown151ab222009-05-09 16:22:58 +01002529 for (i = 0; i < codec->num_dai; i++) {
2530 fixup_codec_formats(&codec->dai[i].playback);
2531 fixup_codec_formats(&codec->dai[i].capture);
2532 }
2533
Mark Brown0d0cf002008-12-10 14:32:45 +00002534 mutex_lock(&client_mutex);
2535 list_add(&codec->list, &codec_list);
2536 snd_soc_instantiate_cards();
2537 mutex_unlock(&client_mutex);
2538
2539 pr_debug("Registered codec '%s'\n", codec->name);
2540
2541 return 0;
2542}
2543EXPORT_SYMBOL_GPL(snd_soc_register_codec);
2544
2545/**
2546 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2547 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002548 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00002549 */
2550void snd_soc_unregister_codec(struct snd_soc_codec *codec)
2551{
2552 mutex_lock(&client_mutex);
2553 list_del(&codec->list);
2554 mutex_unlock(&client_mutex);
2555
2556 pr_debug("Unregistered codec '%s'\n", codec->name);
2557}
2558EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
2559
Takashi Iwaic9b3a402008-12-10 07:47:22 +01002560static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002561{
Mark Brown384c89e2008-12-03 17:34:03 +00002562#ifdef CONFIG_DEBUG_FS
2563 debugfs_root = debugfs_create_dir("asoc", NULL);
2564 if (IS_ERR(debugfs_root) || !debugfs_root) {
2565 printk(KERN_WARNING
2566 "ASoC: Failed to create debugfs directory\n");
2567 debugfs_root = NULL;
2568 }
2569#endif
2570
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002571 return platform_driver_register(&soc_driver);
2572}
2573
Mark Brown7d8c16a2008-11-30 22:11:24 +00002574static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002575{
Mark Brown384c89e2008-12-03 17:34:03 +00002576#ifdef CONFIG_DEBUG_FS
2577 debugfs_remove_recursive(debugfs_root);
2578#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02002579 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002580}
2581
2582module_init(snd_soc_init);
2583module_exit(snd_soc_exit);
2584
2585/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01002586MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002587MODULE_DESCRIPTION("ALSA SoC Core");
2588MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02002589MODULE_ALIAS("platform:soc-audio");