blob: 4f42fef26c989f259b499bc8686609dc0e4e9bff [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
632 snd_pcm_limit_hw_rates(runtime);
633 if (!runtime->hw.rates) {
634 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100635 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900636 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200637 }
638 if (!runtime->hw.formats) {
639 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100640 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900641 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200642 }
Lu Guanqunb04cfcf2011-04-06 23:25:11 +0800643 if (!runtime->hw.channels_min || !runtime->hw.channels_max ||
644 runtime->hw.channels_min > runtime->hw.channels_max) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200645 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000646 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900647 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200648 }
649
Mark Brown06f409d2009-04-07 18:10:13 +0100650 /* Symmetry only applies if we've already got an active stream. */
651 if (cpu_dai->active || codec_dai->active) {
652 ret = soc_pcm_apply_symmetry(substream);
653 if (ret != 0)
Jassi Brarbb1c0472010-02-25 11:24:53 +0900654 goto config_err;
Mark Brown06f409d2009-04-07 18:10:13 +0100655 }
656
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000657 pr_debug("asoc: %s <-> %s info:\n",
658 codec_dai->name, cpu_dai->name);
Mark Brownf24368c2008-10-21 21:45:08 +0100659 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
660 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
661 runtime->hw.channels_max);
662 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
663 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200664
Jassi Brar14dc5732010-02-26 09:12:32 +0900665 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000666 cpu_dai->playback_active++;
667 codec_dai->playback_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900668 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000669 cpu_dai->capture_active++;
670 codec_dai->capture_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900671 }
672 cpu_dai->active++;
673 codec_dai->active++;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000674 rtd->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200675 mutex_unlock(&pcm_mutex);
676 return 0;
677
Jassi Brarbb1c0472010-02-25 11:24:53 +0900678config_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000679 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
680 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200681
Jassi Brarbb1c0472010-02-25 11:24:53 +0900682machine_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000683 if (codec_dai->driver->ops->shutdown)
684 codec_dai->driver->ops->shutdown(substream, codec_dai);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900685
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100686codec_dai_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000687 if (platform->driver->ops->close)
688 platform->driver->ops->close(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200689
690platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000691 if (cpu_dai->driver->ops->shutdown)
692 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200693out:
694 mutex_unlock(&pcm_mutex);
695 return ret;
696}
697
698/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200699 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200700 * This is to ensure there are no pops or clicks in between any music tracks
701 * due to DAPM power cycling.
702 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100703static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200704{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000705 struct snd_soc_pcm_runtime *rtd =
706 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
707 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200708
709 mutex_lock(&pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200710
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000711 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
712 codec_dai->driver->playback.stream_name,
713 codec_dai->playback_active ? "active" : "inactive",
714 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200715
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000716 /* are we waiting on this codec DAI stream */
717 if (codec_dai->pop_wait == 1) {
718 codec_dai->pop_wait = 0;
719 snd_soc_dapm_stream_event(rtd,
720 codec_dai->driver->playback.stream_name,
721 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200722 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000723
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200724 mutex_unlock(&pcm_mutex);
725}
726
727/*
728 * Called by ALSA when a PCM substream is closed. Private data can be
729 * freed here. The cpu DAI, codec DAI, machine and platform are also
730 * shutdown.
731 */
732static int soc_codec_close(struct snd_pcm_substream *substream)
733{
734 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000735 struct snd_soc_platform *platform = rtd->platform;
736 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
737 struct snd_soc_dai *codec_dai = rtd->codec_dai;
738 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200739
740 mutex_lock(&pcm_mutex);
741
Jassi Brar14dc5732010-02-26 09:12:32 +0900742 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000743 cpu_dai->playback_active--;
744 codec_dai->playback_active--;
Jassi Brar14dc5732010-02-26 09:12:32 +0900745 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000746 cpu_dai->capture_active--;
747 codec_dai->capture_active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200748 }
Jassi Brar14dc5732010-02-26 09:12:32 +0900749
750 cpu_dai->active--;
751 codec_dai->active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200752 codec->active--;
753
Mark Brown6010b2d2008-09-06 18:33:24 +0100754 /* Muting the DAC suppresses artifacts caused during digital
755 * shutdown, for example from stopping clocks.
756 */
757 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
758 snd_soc_dai_digital_mute(codec_dai, 1);
759
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000760 if (cpu_dai->driver->ops->shutdown)
761 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200762
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000763 if (codec_dai->driver->ops->shutdown)
764 codec_dai->driver->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200765
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000766 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
767 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200768
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000769 if (platform->driver->ops->close)
770 platform->driver->ops->close(substream);
771 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200772
773 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
774 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100775 codec_dai->pop_wait = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000776 schedule_delayed_work(&rtd->delayed_work,
777 msecs_to_jiffies(rtd->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200778 } else {
779 /* capture streams can be powered down now */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000780 snd_soc_dapm_stream_event(rtd,
781 codec_dai->driver->capture.stream_name,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100782 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200783 }
784
785 mutex_unlock(&pcm_mutex);
786 return 0;
787}
788
789/*
790 * Called by ALSA when the PCM substream is prepared, can set format, sample
791 * rate, etc. This function is non atomic and can be called multiple times,
792 * it can refer to the runtime info.
793 */
794static int soc_pcm_prepare(struct snd_pcm_substream *substream)
795{
796 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000797 struct snd_soc_platform *platform = rtd->platform;
798 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
799 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200800 int ret = 0;
801
802 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100803
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000804 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
805 ret = rtd->dai_link->ops->prepare(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100806 if (ret < 0) {
807 printk(KERN_ERR "asoc: machine prepare error\n");
808 goto out;
809 }
810 }
811
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000812 if (platform->driver->ops->prepare) {
813 ret = platform->driver->ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200814 if (ret < 0) {
815 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200816 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200817 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200818 }
819
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000820 if (codec_dai->driver->ops->prepare) {
821 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200822 if (ret < 0) {
823 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200824 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200825 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200826 }
827
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000828 if (cpu_dai->driver->ops->prepare) {
829 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100830 if (ret < 0) {
831 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
832 goto out;
833 }
834 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200835
Mark Brownd45f6212008-10-14 13:58:36 +0100836 /* cancel any delayed stream shutdown that is pending */
837 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
838 codec_dai->pop_wait) {
839 codec_dai->pop_wait = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000840 cancel_delayed_work(&rtd->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100841 }
842
Mark Brown452c5ea2009-05-17 21:41:23 +0100843 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000844 snd_soc_dapm_stream_event(rtd,
845 codec_dai->driver->playback.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100846 SND_SOC_DAPM_STREAM_START);
847 else
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000848 snd_soc_dapm_stream_event(rtd,
849 codec_dai->driver->capture.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100850 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100851
Mark Brown452c5ea2009-05-17 21:41:23 +0100852 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200853
854out:
855 mutex_unlock(&pcm_mutex);
856 return ret;
857}
858
859/*
860 * Called by ALSA when the hardware params are set by application. This
861 * function can also be called multiple times and can allocate buffers
862 * (using snd_pcm_lib_* ). It's non-atomic.
863 */
864static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
865 struct snd_pcm_hw_params *params)
866{
867 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000868 struct snd_soc_platform *platform = rtd->platform;
869 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
870 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200871 int ret = 0;
872
873 mutex_lock(&pcm_mutex);
874
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000875 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
876 ret = rtd->dai_link->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200877 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100878 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200879 goto out;
880 }
881 }
882
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000883 if (codec_dai->driver->ops->hw_params) {
884 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100885 if (ret < 0) {
886 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
887 codec_dai->name);
888 goto codec_err;
889 }
890 }
891
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000892 if (cpu_dai->driver->ops->hw_params) {
893 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200894 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200895 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100896 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200897 goto interface_err;
898 }
899 }
900
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000901 if (platform->driver->ops->hw_params) {
902 ret = platform->driver->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200903 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200904 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200905 platform->name);
906 goto platform_err;
907 }
908 }
909
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000910 rtd->rate = params_rate(params);
Mark Brown06f409d2009-04-07 18:10:13 +0100911
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200912out:
913 mutex_unlock(&pcm_mutex);
914 return ret;
915
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200916platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000917 if (cpu_dai->driver->ops->hw_free)
918 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200919
920interface_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000921 if (codec_dai->driver->ops->hw_free)
922 codec_dai->driver->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100923
924codec_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000925 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
926 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200927
928 mutex_unlock(&pcm_mutex);
929 return ret;
930}
931
932/*
Mark Browna00f90f2010-12-02 16:24:24 +0000933 * Frees resources allocated by hw_params, can be called multiple times
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200934 */
935static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
936{
937 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000938 struct snd_soc_platform *platform = rtd->platform;
939 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
940 struct snd_soc_dai *codec_dai = rtd->codec_dai;
941 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200942
943 mutex_lock(&pcm_mutex);
944
945 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100946 if (!codec->active)
947 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200948
949 /* free any machine hw params */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000950 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
951 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200952
953 /* free any DMA resources */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000954 if (platform->driver->ops->hw_free)
955 platform->driver->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200956
Mark Browna00f90f2010-12-02 16:24:24 +0000957 /* now free hw params for the DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000958 if (codec_dai->driver->ops->hw_free)
959 codec_dai->driver->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200960
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000961 if (cpu_dai->driver->ops->hw_free)
962 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200963
964 mutex_unlock(&pcm_mutex);
965 return 0;
966}
967
968static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
969{
970 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000971 struct snd_soc_platform *platform = rtd->platform;
972 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
973 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200974 int ret;
975
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000976 if (codec_dai->driver->ops->trigger) {
977 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200978 if (ret < 0)
979 return ret;
980 }
981
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000982 if (platform->driver->ops->trigger) {
983 ret = platform->driver->ops->trigger(substream, cmd);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200984 if (ret < 0)
985 return ret;
986 }
987
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000988 if (cpu_dai->driver->ops->trigger) {
989 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200990 if (ret < 0)
991 return ret;
992 }
993 return 0;
994}
995
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200996/*
997 * soc level wrapper for pointer callback
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200998 * If cpu_dai, codec_dai, platform driver has the delay callback, than
999 * the runtime->delay will be updated accordingly.
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001000 */
1001static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
1002{
1003 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001004 struct snd_soc_platform *platform = rtd->platform;
1005 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1006 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001007 struct snd_pcm_runtime *runtime = substream->runtime;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001008 snd_pcm_uframes_t offset = 0;
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001009 snd_pcm_sframes_t delay = 0;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001010
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001011 if (platform->driver->ops->pointer)
1012 offset = platform->driver->ops->pointer(substream);
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001013
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001014 if (cpu_dai->driver->ops->delay)
1015 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001016
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001017 if (codec_dai->driver->ops->delay)
1018 delay += codec_dai->driver->ops->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001019
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001020 if (platform->driver->delay)
1021 delay += platform->driver->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +02001022
1023 runtime->delay = delay;
1024
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001025 return offset;
1026}
1027
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001028/* ASoC PCM operations */
1029static struct snd_pcm_ops soc_pcm_ops = {
1030 .open = soc_pcm_open,
1031 .close = soc_codec_close,
1032 .hw_params = soc_pcm_hw_params,
1033 .hw_free = soc_pcm_hw_free,
1034 .prepare = soc_pcm_prepare,
1035 .trigger = soc_pcm_trigger,
Peter Ujfalusi377b6f62010-03-03 15:08:06 +02001036 .pointer = soc_pcm_pointer,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001037};
1038
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001039#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001040/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001041int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001042{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001043 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001044 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001045 int i;
1046
Daniel Macke3509ff2009-06-03 17:44:49 +02001047 /* If the initialization of this soc device failed, there is no codec
1048 * associated with it. Just bail out in this case.
1049 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001050 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +02001051 return 0;
1052
Andy Green6ed25972008-06-13 16:24:05 +01001053 /* Due to the resume being scheduled into a workqueue we could
1054 * suspend before that's finished - wait for it to complete.
1055 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001056 snd_power_lock(card->snd_card);
1057 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
1058 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +01001059
1060 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001061 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +01001062
Mark Browna00f90f2010-12-02 16:24:24 +00001063 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001064 for (i = 0; i < card->num_rtd; i++) {
1065 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1066 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001067
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001068 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001069 continue;
1070
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001071 if (drv->ops->digital_mute && dai->playback_active)
1072 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001073 }
1074
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001075 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001076 for (i = 0; i < card->num_rtd; i++) {
1077 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001078 continue;
1079
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001080 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +01001081 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001082
Mark Brown87506542008-11-18 20:50:34 +00001083 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001084 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001085
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001086 for (i = 0; i < card->num_rtd; i++) {
1087 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1088 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001089
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001090 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001091 continue;
1092
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001093 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
1094 cpu_dai->driver->suspend(cpu_dai);
1095 if (platform->driver->suspend && !platform->suspended) {
1096 platform->driver->suspend(cpu_dai);
1097 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +01001098 }
1099 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001100
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001101 /* close any waiting streams and save state */
1102 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +01001103 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001104 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001105 }
Mark Brown3efab7d2010-05-09 13:25:43 +01001106
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001107 for (i = 0; i < card->num_rtd; i++) {
1108 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1109
1110 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001111 continue;
1112
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001113 if (driver->playback.stream_name != NULL)
1114 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1115 SND_SOC_DAPM_STREAM_SUSPEND);
1116
1117 if (driver->capture.stream_name != NULL)
1118 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1119 SND_SOC_DAPM_STREAM_SUSPEND);
1120 }
1121
1122 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001123 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001124 /* If there are paths active then the CODEC will be held with
1125 * bias _ON and should not be suspended. */
1126 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001127 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001128 case SND_SOC_BIAS_STANDBY:
1129 case SND_SOC_BIAS_OFF:
1130 codec->driver->suspend(codec, PMSG_SUSPEND);
1131 codec->suspended = 1;
1132 break;
1133 default:
1134 dev_dbg(codec->dev, "CODEC is on over suspend\n");
1135 break;
1136 }
1137 }
1138 }
1139
1140 for (i = 0; i < card->num_rtd; i++) {
1141 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1142
1143 if (card->rtd[i].dai_link->ignore_suspend)
1144 continue;
1145
1146 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
1147 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001148 }
1149
Mark Brown87506542008-11-18 20:50:34 +00001150 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001151 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001152
1153 return 0;
1154}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001155EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001156
Andy Green6ed25972008-06-13 16:24:05 +01001157/* deferred resume work, so resume can complete before we finished
1158 * setting our codec back up, which can be very slow on I2C
1159 */
1160static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001161{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001162 struct snd_soc_card *card =
1163 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001164 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001165 int i;
1166
Andy Green6ed25972008-06-13 16:24:05 +01001167 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1168 * so userspace apps are blocked from touching us
1169 */
1170
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001171 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +01001172
Mark Brown99497882010-05-07 20:24:05 +01001173 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +01001175
Mark Brown87506542008-11-18 20:50:34 +00001176 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001177 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001178
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001179 /* resume AC97 DAIs */
1180 for (i = 0; i < card->num_rtd; i++) {
1181 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +01001182
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001183 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001184 continue;
1185
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001186 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
1187 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001188 }
1189
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001190 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001191 /* If the CODEC was idle over suspend then it will have been
1192 * left with bias OFF or STANDBY and suspended so we must now
1193 * resume. Otherwise the suspend was suppressed.
1194 */
1195 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001196 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001197 case SND_SOC_BIAS_STANDBY:
1198 case SND_SOC_BIAS_OFF:
1199 codec->driver->resume(codec);
1200 codec->suspended = 0;
1201 break;
1202 default:
1203 dev_dbg(codec->dev, "CODEC was on over suspend\n");
1204 break;
1205 }
Mark Brown1547aba2010-05-07 21:11:40 +01001206 }
1207 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001208
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001209 for (i = 0; i < card->num_rtd; i++) {
1210 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001211
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001212 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001213 continue;
1214
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001215 if (driver->playback.stream_name != NULL)
1216 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001217 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001218
1219 if (driver->capture.stream_name != NULL)
1220 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001221 SND_SOC_DAPM_STREAM_RESUME);
1222 }
1223
Mark Brown3ff3f642008-05-19 12:32:25 +02001224 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001225 for (i = 0; i < card->num_rtd; i++) {
1226 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1227 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001228
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001229 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001230 continue;
1231
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001232 if (drv->ops->digital_mute && dai->playback_active)
1233 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001234 }
1235
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001236 for (i = 0; i < card->num_rtd; i++) {
1237 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1238 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001239
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001240 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001241 continue;
1242
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001243 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
1244 cpu_dai->driver->resume(cpu_dai);
1245 if (platform->driver->resume && platform->suspended) {
1246 platform->driver->resume(cpu_dai);
1247 platform->suspended = 0;
1248 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001249 }
1250
Mark Brown87506542008-11-18 20:50:34 +00001251 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001252 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001253
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001254 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +01001255
1256 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001257 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +01001258}
1259
1260/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001261int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +01001262{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001263 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001264 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +02001265
Mark Brown64ab9ba2009-03-31 11:27:03 +01001266 /* AC97 devices might have other drivers hanging off them so
1267 * need to resume immediately. Other drivers don't have that
1268 * problem and may take a substantial amount of time to resume
1269 * due to I/O costs and anti-pop so handle them out of line.
1270 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001271 for (i = 0; i < card->num_rtd; i++) {
1272 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1273 if (cpu_dai->driver->ac97_control) {
1274 dev_dbg(dev, "Resuming AC97 immediately\n");
1275 soc_resume_deferred(&card->deferred_resume_work);
1276 } else {
1277 dev_dbg(dev, "Scheduling resume work\n");
1278 if (!schedule_work(&card->deferred_resume_work))
1279 dev_err(dev, "resume work item may be lost\n");
1280 }
Mark Brown64ab9ba2009-03-31 11:27:03 +01001281 }
Andy Green6ed25972008-06-13 16:24:05 +01001282
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001283 return 0;
1284}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001285EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001286#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001287#define snd_soc_suspend NULL
1288#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001289#endif
1290
Barry Song02a06d32009-10-16 18:13:38 +08001291static struct snd_soc_dai_ops null_dai_ops = {
1292};
1293
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001294static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001295{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001296 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1297 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +00001298 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001299 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001300 struct snd_soc_dai *codec_dai, *cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001301
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001302 if (rtd->complete)
1303 return 1;
1304 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +00001305
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001306 /* do we already have the CPU DAI for this link ? */
1307 if (rtd->cpu_dai) {
1308 goto find_codec;
1309 }
1310 /* no, then find CPU DAI from registered DAIs*/
1311 list_for_each_entry(cpu_dai, &dai_list, list) {
1312 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
1313
1314 if (!try_module_get(cpu_dai->dev->driver->owner))
1315 return -ENODEV;
1316
1317 rtd->cpu_dai = cpu_dai;
1318 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001319 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001320 }
1321 dev_dbg(card->dev, "CPU DAI %s not registered\n",
1322 dai_link->cpu_dai_name);
1323
1324find_codec:
1325 /* do we already have the CODEC for this link ? */
1326 if (rtd->codec) {
1327 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +00001328 }
1329
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001330 /* no, then find CODEC from registered CODECs*/
1331 list_for_each_entry(codec, &codec_list, list) {
1332 if (!strcmp(codec->name, dai_link->codec_name)) {
1333 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +00001334
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001335 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
1336 list_for_each_entry(codec_dai, &dai_list, list) {
1337 if (codec->dev == codec_dai->dev &&
1338 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
1339 rtd->codec_dai = codec_dai;
1340 goto find_platform;
Mark Brown6b05eda2008-12-08 19:26:48 +00001341 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001342 }
1343 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
1344 dai_link->codec_dai_name);
1345
1346 goto find_platform;
1347 }
1348 }
1349 dev_dbg(card->dev, "CODEC %s not registered\n",
1350 dai_link->codec_name);
1351
1352find_platform:
1353 /* do we already have the CODEC DAI for this link ? */
1354 if (rtd->platform) {
1355 goto out;
1356 }
1357 /* no, then find CPU DAI from registered DAIs*/
1358 list_for_each_entry(platform, &platform_list, list) {
1359 if (!strcmp(platform->name, dai_link->platform_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001360 rtd->platform = platform;
1361 goto out;
1362 }
1363 }
1364
1365 dev_dbg(card->dev, "platform %s not registered\n",
1366 dai_link->platform_name);
1367 return 0;
1368
1369out:
1370 /* mark rtd as complete if we found all 4 of our client devices */
1371 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
1372 rtd->complete = 1;
1373 card->num_rtd++;
1374 }
1375 return 1;
1376}
1377
Jarkko Nikula589c3562010-12-06 16:27:07 +02001378static void soc_remove_codec(struct snd_soc_codec *codec)
1379{
1380 int err;
1381
1382 if (codec->driver->remove) {
1383 err = codec->driver->remove(codec);
1384 if (err < 0)
1385 dev_err(codec->dev,
1386 "asoc: failed to remove %s: %d\n",
1387 codec->name, err);
1388 }
1389
1390 /* Make sure all DAPM widgets are freed */
1391 snd_soc_dapm_free(&codec->dapm);
1392
1393 soc_cleanup_codec_debugfs(codec);
1394 codec->probed = 0;
1395 list_del(&codec->card_list);
1396 module_put(codec->dev->driver->owner);
1397}
1398
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001399static void soc_remove_dai_link(struct snd_soc_card *card, int num)
1400{
1401 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1402 struct snd_soc_codec *codec = rtd->codec;
1403 struct snd_soc_platform *platform = rtd->platform;
1404 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1405 int err;
1406
1407 /* unregister the rtd device */
1408 if (rtd->dev_registered) {
1409 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001410 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001411 device_unregister(&rtd->dev);
1412 rtd->dev_registered = 0;
1413 }
1414
1415 /* remove the CODEC DAI */
1416 if (codec_dai && codec_dai->probed) {
1417 if (codec_dai->driver->remove) {
1418 err = codec_dai->driver->remove(codec_dai);
1419 if (err < 0)
1420 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
1421 }
1422 codec_dai->probed = 0;
1423 list_del(&codec_dai->card_list);
1424 }
1425
1426 /* remove the platform */
1427 if (platform && platform->probed) {
1428 if (platform->driver->remove) {
1429 err = platform->driver->remove(platform);
1430 if (err < 0)
1431 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
1432 }
1433 platform->probed = 0;
1434 list_del(&platform->card_list);
1435 module_put(platform->dev->driver->owner);
1436 }
1437
1438 /* remove the CODEC */
Jarkko Nikula589c3562010-12-06 16:27:07 +02001439 if (codec && codec->probed)
1440 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001441
1442 /* remove the cpu_dai */
1443 if (cpu_dai && cpu_dai->probed) {
1444 if (cpu_dai->driver->remove) {
1445 err = cpu_dai->driver->remove(cpu_dai);
1446 if (err < 0)
1447 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
1448 }
1449 cpu_dai->probed = 0;
1450 list_del(&cpu_dai->card_list);
1451 module_put(cpu_dai->dev->driver->owner);
1452 }
1453}
1454
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001455static void soc_set_name_prefix(struct snd_soc_card *card,
1456 struct snd_soc_codec *codec)
1457{
1458 int i;
1459
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001460 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001461 return;
1462
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001463 for (i = 0; i < card->num_configs; i++) {
1464 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001465 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1466 codec->name_prefix = map->name_prefix;
1467 break;
1468 }
1469 }
1470}
1471
Jarkko Nikula589c3562010-12-06 16:27:07 +02001472static int soc_probe_codec(struct snd_soc_card *card,
1473 struct snd_soc_codec *codec)
1474{
1475 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +00001476 const struct snd_soc_codec_driver *driver = codec->driver;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001477
1478 codec->card = card;
1479 codec->dapm.card = card;
1480 soc_set_name_prefix(card, codec);
1481
Jarkko Nikula70d29332011-01-27 16:24:22 +02001482 if (!try_module_get(codec->dev->driver->owner))
1483 return -ENODEV;
1484
Mark Brown89b95ac02011-03-07 16:38:44 +00001485 if (driver->probe) {
1486 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001487 if (ret < 0) {
1488 dev_err(codec->dev,
1489 "asoc: failed to probe CODEC %s: %d\n",
1490 codec->name, ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001491 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001492 }
1493 }
1494
Mark Brown89b95ac02011-03-07 16:38:44 +00001495 if (driver->dapm_widgets)
1496 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1497 driver->num_dapm_widgets);
1498 if (driver->dapm_routes)
1499 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1500 driver->num_dapm_routes);
1501
Jarkko Nikula589c3562010-12-06 16:27:07 +02001502 soc_init_codec_debugfs(codec);
1503
1504 /* mark codec as probed and add to card codec list */
1505 codec->probed = 1;
1506 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001507 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001508
Jarkko Nikula70d29332011-01-27 16:24:22 +02001509 return 0;
1510
1511err_probe:
1512 module_put(codec->dev->driver->owner);
1513
Jarkko Nikula589c3562010-12-06 16:27:07 +02001514 return ret;
1515}
1516
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001517static void rtd_release(struct device *dev) {}
1518
Jarkko Nikula589c3562010-12-06 16:27:07 +02001519static int soc_post_component_init(struct snd_soc_card *card,
1520 struct snd_soc_codec *codec,
1521 int num, int dailess)
1522{
1523 struct snd_soc_dai_link *dai_link = NULL;
1524 struct snd_soc_aux_dev *aux_dev = NULL;
1525 struct snd_soc_pcm_runtime *rtd;
1526 const char *temp, *name;
1527 int ret = 0;
1528
1529 if (!dailess) {
1530 dai_link = &card->dai_link[num];
1531 rtd = &card->rtd[num];
1532 name = dai_link->name;
1533 } else {
1534 aux_dev = &card->aux_dev[num];
1535 rtd = &card->rtd_aux[num];
1536 name = aux_dev->name;
1537 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001538 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001539
1540 /* machine controls, routes and widgets are not prefixed */
1541 temp = codec->name_prefix;
1542 codec->name_prefix = NULL;
1543
1544 /* do machine specific initialization */
1545 if (!dailess && dai_link->init)
1546 ret = dai_link->init(rtd);
1547 else if (dailess && aux_dev->init)
1548 ret = aux_dev->init(&codec->dapm);
1549 if (ret < 0) {
1550 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1551 return ret;
1552 }
1553 codec->name_prefix = temp;
1554
1555 /* Make sure all DAPM widgets are instantiated */
1556 snd_soc_dapm_new_widgets(&codec->dapm);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001557
1558 /* register the rtd device */
1559 rtd->codec = codec;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001560 rtd->dev.parent = card->dev;
1561 rtd->dev.release = rtd_release;
1562 rtd->dev.init_name = name;
1563 ret = device_register(&rtd->dev);
1564 if (ret < 0) {
1565 dev_err(card->dev,
1566 "asoc: failed to register runtime device: %d\n", ret);
1567 return ret;
1568 }
1569 rtd->dev_registered = 1;
1570
1571 /* add DAPM sysfs entries for this codec */
1572 ret = snd_soc_dapm_sys_add(&rtd->dev);
1573 if (ret < 0)
1574 dev_err(codec->dev,
1575 "asoc: failed to add codec dapm sysfs entries: %d\n",
1576 ret);
1577
1578 /* add codec sysfs entries */
1579 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1580 if (ret < 0)
1581 dev_err(codec->dev,
1582 "asoc: failed to add codec sysfs files: %d\n", ret);
1583
1584 return 0;
1585}
1586
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001587static int soc_probe_dai_link(struct snd_soc_card *card, int num)
1588{
1589 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1590 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1591 struct snd_soc_codec *codec = rtd->codec;
1592 struct snd_soc_platform *platform = rtd->platform;
1593 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1594 int ret;
1595
1596 dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num);
1597
1598 /* config components */
1599 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001600 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001601 codec_dai->card = card;
1602 cpu_dai->card = card;
1603
1604 /* set default power off timeout */
1605 rtd->pmdown_time = pmdown_time;
1606
1607 /* probe the cpu_dai */
1608 if (!cpu_dai->probed) {
1609 if (cpu_dai->driver->probe) {
1610 ret = cpu_dai->driver->probe(cpu_dai);
1611 if (ret < 0) {
1612 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1613 cpu_dai->name);
1614 return ret;
1615 }
1616 }
1617 cpu_dai->probed = 1;
1618 /* mark cpu_dai as probed and add to card cpu_dai list */
1619 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1620 }
1621
1622 /* probe the CODEC */
1623 if (!codec->probed) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001624 ret = soc_probe_codec(card, codec);
1625 if (ret < 0)
1626 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001627 }
1628
1629 /* probe the platform */
1630 if (!platform->probed) {
Jarkko Nikula70d29332011-01-27 16:24:22 +02001631 if (!try_module_get(platform->dev->driver->owner))
1632 return -ENODEV;
1633
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001634 if (platform->driver->probe) {
1635 ret = platform->driver->probe(platform);
1636 if (ret < 0) {
1637 printk(KERN_ERR "asoc: failed to probe platform %s\n",
1638 platform->name);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001639 module_put(platform->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001640 return ret;
1641 }
1642 }
1643 /* mark platform as probed and add to card platform list */
1644 platform->probed = 1;
1645 list_add(&platform->card_list, &card->platform_dev_list);
1646 }
1647
1648 /* probe the CODEC DAI */
1649 if (!codec_dai->probed) {
1650 if (codec_dai->driver->probe) {
1651 ret = codec_dai->driver->probe(codec_dai);
1652 if (ret < 0) {
1653 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1654 codec_dai->name);
1655 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001656 }
1657 }
1658
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001659 /* mark cpu_dai as probed and add to card cpu_dai list */
1660 codec_dai->probed = 1;
1661 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001662 }
1663
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001664 /* DAPM dai link stream work */
1665 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
1666
Jarkko Nikula589c3562010-12-06 16:27:07 +02001667 ret = soc_post_component_init(card, codec, num, 0);
1668 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001669 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001670
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001671 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1672 if (ret < 0)
1673 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1674
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001675 /* create the pcm */
1676 ret = soc_new_pcm(rtd, num);
1677 if (ret < 0) {
1678 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1679 return ret;
1680 }
1681
1682 /* add platform data for AC97 devices */
1683 if (rtd->codec_dai->driver->ac97_control)
1684 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1685
1686 return 0;
1687}
1688
1689#ifdef CONFIG_SND_SOC_AC97_BUS
1690static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1691{
1692 int ret;
1693
1694 /* Only instantiate AC97 if not already done by the adaptor
1695 * for the generic AC97 subsystem.
1696 */
1697 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001698 /*
1699 * It is possible that the AC97 device is already registered to
1700 * the device subsystem. This happens when the device is created
1701 * via snd_ac97_mixer(). Currently only SoC codec that does so
1702 * is the generic AC97 glue but others migh emerge.
1703 *
1704 * In those cases we don't try to register the device again.
1705 */
1706 if (!rtd->codec->ac97_created)
1707 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001708
1709 ret = soc_ac97_dev_register(rtd->codec);
1710 if (ret < 0) {
1711 printk(KERN_ERR "asoc: AC97 device register failed\n");
1712 return ret;
1713 }
1714
1715 rtd->codec->ac97_registered = 1;
1716 }
1717 return 0;
1718}
1719
1720static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1721{
1722 if (codec->ac97_registered) {
1723 soc_ac97_dev_unregister(codec);
1724 codec->ac97_registered = 0;
1725 }
1726}
1727#endif
1728
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001729static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1730{
1731 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001732 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001733 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001734
1735 /* find CODEC from registered CODECs*/
1736 list_for_each_entry(codec, &codec_list, list) {
1737 if (!strcmp(codec->name, aux_dev->codec_name)) {
1738 if (codec->probed) {
1739 dev_err(codec->dev,
1740 "asoc: codec already probed");
1741 ret = -EBUSY;
1742 goto out;
1743 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001744 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001745 }
1746 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001747 /* codec not found */
1748 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1749 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001750
Jarkko Nikula676ad982010-12-03 09:18:22 +02001751found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001752 ret = soc_probe_codec(card, codec);
1753 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001754 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001755
Jarkko Nikula589c3562010-12-06 16:27:07 +02001756 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001757
1758out:
1759 return ret;
1760}
1761
1762static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1763{
1764 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1765 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001766
1767 /* unregister the rtd device */
1768 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001769 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001770 device_unregister(&rtd->dev);
1771 rtd->dev_registered = 0;
1772 }
1773
Jarkko Nikula589c3562010-12-06 16:27:07 +02001774 if (codec && codec->probed)
1775 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001776}
1777
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001778static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1779 enum snd_soc_compress_type compress_type)
1780{
1781 int ret;
1782
1783 if (codec->cache_init)
1784 return 0;
1785
1786 /* override the compress_type if necessary */
1787 if (compress_type && codec->compress_type != compress_type)
1788 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001789 ret = snd_soc_cache_init(codec);
1790 if (ret < 0) {
1791 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1792 ret);
1793 return ret;
1794 }
1795 codec->cache_init = 1;
1796 return 0;
1797}
1798
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001799static void snd_soc_instantiate_card(struct snd_soc_card *card)
1800{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001801 struct snd_soc_codec *codec;
1802 struct snd_soc_codec_conf *codec_conf;
1803 enum snd_soc_compress_type compress_type;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001804 int ret, i;
1805
1806 mutex_lock(&card->mutex);
1807
1808 if (card->instantiated) {
1809 mutex_unlock(&card->mutex);
1810 return;
1811 }
1812
1813 /* bind DAIs */
1814 for (i = 0; i < card->num_links; i++)
1815 soc_bind_dai_link(card, i);
1816
1817 /* bind completed ? */
1818 if (card->num_rtd != card->num_links) {
1819 mutex_unlock(&card->mutex);
1820 return;
1821 }
1822
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001823 /* initialize the register cache for each available codec */
1824 list_for_each_entry(codec, &codec_list, list) {
1825 if (codec->cache_init)
1826 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001827 /* by default we don't override the compress_type */
1828 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001829 /* check to see if we need to override the compress_type */
1830 for (i = 0; i < card->num_configs; ++i) {
1831 codec_conf = &card->codec_conf[i];
1832 if (!strcmp(codec->name, codec_conf->dev_name)) {
1833 compress_type = codec_conf->compress_type;
1834 if (compress_type && compress_type
1835 != codec->compress_type)
1836 break;
1837 }
1838 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001839 ret = snd_soc_init_codec_cache(codec, compress_type);
1840 if (ret < 0) {
1841 mutex_unlock(&card->mutex);
1842 return;
1843 }
1844 }
1845
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001846 /* card bind complete so register a sound card */
1847 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1848 card->owner, 0, &card->snd_card);
1849 if (ret < 0) {
1850 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1851 card->name);
1852 mutex_unlock(&card->mutex);
1853 return;
1854 }
1855 card->snd_card->dev = card->dev;
1856
Mark Browne37a4972011-03-02 18:21:57 +00001857 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1858 card->dapm.dev = card->dev;
1859 card->dapm.card = card;
1860 list_add(&card->dapm.list, &card->dapm_list);
1861
Mark Brown88ee1c62011-02-02 10:43:26 +00001862#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001863 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001864 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001865#endif
Andy Green6ed25972008-06-13 16:24:05 +01001866
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001867 /* initialise the sound card only once */
1868 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001869 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001870 if (ret < 0)
1871 goto card_probe_error;
1872 }
1873
Mark Brownfe3e78e2009-11-03 22:13:13 +00001874 for (i = 0; i < card->num_links; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001875 ret = soc_probe_dai_link(card, i);
1876 if (ret < 0) {
Mark Brown321de0d2010-09-21 15:09:37 +01001877 pr_err("asoc: failed to instantiate card %s: %d\n",
1878 card->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001879 goto probe_dai_err;
1880 }
1881 }
1882
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001883 for (i = 0; i < card->num_aux_devs; i++) {
1884 ret = soc_probe_aux_dev(card, i);
1885 if (ret < 0) {
1886 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1887 card->name, ret);
1888 goto probe_aux_dev_err;
1889 }
1890 }
1891
Mark Brownb8ad29d2011-03-02 18:35:51 +00001892 if (card->dapm_widgets)
1893 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1894 card->num_dapm_widgets);
1895 if (card->dapm_routes)
1896 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1897 card->num_dapm_routes);
1898
Mark Browna2721fd2011-03-07 11:09:25 +00001899#ifdef CONFIG_DEBUG_FS
Mark Browne37a4972011-03-02 18:21:57 +00001900 card->dapm.debugfs_dapm = debugfs_create_dir("dapm",
1901 card->debugfs_card_root);
1902 if (!card->dapm.debugfs_dapm)
1903 printk(KERN_WARNING
1904 "Failed to create card DAPM debugfs directory\n");
1905
1906 snd_soc_dapm_debugfs_init(&card->dapm);
Mark Browna2721fd2011-03-07 11:09:25 +00001907#endif
Mark Browne37a4972011-03-02 18:21:57 +00001908
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001909 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1910 "%s", card->name);
1911 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1912 "%s", card->name);
1913
Mark Brown28e9ad92011-03-02 18:36:34 +00001914 if (card->late_probe) {
1915 ret = card->late_probe(card);
1916 if (ret < 0) {
1917 dev_err(card->dev, "%s late_probe() failed: %d\n",
1918 card->name, ret);
1919 goto probe_aux_dev_err;
1920 }
1921 }
1922
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001923 ret = snd_card_register(card->snd_card);
1924 if (ret < 0) {
1925 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001926 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001927 }
1928
1929#ifdef CONFIG_SND_SOC_AC97_BUS
1930 /* register any AC97 codecs */
1931 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001932 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1933 if (ret < 0) {
1934 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1935 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001936 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001937 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001938 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001939 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001940#endif
1941
Mark Brown435c5e22008-12-04 15:32:53 +00001942 card->instantiated = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001943 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001944 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001945
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001946probe_aux_dev_err:
1947 for (i = 0; i < card->num_aux_devs; i++)
1948 soc_remove_aux_dev(card, i);
1949
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001950probe_dai_err:
1951 for (i = 0; i < card->num_links; i++)
1952 soc_remove_dai_link(card, i);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001953
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001954card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001955 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001956 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001957
1958 snd_card_free(card->snd_card);
1959
1960 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001961}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001962
Mark Brown435c5e22008-12-04 15:32:53 +00001963/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001964 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001965 * client_mutex.
1966 */
1967static void snd_soc_instantiate_cards(void)
1968{
1969 struct snd_soc_card *card;
1970 list_for_each_entry(card, &card_list, list)
1971 snd_soc_instantiate_card(card);
1972}
1973
1974/* probes a new socdev */
1975static int soc_probe(struct platform_device *pdev)
1976{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001977 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001978 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001979
Vinod Koul70a7ca32011-01-14 19:22:48 +05301980 /*
1981 * no card, so machine driver should be registering card
1982 * we should not be here in that case so ret error
1983 */
1984 if (!card)
1985 return -EINVAL;
1986
Mark Brown435c5e22008-12-04 15:32:53 +00001987 /* Bodge while we unpick instantiation */
1988 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001989
Mark Brown435c5e22008-12-04 15:32:53 +00001990 ret = snd_soc_register_card(card);
1991 if (ret != 0) {
1992 dev_err(&pdev->dev, "Failed to register card\n");
1993 return ret;
1994 }
1995
1996 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001997}
1998
Vinod Koulb0e26482011-01-13 22:48:02 +05301999static int soc_cleanup_card_resources(struct snd_soc_card *card)
2000{
Vinod Koulb0e26482011-01-13 22:48:02 +05302001 int i;
2002
2003 /* make sure any delayed work runs */
2004 for (i = 0; i < card->num_rtd; i++) {
2005 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2006 flush_delayed_work_sync(&rtd->delayed_work);
2007 }
2008
2009 /* remove auxiliary devices */
2010 for (i = 0; i < card->num_aux_devs; i++)
2011 soc_remove_aux_dev(card, i);
2012
2013 /* remove and free each DAI */
2014 for (i = 0; i < card->num_rtd; i++)
2015 soc_remove_dai_link(card, i);
2016
2017 soc_cleanup_card_debugfs(card);
2018
2019 /* remove the card */
2020 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002021 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302022
2023 kfree(card->rtd);
2024 snd_card_free(card->snd_card);
2025 return 0;
2026
2027}
2028
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002029/* removes a socdev */
2030static int soc_remove(struct platform_device *pdev)
2031{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002032 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002033
Mark Brownc5af3a22008-11-28 13:29:45 +00002034 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002035 return 0;
2036}
2037
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002038int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01002039{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002040 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002041 int i;
Mark Brown51737472009-06-22 13:16:51 +01002042
2043 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01002044 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002045
2046 /* Flush out pmdown_time work - we actually do want to run it
2047 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002048 for (i = 0; i < card->num_rtd; i++) {
2049 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01002050 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002051 }
Mark Brown51737472009-06-22 13:16:51 +01002052
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002053 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01002054
2055 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002056}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002057EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01002058
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002059const struct dev_pm_ops snd_soc_pm_ops = {
2060 .suspend = snd_soc_suspend,
2061 .resume = snd_soc_resume,
2062 .poweroff = snd_soc_poweroff,
Mark Brown416356f2009-06-30 19:05:15 +01002063};
Stephen Warrendeb26072011-04-05 19:35:30 -06002064EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01002065
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002066/* ASoC platform driver */
2067static struct platform_driver soc_driver = {
2068 .driver = {
2069 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02002070 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002071 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002072 },
2073 .probe = soc_probe,
2074 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002075};
2076
2077/* create a new pcm */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002078static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002079{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002080 struct snd_soc_codec *codec = rtd->codec;
2081 struct snd_soc_platform *platform = rtd->platform;
2082 struct snd_soc_dai *codec_dai = rtd->codec_dai;
2083 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002084 struct snd_pcm *pcm;
2085 char new_name[64];
2086 int ret = 0, playback = 0, capture = 0;
2087
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002088 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00002089 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002090 rtd->dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002091
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002092 if (codec_dai->driver->playback.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002093 playback = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002094 if (codec_dai->driver->capture.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002095 capture = 1;
2096
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002097 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name);
2098 ret = snd_pcm_new(rtd->card->snd_card, new_name,
2099 num, playback, capture, &pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002100 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002101 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002102 return ret;
2103 }
2104
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002105 rtd->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002106 pcm->private_data = rtd;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002107 soc_pcm_ops.mmap = platform->driver->ops->mmap;
2108 soc_pcm_ops.pointer = platform->driver->ops->pointer;
2109 soc_pcm_ops.ioctl = platform->driver->ops->ioctl;
2110 soc_pcm_ops.copy = platform->driver->ops->copy;
2111 soc_pcm_ops.silence = platform->driver->ops->silence;
2112 soc_pcm_ops.ack = platform->driver->ops->ack;
2113 soc_pcm_ops.page = platform->driver->ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002114
2115 if (playback)
2116 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
2117
2118 if (capture)
2119 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
2120
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002121 ret = platform->driver->pcm_new(rtd->card->snd_card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002122 if (ret < 0) {
2123 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002124 return ret;
2125 }
2126
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002127 pcm->private_free = platform->driver->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002128 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2129 cpu_dai->name);
2130 return ret;
2131}
2132
Mark Brown096e49d2009-07-05 15:12:22 +01002133/**
2134 * snd_soc_codec_volatile_register: Report if a register is volatile.
2135 *
2136 * @codec: CODEC to query.
2137 * @reg: Register to query.
2138 *
2139 * Boolean function indiciating if a CODEC register is volatile.
2140 */
Mark Brown181e0552011-01-24 14:05:25 +00002141int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
2142 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01002143{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00002144 if (codec->volatile_register)
2145 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01002146 else
2147 return 0;
2148}
2149EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
2150
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002151/**
2152 * snd_soc_new_ac97_codec - initailise AC97 device
2153 * @codec: audio codec
2154 * @ops: AC97 bus operations
2155 * @num: AC97 codec number
2156 *
2157 * Initialises AC97 codec resources for use by ad-hoc devices only.
2158 */
2159int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2160 struct snd_ac97_bus_ops *ops, int num)
2161{
2162 mutex_lock(&codec->mutex);
2163
2164 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2165 if (codec->ac97 == NULL) {
2166 mutex_unlock(&codec->mutex);
2167 return -ENOMEM;
2168 }
2169
2170 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2171 if (codec->ac97->bus == NULL) {
2172 kfree(codec->ac97);
2173 codec->ac97 = NULL;
2174 mutex_unlock(&codec->mutex);
2175 return -ENOMEM;
2176 }
2177
2178 codec->ac97->bus->ops = ops;
2179 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002180
2181 /*
2182 * Mark the AC97 device to be created by us. This way we ensure that the
2183 * device will be registered with the device subsystem later on.
2184 */
2185 codec->ac97_created = 1;
2186
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002187 mutex_unlock(&codec->mutex);
2188 return 0;
2189}
2190EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2191
2192/**
2193 * snd_soc_free_ac97_codec - free AC97 codec device
2194 * @codec: audio codec
2195 *
2196 * Frees AC97 codec device resources.
2197 */
2198void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2199{
2200 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002201#ifdef CONFIG_SND_SOC_AC97_BUS
2202 soc_unregister_ac97_dai_link(codec);
2203#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002204 kfree(codec->ac97->bus);
2205 kfree(codec->ac97);
2206 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002207 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002208 mutex_unlock(&codec->mutex);
2209}
2210EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2211
Mark Brownc3753702010-11-01 15:41:57 -04002212unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2213{
2214 unsigned int ret;
2215
Mark Brownc3acec22010-12-02 16:15:29 +00002216 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002217 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002218 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002219
2220 return ret;
2221}
2222EXPORT_SYMBOL_GPL(snd_soc_read);
2223
2224unsigned int snd_soc_write(struct snd_soc_codec *codec,
2225 unsigned int reg, unsigned int val)
2226{
2227 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002228 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002229 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002230}
2231EXPORT_SYMBOL_GPL(snd_soc_write);
2232
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002233/**
2234 * snd_soc_update_bits - update codec register bits
2235 * @codec: audio codec
2236 * @reg: codec register
2237 * @mask: register mask
2238 * @value: new value
2239 *
2240 * Writes new register value.
2241 *
Timur Tabi180c3292011-01-10 15:58:13 -06002242 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002243 */
2244int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002245 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002246{
2247 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002248 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002249 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002250
Timur Tabi180c3292011-01-10 15:58:13 -06002251 ret = snd_soc_read(codec, reg);
2252 if (ret < 0)
2253 return ret;
2254
2255 old = ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002256 new = (old & ~mask) | value;
2257 change = old != new;
Timur Tabi180c3292011-01-10 15:58:13 -06002258 if (change) {
2259 ret = snd_soc_write(codec, reg, new);
2260 if (ret < 0)
2261 return ret;
2262 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002263
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002264 return change;
2265}
2266EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2267
2268/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002269 * snd_soc_update_bits_locked - update codec register bits
2270 * @codec: audio codec
2271 * @reg: codec register
2272 * @mask: register mask
2273 * @value: new value
2274 *
2275 * Writes new register value, and takes the codec mutex.
2276 *
2277 * Returns 1 for change else 0.
2278 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002279int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2280 unsigned short reg, unsigned int mask,
2281 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002282{
2283 int change;
2284
2285 mutex_lock(&codec->mutex);
2286 change = snd_soc_update_bits(codec, reg, mask, value);
2287 mutex_unlock(&codec->mutex);
2288
2289 return change;
2290}
Mark Browndd1b3d52009-12-04 14:22:03 +00002291EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002292
2293/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002294 * snd_soc_test_bits - test register for change
2295 * @codec: audio codec
2296 * @reg: codec register
2297 * @mask: register mask
2298 * @value: new value
2299 *
2300 * Tests a register with a new value and checks if the new value is
2301 * different from the old value.
2302 *
2303 * Returns 1 for change else 0.
2304 */
2305int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002306 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002307{
2308 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002309 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002310
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002311 old = snd_soc_read(codec, reg);
2312 new = (old & ~mask) | value;
2313 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002314
2315 return change;
2316}
2317EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2318
2319/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002320 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2321 * @substream: the pcm substream
2322 * @hw: the hardware parameters
2323 *
2324 * Sets the substream runtime hardware parameters.
2325 */
2326int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2327 const struct snd_pcm_hardware *hw)
2328{
2329 struct snd_pcm_runtime *runtime = substream->runtime;
2330 runtime->hw.info = hw->info;
2331 runtime->hw.formats = hw->formats;
2332 runtime->hw.period_bytes_min = hw->period_bytes_min;
2333 runtime->hw.period_bytes_max = hw->period_bytes_max;
2334 runtime->hw.periods_min = hw->periods_min;
2335 runtime->hw.periods_max = hw->periods_max;
2336 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2337 runtime->hw.fifo_size = hw->fifo_size;
2338 return 0;
2339}
2340EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2341
2342/**
2343 * snd_soc_cnew - create new control
2344 * @_template: control template
2345 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002346 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002347 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002348 *
2349 * Create a new mixer control from a template control.
2350 *
2351 * Returns 0 for success, else error.
2352 */
2353struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brownefb7ac32011-03-08 17:23:24 +00002354 void *data, char *long_name,
2355 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002356{
2357 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002358 struct snd_kcontrol *kcontrol;
2359 char *name = NULL;
2360 int name_len;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002361
2362 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002363 template.index = 0;
2364
Mark Brownefb7ac32011-03-08 17:23:24 +00002365 if (!long_name)
2366 long_name = template.name;
2367
2368 if (prefix) {
2369 name_len = strlen(long_name) + strlen(prefix) + 2;
2370 name = kmalloc(name_len, GFP_ATOMIC);
2371 if (!name)
2372 return NULL;
2373
2374 snprintf(name, name_len, "%s %s", prefix, long_name);
2375
2376 template.name = name;
2377 } else {
2378 template.name = long_name;
2379 }
2380
2381 kcontrol = snd_ctl_new1(&template, data);
2382
2383 kfree(name);
2384
2385 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002386}
2387EXPORT_SYMBOL_GPL(snd_soc_cnew);
2388
2389/**
Ian Molton3e8e1952009-01-09 00:23:21 +00002390 * snd_soc_add_controls - add an array of controls to a codec.
2391 * Convienience function to add a list of controls. Many codecs were
2392 * duplicating this code.
2393 *
2394 * @codec: codec to add controls to
2395 * @controls: array of controls to add
2396 * @num_controls: number of elements in the array
2397 *
2398 * Return 0 for success, else error.
2399 */
2400int snd_soc_add_controls(struct snd_soc_codec *codec,
2401 const struct snd_kcontrol_new *controls, int num_controls)
2402{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002403 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002404 int err, i;
2405
2406 for (i = 0; i < num_controls; i++) {
2407 const struct snd_kcontrol_new *control = &controls[i];
Mark Brownefb7ac32011-03-08 17:23:24 +00002408 err = snd_ctl_add(card, snd_soc_cnew(control, codec,
2409 control->name,
2410 codec->name_prefix));
Ian Molton3e8e1952009-01-09 00:23:21 +00002411 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002412 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Mark Brownefb7ac32011-03-08 17:23:24 +00002413 codec->name, control->name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002414 return err;
2415 }
2416 }
2417
2418 return 0;
2419}
2420EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2421
2422/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002423 * snd_soc_info_enum_double - enumerated double mixer info callback
2424 * @kcontrol: mixer control
2425 * @uinfo: control element information
2426 *
2427 * Callback to provide information about a double enumerated
2428 * mixer control.
2429 *
2430 * Returns 0 for success.
2431 */
2432int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2433 struct snd_ctl_elem_info *uinfo)
2434{
2435 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2436
2437 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2438 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002439 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002440
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002441 if (uinfo->value.enumerated.item > e->max - 1)
2442 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002443 strcpy(uinfo->value.enumerated.name,
2444 e->texts[uinfo->value.enumerated.item]);
2445 return 0;
2446}
2447EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2448
2449/**
2450 * snd_soc_get_enum_double - enumerated double mixer get callback
2451 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002452 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002453 *
2454 * Callback to get the value of a double enumerated mixer.
2455 *
2456 * Returns 0 for success.
2457 */
2458int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2459 struct snd_ctl_elem_value *ucontrol)
2460{
2461 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2462 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002463 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002464
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002465 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002466 ;
2467 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002468 ucontrol->value.enumerated.item[0]
2469 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002470 if (e->shift_l != e->shift_r)
2471 ucontrol->value.enumerated.item[1] =
2472 (val >> e->shift_r) & (bitmask - 1);
2473
2474 return 0;
2475}
2476EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2477
2478/**
2479 * snd_soc_put_enum_double - enumerated double mixer put callback
2480 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002481 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002482 *
2483 * Callback to set the value of a double enumerated mixer.
2484 *
2485 * Returns 0 for success.
2486 */
2487int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2488 struct snd_ctl_elem_value *ucontrol)
2489{
2490 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2491 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002492 unsigned int val;
2493 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002494
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002495 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002496 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002497 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002498 return -EINVAL;
2499 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2500 mask = (bitmask - 1) << e->shift_l;
2501 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002502 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002503 return -EINVAL;
2504 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2505 mask |= (bitmask - 1) << e->shift_r;
2506 }
2507
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002508 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002509}
2510EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2511
2512/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002513 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2514 * @kcontrol: mixer control
2515 * @ucontrol: control element information
2516 *
2517 * Callback to get the value of a double semi enumerated mixer.
2518 *
2519 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2520 * used for handling bitfield coded enumeration for example.
2521 *
2522 * Returns 0 for success.
2523 */
2524int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2525 struct snd_ctl_elem_value *ucontrol)
2526{
2527 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002528 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002529 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002530
2531 reg_val = snd_soc_read(codec, e->reg);
2532 val = (reg_val >> e->shift_l) & e->mask;
2533 for (mux = 0; mux < e->max; mux++) {
2534 if (val == e->values[mux])
2535 break;
2536 }
2537 ucontrol->value.enumerated.item[0] = mux;
2538 if (e->shift_l != e->shift_r) {
2539 val = (reg_val >> e->shift_r) & e->mask;
2540 for (mux = 0; mux < e->max; mux++) {
2541 if (val == e->values[mux])
2542 break;
2543 }
2544 ucontrol->value.enumerated.item[1] = mux;
2545 }
2546
2547 return 0;
2548}
2549EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2550
2551/**
2552 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2553 * @kcontrol: mixer control
2554 * @ucontrol: control element information
2555 *
2556 * Callback to set the value of a double semi enumerated mixer.
2557 *
2558 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2559 * used for handling bitfield coded enumeration for example.
2560 *
2561 * Returns 0 for success.
2562 */
2563int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2564 struct snd_ctl_elem_value *ucontrol)
2565{
2566 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002567 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002568 unsigned int val;
2569 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002570
2571 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2572 return -EINVAL;
2573 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2574 mask = e->mask << e->shift_l;
2575 if (e->shift_l != e->shift_r) {
2576 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2577 return -EINVAL;
2578 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2579 mask |= e->mask << e->shift_r;
2580 }
2581
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002582 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002583}
2584EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2585
2586/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002587 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2588 * @kcontrol: mixer control
2589 * @uinfo: control element information
2590 *
2591 * Callback to provide information about an external enumerated
2592 * single mixer.
2593 *
2594 * Returns 0 for success.
2595 */
2596int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2597 struct snd_ctl_elem_info *uinfo)
2598{
2599 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2600
2601 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2602 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002603 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002604
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002605 if (uinfo->value.enumerated.item > e->max - 1)
2606 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002607 strcpy(uinfo->value.enumerated.name,
2608 e->texts[uinfo->value.enumerated.item]);
2609 return 0;
2610}
2611EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2612
2613/**
2614 * snd_soc_info_volsw_ext - external single mixer info callback
2615 * @kcontrol: mixer control
2616 * @uinfo: control element information
2617 *
2618 * Callback to provide information about a single external mixer control.
2619 *
2620 * Returns 0 for success.
2621 */
2622int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2623 struct snd_ctl_elem_info *uinfo)
2624{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002625 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002626
Mark Brownfd5dfad2009-04-15 21:37:46 +01002627 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002628 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2629 else
2630 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2631
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002632 uinfo->count = 1;
2633 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002634 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002635 return 0;
2636}
2637EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2638
2639/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002640 * snd_soc_info_volsw - single mixer info callback
2641 * @kcontrol: mixer control
2642 * @uinfo: control element information
2643 *
2644 * Callback to provide information about a single mixer control.
2645 *
2646 * Returns 0 for success.
2647 */
2648int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2649 struct snd_ctl_elem_info *uinfo)
2650{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002651 struct soc_mixer_control *mc =
2652 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002653 int platform_max;
Mark Brown762b8df2008-10-30 12:37:08 +00002654 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002655 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002656
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002657 if (!mc->platform_max)
2658 mc->platform_max = mc->max;
2659 platform_max = mc->platform_max;
2660
2661 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002662 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2663 else
2664 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2665
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002666 uinfo->count = shift == rshift ? 1 : 2;
2667 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002668 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002669 return 0;
2670}
2671EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2672
2673/**
2674 * snd_soc_get_volsw - single mixer get callback
2675 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002676 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002677 *
2678 * Callback to get the value of a single mixer control.
2679 *
2680 * Returns 0 for success.
2681 */
2682int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2683 struct snd_ctl_elem_value *ucontrol)
2684{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002685 struct soc_mixer_control *mc =
2686 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002687 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002688 unsigned int reg = mc->reg;
2689 unsigned int shift = mc->shift;
2690 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002691 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002692 unsigned int mask = (1 << fls(max)) - 1;
2693 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002694
2695 ucontrol->value.integer.value[0] =
2696 (snd_soc_read(codec, reg) >> shift) & mask;
2697 if (shift != rshift)
2698 ucontrol->value.integer.value[1] =
2699 (snd_soc_read(codec, reg) >> rshift) & mask;
2700 if (invert) {
2701 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002702 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002703 if (shift != rshift)
2704 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002705 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002706 }
2707
2708 return 0;
2709}
2710EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2711
2712/**
2713 * snd_soc_put_volsw - single mixer put callback
2714 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002715 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002716 *
2717 * Callback to set the value of a single mixer control.
2718 *
2719 * Returns 0 for success.
2720 */
2721int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2722 struct snd_ctl_elem_value *ucontrol)
2723{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002724 struct soc_mixer_control *mc =
2725 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002726 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002727 unsigned int reg = mc->reg;
2728 unsigned int shift = mc->shift;
2729 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002730 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002731 unsigned int mask = (1 << fls(max)) - 1;
2732 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002733 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002734
2735 val = (ucontrol->value.integer.value[0] & mask);
2736 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002737 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002738 val_mask = mask << shift;
2739 val = val << shift;
2740 if (shift != rshift) {
2741 val2 = (ucontrol->value.integer.value[1] & mask);
2742 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002743 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002744 val_mask |= mask << rshift;
2745 val |= val2 << rshift;
2746 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002747 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002748}
2749EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2750
2751/**
2752 * snd_soc_info_volsw_2r - double mixer info callback
2753 * @kcontrol: mixer control
2754 * @uinfo: control element information
2755 *
2756 * Callback to provide information about a double mixer control that
2757 * spans 2 codec registers.
2758 *
2759 * Returns 0 for success.
2760 */
2761int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2762 struct snd_ctl_elem_info *uinfo)
2763{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002764 struct soc_mixer_control *mc =
2765 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002766 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002767
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002768 if (!mc->platform_max)
2769 mc->platform_max = mc->max;
2770 platform_max = mc->platform_max;
2771
2772 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002773 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2774 else
2775 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2776
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002777 uinfo->count = 2;
2778 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002779 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002780 return 0;
2781}
2782EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2783
2784/**
2785 * snd_soc_get_volsw_2r - double mixer get callback
2786 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002787 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002788 *
2789 * Callback to get the value of a double mixer control that spans 2 registers.
2790 *
2791 * Returns 0 for success.
2792 */
2793int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2794 struct snd_ctl_elem_value *ucontrol)
2795{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002796 struct soc_mixer_control *mc =
2797 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002798 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002799 unsigned int reg = mc->reg;
2800 unsigned int reg2 = mc->rreg;
2801 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002802 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002803 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002804 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002805
2806 ucontrol->value.integer.value[0] =
2807 (snd_soc_read(codec, reg) >> shift) & mask;
2808 ucontrol->value.integer.value[1] =
2809 (snd_soc_read(codec, reg2) >> shift) & mask;
2810 if (invert) {
2811 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002812 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002813 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002814 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002815 }
2816
2817 return 0;
2818}
2819EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2820
2821/**
2822 * snd_soc_put_volsw_2r - double mixer set callback
2823 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002824 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002825 *
2826 * Callback to set the value of a double mixer control that spans 2 registers.
2827 *
2828 * Returns 0 for success.
2829 */
2830int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2831 struct snd_ctl_elem_value *ucontrol)
2832{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002833 struct soc_mixer_control *mc =
2834 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002835 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002836 unsigned int reg = mc->reg;
2837 unsigned int reg2 = mc->rreg;
2838 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002839 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002840 unsigned int mask = (1 << fls(max)) - 1;
2841 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002842 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002843 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002844
2845 val_mask = mask << shift;
2846 val = (ucontrol->value.integer.value[0] & mask);
2847 val2 = (ucontrol->value.integer.value[1] & mask);
2848
2849 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002850 val = max - val;
2851 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002852 }
2853
2854 val = val << shift;
2855 val2 = val2 << shift;
2856
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002857 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002858 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002859 return err;
2860
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002861 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002862 return err;
2863}
2864EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2865
Mark Browne13ac2e2008-05-28 17:58:05 +01002866/**
2867 * snd_soc_info_volsw_s8 - signed mixer info callback
2868 * @kcontrol: mixer control
2869 * @uinfo: control element information
2870 *
2871 * Callback to provide information about a signed mixer control.
2872 *
2873 * Returns 0 for success.
2874 */
2875int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2876 struct snd_ctl_elem_info *uinfo)
2877{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002878 struct soc_mixer_control *mc =
2879 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002880 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002881 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002882
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002883 if (!mc->platform_max)
2884 mc->platform_max = mc->max;
2885 platform_max = mc->platform_max;
2886
Mark Browne13ac2e2008-05-28 17:58:05 +01002887 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2888 uinfo->count = 2;
2889 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002890 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002891 return 0;
2892}
2893EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2894
2895/**
2896 * snd_soc_get_volsw_s8 - signed mixer get callback
2897 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002898 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002899 *
2900 * Callback to get the value of a signed mixer control.
2901 *
2902 * Returns 0 for success.
2903 */
2904int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2905 struct snd_ctl_elem_value *ucontrol)
2906{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002907 struct soc_mixer_control *mc =
2908 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002909 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002910 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002911 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002912 int val = snd_soc_read(codec, reg);
2913
2914 ucontrol->value.integer.value[0] =
2915 ((signed char)(val & 0xff))-min;
2916 ucontrol->value.integer.value[1] =
2917 ((signed char)((val >> 8) & 0xff))-min;
2918 return 0;
2919}
2920EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2921
2922/**
2923 * snd_soc_put_volsw_sgn - signed mixer put callback
2924 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002925 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002926 *
2927 * Callback to set the value of a signed mixer control.
2928 *
2929 * Returns 0 for success.
2930 */
2931int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2932 struct snd_ctl_elem_value *ucontrol)
2933{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002934 struct soc_mixer_control *mc =
2935 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002936 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002937 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002938 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002939 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002940
2941 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2942 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2943
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002944 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002945}
2946EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2947
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002948/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002949 * snd_soc_limit_volume - Set new limit to an existing volume control.
2950 *
2951 * @codec: where to look for the control
2952 * @name: Name of the control
2953 * @max: new maximum limit
2954 *
2955 * Return 0 for success, else error.
2956 */
2957int snd_soc_limit_volume(struct snd_soc_codec *codec,
2958 const char *name, int max)
2959{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002960 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002961 struct snd_kcontrol *kctl;
2962 struct soc_mixer_control *mc;
2963 int found = 0;
2964 int ret = -EINVAL;
2965
2966 /* Sanity check for name and max */
2967 if (unlikely(!name || max <= 0))
2968 return -EINVAL;
2969
2970 list_for_each_entry(kctl, &card->controls, list) {
2971 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2972 found = 1;
2973 break;
2974 }
2975 }
2976 if (found) {
2977 mc = (struct soc_mixer_control *)kctl->private_value;
2978 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002979 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002980 ret = 0;
2981 }
2982 }
2983 return ret;
2984}
2985EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2986
2987/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002988 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2989 * mixer info callback
2990 * @kcontrol: mixer control
2991 * @uinfo: control element information
2992 *
2993 * Returns 0 for success.
2994 */
2995int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2996 struct snd_ctl_elem_info *uinfo)
2997{
2998 struct soc_mixer_control *mc =
2999 (struct soc_mixer_control *)kcontrol->private_value;
3000 int max = mc->max;
3001 int min = mc->min;
3002
3003 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3004 uinfo->count = 2;
3005 uinfo->value.integer.min = 0;
3006 uinfo->value.integer.max = max-min;
3007
3008 return 0;
3009}
3010EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
3011
3012/**
3013 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
3014 * mixer get callback
3015 * @kcontrol: mixer control
3016 * @uinfo: control element information
3017 *
3018 * Returns 0 for success.
3019 */
3020int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3021 struct snd_ctl_elem_value *ucontrol)
3022{
3023 struct soc_mixer_control *mc =
3024 (struct soc_mixer_control *)kcontrol->private_value;
3025 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3026 unsigned int mask = (1<<mc->shift)-1;
3027 int min = mc->min;
3028 int val = snd_soc_read(codec, mc->reg) & mask;
3029 int valr = snd_soc_read(codec, mc->rreg) & mask;
3030
Stuart Longland20630c72010-06-18 12:56:10 +10003031 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
3032 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003033 return 0;
3034}
3035EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
3036
3037/**
3038 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
3039 * mixer put callback
3040 * @kcontrol: mixer control
3041 * @uinfo: control element information
3042 *
3043 * Returns 0 for success.
3044 */
3045int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
3046 struct snd_ctl_elem_value *ucontrol)
3047{
3048 struct soc_mixer_control *mc =
3049 (struct soc_mixer_control *)kcontrol->private_value;
3050 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3051 unsigned int mask = (1<<mc->shift)-1;
3052 int min = mc->min;
3053 int ret;
3054 unsigned int val, valr, oval, ovalr;
3055
3056 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
3057 val &= mask;
3058 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
3059 valr &= mask;
3060
3061 oval = snd_soc_read(codec, mc->reg) & mask;
3062 ovalr = snd_soc_read(codec, mc->rreg) & mask;
3063
3064 ret = 0;
3065 if (oval != val) {
3066 ret = snd_soc_write(codec, mc->reg, val);
3067 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01003068 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003069 }
3070 if (ovalr != valr) {
3071 ret = snd_soc_write(codec, mc->rreg, valr);
3072 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01003073 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003074 }
3075
3076 return 0;
3077}
3078EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
3079
3080/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003081 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3082 * @dai: DAI
3083 * @clk_id: DAI specific clock ID
3084 * @freq: new clock frequency in Hz
3085 * @dir: new clock direction - input/output.
3086 *
3087 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3088 */
3089int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3090 unsigned int freq, int dir)
3091{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003092 if (dai->driver && dai->driver->ops->set_sysclk)
3093 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003094 else if (dai->codec && dai->codec->driver->set_sysclk)
3095 return dai->codec->driver->set_sysclk(dai->codec, clk_id,
3096 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003097 else
3098 return -EINVAL;
3099}
3100EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3101
3102/**
Mark Brownec4ee522011-03-07 20:58:11 +00003103 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3104 * @codec: CODEC
3105 * @clk_id: DAI specific clock ID
3106 * @freq: new clock frequency in Hz
3107 * @dir: new clock direction - input/output.
3108 *
3109 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3110 */
3111int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
3112 unsigned int freq, int dir)
3113{
3114 if (codec->driver->set_sysclk)
3115 return codec->driver->set_sysclk(codec, clk_id, freq, dir);
3116 else
3117 return -EINVAL;
3118}
3119EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3120
3121/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003122 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3123 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003124 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003125 * @div: new clock divisor.
3126 *
3127 * Configures the clock dividers. This is used to derive the best DAI bit and
3128 * frame clocks from the system or master clock. It's best to set the DAI bit
3129 * and frame clocks as low as possible to save system power.
3130 */
3131int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3132 int div_id, int div)
3133{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003134 if (dai->driver && dai->driver->ops->set_clkdiv)
3135 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003136 else
3137 return -EINVAL;
3138}
3139EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3140
3141/**
3142 * snd_soc_dai_set_pll - configure DAI PLL.
3143 * @dai: DAI
3144 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003145 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003146 * @freq_in: PLL input clock frequency in Hz
3147 * @freq_out: requested PLL output clock frequency in Hz
3148 *
3149 * Configures and enables PLL to generate output clock based on input clock.
3150 */
Mark Brown85488032009-09-05 18:52:16 +01003151int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3152 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003153{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003154 if (dai->driver && dai->driver->ops->set_pll)
3155 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003156 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003157 else if (dai->codec && dai->codec->driver->set_pll)
3158 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3159 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003160 else
3161 return -EINVAL;
3162}
3163EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3164
Mark Brownec4ee522011-03-07 20:58:11 +00003165/*
3166 * snd_soc_codec_set_pll - configure codec PLL.
3167 * @codec: CODEC
3168 * @pll_id: DAI specific PLL ID
3169 * @source: DAI specific source for the PLL
3170 * @freq_in: PLL input clock frequency in Hz
3171 * @freq_out: requested PLL output clock frequency in Hz
3172 *
3173 * Configures and enables PLL to generate output clock based on input clock.
3174 */
3175int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3176 unsigned int freq_in, unsigned int freq_out)
3177{
3178 if (codec->driver->set_pll)
3179 return codec->driver->set_pll(codec, pll_id, source,
3180 freq_in, freq_out);
3181 else
3182 return -EINVAL;
3183}
3184EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3185
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003186/**
3187 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3188 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003189 * @fmt: SND_SOC_DAIFMT_ format value.
3190 *
3191 * Configures the DAI hardware format and clocking.
3192 */
3193int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3194{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003195 if (dai->driver && dai->driver->ops->set_fmt)
3196 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003197 else
3198 return -EINVAL;
3199}
3200EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3201
3202/**
3203 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3204 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003205 * @tx_mask: bitmask representing active TX slots.
3206 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003207 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003208 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003209 *
3210 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3211 * specific.
3212 */
3213int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003214 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003215{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003216 if (dai->driver && dai->driver->ops->set_tdm_slot)
3217 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003218 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003219 else
3220 return -EINVAL;
3221}
3222EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3223
3224/**
Barry Song472df3c2009-09-12 01:16:29 +08003225 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3226 * @dai: DAI
3227 * @tx_num: how many TX channels
3228 * @tx_slot: pointer to an array which imply the TX slot number channel
3229 * 0~num-1 uses
3230 * @rx_num: how many RX channels
3231 * @rx_slot: pointer to an array which imply the RX slot number channel
3232 * 0~num-1 uses
3233 *
3234 * configure the relationship between channel number and TDM slot number.
3235 */
3236int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3237 unsigned int tx_num, unsigned int *tx_slot,
3238 unsigned int rx_num, unsigned int *rx_slot)
3239{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003240 if (dai->driver && dai->driver->ops->set_channel_map)
3241 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003242 rx_num, rx_slot);
3243 else
3244 return -EINVAL;
3245}
3246EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3247
3248/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003249 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3250 * @dai: DAI
3251 * @tristate: tristate enable
3252 *
3253 * Tristates the DAI so that others can use it.
3254 */
3255int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3256{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003257 if (dai->driver && dai->driver->ops->set_tristate)
3258 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003259 else
3260 return -EINVAL;
3261}
3262EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3263
3264/**
3265 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3266 * @dai: DAI
3267 * @mute: mute enable
3268 *
3269 * Mutes the DAI DAC.
3270 */
3271int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3272{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003273 if (dai->driver && dai->driver->ops->digital_mute)
3274 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003275 else
3276 return -EINVAL;
3277}
3278EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3279
Mark Brownc5af3a22008-11-28 13:29:45 +00003280/**
3281 * snd_soc_register_card - Register a card with the ASoC core
3282 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003283 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003284 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003285 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303286int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003287{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003288 int i;
3289
Mark Brownc5af3a22008-11-28 13:29:45 +00003290 if (!card->name || !card->dev)
3291 return -EINVAL;
3292
Stephen Warren111c6412011-01-28 14:26:35 -07003293 snd_soc_initialize_card_lists(card);
3294
Vinod Koul150dd2f2011-01-13 22:48:32 +05303295 soc_init_card_debugfs(card);
3296
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003297 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
3298 (card->num_links + card->num_aux_devs),
3299 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003300 if (card->rtd == NULL)
3301 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003302 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003303
3304 for (i = 0; i < card->num_links; i++)
3305 card->rtd[i].dai_link = &card->dai_link[i];
3306
Mark Brownc5af3a22008-11-28 13:29:45 +00003307 INIT_LIST_HEAD(&card->list);
3308 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003309 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003310
3311 mutex_lock(&client_mutex);
3312 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003313 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00003314 mutex_unlock(&client_mutex);
3315
3316 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
3317
3318 return 0;
3319}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303320EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003321
3322/**
3323 * snd_soc_unregister_card - Unregister a card with the ASoC core
3324 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003325 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003326 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003327 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303328int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003329{
Vinod Koulb0e26482011-01-13 22:48:02 +05303330 if (card->instantiated)
3331 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003332 mutex_lock(&client_mutex);
3333 list_del(&card->list);
3334 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003335 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3336
3337 return 0;
3338}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303339EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003340
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003341/*
3342 * Simplify DAI link configuration by removing ".-1" from device names
3343 * and sanitizing names.
3344 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003345static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003346{
3347 char *found, name[NAME_SIZE];
3348 int id1, id2;
3349
3350 if (dev_name(dev) == NULL)
3351 return NULL;
3352
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003353 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003354
3355 /* are we a "%s.%d" name (platform and SPI components) */
3356 found = strstr(name, dev->driver->name);
3357 if (found) {
3358 /* get ID */
3359 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3360
3361 /* discard ID from name if ID == -1 */
3362 if (*id == -1)
3363 found[strlen(dev->driver->name)] = '\0';
3364 }
3365
3366 } else {
3367 /* I2C component devices are named "bus-addr" */
3368 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3369 char tmp[NAME_SIZE];
3370
3371 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003372 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003373
3374 /* sanitize component name for DAI link creation */
3375 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003376 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003377 } else
3378 *id = 0;
3379 }
3380
3381 return kstrdup(name, GFP_KERNEL);
3382}
3383
3384/*
3385 * Simplify DAI link naming for single devices with multiple DAIs by removing
3386 * any ".-1" and using the DAI name (instead of device name).
3387 */
3388static inline char *fmt_multiple_name(struct device *dev,
3389 struct snd_soc_dai_driver *dai_drv)
3390{
3391 if (dai_drv->name == NULL) {
3392 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
3393 dev_name(dev));
3394 return NULL;
3395 }
3396
3397 return kstrdup(dai_drv->name, GFP_KERNEL);
3398}
3399
Mark Brown91151712008-11-30 23:31:24 +00003400/**
3401 * snd_soc_register_dai - Register a DAI with the ASoC core
3402 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003403 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003404 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003405int snd_soc_register_dai(struct device *dev,
3406 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003407{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003408 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003409
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003410 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003411
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003412 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3413 if (dai == NULL)
3414 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003415
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003416 /* create DAI component name */
3417 dai->name = fmt_single_name(dev, &dai->id);
3418 if (dai->name == NULL) {
3419 kfree(dai);
3420 return -ENOMEM;
3421 }
3422
3423 dai->dev = dev;
3424 dai->driver = dai_drv;
3425 if (!dai->driver->ops)
3426 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003427
3428 mutex_lock(&client_mutex);
3429 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003430 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003431 mutex_unlock(&client_mutex);
3432
3433 pr_debug("Registered DAI '%s'\n", dai->name);
3434
3435 return 0;
3436}
3437EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3438
3439/**
3440 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3441 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003442 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003443 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003444void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003445{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003446 struct snd_soc_dai *dai;
3447
3448 list_for_each_entry(dai, &dai_list, list) {
3449 if (dev == dai->dev)
3450 goto found;
3451 }
3452 return;
3453
3454found:
Mark Brown91151712008-11-30 23:31:24 +00003455 mutex_lock(&client_mutex);
3456 list_del(&dai->list);
3457 mutex_unlock(&client_mutex);
3458
3459 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003460 kfree(dai->name);
3461 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003462}
3463EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3464
3465/**
3466 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3467 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003468 * @dai: Array of DAIs to register
3469 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003470 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003471int snd_soc_register_dais(struct device *dev,
3472 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003473{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003474 struct snd_soc_dai *dai;
3475 int i, ret = 0;
3476
Liam Girdwood720ffa42010-08-18 00:30:30 +01003477 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003478
3479 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003480
3481 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003482 if (dai == NULL) {
3483 ret = -ENOMEM;
3484 goto err;
3485 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003486
3487 /* create DAI component name */
3488 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3489 if (dai->name == NULL) {
3490 kfree(dai);
3491 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003492 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003493 }
3494
3495 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003496 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003497 if (dai->driver->id)
3498 dai->id = dai->driver->id;
3499 else
3500 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003501 if (!dai->driver->ops)
3502 dai->driver->ops = &null_dai_ops;
3503
3504 mutex_lock(&client_mutex);
3505 list_add(&dai->list, &dai_list);
3506 mutex_unlock(&client_mutex);
3507
3508 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003509 }
3510
Axel Lin1dcb4f32010-12-06 16:48:03 +08003511 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003512 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003513 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003514 return 0;
3515
3516err:
3517 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003518 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003519
3520 return ret;
3521}
3522EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3523
3524/**
3525 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3526 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003527 * @dai: Array of DAIs to unregister
3528 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003529 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003530void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003531{
3532 int i;
3533
3534 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003535 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003536}
3537EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3538
Mark Brown12a48a8c2008-12-03 19:40:30 +00003539/**
3540 * snd_soc_register_platform - Register a platform with the ASoC core
3541 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003542 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003543 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003544int snd_soc_register_platform(struct device *dev,
3545 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003546{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003547 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003548
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003549 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3550
3551 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3552 if (platform == NULL)
3553 return -ENOMEM;
3554
3555 /* create platform component name */
3556 platform->name = fmt_single_name(dev, &platform->id);
3557 if (platform->name == NULL) {
3558 kfree(platform);
3559 return -ENOMEM;
3560 }
3561
3562 platform->dev = dev;
3563 platform->driver = platform_drv;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003564
3565 mutex_lock(&client_mutex);
3566 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003567 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003568 mutex_unlock(&client_mutex);
3569
3570 pr_debug("Registered platform '%s'\n", platform->name);
3571
3572 return 0;
3573}
3574EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3575
3576/**
3577 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3578 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003579 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003580 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003581void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003582{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003583 struct snd_soc_platform *platform;
3584
3585 list_for_each_entry(platform, &platform_list, list) {
3586 if (dev == platform->dev)
3587 goto found;
3588 }
3589 return;
3590
3591found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003592 mutex_lock(&client_mutex);
3593 list_del(&platform->list);
3594 mutex_unlock(&client_mutex);
3595
3596 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003597 kfree(platform->name);
3598 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003599}
3600EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3601
Mark Brown151ab222009-05-09 16:22:58 +01003602static u64 codec_format_map[] = {
3603 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3604 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3605 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3606 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3607 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3608 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3609 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3610 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3611 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3612 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3613 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3614 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3615 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3616 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3617 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3618 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3619};
3620
3621/* Fix up the DAI formats for endianness: codecs don't actually see
3622 * the endianness of the data but we're using the CPU format
3623 * definitions which do need to include endianness so we ensure that
3624 * codec DAIs always have both big and little endian variants set.
3625 */
3626static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3627{
3628 int i;
3629
3630 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3631 if (stream->formats & codec_format_map[i])
3632 stream->formats |= codec_format_map[i];
3633}
3634
Mark Brown0d0cf002008-12-10 14:32:45 +00003635/**
3636 * snd_soc_register_codec - Register a codec with the ASoC core
3637 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003638 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003639 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003640int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003641 const struct snd_soc_codec_driver *codec_drv,
3642 struct snd_soc_dai_driver *dai_drv,
3643 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003644{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003645 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003646 struct snd_soc_codec *codec;
3647 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003648
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003649 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003650
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003651 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3652 if (codec == NULL)
3653 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003654
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003655 /* create CODEC component name */
3656 codec->name = fmt_single_name(dev, &codec->id);
3657 if (codec->name == NULL) {
3658 kfree(codec);
3659 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003660 }
3661
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003662 if (codec_drv->compress_type)
3663 codec->compress_type = codec_drv->compress_type;
3664 else
3665 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3666
Mark Brownc3acec22010-12-02 16:15:29 +00003667 codec->write = codec_drv->write;
3668 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003669 codec->volatile_register = codec_drv->volatile_register;
3670 codec->readable_register = codec_drv->readable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003671 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3672 codec->dapm.dev = dev;
3673 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003674 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003675 codec->dev = dev;
3676 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003677 codec->num_dai = num_dai;
3678 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003679
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003680 /* allocate CODEC register cache */
3681 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003682 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003683 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003684 /* it is necessary to make a copy of the default register cache
3685 * because in the case of using a compression type that requires
3686 * the default register cache to be marked as __devinitconst the
3687 * kernel might have freed the array by the time we initialize
3688 * the cache.
3689 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003690 if (codec_drv->reg_cache_default) {
3691 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3692 reg_size, GFP_KERNEL);
3693 if (!codec->reg_def_copy) {
3694 ret = -ENOMEM;
3695 goto fail;
3696 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003697 }
3698 }
3699
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003700 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3701 if (!codec->volatile_register)
3702 codec->volatile_register = snd_soc_default_volatile_register;
3703 if (!codec->readable_register)
3704 codec->readable_register = snd_soc_default_readable_register;
3705 }
3706
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003707 for (i = 0; i < num_dai; i++) {
3708 fixup_codec_formats(&dai_drv[i].playback);
3709 fixup_codec_formats(&dai_drv[i].capture);
3710 }
3711
Mark Brown26b01cc2010-08-18 20:20:55 +01003712 /* register any DAIs */
3713 if (num_dai) {
3714 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3715 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003716 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003717 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003718
Mark Brown0d0cf002008-12-10 14:32:45 +00003719 mutex_lock(&client_mutex);
3720 list_add(&codec->list, &codec_list);
3721 snd_soc_instantiate_cards();
3722 mutex_unlock(&client_mutex);
3723
3724 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003725 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003726
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003727fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003728 kfree(codec->reg_def_copy);
3729 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003730 kfree(codec->name);
3731 kfree(codec);
3732 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003733}
3734EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3735
3736/**
3737 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3738 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003739 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003740 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003741void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003742{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003743 struct snd_soc_codec *codec;
3744 int i;
3745
3746 list_for_each_entry(codec, &codec_list, list) {
3747 if (dev == codec->dev)
3748 goto found;
3749 }
3750 return;
3751
3752found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003753 if (codec->num_dai)
3754 for (i = 0; i < codec->num_dai; i++)
3755 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003756
Mark Brown0d0cf002008-12-10 14:32:45 +00003757 mutex_lock(&client_mutex);
3758 list_del(&codec->list);
3759 mutex_unlock(&client_mutex);
3760
3761 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003762
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003763 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003764 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003765 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003766 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003767}
3768EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3769
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003770static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003771{
Mark Brown384c89e2008-12-03 17:34:03 +00003772#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003773 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3774 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003775 printk(KERN_WARNING
3776 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003777 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003778 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003779
Mark Brown8a9dab12011-01-10 22:25:21 +00003780 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003781 &codec_list_fops))
3782 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3783
Mark Brown8a9dab12011-01-10 22:25:21 +00003784 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003785 &dai_list_fops))
3786 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003787
Mark Brown8a9dab12011-01-10 22:25:21 +00003788 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003789 &platform_list_fops))
3790 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003791#endif
3792
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003793 return platform_driver_register(&soc_driver);
3794}
Mark Brown4abe8e12010-10-12 17:41:03 +01003795module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003796
Mark Brown7d8c16a2008-11-30 22:11:24 +00003797static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003798{
Mark Brown384c89e2008-12-03 17:34:03 +00003799#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003800 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003801#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003802 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003803}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003804module_exit(snd_soc_exit);
3805
3806/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003807MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003808MODULE_DESCRIPTION("ALSA SoC Core");
3809MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003810MODULE_ALIAS("platform:soc-audio");