blob: df5608db33509a2d1fb9e692acf649bdb23761b8 [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{
Stephen Warren00b317a2011-04-01 14:50:44 -060095 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
96 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000097 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
Stephen Warren00b317a2011-04-01 14:50:44 -0600135 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
136 regsize = codec->driver->reg_word_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];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700245 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000246 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);
Mark Brown2624d5f2009-11-03 21:56:13 +0000262 while (*start == ' ')
263 start++;
264 if (strict_strtoul(start, 16, &value))
265 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000266
267 /* Userspace has been fiddling around behind the kernel's back */
268 add_taint(TAINT_USER);
269
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000270 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000271 return buf_size;
272}
273
274static const struct file_operations codec_reg_fops = {
275 .open = codec_reg_open_file,
276 .read = codec_reg_read_file,
277 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200278 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000279};
280
281static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
282{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200283 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
284
285 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
286 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000287 if (!codec->debugfs_codec_root) {
288 printk(KERN_WARNING
289 "ASoC: Failed to create codec debugfs directory\n");
290 return;
291 }
292
Mark Brownaaee8ef2011-01-26 20:53:50 +0000293 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
294 &codec->cache_sync);
295 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
296 &codec->cache_only);
297
Mark Brown2624d5f2009-11-03 21:56:13 +0000298 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
299 codec->debugfs_codec_root,
300 codec, &codec_reg_fops);
301 if (!codec->debugfs_reg)
302 printk(KERN_WARNING
303 "ASoC: Failed to create codec register debugfs file\n");
304
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200305 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000306}
307
308static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
309{
310 debugfs_remove_recursive(codec->debugfs_codec_root);
311}
312
Mark Brownc3c5a192010-09-15 18:15:14 +0100313static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
314 size_t count, loff_t *ppos)
315{
316 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100317 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100318 struct snd_soc_codec *codec;
319
320 if (!buf)
321 return -ENOMEM;
322
Mark Brown2b194f9d2010-10-13 10:52:16 +0100323 list_for_each_entry(codec, &codec_list, list) {
324 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
325 codec->name);
326 if (len >= 0)
327 ret += len;
328 if (ret > PAGE_SIZE) {
329 ret = PAGE_SIZE;
330 break;
331 }
332 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100333
334 if (ret >= 0)
335 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
336
337 kfree(buf);
338
339 return ret;
340}
341
342static const struct file_operations codec_list_fops = {
343 .read = codec_list_read_file,
344 .llseek = default_llseek,/* read accesses f_pos */
345};
346
Mark Brownf3208782010-09-15 18:19:07 +0100347static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
348 size_t count, loff_t *ppos)
349{
350 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100351 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100352 struct snd_soc_dai *dai;
353
354 if (!buf)
355 return -ENOMEM;
356
Mark Brown2b194f9d2010-10-13 10:52:16 +0100357 list_for_each_entry(dai, &dai_list, list) {
358 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
359 if (len >= 0)
360 ret += len;
361 if (ret > PAGE_SIZE) {
362 ret = PAGE_SIZE;
363 break;
364 }
365 }
Mark Brownf3208782010-09-15 18:19:07 +0100366
Mark Brown2b194f9d2010-10-13 10:52:16 +0100367 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100368
369 kfree(buf);
370
371 return ret;
372}
373
374static const struct file_operations dai_list_fops = {
375 .read = dai_list_read_file,
376 .llseek = default_llseek,/* read accesses f_pos */
377};
378
Mark Brown19c7ac22010-09-15 18:22:40 +0100379static ssize_t platform_list_read_file(struct file *file,
380 char __user *user_buf,
381 size_t count, loff_t *ppos)
382{
383 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100384 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100385 struct snd_soc_platform *platform;
386
387 if (!buf)
388 return -ENOMEM;
389
Mark Brown2b194f9d2010-10-13 10:52:16 +0100390 list_for_each_entry(platform, &platform_list, list) {
391 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
392 platform->name);
393 if (len >= 0)
394 ret += len;
395 if (ret > PAGE_SIZE) {
396 ret = PAGE_SIZE;
397 break;
398 }
399 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100400
Mark Brown2b194f9d2010-10-13 10:52:16 +0100401 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100402
403 kfree(buf);
404
405 return ret;
406}
407
408static const struct file_operations platform_list_fops = {
409 .read = platform_list_read_file,
410 .llseek = default_llseek,/* read accesses f_pos */
411};
412
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200413static void soc_init_card_debugfs(struct snd_soc_card *card)
414{
415 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000416 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200417 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200418 dev_warn(card->dev,
419 "ASoC: Failed to create codec debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200420 return;
421 }
422
423 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
424 card->debugfs_card_root,
425 &card->pop_time);
426 if (!card->debugfs_pop_time)
427 dev_warn(card->dev,
428 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200429}
430
431static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
432{
433 debugfs_remove_recursive(card->debugfs_card_root);
434}
435
Mark Brown2624d5f2009-11-03 21:56:13 +0000436#else
437
438static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
439{
440}
441
442static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
443{
444}
Axel Linb95fccb2010-11-09 17:06:44 +0800445
446static inline void soc_init_card_debugfs(struct snd_soc_card *card)
447{
448}
449
450static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
451{
452}
Mark Brown2624d5f2009-11-03 21:56:13 +0000453#endif
454
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200455#ifdef CONFIG_SND_SOC_AC97_BUS
456/* unregister ac97 codec */
457static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
458{
459 if (codec->ac97->dev.bus)
460 device_unregister(&codec->ac97->dev);
461 return 0;
462}
463
464/* stop no dev release warning */
465static void soc_ac97_device_release(struct device *dev){}
466
467/* register ac97 codec to bus */
468static int soc_ac97_dev_register(struct snd_soc_codec *codec)
469{
470 int err;
471
472 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100473 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200474 codec->ac97->dev.release = soc_ac97_device_release;
475
Kay Sieversbb072bf2008-11-02 03:50:35 +0100476 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000477 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200478 err = device_register(&codec->ac97->dev);
479 if (err < 0) {
480 snd_printk(KERN_ERR "Can't register ac97 bus\n");
481 codec->ac97->dev.bus = NULL;
482 return err;
483 }
484 return 0;
485}
486#endif
487
Mark Brown06f409d2009-04-07 18:10:13 +0100488static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
489{
490 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000491 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
492 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Mark Brown06f409d2009-04-07 18:10:13 +0100493 int ret;
494
Mark Brown4f333b22011-03-08 00:11:15 +0000495 if (!codec_dai->driver->symmetric_rates &&
496 !cpu_dai->driver->symmetric_rates &&
497 !rtd->dai_link->symmetric_rates)
498 return 0;
Mark Brown06f409d2009-04-07 18:10:13 +0100499
Mark Brownc4ef8782011-03-08 00:17:56 +0000500 /* This can happen if multiple streams are starting simultaneously -
501 * the second can need to get its constraints before the first has
502 * picked a rate. Complain and allow the application to carry on.
503 */
504 if (!rtd->rate) {
505 dev_warn(&rtd->dev,
506 "Not enforcing symmetric_rates due to race\n");
507 return 0;
508 }
509
Mark Brown4f333b22011-03-08 00:11:15 +0000510 dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n", rtd->rate);
511
512 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
513 SNDRV_PCM_HW_PARAM_RATE,
514 rtd->rate, rtd->rate);
515 if (ret < 0) {
516 dev_err(&rtd->dev,
517 "Unable to apply rate symmetry constraint: %d\n", ret);
518 return ret;
Mark Brown06f409d2009-04-07 18:10:13 +0100519 }
520
521 return 0;
522}
523
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200524/*
525 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
526 * then initialized and any private data can be allocated. This also calls
527 * startup for the cpu DAI, platform, machine and codec DAI.
528 */
529static int soc_pcm_open(struct snd_pcm_substream *substream)
530{
531 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200532 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000533 struct snd_soc_platform *platform = rtd->platform;
534 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
535 struct snd_soc_dai *codec_dai = rtd->codec_dai;
536 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
537 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200538 int ret = 0;
539
540 mutex_lock(&pcm_mutex);
541
542 /* startup the audio subsystem */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000543 if (cpu_dai->driver->ops->startup) {
544 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200545 if (ret < 0) {
546 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100547 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200548 goto out;
549 }
550 }
551
Mark Brown8842c722011-04-27 18:58:17 +0100552 if (platform->driver->ops && platform->driver->ops->open) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000553 ret = platform->driver->ops->open(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200554 if (ret < 0) {
555 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
556 goto platform_err;
557 }
558 }
559
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000560 if (codec_dai->driver->ops->startup) {
561 ret = codec_dai->driver->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100562 if (ret < 0) {
563 printk(KERN_ERR "asoc: can't open codec %s\n",
564 codec_dai->name);
565 goto codec_dai_err;
566 }
567 }
568
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000569 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
570 ret = rtd->dai_link->ops->startup(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200571 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000572 printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200573 goto machine_err;
574 }
575 }
576
Mark Browna00f90f2010-12-02 16:24:24 +0000577 /* Check that the codec and cpu DAIs are compatible */
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200578 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
579 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000580 max(codec_dai_drv->playback.rate_min,
581 cpu_dai_drv->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200582 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000583 min(codec_dai_drv->playback.rate_max,
584 cpu_dai_drv->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200585 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000586 max(codec_dai_drv->playback.channels_min,
587 cpu_dai_drv->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200588 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000589 min(codec_dai_drv->playback.channels_max,
590 cpu_dai_drv->playback.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100591 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000592 codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100593 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000594 codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates;
595 if (codec_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900596 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000597 runtime->hw.rates |= cpu_dai_drv->playback.rates;
598 if (cpu_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900599 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600 runtime->hw.rates |= codec_dai_drv->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200601 } else {
602 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000603 max(codec_dai_drv->capture.rate_min,
604 cpu_dai_drv->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200605 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000606 min(codec_dai_drv->capture.rate_max,
607 cpu_dai_drv->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200608 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000609 max(codec_dai_drv->capture.channels_min,
610 cpu_dai_drv->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200611 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000612 min(codec_dai_drv->capture.channels_max,
613 cpu_dai_drv->capture.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100614 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000615 codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100616 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000617 codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates;
618 if (codec_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900619 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000620 runtime->hw.rates |= cpu_dai_drv->capture.rates;
621 if (cpu_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900622 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000623 runtime->hw.rates |= codec_dai_drv->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200624 }
625
Lu Guanqunc51def62011-04-06 23:25:21 +0800626 ret = -EINVAL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200627 snd_pcm_limit_hw_rates(runtime);
628 if (!runtime->hw.rates) {
629 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100630 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900631 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200632 }
633 if (!runtime->hw.formats) {
634 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100635 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900636 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200637 }
Lu Guanqunb04cfcf2011-04-06 23:25:11 +0800638 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
639 runtime->hw.channels_min > runtime->hw.channels_max) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200640 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000641 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900642 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200643 }
644
Mark Brown06f409d2009-04-07 18:10:13 +0100645 /* Symmetry only applies if we've already got an active stream. */
646 if (cpu_dai->active || codec_dai->active) {
647 ret = soc_pcm_apply_symmetry(substream);
648 if (ret != 0)
Jassi Brarbb1c0472010-02-25 11:24:53 +0900649 goto config_err;
Mark Brown06f409d2009-04-07 18:10:13 +0100650 }
651
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000652 pr_debug("asoc: %s <-> %s info:\n",
653 codec_dai->name, cpu_dai->name);
Mark Brownf24368c2008-10-21 21:45:08 +0100654 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
655 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
656 runtime->hw.channels_max);
657 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
658 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200659
Jassi Brar14dc5732010-02-26 09:12:32 +0900660 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000661 cpu_dai->playback_active++;
662 codec_dai->playback_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900663 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000664 cpu_dai->capture_active++;
665 codec_dai->capture_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900666 }
667 cpu_dai->active++;
668 codec_dai->active++;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000669 rtd->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200670 mutex_unlock(&pcm_mutex);
671 return 0;
672
Jassi Brarbb1c0472010-02-25 11:24:53 +0900673config_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000674 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
675 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200676
Jassi Brarbb1c0472010-02-25 11:24:53 +0900677machine_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000678 if (codec_dai->driver->ops->shutdown)
679 codec_dai->driver->ops->shutdown(substream, codec_dai);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900680
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100681codec_dai_err:
Mark Brown8842c722011-04-27 18:58:17 +0100682 if (platform->driver->ops && platform->driver->ops->close)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000683 platform->driver->ops->close(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200684
685platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000686 if (cpu_dai->driver->ops->shutdown)
687 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200688out:
689 mutex_unlock(&pcm_mutex);
690 return ret;
691}
692
693/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200694 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200695 * This is to ensure there are no pops or clicks in between any music tracks
696 * due to DAPM power cycling.
697 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100698static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200699{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000700 struct snd_soc_pcm_runtime *rtd =
701 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
702 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200703
704 mutex_lock(&pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200705
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000706 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
707 codec_dai->driver->playback.stream_name,
708 codec_dai->playback_active ? "active" : "inactive",
709 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200710
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000711 /* are we waiting on this codec DAI stream */
712 if (codec_dai->pop_wait == 1) {
713 codec_dai->pop_wait = 0;
714 snd_soc_dapm_stream_event(rtd,
715 codec_dai->driver->playback.stream_name,
716 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200717 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000718
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200719 mutex_unlock(&pcm_mutex);
720}
721
722/*
723 * Called by ALSA when a PCM substream is closed. Private data can be
724 * freed here. The cpu DAI, codec DAI, machine and platform are also
725 * shutdown.
726 */
727static int soc_codec_close(struct snd_pcm_substream *substream)
728{
729 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000730 struct snd_soc_platform *platform = rtd->platform;
731 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
732 struct snd_soc_dai *codec_dai = rtd->codec_dai;
733 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200734
735 mutex_lock(&pcm_mutex);
736
Jassi Brar14dc5732010-02-26 09:12:32 +0900737 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000738 cpu_dai->playback_active--;
739 codec_dai->playback_active--;
Jassi Brar14dc5732010-02-26 09:12:32 +0900740 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000741 cpu_dai->capture_active--;
742 codec_dai->capture_active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200743 }
Jassi Brar14dc5732010-02-26 09:12:32 +0900744
745 cpu_dai->active--;
746 codec_dai->active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200747 codec->active--;
748
Mark Brown6010b2d2008-09-06 18:33:24 +0100749 /* Muting the DAC suppresses artifacts caused during digital
750 * shutdown, for example from stopping clocks.
751 */
752 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
753 snd_soc_dai_digital_mute(codec_dai, 1);
754
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000755 if (cpu_dai->driver->ops->shutdown)
756 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200757
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000758 if (codec_dai->driver->ops->shutdown)
759 codec_dai->driver->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200760
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000761 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
762 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200763
Mark Brown8842c722011-04-27 18:58:17 +0100764 if (platform->driver->ops && platform->driver->ops->close)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000765 platform->driver->ops->close(substream);
766 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200767
768 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
769 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100770 codec_dai->pop_wait = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000771 schedule_delayed_work(&rtd->delayed_work,
772 msecs_to_jiffies(rtd->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200773 } else {
774 /* capture streams can be powered down now */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000775 snd_soc_dapm_stream_event(rtd,
776 codec_dai->driver->capture.stream_name,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100777 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200778 }
779
780 mutex_unlock(&pcm_mutex);
781 return 0;
782}
783
784/*
785 * Called by ALSA when the PCM substream is prepared, can set format, sample
786 * rate, etc. This function is non atomic and can be called multiple times,
787 * it can refer to the runtime info.
788 */
789static int soc_pcm_prepare(struct snd_pcm_substream *substream)
790{
791 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000792 struct snd_soc_platform *platform = rtd->platform;
793 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
794 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200795 int ret = 0;
796
797 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100798
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000799 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
800 ret = rtd->dai_link->ops->prepare(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100801 if (ret < 0) {
802 printk(KERN_ERR "asoc: machine prepare error\n");
803 goto out;
804 }
805 }
806
Mark Brown8842c722011-04-27 18:58:17 +0100807 if (platform->driver->ops && platform->driver->ops->prepare) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000808 ret = platform->driver->ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200809 if (ret < 0) {
810 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200811 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200812 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200813 }
814
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000815 if (codec_dai->driver->ops->prepare) {
816 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200817 if (ret < 0) {
818 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200819 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200820 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200821 }
822
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000823 if (cpu_dai->driver->ops->prepare) {
824 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100825 if (ret < 0) {
826 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
827 goto out;
828 }
829 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200830
Mark Brownd45f6212008-10-14 13:58:36 +0100831 /* cancel any delayed stream shutdown that is pending */
832 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
833 codec_dai->pop_wait) {
834 codec_dai->pop_wait = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000835 cancel_delayed_work(&rtd->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100836 }
837
Mark Brown452c5ea2009-05-17 21:41:23 +0100838 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000839 snd_soc_dapm_stream_event(rtd,
840 codec_dai->driver->playback.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100841 SND_SOC_DAPM_STREAM_START);
842 else
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000843 snd_soc_dapm_stream_event(rtd,
844 codec_dai->driver->capture.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100845 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100846
Mark Brown452c5ea2009-05-17 21:41:23 +0100847 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200848
849out:
850 mutex_unlock(&pcm_mutex);
851 return ret;
852}
853
854/*
855 * Called by ALSA when the hardware params are set by application. This
856 * function can also be called multiple times and can allocate buffers
857 * (using snd_pcm_lib_* ). It's non-atomic.
858 */
859static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
860 struct snd_pcm_hw_params *params)
861{
862 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000863 struct snd_soc_platform *platform = rtd->platform;
864 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
865 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200866 int ret = 0;
867
868 mutex_lock(&pcm_mutex);
869
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000870 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
871 ret = rtd->dai_link->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200872 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100873 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200874 goto out;
875 }
876 }
877
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000878 if (codec_dai->driver->ops->hw_params) {
879 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100880 if (ret < 0) {
881 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
882 codec_dai->name);
883 goto codec_err;
884 }
885 }
886
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000887 if (cpu_dai->driver->ops->hw_params) {
888 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200889 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200890 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100891 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200892 goto interface_err;
893 }
894 }
895
Mark Brown8842c722011-04-27 18:58:17 +0100896 if (platform->driver->ops && platform->driver->ops->hw_params) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000897 ret = platform->driver->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200898 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200899 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200900 platform->name);
901 goto platform_err;
902 }
903 }
904
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000905 rtd->rate = params_rate(params);
Mark Brown06f409d2009-04-07 18:10:13 +0100906
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200907out:
908 mutex_unlock(&pcm_mutex);
909 return ret;
910
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200911platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000912 if (cpu_dai->driver->ops->hw_free)
913 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200914
915interface_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000916 if (codec_dai->driver->ops->hw_free)
917 codec_dai->driver->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100918
919codec_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000920 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
921 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200922
923 mutex_unlock(&pcm_mutex);
924 return ret;
925}
926
927/*
Mark Browna00f90f2010-12-02 16:24:24 +0000928 * Frees resources allocated by hw_params, can be called multiple times
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200929 */
930static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
931{
932 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000933 struct snd_soc_platform *platform = rtd->platform;
934 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
935 struct snd_soc_dai *codec_dai = rtd->codec_dai;
936 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200937
938 mutex_lock(&pcm_mutex);
939
940 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100941 if (!codec->active)
942 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200943
944 /* free any machine hw params */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000945 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
946 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200947
948 /* free any DMA resources */
Mark Brown8842c722011-04-27 18:58:17 +0100949 if (platform->driver->ops && platform->driver->ops->hw_free)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000950 platform->driver->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200951
Mark Browna00f90f2010-12-02 16:24:24 +0000952 /* now free hw params for the DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000953 if (codec_dai->driver->ops->hw_free)
954 codec_dai->driver->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200955
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000956 if (cpu_dai->driver->ops->hw_free)
957 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200958
959 mutex_unlock(&pcm_mutex);
960 return 0;
961}
962
963static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
964{
965 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000966 struct snd_soc_platform *platform = rtd->platform;
967 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
968 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200969 int ret;
970
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000971 if (codec_dai->driver->ops->trigger) {
972 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200973 if (ret < 0)
974 return ret;
975 }
976
Mark Brown8842c722011-04-27 18:58:17 +0100977 if (platform->driver->ops && platform->driver->ops->trigger) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000978 ret = platform->driver->ops->trigger(substream, cmd);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200979 if (ret < 0)
980 return ret;
981 }
982
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000983 if (cpu_dai->driver->ops->trigger) {
984 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200985 if (ret < 0)
986 return ret;
987 }
988 return 0;
989}
990
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200991/*
992 * soc level wrapper for pointer callback
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200993 * If cpu_dai, codec_dai, platform driver has the delay callback, than
994 * the runtime->delay will be updated accordingly.
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200995 */
996static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
997{
998 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000999 struct snd_soc_platform *platform = rtd->platform;
1000 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1001 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001002 struct snd_pcm_runtime *runtime = substream->runtime;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001003 snd_pcm_uframes_t offset = 0;
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001004 snd_pcm_sframes_t delay = 0;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001005
Mark Brown8842c722011-04-27 18:58:17 +01001006 if (platform->driver->ops && platform->driver->ops->pointer)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001007 offset = platform->driver->ops->pointer(substream);
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001008
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001009 if (cpu_dai->driver->ops->delay)
1010 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001011
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001012 if (codec_dai->driver->ops->delay)
1013 delay += codec_dai->driver->ops->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001014
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001015 if (platform->driver->delay)
1016 delay += platform->driver->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001017
1018 runtime->delay = delay;
1019
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001020 return offset;
1021}
1022
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001023/* ASoC PCM operations */
1024static struct snd_pcm_ops soc_pcm_ops = {
1025 .open = soc_pcm_open,
1026 .close = soc_codec_close,
1027 .hw_params = soc_pcm_hw_params,
1028 .hw_free = soc_pcm_hw_free,
1029 .prepare = soc_pcm_prepare,
1030 .trigger = soc_pcm_trigger,
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001031 .pointer = soc_pcm_pointer,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001032};
1033
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001034#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001035/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001036int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001037{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001038 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001039 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001040 int i;
1041
Daniel Macke3509ff2009-06-03 17:44:49 +02001042 /* If the initialization of this soc device failed, there is no codec
1043 * associated with it. Just bail out in this case.
1044 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001045 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +02001046 return 0;
1047
Andy Green6ed25972008-06-13 16:24:05 +01001048 /* Due to the resume being scheduled into a workqueue we could
1049 * suspend before that's finished - wait for it to complete.
1050 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001051 snd_power_lock(card->snd_card);
1052 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
1053 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +01001054
1055 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001056 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +01001057
Mark Browna00f90f2010-12-02 16:24:24 +00001058 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001059 for (i = 0; i < card->num_rtd; i++) {
1060 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1061 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001062
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001063 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001064 continue;
1065
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001066 if (drv->ops->digital_mute && dai->playback_active)
1067 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001068 }
1069
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001070 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001071 for (i = 0; i < card->num_rtd; i++) {
1072 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001073 continue;
1074
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001075 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +01001076 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001077
Mark Brown87506542008-11-18 20:50:34 +00001078 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001079 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001080
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001081 for (i = 0; i < card->num_rtd; i++) {
1082 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1083 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001084
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001085 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001086 continue;
1087
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001088 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
1089 cpu_dai->driver->suspend(cpu_dai);
1090 if (platform->driver->suspend && !platform->suspended) {
1091 platform->driver->suspend(cpu_dai);
1092 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +01001093 }
1094 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001095
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001096 /* close any waiting streams and save state */
1097 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +01001098 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001099 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001100 }
Mark Brown3efab7d2010-05-09 13:25:43 +01001101
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001102 for (i = 0; i < card->num_rtd; i++) {
1103 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1104
1105 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001106 continue;
1107
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001108 if (driver->playback.stream_name != NULL)
1109 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1110 SND_SOC_DAPM_STREAM_SUSPEND);
1111
1112 if (driver->capture.stream_name != NULL)
1113 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1114 SND_SOC_DAPM_STREAM_SUSPEND);
1115 }
1116
1117 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001118 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001119 /* If there are paths active then the CODEC will be held with
1120 * bias _ON and should not be suspended. */
1121 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001122 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001123 case SND_SOC_BIAS_STANDBY:
1124 case SND_SOC_BIAS_OFF:
1125 codec->driver->suspend(codec, PMSG_SUSPEND);
1126 codec->suspended = 1;
1127 break;
1128 default:
1129 dev_dbg(codec->dev, "CODEC is on over suspend\n");
1130 break;
1131 }
1132 }
1133 }
1134
1135 for (i = 0; i < card->num_rtd; i++) {
1136 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1137
1138 if (card->rtd[i].dai_link->ignore_suspend)
1139 continue;
1140
1141 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
1142 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001143 }
1144
Mark Brown87506542008-11-18 20:50:34 +00001145 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001146 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001147
1148 return 0;
1149}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001150EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001151
Andy Green6ed25972008-06-13 16:24:05 +01001152/* deferred resume work, so resume can complete before we finished
1153 * setting our codec back up, which can be very slow on I2C
1154 */
1155static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001156{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001157 struct snd_soc_card *card =
1158 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001159 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001160 int i;
1161
Andy Green6ed25972008-06-13 16:24:05 +01001162 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1163 * so userspace apps are blocked from touching us
1164 */
1165
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001166 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +01001167
Mark Brown99497882010-05-07 20:24:05 +01001168 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001169 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +01001170
Mark Brown87506542008-11-18 20:50:34 +00001171 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001172 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001173
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 /* resume AC97 DAIs */
1175 for (i = 0; i < card->num_rtd; i++) {
1176 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +01001177
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001178 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001179 continue;
1180
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001181 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
1182 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001183 }
1184
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001185 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001186 /* If the CODEC was idle over suspend then it will have been
1187 * left with bias OFF or STANDBY and suspended so we must now
1188 * resume. Otherwise the suspend was suppressed.
1189 */
1190 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001191 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001192 case SND_SOC_BIAS_STANDBY:
1193 case SND_SOC_BIAS_OFF:
1194 codec->driver->resume(codec);
1195 codec->suspended = 0;
1196 break;
1197 default:
1198 dev_dbg(codec->dev, "CODEC was on over suspend\n");
1199 break;
1200 }
Mark Brown1547aba2010-05-07 21:11:40 +01001201 }
1202 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001203
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001204 for (i = 0; i < card->num_rtd; i++) {
1205 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001206
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001207 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001208 continue;
1209
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001210 if (driver->playback.stream_name != NULL)
1211 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001212 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001213
1214 if (driver->capture.stream_name != NULL)
1215 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001216 SND_SOC_DAPM_STREAM_RESUME);
1217 }
1218
Mark Brown3ff3f642008-05-19 12:32:25 +02001219 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001220 for (i = 0; i < card->num_rtd; i++) {
1221 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1222 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001223
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001224 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001225 continue;
1226
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001227 if (drv->ops->digital_mute && dai->playback_active)
1228 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001229 }
1230
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001231 for (i = 0; i < card->num_rtd; i++) {
1232 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1233 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001234
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001235 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001236 continue;
1237
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001238 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
1239 cpu_dai->driver->resume(cpu_dai);
1240 if (platform->driver->resume && platform->suspended) {
1241 platform->driver->resume(cpu_dai);
1242 platform->suspended = 0;
1243 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001244 }
1245
Mark Brown87506542008-11-18 20:50:34 +00001246 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001247 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001248
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001249 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +01001250
1251 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001252 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +01001253}
1254
1255/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001256int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +01001257{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001258 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -06001259 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +02001260
Mark Brown64ab9ba2009-03-31 11:27:03 +01001261 /* AC97 devices might have other drivers hanging off them so
1262 * need to resume immediately. Other drivers don't have that
1263 * problem and may take a substantial amount of time to resume
1264 * due to I/O costs and anti-pop so handle them out of line.
1265 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001266 for (i = 0; i < card->num_rtd; i++) {
1267 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -06001268 ac97_control |= cpu_dai->driver->ac97_control;
1269 }
1270 if (ac97_control) {
1271 dev_dbg(dev, "Resuming AC97 immediately\n");
1272 soc_resume_deferred(&card->deferred_resume_work);
1273 } else {
1274 dev_dbg(dev, "Scheduling resume work\n");
1275 if (!schedule_work(&card->deferred_resume_work))
1276 dev_err(dev, "resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +01001277 }
Andy Green6ed25972008-06-13 16:24:05 +01001278
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001279 return 0;
1280}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001281EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001282#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001283#define snd_soc_suspend NULL
1284#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001285#endif
1286
Barry Song02a06d32009-10-16 18:13:38 +08001287static struct snd_soc_dai_ops null_dai_ops = {
1288};
1289
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001290static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001291{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001292 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1293 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +00001294 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001295 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001296 struct snd_soc_dai *codec_dai, *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +01001297 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001298
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001299 if (rtd->complete)
1300 return 1;
1301 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +00001302
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001303 /* do we already have the CPU DAI for this link ? */
1304 if (rtd->cpu_dai) {
1305 goto find_codec;
1306 }
1307 /* no, then find CPU DAI from registered DAIs*/
1308 list_for_each_entry(cpu_dai, &dai_list, list) {
1309 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001310 rtd->cpu_dai = cpu_dai;
1311 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001312 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001313 }
1314 dev_dbg(card->dev, "CPU DAI %s not registered\n",
1315 dai_link->cpu_dai_name);
1316
1317find_codec:
1318 /* do we already have the CODEC for this link ? */
1319 if (rtd->codec) {
1320 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +00001321 }
1322
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001323 /* no, then find CODEC from registered CODECs*/
1324 list_for_each_entry(codec, &codec_list, list) {
1325 if (!strcmp(codec->name, dai_link->codec_name)) {
1326 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +00001327
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001328 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
1329 list_for_each_entry(codec_dai, &dai_list, list) {
1330 if (codec->dev == codec_dai->dev &&
1331 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
1332 rtd->codec_dai = codec_dai;
1333 goto find_platform;
Mark Brown6b05eda2008-12-08 19:26:48 +00001334 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001335 }
1336 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
1337 dai_link->codec_dai_name);
1338
1339 goto find_platform;
1340 }
1341 }
1342 dev_dbg(card->dev, "CODEC %s not registered\n",
1343 dai_link->codec_name);
1344
1345find_platform:
Mark Brown848dd8b2011-04-27 18:16:32 +01001346 /* do we need a platform? */
1347 if (rtd->platform)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001348 goto out;
Mark Brown848dd8b2011-04-27 18:16:32 +01001349
1350 /* if there's no platform we match on the empty platform */
1351 platform_name = dai_link->platform_name;
1352 if (!platform_name)
1353 platform_name = "snd-soc-dummy";
1354
1355 /* no, then find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001356 list_for_each_entry(platform, &platform_list, list) {
Mark Brown848dd8b2011-04-27 18:16:32 +01001357 if (!strcmp(platform->name, platform_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001358 rtd->platform = platform;
1359 goto out;
1360 }
1361 }
1362
1363 dev_dbg(card->dev, "platform %s not registered\n",
1364 dai_link->platform_name);
1365 return 0;
1366
1367out:
1368 /* mark rtd as complete if we found all 4 of our client devices */
1369 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
1370 rtd->complete = 1;
1371 card->num_rtd++;
1372 }
1373 return 1;
1374}
1375
Jarkko Nikula589c3562010-12-06 16:27:07 +02001376static void soc_remove_codec(struct snd_soc_codec *codec)
1377{
1378 int err;
1379
1380 if (codec->driver->remove) {
1381 err = codec->driver->remove(codec);
1382 if (err < 0)
1383 dev_err(codec->dev,
1384 "asoc: failed to remove %s: %d\n",
1385 codec->name, err);
1386 }
1387
1388 /* Make sure all DAPM widgets are freed */
1389 snd_soc_dapm_free(&codec->dapm);
1390
1391 soc_cleanup_codec_debugfs(codec);
1392 codec->probed = 0;
1393 list_del(&codec->card_list);
1394 module_put(codec->dev->driver->owner);
1395}
1396
Liam Girdwood0168bf02011-06-07 16:08:05 +01001397static void soc_remove_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001398{
1399 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1400 struct snd_soc_codec *codec = rtd->codec;
1401 struct snd_soc_platform *platform = rtd->platform;
1402 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1403 int err;
1404
1405 /* unregister the rtd device */
1406 if (rtd->dev_registered) {
1407 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001408 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001409 device_unregister(&rtd->dev);
1410 rtd->dev_registered = 0;
1411 }
1412
1413 /* remove the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001414 if (codec_dai && codec_dai->probed &&
1415 codec_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001416 if (codec_dai->driver->remove) {
1417 err = codec_dai->driver->remove(codec_dai);
1418 if (err < 0)
1419 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
1420 }
1421 codec_dai->probed = 0;
1422 list_del(&codec_dai->card_list);
1423 }
1424
1425 /* remove the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001426 if (platform && platform->probed &&
1427 platform->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001428 if (platform->driver->remove) {
1429 err = platform->driver->remove(platform);
1430 if (err < 0)
1431 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
1432 }
1433 platform->probed = 0;
1434 list_del(&platform->card_list);
1435 module_put(platform->dev->driver->owner);
1436 }
1437
1438 /* remove the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001439 if (codec && codec->probed &&
1440 codec->driver->remove_order == order)
Jarkko Nikula589c3562010-12-06 16:27:07 +02001441 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001442
1443 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001444 if (cpu_dai && cpu_dai->probed &&
1445 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001446 if (cpu_dai->driver->remove) {
1447 err = cpu_dai->driver->remove(cpu_dai);
1448 if (err < 0)
1449 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
1450 }
1451 cpu_dai->probed = 0;
1452 list_del(&cpu_dai->card_list);
1453 module_put(cpu_dai->dev->driver->owner);
1454 }
1455}
1456
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001457static void soc_remove_dai_links(struct snd_soc_card *card)
1458{
Liam Girdwood0168bf02011-06-07 16:08:05 +01001459 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001460
Liam Girdwood0168bf02011-06-07 16:08:05 +01001461 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1462 order++) {
1463 for (dai = 0; dai < card->num_rtd; dai++)
1464 soc_remove_dai_link(card, dai, order);
1465 }
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001466 card->num_rtd = 0;
1467}
1468
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001469static void soc_set_name_prefix(struct snd_soc_card *card,
1470 struct snd_soc_codec *codec)
1471{
1472 int i;
1473
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001474 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001475 return;
1476
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001477 for (i = 0; i < card->num_configs; i++) {
1478 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001479 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1480 codec->name_prefix = map->name_prefix;
1481 break;
1482 }
1483 }
1484}
1485
Jarkko Nikula589c3562010-12-06 16:27:07 +02001486static int soc_probe_codec(struct snd_soc_card *card,
1487 struct snd_soc_codec *codec)
1488{
1489 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +00001490 const struct snd_soc_codec_driver *driver = codec->driver;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001491
1492 codec->card = card;
1493 codec->dapm.card = card;
1494 soc_set_name_prefix(card, codec);
1495
Jarkko Nikula70d29332011-01-27 16:24:22 +02001496 if (!try_module_get(codec->dev->driver->owner))
1497 return -ENODEV;
1498
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001499 soc_init_codec_debugfs(codec);
1500
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001501 if (driver->dapm_widgets)
1502 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1503 driver->num_dapm_widgets);
1504
Mark Brown89b95ac02011-03-07 16:38:44 +00001505 if (driver->probe) {
1506 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001507 if (ret < 0) {
1508 dev_err(codec->dev,
1509 "asoc: failed to probe CODEC %s: %d\n",
1510 codec->name, ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001511 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001512 }
1513 }
1514
Mark Brownb7af1da2011-04-07 19:18:44 +09001515 if (driver->controls)
1516 snd_soc_add_controls(codec, driver->controls,
1517 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001518 if (driver->dapm_routes)
1519 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1520 driver->num_dapm_routes);
1521
Jarkko Nikula589c3562010-12-06 16:27:07 +02001522 /* mark codec as probed and add to card codec list */
1523 codec->probed = 1;
1524 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001525 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001526
Jarkko Nikula70d29332011-01-27 16:24:22 +02001527 return 0;
1528
1529err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001530 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001531 module_put(codec->dev->driver->owner);
1532
Jarkko Nikula589c3562010-12-06 16:27:07 +02001533 return ret;
1534}
1535
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001536static void rtd_release(struct device *dev) {}
1537
Jarkko Nikula589c3562010-12-06 16:27:07 +02001538static int soc_post_component_init(struct snd_soc_card *card,
1539 struct snd_soc_codec *codec,
1540 int num, int dailess)
1541{
1542 struct snd_soc_dai_link *dai_link = NULL;
1543 struct snd_soc_aux_dev *aux_dev = NULL;
1544 struct snd_soc_pcm_runtime *rtd;
1545 const char *temp, *name;
1546 int ret = 0;
1547
1548 if (!dailess) {
1549 dai_link = &card->dai_link[num];
1550 rtd = &card->rtd[num];
1551 name = dai_link->name;
1552 } else {
1553 aux_dev = &card->aux_dev[num];
1554 rtd = &card->rtd_aux[num];
1555 name = aux_dev->name;
1556 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001557 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001558
1559 /* machine controls, routes and widgets are not prefixed */
1560 temp = codec->name_prefix;
1561 codec->name_prefix = NULL;
1562
1563 /* do machine specific initialization */
1564 if (!dailess && dai_link->init)
1565 ret = dai_link->init(rtd);
1566 else if (dailess && aux_dev->init)
1567 ret = aux_dev->init(&codec->dapm);
1568 if (ret < 0) {
1569 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1570 return ret;
1571 }
1572 codec->name_prefix = temp;
1573
1574 /* Make sure all DAPM widgets are instantiated */
1575 snd_soc_dapm_new_widgets(&codec->dapm);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001576
1577 /* register the rtd device */
1578 rtd->codec = codec;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001579 rtd->dev.parent = card->dev;
1580 rtd->dev.release = rtd_release;
1581 rtd->dev.init_name = name;
1582 ret = device_register(&rtd->dev);
1583 if (ret < 0) {
1584 dev_err(card->dev,
1585 "asoc: failed to register runtime device: %d\n", ret);
1586 return ret;
1587 }
1588 rtd->dev_registered = 1;
1589
1590 /* add DAPM sysfs entries for this codec */
1591 ret = snd_soc_dapm_sys_add(&rtd->dev);
1592 if (ret < 0)
1593 dev_err(codec->dev,
1594 "asoc: failed to add codec dapm sysfs entries: %d\n",
1595 ret);
1596
1597 /* add codec sysfs entries */
1598 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1599 if (ret < 0)
1600 dev_err(codec->dev,
1601 "asoc: failed to add codec sysfs files: %d\n", ret);
1602
1603 return 0;
1604}
1605
Liam Girdwood0168bf02011-06-07 16:08:05 +01001606static int soc_probe_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001607{
1608 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1609 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1610 struct snd_soc_codec *codec = rtd->codec;
1611 struct snd_soc_platform *platform = rtd->platform;
1612 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1613 int ret;
1614
Liam Girdwood0168bf02011-06-07 16:08:05 +01001615 dev_dbg(card->dev, "probe %s dai link %d late %d\n",
1616 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001617
1618 /* config components */
1619 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001620 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001621 codec_dai->card = card;
1622 cpu_dai->card = card;
1623
1624 /* set default power off timeout */
1625 rtd->pmdown_time = pmdown_time;
1626
1627 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001628 if (!cpu_dai->probed &&
1629 cpu_dai->driver->probe_order == order) {
Liam Girdwood61b61e32011-05-24 13:57:43 +01001630 if (!try_module_get(cpu_dai->dev->driver->owner))
1631 return -ENODEV;
1632
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001633 if (cpu_dai->driver->probe) {
1634 ret = cpu_dai->driver->probe(cpu_dai);
1635 if (ret < 0) {
1636 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1637 cpu_dai->name);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001638 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001639 return ret;
1640 }
1641 }
1642 cpu_dai->probed = 1;
1643 /* mark cpu_dai as probed and add to card cpu_dai list */
1644 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1645 }
1646
1647 /* probe the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001648 if (!codec->probed &&
1649 codec->driver->probe_order == order) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001650 ret = soc_probe_codec(card, codec);
1651 if (ret < 0)
1652 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001653 }
1654
1655 /* probe the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001656 if (!platform->probed &&
1657 platform->driver->probe_order == order) {
Jarkko Nikula70d29332011-01-27 16:24:22 +02001658 if (!try_module_get(platform->dev->driver->owner))
1659 return -ENODEV;
1660
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001661 if (platform->driver->probe) {
1662 ret = platform->driver->probe(platform);
1663 if (ret < 0) {
1664 printk(KERN_ERR "asoc: failed to probe platform %s\n",
1665 platform->name);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001666 module_put(platform->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001667 return ret;
1668 }
1669 }
1670 /* mark platform as probed and add to card platform list */
1671 platform->probed = 1;
1672 list_add(&platform->card_list, &card->platform_dev_list);
1673 }
1674
1675 /* probe the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001676 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001677 if (codec_dai->driver->probe) {
1678 ret = codec_dai->driver->probe(codec_dai);
1679 if (ret < 0) {
1680 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1681 codec_dai->name);
1682 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001683 }
1684 }
1685
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001686 /* mark cpu_dai as probed and add to card cpu_dai list */
1687 codec_dai->probed = 1;
1688 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001689 }
1690
Liam Girdwood0168bf02011-06-07 16:08:05 +01001691 /* complete DAI probe during last probe */
1692 if (order != SND_SOC_COMP_ORDER_LAST)
1693 return 0;
1694
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001695 /* DAPM dai link stream work */
1696 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
1697
Jarkko Nikula589c3562010-12-06 16:27:07 +02001698 ret = soc_post_component_init(card, codec, num, 0);
1699 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001700 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001701
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001702 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1703 if (ret < 0)
1704 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1705
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001706 /* create the pcm */
1707 ret = soc_new_pcm(rtd, num);
1708 if (ret < 0) {
1709 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1710 return ret;
1711 }
1712
1713 /* add platform data for AC97 devices */
1714 if (rtd->codec_dai->driver->ac97_control)
1715 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1716
1717 return 0;
1718}
1719
1720#ifdef CONFIG_SND_SOC_AC97_BUS
1721static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1722{
1723 int ret;
1724
1725 /* Only instantiate AC97 if not already done by the adaptor
1726 * for the generic AC97 subsystem.
1727 */
1728 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001729 /*
1730 * It is possible that the AC97 device is already registered to
1731 * the device subsystem. This happens when the device is created
1732 * via snd_ac97_mixer(). Currently only SoC codec that does so
1733 * is the generic AC97 glue but others migh emerge.
1734 *
1735 * In those cases we don't try to register the device again.
1736 */
1737 if (!rtd->codec->ac97_created)
1738 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001739
1740 ret = soc_ac97_dev_register(rtd->codec);
1741 if (ret < 0) {
1742 printk(KERN_ERR "asoc: AC97 device register failed\n");
1743 return ret;
1744 }
1745
1746 rtd->codec->ac97_registered = 1;
1747 }
1748 return 0;
1749}
1750
1751static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1752{
1753 if (codec->ac97_registered) {
1754 soc_ac97_dev_unregister(codec);
1755 codec->ac97_registered = 0;
1756 }
1757}
1758#endif
1759
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001760static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1761{
1762 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001763 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001764 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001765
1766 /* find CODEC from registered CODECs*/
1767 list_for_each_entry(codec, &codec_list, list) {
1768 if (!strcmp(codec->name, aux_dev->codec_name)) {
1769 if (codec->probed) {
1770 dev_err(codec->dev,
1771 "asoc: codec already probed");
1772 ret = -EBUSY;
1773 goto out;
1774 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001775 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001776 }
1777 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001778 /* codec not found */
1779 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1780 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001781
Jarkko Nikula676ad982010-12-03 09:18:22 +02001782found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001783 ret = soc_probe_codec(card, codec);
1784 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001785 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001786
Jarkko Nikula589c3562010-12-06 16:27:07 +02001787 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001788
1789out:
1790 return ret;
1791}
1792
1793static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1794{
1795 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1796 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001797
1798 /* unregister the rtd device */
1799 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001800 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001801 device_unregister(&rtd->dev);
1802 rtd->dev_registered = 0;
1803 }
1804
Jarkko Nikula589c3562010-12-06 16:27:07 +02001805 if (codec && codec->probed)
1806 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001807}
1808
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001809static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1810 enum snd_soc_compress_type compress_type)
1811{
1812 int ret;
1813
1814 if (codec->cache_init)
1815 return 0;
1816
1817 /* override the compress_type if necessary */
1818 if (compress_type && codec->compress_type != compress_type)
1819 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001820 ret = snd_soc_cache_init(codec);
1821 if (ret < 0) {
1822 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1823 ret);
1824 return ret;
1825 }
1826 codec->cache_init = 1;
1827 return 0;
1828}
1829
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001830static void snd_soc_instantiate_card(struct snd_soc_card *card)
1831{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001832 struct snd_soc_codec *codec;
1833 struct snd_soc_codec_conf *codec_conf;
1834 enum snd_soc_compress_type compress_type;
Liam Girdwood0168bf02011-06-07 16:08:05 +01001835 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001836
1837 mutex_lock(&card->mutex);
1838
1839 if (card->instantiated) {
1840 mutex_unlock(&card->mutex);
1841 return;
1842 }
1843
1844 /* bind DAIs */
1845 for (i = 0; i < card->num_links; i++)
1846 soc_bind_dai_link(card, i);
1847
1848 /* bind completed ? */
1849 if (card->num_rtd != card->num_links) {
1850 mutex_unlock(&card->mutex);
1851 return;
1852 }
1853
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001854 /* initialize the register cache for each available codec */
1855 list_for_each_entry(codec, &codec_list, list) {
1856 if (codec->cache_init)
1857 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001858 /* by default we don't override the compress_type */
1859 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001860 /* check to see if we need to override the compress_type */
1861 for (i = 0; i < card->num_configs; ++i) {
1862 codec_conf = &card->codec_conf[i];
1863 if (!strcmp(codec->name, codec_conf->dev_name)) {
1864 compress_type = codec_conf->compress_type;
1865 if (compress_type && compress_type
1866 != codec->compress_type)
1867 break;
1868 }
1869 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001870 ret = snd_soc_init_codec_cache(codec, compress_type);
1871 if (ret < 0) {
1872 mutex_unlock(&card->mutex);
1873 return;
1874 }
1875 }
1876
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001877 /* card bind complete so register a sound card */
1878 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1879 card->owner, 0, &card->snd_card);
1880 if (ret < 0) {
1881 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1882 card->name);
1883 mutex_unlock(&card->mutex);
1884 return;
1885 }
1886 card->snd_card->dev = card->dev;
1887
Mark Browne37a4972011-03-02 18:21:57 +00001888 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1889 card->dapm.dev = card->dev;
1890 card->dapm.card = card;
1891 list_add(&card->dapm.list, &card->dapm_list);
1892
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001893#ifdef CONFIG_DEBUG_FS
1894 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1895#endif
1896
Mark Brown88ee1c62011-02-02 10:43:26 +00001897#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001898 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001899 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001900#endif
Andy Green6ed25972008-06-13 16:24:05 +01001901
Mark Brown9a841eb2011-04-12 17:51:37 -07001902 if (card->dapm_widgets)
1903 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1904 card->num_dapm_widgets);
1905
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001906 /* initialise the sound card only once */
1907 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001908 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001909 if (ret < 0)
1910 goto card_probe_error;
1911 }
1912
Liam Girdwood0168bf02011-06-07 16:08:05 +01001913 /* early DAI link probe */
1914 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1915 order++) {
1916 for (i = 0; i < card->num_links; i++) {
1917 ret = soc_probe_dai_link(card, i, order);
1918 if (ret < 0) {
1919 pr_err("asoc: failed to instantiate card %s: %d\n",
Mark Brown321de0d2010-09-21 15:09:37 +01001920 card->name, ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001921 goto probe_dai_err;
1922 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001923 }
1924 }
1925
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001926 for (i = 0; i < card->num_aux_devs; i++) {
1927 ret = soc_probe_aux_dev(card, i);
1928 if (ret < 0) {
1929 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1930 card->name, ret);
1931 goto probe_aux_dev_err;
1932 }
1933 }
1934
Mark Brownb7af1da2011-04-07 19:18:44 +09001935 /* We should have a non-codec control add function but we don't */
1936 if (card->controls)
1937 snd_soc_add_controls(list_first_entry(&card->codec_dev_list,
1938 struct snd_soc_codec,
1939 card_list),
1940 card->controls,
1941 card->num_controls);
1942
Mark Brownb8ad29d2011-03-02 18:35:51 +00001943 if (card->dapm_routes)
1944 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1945 card->num_dapm_routes);
1946
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001947 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001948 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001949 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1950 "%s", card->long_name ? card->long_name : card->name);
1951 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
Jarkko Nikula2b395352011-05-20 15:47:40 +03001952 "%s", card->driver_name ? card->driver_name : card->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001953
Mark Brown28e9ad92011-03-02 18:36:34 +00001954 if (card->late_probe) {
1955 ret = card->late_probe(card);
1956 if (ret < 0) {
1957 dev_err(card->dev, "%s late_probe() failed: %d\n",
1958 card->name, ret);
1959 goto probe_aux_dev_err;
1960 }
1961 }
1962
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001963 ret = snd_card_register(card->snd_card);
1964 if (ret < 0) {
1965 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001966 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001967 }
1968
1969#ifdef CONFIG_SND_SOC_AC97_BUS
1970 /* register any AC97 codecs */
1971 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001972 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1973 if (ret < 0) {
1974 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1975 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001976 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001977 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001978 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001979 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001980#endif
1981
Mark Brown435c5e22008-12-04 15:32:53 +00001982 card->instantiated = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001983 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001984 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001985
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001986probe_aux_dev_err:
1987 for (i = 0; i < card->num_aux_devs; i++)
1988 soc_remove_aux_dev(card, i);
1989
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001990probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001991 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001992
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001993card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001994 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001995 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001996
1997 snd_card_free(card->snd_card);
1998
1999 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00002000}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002001
Mark Brown435c5e22008-12-04 15:32:53 +00002002/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02002003 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00002004 * client_mutex.
2005 */
2006static void snd_soc_instantiate_cards(void)
2007{
2008 struct snd_soc_card *card;
2009 list_for_each_entry(card, &card_list, list)
2010 snd_soc_instantiate_card(card);
2011}
2012
2013/* probes a new socdev */
2014static int soc_probe(struct platform_device *pdev)
2015{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002016 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00002017 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00002018
Vinod Koul70a7ca32011-01-14 19:22:48 +05302019 /*
2020 * no card, so machine driver should be registering card
2021 * we should not be here in that case so ret error
2022 */
2023 if (!card)
2024 return -EINVAL;
2025
Mark Brown435c5e22008-12-04 15:32:53 +00002026 /* Bodge while we unpick instantiation */
2027 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002028
Mark Brown435c5e22008-12-04 15:32:53 +00002029 ret = snd_soc_register_card(card);
2030 if (ret != 0) {
2031 dev_err(&pdev->dev, "Failed to register card\n");
2032 return ret;
2033 }
2034
2035 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002036}
2037
Vinod Koulb0e26482011-01-13 22:48:02 +05302038static int soc_cleanup_card_resources(struct snd_soc_card *card)
2039{
Vinod Koulb0e26482011-01-13 22:48:02 +05302040 int i;
2041
2042 /* make sure any delayed work runs */
2043 for (i = 0; i < card->num_rtd; i++) {
2044 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2045 flush_delayed_work_sync(&rtd->delayed_work);
2046 }
2047
2048 /* remove auxiliary devices */
2049 for (i = 0; i < card->num_aux_devs; i++)
2050 soc_remove_aux_dev(card, i);
2051
2052 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09002053 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302054
2055 soc_cleanup_card_debugfs(card);
2056
2057 /* remove the card */
2058 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002059 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302060
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02002061 snd_soc_dapm_free(&card->dapm);
2062
Vinod Koulb0e26482011-01-13 22:48:02 +05302063 kfree(card->rtd);
2064 snd_card_free(card->snd_card);
2065 return 0;
2066
2067}
2068
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002069/* removes a socdev */
2070static int soc_remove(struct platform_device *pdev)
2071{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002072 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002073
Mark Brownc5af3a22008-11-28 13:29:45 +00002074 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002075 return 0;
2076}
2077
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002078int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01002079{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002080 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002081 int i;
Mark Brown51737472009-06-22 13:16:51 +01002082
2083 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01002084 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002085
2086 /* Flush out pmdown_time work - we actually do want to run it
2087 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002088 for (i = 0; i < card->num_rtd; i++) {
2089 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01002090 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002091 }
Mark Brown51737472009-06-22 13:16:51 +01002092
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002093 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01002094
2095 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002096}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002097EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01002098
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002099const struct dev_pm_ops snd_soc_pm_ops = {
2100 .suspend = snd_soc_suspend,
2101 .resume = snd_soc_resume,
2102 .poweroff = snd_soc_poweroff,
Mark Brown416356f2009-06-30 19:05:15 +01002103};
Stephen Warrendeb26072011-04-05 19:35:30 -06002104EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01002105
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002106/* ASoC platform driver */
2107static struct platform_driver soc_driver = {
2108 .driver = {
2109 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02002110 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002111 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002112 },
2113 .probe = soc_probe,
2114 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002115};
2116
2117/* create a new pcm */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002118static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002119{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002120 struct snd_soc_codec *codec = rtd->codec;
2121 struct snd_soc_platform *platform = rtd->platform;
2122 struct snd_soc_dai *codec_dai = rtd->codec_dai;
2123 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002124 struct snd_pcm *pcm;
2125 char new_name[64];
2126 int ret = 0, playback = 0, capture = 0;
2127
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002128 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00002129 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002130 rtd->dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002131
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002132 if (codec_dai->driver->playback.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002133 playback = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002134 if (codec_dai->driver->capture.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002135 capture = 1;
2136
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002137 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name);
2138 ret = snd_pcm_new(rtd->card->snd_card, new_name,
2139 num, playback, capture, &pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002140 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002141 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002142 return ret;
2143 }
2144
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002145 rtd->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002146 pcm->private_data = rtd;
Mark Brown8842c722011-04-27 18:58:17 +01002147 if (platform->driver->ops) {
2148 soc_pcm_ops.mmap = platform->driver->ops->mmap;
2149 soc_pcm_ops.pointer = platform->driver->ops->pointer;
2150 soc_pcm_ops.ioctl = platform->driver->ops->ioctl;
2151 soc_pcm_ops.copy = platform->driver->ops->copy;
2152 soc_pcm_ops.silence = platform->driver->ops->silence;
2153 soc_pcm_ops.ack = platform->driver->ops->ack;
2154 soc_pcm_ops.page = platform->driver->ops->page;
2155 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002156
2157 if (playback)
2158 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
2159
2160 if (capture)
2161 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
2162
Mark Brown8842c722011-04-27 18:58:17 +01002163 if (platform->driver->pcm_new) {
Liam Girdwood552d1ef2011-06-07 16:08:33 +01002164 ret = platform->driver->pcm_new(rtd);
Mark Brown8842c722011-04-27 18:58:17 +01002165 if (ret < 0) {
2166 pr_err("asoc: platform pcm constructor failed\n");
2167 return ret;
2168 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002169 }
2170
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002171 pcm->private_free = platform->driver->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002172 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2173 cpu_dai->name);
2174 return ret;
2175}
2176
Mark Brown096e49d2009-07-05 15:12:22 +01002177/**
2178 * snd_soc_codec_volatile_register: Report if a register is volatile.
2179 *
2180 * @codec: CODEC to query.
2181 * @reg: Register to query.
2182 *
2183 * Boolean function indiciating if a CODEC register is volatile.
2184 */
Mark Brown181e0552011-01-24 14:05:25 +00002185int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
2186 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01002187{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00002188 if (codec->volatile_register)
2189 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01002190 else
2191 return 0;
2192}
2193EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
2194
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002195/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002196 * snd_soc_codec_readable_register: Report if a register is readable.
2197 *
2198 * @codec: CODEC to query.
2199 * @reg: Register to query.
2200 *
2201 * Boolean function indicating if a CODEC register is readable.
2202 */
2203int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
2204 unsigned int reg)
2205{
2206 if (codec->readable_register)
2207 return codec->readable_register(codec, reg);
2208 else
2209 return 0;
2210}
2211EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
2212
2213/**
2214 * snd_soc_codec_writable_register: Report if a register is writable.
2215 *
2216 * @codec: CODEC to query.
2217 * @reg: Register to query.
2218 *
2219 * Boolean function indicating if a CODEC register is writable.
2220 */
2221int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
2222 unsigned int reg)
2223{
2224 if (codec->writable_register)
2225 return codec->writable_register(codec, reg);
2226 else
2227 return 0;
2228}
2229EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
2230
2231/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002232 * snd_soc_new_ac97_codec - initailise AC97 device
2233 * @codec: audio codec
2234 * @ops: AC97 bus operations
2235 * @num: AC97 codec number
2236 *
2237 * Initialises AC97 codec resources for use by ad-hoc devices only.
2238 */
2239int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2240 struct snd_ac97_bus_ops *ops, int num)
2241{
2242 mutex_lock(&codec->mutex);
2243
2244 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2245 if (codec->ac97 == NULL) {
2246 mutex_unlock(&codec->mutex);
2247 return -ENOMEM;
2248 }
2249
2250 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2251 if (codec->ac97->bus == NULL) {
2252 kfree(codec->ac97);
2253 codec->ac97 = NULL;
2254 mutex_unlock(&codec->mutex);
2255 return -ENOMEM;
2256 }
2257
2258 codec->ac97->bus->ops = ops;
2259 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002260
2261 /*
2262 * Mark the AC97 device to be created by us. This way we ensure that the
2263 * device will be registered with the device subsystem later on.
2264 */
2265 codec->ac97_created = 1;
2266
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002267 mutex_unlock(&codec->mutex);
2268 return 0;
2269}
2270EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2271
2272/**
2273 * snd_soc_free_ac97_codec - free AC97 codec device
2274 * @codec: audio codec
2275 *
2276 * Frees AC97 codec device resources.
2277 */
2278void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2279{
2280 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002281#ifdef CONFIG_SND_SOC_AC97_BUS
2282 soc_unregister_ac97_dai_link(codec);
2283#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002284 kfree(codec->ac97->bus);
2285 kfree(codec->ac97);
2286 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002287 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002288 mutex_unlock(&codec->mutex);
2289}
2290EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2291
Mark Brownc3753702010-11-01 15:41:57 -04002292unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2293{
2294 unsigned int ret;
2295
Mark Brownc3acec22010-12-02 16:15:29 +00002296 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002297 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002298 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002299
2300 return ret;
2301}
2302EXPORT_SYMBOL_GPL(snd_soc_read);
2303
2304unsigned int snd_soc_write(struct snd_soc_codec *codec,
2305 unsigned int reg, unsigned int val)
2306{
2307 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002308 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002309 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002310}
2311EXPORT_SYMBOL_GPL(snd_soc_write);
2312
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00002313unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
2314 unsigned int reg, const void *data, size_t len)
2315{
2316 return codec->bulk_write_raw(codec, reg, data, len);
2317}
2318EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
2319
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002320/**
2321 * snd_soc_update_bits - update codec register bits
2322 * @codec: audio codec
2323 * @reg: codec register
2324 * @mask: register mask
2325 * @value: new value
2326 *
2327 * Writes new register value.
2328 *
Timur Tabi180c3292011-01-10 15:58:13 -06002329 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002330 */
2331int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002332 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002333{
2334 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002335 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002336 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002337
Timur Tabi180c3292011-01-10 15:58:13 -06002338 ret = snd_soc_read(codec, reg);
2339 if (ret < 0)
2340 return ret;
2341
2342 old = ret;
Mark Brown78bf3c92011-06-03 17:09:14 +01002343 new = (old & ~mask) | (value & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002344 change = old != new;
Timur Tabi180c3292011-01-10 15:58:13 -06002345 if (change) {
2346 ret = snd_soc_write(codec, reg, new);
2347 if (ret < 0)
2348 return ret;
2349 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002350
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002351 return change;
2352}
2353EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2354
2355/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002356 * snd_soc_update_bits_locked - update codec register bits
2357 * @codec: audio codec
2358 * @reg: codec register
2359 * @mask: register mask
2360 * @value: new value
2361 *
2362 * Writes new register value, and takes the codec mutex.
2363 *
2364 * Returns 1 for change else 0.
2365 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002366int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2367 unsigned short reg, unsigned int mask,
2368 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002369{
2370 int change;
2371
2372 mutex_lock(&codec->mutex);
2373 change = snd_soc_update_bits(codec, reg, mask, value);
2374 mutex_unlock(&codec->mutex);
2375
2376 return change;
2377}
Mark Browndd1b3d52009-12-04 14:22:03 +00002378EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002379
2380/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002381 * snd_soc_test_bits - test register for change
2382 * @codec: audio codec
2383 * @reg: codec register
2384 * @mask: register mask
2385 * @value: new value
2386 *
2387 * Tests a register with a new value and checks if the new value is
2388 * different from the old value.
2389 *
2390 * Returns 1 for change else 0.
2391 */
2392int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002393 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002394{
2395 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002396 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002397
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002398 old = snd_soc_read(codec, reg);
2399 new = (old & ~mask) | value;
2400 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002401
2402 return change;
2403}
2404EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2405
2406/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002407 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2408 * @substream: the pcm substream
2409 * @hw: the hardware parameters
2410 *
2411 * Sets the substream runtime hardware parameters.
2412 */
2413int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2414 const struct snd_pcm_hardware *hw)
2415{
2416 struct snd_pcm_runtime *runtime = substream->runtime;
2417 runtime->hw.info = hw->info;
2418 runtime->hw.formats = hw->formats;
2419 runtime->hw.period_bytes_min = hw->period_bytes_min;
2420 runtime->hw.period_bytes_max = hw->period_bytes_max;
2421 runtime->hw.periods_min = hw->periods_min;
2422 runtime->hw.periods_max = hw->periods_max;
2423 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2424 runtime->hw.fifo_size = hw->fifo_size;
2425 return 0;
2426}
2427EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2428
2429/**
2430 * snd_soc_cnew - create new control
2431 * @_template: control template
2432 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002433 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002434 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002435 *
2436 * Create a new mixer control from a template control.
2437 *
2438 * Returns 0 for success, else error.
2439 */
2440struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brownefb7ac32011-03-08 17:23:24 +00002441 void *data, char *long_name,
2442 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002443{
2444 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002445 struct snd_kcontrol *kcontrol;
2446 char *name = NULL;
2447 int name_len;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002448
2449 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002450 template.index = 0;
2451
Mark Brownefb7ac32011-03-08 17:23:24 +00002452 if (!long_name)
2453 long_name = template.name;
2454
2455 if (prefix) {
2456 name_len = strlen(long_name) + strlen(prefix) + 2;
2457 name = kmalloc(name_len, GFP_ATOMIC);
2458 if (!name)
2459 return NULL;
2460
2461 snprintf(name, name_len, "%s %s", prefix, long_name);
2462
2463 template.name = name;
2464 } else {
2465 template.name = long_name;
2466 }
2467
2468 kcontrol = snd_ctl_new1(&template, data);
2469
2470 kfree(name);
2471
2472 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002473}
2474EXPORT_SYMBOL_GPL(snd_soc_cnew);
2475
2476/**
Ian Molton3e8e1952009-01-09 00:23:21 +00002477 * snd_soc_add_controls - add an array of controls to a codec.
2478 * Convienience function to add a list of controls. Many codecs were
2479 * duplicating this code.
2480 *
2481 * @codec: codec to add controls to
2482 * @controls: array of controls to add
2483 * @num_controls: number of elements in the array
2484 *
2485 * Return 0 for success, else error.
2486 */
2487int snd_soc_add_controls(struct snd_soc_codec *codec,
2488 const struct snd_kcontrol_new *controls, int num_controls)
2489{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002490 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002491 int err, i;
2492
2493 for (i = 0; i < num_controls; i++) {
2494 const struct snd_kcontrol_new *control = &controls[i];
Mark Brownefb7ac32011-03-08 17:23:24 +00002495 err = snd_ctl_add(card, snd_soc_cnew(control, codec,
2496 control->name,
2497 codec->name_prefix));
Ian Molton3e8e1952009-01-09 00:23:21 +00002498 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002499 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Mark Brownefb7ac32011-03-08 17:23:24 +00002500 codec->name, control->name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002501 return err;
2502 }
2503 }
2504
2505 return 0;
2506}
2507EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2508
2509/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002510 * snd_soc_info_enum_double - enumerated double mixer info callback
2511 * @kcontrol: mixer control
2512 * @uinfo: control element information
2513 *
2514 * Callback to provide information about a double enumerated
2515 * mixer control.
2516 *
2517 * Returns 0 for success.
2518 */
2519int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2520 struct snd_ctl_elem_info *uinfo)
2521{
2522 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2523
2524 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2525 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002526 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002527
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002528 if (uinfo->value.enumerated.item > e->max - 1)
2529 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002530 strcpy(uinfo->value.enumerated.name,
2531 e->texts[uinfo->value.enumerated.item]);
2532 return 0;
2533}
2534EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2535
2536/**
2537 * snd_soc_get_enum_double - enumerated double mixer get callback
2538 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002539 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002540 *
2541 * Callback to get the value of a double enumerated mixer.
2542 *
2543 * Returns 0 for success.
2544 */
2545int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2546 struct snd_ctl_elem_value *ucontrol)
2547{
2548 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2549 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002550 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002551
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002552 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002553 ;
2554 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002555 ucontrol->value.enumerated.item[0]
2556 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002557 if (e->shift_l != e->shift_r)
2558 ucontrol->value.enumerated.item[1] =
2559 (val >> e->shift_r) & (bitmask - 1);
2560
2561 return 0;
2562}
2563EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2564
2565/**
2566 * snd_soc_put_enum_double - enumerated double mixer put callback
2567 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002568 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002569 *
2570 * Callback to set the value of a double enumerated mixer.
2571 *
2572 * Returns 0 for success.
2573 */
2574int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2575 struct snd_ctl_elem_value *ucontrol)
2576{
2577 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2578 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002579 unsigned int val;
2580 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002581
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002582 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002583 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002584 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002585 return -EINVAL;
2586 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2587 mask = (bitmask - 1) << e->shift_l;
2588 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002589 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002590 return -EINVAL;
2591 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2592 mask |= (bitmask - 1) << e->shift_r;
2593 }
2594
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002595 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002596}
2597EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2598
2599/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002600 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2601 * @kcontrol: mixer control
2602 * @ucontrol: control element information
2603 *
2604 * Callback to get the value of a double semi enumerated mixer.
2605 *
2606 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2607 * used for handling bitfield coded enumeration for example.
2608 *
2609 * Returns 0 for success.
2610 */
2611int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2612 struct snd_ctl_elem_value *ucontrol)
2613{
2614 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002615 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002616 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002617
2618 reg_val = snd_soc_read(codec, e->reg);
2619 val = (reg_val >> e->shift_l) & e->mask;
2620 for (mux = 0; mux < e->max; mux++) {
2621 if (val == e->values[mux])
2622 break;
2623 }
2624 ucontrol->value.enumerated.item[0] = mux;
2625 if (e->shift_l != e->shift_r) {
2626 val = (reg_val >> e->shift_r) & e->mask;
2627 for (mux = 0; mux < e->max; mux++) {
2628 if (val == e->values[mux])
2629 break;
2630 }
2631 ucontrol->value.enumerated.item[1] = mux;
2632 }
2633
2634 return 0;
2635}
2636EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2637
2638/**
2639 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2640 * @kcontrol: mixer control
2641 * @ucontrol: control element information
2642 *
2643 * Callback to set the value of a double semi enumerated mixer.
2644 *
2645 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2646 * used for handling bitfield coded enumeration for example.
2647 *
2648 * Returns 0 for success.
2649 */
2650int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2651 struct snd_ctl_elem_value *ucontrol)
2652{
2653 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002654 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002655 unsigned int val;
2656 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002657
2658 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2659 return -EINVAL;
2660 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2661 mask = e->mask << e->shift_l;
2662 if (e->shift_l != e->shift_r) {
2663 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2664 return -EINVAL;
2665 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2666 mask |= e->mask << e->shift_r;
2667 }
2668
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002669 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002670}
2671EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2672
2673/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002674 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2675 * @kcontrol: mixer control
2676 * @uinfo: control element information
2677 *
2678 * Callback to provide information about an external enumerated
2679 * single mixer.
2680 *
2681 * Returns 0 for success.
2682 */
2683int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2684 struct snd_ctl_elem_info *uinfo)
2685{
2686 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2687
2688 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2689 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002690 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002691
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002692 if (uinfo->value.enumerated.item > e->max - 1)
2693 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002694 strcpy(uinfo->value.enumerated.name,
2695 e->texts[uinfo->value.enumerated.item]);
2696 return 0;
2697}
2698EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2699
2700/**
2701 * snd_soc_info_volsw_ext - external single mixer info callback
2702 * @kcontrol: mixer control
2703 * @uinfo: control element information
2704 *
2705 * Callback to provide information about a single external mixer control.
2706 *
2707 * Returns 0 for success.
2708 */
2709int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2710 struct snd_ctl_elem_info *uinfo)
2711{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002712 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002713
Mark Brownfd5dfad2009-04-15 21:37:46 +01002714 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002715 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2716 else
2717 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2718
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002719 uinfo->count = 1;
2720 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002721 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002722 return 0;
2723}
2724EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2725
2726/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002727 * snd_soc_info_volsw - single mixer info callback
2728 * @kcontrol: mixer control
2729 * @uinfo: control element information
2730 *
2731 * Callback to provide information about a single mixer control.
2732 *
2733 * Returns 0 for success.
2734 */
2735int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2736 struct snd_ctl_elem_info *uinfo)
2737{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002738 struct soc_mixer_control *mc =
2739 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002740 int platform_max;
Mark Brown762b8df2008-10-30 12:37:08 +00002741 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002742 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002743
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002744 if (!mc->platform_max)
2745 mc->platform_max = mc->max;
2746 platform_max = mc->platform_max;
2747
2748 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002749 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2750 else
2751 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2752
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002753 uinfo->count = shift == rshift ? 1 : 2;
2754 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002755 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002756 return 0;
2757}
2758EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2759
2760/**
2761 * snd_soc_get_volsw - single mixer get callback
2762 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002763 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002764 *
2765 * Callback to get the value of a single mixer control.
2766 *
2767 * Returns 0 for success.
2768 */
2769int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2770 struct snd_ctl_elem_value *ucontrol)
2771{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002772 struct soc_mixer_control *mc =
2773 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002774 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002775 unsigned int reg = mc->reg;
2776 unsigned int shift = mc->shift;
2777 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002778 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002779 unsigned int mask = (1 << fls(max)) - 1;
2780 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002781
2782 ucontrol->value.integer.value[0] =
2783 (snd_soc_read(codec, reg) >> shift) & mask;
2784 if (shift != rshift)
2785 ucontrol->value.integer.value[1] =
2786 (snd_soc_read(codec, reg) >> rshift) & mask;
2787 if (invert) {
2788 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002789 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002790 if (shift != rshift)
2791 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002792 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002793 }
2794
2795 return 0;
2796}
2797EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2798
2799/**
2800 * snd_soc_put_volsw - single mixer put callback
2801 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002802 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002803 *
2804 * Callback to set the value of a single mixer control.
2805 *
2806 * Returns 0 for success.
2807 */
2808int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2809 struct snd_ctl_elem_value *ucontrol)
2810{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002811 struct soc_mixer_control *mc =
2812 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002813 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002814 unsigned int reg = mc->reg;
2815 unsigned int shift = mc->shift;
2816 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002817 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002818 unsigned int mask = (1 << fls(max)) - 1;
2819 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002820 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002821
2822 val = (ucontrol->value.integer.value[0] & mask);
2823 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002824 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002825 val_mask = mask << shift;
2826 val = val << shift;
2827 if (shift != rshift) {
2828 val2 = (ucontrol->value.integer.value[1] & mask);
2829 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002830 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002831 val_mask |= mask << rshift;
2832 val |= val2 << rshift;
2833 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002834 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002835}
2836EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2837
2838/**
2839 * snd_soc_info_volsw_2r - double mixer info callback
2840 * @kcontrol: mixer control
2841 * @uinfo: control element information
2842 *
2843 * Callback to provide information about a double mixer control that
2844 * spans 2 codec registers.
2845 *
2846 * Returns 0 for success.
2847 */
2848int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2849 struct snd_ctl_elem_info *uinfo)
2850{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002851 struct soc_mixer_control *mc =
2852 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002853 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002854
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002855 if (!mc->platform_max)
2856 mc->platform_max = mc->max;
2857 platform_max = mc->platform_max;
2858
2859 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002860 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2861 else
2862 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2863
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002864 uinfo->count = 2;
2865 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002866 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002867 return 0;
2868}
2869EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2870
2871/**
2872 * snd_soc_get_volsw_2r - double mixer get callback
2873 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002874 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002875 *
2876 * Callback to get the value of a double mixer control that spans 2 registers.
2877 *
2878 * Returns 0 for success.
2879 */
2880int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2881 struct snd_ctl_elem_value *ucontrol)
2882{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002883 struct soc_mixer_control *mc =
2884 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002885 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002886 unsigned int reg = mc->reg;
2887 unsigned int reg2 = mc->rreg;
2888 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002889 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002890 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002891 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002892
2893 ucontrol->value.integer.value[0] =
2894 (snd_soc_read(codec, reg) >> shift) & mask;
2895 ucontrol->value.integer.value[1] =
2896 (snd_soc_read(codec, reg2) >> shift) & mask;
2897 if (invert) {
2898 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002899 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002900 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002901 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002902 }
2903
2904 return 0;
2905}
2906EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2907
2908/**
2909 * snd_soc_put_volsw_2r - double mixer set callback
2910 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002911 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002912 *
2913 * Callback to set the value of a double mixer control that spans 2 registers.
2914 *
2915 * Returns 0 for success.
2916 */
2917int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2918 struct snd_ctl_elem_value *ucontrol)
2919{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002920 struct soc_mixer_control *mc =
2921 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002922 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002923 unsigned int reg = mc->reg;
2924 unsigned int reg2 = mc->rreg;
2925 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002926 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002927 unsigned int mask = (1 << fls(max)) - 1;
2928 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002929 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002930 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002931
2932 val_mask = mask << shift;
2933 val = (ucontrol->value.integer.value[0] & mask);
2934 val2 = (ucontrol->value.integer.value[1] & mask);
2935
2936 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002937 val = max - val;
2938 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002939 }
2940
2941 val = val << shift;
2942 val2 = val2 << shift;
2943
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002944 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002945 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002946 return err;
2947
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002948 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002949 return err;
2950}
2951EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2952
Mark Browne13ac2e2008-05-28 17:58:05 +01002953/**
2954 * snd_soc_info_volsw_s8 - signed mixer info callback
2955 * @kcontrol: mixer control
2956 * @uinfo: control element information
2957 *
2958 * Callback to provide information about a signed mixer control.
2959 *
2960 * Returns 0 for success.
2961 */
2962int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2963 struct snd_ctl_elem_info *uinfo)
2964{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002965 struct soc_mixer_control *mc =
2966 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002967 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002968 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002969
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002970 if (!mc->platform_max)
2971 mc->platform_max = mc->max;
2972 platform_max = mc->platform_max;
2973
Mark Browne13ac2e2008-05-28 17:58:05 +01002974 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2975 uinfo->count = 2;
2976 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002977 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002978 return 0;
2979}
2980EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2981
2982/**
2983 * snd_soc_get_volsw_s8 - signed mixer get callback
2984 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002985 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002986 *
2987 * Callback to get the value of a signed mixer control.
2988 *
2989 * Returns 0 for success.
2990 */
2991int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2992 struct snd_ctl_elem_value *ucontrol)
2993{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002994 struct soc_mixer_control *mc =
2995 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002996 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002997 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002998 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002999 int val = snd_soc_read(codec, reg);
3000
3001 ucontrol->value.integer.value[0] =
3002 ((signed char)(val & 0xff))-min;
3003 ucontrol->value.integer.value[1] =
3004 ((signed char)((val >> 8) & 0xff))-min;
3005 return 0;
3006}
3007EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
3008
3009/**
3010 * snd_soc_put_volsw_sgn - signed mixer put callback
3011 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003012 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01003013 *
3014 * Callback to set the value of a signed mixer control.
3015 *
3016 * Returns 0 for success.
3017 */
3018int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
3019 struct snd_ctl_elem_value *ucontrol)
3020{
Jon Smirl4eaa9812008-07-29 11:42:26 +01003021 struct soc_mixer_control *mc =
3022 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01003023 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003024 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003025 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03003026 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01003027
3028 val = (ucontrol->value.integer.value[0]+min) & 0xff;
3029 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
3030
Eero Nurkkala6c508c62009-10-30 13:34:03 +02003031 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01003032}
3033EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
3034
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003035/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003036 * snd_soc_limit_volume - Set new limit to an existing volume control.
3037 *
3038 * @codec: where to look for the control
3039 * @name: Name of the control
3040 * @max: new maximum limit
3041 *
3042 * Return 0 for success, else error.
3043 */
3044int snd_soc_limit_volume(struct snd_soc_codec *codec,
3045 const char *name, int max)
3046{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003047 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003048 struct snd_kcontrol *kctl;
3049 struct soc_mixer_control *mc;
3050 int found = 0;
3051 int ret = -EINVAL;
3052
3053 /* Sanity check for name and max */
3054 if (unlikely(!name || max <= 0))
3055 return -EINVAL;
3056
3057 list_for_each_entry(kctl, &card->controls, list) {
3058 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3059 found = 1;
3060 break;
3061 }
3062 }
3063 if (found) {
3064 mc = (struct soc_mixer_control *)kctl->private_value;
3065 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03003066 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003067 ret = 0;
3068 }
3069 }
3070 return ret;
3071}
3072EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3073
3074/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003075 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
3076 * mixer info callback
3077 * @kcontrol: mixer control
3078 * @uinfo: control element information
3079 *
3080 * Returns 0 for success.
3081 */
3082int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3083 struct snd_ctl_elem_info *uinfo)
3084{
3085 struct soc_mixer_control *mc =
3086 (struct soc_mixer_control *)kcontrol->private_value;
3087 int max = mc->max;
3088 int min = mc->min;
3089
3090 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3091 uinfo->count = 2;
3092 uinfo->value.integer.min = 0;
3093 uinfo->value.integer.max = max-min;
3094
3095 return 0;
3096}
3097EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
3098
3099/**
3100 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
3101 * mixer get callback
3102 * @kcontrol: mixer control
3103 * @uinfo: control element information
3104 *
3105 * Returns 0 for success.
3106 */
3107int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3108 struct snd_ctl_elem_value *ucontrol)
3109{
3110 struct soc_mixer_control *mc =
3111 (struct soc_mixer_control *)kcontrol->private_value;
3112 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3113 unsigned int mask = (1<<mc->shift)-1;
3114 int min = mc->min;
3115 int val = snd_soc_read(codec, mc->reg) & mask;
3116 int valr = snd_soc_read(codec, mc->rreg) & mask;
3117
Stuart Longland20630c72010-06-18 12:56:10 +10003118 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
3119 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003120 return 0;
3121}
3122EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
3123
3124/**
3125 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
3126 * mixer put callback
3127 * @kcontrol: mixer control
3128 * @uinfo: control element information
3129 *
3130 * Returns 0 for success.
3131 */
3132int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3133 struct snd_ctl_elem_value *ucontrol)
3134{
3135 struct soc_mixer_control *mc =
3136 (struct soc_mixer_control *)kcontrol->private_value;
3137 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3138 unsigned int mask = (1<<mc->shift)-1;
3139 int min = mc->min;
3140 int ret;
3141 unsigned int val, valr, oval, ovalr;
3142
3143 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
3144 val &= mask;
3145 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
3146 valr &= mask;
3147
3148 oval = snd_soc_read(codec, mc->reg) & mask;
3149 ovalr = snd_soc_read(codec, mc->rreg) & mask;
3150
3151 ret = 0;
3152 if (oval != val) {
3153 ret = snd_soc_write(codec, mc->reg, val);
3154 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01003155 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003156 }
3157 if (ovalr != valr) {
3158 ret = snd_soc_write(codec, mc->rreg, valr);
3159 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01003160 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003161 }
3162
3163 return 0;
3164}
3165EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
3166
3167/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003168 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3169 * @dai: DAI
3170 * @clk_id: DAI specific clock ID
3171 * @freq: new clock frequency in Hz
3172 * @dir: new clock direction - input/output.
3173 *
3174 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3175 */
3176int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3177 unsigned int freq, int dir)
3178{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003179 if (dai->driver && dai->driver->ops->set_sysclk)
3180 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003181 else if (dai->codec && dai->codec->driver->set_sysclk)
3182 return dai->codec->driver->set_sysclk(dai->codec, clk_id,
3183 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003184 else
3185 return -EINVAL;
3186}
3187EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3188
3189/**
Mark Brownec4ee522011-03-07 20:58:11 +00003190 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3191 * @codec: CODEC
3192 * @clk_id: DAI specific clock ID
3193 * @freq: new clock frequency in Hz
3194 * @dir: new clock direction - input/output.
3195 *
3196 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3197 */
3198int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
3199 unsigned int freq, int dir)
3200{
3201 if (codec->driver->set_sysclk)
3202 return codec->driver->set_sysclk(codec, clk_id, freq, dir);
3203 else
3204 return -EINVAL;
3205}
3206EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3207
3208/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003209 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3210 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003211 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003212 * @div: new clock divisor.
3213 *
3214 * Configures the clock dividers. This is used to derive the best DAI bit and
3215 * frame clocks from the system or master clock. It's best to set the DAI bit
3216 * and frame clocks as low as possible to save system power.
3217 */
3218int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3219 int div_id, int div)
3220{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003221 if (dai->driver && dai->driver->ops->set_clkdiv)
3222 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003223 else
3224 return -EINVAL;
3225}
3226EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3227
3228/**
3229 * snd_soc_dai_set_pll - configure DAI PLL.
3230 * @dai: DAI
3231 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003232 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003233 * @freq_in: PLL input clock frequency in Hz
3234 * @freq_out: requested PLL output clock frequency in Hz
3235 *
3236 * Configures and enables PLL to generate output clock based on input clock.
3237 */
Mark Brown85488032009-09-05 18:52:16 +01003238int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3239 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003240{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003241 if (dai->driver && dai->driver->ops->set_pll)
3242 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003243 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003244 else if (dai->codec && dai->codec->driver->set_pll)
3245 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3246 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003247 else
3248 return -EINVAL;
3249}
3250EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3251
Mark Brownec4ee522011-03-07 20:58:11 +00003252/*
3253 * snd_soc_codec_set_pll - configure codec PLL.
3254 * @codec: CODEC
3255 * @pll_id: DAI specific PLL ID
3256 * @source: DAI specific source for the PLL
3257 * @freq_in: PLL input clock frequency in Hz
3258 * @freq_out: requested PLL output clock frequency in Hz
3259 *
3260 * Configures and enables PLL to generate output clock based on input clock.
3261 */
3262int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3263 unsigned int freq_in, unsigned int freq_out)
3264{
3265 if (codec->driver->set_pll)
3266 return codec->driver->set_pll(codec, pll_id, source,
3267 freq_in, freq_out);
3268 else
3269 return -EINVAL;
3270}
3271EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3272
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003273/**
3274 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3275 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003276 * @fmt: SND_SOC_DAIFMT_ format value.
3277 *
3278 * Configures the DAI hardware format and clocking.
3279 */
3280int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3281{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003282 if (dai->driver && dai->driver->ops->set_fmt)
3283 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003284 else
3285 return -EINVAL;
3286}
3287EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3288
3289/**
3290 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3291 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003292 * @tx_mask: bitmask representing active TX slots.
3293 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003294 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003295 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003296 *
3297 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3298 * specific.
3299 */
3300int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003301 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003302{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003303 if (dai->driver && dai->driver->ops->set_tdm_slot)
3304 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003305 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003306 else
3307 return -EINVAL;
3308}
3309EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3310
3311/**
Barry Song472df3c2009-09-12 01:16:29 +08003312 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3313 * @dai: DAI
3314 * @tx_num: how many TX channels
3315 * @tx_slot: pointer to an array which imply the TX slot number channel
3316 * 0~num-1 uses
3317 * @rx_num: how many RX channels
3318 * @rx_slot: pointer to an array which imply the RX slot number channel
3319 * 0~num-1 uses
3320 *
3321 * configure the relationship between channel number and TDM slot number.
3322 */
3323int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3324 unsigned int tx_num, unsigned int *tx_slot,
3325 unsigned int rx_num, unsigned int *rx_slot)
3326{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003327 if (dai->driver && dai->driver->ops->set_channel_map)
3328 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003329 rx_num, rx_slot);
3330 else
3331 return -EINVAL;
3332}
3333EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3334
3335/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003336 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3337 * @dai: DAI
3338 * @tristate: tristate enable
3339 *
3340 * Tristates the DAI so that others can use it.
3341 */
3342int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3343{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003344 if (dai->driver && dai->driver->ops->set_tristate)
3345 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003346 else
3347 return -EINVAL;
3348}
3349EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3350
3351/**
3352 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3353 * @dai: DAI
3354 * @mute: mute enable
3355 *
3356 * Mutes the DAI DAC.
3357 */
3358int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3359{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003360 if (dai->driver && dai->driver->ops->digital_mute)
3361 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003362 else
3363 return -EINVAL;
3364}
3365EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3366
Mark Brownc5af3a22008-11-28 13:29:45 +00003367/**
3368 * snd_soc_register_card - Register a card with the ASoC core
3369 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003370 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003371 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003372 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303373int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003374{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003375 int i;
3376
Mark Brownc5af3a22008-11-28 13:29:45 +00003377 if (!card->name || !card->dev)
3378 return -EINVAL;
3379
Mark Browned77cc12011-05-03 18:25:34 +01003380 dev_set_drvdata(card->dev, card);
3381
Stephen Warren111c6412011-01-28 14:26:35 -07003382 snd_soc_initialize_card_lists(card);
3383
Vinod Koul150dd2f2011-01-13 22:48:32 +05303384 soc_init_card_debugfs(card);
3385
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003386 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
3387 (card->num_links + card->num_aux_devs),
3388 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003389 if (card->rtd == NULL)
3390 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003391 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003392
3393 for (i = 0; i < card->num_links; i++)
3394 card->rtd[i].dai_link = &card->dai_link[i];
3395
Mark Brownc5af3a22008-11-28 13:29:45 +00003396 INIT_LIST_HEAD(&card->list);
3397 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003398 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003399
3400 mutex_lock(&client_mutex);
3401 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003402 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00003403 mutex_unlock(&client_mutex);
3404
3405 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
3406
3407 return 0;
3408}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303409EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003410
3411/**
3412 * snd_soc_unregister_card - Unregister a card with the ASoC core
3413 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003414 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003415 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003416 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303417int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003418{
Vinod Koulb0e26482011-01-13 22:48:02 +05303419 if (card->instantiated)
3420 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003421 mutex_lock(&client_mutex);
3422 list_del(&card->list);
3423 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003424 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3425
3426 return 0;
3427}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303428EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003429
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003430/*
3431 * Simplify DAI link configuration by removing ".-1" from device names
3432 * and sanitizing names.
3433 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003434static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003435{
3436 char *found, name[NAME_SIZE];
3437 int id1, id2;
3438
3439 if (dev_name(dev) == NULL)
3440 return NULL;
3441
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003442 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003443
3444 /* are we a "%s.%d" name (platform and SPI components) */
3445 found = strstr(name, dev->driver->name);
3446 if (found) {
3447 /* get ID */
3448 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3449
3450 /* discard ID from name if ID == -1 */
3451 if (*id == -1)
3452 found[strlen(dev->driver->name)] = '\0';
3453 }
3454
3455 } else {
3456 /* I2C component devices are named "bus-addr" */
3457 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3458 char tmp[NAME_SIZE];
3459
3460 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003461 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003462
3463 /* sanitize component name for DAI link creation */
3464 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003465 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003466 } else
3467 *id = 0;
3468 }
3469
3470 return kstrdup(name, GFP_KERNEL);
3471}
3472
3473/*
3474 * Simplify DAI link naming for single devices with multiple DAIs by removing
3475 * any ".-1" and using the DAI name (instead of device name).
3476 */
3477static inline char *fmt_multiple_name(struct device *dev,
3478 struct snd_soc_dai_driver *dai_drv)
3479{
3480 if (dai_drv->name == NULL) {
3481 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
3482 dev_name(dev));
3483 return NULL;
3484 }
3485
3486 return kstrdup(dai_drv->name, GFP_KERNEL);
3487}
3488
Mark Brown91151712008-11-30 23:31:24 +00003489/**
3490 * snd_soc_register_dai - Register a DAI with the ASoC core
3491 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003492 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003493 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003494int snd_soc_register_dai(struct device *dev,
3495 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003496{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003497 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003498
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003499 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003500
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003501 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3502 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003503 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003504
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003505 /* create DAI component name */
3506 dai->name = fmt_single_name(dev, &dai->id);
3507 if (dai->name == NULL) {
3508 kfree(dai);
3509 return -ENOMEM;
3510 }
3511
3512 dai->dev = dev;
3513 dai->driver = dai_drv;
3514 if (!dai->driver->ops)
3515 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003516
3517 mutex_lock(&client_mutex);
3518 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003519 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003520 mutex_unlock(&client_mutex);
3521
3522 pr_debug("Registered DAI '%s'\n", dai->name);
3523
3524 return 0;
3525}
3526EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3527
3528/**
3529 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3530 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003531 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003532 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003533void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003534{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003535 struct snd_soc_dai *dai;
3536
3537 list_for_each_entry(dai, &dai_list, list) {
3538 if (dev == dai->dev)
3539 goto found;
3540 }
3541 return;
3542
3543found:
Mark Brown91151712008-11-30 23:31:24 +00003544 mutex_lock(&client_mutex);
3545 list_del(&dai->list);
3546 mutex_unlock(&client_mutex);
3547
3548 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003549 kfree(dai->name);
3550 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003551}
3552EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3553
3554/**
3555 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3556 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003557 * @dai: Array of DAIs to register
3558 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003559 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003560int snd_soc_register_dais(struct device *dev,
3561 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003562{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003563 struct snd_soc_dai *dai;
3564 int i, ret = 0;
3565
Liam Girdwood720ffa42010-08-18 00:30:30 +01003566 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003567
3568 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003569
3570 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003571 if (dai == NULL) {
3572 ret = -ENOMEM;
3573 goto err;
3574 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003575
3576 /* create DAI component name */
3577 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3578 if (dai->name == NULL) {
3579 kfree(dai);
3580 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003581 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003582 }
3583
3584 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003585 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003586 if (dai->driver->id)
3587 dai->id = dai->driver->id;
3588 else
3589 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003590 if (!dai->driver->ops)
3591 dai->driver->ops = &null_dai_ops;
3592
3593 mutex_lock(&client_mutex);
3594 list_add(&dai->list, &dai_list);
3595 mutex_unlock(&client_mutex);
3596
3597 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003598 }
3599
Axel Lin1dcb4f32010-12-06 16:48:03 +08003600 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003601 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003602 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003603 return 0;
3604
3605err:
3606 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003607 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003608
3609 return ret;
3610}
3611EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3612
3613/**
3614 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3615 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003616 * @dai: Array of DAIs to unregister
3617 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003618 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003619void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003620{
3621 int i;
3622
3623 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003624 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003625}
3626EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3627
Mark Brown12a48a8c2008-12-03 19:40:30 +00003628/**
3629 * snd_soc_register_platform - Register a platform with the ASoC core
3630 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003631 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003632 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003633int snd_soc_register_platform(struct device *dev,
3634 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003635{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003636 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003637
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003638 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3639
3640 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3641 if (platform == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003642 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003643
3644 /* create platform component name */
3645 platform->name = fmt_single_name(dev, &platform->id);
3646 if (platform->name == NULL) {
3647 kfree(platform);
3648 return -ENOMEM;
3649 }
3650
3651 platform->dev = dev;
3652 platform->driver = platform_drv;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003653
3654 mutex_lock(&client_mutex);
3655 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003656 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003657 mutex_unlock(&client_mutex);
3658
3659 pr_debug("Registered platform '%s'\n", platform->name);
3660
3661 return 0;
3662}
3663EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3664
3665/**
3666 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3667 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003668 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003669 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003670void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003671{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003672 struct snd_soc_platform *platform;
3673
3674 list_for_each_entry(platform, &platform_list, list) {
3675 if (dev == platform->dev)
3676 goto found;
3677 }
3678 return;
3679
3680found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003681 mutex_lock(&client_mutex);
3682 list_del(&platform->list);
3683 mutex_unlock(&client_mutex);
3684
3685 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003686 kfree(platform->name);
3687 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003688}
3689EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3690
Mark Brown151ab222009-05-09 16:22:58 +01003691static u64 codec_format_map[] = {
3692 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3693 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3694 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3695 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3696 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3697 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3698 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3699 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3700 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3701 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3702 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3703 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3704 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3705 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3706 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3707 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3708};
3709
3710/* Fix up the DAI formats for endianness: codecs don't actually see
3711 * the endianness of the data but we're using the CPU format
3712 * definitions which do need to include endianness so we ensure that
3713 * codec DAIs always have both big and little endian variants set.
3714 */
3715static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3716{
3717 int i;
3718
3719 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3720 if (stream->formats & codec_format_map[i])
3721 stream->formats |= codec_format_map[i];
3722}
3723
Mark Brown0d0cf002008-12-10 14:32:45 +00003724/**
3725 * snd_soc_register_codec - Register a codec with the ASoC core
3726 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003727 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003728 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003729int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003730 const struct snd_soc_codec_driver *codec_drv,
3731 struct snd_soc_dai_driver *dai_drv,
3732 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003733{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003734 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003735 struct snd_soc_codec *codec;
3736 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003737
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003738 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003739
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003740 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3741 if (codec == NULL)
3742 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003743
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003744 /* create CODEC component name */
3745 codec->name = fmt_single_name(dev, &codec->id);
3746 if (codec->name == NULL) {
3747 kfree(codec);
3748 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003749 }
3750
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003751 if (codec_drv->compress_type)
3752 codec->compress_type = codec_drv->compress_type;
3753 else
3754 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3755
Mark Brownc3acec22010-12-02 16:15:29 +00003756 codec->write = codec_drv->write;
3757 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003758 codec->volatile_register = codec_drv->volatile_register;
3759 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003760 codec->writable_register = codec_drv->writable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003761 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3762 codec->dapm.dev = dev;
3763 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003764 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003765 codec->dev = dev;
3766 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003767 codec->num_dai = num_dai;
3768 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003769
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003770 /* allocate CODEC register cache */
3771 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003772 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003773 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003774 /* it is necessary to make a copy of the default register cache
3775 * because in the case of using a compression type that requires
3776 * the default register cache to be marked as __devinitconst the
3777 * kernel might have freed the array by the time we initialize
3778 * the cache.
3779 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003780 if (codec_drv->reg_cache_default) {
3781 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3782 reg_size, GFP_KERNEL);
3783 if (!codec->reg_def_copy) {
3784 ret = -ENOMEM;
3785 goto fail;
3786 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003787 }
3788 }
3789
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003790 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3791 if (!codec->volatile_register)
3792 codec->volatile_register = snd_soc_default_volatile_register;
3793 if (!codec->readable_register)
3794 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003795 if (!codec->writable_register)
3796 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003797 }
3798
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003799 for (i = 0; i < num_dai; i++) {
3800 fixup_codec_formats(&dai_drv[i].playback);
3801 fixup_codec_formats(&dai_drv[i].capture);
3802 }
3803
Mark Brown26b01cc2010-08-18 20:20:55 +01003804 /* register any DAIs */
3805 if (num_dai) {
3806 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3807 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003808 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003809 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003810
Mark Brown0d0cf002008-12-10 14:32:45 +00003811 mutex_lock(&client_mutex);
3812 list_add(&codec->list, &codec_list);
3813 snd_soc_instantiate_cards();
3814 mutex_unlock(&client_mutex);
3815
3816 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003817 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003818
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003819fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003820 kfree(codec->reg_def_copy);
3821 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003822 kfree(codec->name);
3823 kfree(codec);
3824 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003825}
3826EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3827
3828/**
3829 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3830 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003831 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003832 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003833void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003834{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003835 struct snd_soc_codec *codec;
3836 int i;
3837
3838 list_for_each_entry(codec, &codec_list, list) {
3839 if (dev == codec->dev)
3840 goto found;
3841 }
3842 return;
3843
3844found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003845 if (codec->num_dai)
3846 for (i = 0; i < codec->num_dai; i++)
3847 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003848
Mark Brown0d0cf002008-12-10 14:32:45 +00003849 mutex_lock(&client_mutex);
3850 list_del(&codec->list);
3851 mutex_unlock(&client_mutex);
3852
3853 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003854
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003855 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003856 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003857 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003858 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003859}
3860EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3861
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003862static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003863{
Mark Brown384c89e2008-12-03 17:34:03 +00003864#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003865 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3866 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003867 printk(KERN_WARNING
3868 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003869 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003870 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003871
Mark Brown8a9dab12011-01-10 22:25:21 +00003872 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003873 &codec_list_fops))
3874 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3875
Mark Brown8a9dab12011-01-10 22:25:21 +00003876 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003877 &dai_list_fops))
3878 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003879
Mark Brown8a9dab12011-01-10 22:25:21 +00003880 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003881 &platform_list_fops))
3882 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003883#endif
3884
Mark Brownfb257892011-04-28 10:57:54 +01003885 snd_soc_util_init();
3886
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003887 return platform_driver_register(&soc_driver);
3888}
Mark Brown4abe8e12010-10-12 17:41:03 +01003889module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003890
Mark Brown7d8c16a2008-11-30 22:11:24 +00003891static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003892{
Mark Brownfb257892011-04-28 10:57:54 +01003893 snd_soc_util_exit();
3894
Mark Brown384c89e2008-12-03 17:34:03 +00003895#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003896 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003897#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003898 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003899}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003900module_exit(snd_soc_exit);
3901
3902/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003903MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003904MODULE_DESCRIPTION("ALSA SoC Core");
3905MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003906MODULE_ALIAS("platform:soc-audio");