blob: a6f37d4542202af0fc78e41a9794b38b9c9d33d4 [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];
245 int buf_size;
246 char *start = buf;
247 unsigned long reg, value;
248 int step = 1;
249 struct snd_soc_codec *codec = file->private_data;
250
251 buf_size = min(count, (sizeof(buf)-1));
252 if (copy_from_user(buf, user_buf, buf_size))
253 return -EFAULT;
254 buf[buf_size] = 0;
255
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000256 if (codec->driver->reg_cache_step)
257 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000258
259 while (*start == ' ')
260 start++;
261 reg = simple_strtoul(start, &start, 16);
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
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200305 codec->dapm.debugfs_dapm = debugfs_create_dir("dapm",
Mark Brown2624d5f2009-11-03 21:56:13 +0000306 codec->debugfs_codec_root);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200307 if (!codec->dapm.debugfs_dapm)
Mark Brown2624d5f2009-11-03 21:56:13 +0000308 printk(KERN_WARNING
309 "Failed to create DAPM debugfs directory\n");
310
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200311 snd_soc_dapm_debugfs_init(&codec->dapm);
Mark Brown2624d5f2009-11-03 21:56:13 +0000312}
313
314static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
315{
316 debugfs_remove_recursive(codec->debugfs_codec_root);
317}
318
Mark Brownc3c5a192010-09-15 18:15:14 +0100319static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
320 size_t count, loff_t *ppos)
321{
322 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100323 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100324 struct snd_soc_codec *codec;
325
326 if (!buf)
327 return -ENOMEM;
328
Mark Brown2b194f9d2010-10-13 10:52:16 +0100329 list_for_each_entry(codec, &codec_list, list) {
330 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
331 codec->name);
332 if (len >= 0)
333 ret += len;
334 if (ret > PAGE_SIZE) {
335 ret = PAGE_SIZE;
336 break;
337 }
338 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100339
340 if (ret >= 0)
341 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
342
343 kfree(buf);
344
345 return ret;
346}
347
348static const struct file_operations codec_list_fops = {
349 .read = codec_list_read_file,
350 .llseek = default_llseek,/* read accesses f_pos */
351};
352
Mark Brownf3208782010-09-15 18:19:07 +0100353static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
354 size_t count, loff_t *ppos)
355{
356 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100357 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100358 struct snd_soc_dai *dai;
359
360 if (!buf)
361 return -ENOMEM;
362
Mark Brown2b194f9d2010-10-13 10:52:16 +0100363 list_for_each_entry(dai, &dai_list, list) {
364 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
365 if (len >= 0)
366 ret += len;
367 if (ret > PAGE_SIZE) {
368 ret = PAGE_SIZE;
369 break;
370 }
371 }
Mark Brownf3208782010-09-15 18:19:07 +0100372
Mark Brown2b194f9d2010-10-13 10:52:16 +0100373 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100374
375 kfree(buf);
376
377 return ret;
378}
379
380static const struct file_operations dai_list_fops = {
381 .read = dai_list_read_file,
382 .llseek = default_llseek,/* read accesses f_pos */
383};
384
Mark Brown19c7ac22010-09-15 18:22:40 +0100385static ssize_t platform_list_read_file(struct file *file,
386 char __user *user_buf,
387 size_t count, loff_t *ppos)
388{
389 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100390 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100391 struct snd_soc_platform *platform;
392
393 if (!buf)
394 return -ENOMEM;
395
Mark Brown2b194f9d2010-10-13 10:52:16 +0100396 list_for_each_entry(platform, &platform_list, list) {
397 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
398 platform->name);
399 if (len >= 0)
400 ret += len;
401 if (ret > PAGE_SIZE) {
402 ret = PAGE_SIZE;
403 break;
404 }
405 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100406
Mark Brown2b194f9d2010-10-13 10:52:16 +0100407 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100408
409 kfree(buf);
410
411 return ret;
412}
413
414static const struct file_operations platform_list_fops = {
415 .read = platform_list_read_file,
416 .llseek = default_llseek,/* read accesses f_pos */
417};
418
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200419static void soc_init_card_debugfs(struct snd_soc_card *card)
420{
421 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000422 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200423 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200424 dev_warn(card->dev,
425 "ASoC: Failed to create codec debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200426 return;
427 }
428
429 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
430 card->debugfs_card_root,
431 &card->pop_time);
432 if (!card->debugfs_pop_time)
433 dev_warn(card->dev,
434 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200435}
436
437static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
438{
439 debugfs_remove_recursive(card->debugfs_card_root);
440}
441
Mark Brown2624d5f2009-11-03 21:56:13 +0000442#else
443
444static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
445{
446}
447
448static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
449{
450}
Axel Linb95fccb2010-11-09 17:06:44 +0800451
452static inline void soc_init_card_debugfs(struct snd_soc_card *card)
453{
454}
455
456static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
457{
458}
Mark Brown2624d5f2009-11-03 21:56:13 +0000459#endif
460
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200461#ifdef CONFIG_SND_SOC_AC97_BUS
462/* unregister ac97 codec */
463static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
464{
465 if (codec->ac97->dev.bus)
466 device_unregister(&codec->ac97->dev);
467 return 0;
468}
469
470/* stop no dev release warning */
471static void soc_ac97_device_release(struct device *dev){}
472
473/* register ac97 codec to bus */
474static int soc_ac97_dev_register(struct snd_soc_codec *codec)
475{
476 int err;
477
478 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100479 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200480 codec->ac97->dev.release = soc_ac97_device_release;
481
Kay Sieversbb072bf2008-11-02 03:50:35 +0100482 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000483 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200484 err = device_register(&codec->ac97->dev);
485 if (err < 0) {
486 snd_printk(KERN_ERR "Can't register ac97 bus\n");
487 codec->ac97->dev.bus = NULL;
488 return err;
489 }
490 return 0;
491}
492#endif
493
Mark Brown06f409d2009-04-07 18:10:13 +0100494static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
495{
496 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000497 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
498 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Mark Brown06f409d2009-04-07 18:10:13 +0100499 int ret;
500
Mark Brown4f333b22011-03-08 00:11:15 +0000501 if (!codec_dai->driver->symmetric_rates &&
502 !cpu_dai->driver->symmetric_rates &&
503 !rtd->dai_link->symmetric_rates)
504 return 0;
Mark Brown06f409d2009-04-07 18:10:13 +0100505
Mark Brownc4ef8782011-03-08 00:17:56 +0000506 /* This can happen if multiple streams are starting simultaneously -
507 * the second can need to get its constraints before the first has
508 * picked a rate. Complain and allow the application to carry on.
509 */
510 if (!rtd->rate) {
511 dev_warn(&rtd->dev,
512 "Not enforcing symmetric_rates due to race\n");
513 return 0;
514 }
515
Mark Brown4f333b22011-03-08 00:11:15 +0000516 dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n", rtd->rate);
517
518 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
519 SNDRV_PCM_HW_PARAM_RATE,
520 rtd->rate, rtd->rate);
521 if (ret < 0) {
522 dev_err(&rtd->dev,
523 "Unable to apply rate symmetry constraint: %d\n", ret);
524 return ret;
Mark Brown06f409d2009-04-07 18:10:13 +0100525 }
526
527 return 0;
528}
529
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200530/*
531 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
532 * then initialized and any private data can be allocated. This also calls
533 * startup for the cpu DAI, platform, machine and codec DAI.
534 */
535static int soc_pcm_open(struct snd_pcm_substream *substream)
536{
537 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200538 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000539 struct snd_soc_platform *platform = rtd->platform;
540 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
541 struct snd_soc_dai *codec_dai = rtd->codec_dai;
542 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
543 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200544 int ret = 0;
545
546 mutex_lock(&pcm_mutex);
547
548 /* startup the audio subsystem */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000549 if (cpu_dai->driver->ops->startup) {
550 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200551 if (ret < 0) {
552 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100553 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200554 goto out;
555 }
556 }
557
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000558 if (platform->driver->ops->open) {
559 ret = platform->driver->ops->open(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200560 if (ret < 0) {
561 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
562 goto platform_err;
563 }
564 }
565
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000566 if (codec_dai->driver->ops->startup) {
567 ret = codec_dai->driver->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100568 if (ret < 0) {
569 printk(KERN_ERR "asoc: can't open codec %s\n",
570 codec_dai->name);
571 goto codec_dai_err;
572 }
573 }
574
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000575 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
576 ret = rtd->dai_link->ops->startup(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200577 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000578 printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200579 goto machine_err;
580 }
581 }
582
Mark Browna00f90f2010-12-02 16:24:24 +0000583 /* Check that the codec and cpu DAIs are compatible */
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200584 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
585 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000586 max(codec_dai_drv->playback.rate_min,
587 cpu_dai_drv->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200588 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000589 min(codec_dai_drv->playback.rate_max,
590 cpu_dai_drv->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200591 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000592 max(codec_dai_drv->playback.channels_min,
593 cpu_dai_drv->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200594 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000595 min(codec_dai_drv->playback.channels_max,
596 cpu_dai_drv->playback.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100597 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000598 codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100599 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600 codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates;
601 if (codec_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900602 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000603 runtime->hw.rates |= cpu_dai_drv->playback.rates;
604 if (cpu_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900605 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000606 runtime->hw.rates |= codec_dai_drv->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200607 } else {
608 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000609 max(codec_dai_drv->capture.rate_min,
610 cpu_dai_drv->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200611 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000612 min(codec_dai_drv->capture.rate_max,
613 cpu_dai_drv->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200614 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000615 max(codec_dai_drv->capture.channels_min,
616 cpu_dai_drv->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200617 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000618 min(codec_dai_drv->capture.channels_max,
619 cpu_dai_drv->capture.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100620 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000621 codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100622 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000623 codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates;
624 if (codec_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900625 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000626 runtime->hw.rates |= cpu_dai_drv->capture.rates;
627 if (cpu_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900628 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000629 runtime->hw.rates |= codec_dai_drv->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200630 }
631
Lu Guanqunc51def62011-04-06 23:25:21 +0800632 ret = -EINVAL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200633 snd_pcm_limit_hw_rates(runtime);
634 if (!runtime->hw.rates) {
635 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100636 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900637 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200638 }
639 if (!runtime->hw.formats) {
640 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100641 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 }
Lu Guanqunb04cfcf2011-04-06 23:25:11 +0800644 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
645 runtime->hw.channels_min > runtime->hw.channels_max) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200646 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000647 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900648 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200649 }
650
Mark Brown06f409d2009-04-07 18:10:13 +0100651 /* Symmetry only applies if we've already got an active stream. */
652 if (cpu_dai->active || codec_dai->active) {
653 ret = soc_pcm_apply_symmetry(substream);
654 if (ret != 0)
Jassi Brarbb1c0472010-02-25 11:24:53 +0900655 goto config_err;
Mark Brown06f409d2009-04-07 18:10:13 +0100656 }
657
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000658 pr_debug("asoc: %s <-> %s info:\n",
659 codec_dai->name, cpu_dai->name);
Mark Brownf24368c2008-10-21 21:45:08 +0100660 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
661 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
662 runtime->hw.channels_max);
663 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
664 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200665
Jassi Brar14dc5732010-02-26 09:12:32 +0900666 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000667 cpu_dai->playback_active++;
668 codec_dai->playback_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900669 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000670 cpu_dai->capture_active++;
671 codec_dai->capture_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900672 }
673 cpu_dai->active++;
674 codec_dai->active++;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000675 rtd->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200676 mutex_unlock(&pcm_mutex);
677 return 0;
678
Jassi Brarbb1c0472010-02-25 11:24:53 +0900679config_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000680 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
681 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200682
Jassi Brarbb1c0472010-02-25 11:24:53 +0900683machine_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000684 if (codec_dai->driver->ops->shutdown)
685 codec_dai->driver->ops->shutdown(substream, codec_dai);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900686
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100687codec_dai_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000688 if (platform->driver->ops->close)
689 platform->driver->ops->close(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200690
691platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000692 if (cpu_dai->driver->ops->shutdown)
693 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200694out:
695 mutex_unlock(&pcm_mutex);
696 return ret;
697}
698
699/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200700 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200701 * This is to ensure there are no pops or clicks in between any music tracks
702 * due to DAPM power cycling.
703 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100704static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200705{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000706 struct snd_soc_pcm_runtime *rtd =
707 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
708 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200709
710 mutex_lock(&pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200711
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000712 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
713 codec_dai->driver->playback.stream_name,
714 codec_dai->playback_active ? "active" : "inactive",
715 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200716
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000717 /* are we waiting on this codec DAI stream */
718 if (codec_dai->pop_wait == 1) {
719 codec_dai->pop_wait = 0;
720 snd_soc_dapm_stream_event(rtd,
721 codec_dai->driver->playback.stream_name,
722 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200723 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000724
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200725 mutex_unlock(&pcm_mutex);
726}
727
728/*
729 * Called by ALSA when a PCM substream is closed. Private data can be
730 * freed here. The cpu DAI, codec DAI, machine and platform are also
731 * shutdown.
732 */
733static int soc_codec_close(struct snd_pcm_substream *substream)
734{
735 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000736 struct snd_soc_platform *platform = rtd->platform;
737 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
738 struct snd_soc_dai *codec_dai = rtd->codec_dai;
739 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200740
741 mutex_lock(&pcm_mutex);
742
Jassi Brar14dc5732010-02-26 09:12:32 +0900743 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000744 cpu_dai->playback_active--;
745 codec_dai->playback_active--;
Jassi Brar14dc5732010-02-26 09:12:32 +0900746 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000747 cpu_dai->capture_active--;
748 codec_dai->capture_active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200749 }
Jassi Brar14dc5732010-02-26 09:12:32 +0900750
751 cpu_dai->active--;
752 codec_dai->active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200753 codec->active--;
754
Mark Brown6010b2d2008-09-06 18:33:24 +0100755 /* Muting the DAC suppresses artifacts caused during digital
756 * shutdown, for example from stopping clocks.
757 */
758 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
759 snd_soc_dai_digital_mute(codec_dai, 1);
760
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000761 if (cpu_dai->driver->ops->shutdown)
762 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200763
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000764 if (codec_dai->driver->ops->shutdown)
765 codec_dai->driver->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200766
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000767 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
768 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200769
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000770 if (platform->driver->ops->close)
771 platform->driver->ops->close(substream);
772 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200773
774 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
775 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100776 codec_dai->pop_wait = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000777 schedule_delayed_work(&rtd->delayed_work,
778 msecs_to_jiffies(rtd->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200779 } else {
780 /* capture streams can be powered down now */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000781 snd_soc_dapm_stream_event(rtd,
782 codec_dai->driver->capture.stream_name,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100783 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200784 }
785
786 mutex_unlock(&pcm_mutex);
787 return 0;
788}
789
790/*
791 * Called by ALSA when the PCM substream is prepared, can set format, sample
792 * rate, etc. This function is non atomic and can be called multiple times,
793 * it can refer to the runtime info.
794 */
795static int soc_pcm_prepare(struct snd_pcm_substream *substream)
796{
797 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000798 struct snd_soc_platform *platform = rtd->platform;
799 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
800 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200801 int ret = 0;
802
803 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100804
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000805 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
806 ret = rtd->dai_link->ops->prepare(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100807 if (ret < 0) {
808 printk(KERN_ERR "asoc: machine prepare error\n");
809 goto out;
810 }
811 }
812
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000813 if (platform->driver->ops->prepare) {
814 ret = platform->driver->ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200815 if (ret < 0) {
816 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200817 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200818 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200819 }
820
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000821 if (codec_dai->driver->ops->prepare) {
822 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200823 if (ret < 0) {
824 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200825 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200826 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200827 }
828
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000829 if (cpu_dai->driver->ops->prepare) {
830 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100831 if (ret < 0) {
832 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
833 goto out;
834 }
835 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200836
Mark Brownd45f6212008-10-14 13:58:36 +0100837 /* cancel any delayed stream shutdown that is pending */
838 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
839 codec_dai->pop_wait) {
840 codec_dai->pop_wait = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000841 cancel_delayed_work(&rtd->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100842 }
843
Mark Brown452c5ea2009-05-17 21:41:23 +0100844 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000845 snd_soc_dapm_stream_event(rtd,
846 codec_dai->driver->playback.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100847 SND_SOC_DAPM_STREAM_START);
848 else
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000849 snd_soc_dapm_stream_event(rtd,
850 codec_dai->driver->capture.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100851 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100852
Mark Brown452c5ea2009-05-17 21:41:23 +0100853 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200854
855out:
856 mutex_unlock(&pcm_mutex);
857 return ret;
858}
859
860/*
861 * Called by ALSA when the hardware params are set by application. This
862 * function can also be called multiple times and can allocate buffers
863 * (using snd_pcm_lib_* ). It's non-atomic.
864 */
865static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
866 struct snd_pcm_hw_params *params)
867{
868 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000869 struct snd_soc_platform *platform = rtd->platform;
870 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
871 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200872 int ret = 0;
873
874 mutex_lock(&pcm_mutex);
875
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000876 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
877 ret = rtd->dai_link->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200878 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100879 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200880 goto out;
881 }
882 }
883
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000884 if (codec_dai->driver->ops->hw_params) {
885 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100886 if (ret < 0) {
887 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
888 codec_dai->name);
889 goto codec_err;
890 }
891 }
892
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000893 if (cpu_dai->driver->ops->hw_params) {
894 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200895 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200896 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100897 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200898 goto interface_err;
899 }
900 }
901
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000902 if (platform->driver->ops->hw_params) {
903 ret = platform->driver->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200904 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200905 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200906 platform->name);
907 goto platform_err;
908 }
909 }
910
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000911 rtd->rate = params_rate(params);
Mark Brown06f409d2009-04-07 18:10:13 +0100912
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200913out:
914 mutex_unlock(&pcm_mutex);
915 return ret;
916
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200917platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000918 if (cpu_dai->driver->ops->hw_free)
919 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200920
921interface_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000922 if (codec_dai->driver->ops->hw_free)
923 codec_dai->driver->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100924
925codec_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000926 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
927 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200928
929 mutex_unlock(&pcm_mutex);
930 return ret;
931}
932
933/*
Mark Browna00f90f2010-12-02 16:24:24 +0000934 * Frees resources allocated by hw_params, can be called multiple times
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200935 */
936static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
937{
938 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000939 struct snd_soc_platform *platform = rtd->platform;
940 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
941 struct snd_soc_dai *codec_dai = rtd->codec_dai;
942 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200943
944 mutex_lock(&pcm_mutex);
945
946 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100947 if (!codec->active)
948 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200949
950 /* free any machine hw params */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000951 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
952 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200953
954 /* free any DMA resources */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000955 if (platform->driver->ops->hw_free)
956 platform->driver->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200957
Mark Browna00f90f2010-12-02 16:24:24 +0000958 /* now free hw params for the DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000959 if (codec_dai->driver->ops->hw_free)
960 codec_dai->driver->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200961
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000962 if (cpu_dai->driver->ops->hw_free)
963 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200964
965 mutex_unlock(&pcm_mutex);
966 return 0;
967}
968
969static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
970{
971 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000972 struct snd_soc_platform *platform = rtd->platform;
973 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
974 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200975 int ret;
976
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000977 if (codec_dai->driver->ops->trigger) {
978 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
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 (platform->driver->ops->trigger) {
984 ret = platform->driver->ops->trigger(substream, cmd);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200985 if (ret < 0)
986 return ret;
987 }
988
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000989 if (cpu_dai->driver->ops->trigger) {
990 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200991 if (ret < 0)
992 return ret;
993 }
994 return 0;
995}
996
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200997/*
998 * soc level wrapper for pointer callback
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200999 * If cpu_dai, codec_dai, platform driver has the delay callback, than
1000 * the runtime->delay will be updated accordingly.
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001001 */
1002static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1003{
1004 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001005 struct snd_soc_platform *platform = rtd->platform;
1006 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1007 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001008 struct snd_pcm_runtime *runtime = substream->runtime;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001009 snd_pcm_uframes_t offset = 0;
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001010 snd_pcm_sframes_t delay = 0;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001011
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001012 if (platform->driver->ops->pointer)
1013 offset = platform->driver->ops->pointer(substream);
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001014
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001015 if (cpu_dai->driver->ops->delay)
1016 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001017
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001018 if (codec_dai->driver->ops->delay)
1019 delay += codec_dai->driver->ops->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001020
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001021 if (platform->driver->delay)
1022 delay += platform->driver->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001023
1024 runtime->delay = delay;
1025
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001026 return offset;
1027}
1028
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001029/* ASoC PCM operations */
1030static struct snd_pcm_ops soc_pcm_ops = {
1031 .open = soc_pcm_open,
1032 .close = soc_codec_close,
1033 .hw_params = soc_pcm_hw_params,
1034 .hw_free = soc_pcm_hw_free,
1035 .prepare = soc_pcm_prepare,
1036 .trigger = soc_pcm_trigger,
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001037 .pointer = soc_pcm_pointer,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001038};
1039
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001040#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001041/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001042int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001043{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001044 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001045 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001046 int i;
1047
Daniel Macke3509ff2009-06-03 17:44:49 +02001048 /* If the initialization of this soc device failed, there is no codec
1049 * associated with it. Just bail out in this case.
1050 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001051 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +02001052 return 0;
1053
Andy Green6ed25972008-06-13 16:24:05 +01001054 /* Due to the resume being scheduled into a workqueue we could
1055 * suspend before that's finished - wait for it to complete.
1056 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001057 snd_power_lock(card->snd_card);
1058 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
1059 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +01001060
1061 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001062 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +01001063
Mark Browna00f90f2010-12-02 16:24:24 +00001064 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001065 for (i = 0; i < card->num_rtd; i++) {
1066 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1067 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001068
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001069 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001070 continue;
1071
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001072 if (drv->ops->digital_mute && dai->playback_active)
1073 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001074 }
1075
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001076 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001077 for (i = 0; i < card->num_rtd; i++) {
1078 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001079 continue;
1080
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001081 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +01001082 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001083
Mark Brown87506542008-11-18 20:50:34 +00001084 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001085 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001086
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001087 for (i = 0; i < card->num_rtd; i++) {
1088 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1089 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001090
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001091 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001092 continue;
1093
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001094 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
1095 cpu_dai->driver->suspend(cpu_dai);
1096 if (platform->driver->suspend && !platform->suspended) {
1097 platform->driver->suspend(cpu_dai);
1098 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +01001099 }
1100 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001101
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001102 /* close any waiting streams and save state */
1103 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +01001104 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001105 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001106 }
Mark Brown3efab7d2010-05-09 13:25:43 +01001107
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001108 for (i = 0; i < card->num_rtd; i++) {
1109 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1110
1111 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001112 continue;
1113
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001114 if (driver->playback.stream_name != NULL)
1115 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1116 SND_SOC_DAPM_STREAM_SUSPEND);
1117
1118 if (driver->capture.stream_name != NULL)
1119 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1120 SND_SOC_DAPM_STREAM_SUSPEND);
1121 }
1122
1123 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001124 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001125 /* If there are paths active then the CODEC will be held with
1126 * bias _ON and should not be suspended. */
1127 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001128 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001129 case SND_SOC_BIAS_STANDBY:
1130 case SND_SOC_BIAS_OFF:
1131 codec->driver->suspend(codec, PMSG_SUSPEND);
1132 codec->suspended = 1;
1133 break;
1134 default:
1135 dev_dbg(codec->dev, "CODEC is on over suspend\n");
1136 break;
1137 }
1138 }
1139 }
1140
1141 for (i = 0; i < card->num_rtd; i++) {
1142 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1143
1144 if (card->rtd[i].dai_link->ignore_suspend)
1145 continue;
1146
1147 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
1148 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001149 }
1150
Mark Brown87506542008-11-18 20:50:34 +00001151 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001152 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001153
1154 return 0;
1155}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001156EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001157
Andy Green6ed25972008-06-13 16:24:05 +01001158/* deferred resume work, so resume can complete before we finished
1159 * setting our codec back up, which can be very slow on I2C
1160 */
1161static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001162{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001163 struct snd_soc_card *card =
1164 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001165 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001166 int i;
1167
Andy Green6ed25972008-06-13 16:24:05 +01001168 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1169 * so userspace apps are blocked from touching us
1170 */
1171
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001172 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +01001173
Mark Brown99497882010-05-07 20:24:05 +01001174 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001175 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +01001176
Mark Brown87506542008-11-18 20:50:34 +00001177 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001178 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001179
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001180 /* resume AC97 DAIs */
1181 for (i = 0; i < card->num_rtd; i++) {
1182 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +01001183
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001184 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001185 continue;
1186
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001187 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
1188 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001189 }
1190
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001191 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001192 /* If the CODEC was idle over suspend then it will have been
1193 * left with bias OFF or STANDBY and suspended so we must now
1194 * resume. Otherwise the suspend was suppressed.
1195 */
1196 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001197 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001198 case SND_SOC_BIAS_STANDBY:
1199 case SND_SOC_BIAS_OFF:
1200 codec->driver->resume(codec);
1201 codec->suspended = 0;
1202 break;
1203 default:
1204 dev_dbg(codec->dev, "CODEC was on over suspend\n");
1205 break;
1206 }
Mark Brown1547aba2010-05-07 21:11:40 +01001207 }
1208 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001209
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001210 for (i = 0; i < card->num_rtd; i++) {
1211 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001212
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001213 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001214 continue;
1215
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001216 if (driver->playback.stream_name != NULL)
1217 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001218 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001219
1220 if (driver->capture.stream_name != NULL)
1221 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001222 SND_SOC_DAPM_STREAM_RESUME);
1223 }
1224
Mark Brown3ff3f642008-05-19 12:32:25 +02001225 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001226 for (i = 0; i < card->num_rtd; i++) {
1227 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1228 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001229
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001230 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001231 continue;
1232
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001233 if (drv->ops->digital_mute && dai->playback_active)
1234 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001235 }
1236
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001237 for (i = 0; i < card->num_rtd; i++) {
1238 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1239 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001240
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001241 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001242 continue;
1243
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001244 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
1245 cpu_dai->driver->resume(cpu_dai);
1246 if (platform->driver->resume && platform->suspended) {
1247 platform->driver->resume(cpu_dai);
1248 platform->suspended = 0;
1249 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001250 }
1251
Mark Brown87506542008-11-18 20:50:34 +00001252 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001253 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001254
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001255 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +01001256
1257 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001258 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +01001259}
1260
1261/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001262int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +01001263{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001264 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001265 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +02001266
Mark Brown64ab9ba2009-03-31 11:27:03 +01001267 /* AC97 devices might have other drivers hanging off them so
1268 * need to resume immediately. Other drivers don't have that
1269 * problem and may take a substantial amount of time to resume
1270 * due to I/O costs and anti-pop so handle them out of line.
1271 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001272 for (i = 0; i < card->num_rtd; i++) {
1273 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1274 if (cpu_dai->driver->ac97_control) {
1275 dev_dbg(dev, "Resuming AC97 immediately\n");
1276 soc_resume_deferred(&card->deferred_resume_work);
1277 } else {
1278 dev_dbg(dev, "Scheduling resume work\n");
1279 if (!schedule_work(&card->deferred_resume_work))
1280 dev_err(dev, "resume work item may be lost\n");
1281 }
Mark Brown64ab9ba2009-03-31 11:27:03 +01001282 }
Andy Green6ed25972008-06-13 16:24:05 +01001283
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001284 return 0;
1285}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001286EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001287#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001288#define snd_soc_suspend NULL
1289#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001290#endif
1291
Barry Song02a06d32009-10-16 18:13:38 +08001292static struct snd_soc_dai_ops null_dai_ops = {
1293};
1294
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001295static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001296{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001297 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1298 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +00001299 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001300 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001301 struct snd_soc_dai *codec_dai, *cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001302
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001303 if (rtd->complete)
1304 return 1;
1305 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +00001306
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001307 /* do we already have the CPU DAI for this link ? */
1308 if (rtd->cpu_dai) {
1309 goto find_codec;
1310 }
1311 /* no, then find CPU DAI from registered DAIs*/
1312 list_for_each_entry(cpu_dai, &dai_list, list) {
1313 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
1314
1315 if (!try_module_get(cpu_dai->dev->driver->owner))
1316 return -ENODEV;
1317
1318 rtd->cpu_dai = cpu_dai;
1319 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001320 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001321 }
1322 dev_dbg(card->dev, "CPU DAI %s not registered\n",
1323 dai_link->cpu_dai_name);
1324
1325find_codec:
1326 /* do we already have the CODEC for this link ? */
1327 if (rtd->codec) {
1328 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +00001329 }
1330
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001331 /* no, then find CODEC from registered CODECs*/
1332 list_for_each_entry(codec, &codec_list, list) {
1333 if (!strcmp(codec->name, dai_link->codec_name)) {
1334 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +00001335
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001336 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
1337 list_for_each_entry(codec_dai, &dai_list, list) {
1338 if (codec->dev == codec_dai->dev &&
1339 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
1340 rtd->codec_dai = codec_dai;
1341 goto find_platform;
Mark Brown6b05eda2008-12-08 19:26:48 +00001342 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001343 }
1344 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
1345 dai_link->codec_dai_name);
1346
1347 goto find_platform;
1348 }
1349 }
1350 dev_dbg(card->dev, "CODEC %s not registered\n",
1351 dai_link->codec_name);
1352
1353find_platform:
1354 /* do we already have the CODEC DAI for this link ? */
1355 if (rtd->platform) {
1356 goto out;
1357 }
1358 /* no, then find CPU DAI from registered DAIs*/
1359 list_for_each_entry(platform, &platform_list, list) {
1360 if (!strcmp(platform->name, dai_link->platform_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001361 rtd->platform = platform;
1362 goto out;
1363 }
1364 }
1365
1366 dev_dbg(card->dev, "platform %s not registered\n",
1367 dai_link->platform_name);
1368 return 0;
1369
1370out:
1371 /* mark rtd as complete if we found all 4 of our client devices */
1372 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
1373 rtd->complete = 1;
1374 card->num_rtd++;
1375 }
1376 return 1;
1377}
1378
Jarkko Nikula589c3562010-12-06 16:27:07 +02001379static void soc_remove_codec(struct snd_soc_codec *codec)
1380{
1381 int err;
1382
1383 if (codec->driver->remove) {
1384 err = codec->driver->remove(codec);
1385 if (err < 0)
1386 dev_err(codec->dev,
1387 "asoc: failed to remove %s: %d\n",
1388 codec->name, err);
1389 }
1390
1391 /* Make sure all DAPM widgets are freed */
1392 snd_soc_dapm_free(&codec->dapm);
1393
1394 soc_cleanup_codec_debugfs(codec);
1395 codec->probed = 0;
1396 list_del(&codec->card_list);
1397 module_put(codec->dev->driver->owner);
1398}
1399
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001400static void soc_remove_dai_link(struct snd_soc_card *card, int num)
1401{
1402 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1403 struct snd_soc_codec *codec = rtd->codec;
1404 struct snd_soc_platform *platform = rtd->platform;
1405 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1406 int err;
1407
1408 /* unregister the rtd device */
1409 if (rtd->dev_registered) {
1410 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001411 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001412 device_unregister(&rtd->dev);
1413 rtd->dev_registered = 0;
1414 }
1415
1416 /* remove the CODEC DAI */
1417 if (codec_dai && codec_dai->probed) {
1418 if (codec_dai->driver->remove) {
1419 err = codec_dai->driver->remove(codec_dai);
1420 if (err < 0)
1421 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
1422 }
1423 codec_dai->probed = 0;
1424 list_del(&codec_dai->card_list);
1425 }
1426
1427 /* remove the platform */
1428 if (platform && platform->probed) {
1429 if (platform->driver->remove) {
1430 err = platform->driver->remove(platform);
1431 if (err < 0)
1432 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
1433 }
1434 platform->probed = 0;
1435 list_del(&platform->card_list);
1436 module_put(platform->dev->driver->owner);
1437 }
1438
1439 /* remove the CODEC */
Jarkko Nikula589c3562010-12-06 16:27:07 +02001440 if (codec && codec->probed)
1441 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001442
1443 /* remove the cpu_dai */
1444 if (cpu_dai && cpu_dai->probed) {
1445 if (cpu_dai->driver->remove) {
1446 err = cpu_dai->driver->remove(cpu_dai);
1447 if (err < 0)
1448 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
1449 }
1450 cpu_dai->probed = 0;
1451 list_del(&cpu_dai->card_list);
1452 module_put(cpu_dai->dev->driver->owner);
1453 }
1454}
1455
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001456static void soc_remove_dai_links(struct snd_soc_card *card)
1457{
1458 int i;
1459
1460 for (i = 0; i < card->num_rtd; i++)
1461 soc_remove_dai_link(card, i);
1462
1463 card->num_rtd = 0;
1464}
1465
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001466static void soc_set_name_prefix(struct snd_soc_card *card,
1467 struct snd_soc_codec *codec)
1468{
1469 int i;
1470
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001471 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001472 return;
1473
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001474 for (i = 0; i < card->num_configs; i++) {
1475 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001476 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1477 codec->name_prefix = map->name_prefix;
1478 break;
1479 }
1480 }
1481}
1482
Jarkko Nikula589c3562010-12-06 16:27:07 +02001483static int soc_probe_codec(struct snd_soc_card *card,
1484 struct snd_soc_codec *codec)
1485{
1486 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +00001487 const struct snd_soc_codec_driver *driver = codec->driver;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001488
1489 codec->card = card;
1490 codec->dapm.card = card;
1491 soc_set_name_prefix(card, codec);
1492
Jarkko Nikula70d29332011-01-27 16:24:22 +02001493 if (!try_module_get(codec->dev->driver->owner))
1494 return -ENODEV;
1495
Mark Brown89b95ac02011-03-07 16:38:44 +00001496 if (driver->probe) {
1497 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001498 if (ret < 0) {
1499 dev_err(codec->dev,
1500 "asoc: failed to probe CODEC %s: %d\n",
1501 codec->name, ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001502 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001503 }
1504 }
1505
Mark Brownb7af1da2011-04-07 19:18:44 +09001506 if (driver->controls)
1507 snd_soc_add_controls(codec, driver->controls,
1508 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001509 if (driver->dapm_widgets)
1510 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1511 driver->num_dapm_widgets);
1512 if (driver->dapm_routes)
1513 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1514 driver->num_dapm_routes);
1515
Jarkko Nikula589c3562010-12-06 16:27:07 +02001516 soc_init_codec_debugfs(codec);
1517
1518 /* mark codec as probed and add to card codec list */
1519 codec->probed = 1;
1520 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001521 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001522
Jarkko Nikula70d29332011-01-27 16:24:22 +02001523 return 0;
1524
1525err_probe:
1526 module_put(codec->dev->driver->owner);
1527
Jarkko Nikula589c3562010-12-06 16:27:07 +02001528 return ret;
1529}
1530
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001531static void rtd_release(struct device *dev) {}
1532
Jarkko Nikula589c3562010-12-06 16:27:07 +02001533static int soc_post_component_init(struct snd_soc_card *card,
1534 struct snd_soc_codec *codec,
1535 int num, int dailess)
1536{
1537 struct snd_soc_dai_link *dai_link = NULL;
1538 struct snd_soc_aux_dev *aux_dev = NULL;
1539 struct snd_soc_pcm_runtime *rtd;
1540 const char *temp, *name;
1541 int ret = 0;
1542
1543 if (!dailess) {
1544 dai_link = &card->dai_link[num];
1545 rtd = &card->rtd[num];
1546 name = dai_link->name;
1547 } else {
1548 aux_dev = &card->aux_dev[num];
1549 rtd = &card->rtd_aux[num];
1550 name = aux_dev->name;
1551 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001552 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001553
1554 /* machine controls, routes and widgets are not prefixed */
1555 temp = codec->name_prefix;
1556 codec->name_prefix = NULL;
1557
1558 /* do machine specific initialization */
1559 if (!dailess && dai_link->init)
1560 ret = dai_link->init(rtd);
1561 else if (dailess && aux_dev->init)
1562 ret = aux_dev->init(&codec->dapm);
1563 if (ret < 0) {
1564 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1565 return ret;
1566 }
1567 codec->name_prefix = temp;
1568
1569 /* Make sure all DAPM widgets are instantiated */
1570 snd_soc_dapm_new_widgets(&codec->dapm);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001571
1572 /* register the rtd device */
1573 rtd->codec = codec;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001574 rtd->dev.parent = card->dev;
1575 rtd->dev.release = rtd_release;
1576 rtd->dev.init_name = name;
1577 ret = device_register(&rtd->dev);
1578 if (ret < 0) {
1579 dev_err(card->dev,
1580 "asoc: failed to register runtime device: %d\n", ret);
1581 return ret;
1582 }
1583 rtd->dev_registered = 1;
1584
1585 /* add DAPM sysfs entries for this codec */
1586 ret = snd_soc_dapm_sys_add(&rtd->dev);
1587 if (ret < 0)
1588 dev_err(codec->dev,
1589 "asoc: failed to add codec dapm sysfs entries: %d\n",
1590 ret);
1591
1592 /* add codec sysfs entries */
1593 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1594 if (ret < 0)
1595 dev_err(codec->dev,
1596 "asoc: failed to add codec sysfs files: %d\n", ret);
1597
1598 return 0;
1599}
1600
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001601static int soc_probe_dai_link(struct snd_soc_card *card, int num)
1602{
1603 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1604 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1605 struct snd_soc_codec *codec = rtd->codec;
1606 struct snd_soc_platform *platform = rtd->platform;
1607 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1608 int ret;
1609
1610 dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num);
1611
1612 /* config components */
1613 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001614 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001615 codec_dai->card = card;
1616 cpu_dai->card = card;
1617
1618 /* set default power off timeout */
1619 rtd->pmdown_time = pmdown_time;
1620
1621 /* probe the cpu_dai */
1622 if (!cpu_dai->probed) {
1623 if (cpu_dai->driver->probe) {
1624 ret = cpu_dai->driver->probe(cpu_dai);
1625 if (ret < 0) {
1626 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1627 cpu_dai->name);
1628 return ret;
1629 }
1630 }
1631 cpu_dai->probed = 1;
1632 /* mark cpu_dai as probed and add to card cpu_dai list */
1633 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1634 }
1635
1636 /* probe the CODEC */
1637 if (!codec->probed) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001638 ret = soc_probe_codec(card, codec);
1639 if (ret < 0)
1640 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001641 }
1642
1643 /* probe the platform */
1644 if (!platform->probed) {
Jarkko Nikula70d29332011-01-27 16:24:22 +02001645 if (!try_module_get(platform->dev->driver->owner))
1646 return -ENODEV;
1647
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001648 if (platform->driver->probe) {
1649 ret = platform->driver->probe(platform);
1650 if (ret < 0) {
1651 printk(KERN_ERR "asoc: failed to probe platform %s\n",
1652 platform->name);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001653 module_put(platform->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001654 return ret;
1655 }
1656 }
1657 /* mark platform as probed and add to card platform list */
1658 platform->probed = 1;
1659 list_add(&platform->card_list, &card->platform_dev_list);
1660 }
1661
1662 /* probe the CODEC DAI */
1663 if (!codec_dai->probed) {
1664 if (codec_dai->driver->probe) {
1665 ret = codec_dai->driver->probe(codec_dai);
1666 if (ret < 0) {
1667 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1668 codec_dai->name);
1669 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001670 }
1671 }
1672
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001673 /* mark cpu_dai as probed and add to card cpu_dai list */
1674 codec_dai->probed = 1;
1675 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001676 }
1677
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001678 /* DAPM dai link stream work */
1679 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
1680
Jarkko Nikula589c3562010-12-06 16:27:07 +02001681 ret = soc_post_component_init(card, codec, num, 0);
1682 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001683 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001684
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001685 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1686 if (ret < 0)
1687 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1688
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001689 /* create the pcm */
1690 ret = soc_new_pcm(rtd, num);
1691 if (ret < 0) {
1692 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1693 return ret;
1694 }
1695
1696 /* add platform data for AC97 devices */
1697 if (rtd->codec_dai->driver->ac97_control)
1698 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1699
1700 return 0;
1701}
1702
1703#ifdef CONFIG_SND_SOC_AC97_BUS
1704static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1705{
1706 int ret;
1707
1708 /* Only instantiate AC97 if not already done by the adaptor
1709 * for the generic AC97 subsystem.
1710 */
1711 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001712 /*
1713 * It is possible that the AC97 device is already registered to
1714 * the device subsystem. This happens when the device is created
1715 * via snd_ac97_mixer(). Currently only SoC codec that does so
1716 * is the generic AC97 glue but others migh emerge.
1717 *
1718 * In those cases we don't try to register the device again.
1719 */
1720 if (!rtd->codec->ac97_created)
1721 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001722
1723 ret = soc_ac97_dev_register(rtd->codec);
1724 if (ret < 0) {
1725 printk(KERN_ERR "asoc: AC97 device register failed\n");
1726 return ret;
1727 }
1728
1729 rtd->codec->ac97_registered = 1;
1730 }
1731 return 0;
1732}
1733
1734static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1735{
1736 if (codec->ac97_registered) {
1737 soc_ac97_dev_unregister(codec);
1738 codec->ac97_registered = 0;
1739 }
1740}
1741#endif
1742
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001743static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1744{
1745 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001746 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001747 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001748
1749 /* find CODEC from registered CODECs*/
1750 list_for_each_entry(codec, &codec_list, list) {
1751 if (!strcmp(codec->name, aux_dev->codec_name)) {
1752 if (codec->probed) {
1753 dev_err(codec->dev,
1754 "asoc: codec already probed");
1755 ret = -EBUSY;
1756 goto out;
1757 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001758 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001759 }
1760 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001761 /* codec not found */
1762 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1763 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001764
Jarkko Nikula676ad982010-12-03 09:18:22 +02001765found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001766 ret = soc_probe_codec(card, codec);
1767 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001768 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001769
Jarkko Nikula589c3562010-12-06 16:27:07 +02001770 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001771
1772out:
1773 return ret;
1774}
1775
1776static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1777{
1778 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1779 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001780
1781 /* unregister the rtd device */
1782 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001783 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001784 device_unregister(&rtd->dev);
1785 rtd->dev_registered = 0;
1786 }
1787
Jarkko Nikula589c3562010-12-06 16:27:07 +02001788 if (codec && codec->probed)
1789 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001790}
1791
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001792static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1793 enum snd_soc_compress_type compress_type)
1794{
1795 int ret;
1796
1797 if (codec->cache_init)
1798 return 0;
1799
1800 /* override the compress_type if necessary */
1801 if (compress_type && codec->compress_type != compress_type)
1802 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001803 ret = snd_soc_cache_init(codec);
1804 if (ret < 0) {
1805 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1806 ret);
1807 return ret;
1808 }
1809 codec->cache_init = 1;
1810 return 0;
1811}
1812
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001813static void snd_soc_instantiate_card(struct snd_soc_card *card)
1814{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001815 struct snd_soc_codec *codec;
1816 struct snd_soc_codec_conf *codec_conf;
1817 enum snd_soc_compress_type compress_type;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001818 int ret, i;
1819
1820 mutex_lock(&card->mutex);
1821
1822 if (card->instantiated) {
1823 mutex_unlock(&card->mutex);
1824 return;
1825 }
1826
1827 /* bind DAIs */
1828 for (i = 0; i < card->num_links; i++)
1829 soc_bind_dai_link(card, i);
1830
1831 /* bind completed ? */
1832 if (card->num_rtd != card->num_links) {
1833 mutex_unlock(&card->mutex);
1834 return;
1835 }
1836
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001837 /* initialize the register cache for each available codec */
1838 list_for_each_entry(codec, &codec_list, list) {
1839 if (codec->cache_init)
1840 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001841 /* by default we don't override the compress_type */
1842 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001843 /* check to see if we need to override the compress_type */
1844 for (i = 0; i < card->num_configs; ++i) {
1845 codec_conf = &card->codec_conf[i];
1846 if (!strcmp(codec->name, codec_conf->dev_name)) {
1847 compress_type = codec_conf->compress_type;
1848 if (compress_type && compress_type
1849 != codec->compress_type)
1850 break;
1851 }
1852 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001853 ret = snd_soc_init_codec_cache(codec, compress_type);
1854 if (ret < 0) {
1855 mutex_unlock(&card->mutex);
1856 return;
1857 }
1858 }
1859
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001860 /* card bind complete so register a sound card */
1861 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1862 card->owner, 0, &card->snd_card);
1863 if (ret < 0) {
1864 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1865 card->name);
1866 mutex_unlock(&card->mutex);
1867 return;
1868 }
1869 card->snd_card->dev = card->dev;
1870
Mark Browne37a4972011-03-02 18:21:57 +00001871 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1872 card->dapm.dev = card->dev;
1873 card->dapm.card = card;
1874 list_add(&card->dapm.list, &card->dapm_list);
1875
Mark Brown88ee1c62011-02-02 10:43:26 +00001876#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001877 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001878 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001879#endif
Andy Green6ed25972008-06-13 16:24:05 +01001880
Mark Brown9a841eb2011-04-12 17:51:37 -07001881 if (card->dapm_widgets)
1882 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1883 card->num_dapm_widgets);
1884
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001885 /* initialise the sound card only once */
1886 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001887 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001888 if (ret < 0)
1889 goto card_probe_error;
1890 }
1891
Mark Brownfe3e78e2009-11-03 22:13:13 +00001892 for (i = 0; i < card->num_links; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001893 ret = soc_probe_dai_link(card, i);
1894 if (ret < 0) {
Mark Brown321de0d2010-09-21 15:09:37 +01001895 pr_err("asoc: failed to instantiate card %s: %d\n",
1896 card->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001897 goto probe_dai_err;
1898 }
1899 }
1900
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001901 for (i = 0; i < card->num_aux_devs; i++) {
1902 ret = soc_probe_aux_dev(card, i);
1903 if (ret < 0) {
1904 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1905 card->name, ret);
1906 goto probe_aux_dev_err;
1907 }
1908 }
1909
Mark Brownb7af1da2011-04-07 19:18:44 +09001910 /* We should have a non-codec control add function but we don't */
1911 if (card->controls)
1912 snd_soc_add_controls(list_first_entry(&card->codec_dev_list,
1913 struct snd_soc_codec,
1914 card_list),
1915 card->controls,
1916 card->num_controls);
1917
Mark Brownb8ad29d2011-03-02 18:35:51 +00001918 if (card->dapm_routes)
1919 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1920 card->num_dapm_routes);
1921
Mark Browna2721fd2011-03-07 11:09:25 +00001922#ifdef CONFIG_DEBUG_FS
Mark Browne37a4972011-03-02 18:21:57 +00001923 card->dapm.debugfs_dapm = debugfs_create_dir("dapm",
1924 card->debugfs_card_root);
1925 if (!card->dapm.debugfs_dapm)
1926 printk(KERN_WARNING
1927 "Failed to create card DAPM debugfs directory\n");
1928
1929 snd_soc_dapm_debugfs_init(&card->dapm);
Mark Browna2721fd2011-03-07 11:09:25 +00001930#endif
Mark Browne37a4972011-03-02 18:21:57 +00001931
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001932 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1933 "%s", card->name);
1934 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1935 "%s", card->name);
1936
Mark Brown28e9ad92011-03-02 18:36:34 +00001937 if (card->late_probe) {
1938 ret = card->late_probe(card);
1939 if (ret < 0) {
1940 dev_err(card->dev, "%s late_probe() failed: %d\n",
1941 card->name, ret);
1942 goto probe_aux_dev_err;
1943 }
1944 }
1945
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001946 ret = snd_card_register(card->snd_card);
1947 if (ret < 0) {
1948 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001949 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001950 }
1951
1952#ifdef CONFIG_SND_SOC_AC97_BUS
1953 /* register any AC97 codecs */
1954 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001955 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1956 if (ret < 0) {
1957 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1958 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001959 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001960 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001961 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001962 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001963#endif
1964
Mark Brown435c5e22008-12-04 15:32:53 +00001965 card->instantiated = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001966 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001967 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001968
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001969probe_aux_dev_err:
1970 for (i = 0; i < card->num_aux_devs; i++)
1971 soc_remove_aux_dev(card, i);
1972
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001973probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001974 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001975
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001976card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001977 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001978 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001979
1980 snd_card_free(card->snd_card);
1981
1982 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001983}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001984
Mark Brown435c5e22008-12-04 15:32:53 +00001985/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001986 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001987 * client_mutex.
1988 */
1989static void snd_soc_instantiate_cards(void)
1990{
1991 struct snd_soc_card *card;
1992 list_for_each_entry(card, &card_list, list)
1993 snd_soc_instantiate_card(card);
1994}
1995
1996/* probes a new socdev */
1997static int soc_probe(struct platform_device *pdev)
1998{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001999 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00002000 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00002001
Vinod Koul70a7ca32011-01-14 19:22:48 +05302002 /*
2003 * no card, so machine driver should be registering card
2004 * we should not be here in that case so ret error
2005 */
2006 if (!card)
2007 return -EINVAL;
2008
Mark Brown435c5e22008-12-04 15:32:53 +00002009 /* Bodge while we unpick instantiation */
2010 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002011
Mark Brown435c5e22008-12-04 15:32:53 +00002012 ret = snd_soc_register_card(card);
2013 if (ret != 0) {
2014 dev_err(&pdev->dev, "Failed to register card\n");
2015 return ret;
2016 }
2017
2018 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002019}
2020
Vinod Koulb0e26482011-01-13 22:48:02 +05302021static int soc_cleanup_card_resources(struct snd_soc_card *card)
2022{
Vinod Koulb0e26482011-01-13 22:48:02 +05302023 int i;
2024
2025 /* make sure any delayed work runs */
2026 for (i = 0; i < card->num_rtd; i++) {
2027 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2028 flush_delayed_work_sync(&rtd->delayed_work);
2029 }
2030
2031 /* remove auxiliary devices */
2032 for (i = 0; i < card->num_aux_devs; i++)
2033 soc_remove_aux_dev(card, i);
2034
2035 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09002036 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302037
2038 soc_cleanup_card_debugfs(card);
2039
2040 /* remove the card */
2041 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002042 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302043
2044 kfree(card->rtd);
2045 snd_card_free(card->snd_card);
2046 return 0;
2047
2048}
2049
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002050/* removes a socdev */
2051static int soc_remove(struct platform_device *pdev)
2052{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002053 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002054
Mark Brownc5af3a22008-11-28 13:29:45 +00002055 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002056 return 0;
2057}
2058
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002059int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01002060{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002061 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002062 int i;
Mark Brown51737472009-06-22 13:16:51 +01002063
2064 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01002065 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002066
2067 /* Flush out pmdown_time work - we actually do want to run it
2068 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002069 for (i = 0; i < card->num_rtd; i++) {
2070 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01002071 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002072 }
Mark Brown51737472009-06-22 13:16:51 +01002073
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002074 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01002075
2076 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002077}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002078EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01002079
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002080const struct dev_pm_ops snd_soc_pm_ops = {
2081 .suspend = snd_soc_suspend,
2082 .resume = snd_soc_resume,
2083 .poweroff = snd_soc_poweroff,
Mark Brown416356f2009-06-30 19:05:15 +01002084};
Stephen Warrendeb26072011-04-05 19:35:30 -06002085EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01002086
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002087/* ASoC platform driver */
2088static struct platform_driver soc_driver = {
2089 .driver = {
2090 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02002091 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002092 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002093 },
2094 .probe = soc_probe,
2095 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002096};
2097
2098/* create a new pcm */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002099static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002100{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002101 struct snd_soc_codec *codec = rtd->codec;
2102 struct snd_soc_platform *platform = rtd->platform;
2103 struct snd_soc_dai *codec_dai = rtd->codec_dai;
2104 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002105 struct snd_pcm *pcm;
2106 char new_name[64];
2107 int ret = 0, playback = 0, capture = 0;
2108
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002109 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00002110 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002111 rtd->dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002112
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002113 if (codec_dai->driver->playback.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002114 playback = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002115 if (codec_dai->driver->capture.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002116 capture = 1;
2117
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002118 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name);
2119 ret = snd_pcm_new(rtd->card->snd_card, new_name,
2120 num, playback, capture, &pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002121 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002122 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002123 return ret;
2124 }
2125
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002126 rtd->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002127 pcm->private_data = rtd;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002128 soc_pcm_ops.mmap = platform->driver->ops->mmap;
2129 soc_pcm_ops.pointer = platform->driver->ops->pointer;
2130 soc_pcm_ops.ioctl = platform->driver->ops->ioctl;
2131 soc_pcm_ops.copy = platform->driver->ops->copy;
2132 soc_pcm_ops.silence = platform->driver->ops->silence;
2133 soc_pcm_ops.ack = platform->driver->ops->ack;
2134 soc_pcm_ops.page = platform->driver->ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002135
2136 if (playback)
2137 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
2138
2139 if (capture)
2140 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
2141
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002142 ret = platform->driver->pcm_new(rtd->card->snd_card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002143 if (ret < 0) {
2144 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002145 return ret;
2146 }
2147
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002148 pcm->private_free = platform->driver->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002149 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2150 cpu_dai->name);
2151 return ret;
2152}
2153
Mark Brown096e49d2009-07-05 15:12:22 +01002154/**
2155 * snd_soc_codec_volatile_register: Report if a register is volatile.
2156 *
2157 * @codec: CODEC to query.
2158 * @reg: Register to query.
2159 *
2160 * Boolean function indiciating if a CODEC register is volatile.
2161 */
Mark Brown181e0552011-01-24 14:05:25 +00002162int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
2163 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01002164{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00002165 if (codec->volatile_register)
2166 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01002167 else
2168 return 0;
2169}
2170EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
2171
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002172/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002173 * snd_soc_codec_readable_register: Report if a register is readable.
2174 *
2175 * @codec: CODEC to query.
2176 * @reg: Register to query.
2177 *
2178 * Boolean function indicating if a CODEC register is readable.
2179 */
2180int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
2181 unsigned int reg)
2182{
2183 if (codec->readable_register)
2184 return codec->readable_register(codec, reg);
2185 else
2186 return 0;
2187}
2188EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
2189
2190/**
2191 * snd_soc_codec_writable_register: Report if a register is writable.
2192 *
2193 * @codec: CODEC to query.
2194 * @reg: Register to query.
2195 *
2196 * Boolean function indicating if a CODEC register is writable.
2197 */
2198int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
2199 unsigned int reg)
2200{
2201 if (codec->writable_register)
2202 return codec->writable_register(codec, reg);
2203 else
2204 return 0;
2205}
2206EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
2207
2208/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002209 * snd_soc_new_ac97_codec - initailise AC97 device
2210 * @codec: audio codec
2211 * @ops: AC97 bus operations
2212 * @num: AC97 codec number
2213 *
2214 * Initialises AC97 codec resources for use by ad-hoc devices only.
2215 */
2216int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2217 struct snd_ac97_bus_ops *ops, int num)
2218{
2219 mutex_lock(&codec->mutex);
2220
2221 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2222 if (codec->ac97 == NULL) {
2223 mutex_unlock(&codec->mutex);
2224 return -ENOMEM;
2225 }
2226
2227 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2228 if (codec->ac97->bus == NULL) {
2229 kfree(codec->ac97);
2230 codec->ac97 = NULL;
2231 mutex_unlock(&codec->mutex);
2232 return -ENOMEM;
2233 }
2234
2235 codec->ac97->bus->ops = ops;
2236 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002237
2238 /*
2239 * Mark the AC97 device to be created by us. This way we ensure that the
2240 * device will be registered with the device subsystem later on.
2241 */
2242 codec->ac97_created = 1;
2243
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002244 mutex_unlock(&codec->mutex);
2245 return 0;
2246}
2247EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2248
2249/**
2250 * snd_soc_free_ac97_codec - free AC97 codec device
2251 * @codec: audio codec
2252 *
2253 * Frees AC97 codec device resources.
2254 */
2255void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2256{
2257 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002258#ifdef CONFIG_SND_SOC_AC97_BUS
2259 soc_unregister_ac97_dai_link(codec);
2260#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002261 kfree(codec->ac97->bus);
2262 kfree(codec->ac97);
2263 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002264 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002265 mutex_unlock(&codec->mutex);
2266}
2267EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2268
Mark Brownc3753702010-11-01 15:41:57 -04002269unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2270{
2271 unsigned int ret;
2272
Mark Brownc3acec22010-12-02 16:15:29 +00002273 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002274 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002275 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002276
2277 return ret;
2278}
2279EXPORT_SYMBOL_GPL(snd_soc_read);
2280
2281unsigned int snd_soc_write(struct snd_soc_codec *codec,
2282 unsigned int reg, unsigned int val)
2283{
2284 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002285 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002286 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002287}
2288EXPORT_SYMBOL_GPL(snd_soc_write);
2289
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00002290unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
2291 unsigned int reg, const void *data, size_t len)
2292{
2293 return codec->bulk_write_raw(codec, reg, data, len);
2294}
2295EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
2296
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002297/**
2298 * snd_soc_update_bits - update codec register bits
2299 * @codec: audio codec
2300 * @reg: codec register
2301 * @mask: register mask
2302 * @value: new value
2303 *
2304 * Writes new register value.
2305 *
Timur Tabi180c3292011-01-10 15:58:13 -06002306 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002307 */
2308int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002309 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002310{
2311 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002312 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002313 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002314
Timur Tabi180c3292011-01-10 15:58:13 -06002315 ret = snd_soc_read(codec, reg);
2316 if (ret < 0)
2317 return ret;
2318
2319 old = ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002320 new = (old & ~mask) | value;
2321 change = old != new;
Timur Tabi180c3292011-01-10 15:58:13 -06002322 if (change) {
2323 ret = snd_soc_write(codec, reg, new);
2324 if (ret < 0)
2325 return ret;
2326 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002327
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002328 return change;
2329}
2330EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2331
2332/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002333 * snd_soc_update_bits_locked - update codec register bits
2334 * @codec: audio codec
2335 * @reg: codec register
2336 * @mask: register mask
2337 * @value: new value
2338 *
2339 * Writes new register value, and takes the codec mutex.
2340 *
2341 * Returns 1 for change else 0.
2342 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002343int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2344 unsigned short reg, unsigned int mask,
2345 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002346{
2347 int change;
2348
2349 mutex_lock(&codec->mutex);
2350 change = snd_soc_update_bits(codec, reg, mask, value);
2351 mutex_unlock(&codec->mutex);
2352
2353 return change;
2354}
Mark Browndd1b3d52009-12-04 14:22:03 +00002355EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002356
2357/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002358 * snd_soc_test_bits - test register for change
2359 * @codec: audio codec
2360 * @reg: codec register
2361 * @mask: register mask
2362 * @value: new value
2363 *
2364 * Tests a register with a new value and checks if the new value is
2365 * different from the old value.
2366 *
2367 * Returns 1 for change else 0.
2368 */
2369int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002370 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002371{
2372 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002373 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002374
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002375 old = snd_soc_read(codec, reg);
2376 new = (old & ~mask) | value;
2377 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002378
2379 return change;
2380}
2381EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2382
2383/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002384 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2385 * @substream: the pcm substream
2386 * @hw: the hardware parameters
2387 *
2388 * Sets the substream runtime hardware parameters.
2389 */
2390int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2391 const struct snd_pcm_hardware *hw)
2392{
2393 struct snd_pcm_runtime *runtime = substream->runtime;
2394 runtime->hw.info = hw->info;
2395 runtime->hw.formats = hw->formats;
2396 runtime->hw.period_bytes_min = hw->period_bytes_min;
2397 runtime->hw.period_bytes_max = hw->period_bytes_max;
2398 runtime->hw.periods_min = hw->periods_min;
2399 runtime->hw.periods_max = hw->periods_max;
2400 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2401 runtime->hw.fifo_size = hw->fifo_size;
2402 return 0;
2403}
2404EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2405
2406/**
2407 * snd_soc_cnew - create new control
2408 * @_template: control template
2409 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002410 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002411 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002412 *
2413 * Create a new mixer control from a template control.
2414 *
2415 * Returns 0 for success, else error.
2416 */
2417struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brownefb7ac32011-03-08 17:23:24 +00002418 void *data, char *long_name,
2419 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002420{
2421 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002422 struct snd_kcontrol *kcontrol;
2423 char *name = NULL;
2424 int name_len;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002425
2426 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002427 template.index = 0;
2428
Mark Brownefb7ac32011-03-08 17:23:24 +00002429 if (!long_name)
2430 long_name = template.name;
2431
2432 if (prefix) {
2433 name_len = strlen(long_name) + strlen(prefix) + 2;
2434 name = kmalloc(name_len, GFP_ATOMIC);
2435 if (!name)
2436 return NULL;
2437
2438 snprintf(name, name_len, "%s %s", prefix, long_name);
2439
2440 template.name = name;
2441 } else {
2442 template.name = long_name;
2443 }
2444
2445 kcontrol = snd_ctl_new1(&template, data);
2446
2447 kfree(name);
2448
2449 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002450}
2451EXPORT_SYMBOL_GPL(snd_soc_cnew);
2452
2453/**
Ian Molton3e8e1952009-01-09 00:23:21 +00002454 * snd_soc_add_controls - add an array of controls to a codec.
2455 * Convienience function to add a list of controls. Many codecs were
2456 * duplicating this code.
2457 *
2458 * @codec: codec to add controls to
2459 * @controls: array of controls to add
2460 * @num_controls: number of elements in the array
2461 *
2462 * Return 0 for success, else error.
2463 */
2464int snd_soc_add_controls(struct snd_soc_codec *codec,
2465 const struct snd_kcontrol_new *controls, int num_controls)
2466{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002467 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002468 int err, i;
2469
2470 for (i = 0; i < num_controls; i++) {
2471 const struct snd_kcontrol_new *control = &controls[i];
Mark Brownefb7ac32011-03-08 17:23:24 +00002472 err = snd_ctl_add(card, snd_soc_cnew(control, codec,
2473 control->name,
2474 codec->name_prefix));
Ian Molton3e8e1952009-01-09 00:23:21 +00002475 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002476 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Mark Brownefb7ac32011-03-08 17:23:24 +00002477 codec->name, control->name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002478 return err;
2479 }
2480 }
2481
2482 return 0;
2483}
2484EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2485
2486/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002487 * snd_soc_info_enum_double - enumerated double mixer info callback
2488 * @kcontrol: mixer control
2489 * @uinfo: control element information
2490 *
2491 * Callback to provide information about a double enumerated
2492 * mixer control.
2493 *
2494 * Returns 0 for success.
2495 */
2496int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2497 struct snd_ctl_elem_info *uinfo)
2498{
2499 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2500
2501 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2502 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002503 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002504
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002505 if (uinfo->value.enumerated.item > e->max - 1)
2506 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002507 strcpy(uinfo->value.enumerated.name,
2508 e->texts[uinfo->value.enumerated.item]);
2509 return 0;
2510}
2511EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2512
2513/**
2514 * snd_soc_get_enum_double - enumerated double mixer get callback
2515 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002516 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002517 *
2518 * Callback to get the value of a double enumerated mixer.
2519 *
2520 * Returns 0 for success.
2521 */
2522int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2523 struct snd_ctl_elem_value *ucontrol)
2524{
2525 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2526 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002527 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002528
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002529 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002530 ;
2531 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002532 ucontrol->value.enumerated.item[0]
2533 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002534 if (e->shift_l != e->shift_r)
2535 ucontrol->value.enumerated.item[1] =
2536 (val >> e->shift_r) & (bitmask - 1);
2537
2538 return 0;
2539}
2540EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2541
2542/**
2543 * snd_soc_put_enum_double - enumerated double mixer put callback
2544 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002545 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002546 *
2547 * Callback to set the value of a double enumerated mixer.
2548 *
2549 * Returns 0 for success.
2550 */
2551int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2552 struct snd_ctl_elem_value *ucontrol)
2553{
2554 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2555 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002556 unsigned int val;
2557 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002558
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002559 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002560 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002561 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002562 return -EINVAL;
2563 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2564 mask = (bitmask - 1) << e->shift_l;
2565 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002566 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002567 return -EINVAL;
2568 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2569 mask |= (bitmask - 1) << e->shift_r;
2570 }
2571
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002572 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002573}
2574EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2575
2576/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002577 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2578 * @kcontrol: mixer control
2579 * @ucontrol: control element information
2580 *
2581 * Callback to get the value of a double semi enumerated mixer.
2582 *
2583 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2584 * used for handling bitfield coded enumeration for example.
2585 *
2586 * Returns 0 for success.
2587 */
2588int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2589 struct snd_ctl_elem_value *ucontrol)
2590{
2591 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002592 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002593 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002594
2595 reg_val = snd_soc_read(codec, e->reg);
2596 val = (reg_val >> e->shift_l) & e->mask;
2597 for (mux = 0; mux < e->max; mux++) {
2598 if (val == e->values[mux])
2599 break;
2600 }
2601 ucontrol->value.enumerated.item[0] = mux;
2602 if (e->shift_l != e->shift_r) {
2603 val = (reg_val >> e->shift_r) & e->mask;
2604 for (mux = 0; mux < e->max; mux++) {
2605 if (val == e->values[mux])
2606 break;
2607 }
2608 ucontrol->value.enumerated.item[1] = mux;
2609 }
2610
2611 return 0;
2612}
2613EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2614
2615/**
2616 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2617 * @kcontrol: mixer control
2618 * @ucontrol: control element information
2619 *
2620 * Callback to set the value of a double semi enumerated mixer.
2621 *
2622 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2623 * used for handling bitfield coded enumeration for example.
2624 *
2625 * Returns 0 for success.
2626 */
2627int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2628 struct snd_ctl_elem_value *ucontrol)
2629{
2630 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002631 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002632 unsigned int val;
2633 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002634
2635 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2636 return -EINVAL;
2637 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2638 mask = e->mask << e->shift_l;
2639 if (e->shift_l != e->shift_r) {
2640 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2641 return -EINVAL;
2642 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2643 mask |= e->mask << e->shift_r;
2644 }
2645
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002646 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002647}
2648EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2649
2650/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002651 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2652 * @kcontrol: mixer control
2653 * @uinfo: control element information
2654 *
2655 * Callback to provide information about an external enumerated
2656 * single mixer.
2657 *
2658 * Returns 0 for success.
2659 */
2660int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2661 struct snd_ctl_elem_info *uinfo)
2662{
2663 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2664
2665 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2666 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002667 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002668
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002669 if (uinfo->value.enumerated.item > e->max - 1)
2670 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002671 strcpy(uinfo->value.enumerated.name,
2672 e->texts[uinfo->value.enumerated.item]);
2673 return 0;
2674}
2675EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2676
2677/**
2678 * snd_soc_info_volsw_ext - external single mixer info callback
2679 * @kcontrol: mixer control
2680 * @uinfo: control element information
2681 *
2682 * Callback to provide information about a single external mixer control.
2683 *
2684 * Returns 0 for success.
2685 */
2686int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2687 struct snd_ctl_elem_info *uinfo)
2688{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002689 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002690
Mark Brownfd5dfad2009-04-15 21:37:46 +01002691 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002692 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2693 else
2694 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2695
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002696 uinfo->count = 1;
2697 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002698 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002699 return 0;
2700}
2701EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2702
2703/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002704 * snd_soc_info_volsw - single mixer info callback
2705 * @kcontrol: mixer control
2706 * @uinfo: control element information
2707 *
2708 * Callback to provide information about a single mixer control.
2709 *
2710 * Returns 0 for success.
2711 */
2712int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2713 struct snd_ctl_elem_info *uinfo)
2714{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002715 struct soc_mixer_control *mc =
2716 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002717 int platform_max;
Mark Brown762b8df2008-10-30 12:37:08 +00002718 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002719 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002720
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002721 if (!mc->platform_max)
2722 mc->platform_max = mc->max;
2723 platform_max = mc->platform_max;
2724
2725 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002726 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2727 else
2728 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2729
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002730 uinfo->count = shift == rshift ? 1 : 2;
2731 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002732 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002733 return 0;
2734}
2735EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2736
2737/**
2738 * snd_soc_get_volsw - single mixer get callback
2739 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002740 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002741 *
2742 * Callback to get the value of a single mixer control.
2743 *
2744 * Returns 0 for success.
2745 */
2746int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2747 struct snd_ctl_elem_value *ucontrol)
2748{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002749 struct soc_mixer_control *mc =
2750 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002751 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002752 unsigned int reg = mc->reg;
2753 unsigned int shift = mc->shift;
2754 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002755 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002756 unsigned int mask = (1 << fls(max)) - 1;
2757 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002758
2759 ucontrol->value.integer.value[0] =
2760 (snd_soc_read(codec, reg) >> shift) & mask;
2761 if (shift != rshift)
2762 ucontrol->value.integer.value[1] =
2763 (snd_soc_read(codec, reg) >> rshift) & mask;
2764 if (invert) {
2765 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002766 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002767 if (shift != rshift)
2768 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002769 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002770 }
2771
2772 return 0;
2773}
2774EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2775
2776/**
2777 * snd_soc_put_volsw - single mixer put callback
2778 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002779 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002780 *
2781 * Callback to set the value of a single mixer control.
2782 *
2783 * Returns 0 for success.
2784 */
2785int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2786 struct snd_ctl_elem_value *ucontrol)
2787{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002788 struct soc_mixer_control *mc =
2789 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002790 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002791 unsigned int reg = mc->reg;
2792 unsigned int shift = mc->shift;
2793 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002794 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002795 unsigned int mask = (1 << fls(max)) - 1;
2796 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002797 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002798
2799 val = (ucontrol->value.integer.value[0] & mask);
2800 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002801 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002802 val_mask = mask << shift;
2803 val = val << shift;
2804 if (shift != rshift) {
2805 val2 = (ucontrol->value.integer.value[1] & mask);
2806 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002807 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002808 val_mask |= mask << rshift;
2809 val |= val2 << rshift;
2810 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002811 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002812}
2813EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2814
2815/**
2816 * snd_soc_info_volsw_2r - double mixer info callback
2817 * @kcontrol: mixer control
2818 * @uinfo: control element information
2819 *
2820 * Callback to provide information about a double mixer control that
2821 * spans 2 codec registers.
2822 *
2823 * Returns 0 for success.
2824 */
2825int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2826 struct snd_ctl_elem_info *uinfo)
2827{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002828 struct soc_mixer_control *mc =
2829 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002830 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002831
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002832 if (!mc->platform_max)
2833 mc->platform_max = mc->max;
2834 platform_max = mc->platform_max;
2835
2836 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002837 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2838 else
2839 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2840
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002841 uinfo->count = 2;
2842 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002843 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002844 return 0;
2845}
2846EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2847
2848/**
2849 * snd_soc_get_volsw_2r - double mixer get callback
2850 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002851 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002852 *
2853 * Callback to get the value of a double mixer control that spans 2 registers.
2854 *
2855 * Returns 0 for success.
2856 */
2857int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2858 struct snd_ctl_elem_value *ucontrol)
2859{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002860 struct soc_mixer_control *mc =
2861 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002862 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002863 unsigned int reg = mc->reg;
2864 unsigned int reg2 = mc->rreg;
2865 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002866 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002867 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002868 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002869
2870 ucontrol->value.integer.value[0] =
2871 (snd_soc_read(codec, reg) >> shift) & mask;
2872 ucontrol->value.integer.value[1] =
2873 (snd_soc_read(codec, reg2) >> shift) & mask;
2874 if (invert) {
2875 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002876 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002877 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002878 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002879 }
2880
2881 return 0;
2882}
2883EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2884
2885/**
2886 * snd_soc_put_volsw_2r - double mixer set callback
2887 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002888 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002889 *
2890 * Callback to set the value of a double mixer control that spans 2 registers.
2891 *
2892 * Returns 0 for success.
2893 */
2894int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2895 struct snd_ctl_elem_value *ucontrol)
2896{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002897 struct soc_mixer_control *mc =
2898 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002899 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002900 unsigned int reg = mc->reg;
2901 unsigned int reg2 = mc->rreg;
2902 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002903 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002904 unsigned int mask = (1 << fls(max)) - 1;
2905 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002906 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002907 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002908
2909 val_mask = mask << shift;
2910 val = (ucontrol->value.integer.value[0] & mask);
2911 val2 = (ucontrol->value.integer.value[1] & mask);
2912
2913 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002914 val = max - val;
2915 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002916 }
2917
2918 val = val << shift;
2919 val2 = val2 << shift;
2920
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002921 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002922 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002923 return err;
2924
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002925 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002926 return err;
2927}
2928EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2929
Mark Browne13ac2e2008-05-28 17:58:05 +01002930/**
2931 * snd_soc_info_volsw_s8 - signed mixer info callback
2932 * @kcontrol: mixer control
2933 * @uinfo: control element information
2934 *
2935 * Callback to provide information about a signed mixer control.
2936 *
2937 * Returns 0 for success.
2938 */
2939int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2940 struct snd_ctl_elem_info *uinfo)
2941{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002942 struct soc_mixer_control *mc =
2943 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002944 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002945 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002946
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002947 if (!mc->platform_max)
2948 mc->platform_max = mc->max;
2949 platform_max = mc->platform_max;
2950
Mark Browne13ac2e2008-05-28 17:58:05 +01002951 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2952 uinfo->count = 2;
2953 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002954 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002955 return 0;
2956}
2957EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2958
2959/**
2960 * snd_soc_get_volsw_s8 - signed mixer get callback
2961 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002962 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002963 *
2964 * Callback to get the value of a signed mixer control.
2965 *
2966 * Returns 0 for success.
2967 */
2968int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2969 struct snd_ctl_elem_value *ucontrol)
2970{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002971 struct soc_mixer_control *mc =
2972 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002973 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002974 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002975 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002976 int val = snd_soc_read(codec, reg);
2977
2978 ucontrol->value.integer.value[0] =
2979 ((signed char)(val & 0xff))-min;
2980 ucontrol->value.integer.value[1] =
2981 ((signed char)((val >> 8) & 0xff))-min;
2982 return 0;
2983}
2984EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2985
2986/**
2987 * snd_soc_put_volsw_sgn - signed mixer put callback
2988 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002989 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002990 *
2991 * Callback to set the value of a signed mixer control.
2992 *
2993 * Returns 0 for success.
2994 */
2995int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2996 struct snd_ctl_elem_value *ucontrol)
2997{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002998 struct soc_mixer_control *mc =
2999 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01003000 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003001 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003002 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03003003 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01003004
3005 val = (ucontrol->value.integer.value[0]+min) & 0xff;
3006 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
3007
Eero Nurkkala6c508c62009-10-30 13:34:03 +02003008 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01003009}
3010EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
3011
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003012/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003013 * snd_soc_limit_volume - Set new limit to an existing volume control.
3014 *
3015 * @codec: where to look for the control
3016 * @name: Name of the control
3017 * @max: new maximum limit
3018 *
3019 * Return 0 for success, else error.
3020 */
3021int snd_soc_limit_volume(struct snd_soc_codec *codec,
3022 const char *name, int max)
3023{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003024 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003025 struct snd_kcontrol *kctl;
3026 struct soc_mixer_control *mc;
3027 int found = 0;
3028 int ret = -EINVAL;
3029
3030 /* Sanity check for name and max */
3031 if (unlikely(!name || max <= 0))
3032 return -EINVAL;
3033
3034 list_for_each_entry(kctl, &card->controls, list) {
3035 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3036 found = 1;
3037 break;
3038 }
3039 }
3040 if (found) {
3041 mc = (struct soc_mixer_control *)kctl->private_value;
3042 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03003043 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003044 ret = 0;
3045 }
3046 }
3047 return ret;
3048}
3049EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3050
3051/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003052 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
3053 * mixer info callback
3054 * @kcontrol: mixer control
3055 * @uinfo: control element information
3056 *
3057 * Returns 0 for success.
3058 */
3059int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3060 struct snd_ctl_elem_info *uinfo)
3061{
3062 struct soc_mixer_control *mc =
3063 (struct soc_mixer_control *)kcontrol->private_value;
3064 int max = mc->max;
3065 int min = mc->min;
3066
3067 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3068 uinfo->count = 2;
3069 uinfo->value.integer.min = 0;
3070 uinfo->value.integer.max = max-min;
3071
3072 return 0;
3073}
3074EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
3075
3076/**
3077 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
3078 * mixer get callback
3079 * @kcontrol: mixer control
3080 * @uinfo: control element information
3081 *
3082 * Returns 0 for success.
3083 */
3084int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3085 struct snd_ctl_elem_value *ucontrol)
3086{
3087 struct soc_mixer_control *mc =
3088 (struct soc_mixer_control *)kcontrol->private_value;
3089 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3090 unsigned int mask = (1<<mc->shift)-1;
3091 int min = mc->min;
3092 int val = snd_soc_read(codec, mc->reg) & mask;
3093 int valr = snd_soc_read(codec, mc->rreg) & mask;
3094
Stuart Longland20630c72010-06-18 12:56:10 +10003095 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
3096 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003097 return 0;
3098}
3099EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
3100
3101/**
3102 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
3103 * mixer put callback
3104 * @kcontrol: mixer control
3105 * @uinfo: control element information
3106 *
3107 * Returns 0 for success.
3108 */
3109int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3110 struct snd_ctl_elem_value *ucontrol)
3111{
3112 struct soc_mixer_control *mc =
3113 (struct soc_mixer_control *)kcontrol->private_value;
3114 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3115 unsigned int mask = (1<<mc->shift)-1;
3116 int min = mc->min;
3117 int ret;
3118 unsigned int val, valr, oval, ovalr;
3119
3120 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
3121 val &= mask;
3122 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
3123 valr &= mask;
3124
3125 oval = snd_soc_read(codec, mc->reg) & mask;
3126 ovalr = snd_soc_read(codec, mc->rreg) & mask;
3127
3128 ret = 0;
3129 if (oval != val) {
3130 ret = snd_soc_write(codec, mc->reg, val);
3131 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01003132 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003133 }
3134 if (ovalr != valr) {
3135 ret = snd_soc_write(codec, mc->rreg, valr);
3136 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01003137 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003138 }
3139
3140 return 0;
3141}
3142EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
3143
3144/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003145 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3146 * @dai: DAI
3147 * @clk_id: DAI specific clock ID
3148 * @freq: new clock frequency in Hz
3149 * @dir: new clock direction - input/output.
3150 *
3151 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3152 */
3153int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3154 unsigned int freq, int dir)
3155{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003156 if (dai->driver && dai->driver->ops->set_sysclk)
3157 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003158 else if (dai->codec && dai->codec->driver->set_sysclk)
3159 return dai->codec->driver->set_sysclk(dai->codec, clk_id,
3160 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003161 else
3162 return -EINVAL;
3163}
3164EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3165
3166/**
Mark Brownec4ee522011-03-07 20:58:11 +00003167 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3168 * @codec: CODEC
3169 * @clk_id: DAI specific clock ID
3170 * @freq: new clock frequency in Hz
3171 * @dir: new clock direction - input/output.
3172 *
3173 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3174 */
3175int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
3176 unsigned int freq, int dir)
3177{
3178 if (codec->driver->set_sysclk)
3179 return codec->driver->set_sysclk(codec, clk_id, freq, dir);
3180 else
3181 return -EINVAL;
3182}
3183EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3184
3185/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003186 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3187 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003188 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003189 * @div: new clock divisor.
3190 *
3191 * Configures the clock dividers. This is used to derive the best DAI bit and
3192 * frame clocks from the system or master clock. It's best to set the DAI bit
3193 * and frame clocks as low as possible to save system power.
3194 */
3195int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3196 int div_id, int div)
3197{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003198 if (dai->driver && dai->driver->ops->set_clkdiv)
3199 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003200 else
3201 return -EINVAL;
3202}
3203EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3204
3205/**
3206 * snd_soc_dai_set_pll - configure DAI PLL.
3207 * @dai: DAI
3208 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003209 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003210 * @freq_in: PLL input clock frequency in Hz
3211 * @freq_out: requested PLL output clock frequency in Hz
3212 *
3213 * Configures and enables PLL to generate output clock based on input clock.
3214 */
Mark Brown85488032009-09-05 18:52:16 +01003215int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3216 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003217{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003218 if (dai->driver && dai->driver->ops->set_pll)
3219 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003220 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003221 else if (dai->codec && dai->codec->driver->set_pll)
3222 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3223 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003224 else
3225 return -EINVAL;
3226}
3227EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3228
Mark Brownec4ee522011-03-07 20:58:11 +00003229/*
3230 * snd_soc_codec_set_pll - configure codec PLL.
3231 * @codec: CODEC
3232 * @pll_id: DAI specific PLL ID
3233 * @source: DAI specific source for the PLL
3234 * @freq_in: PLL input clock frequency in Hz
3235 * @freq_out: requested PLL output clock frequency in Hz
3236 *
3237 * Configures and enables PLL to generate output clock based on input clock.
3238 */
3239int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3240 unsigned int freq_in, unsigned int freq_out)
3241{
3242 if (codec->driver->set_pll)
3243 return codec->driver->set_pll(codec, pll_id, source,
3244 freq_in, freq_out);
3245 else
3246 return -EINVAL;
3247}
3248EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3249
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003250/**
3251 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3252 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003253 * @fmt: SND_SOC_DAIFMT_ format value.
3254 *
3255 * Configures the DAI hardware format and clocking.
3256 */
3257int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3258{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003259 if (dai->driver && dai->driver->ops->set_fmt)
3260 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003261 else
3262 return -EINVAL;
3263}
3264EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3265
3266/**
3267 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3268 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003269 * @tx_mask: bitmask representing active TX slots.
3270 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003271 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003272 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003273 *
3274 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3275 * specific.
3276 */
3277int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003278 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003279{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003280 if (dai->driver && dai->driver->ops->set_tdm_slot)
3281 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003282 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003283 else
3284 return -EINVAL;
3285}
3286EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3287
3288/**
Barry Song472df3c2009-09-12 01:16:29 +08003289 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3290 * @dai: DAI
3291 * @tx_num: how many TX channels
3292 * @tx_slot: pointer to an array which imply the TX slot number channel
3293 * 0~num-1 uses
3294 * @rx_num: how many RX channels
3295 * @rx_slot: pointer to an array which imply the RX slot number channel
3296 * 0~num-1 uses
3297 *
3298 * configure the relationship between channel number and TDM slot number.
3299 */
3300int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3301 unsigned int tx_num, unsigned int *tx_slot,
3302 unsigned int rx_num, unsigned int *rx_slot)
3303{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003304 if (dai->driver && dai->driver->ops->set_channel_map)
3305 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003306 rx_num, rx_slot);
3307 else
3308 return -EINVAL;
3309}
3310EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3311
3312/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003313 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3314 * @dai: DAI
3315 * @tristate: tristate enable
3316 *
3317 * Tristates the DAI so that others can use it.
3318 */
3319int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3320{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003321 if (dai->driver && dai->driver->ops->set_tristate)
3322 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003323 else
3324 return -EINVAL;
3325}
3326EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3327
3328/**
3329 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3330 * @dai: DAI
3331 * @mute: mute enable
3332 *
3333 * Mutes the DAI DAC.
3334 */
3335int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3336{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003337 if (dai->driver && dai->driver->ops->digital_mute)
3338 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003339 else
3340 return -EINVAL;
3341}
3342EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3343
Mark Brownc5af3a22008-11-28 13:29:45 +00003344/**
3345 * snd_soc_register_card - Register a card with the ASoC core
3346 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003347 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003348 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003349 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303350int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003351{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003352 int i;
3353
Mark Brownc5af3a22008-11-28 13:29:45 +00003354 if (!card->name || !card->dev)
3355 return -EINVAL;
3356
Stephen Warren111c6412011-01-28 14:26:35 -07003357 snd_soc_initialize_card_lists(card);
3358
Vinod Koul150dd2f2011-01-13 22:48:32 +05303359 soc_init_card_debugfs(card);
3360
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003361 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
3362 (card->num_links + card->num_aux_devs),
3363 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003364 if (card->rtd == NULL)
3365 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003366 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003367
3368 for (i = 0; i < card->num_links; i++)
3369 card->rtd[i].dai_link = &card->dai_link[i];
3370
Mark Brownc5af3a22008-11-28 13:29:45 +00003371 INIT_LIST_HEAD(&card->list);
3372 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003373 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003374
3375 mutex_lock(&client_mutex);
3376 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003377 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00003378 mutex_unlock(&client_mutex);
3379
3380 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
3381
3382 return 0;
3383}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303384EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003385
3386/**
3387 * snd_soc_unregister_card - Unregister a card with the ASoC core
3388 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003389 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003390 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003391 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303392int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003393{
Vinod Koulb0e26482011-01-13 22:48:02 +05303394 if (card->instantiated)
3395 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003396 mutex_lock(&client_mutex);
3397 list_del(&card->list);
3398 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003399 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3400
3401 return 0;
3402}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303403EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003404
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003405/*
3406 * Simplify DAI link configuration by removing ".-1" from device names
3407 * and sanitizing names.
3408 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003409static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003410{
3411 char *found, name[NAME_SIZE];
3412 int id1, id2;
3413
3414 if (dev_name(dev) == NULL)
3415 return NULL;
3416
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003417 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003418
3419 /* are we a "%s.%d" name (platform and SPI components) */
3420 found = strstr(name, dev->driver->name);
3421 if (found) {
3422 /* get ID */
3423 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3424
3425 /* discard ID from name if ID == -1 */
3426 if (*id == -1)
3427 found[strlen(dev->driver->name)] = '\0';
3428 }
3429
3430 } else {
3431 /* I2C component devices are named "bus-addr" */
3432 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3433 char tmp[NAME_SIZE];
3434
3435 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003436 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003437
3438 /* sanitize component name for DAI link creation */
3439 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003440 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003441 } else
3442 *id = 0;
3443 }
3444
3445 return kstrdup(name, GFP_KERNEL);
3446}
3447
3448/*
3449 * Simplify DAI link naming for single devices with multiple DAIs by removing
3450 * any ".-1" and using the DAI name (instead of device name).
3451 */
3452static inline char *fmt_multiple_name(struct device *dev,
3453 struct snd_soc_dai_driver *dai_drv)
3454{
3455 if (dai_drv->name == NULL) {
3456 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
3457 dev_name(dev));
3458 return NULL;
3459 }
3460
3461 return kstrdup(dai_drv->name, GFP_KERNEL);
3462}
3463
Mark Brown91151712008-11-30 23:31:24 +00003464/**
3465 * snd_soc_register_dai - Register a DAI with the ASoC core
3466 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003467 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003468 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003469int snd_soc_register_dai(struct device *dev,
3470 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003471{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003472 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003473
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003474 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003475
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003476 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3477 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003478 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003479
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003480 /* create DAI component name */
3481 dai->name = fmt_single_name(dev, &dai->id);
3482 if (dai->name == NULL) {
3483 kfree(dai);
3484 return -ENOMEM;
3485 }
3486
3487 dai->dev = dev;
3488 dai->driver = dai_drv;
3489 if (!dai->driver->ops)
3490 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003491
3492 mutex_lock(&client_mutex);
3493 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003494 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003495 mutex_unlock(&client_mutex);
3496
3497 pr_debug("Registered DAI '%s'\n", dai->name);
3498
3499 return 0;
3500}
3501EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3502
3503/**
3504 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3505 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003506 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003507 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003508void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003509{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003510 struct snd_soc_dai *dai;
3511
3512 list_for_each_entry(dai, &dai_list, list) {
3513 if (dev == dai->dev)
3514 goto found;
3515 }
3516 return;
3517
3518found:
Mark Brown91151712008-11-30 23:31:24 +00003519 mutex_lock(&client_mutex);
3520 list_del(&dai->list);
3521 mutex_unlock(&client_mutex);
3522
3523 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003524 kfree(dai->name);
3525 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003526}
3527EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3528
3529/**
3530 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3531 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003532 * @dai: Array of DAIs to register
3533 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003534 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003535int snd_soc_register_dais(struct device *dev,
3536 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003537{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003538 struct snd_soc_dai *dai;
3539 int i, ret = 0;
3540
Liam Girdwood720ffa42010-08-18 00:30:30 +01003541 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003542
3543 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003544
3545 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003546 if (dai == NULL) {
3547 ret = -ENOMEM;
3548 goto err;
3549 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003550
3551 /* create DAI component name */
3552 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3553 if (dai->name == NULL) {
3554 kfree(dai);
3555 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003556 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003557 }
3558
3559 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003560 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003561 if (dai->driver->id)
3562 dai->id = dai->driver->id;
3563 else
3564 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003565 if (!dai->driver->ops)
3566 dai->driver->ops = &null_dai_ops;
3567
3568 mutex_lock(&client_mutex);
3569 list_add(&dai->list, &dai_list);
3570 mutex_unlock(&client_mutex);
3571
3572 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003573 }
3574
Axel Lin1dcb4f32010-12-06 16:48:03 +08003575 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003576 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003577 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003578 return 0;
3579
3580err:
3581 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003582 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003583
3584 return ret;
3585}
3586EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3587
3588/**
3589 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3590 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003591 * @dai: Array of DAIs to unregister
3592 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003593 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003594void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003595{
3596 int i;
3597
3598 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003599 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003600}
3601EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3602
Mark Brown12a48a8c2008-12-03 19:40:30 +00003603/**
3604 * snd_soc_register_platform - Register a platform with the ASoC core
3605 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003606 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003607 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003608int snd_soc_register_platform(struct device *dev,
3609 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003610{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003611 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003612
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003613 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3614
3615 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3616 if (platform == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003617 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003618
3619 /* create platform component name */
3620 platform->name = fmt_single_name(dev, &platform->id);
3621 if (platform->name == NULL) {
3622 kfree(platform);
3623 return -ENOMEM;
3624 }
3625
3626 platform->dev = dev;
3627 platform->driver = platform_drv;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003628
3629 mutex_lock(&client_mutex);
3630 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003631 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003632 mutex_unlock(&client_mutex);
3633
3634 pr_debug("Registered platform '%s'\n", platform->name);
3635
3636 return 0;
3637}
3638EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3639
3640/**
3641 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3642 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003643 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003644 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003645void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003646{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003647 struct snd_soc_platform *platform;
3648
3649 list_for_each_entry(platform, &platform_list, list) {
3650 if (dev == platform->dev)
3651 goto found;
3652 }
3653 return;
3654
3655found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003656 mutex_lock(&client_mutex);
3657 list_del(&platform->list);
3658 mutex_unlock(&client_mutex);
3659
3660 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003661 kfree(platform->name);
3662 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003663}
3664EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3665
Mark Brown151ab222009-05-09 16:22:58 +01003666static u64 codec_format_map[] = {
3667 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3668 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3669 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3670 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3671 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3672 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3673 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3674 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3675 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3676 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3677 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3678 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3679 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3680 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3681 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3682 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3683};
3684
3685/* Fix up the DAI formats for endianness: codecs don't actually see
3686 * the endianness of the data but we're using the CPU format
3687 * definitions which do need to include endianness so we ensure that
3688 * codec DAIs always have both big and little endian variants set.
3689 */
3690static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3691{
3692 int i;
3693
3694 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3695 if (stream->formats & codec_format_map[i])
3696 stream->formats |= codec_format_map[i];
3697}
3698
Mark Brown0d0cf002008-12-10 14:32:45 +00003699/**
3700 * snd_soc_register_codec - Register a codec with the ASoC core
3701 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003702 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003703 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003704int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003705 const struct snd_soc_codec_driver *codec_drv,
3706 struct snd_soc_dai_driver *dai_drv,
3707 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003708{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003709 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003710 struct snd_soc_codec *codec;
3711 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003712
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003713 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003714
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003715 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3716 if (codec == NULL)
3717 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003718
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003719 /* create CODEC component name */
3720 codec->name = fmt_single_name(dev, &codec->id);
3721 if (codec->name == NULL) {
3722 kfree(codec);
3723 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003724 }
3725
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003726 if (codec_drv->compress_type)
3727 codec->compress_type = codec_drv->compress_type;
3728 else
3729 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3730
Mark Brownc3acec22010-12-02 16:15:29 +00003731 codec->write = codec_drv->write;
3732 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003733 codec->volatile_register = codec_drv->volatile_register;
3734 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003735 codec->writable_register = codec_drv->writable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003736 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3737 codec->dapm.dev = dev;
3738 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003739 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003740 codec->dev = dev;
3741 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003742 codec->num_dai = num_dai;
3743 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003744
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003745 /* allocate CODEC register cache */
3746 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003747 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003748 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003749 /* it is necessary to make a copy of the default register cache
3750 * because in the case of using a compression type that requires
3751 * the default register cache to be marked as __devinitconst the
3752 * kernel might have freed the array by the time we initialize
3753 * the cache.
3754 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003755 if (codec_drv->reg_cache_default) {
3756 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3757 reg_size, GFP_KERNEL);
3758 if (!codec->reg_def_copy) {
3759 ret = -ENOMEM;
3760 goto fail;
3761 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003762 }
3763 }
3764
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003765 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3766 if (!codec->volatile_register)
3767 codec->volatile_register = snd_soc_default_volatile_register;
3768 if (!codec->readable_register)
3769 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003770 if (!codec->writable_register)
3771 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003772 }
3773
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003774 for (i = 0; i < num_dai; i++) {
3775 fixup_codec_formats(&dai_drv[i].playback);
3776 fixup_codec_formats(&dai_drv[i].capture);
3777 }
3778
Mark Brown26b01cc2010-08-18 20:20:55 +01003779 /* register any DAIs */
3780 if (num_dai) {
3781 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3782 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003783 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003784 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003785
Mark Brown0d0cf002008-12-10 14:32:45 +00003786 mutex_lock(&client_mutex);
3787 list_add(&codec->list, &codec_list);
3788 snd_soc_instantiate_cards();
3789 mutex_unlock(&client_mutex);
3790
3791 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003792 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003793
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003794fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003795 kfree(codec->reg_def_copy);
3796 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003797 kfree(codec->name);
3798 kfree(codec);
3799 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003800}
3801EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3802
3803/**
3804 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3805 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003806 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003807 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003808void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003809{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003810 struct snd_soc_codec *codec;
3811 int i;
3812
3813 list_for_each_entry(codec, &codec_list, list) {
3814 if (dev == codec->dev)
3815 goto found;
3816 }
3817 return;
3818
3819found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003820 if (codec->num_dai)
3821 for (i = 0; i < codec->num_dai; i++)
3822 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003823
Mark Brown0d0cf002008-12-10 14:32:45 +00003824 mutex_lock(&client_mutex);
3825 list_del(&codec->list);
3826 mutex_unlock(&client_mutex);
3827
3828 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003829
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003830 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003831 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003832 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003833 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003834}
3835EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3836
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003837static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003838{
Mark Brown384c89e2008-12-03 17:34:03 +00003839#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003840 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3841 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003842 printk(KERN_WARNING
3843 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003844 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003845 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003846
Mark Brown8a9dab12011-01-10 22:25:21 +00003847 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003848 &codec_list_fops))
3849 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3850
Mark Brown8a9dab12011-01-10 22:25:21 +00003851 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003852 &dai_list_fops))
3853 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003854
Mark Brown8a9dab12011-01-10 22:25:21 +00003855 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003856 &platform_list_fops))
3857 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003858#endif
3859
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003860 return platform_driver_register(&soc_driver);
3861}
Mark Brown4abe8e12010-10-12 17:41:03 +01003862module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003863
Mark Brown7d8c16a2008-11-30 22:11:24 +00003864static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003865{
Mark Brown384c89e2008-12-03 17:34:03 +00003866#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003867 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003868#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003869 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003870}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003871module_exit(snd_soc_exit);
3872
3873/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003874MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003875MODULE_DESCRIPTION("ALSA SoC Core");
3876MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003877MODULE_ALIAS("platform:soc-audio");