blob: 8926d38fc5a32c1cca592c1144fb2ac7095afc88 [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.
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00006 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
Liam Girdwood0664d882006-12-18 14:39:02 +01008 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01009 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +010010 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020012 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020018 * TODO:
19 * o Add hw rules to enforce rates, etc.
20 * o More testing with other codecs/machines.
21 * o Add more codecs and platforms to ensure good API coverage.
22 * o Support TDM on PCM and I2S
23 */
24
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/pm.h>
30#include <linux/bitops.h>
Troy Kisky12ef1932008-10-13 17:42:14 -070031#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020032#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Marek Vasut474828a2009-07-22 13:01:03 +020034#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020035#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000036#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020037#include <sound/pcm.h>
38#include <sound/pcm_params.h>
39#include <sound/soc.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040#include <sound/initval.h>
41
Mark Browna8b1d342010-11-03 18:05:58 -040042#define CREATE_TRACE_POINTS
43#include <trace/events/asoc.h>
44
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000045#define NAME_SIZE 32
46
Frank Mandarinodb2a4162006-10-06 18:31:09 +020047static DEFINE_MUTEX(pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +020048static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
49
Mark Brown384c89e2008-12-03 17:34:03 +000050#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000051struct dentry *snd_soc_debugfs_root;
52EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000053#endif
54
Mark Brownc5af3a22008-11-28 13:29:45 +000055static DEFINE_MUTEX(client_mutex);
56static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000057static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000058static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000059static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000060
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000061static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
Mark Brownc5af3a22008-11-28 13:29:45 +000062
Frank Mandarinodb2a4162006-10-06 18:31:09 +020063/*
64 * This is a timeout to do a DAPM powerdown after a stream is closed().
65 * It can be used to eliminate pops between different playback streams, e.g.
66 * between two audio tracks.
67 */
68static int pmdown_time = 5000;
69module_param(pmdown_time, int, 0);
70MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
71
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000072/* returns the minimum number of bytes needed to represent
73 * a particular given value */
74static int min_bytes_needed(unsigned long val)
75{
76 int c = 0;
77 int i;
78
79 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
80 if (val & (1UL << i))
81 break;
82 c = (sizeof val * 8) - c;
83 if (!c || (c % 8))
84 c = (c + 8) / 8;
85 else
86 c /= 8;
87 return c;
88}
89
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000090/* fill buf which is 'len' bytes with a formatted
91 * string of the form 'reg: value\n' */
92static int format_register_str(struct snd_soc_codec *codec,
93 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +000094{
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000095 int wordsize = codec->driver->reg_word_size * 2;
96 int regsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
97 int ret;
98 char tmpbuf[len + 1];
99 char regbuf[regsize + 1];
100
101 /* since tmpbuf is allocated on the stack, warn the callers if they
102 * try to abuse this function */
103 WARN_ON(len > 63);
104
105 /* +2 for ': ' and + 1 for '\n' */
106 if (wordsize + regsize + 2 + 1 != len)
107 return -EINVAL;
108
109 ret = snd_soc_read(codec , reg);
110 if (ret < 0) {
111 memset(regbuf, 'X', regsize);
112 regbuf[regsize] = '\0';
113 } else {
114 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
115 }
116
117 /* prepare the buffer */
118 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
119 /* copy it back to the caller without the '\0' */
120 memcpy(buf, tmpbuf, len);
121
122 return 0;
123}
124
125/* codec register dump */
126static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
127 size_t count, loff_t pos)
128{
129 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000130 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000131 int len;
132 size_t total = 0;
133 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000134
135 wordsize = codec->driver->reg_word_size * 2;
136 regsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000137
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000138 len = wordsize + regsize + 2 + 1;
139
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000140 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000141 return 0;
142
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000143 if (codec->driver->reg_cache_step)
144 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000145
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000146 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +0000147 if (codec->readable_register && !codec->readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +0000148 continue;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000149 if (codec->driver->display_register) {
150 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +0000151 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +0100152 } else {
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000153 /* only support larger than PAGE_SIZE bytes debugfs
154 * entries for the default case */
155 if (p >= pos) {
156 if (total + len >= count - 1)
157 break;
158 format_register_str(codec, i, buf + total, len);
159 total += len;
160 }
161 p += len;
Mark Brown5164d742010-07-14 16:14:33 +0100162 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000163 }
164
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000165 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000166
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000167 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000168}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000169
Mark Brown2624d5f2009-11-03 21:56:13 +0000170static ssize_t codec_reg_show(struct device *dev,
171 struct device_attribute *attr, char *buf)
172{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000173 struct snd_soc_pcm_runtime *rtd =
174 container_of(dev, struct snd_soc_pcm_runtime, dev);
175
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000176 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000177}
178
179static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
180
Mark Browndbe21402010-02-12 11:37:24 +0000181static ssize_t pmdown_time_show(struct device *dev,
182 struct device_attribute *attr, char *buf)
183{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000184 struct snd_soc_pcm_runtime *rtd =
185 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Browndbe21402010-02-12 11:37:24 +0000186
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000187 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000188}
189
190static ssize_t pmdown_time_set(struct device *dev,
191 struct device_attribute *attr,
192 const char *buf, size_t count)
193{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000194 struct snd_soc_pcm_runtime *rtd =
195 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Brownc593b522010-10-27 20:11:17 -0700196 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000197
Mark Brownc593b522010-10-27 20:11:17 -0700198 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
199 if (ret)
200 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000201
202 return count;
203}
204
205static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
206
Mark Brown2624d5f2009-11-03 21:56:13 +0000207#ifdef CONFIG_DEBUG_FS
208static int codec_reg_open_file(struct inode *inode, struct file *file)
209{
210 file->private_data = inode->i_private;
211 return 0;
212}
213
214static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000215 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000216{
217 ssize_t ret;
218 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000219 char *buf;
220
221 if (*ppos < 0 || !count)
222 return -EINVAL;
223
224 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000225 if (!buf)
226 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000227
228 ret = soc_codec_reg_show(codec, buf, count, *ppos);
229 if (ret >= 0) {
230 if (copy_to_user(user_buf, buf, ret)) {
231 kfree(buf);
232 return -EFAULT;
233 }
234 *ppos += ret;
235 }
236
Mark Brown2624d5f2009-11-03 21:56:13 +0000237 kfree(buf);
238 return ret;
239}
240
241static ssize_t codec_reg_write_file(struct file *file,
242 const char __user *user_buf, size_t count, loff_t *ppos)
243{
244 char buf[32];
245 int buf_size;
246 char *start = buf;
247 unsigned long reg, value;
248 int step = 1;
249 struct snd_soc_codec *codec = file->private_data;
250
251 buf_size = min(count, (sizeof(buf)-1));
252 if (copy_from_user(buf, user_buf, buf_size))
253 return -EFAULT;
254 buf[buf_size] = 0;
255
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000256 if (codec->driver->reg_cache_step)
257 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000258
259 while (*start == ' ')
260 start++;
261 reg = simple_strtoul(start, &start, 16);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000262 if ((reg >= codec->driver->reg_cache_size) || (reg % step))
Mark Brown2624d5f2009-11-03 21:56:13 +0000263 return -EINVAL;
264 while (*start == ' ')
265 start++;
266 if (strict_strtoul(start, 16, &value))
267 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000268
269 /* Userspace has been fiddling around behind the kernel's back */
270 add_taint(TAINT_USER);
271
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000272 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000273 return buf_size;
274}
275
276static const struct file_operations codec_reg_fops = {
277 .open = codec_reg_open_file,
278 .read = codec_reg_read_file,
279 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200280 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000281};
282
283static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
284{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200285 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
286
287 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
288 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000289 if (!codec->debugfs_codec_root) {
290 printk(KERN_WARNING
291 "ASoC: Failed to create codec debugfs directory\n");
292 return;
293 }
294
Mark Brownaaee8ef2011-01-26 20:53:50 +0000295 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
296 &codec->cache_sync);
297 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
298 &codec->cache_only);
299
Mark Brown2624d5f2009-11-03 21:56:13 +0000300 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
301 codec->debugfs_codec_root,
302 codec, &codec_reg_fops);
303 if (!codec->debugfs_reg)
304 printk(KERN_WARNING
305 "ASoC: Failed to create codec register debugfs file\n");
306
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200307 codec->dapm.debugfs_dapm = debugfs_create_dir("dapm",
Mark Brown2624d5f2009-11-03 21:56:13 +0000308 codec->debugfs_codec_root);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200309 if (!codec->dapm.debugfs_dapm)
Mark Brown2624d5f2009-11-03 21:56:13 +0000310 printk(KERN_WARNING
311 "Failed to create DAPM debugfs directory\n");
312
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200313 snd_soc_dapm_debugfs_init(&codec->dapm);
Mark Brown2624d5f2009-11-03 21:56:13 +0000314}
315
316static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
317{
318 debugfs_remove_recursive(codec->debugfs_codec_root);
319}
320
Mark Brownc3c5a192010-09-15 18:15:14 +0100321static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
322 size_t count, loff_t *ppos)
323{
324 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100325 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100326 struct snd_soc_codec *codec;
327
328 if (!buf)
329 return -ENOMEM;
330
Mark Brown2b194f9d2010-10-13 10:52:16 +0100331 list_for_each_entry(codec, &codec_list, list) {
332 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
333 codec->name);
334 if (len >= 0)
335 ret += len;
336 if (ret > PAGE_SIZE) {
337 ret = PAGE_SIZE;
338 break;
339 }
340 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100341
342 if (ret >= 0)
343 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
344
345 kfree(buf);
346
347 return ret;
348}
349
350static const struct file_operations codec_list_fops = {
351 .read = codec_list_read_file,
352 .llseek = default_llseek,/* read accesses f_pos */
353};
354
Mark Brownf3208782010-09-15 18:19:07 +0100355static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
356 size_t count, loff_t *ppos)
357{
358 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100359 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100360 struct snd_soc_dai *dai;
361
362 if (!buf)
363 return -ENOMEM;
364
Mark Brown2b194f9d2010-10-13 10:52:16 +0100365 list_for_each_entry(dai, &dai_list, list) {
366 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
367 if (len >= 0)
368 ret += len;
369 if (ret > PAGE_SIZE) {
370 ret = PAGE_SIZE;
371 break;
372 }
373 }
Mark Brownf3208782010-09-15 18:19:07 +0100374
Mark Brown2b194f9d2010-10-13 10:52:16 +0100375 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100376
377 kfree(buf);
378
379 return ret;
380}
381
382static const struct file_operations dai_list_fops = {
383 .read = dai_list_read_file,
384 .llseek = default_llseek,/* read accesses f_pos */
385};
386
Mark Brown19c7ac22010-09-15 18:22:40 +0100387static ssize_t platform_list_read_file(struct file *file,
388 char __user *user_buf,
389 size_t count, loff_t *ppos)
390{
391 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100392 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100393 struct snd_soc_platform *platform;
394
395 if (!buf)
396 return -ENOMEM;
397
Mark Brown2b194f9d2010-10-13 10:52:16 +0100398 list_for_each_entry(platform, &platform_list, list) {
399 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
400 platform->name);
401 if (len >= 0)
402 ret += len;
403 if (ret > PAGE_SIZE) {
404 ret = PAGE_SIZE;
405 break;
406 }
407 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100408
Mark Brown2b194f9d2010-10-13 10:52:16 +0100409 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100410
411 kfree(buf);
412
413 return ret;
414}
415
416static const struct file_operations platform_list_fops = {
417 .read = platform_list_read_file,
418 .llseek = default_llseek,/* read accesses f_pos */
419};
420
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200421static void soc_init_card_debugfs(struct snd_soc_card *card)
422{
423 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000424 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200425 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200426 dev_warn(card->dev,
427 "ASoC: Failed to create codec debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200428 return;
429 }
430
431 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
432 card->debugfs_card_root,
433 &card->pop_time);
434 if (!card->debugfs_pop_time)
435 dev_warn(card->dev,
436 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200437}
438
439static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
440{
441 debugfs_remove_recursive(card->debugfs_card_root);
442}
443
Mark Brown2624d5f2009-11-03 21:56:13 +0000444#else
445
446static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
447{
448}
449
450static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
451{
452}
Axel Linb95fccb2010-11-09 17:06:44 +0800453
454static inline void soc_init_card_debugfs(struct snd_soc_card *card)
455{
456}
457
458static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
459{
460}
Mark Brown2624d5f2009-11-03 21:56:13 +0000461#endif
462
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200463#ifdef CONFIG_SND_SOC_AC97_BUS
464/* unregister ac97 codec */
465static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
466{
467 if (codec->ac97->dev.bus)
468 device_unregister(&codec->ac97->dev);
469 return 0;
470}
471
472/* stop no dev release warning */
473static void soc_ac97_device_release(struct device *dev){}
474
475/* register ac97 codec to bus */
476static int soc_ac97_dev_register(struct snd_soc_codec *codec)
477{
478 int err;
479
480 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100481 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200482 codec->ac97->dev.release = soc_ac97_device_release;
483
Kay Sieversbb072bf2008-11-02 03:50:35 +0100484 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000485 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200486 err = device_register(&codec->ac97->dev);
487 if (err < 0) {
488 snd_printk(KERN_ERR "Can't register ac97 bus\n");
489 codec->ac97->dev.bus = NULL;
490 return err;
491 }
492 return 0;
493}
494#endif
495
Mark Brown06f409d2009-04-07 18:10:13 +0100496static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
497{
498 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000499 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
500 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Mark Brown06f409d2009-04-07 18:10:13 +0100501 int ret;
502
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000503 if (codec_dai->driver->symmetric_rates || cpu_dai->driver->symmetric_rates ||
504 rtd->dai_link->symmetric_rates) {
505 dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n",
506 rtd->rate);
Mark Brown06f409d2009-04-07 18:10:13 +0100507
508 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
509 SNDRV_PCM_HW_PARAM_RATE,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000510 rtd->rate,
511 rtd->rate);
Mark Brown06f409d2009-04-07 18:10:13 +0100512 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000513 dev_err(&rtd->dev,
Mark Brown06f409d2009-04-07 18:10:13 +0100514 "Unable to apply rate symmetry constraint: %d\n", ret);
515 return ret;
516 }
517 }
518
519 return 0;
520}
521
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200522/*
523 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
524 * then initialized and any private data can be allocated. This also calls
525 * startup for the cpu DAI, platform, machine and codec DAI.
526 */
527static int soc_pcm_open(struct snd_pcm_substream *substream)
528{
529 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200530 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000531 struct snd_soc_platform *platform = rtd->platform;
532 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
533 struct snd_soc_dai *codec_dai = rtd->codec_dai;
534 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
535 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200536 int ret = 0;
537
538 mutex_lock(&pcm_mutex);
539
540 /* startup the audio subsystem */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000541 if (cpu_dai->driver->ops->startup) {
542 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200543 if (ret < 0) {
544 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100545 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200546 goto out;
547 }
548 }
549
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000550 if (platform->driver->ops->open) {
551 ret = platform->driver->ops->open(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200552 if (ret < 0) {
553 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
554 goto platform_err;
555 }
556 }
557
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000558 if (codec_dai->driver->ops->startup) {
559 ret = codec_dai->driver->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100560 if (ret < 0) {
561 printk(KERN_ERR "asoc: can't open codec %s\n",
562 codec_dai->name);
563 goto codec_dai_err;
564 }
565 }
566
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000567 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
568 ret = rtd->dai_link->ops->startup(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200569 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000570 printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200571 goto machine_err;
572 }
573 }
574
Mark Browna00f90f2010-12-02 16:24:24 +0000575 /* Check that the codec and cpu DAIs are compatible */
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200576 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
577 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000578 max(codec_dai_drv->playback.rate_min,
579 cpu_dai_drv->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200580 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000581 min(codec_dai_drv->playback.rate_max,
582 cpu_dai_drv->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200583 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000584 max(codec_dai_drv->playback.channels_min,
585 cpu_dai_drv->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200586 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000587 min(codec_dai_drv->playback.channels_max,
588 cpu_dai_drv->playback.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100589 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000590 codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100591 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000592 codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates;
593 if (codec_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900594 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000595 runtime->hw.rates |= cpu_dai_drv->playback.rates;
596 if (cpu_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900597 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000598 runtime->hw.rates |= codec_dai_drv->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200599 } else {
600 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000601 max(codec_dai_drv->capture.rate_min,
602 cpu_dai_drv->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200603 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000604 min(codec_dai_drv->capture.rate_max,
605 cpu_dai_drv->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200606 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000607 max(codec_dai_drv->capture.channels_min,
608 cpu_dai_drv->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200609 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000610 min(codec_dai_drv->capture.channels_max,
611 cpu_dai_drv->capture.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100612 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000613 codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100614 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000615 codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates;
616 if (codec_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900617 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000618 runtime->hw.rates |= cpu_dai_drv->capture.rates;
619 if (cpu_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900620 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000621 runtime->hw.rates |= codec_dai_drv->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200622 }
623
624 snd_pcm_limit_hw_rates(runtime);
625 if (!runtime->hw.rates) {
626 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100627 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900628 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200629 }
630 if (!runtime->hw.formats) {
631 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100632 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900633 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200634 }
635 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
636 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000637 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900638 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200639 }
640
Mark Brown06f409d2009-04-07 18:10:13 +0100641 /* Symmetry only applies if we've already got an active stream. */
642 if (cpu_dai->active || codec_dai->active) {
643 ret = soc_pcm_apply_symmetry(substream);
644 if (ret != 0)
Jassi Brarbb1c0472010-02-25 11:24:53 +0900645 goto config_err;
Mark Brown06f409d2009-04-07 18:10:13 +0100646 }
647
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000648 pr_debug("asoc: %s <-> %s info:\n",
649 codec_dai->name, cpu_dai->name);
Mark Brownf24368c2008-10-21 21:45:08 +0100650 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
651 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
652 runtime->hw.channels_max);
653 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
654 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200655
Jassi Brar14dc5732010-02-26 09:12:32 +0900656 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000657 cpu_dai->playback_active++;
658 codec_dai->playback_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900659 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000660 cpu_dai->capture_active++;
661 codec_dai->capture_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900662 }
663 cpu_dai->active++;
664 codec_dai->active++;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000665 rtd->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200666 mutex_unlock(&pcm_mutex);
667 return 0;
668
Jassi Brarbb1c0472010-02-25 11:24:53 +0900669config_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000670 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
671 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200672
Jassi Brarbb1c0472010-02-25 11:24:53 +0900673machine_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000674 if (codec_dai->driver->ops->shutdown)
675 codec_dai->driver->ops->shutdown(substream, codec_dai);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900676
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100677codec_dai_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000678 if (platform->driver->ops->close)
679 platform->driver->ops->close(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200680
681platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000682 if (cpu_dai->driver->ops->shutdown)
683 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200684out:
685 mutex_unlock(&pcm_mutex);
686 return ret;
687}
688
689/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200690 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200691 * This is to ensure there are no pops or clicks in between any music tracks
692 * due to DAPM power cycling.
693 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100694static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200695{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000696 struct snd_soc_pcm_runtime *rtd =
697 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
698 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200699
700 mutex_lock(&pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200701
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000702 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
703 codec_dai->driver->playback.stream_name,
704 codec_dai->playback_active ? "active" : "inactive",
705 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200706
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000707 /* are we waiting on this codec DAI stream */
708 if (codec_dai->pop_wait == 1) {
709 codec_dai->pop_wait = 0;
710 snd_soc_dapm_stream_event(rtd,
711 codec_dai->driver->playback.stream_name,
712 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200713 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000714
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200715 mutex_unlock(&pcm_mutex);
716}
717
718/*
719 * Called by ALSA when a PCM substream is closed. Private data can be
720 * freed here. The cpu DAI, codec DAI, machine and platform are also
721 * shutdown.
722 */
723static int soc_codec_close(struct snd_pcm_substream *substream)
724{
725 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000726 struct snd_soc_platform *platform = rtd->platform;
727 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
728 struct snd_soc_dai *codec_dai = rtd->codec_dai;
729 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200730
731 mutex_lock(&pcm_mutex);
732
Jassi Brar14dc5732010-02-26 09:12:32 +0900733 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000734 cpu_dai->playback_active--;
735 codec_dai->playback_active--;
Jassi Brar14dc5732010-02-26 09:12:32 +0900736 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000737 cpu_dai->capture_active--;
738 codec_dai->capture_active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200739 }
Jassi Brar14dc5732010-02-26 09:12:32 +0900740
741 cpu_dai->active--;
742 codec_dai->active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200743 codec->active--;
744
Mark Brown6010b2d2008-09-06 18:33:24 +0100745 /* Muting the DAC suppresses artifacts caused during digital
746 * shutdown, for example from stopping clocks.
747 */
748 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
749 snd_soc_dai_digital_mute(codec_dai, 1);
750
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000751 if (cpu_dai->driver->ops->shutdown)
752 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200753
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000754 if (codec_dai->driver->ops->shutdown)
755 codec_dai->driver->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200756
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000757 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
758 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200759
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000760 if (platform->driver->ops->close)
761 platform->driver->ops->close(substream);
762 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200763
764 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
765 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100766 codec_dai->pop_wait = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000767 schedule_delayed_work(&rtd->delayed_work,
768 msecs_to_jiffies(rtd->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200769 } else {
770 /* capture streams can be powered down now */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000771 snd_soc_dapm_stream_event(rtd,
772 codec_dai->driver->capture.stream_name,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100773 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200774 }
775
776 mutex_unlock(&pcm_mutex);
777 return 0;
778}
779
780/*
781 * Called by ALSA when the PCM substream is prepared, can set format, sample
782 * rate, etc. This function is non atomic and can be called multiple times,
783 * it can refer to the runtime info.
784 */
785static int soc_pcm_prepare(struct snd_pcm_substream *substream)
786{
787 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000788 struct snd_soc_platform *platform = rtd->platform;
789 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
790 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200791 int ret = 0;
792
793 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100794
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000795 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
796 ret = rtd->dai_link->ops->prepare(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100797 if (ret < 0) {
798 printk(KERN_ERR "asoc: machine prepare error\n");
799 goto out;
800 }
801 }
802
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000803 if (platform->driver->ops->prepare) {
804 ret = platform->driver->ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200805 if (ret < 0) {
806 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200807 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200808 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200809 }
810
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000811 if (codec_dai->driver->ops->prepare) {
812 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200813 if (ret < 0) {
814 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200815 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200816 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200817 }
818
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000819 if (cpu_dai->driver->ops->prepare) {
820 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100821 if (ret < 0) {
822 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
823 goto out;
824 }
825 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200826
Mark Brownd45f6212008-10-14 13:58:36 +0100827 /* cancel any delayed stream shutdown that is pending */
828 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
829 codec_dai->pop_wait) {
830 codec_dai->pop_wait = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000831 cancel_delayed_work(&rtd->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100832 }
833
Mark Brown452c5ea2009-05-17 21:41:23 +0100834 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000835 snd_soc_dapm_stream_event(rtd,
836 codec_dai->driver->playback.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100837 SND_SOC_DAPM_STREAM_START);
838 else
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000839 snd_soc_dapm_stream_event(rtd,
840 codec_dai->driver->capture.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100841 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100842
Mark Brown452c5ea2009-05-17 21:41:23 +0100843 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200844
845out:
846 mutex_unlock(&pcm_mutex);
847 return ret;
848}
849
850/*
851 * Called by ALSA when the hardware params are set by application. This
852 * function can also be called multiple times and can allocate buffers
853 * (using snd_pcm_lib_* ). It's non-atomic.
854 */
855static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
856 struct snd_pcm_hw_params *params)
857{
858 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000859 struct snd_soc_platform *platform = rtd->platform;
860 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
861 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200862 int ret = 0;
863
864 mutex_lock(&pcm_mutex);
865
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000866 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
867 ret = rtd->dai_link->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200868 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100869 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200870 goto out;
871 }
872 }
873
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000874 if (codec_dai->driver->ops->hw_params) {
875 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100876 if (ret < 0) {
877 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
878 codec_dai->name);
879 goto codec_err;
880 }
881 }
882
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000883 if (cpu_dai->driver->ops->hw_params) {
884 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200885 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200886 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100887 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200888 goto interface_err;
889 }
890 }
891
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000892 if (platform->driver->ops->hw_params) {
893 ret = platform->driver->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200894 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200895 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200896 platform->name);
897 goto platform_err;
898 }
899 }
900
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000901 rtd->rate = params_rate(params);
Mark Brown06f409d2009-04-07 18:10:13 +0100902
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200903out:
904 mutex_unlock(&pcm_mutex);
905 return ret;
906
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200907platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000908 if (cpu_dai->driver->ops->hw_free)
909 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200910
911interface_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000912 if (codec_dai->driver->ops->hw_free)
913 codec_dai->driver->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100914
915codec_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000916 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
917 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200918
919 mutex_unlock(&pcm_mutex);
920 return ret;
921}
922
923/*
Mark Browna00f90f2010-12-02 16:24:24 +0000924 * Frees resources allocated by hw_params, can be called multiple times
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200925 */
926static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
927{
928 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000929 struct snd_soc_platform *platform = rtd->platform;
930 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
931 struct snd_soc_dai *codec_dai = rtd->codec_dai;
932 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200933
934 mutex_lock(&pcm_mutex);
935
936 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100937 if (!codec->active)
938 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200939
940 /* free any machine hw params */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000941 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
942 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200943
944 /* free any DMA resources */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000945 if (platform->driver->ops->hw_free)
946 platform->driver->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200947
Mark Browna00f90f2010-12-02 16:24:24 +0000948 /* now free hw params for the DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000949 if (codec_dai->driver->ops->hw_free)
950 codec_dai->driver->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200951
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000952 if (cpu_dai->driver->ops->hw_free)
953 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200954
955 mutex_unlock(&pcm_mutex);
956 return 0;
957}
958
959static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
960{
961 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000962 struct snd_soc_platform *platform = rtd->platform;
963 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
964 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200965 int ret;
966
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000967 if (codec_dai->driver->ops->trigger) {
968 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200969 if (ret < 0)
970 return ret;
971 }
972
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000973 if (platform->driver->ops->trigger) {
974 ret = platform->driver->ops->trigger(substream, cmd);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200975 if (ret < 0)
976 return ret;
977 }
978
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000979 if (cpu_dai->driver->ops->trigger) {
980 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200981 if (ret < 0)
982 return ret;
983 }
984 return 0;
985}
986
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200987/*
988 * soc level wrapper for pointer callback
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200989 * If cpu_dai, codec_dai, platform driver has the delay callback, than
990 * the runtime->delay will be updated accordingly.
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200991 */
992static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
993{
994 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000995 struct snd_soc_platform *platform = rtd->platform;
996 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
997 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200998 struct snd_pcm_runtime *runtime = substream->runtime;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200999 snd_pcm_uframes_t offset = 0;
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001000 snd_pcm_sframes_t delay = 0;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001001
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001002 if (platform->driver->ops->pointer)
1003 offset = platform->driver->ops->pointer(substream);
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001004
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001005 if (cpu_dai->driver->ops->delay)
1006 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001007
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001008 if (codec_dai->driver->ops->delay)
1009 delay += codec_dai->driver->ops->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001010
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001011 if (platform->driver->delay)
1012 delay += platform->driver->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001013
1014 runtime->delay = delay;
1015
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001016 return offset;
1017}
1018
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001019/* ASoC PCM operations */
1020static struct snd_pcm_ops soc_pcm_ops = {
1021 .open = soc_pcm_open,
1022 .close = soc_codec_close,
1023 .hw_params = soc_pcm_hw_params,
1024 .hw_free = soc_pcm_hw_free,
1025 .prepare = soc_pcm_prepare,
1026 .trigger = soc_pcm_trigger,
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001027 .pointer = soc_pcm_pointer,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001028};
1029
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001030#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001031/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001032int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001033{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001034 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001035 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001036 int i;
1037
Daniel Macke3509ff2009-06-03 17:44:49 +02001038 /* If the initialization of this soc device failed, there is no codec
1039 * associated with it. Just bail out in this case.
1040 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001041 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +02001042 return 0;
1043
Andy Green6ed25972008-06-13 16:24:05 +01001044 /* Due to the resume being scheduled into a workqueue we could
1045 * suspend before that's finished - wait for it to complete.
1046 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001047 snd_power_lock(card->snd_card);
1048 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
1049 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +01001050
1051 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001052 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +01001053
Mark Browna00f90f2010-12-02 16:24:24 +00001054 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001055 for (i = 0; i < card->num_rtd; i++) {
1056 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1057 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001058
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001059 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001060 continue;
1061
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001062 if (drv->ops->digital_mute && dai->playback_active)
1063 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001064 }
1065
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001066 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001067 for (i = 0; i < card->num_rtd; i++) {
1068 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001069 continue;
1070
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001071 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +01001072 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001073
Mark Brown87506542008-11-18 20:50:34 +00001074 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001075 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001076
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001077 for (i = 0; i < card->num_rtd; i++) {
1078 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1079 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001080
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001081 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001082 continue;
1083
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001084 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
1085 cpu_dai->driver->suspend(cpu_dai);
1086 if (platform->driver->suspend && !platform->suspended) {
1087 platform->driver->suspend(cpu_dai);
1088 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +01001089 }
1090 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001091
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001092 /* close any waiting streams and save state */
1093 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +01001094 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001095 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001096 }
Mark Brown3efab7d2010-05-09 13:25:43 +01001097
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001098 for (i = 0; i < card->num_rtd; i++) {
1099 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1100
1101 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001102 continue;
1103
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001104 if (driver->playback.stream_name != NULL)
1105 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1106 SND_SOC_DAPM_STREAM_SUSPEND);
1107
1108 if (driver->capture.stream_name != NULL)
1109 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1110 SND_SOC_DAPM_STREAM_SUSPEND);
1111 }
1112
1113 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001114 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001115 /* If there are paths active then the CODEC will be held with
1116 * bias _ON and should not be suspended. */
1117 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001118 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001119 case SND_SOC_BIAS_STANDBY:
1120 case SND_SOC_BIAS_OFF:
1121 codec->driver->suspend(codec, PMSG_SUSPEND);
1122 codec->suspended = 1;
1123 break;
1124 default:
1125 dev_dbg(codec->dev, "CODEC is on over suspend\n");
1126 break;
1127 }
1128 }
1129 }
1130
1131 for (i = 0; i < card->num_rtd; i++) {
1132 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1133
1134 if (card->rtd[i].dai_link->ignore_suspend)
1135 continue;
1136
1137 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
1138 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001139 }
1140
Mark Brown87506542008-11-18 20:50:34 +00001141 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001142 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001143
1144 return 0;
1145}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001146EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001147
Andy Green6ed25972008-06-13 16:24:05 +01001148/* deferred resume work, so resume can complete before we finished
1149 * setting our codec back up, which can be very slow on I2C
1150 */
1151static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001152{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001153 struct snd_soc_card *card =
1154 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001155 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001156 int i;
1157
Andy Green6ed25972008-06-13 16:24:05 +01001158 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1159 * so userspace apps are blocked from touching us
1160 */
1161
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001162 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +01001163
Mark Brown99497882010-05-07 20:24:05 +01001164 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001165 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +01001166
Mark Brown87506542008-11-18 20:50:34 +00001167 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001168 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001169
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001170 /* resume AC97 DAIs */
1171 for (i = 0; i < card->num_rtd; i++) {
1172 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +01001173
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001175 continue;
1176
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001177 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
1178 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001179 }
1180
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001181 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001182 /* If the CODEC was idle over suspend then it will have been
1183 * left with bias OFF or STANDBY and suspended so we must now
1184 * resume. Otherwise the suspend was suppressed.
1185 */
1186 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001187 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001188 case SND_SOC_BIAS_STANDBY:
1189 case SND_SOC_BIAS_OFF:
1190 codec->driver->resume(codec);
1191 codec->suspended = 0;
1192 break;
1193 default:
1194 dev_dbg(codec->dev, "CODEC was on over suspend\n");
1195 break;
1196 }
Mark Brown1547aba2010-05-07 21:11:40 +01001197 }
1198 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001199
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001200 for (i = 0; i < card->num_rtd; i++) {
1201 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001202
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001203 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001204 continue;
1205
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001206 if (driver->playback.stream_name != NULL)
1207 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001208 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001209
1210 if (driver->capture.stream_name != NULL)
1211 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001212 SND_SOC_DAPM_STREAM_RESUME);
1213 }
1214
Mark Brown3ff3f642008-05-19 12:32:25 +02001215 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001216 for (i = 0; i < card->num_rtd; i++) {
1217 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1218 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001219
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001220 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001221 continue;
1222
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001223 if (drv->ops->digital_mute && dai->playback_active)
1224 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001225 }
1226
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001227 for (i = 0; i < card->num_rtd; i++) {
1228 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1229 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001230
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001231 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001232 continue;
1233
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001234 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
1235 cpu_dai->driver->resume(cpu_dai);
1236 if (platform->driver->resume && platform->suspended) {
1237 platform->driver->resume(cpu_dai);
1238 platform->suspended = 0;
1239 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001240 }
1241
Mark Brown87506542008-11-18 20:50:34 +00001242 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001243 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001244
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001245 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +01001246
1247 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001248 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +01001249}
1250
1251/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001252int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +01001253{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001254 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001255 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +02001256
Mark Brown64ab9ba2009-03-31 11:27:03 +01001257 /* AC97 devices might have other drivers hanging off them so
1258 * need to resume immediately. Other drivers don't have that
1259 * problem and may take a substantial amount of time to resume
1260 * due to I/O costs and anti-pop so handle them out of line.
1261 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001262 for (i = 0; i < card->num_rtd; i++) {
1263 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1264 if (cpu_dai->driver->ac97_control) {
1265 dev_dbg(dev, "Resuming AC97 immediately\n");
1266 soc_resume_deferred(&card->deferred_resume_work);
1267 } else {
1268 dev_dbg(dev, "Scheduling resume work\n");
1269 if (!schedule_work(&card->deferred_resume_work))
1270 dev_err(dev, "resume work item may be lost\n");
1271 }
Mark Brown64ab9ba2009-03-31 11:27:03 +01001272 }
Andy Green6ed25972008-06-13 16:24:05 +01001273
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001274 return 0;
1275}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001276EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001277#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001278#define snd_soc_suspend NULL
1279#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001280#endif
1281
Barry Song02a06d32009-10-16 18:13:38 +08001282static struct snd_soc_dai_ops null_dai_ops = {
1283};
1284
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001285static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001286{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001287 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1288 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +00001289 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001290 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001291 struct snd_soc_dai *codec_dai, *cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001292
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001293 if (rtd->complete)
1294 return 1;
1295 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +00001296
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001297 /* do we already have the CPU DAI for this link ? */
1298 if (rtd->cpu_dai) {
1299 goto find_codec;
1300 }
1301 /* no, then find CPU DAI from registered DAIs*/
1302 list_for_each_entry(cpu_dai, &dai_list, list) {
1303 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
1304
1305 if (!try_module_get(cpu_dai->dev->driver->owner))
1306 return -ENODEV;
1307
1308 rtd->cpu_dai = cpu_dai;
1309 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001310 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001311 }
1312 dev_dbg(card->dev, "CPU DAI %s not registered\n",
1313 dai_link->cpu_dai_name);
1314
1315find_codec:
1316 /* do we already have the CODEC for this link ? */
1317 if (rtd->codec) {
1318 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +00001319 }
1320
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001321 /* no, then find CODEC from registered CODECs*/
1322 list_for_each_entry(codec, &codec_list, list) {
1323 if (!strcmp(codec->name, dai_link->codec_name)) {
1324 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +00001325
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001326 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
1327 list_for_each_entry(codec_dai, &dai_list, list) {
1328 if (codec->dev == codec_dai->dev &&
1329 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
1330 rtd->codec_dai = codec_dai;
1331 goto find_platform;
Mark Brown6b05eda2008-12-08 19:26:48 +00001332 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001333 }
1334 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
1335 dai_link->codec_dai_name);
1336
1337 goto find_platform;
1338 }
1339 }
1340 dev_dbg(card->dev, "CODEC %s not registered\n",
1341 dai_link->codec_name);
1342
1343find_platform:
1344 /* do we already have the CODEC DAI for this link ? */
1345 if (rtd->platform) {
1346 goto out;
1347 }
1348 /* no, then find CPU DAI from registered DAIs*/
1349 list_for_each_entry(platform, &platform_list, list) {
1350 if (!strcmp(platform->name, dai_link->platform_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001351 rtd->platform = platform;
1352 goto out;
1353 }
1354 }
1355
1356 dev_dbg(card->dev, "platform %s not registered\n",
1357 dai_link->platform_name);
1358 return 0;
1359
1360out:
1361 /* mark rtd as complete if we found all 4 of our client devices */
1362 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
1363 rtd->complete = 1;
1364 card->num_rtd++;
1365 }
1366 return 1;
1367}
1368
Jarkko Nikula589c3562010-12-06 16:27:07 +02001369static void soc_remove_codec(struct snd_soc_codec *codec)
1370{
1371 int err;
1372
1373 if (codec->driver->remove) {
1374 err = codec->driver->remove(codec);
1375 if (err < 0)
1376 dev_err(codec->dev,
1377 "asoc: failed to remove %s: %d\n",
1378 codec->name, err);
1379 }
1380
1381 /* Make sure all DAPM widgets are freed */
1382 snd_soc_dapm_free(&codec->dapm);
1383
1384 soc_cleanup_codec_debugfs(codec);
1385 codec->probed = 0;
1386 list_del(&codec->card_list);
1387 module_put(codec->dev->driver->owner);
1388}
1389
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001390static void soc_remove_dai_link(struct snd_soc_card *card, int num)
1391{
1392 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1393 struct snd_soc_codec *codec = rtd->codec;
1394 struct snd_soc_platform *platform = rtd->platform;
1395 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1396 int err;
1397
1398 /* unregister the rtd device */
1399 if (rtd->dev_registered) {
1400 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001401 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001402 device_unregister(&rtd->dev);
1403 rtd->dev_registered = 0;
1404 }
1405
1406 /* remove the CODEC DAI */
1407 if (codec_dai && codec_dai->probed) {
1408 if (codec_dai->driver->remove) {
1409 err = codec_dai->driver->remove(codec_dai);
1410 if (err < 0)
1411 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
1412 }
1413 codec_dai->probed = 0;
1414 list_del(&codec_dai->card_list);
1415 }
1416
1417 /* remove the platform */
1418 if (platform && platform->probed) {
1419 if (platform->driver->remove) {
1420 err = platform->driver->remove(platform);
1421 if (err < 0)
1422 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
1423 }
1424 platform->probed = 0;
1425 list_del(&platform->card_list);
1426 module_put(platform->dev->driver->owner);
1427 }
1428
1429 /* remove the CODEC */
Jarkko Nikula589c3562010-12-06 16:27:07 +02001430 if (codec && codec->probed)
1431 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001432
1433 /* remove the cpu_dai */
1434 if (cpu_dai && cpu_dai->probed) {
1435 if (cpu_dai->driver->remove) {
1436 err = cpu_dai->driver->remove(cpu_dai);
1437 if (err < 0)
1438 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
1439 }
1440 cpu_dai->probed = 0;
1441 list_del(&cpu_dai->card_list);
1442 module_put(cpu_dai->dev->driver->owner);
1443 }
1444}
1445
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001446static void soc_set_name_prefix(struct snd_soc_card *card,
1447 struct snd_soc_codec *codec)
1448{
1449 int i;
1450
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001451 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001452 return;
1453
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001454 for (i = 0; i < card->num_configs; i++) {
1455 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001456 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1457 codec->name_prefix = map->name_prefix;
1458 break;
1459 }
1460 }
1461}
1462
Jarkko Nikula589c3562010-12-06 16:27:07 +02001463static int soc_probe_codec(struct snd_soc_card *card,
1464 struct snd_soc_codec *codec)
1465{
1466 int ret = 0;
1467
1468 codec->card = card;
1469 codec->dapm.card = card;
1470 soc_set_name_prefix(card, codec);
1471
Jarkko Nikula70d29332011-01-27 16:24:22 +02001472 if (!try_module_get(codec->dev->driver->owner))
1473 return -ENODEV;
1474
Jarkko Nikula589c3562010-12-06 16:27:07 +02001475 if (codec->driver->probe) {
1476 ret = codec->driver->probe(codec);
1477 if (ret < 0) {
1478 dev_err(codec->dev,
1479 "asoc: failed to probe CODEC %s: %d\n",
1480 codec->name, ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001481 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001482 }
1483 }
1484
1485 soc_init_codec_debugfs(codec);
1486
1487 /* mark codec as probed and add to card codec list */
1488 codec->probed = 1;
1489 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001490 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001491
Jarkko Nikula70d29332011-01-27 16:24:22 +02001492 return 0;
1493
1494err_probe:
1495 module_put(codec->dev->driver->owner);
1496
Jarkko Nikula589c3562010-12-06 16:27:07 +02001497 return ret;
1498}
1499
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001500static void rtd_release(struct device *dev) {}
1501
Jarkko Nikula589c3562010-12-06 16:27:07 +02001502static int soc_post_component_init(struct snd_soc_card *card,
1503 struct snd_soc_codec *codec,
1504 int num, int dailess)
1505{
1506 struct snd_soc_dai_link *dai_link = NULL;
1507 struct snd_soc_aux_dev *aux_dev = NULL;
1508 struct snd_soc_pcm_runtime *rtd;
1509 const char *temp, *name;
1510 int ret = 0;
1511
1512 if (!dailess) {
1513 dai_link = &card->dai_link[num];
1514 rtd = &card->rtd[num];
1515 name = dai_link->name;
1516 } else {
1517 aux_dev = &card->aux_dev[num];
1518 rtd = &card->rtd_aux[num];
1519 name = aux_dev->name;
1520 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001521 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001522
1523 /* machine controls, routes and widgets are not prefixed */
1524 temp = codec->name_prefix;
1525 codec->name_prefix = NULL;
1526
1527 /* do machine specific initialization */
1528 if (!dailess && dai_link->init)
1529 ret = dai_link->init(rtd);
1530 else if (dailess && aux_dev->init)
1531 ret = aux_dev->init(&codec->dapm);
1532 if (ret < 0) {
1533 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1534 return ret;
1535 }
1536 codec->name_prefix = temp;
1537
1538 /* Make sure all DAPM widgets are instantiated */
1539 snd_soc_dapm_new_widgets(&codec->dapm);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001540
1541 /* register the rtd device */
1542 rtd->codec = codec;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001543 rtd->dev.parent = card->dev;
1544 rtd->dev.release = rtd_release;
1545 rtd->dev.init_name = name;
1546 ret = device_register(&rtd->dev);
1547 if (ret < 0) {
1548 dev_err(card->dev,
1549 "asoc: failed to register runtime device: %d\n", ret);
1550 return ret;
1551 }
1552 rtd->dev_registered = 1;
1553
1554 /* add DAPM sysfs entries for this codec */
1555 ret = snd_soc_dapm_sys_add(&rtd->dev);
1556 if (ret < 0)
1557 dev_err(codec->dev,
1558 "asoc: failed to add codec dapm sysfs entries: %d\n",
1559 ret);
1560
1561 /* add codec sysfs entries */
1562 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1563 if (ret < 0)
1564 dev_err(codec->dev,
1565 "asoc: failed to add codec sysfs files: %d\n", ret);
1566
1567 return 0;
1568}
1569
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001570static int soc_probe_dai_link(struct snd_soc_card *card, int num)
1571{
1572 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1573 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1574 struct snd_soc_codec *codec = rtd->codec;
1575 struct snd_soc_platform *platform = rtd->platform;
1576 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1577 int ret;
1578
1579 dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num);
1580
1581 /* config components */
1582 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001583 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001584 codec_dai->card = card;
1585 cpu_dai->card = card;
1586
1587 /* set default power off timeout */
1588 rtd->pmdown_time = pmdown_time;
1589
1590 /* probe the cpu_dai */
1591 if (!cpu_dai->probed) {
1592 if (cpu_dai->driver->probe) {
1593 ret = cpu_dai->driver->probe(cpu_dai);
1594 if (ret < 0) {
1595 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1596 cpu_dai->name);
1597 return ret;
1598 }
1599 }
1600 cpu_dai->probed = 1;
1601 /* mark cpu_dai as probed and add to card cpu_dai list */
1602 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1603 }
1604
1605 /* probe the CODEC */
1606 if (!codec->probed) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001607 ret = soc_probe_codec(card, codec);
1608 if (ret < 0)
1609 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001610 }
1611
1612 /* probe the platform */
1613 if (!platform->probed) {
Jarkko Nikula70d29332011-01-27 16:24:22 +02001614 if (!try_module_get(platform->dev->driver->owner))
1615 return -ENODEV;
1616
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001617 if (platform->driver->probe) {
1618 ret = platform->driver->probe(platform);
1619 if (ret < 0) {
1620 printk(KERN_ERR "asoc: failed to probe platform %s\n",
1621 platform->name);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001622 module_put(platform->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001623 return ret;
1624 }
1625 }
1626 /* mark platform as probed and add to card platform list */
1627 platform->probed = 1;
1628 list_add(&platform->card_list, &card->platform_dev_list);
1629 }
1630
1631 /* probe the CODEC DAI */
1632 if (!codec_dai->probed) {
1633 if (codec_dai->driver->probe) {
1634 ret = codec_dai->driver->probe(codec_dai);
1635 if (ret < 0) {
1636 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1637 codec_dai->name);
1638 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001639 }
1640 }
1641
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001642 /* mark cpu_dai as probed and add to card cpu_dai list */
1643 codec_dai->probed = 1;
1644 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001645 }
1646
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001647 /* DAPM dai link stream work */
1648 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
1649
Jarkko Nikula589c3562010-12-06 16:27:07 +02001650 ret = soc_post_component_init(card, codec, num, 0);
1651 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001652 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001653
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001654 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1655 if (ret < 0)
1656 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1657
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001658 /* create the pcm */
1659 ret = soc_new_pcm(rtd, num);
1660 if (ret < 0) {
1661 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1662 return ret;
1663 }
1664
1665 /* add platform data for AC97 devices */
1666 if (rtd->codec_dai->driver->ac97_control)
1667 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1668
1669 return 0;
1670}
1671
1672#ifdef CONFIG_SND_SOC_AC97_BUS
1673static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1674{
1675 int ret;
1676
1677 /* Only instantiate AC97 if not already done by the adaptor
1678 * for the generic AC97 subsystem.
1679 */
1680 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001681 /*
1682 * It is possible that the AC97 device is already registered to
1683 * the device subsystem. This happens when the device is created
1684 * via snd_ac97_mixer(). Currently only SoC codec that does so
1685 * is the generic AC97 glue but others migh emerge.
1686 *
1687 * In those cases we don't try to register the device again.
1688 */
1689 if (!rtd->codec->ac97_created)
1690 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001691
1692 ret = soc_ac97_dev_register(rtd->codec);
1693 if (ret < 0) {
1694 printk(KERN_ERR "asoc: AC97 device register failed\n");
1695 return ret;
1696 }
1697
1698 rtd->codec->ac97_registered = 1;
1699 }
1700 return 0;
1701}
1702
1703static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1704{
1705 if (codec->ac97_registered) {
1706 soc_ac97_dev_unregister(codec);
1707 codec->ac97_registered = 0;
1708 }
1709}
1710#endif
1711
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001712static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1713{
1714 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001715 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001716 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001717
1718 /* find CODEC from registered CODECs*/
1719 list_for_each_entry(codec, &codec_list, list) {
1720 if (!strcmp(codec->name, aux_dev->codec_name)) {
1721 if (codec->probed) {
1722 dev_err(codec->dev,
1723 "asoc: codec already probed");
1724 ret = -EBUSY;
1725 goto out;
1726 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001727 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001728 }
1729 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001730 /* codec not found */
1731 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1732 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001733
Jarkko Nikula676ad982010-12-03 09:18:22 +02001734found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001735 ret = soc_probe_codec(card, codec);
1736 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001737 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001738
Jarkko Nikula589c3562010-12-06 16:27:07 +02001739 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001740
1741out:
1742 return ret;
1743}
1744
1745static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1746{
1747 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1748 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001749
1750 /* unregister the rtd device */
1751 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001752 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001753 device_unregister(&rtd->dev);
1754 rtd->dev_registered = 0;
1755 }
1756
Jarkko Nikula589c3562010-12-06 16:27:07 +02001757 if (codec && codec->probed)
1758 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001759}
1760
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001761static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1762 enum snd_soc_compress_type compress_type)
1763{
1764 int ret;
1765
1766 if (codec->cache_init)
1767 return 0;
1768
1769 /* override the compress_type if necessary */
1770 if (compress_type && codec->compress_type != compress_type)
1771 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001772 ret = snd_soc_cache_init(codec);
1773 if (ret < 0) {
1774 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1775 ret);
1776 return ret;
1777 }
1778 codec->cache_init = 1;
1779 return 0;
1780}
1781
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001782static void snd_soc_instantiate_card(struct snd_soc_card *card)
1783{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001784 struct snd_soc_codec *codec;
1785 struct snd_soc_codec_conf *codec_conf;
1786 enum snd_soc_compress_type compress_type;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001787 int ret, i;
1788
1789 mutex_lock(&card->mutex);
1790
1791 if (card->instantiated) {
1792 mutex_unlock(&card->mutex);
1793 return;
1794 }
1795
1796 /* bind DAIs */
1797 for (i = 0; i < card->num_links; i++)
1798 soc_bind_dai_link(card, i);
1799
1800 /* bind completed ? */
1801 if (card->num_rtd != card->num_links) {
1802 mutex_unlock(&card->mutex);
1803 return;
1804 }
1805
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001806 /* initialize the register cache for each available codec */
1807 list_for_each_entry(codec, &codec_list, list) {
1808 if (codec->cache_init)
1809 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001810 /* by default we don't override the compress_type */
1811 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001812 /* check to see if we need to override the compress_type */
1813 for (i = 0; i < card->num_configs; ++i) {
1814 codec_conf = &card->codec_conf[i];
1815 if (!strcmp(codec->name, codec_conf->dev_name)) {
1816 compress_type = codec_conf->compress_type;
1817 if (compress_type && compress_type
1818 != codec->compress_type)
1819 break;
1820 }
1821 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001822 ret = snd_soc_init_codec_cache(codec, compress_type);
1823 if (ret < 0) {
1824 mutex_unlock(&card->mutex);
1825 return;
1826 }
1827 }
1828
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001829 /* card bind complete so register a sound card */
1830 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1831 card->owner, 0, &card->snd_card);
1832 if (ret < 0) {
1833 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1834 card->name);
1835 mutex_unlock(&card->mutex);
1836 return;
1837 }
1838 card->snd_card->dev = card->dev;
1839
Mark Browne37a4972011-03-02 18:21:57 +00001840 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1841 card->dapm.dev = card->dev;
1842 card->dapm.card = card;
1843 list_add(&card->dapm.list, &card->dapm_list);
1844
Mark Brown88ee1c62011-02-02 10:43:26 +00001845#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001846 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001847 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001848#endif
Andy Green6ed25972008-06-13 16:24:05 +01001849
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001850 /* initialise the sound card only once */
1851 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001852 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001853 if (ret < 0)
1854 goto card_probe_error;
1855 }
1856
Mark Brownfe3e78e2009-11-03 22:13:13 +00001857 for (i = 0; i < card->num_links; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001858 ret = soc_probe_dai_link(card, i);
1859 if (ret < 0) {
Mark Brown321de0d2010-09-21 15:09:37 +01001860 pr_err("asoc: failed to instantiate card %s: %d\n",
1861 card->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001862 goto probe_dai_err;
1863 }
1864 }
1865
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001866 for (i = 0; i < card->num_aux_devs; i++) {
1867 ret = soc_probe_aux_dev(card, i);
1868 if (ret < 0) {
1869 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1870 card->name, ret);
1871 goto probe_aux_dev_err;
1872 }
1873 }
1874
Mark Brownb8ad29d2011-03-02 18:35:51 +00001875 if (card->dapm_widgets)
1876 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1877 card->num_dapm_widgets);
1878 if (card->dapm_routes)
1879 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1880 card->num_dapm_routes);
1881
Mark Browne37a4972011-03-02 18:21:57 +00001882 card->dapm.debugfs_dapm = debugfs_create_dir("dapm",
1883 card->debugfs_card_root);
1884 if (!card->dapm.debugfs_dapm)
1885 printk(KERN_WARNING
1886 "Failed to create card DAPM debugfs directory\n");
1887
1888 snd_soc_dapm_debugfs_init(&card->dapm);
1889
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001890 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1891 "%s", card->name);
1892 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1893 "%s", card->name);
1894
Mark Brown28e9ad92011-03-02 18:36:34 +00001895 if (card->late_probe) {
1896 ret = card->late_probe(card);
1897 if (ret < 0) {
1898 dev_err(card->dev, "%s late_probe() failed: %d\n",
1899 card->name, ret);
1900 goto probe_aux_dev_err;
1901 }
1902 }
1903
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001904 ret = snd_card_register(card->snd_card);
1905 if (ret < 0) {
1906 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001907 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001908 }
1909
1910#ifdef CONFIG_SND_SOC_AC97_BUS
1911 /* register any AC97 codecs */
1912 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001913 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1914 if (ret < 0) {
1915 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1916 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001917 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001918 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001919 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001920 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001921#endif
1922
Mark Brown435c5e22008-12-04 15:32:53 +00001923 card->instantiated = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001924 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001925 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001926
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001927probe_aux_dev_err:
1928 for (i = 0; i < card->num_aux_devs; i++)
1929 soc_remove_aux_dev(card, i);
1930
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001931probe_dai_err:
1932 for (i = 0; i < card->num_links; i++)
1933 soc_remove_dai_link(card, i);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001934
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001935card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001936 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001937 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001938
1939 snd_card_free(card->snd_card);
1940
1941 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001942}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001943
Mark Brown435c5e22008-12-04 15:32:53 +00001944/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001945 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001946 * client_mutex.
1947 */
1948static void snd_soc_instantiate_cards(void)
1949{
1950 struct snd_soc_card *card;
1951 list_for_each_entry(card, &card_list, list)
1952 snd_soc_instantiate_card(card);
1953}
1954
1955/* probes a new socdev */
1956static int soc_probe(struct platform_device *pdev)
1957{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001958 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001959 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001960
Vinod Koul70a7ca32011-01-14 19:22:48 +05301961 /*
1962 * no card, so machine driver should be registering card
1963 * we should not be here in that case so ret error
1964 */
1965 if (!card)
1966 return -EINVAL;
1967
Mark Brown435c5e22008-12-04 15:32:53 +00001968 /* Bodge while we unpick instantiation */
1969 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001970
Mark Brown435c5e22008-12-04 15:32:53 +00001971 ret = snd_soc_register_card(card);
1972 if (ret != 0) {
1973 dev_err(&pdev->dev, "Failed to register card\n");
1974 return ret;
1975 }
1976
1977 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001978}
1979
Vinod Koulb0e26482011-01-13 22:48:02 +05301980static int soc_cleanup_card_resources(struct snd_soc_card *card)
1981{
Vinod Koulb0e26482011-01-13 22:48:02 +05301982 int i;
1983
1984 /* make sure any delayed work runs */
1985 for (i = 0; i < card->num_rtd; i++) {
1986 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1987 flush_delayed_work_sync(&rtd->delayed_work);
1988 }
1989
1990 /* remove auxiliary devices */
1991 for (i = 0; i < card->num_aux_devs; i++)
1992 soc_remove_aux_dev(card, i);
1993
1994 /* remove and free each DAI */
1995 for (i = 0; i < card->num_rtd; i++)
1996 soc_remove_dai_link(card, i);
1997
1998 soc_cleanup_card_debugfs(card);
1999
2000 /* remove the card */
2001 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002002 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302003
2004 kfree(card->rtd);
2005 snd_card_free(card->snd_card);
2006 return 0;
2007
2008}
2009
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002010/* removes a socdev */
2011static int soc_remove(struct platform_device *pdev)
2012{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002013 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002014
Mark Brownc5af3a22008-11-28 13:29:45 +00002015 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002016 return 0;
2017}
2018
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002019int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01002020{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002021 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002022 int i;
Mark Brown51737472009-06-22 13:16:51 +01002023
2024 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01002025 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002026
2027 /* Flush out pmdown_time work - we actually do want to run it
2028 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002029 for (i = 0; i < card->num_rtd; i++) {
2030 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01002031 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002032 }
Mark Brown51737472009-06-22 13:16:51 +01002033
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002034 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01002035
2036 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002037}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002038EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01002039
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002040const struct dev_pm_ops snd_soc_pm_ops = {
2041 .suspend = snd_soc_suspend,
2042 .resume = snd_soc_resume,
2043 .poweroff = snd_soc_poweroff,
Mark Brown416356f2009-06-30 19:05:15 +01002044};
2045
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002046/* ASoC platform driver */
2047static struct platform_driver soc_driver = {
2048 .driver = {
2049 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02002050 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002051 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002052 },
2053 .probe = soc_probe,
2054 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002055};
2056
2057/* create a new pcm */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002058static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002059{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002060 struct snd_soc_codec *codec = rtd->codec;
2061 struct snd_soc_platform *platform = rtd->platform;
2062 struct snd_soc_dai *codec_dai = rtd->codec_dai;
2063 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002064 struct snd_pcm *pcm;
2065 char new_name[64];
2066 int ret = 0, playback = 0, capture = 0;
2067
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002068 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00002069 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002070 rtd->dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002071
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002072 if (codec_dai->driver->playback.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002073 playback = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002074 if (codec_dai->driver->capture.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002075 capture = 1;
2076
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002077 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name);
2078 ret = snd_pcm_new(rtd->card->snd_card, new_name,
2079 num, playback, capture, &pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002080 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002081 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002082 return ret;
2083 }
2084
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002085 rtd->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002086 pcm->private_data = rtd;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002087 soc_pcm_ops.mmap = platform->driver->ops->mmap;
2088 soc_pcm_ops.pointer = platform->driver->ops->pointer;
2089 soc_pcm_ops.ioctl = platform->driver->ops->ioctl;
2090 soc_pcm_ops.copy = platform->driver->ops->copy;
2091 soc_pcm_ops.silence = platform->driver->ops->silence;
2092 soc_pcm_ops.ack = platform->driver->ops->ack;
2093 soc_pcm_ops.page = platform->driver->ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002094
2095 if (playback)
2096 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
2097
2098 if (capture)
2099 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
2100
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002101 ret = platform->driver->pcm_new(rtd->card->snd_card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002102 if (ret < 0) {
2103 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002104 return ret;
2105 }
2106
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002107 pcm->private_free = platform->driver->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002108 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2109 cpu_dai->name);
2110 return ret;
2111}
2112
Mark Brown096e49d2009-07-05 15:12:22 +01002113/**
2114 * snd_soc_codec_volatile_register: Report if a register is volatile.
2115 *
2116 * @codec: CODEC to query.
2117 * @reg: Register to query.
2118 *
2119 * Boolean function indiciating if a CODEC register is volatile.
2120 */
Mark Brown181e0552011-01-24 14:05:25 +00002121int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
2122 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01002123{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00002124 if (codec->volatile_register)
2125 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01002126 else
2127 return 0;
2128}
2129EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
2130
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002131/**
2132 * snd_soc_new_ac97_codec - initailise AC97 device
2133 * @codec: audio codec
2134 * @ops: AC97 bus operations
2135 * @num: AC97 codec number
2136 *
2137 * Initialises AC97 codec resources for use by ad-hoc devices only.
2138 */
2139int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2140 struct snd_ac97_bus_ops *ops, int num)
2141{
2142 mutex_lock(&codec->mutex);
2143
2144 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2145 if (codec->ac97 == NULL) {
2146 mutex_unlock(&codec->mutex);
2147 return -ENOMEM;
2148 }
2149
2150 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2151 if (codec->ac97->bus == NULL) {
2152 kfree(codec->ac97);
2153 codec->ac97 = NULL;
2154 mutex_unlock(&codec->mutex);
2155 return -ENOMEM;
2156 }
2157
2158 codec->ac97->bus->ops = ops;
2159 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002160
2161 /*
2162 * Mark the AC97 device to be created by us. This way we ensure that the
2163 * device will be registered with the device subsystem later on.
2164 */
2165 codec->ac97_created = 1;
2166
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002167 mutex_unlock(&codec->mutex);
2168 return 0;
2169}
2170EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2171
2172/**
2173 * snd_soc_free_ac97_codec - free AC97 codec device
2174 * @codec: audio codec
2175 *
2176 * Frees AC97 codec device resources.
2177 */
2178void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2179{
2180 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002181#ifdef CONFIG_SND_SOC_AC97_BUS
2182 soc_unregister_ac97_dai_link(codec);
2183#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002184 kfree(codec->ac97->bus);
2185 kfree(codec->ac97);
2186 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002187 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002188 mutex_unlock(&codec->mutex);
2189}
2190EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2191
Mark Brownc3753702010-11-01 15:41:57 -04002192unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2193{
2194 unsigned int ret;
2195
Mark Brownc3acec22010-12-02 16:15:29 +00002196 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002197 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002198 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002199
2200 return ret;
2201}
2202EXPORT_SYMBOL_GPL(snd_soc_read);
2203
2204unsigned int snd_soc_write(struct snd_soc_codec *codec,
2205 unsigned int reg, unsigned int val)
2206{
2207 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002208 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002209 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002210}
2211EXPORT_SYMBOL_GPL(snd_soc_write);
2212
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002213/**
2214 * snd_soc_update_bits - update codec register bits
2215 * @codec: audio codec
2216 * @reg: codec register
2217 * @mask: register mask
2218 * @value: new value
2219 *
2220 * Writes new register value.
2221 *
Timur Tabi180c3292011-01-10 15:58:13 -06002222 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002223 */
2224int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002225 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002226{
2227 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002228 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002229 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002230
Timur Tabi180c3292011-01-10 15:58:13 -06002231 ret = snd_soc_read(codec, reg);
2232 if (ret < 0)
2233 return ret;
2234
2235 old = ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002236 new = (old & ~mask) | value;
2237 change = old != new;
Timur Tabi180c3292011-01-10 15:58:13 -06002238 if (change) {
2239 ret = snd_soc_write(codec, reg, new);
2240 if (ret < 0)
2241 return ret;
2242 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002243
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002244 return change;
2245}
2246EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2247
2248/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002249 * snd_soc_update_bits_locked - update codec register bits
2250 * @codec: audio codec
2251 * @reg: codec register
2252 * @mask: register mask
2253 * @value: new value
2254 *
2255 * Writes new register value, and takes the codec mutex.
2256 *
2257 * Returns 1 for change else 0.
2258 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002259int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2260 unsigned short reg, unsigned int mask,
2261 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002262{
2263 int change;
2264
2265 mutex_lock(&codec->mutex);
2266 change = snd_soc_update_bits(codec, reg, mask, value);
2267 mutex_unlock(&codec->mutex);
2268
2269 return change;
2270}
Mark Browndd1b3d52009-12-04 14:22:03 +00002271EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002272
2273/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002274 * snd_soc_test_bits - test register for change
2275 * @codec: audio codec
2276 * @reg: codec register
2277 * @mask: register mask
2278 * @value: new value
2279 *
2280 * Tests a register with a new value and checks if the new value is
2281 * different from the old value.
2282 *
2283 * Returns 1 for change else 0.
2284 */
2285int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002286 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002287{
2288 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002289 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002290
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002291 old = snd_soc_read(codec, reg);
2292 new = (old & ~mask) | value;
2293 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002294
2295 return change;
2296}
2297EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2298
2299/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002300 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2301 * @substream: the pcm substream
2302 * @hw: the hardware parameters
2303 *
2304 * Sets the substream runtime hardware parameters.
2305 */
2306int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2307 const struct snd_pcm_hardware *hw)
2308{
2309 struct snd_pcm_runtime *runtime = substream->runtime;
2310 runtime->hw.info = hw->info;
2311 runtime->hw.formats = hw->formats;
2312 runtime->hw.period_bytes_min = hw->period_bytes_min;
2313 runtime->hw.period_bytes_max = hw->period_bytes_max;
2314 runtime->hw.periods_min = hw->periods_min;
2315 runtime->hw.periods_max = hw->periods_max;
2316 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2317 runtime->hw.fifo_size = hw->fifo_size;
2318 return 0;
2319}
2320EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2321
2322/**
2323 * snd_soc_cnew - create new control
2324 * @_template: control template
2325 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002326 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002327 *
2328 * Create a new mixer control from a template control.
2329 *
2330 * Returns 0 for success, else error.
2331 */
2332struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2333 void *data, char *long_name)
2334{
2335 struct snd_kcontrol_new template;
2336
2337 memcpy(&template, _template, sizeof(template));
2338 if (long_name)
2339 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002340 template.index = 0;
2341
2342 return snd_ctl_new1(&template, data);
2343}
2344EXPORT_SYMBOL_GPL(snd_soc_cnew);
2345
2346/**
Ian Molton3e8e1952009-01-09 00:23:21 +00002347 * snd_soc_add_controls - add an array of controls to a codec.
2348 * Convienience function to add a list of controls. Many codecs were
2349 * duplicating this code.
2350 *
2351 * @codec: codec to add controls to
2352 * @controls: array of controls to add
2353 * @num_controls: number of elements in the array
2354 *
2355 * Return 0 for success, else error.
2356 */
2357int snd_soc_add_controls(struct snd_soc_codec *codec,
2358 const struct snd_kcontrol_new *controls, int num_controls)
2359{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002360 struct snd_card *card = codec->card->snd_card;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002361 char prefixed_name[44], *name;
Ian Molton3e8e1952009-01-09 00:23:21 +00002362 int err, i;
2363
2364 for (i = 0; i < num_controls; i++) {
2365 const struct snd_kcontrol_new *control = &controls[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002366 if (codec->name_prefix) {
2367 snprintf(prefixed_name, sizeof(prefixed_name), "%s %s",
2368 codec->name_prefix, control->name);
2369 name = prefixed_name;
2370 } else {
2371 name = control->name;
2372 }
2373 err = snd_ctl_add(card, snd_soc_cnew(control, codec, name));
Ian Molton3e8e1952009-01-09 00:23:21 +00002374 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002375 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002376 codec->name, name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002377 return err;
2378 }
2379 }
2380
2381 return 0;
2382}
2383EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2384
2385/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002386 * snd_soc_info_enum_double - enumerated double mixer info callback
2387 * @kcontrol: mixer control
2388 * @uinfo: control element information
2389 *
2390 * Callback to provide information about a double enumerated
2391 * mixer control.
2392 *
2393 * Returns 0 for success.
2394 */
2395int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2396 struct snd_ctl_elem_info *uinfo)
2397{
2398 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2399
2400 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2401 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002402 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002403
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002404 if (uinfo->value.enumerated.item > e->max - 1)
2405 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002406 strcpy(uinfo->value.enumerated.name,
2407 e->texts[uinfo->value.enumerated.item]);
2408 return 0;
2409}
2410EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2411
2412/**
2413 * snd_soc_get_enum_double - enumerated double mixer get callback
2414 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002415 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002416 *
2417 * Callback to get the value of a double enumerated mixer.
2418 *
2419 * Returns 0 for success.
2420 */
2421int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2422 struct snd_ctl_elem_value *ucontrol)
2423{
2424 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2425 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002426 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002427
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002428 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002429 ;
2430 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002431 ucontrol->value.enumerated.item[0]
2432 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002433 if (e->shift_l != e->shift_r)
2434 ucontrol->value.enumerated.item[1] =
2435 (val >> e->shift_r) & (bitmask - 1);
2436
2437 return 0;
2438}
2439EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2440
2441/**
2442 * snd_soc_put_enum_double - enumerated double mixer put callback
2443 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002444 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002445 *
2446 * Callback to set the value of a double enumerated mixer.
2447 *
2448 * Returns 0 for success.
2449 */
2450int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2451 struct snd_ctl_elem_value *ucontrol)
2452{
2453 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2454 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002455 unsigned int val;
2456 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002457
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002458 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002459 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002460 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002461 return -EINVAL;
2462 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2463 mask = (bitmask - 1) << e->shift_l;
2464 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002465 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002466 return -EINVAL;
2467 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2468 mask |= (bitmask - 1) << e->shift_r;
2469 }
2470
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002471 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002472}
2473EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2474
2475/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002476 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2477 * @kcontrol: mixer control
2478 * @ucontrol: control element information
2479 *
2480 * Callback to get the value of a double semi enumerated mixer.
2481 *
2482 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2483 * used for handling bitfield coded enumeration for example.
2484 *
2485 * Returns 0 for success.
2486 */
2487int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2488 struct snd_ctl_elem_value *ucontrol)
2489{
2490 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002491 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002492 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002493
2494 reg_val = snd_soc_read(codec, e->reg);
2495 val = (reg_val >> e->shift_l) & e->mask;
2496 for (mux = 0; mux < e->max; mux++) {
2497 if (val == e->values[mux])
2498 break;
2499 }
2500 ucontrol->value.enumerated.item[0] = mux;
2501 if (e->shift_l != e->shift_r) {
2502 val = (reg_val >> e->shift_r) & e->mask;
2503 for (mux = 0; mux < e->max; mux++) {
2504 if (val == e->values[mux])
2505 break;
2506 }
2507 ucontrol->value.enumerated.item[1] = mux;
2508 }
2509
2510 return 0;
2511}
2512EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2513
2514/**
2515 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2516 * @kcontrol: mixer control
2517 * @ucontrol: control element information
2518 *
2519 * Callback to set the value of a double semi enumerated mixer.
2520 *
2521 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2522 * used for handling bitfield coded enumeration for example.
2523 *
2524 * Returns 0 for success.
2525 */
2526int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2527 struct snd_ctl_elem_value *ucontrol)
2528{
2529 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002530 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002531 unsigned int val;
2532 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002533
2534 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2535 return -EINVAL;
2536 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2537 mask = e->mask << e->shift_l;
2538 if (e->shift_l != e->shift_r) {
2539 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2540 return -EINVAL;
2541 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2542 mask |= e->mask << e->shift_r;
2543 }
2544
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002545 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002546}
2547EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2548
2549/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002550 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2551 * @kcontrol: mixer control
2552 * @uinfo: control element information
2553 *
2554 * Callback to provide information about an external enumerated
2555 * single mixer.
2556 *
2557 * Returns 0 for success.
2558 */
2559int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2560 struct snd_ctl_elem_info *uinfo)
2561{
2562 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2563
2564 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2565 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002566 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002567
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002568 if (uinfo->value.enumerated.item > e->max - 1)
2569 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002570 strcpy(uinfo->value.enumerated.name,
2571 e->texts[uinfo->value.enumerated.item]);
2572 return 0;
2573}
2574EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2575
2576/**
2577 * snd_soc_info_volsw_ext - external single mixer info callback
2578 * @kcontrol: mixer control
2579 * @uinfo: control element information
2580 *
2581 * Callback to provide information about a single external mixer control.
2582 *
2583 * Returns 0 for success.
2584 */
2585int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2586 struct snd_ctl_elem_info *uinfo)
2587{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002588 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002589
Mark Brownfd5dfad2009-04-15 21:37:46 +01002590 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002591 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2592 else
2593 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2594
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002595 uinfo->count = 1;
2596 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002597 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002598 return 0;
2599}
2600EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2601
2602/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002603 * snd_soc_info_volsw - single mixer info callback
2604 * @kcontrol: mixer control
2605 * @uinfo: control element information
2606 *
2607 * Callback to provide information about a single mixer control.
2608 *
2609 * Returns 0 for success.
2610 */
2611int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2612 struct snd_ctl_elem_info *uinfo)
2613{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002614 struct soc_mixer_control *mc =
2615 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002616 int platform_max;
Mark Brown762b8df2008-10-30 12:37:08 +00002617 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002618 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002619
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002620 if (!mc->platform_max)
2621 mc->platform_max = mc->max;
2622 platform_max = mc->platform_max;
2623
2624 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002625 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2626 else
2627 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2628
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002629 uinfo->count = shift == rshift ? 1 : 2;
2630 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002631 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002632 return 0;
2633}
2634EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2635
2636/**
2637 * snd_soc_get_volsw - single mixer get callback
2638 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002639 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002640 *
2641 * Callback to get the value of a single mixer control.
2642 *
2643 * Returns 0 for success.
2644 */
2645int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2646 struct snd_ctl_elem_value *ucontrol)
2647{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002648 struct soc_mixer_control *mc =
2649 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002650 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002651 unsigned int reg = mc->reg;
2652 unsigned int shift = mc->shift;
2653 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002654 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002655 unsigned int mask = (1 << fls(max)) - 1;
2656 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002657
2658 ucontrol->value.integer.value[0] =
2659 (snd_soc_read(codec, reg) >> shift) & mask;
2660 if (shift != rshift)
2661 ucontrol->value.integer.value[1] =
2662 (snd_soc_read(codec, reg) >> rshift) & mask;
2663 if (invert) {
2664 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002665 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002666 if (shift != rshift)
2667 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002668 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002669 }
2670
2671 return 0;
2672}
2673EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2674
2675/**
2676 * snd_soc_put_volsw - single mixer put callback
2677 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002678 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002679 *
2680 * Callback to set the value of a single mixer control.
2681 *
2682 * Returns 0 for success.
2683 */
2684int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2685 struct snd_ctl_elem_value *ucontrol)
2686{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002687 struct soc_mixer_control *mc =
2688 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002689 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002690 unsigned int reg = mc->reg;
2691 unsigned int shift = mc->shift;
2692 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002693 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002694 unsigned int mask = (1 << fls(max)) - 1;
2695 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002696 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002697
2698 val = (ucontrol->value.integer.value[0] & mask);
2699 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002700 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002701 val_mask = mask << shift;
2702 val = val << shift;
2703 if (shift != rshift) {
2704 val2 = (ucontrol->value.integer.value[1] & mask);
2705 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002706 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002707 val_mask |= mask << rshift;
2708 val |= val2 << rshift;
2709 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002710 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002711}
2712EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2713
2714/**
2715 * snd_soc_info_volsw_2r - double mixer info callback
2716 * @kcontrol: mixer control
2717 * @uinfo: control element information
2718 *
2719 * Callback to provide information about a double mixer control that
2720 * spans 2 codec registers.
2721 *
2722 * Returns 0 for success.
2723 */
2724int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2725 struct snd_ctl_elem_info *uinfo)
2726{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002727 struct soc_mixer_control *mc =
2728 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002729 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002730
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002731 if (!mc->platform_max)
2732 mc->platform_max = mc->max;
2733 platform_max = mc->platform_max;
2734
2735 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002736 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2737 else
2738 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2739
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002740 uinfo->count = 2;
2741 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002742 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002743 return 0;
2744}
2745EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2746
2747/**
2748 * snd_soc_get_volsw_2r - double mixer get callback
2749 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002750 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002751 *
2752 * Callback to get the value of a double mixer control that spans 2 registers.
2753 *
2754 * Returns 0 for success.
2755 */
2756int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2757 struct snd_ctl_elem_value *ucontrol)
2758{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002759 struct soc_mixer_control *mc =
2760 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002761 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002762 unsigned int reg = mc->reg;
2763 unsigned int reg2 = mc->rreg;
2764 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002765 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002766 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002767 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002768
2769 ucontrol->value.integer.value[0] =
2770 (snd_soc_read(codec, reg) >> shift) & mask;
2771 ucontrol->value.integer.value[1] =
2772 (snd_soc_read(codec, reg2) >> shift) & mask;
2773 if (invert) {
2774 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002775 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002776 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002777 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002778 }
2779
2780 return 0;
2781}
2782EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2783
2784/**
2785 * snd_soc_put_volsw_2r - double mixer set callback
2786 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002787 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002788 *
2789 * Callback to set the value of a double mixer control that spans 2 registers.
2790 *
2791 * Returns 0 for success.
2792 */
2793int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2794 struct snd_ctl_elem_value *ucontrol)
2795{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002796 struct soc_mixer_control *mc =
2797 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002798 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002799 unsigned int reg = mc->reg;
2800 unsigned int reg2 = mc->rreg;
2801 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002802 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002803 unsigned int mask = (1 << fls(max)) - 1;
2804 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002805 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002806 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002807
2808 val_mask = mask << shift;
2809 val = (ucontrol->value.integer.value[0] & mask);
2810 val2 = (ucontrol->value.integer.value[1] & mask);
2811
2812 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002813 val = max - val;
2814 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002815 }
2816
2817 val = val << shift;
2818 val2 = val2 << shift;
2819
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002820 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002821 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002822 return err;
2823
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002824 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002825 return err;
2826}
2827EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2828
Mark Browne13ac2e2008-05-28 17:58:05 +01002829/**
2830 * snd_soc_info_volsw_s8 - signed mixer info callback
2831 * @kcontrol: mixer control
2832 * @uinfo: control element information
2833 *
2834 * Callback to provide information about a signed mixer control.
2835 *
2836 * Returns 0 for success.
2837 */
2838int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2839 struct snd_ctl_elem_info *uinfo)
2840{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002841 struct soc_mixer_control *mc =
2842 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002843 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002844 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002845
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002846 if (!mc->platform_max)
2847 mc->platform_max = mc->max;
2848 platform_max = mc->platform_max;
2849
Mark Browne13ac2e2008-05-28 17:58:05 +01002850 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2851 uinfo->count = 2;
2852 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002853 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002854 return 0;
2855}
2856EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2857
2858/**
2859 * snd_soc_get_volsw_s8 - signed mixer get callback
2860 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002861 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002862 *
2863 * Callback to get the value of a signed mixer control.
2864 *
2865 * Returns 0 for success.
2866 */
2867int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2868 struct snd_ctl_elem_value *ucontrol)
2869{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002870 struct soc_mixer_control *mc =
2871 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002872 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002873 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002874 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002875 int val = snd_soc_read(codec, reg);
2876
2877 ucontrol->value.integer.value[0] =
2878 ((signed char)(val & 0xff))-min;
2879 ucontrol->value.integer.value[1] =
2880 ((signed char)((val >> 8) & 0xff))-min;
2881 return 0;
2882}
2883EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2884
2885/**
2886 * snd_soc_put_volsw_sgn - signed mixer put callback
2887 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002888 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002889 *
2890 * Callback to set the value of a signed mixer control.
2891 *
2892 * Returns 0 for success.
2893 */
2894int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2895 struct snd_ctl_elem_value *ucontrol)
2896{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002897 struct soc_mixer_control *mc =
2898 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002899 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002900 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002901 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002902 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002903
2904 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2905 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2906
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002907 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002908}
2909EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2910
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002911/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002912 * snd_soc_limit_volume - Set new limit to an existing volume control.
2913 *
2914 * @codec: where to look for the control
2915 * @name: Name of the control
2916 * @max: new maximum limit
2917 *
2918 * Return 0 for success, else error.
2919 */
2920int snd_soc_limit_volume(struct snd_soc_codec *codec,
2921 const char *name, int max)
2922{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002923 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002924 struct snd_kcontrol *kctl;
2925 struct soc_mixer_control *mc;
2926 int found = 0;
2927 int ret = -EINVAL;
2928
2929 /* Sanity check for name and max */
2930 if (unlikely(!name || max <= 0))
2931 return -EINVAL;
2932
2933 list_for_each_entry(kctl, &card->controls, list) {
2934 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2935 found = 1;
2936 break;
2937 }
2938 }
2939 if (found) {
2940 mc = (struct soc_mixer_control *)kctl->private_value;
2941 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002942 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002943 ret = 0;
2944 }
2945 }
2946 return ret;
2947}
2948EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2949
2950/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002951 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2952 * mixer info callback
2953 * @kcontrol: mixer control
2954 * @uinfo: control element information
2955 *
2956 * Returns 0 for success.
2957 */
2958int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2959 struct snd_ctl_elem_info *uinfo)
2960{
2961 struct soc_mixer_control *mc =
2962 (struct soc_mixer_control *)kcontrol->private_value;
2963 int max = mc->max;
2964 int min = mc->min;
2965
2966 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2967 uinfo->count = 2;
2968 uinfo->value.integer.min = 0;
2969 uinfo->value.integer.max = max-min;
2970
2971 return 0;
2972}
2973EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
2974
2975/**
2976 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
2977 * mixer get callback
2978 * @kcontrol: mixer control
2979 * @uinfo: control element information
2980 *
2981 * Returns 0 for success.
2982 */
2983int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2984 struct snd_ctl_elem_value *ucontrol)
2985{
2986 struct soc_mixer_control *mc =
2987 (struct soc_mixer_control *)kcontrol->private_value;
2988 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2989 unsigned int mask = (1<<mc->shift)-1;
2990 int min = mc->min;
2991 int val = snd_soc_read(codec, mc->reg) & mask;
2992 int valr = snd_soc_read(codec, mc->rreg) & mask;
2993
Stuart Longland20630c72010-06-18 12:56:10 +10002994 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
2995 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002996 return 0;
2997}
2998EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
2999
3000/**
3001 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
3002 * mixer put callback
3003 * @kcontrol: mixer control
3004 * @uinfo: control element information
3005 *
3006 * Returns 0 for success.
3007 */
3008int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3009 struct snd_ctl_elem_value *ucontrol)
3010{
3011 struct soc_mixer_control *mc =
3012 (struct soc_mixer_control *)kcontrol->private_value;
3013 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3014 unsigned int mask = (1<<mc->shift)-1;
3015 int min = mc->min;
3016 int ret;
3017 unsigned int val, valr, oval, ovalr;
3018
3019 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
3020 val &= mask;
3021 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
3022 valr &= mask;
3023
3024 oval = snd_soc_read(codec, mc->reg) & mask;
3025 ovalr = snd_soc_read(codec, mc->rreg) & mask;
3026
3027 ret = 0;
3028 if (oval != val) {
3029 ret = snd_soc_write(codec, mc->reg, val);
3030 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01003031 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003032 }
3033 if (ovalr != valr) {
3034 ret = snd_soc_write(codec, mc->rreg, valr);
3035 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01003036 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003037 }
3038
3039 return 0;
3040}
3041EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
3042
3043/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003044 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3045 * @dai: DAI
3046 * @clk_id: DAI specific clock ID
3047 * @freq: new clock frequency in Hz
3048 * @dir: new clock direction - input/output.
3049 *
3050 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3051 */
3052int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3053 unsigned int freq, int dir)
3054{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003055 if (dai->driver && dai->driver->ops->set_sysclk)
3056 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003057 else
3058 return -EINVAL;
3059}
3060EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3061
3062/**
3063 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3064 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003065 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003066 * @div: new clock divisor.
3067 *
3068 * Configures the clock dividers. This is used to derive the best DAI bit and
3069 * frame clocks from the system or master clock. It's best to set the DAI bit
3070 * and frame clocks as low as possible to save system power.
3071 */
3072int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3073 int div_id, int div)
3074{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003075 if (dai->driver && dai->driver->ops->set_clkdiv)
3076 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003077 else
3078 return -EINVAL;
3079}
3080EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3081
3082/**
3083 * snd_soc_dai_set_pll - configure DAI PLL.
3084 * @dai: DAI
3085 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003086 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003087 * @freq_in: PLL input clock frequency in Hz
3088 * @freq_out: requested PLL output clock frequency in Hz
3089 *
3090 * Configures and enables PLL to generate output clock based on input clock.
3091 */
Mark Brown85488032009-09-05 18:52:16 +01003092int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3093 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003094{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003095 if (dai->driver && dai->driver->ops->set_pll)
3096 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003097 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003098 else
3099 return -EINVAL;
3100}
3101EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3102
3103/**
3104 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3105 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003106 * @fmt: SND_SOC_DAIFMT_ format value.
3107 *
3108 * Configures the DAI hardware format and clocking.
3109 */
3110int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3111{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003112 if (dai->driver && dai->driver->ops->set_fmt)
3113 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003114 else
3115 return -EINVAL;
3116}
3117EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3118
3119/**
3120 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3121 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003122 * @tx_mask: bitmask representing active TX slots.
3123 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003124 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003125 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003126 *
3127 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3128 * specific.
3129 */
3130int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003131 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003132{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003133 if (dai->driver && dai->driver->ops->set_tdm_slot)
3134 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003135 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003136 else
3137 return -EINVAL;
3138}
3139EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3140
3141/**
Barry Song472df3c2009-09-12 01:16:29 +08003142 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3143 * @dai: DAI
3144 * @tx_num: how many TX channels
3145 * @tx_slot: pointer to an array which imply the TX slot number channel
3146 * 0~num-1 uses
3147 * @rx_num: how many RX channels
3148 * @rx_slot: pointer to an array which imply the RX slot number channel
3149 * 0~num-1 uses
3150 *
3151 * configure the relationship between channel number and TDM slot number.
3152 */
3153int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3154 unsigned int tx_num, unsigned int *tx_slot,
3155 unsigned int rx_num, unsigned int *rx_slot)
3156{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003157 if (dai->driver && dai->driver->ops->set_channel_map)
3158 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003159 rx_num, rx_slot);
3160 else
3161 return -EINVAL;
3162}
3163EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3164
3165/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003166 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3167 * @dai: DAI
3168 * @tristate: tristate enable
3169 *
3170 * Tristates the DAI so that others can use it.
3171 */
3172int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3173{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003174 if (dai->driver && dai->driver->ops->set_tristate)
3175 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003176 else
3177 return -EINVAL;
3178}
3179EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3180
3181/**
3182 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3183 * @dai: DAI
3184 * @mute: mute enable
3185 *
3186 * Mutes the DAI DAC.
3187 */
3188int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3189{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003190 if (dai->driver && dai->driver->ops->digital_mute)
3191 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003192 else
3193 return -EINVAL;
3194}
3195EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3196
Mark Brownc5af3a22008-11-28 13:29:45 +00003197/**
3198 * snd_soc_register_card - Register a card with the ASoC core
3199 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003200 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003201 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003202 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303203int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003204{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003205 int i;
3206
Mark Brownc5af3a22008-11-28 13:29:45 +00003207 if (!card->name || !card->dev)
3208 return -EINVAL;
3209
Stephen Warren111c6412011-01-28 14:26:35 -07003210 snd_soc_initialize_card_lists(card);
3211
Vinod Koul150dd2f2011-01-13 22:48:32 +05303212 soc_init_card_debugfs(card);
3213
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003214 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
3215 (card->num_links + card->num_aux_devs),
3216 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003217 if (card->rtd == NULL)
3218 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003219 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003220
3221 for (i = 0; i < card->num_links; i++)
3222 card->rtd[i].dai_link = &card->dai_link[i];
3223
Mark Brownc5af3a22008-11-28 13:29:45 +00003224 INIT_LIST_HEAD(&card->list);
3225 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003226 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003227
3228 mutex_lock(&client_mutex);
3229 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003230 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00003231 mutex_unlock(&client_mutex);
3232
3233 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
3234
3235 return 0;
3236}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303237EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003238
3239/**
3240 * snd_soc_unregister_card - Unregister a card with the ASoC core
3241 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003242 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003243 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003244 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303245int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003246{
Vinod Koulb0e26482011-01-13 22:48:02 +05303247 if (card->instantiated)
3248 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003249 mutex_lock(&client_mutex);
3250 list_del(&card->list);
3251 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003252 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3253
3254 return 0;
3255}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303256EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003257
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003258/*
3259 * Simplify DAI link configuration by removing ".-1" from device names
3260 * and sanitizing names.
3261 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003262static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003263{
3264 char *found, name[NAME_SIZE];
3265 int id1, id2;
3266
3267 if (dev_name(dev) == NULL)
3268 return NULL;
3269
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003270 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003271
3272 /* are we a "%s.%d" name (platform and SPI components) */
3273 found = strstr(name, dev->driver->name);
3274 if (found) {
3275 /* get ID */
3276 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3277
3278 /* discard ID from name if ID == -1 */
3279 if (*id == -1)
3280 found[strlen(dev->driver->name)] = '\0';
3281 }
3282
3283 } else {
3284 /* I2C component devices are named "bus-addr" */
3285 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3286 char tmp[NAME_SIZE];
3287
3288 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003289 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003290
3291 /* sanitize component name for DAI link creation */
3292 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003293 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003294 } else
3295 *id = 0;
3296 }
3297
3298 return kstrdup(name, GFP_KERNEL);
3299}
3300
3301/*
3302 * Simplify DAI link naming for single devices with multiple DAIs by removing
3303 * any ".-1" and using the DAI name (instead of device name).
3304 */
3305static inline char *fmt_multiple_name(struct device *dev,
3306 struct snd_soc_dai_driver *dai_drv)
3307{
3308 if (dai_drv->name == NULL) {
3309 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
3310 dev_name(dev));
3311 return NULL;
3312 }
3313
3314 return kstrdup(dai_drv->name, GFP_KERNEL);
3315}
3316
Mark Brown91151712008-11-30 23:31:24 +00003317/**
3318 * snd_soc_register_dai - Register a DAI with the ASoC core
3319 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003320 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003321 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003322int snd_soc_register_dai(struct device *dev,
3323 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003324{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003325 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003326
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003327 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003328
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003329 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3330 if (dai == NULL)
3331 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003332
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003333 /* create DAI component name */
3334 dai->name = fmt_single_name(dev, &dai->id);
3335 if (dai->name == NULL) {
3336 kfree(dai);
3337 return -ENOMEM;
3338 }
3339
3340 dai->dev = dev;
3341 dai->driver = dai_drv;
3342 if (!dai->driver->ops)
3343 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003344
3345 mutex_lock(&client_mutex);
3346 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003347 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003348 mutex_unlock(&client_mutex);
3349
3350 pr_debug("Registered DAI '%s'\n", dai->name);
3351
3352 return 0;
3353}
3354EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3355
3356/**
3357 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3358 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003359 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003360 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003361void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003362{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003363 struct snd_soc_dai *dai;
3364
3365 list_for_each_entry(dai, &dai_list, list) {
3366 if (dev == dai->dev)
3367 goto found;
3368 }
3369 return;
3370
3371found:
Mark Brown91151712008-11-30 23:31:24 +00003372 mutex_lock(&client_mutex);
3373 list_del(&dai->list);
3374 mutex_unlock(&client_mutex);
3375
3376 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003377 kfree(dai->name);
3378 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003379}
3380EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3381
3382/**
3383 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3384 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003385 * @dai: Array of DAIs to register
3386 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003387 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003388int snd_soc_register_dais(struct device *dev,
3389 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003390{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003391 struct snd_soc_dai *dai;
3392 int i, ret = 0;
3393
Liam Girdwood720ffa42010-08-18 00:30:30 +01003394 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003395
3396 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003397
3398 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003399 if (dai == NULL) {
3400 ret = -ENOMEM;
3401 goto err;
3402 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003403
3404 /* create DAI component name */
3405 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3406 if (dai->name == NULL) {
3407 kfree(dai);
3408 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003409 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003410 }
3411
3412 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003413 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003414 if (dai->driver->id)
3415 dai->id = dai->driver->id;
3416 else
3417 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003418 if (!dai->driver->ops)
3419 dai->driver->ops = &null_dai_ops;
3420
3421 mutex_lock(&client_mutex);
3422 list_add(&dai->list, &dai_list);
3423 mutex_unlock(&client_mutex);
3424
3425 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003426 }
3427
Axel Lin1dcb4f32010-12-06 16:48:03 +08003428 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003429 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003430 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003431 return 0;
3432
3433err:
3434 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003435 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003436
3437 return ret;
3438}
3439EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3440
3441/**
3442 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3443 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003444 * @dai: Array of DAIs to unregister
3445 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003446 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003447void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003448{
3449 int i;
3450
3451 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003452 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003453}
3454EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3455
Mark Brown12a48a8c2008-12-03 19:40:30 +00003456/**
3457 * snd_soc_register_platform - Register a platform with the ASoC core
3458 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003459 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003460 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003461int snd_soc_register_platform(struct device *dev,
3462 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003463{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003464 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003465
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003466 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3467
3468 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3469 if (platform == NULL)
3470 return -ENOMEM;
3471
3472 /* create platform component name */
3473 platform->name = fmt_single_name(dev, &platform->id);
3474 if (platform->name == NULL) {
3475 kfree(platform);
3476 return -ENOMEM;
3477 }
3478
3479 platform->dev = dev;
3480 platform->driver = platform_drv;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003481
3482 mutex_lock(&client_mutex);
3483 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003484 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003485 mutex_unlock(&client_mutex);
3486
3487 pr_debug("Registered platform '%s'\n", platform->name);
3488
3489 return 0;
3490}
3491EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3492
3493/**
3494 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3495 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003496 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003497 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003498void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003499{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003500 struct snd_soc_platform *platform;
3501
3502 list_for_each_entry(platform, &platform_list, list) {
3503 if (dev == platform->dev)
3504 goto found;
3505 }
3506 return;
3507
3508found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003509 mutex_lock(&client_mutex);
3510 list_del(&platform->list);
3511 mutex_unlock(&client_mutex);
3512
3513 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003514 kfree(platform->name);
3515 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003516}
3517EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3518
Mark Brown151ab222009-05-09 16:22:58 +01003519static u64 codec_format_map[] = {
3520 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3521 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3522 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3523 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3524 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3525 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3526 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3527 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3528 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3529 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3530 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3531 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3532 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3533 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3534 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3535 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3536};
3537
3538/* Fix up the DAI formats for endianness: codecs don't actually see
3539 * the endianness of the data but we're using the CPU format
3540 * definitions which do need to include endianness so we ensure that
3541 * codec DAIs always have both big and little endian variants set.
3542 */
3543static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3544{
3545 int i;
3546
3547 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3548 if (stream->formats & codec_format_map[i])
3549 stream->formats |= codec_format_map[i];
3550}
3551
Mark Brown0d0cf002008-12-10 14:32:45 +00003552/**
3553 * snd_soc_register_codec - Register a codec with the ASoC core
3554 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003555 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003556 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003557int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003558 const struct snd_soc_codec_driver *codec_drv,
3559 struct snd_soc_dai_driver *dai_drv,
3560 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003561{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003562 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003563 struct snd_soc_codec *codec;
3564 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003565
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003566 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003567
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003568 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3569 if (codec == NULL)
3570 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003571
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003572 /* create CODEC component name */
3573 codec->name = fmt_single_name(dev, &codec->id);
3574 if (codec->name == NULL) {
3575 kfree(codec);
3576 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003577 }
3578
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003579 if (codec_drv->compress_type)
3580 codec->compress_type = codec_drv->compress_type;
3581 else
3582 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3583
Mark Brownc3acec22010-12-02 16:15:29 +00003584 codec->write = codec_drv->write;
3585 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003586 codec->volatile_register = codec_drv->volatile_register;
3587 codec->readable_register = codec_drv->readable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003588 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3589 codec->dapm.dev = dev;
3590 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003591 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003592 codec->dev = dev;
3593 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003594 codec->num_dai = num_dai;
3595 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003596
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003597 /* allocate CODEC register cache */
3598 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003599 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003600 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003601 /* it is necessary to make a copy of the default register cache
3602 * because in the case of using a compression type that requires
3603 * the default register cache to be marked as __devinitconst the
3604 * kernel might have freed the array by the time we initialize
3605 * the cache.
3606 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003607 if (codec_drv->reg_cache_default) {
3608 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3609 reg_size, GFP_KERNEL);
3610 if (!codec->reg_def_copy) {
3611 ret = -ENOMEM;
3612 goto fail;
3613 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003614 }
3615 }
3616
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003617 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3618 if (!codec->volatile_register)
3619 codec->volatile_register = snd_soc_default_volatile_register;
3620 if (!codec->readable_register)
3621 codec->readable_register = snd_soc_default_readable_register;
3622 }
3623
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003624 for (i = 0; i < num_dai; i++) {
3625 fixup_codec_formats(&dai_drv[i].playback);
3626 fixup_codec_formats(&dai_drv[i].capture);
3627 }
3628
Mark Brown26b01cc2010-08-18 20:20:55 +01003629 /* register any DAIs */
3630 if (num_dai) {
3631 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3632 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003633 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003634 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003635
Mark Brown0d0cf002008-12-10 14:32:45 +00003636 mutex_lock(&client_mutex);
3637 list_add(&codec->list, &codec_list);
3638 snd_soc_instantiate_cards();
3639 mutex_unlock(&client_mutex);
3640
3641 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003642 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003643
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003644fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003645 kfree(codec->reg_def_copy);
3646 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003647 kfree(codec->name);
3648 kfree(codec);
3649 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003650}
3651EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3652
3653/**
3654 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3655 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003656 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003657 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003658void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003659{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003660 struct snd_soc_codec *codec;
3661 int i;
3662
3663 list_for_each_entry(codec, &codec_list, list) {
3664 if (dev == codec->dev)
3665 goto found;
3666 }
3667 return;
3668
3669found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003670 if (codec->num_dai)
3671 for (i = 0; i < codec->num_dai; i++)
3672 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003673
Mark Brown0d0cf002008-12-10 14:32:45 +00003674 mutex_lock(&client_mutex);
3675 list_del(&codec->list);
3676 mutex_unlock(&client_mutex);
3677
3678 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003679
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003680 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003681 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003682 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003683 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003684}
3685EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3686
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003687static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003688{
Mark Brown384c89e2008-12-03 17:34:03 +00003689#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003690 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3691 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003692 printk(KERN_WARNING
3693 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003694 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003695 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003696
Mark Brown8a9dab12011-01-10 22:25:21 +00003697 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003698 &codec_list_fops))
3699 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3700
Mark Brown8a9dab12011-01-10 22:25:21 +00003701 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003702 &dai_list_fops))
3703 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003704
Mark Brown8a9dab12011-01-10 22:25:21 +00003705 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003706 &platform_list_fops))
3707 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003708#endif
3709
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003710 return platform_driver_register(&soc_driver);
3711}
Mark Brown4abe8e12010-10-12 17:41:03 +01003712module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003713
Mark Brown7d8c16a2008-11-30 22:11:24 +00003714static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003715{
Mark Brown384c89e2008-12-03 17:34:03 +00003716#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003717 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003718#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003719 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003720}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003721module_exit(snd_soc_exit);
3722
3723/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003724MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003725MODULE_DESCRIPTION("ALSA SoC Core");
3726MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003727MODULE_ALIAS("platform:soc-audio");