blob: b0e7689159c10ab71d5929af8000033f0b363a80 [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
Mark Brown2624d5f2009-11-03 21:56:13 +000072/* codec register dump */
73static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
74{
Mark Brown5164d742010-07-14 16:14:33 +010075 int ret, i, step = 1, count = 0;
Mark Brown2624d5f2009-11-03 21:56:13 +000076
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000077 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +000078 return 0;
79
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000080 if (codec->driver->reg_cache_step)
81 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +000082
83 count += sprintf(buf, "%s registers\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000084 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +000085 if (codec->readable_register && !codec->readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +000086 continue;
87
88 count += sprintf(buf + count, "%2x: ", i);
89 if (count >= PAGE_SIZE - 1)
90 break;
91
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000092 if (codec->driver->display_register) {
93 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +000094 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +010095 } else {
96 /* If the read fails it's almost certainly due to
97 * the register being volatile and the device being
98 * powered off.
99 */
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000100 ret = snd_soc_read(codec, i);
Mark Brown5164d742010-07-14 16:14:33 +0100101 if (ret >= 0)
102 count += snprintf(buf + count,
103 PAGE_SIZE - count,
104 "%4x", ret);
105 else
106 count += snprintf(buf + count,
107 PAGE_SIZE - count,
108 "<no data: %d>", ret);
109 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000110
111 if (count >= PAGE_SIZE - 1)
112 break;
113
114 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
115 if (count >= PAGE_SIZE - 1)
116 break;
117 }
118
119 /* Truncate count; min() would cause a warning */
120 if (count >= PAGE_SIZE)
121 count = PAGE_SIZE - 1;
122
123 return count;
124}
125static ssize_t codec_reg_show(struct device *dev,
126 struct device_attribute *attr, char *buf)
127{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000128 struct snd_soc_pcm_runtime *rtd =
129 container_of(dev, struct snd_soc_pcm_runtime, dev);
130
131 return soc_codec_reg_show(rtd->codec, buf);
Mark Brown2624d5f2009-11-03 21:56:13 +0000132}
133
134static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
135
Mark Browndbe21402010-02-12 11:37:24 +0000136static ssize_t pmdown_time_show(struct device *dev,
137 struct device_attribute *attr, char *buf)
138{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000139 struct snd_soc_pcm_runtime *rtd =
140 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Browndbe21402010-02-12 11:37:24 +0000141
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000142 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000143}
144
145static ssize_t pmdown_time_set(struct device *dev,
146 struct device_attribute *attr,
147 const char *buf, size_t count)
148{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000149 struct snd_soc_pcm_runtime *rtd =
150 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Brownc593b522010-10-27 20:11:17 -0700151 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000152
Mark Brownc593b522010-10-27 20:11:17 -0700153 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
154 if (ret)
155 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000156
157 return count;
158}
159
160static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
161
Mark Brown2624d5f2009-11-03 21:56:13 +0000162#ifdef CONFIG_DEBUG_FS
163static int codec_reg_open_file(struct inode *inode, struct file *file)
164{
165 file->private_data = inode->i_private;
166 return 0;
167}
168
169static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
170 size_t count, loff_t *ppos)
171{
172 ssize_t ret;
173 struct snd_soc_codec *codec = file->private_data;
174 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
175 if (!buf)
176 return -ENOMEM;
177 ret = soc_codec_reg_show(codec, buf);
178 if (ret >= 0)
179 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
180 kfree(buf);
181 return ret;
182}
183
184static ssize_t codec_reg_write_file(struct file *file,
185 const char __user *user_buf, size_t count, loff_t *ppos)
186{
187 char buf[32];
188 int buf_size;
189 char *start = buf;
190 unsigned long reg, value;
191 int step = 1;
192 struct snd_soc_codec *codec = file->private_data;
193
194 buf_size = min(count, (sizeof(buf)-1));
195 if (copy_from_user(buf, user_buf, buf_size))
196 return -EFAULT;
197 buf[buf_size] = 0;
198
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000199 if (codec->driver->reg_cache_step)
200 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000201
202 while (*start == ' ')
203 start++;
204 reg = simple_strtoul(start, &start, 16);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000205 if ((reg >= codec->driver->reg_cache_size) || (reg % step))
Mark Brown2624d5f2009-11-03 21:56:13 +0000206 return -EINVAL;
207 while (*start == ' ')
208 start++;
209 if (strict_strtoul(start, 16, &value))
210 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000211
212 /* Userspace has been fiddling around behind the kernel's back */
213 add_taint(TAINT_USER);
214
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000215 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000216 return buf_size;
217}
218
219static const struct file_operations codec_reg_fops = {
220 .open = codec_reg_open_file,
221 .read = codec_reg_read_file,
222 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200223 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000224};
225
226static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
227{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200228 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
229
230 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
231 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000232 if (!codec->debugfs_codec_root) {
233 printk(KERN_WARNING
234 "ASoC: Failed to create codec debugfs directory\n");
235 return;
236 }
237
238 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
239 codec->debugfs_codec_root,
240 codec, &codec_reg_fops);
241 if (!codec->debugfs_reg)
242 printk(KERN_WARNING
243 "ASoC: Failed to create codec register debugfs file\n");
244
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200245 codec->dapm.debugfs_dapm = debugfs_create_dir("dapm",
Mark Brown2624d5f2009-11-03 21:56:13 +0000246 codec->debugfs_codec_root);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200247 if (!codec->dapm.debugfs_dapm)
Mark Brown2624d5f2009-11-03 21:56:13 +0000248 printk(KERN_WARNING
249 "Failed to create DAPM debugfs directory\n");
250
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200251 snd_soc_dapm_debugfs_init(&codec->dapm);
Mark Brown2624d5f2009-11-03 21:56:13 +0000252}
253
254static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
255{
256 debugfs_remove_recursive(codec->debugfs_codec_root);
257}
258
Mark Brownc3c5a192010-09-15 18:15:14 +0100259static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
260 size_t count, loff_t *ppos)
261{
262 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100263 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100264 struct snd_soc_codec *codec;
265
266 if (!buf)
267 return -ENOMEM;
268
Mark Brown2b194f9d2010-10-13 10:52:16 +0100269 list_for_each_entry(codec, &codec_list, list) {
270 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
271 codec->name);
272 if (len >= 0)
273 ret += len;
274 if (ret > PAGE_SIZE) {
275 ret = PAGE_SIZE;
276 break;
277 }
278 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100279
280 if (ret >= 0)
281 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
282
283 kfree(buf);
284
285 return ret;
286}
287
288static const struct file_operations codec_list_fops = {
289 .read = codec_list_read_file,
290 .llseek = default_llseek,/* read accesses f_pos */
291};
292
Mark Brownf3208782010-09-15 18:19:07 +0100293static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
294 size_t count, loff_t *ppos)
295{
296 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100297 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100298 struct snd_soc_dai *dai;
299
300 if (!buf)
301 return -ENOMEM;
302
Mark Brown2b194f9d2010-10-13 10:52:16 +0100303 list_for_each_entry(dai, &dai_list, list) {
304 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
305 if (len >= 0)
306 ret += len;
307 if (ret > PAGE_SIZE) {
308 ret = PAGE_SIZE;
309 break;
310 }
311 }
Mark Brownf3208782010-09-15 18:19:07 +0100312
Mark Brown2b194f9d2010-10-13 10:52:16 +0100313 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100314
315 kfree(buf);
316
317 return ret;
318}
319
320static const struct file_operations dai_list_fops = {
321 .read = dai_list_read_file,
322 .llseek = default_llseek,/* read accesses f_pos */
323};
324
Mark Brown19c7ac22010-09-15 18:22:40 +0100325static ssize_t platform_list_read_file(struct file *file,
326 char __user *user_buf,
327 size_t count, loff_t *ppos)
328{
329 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100330 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100331 struct snd_soc_platform *platform;
332
333 if (!buf)
334 return -ENOMEM;
335
Mark Brown2b194f9d2010-10-13 10:52:16 +0100336 list_for_each_entry(platform, &platform_list, list) {
337 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
338 platform->name);
339 if (len >= 0)
340 ret += len;
341 if (ret > PAGE_SIZE) {
342 ret = PAGE_SIZE;
343 break;
344 }
345 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100346
Mark Brown2b194f9d2010-10-13 10:52:16 +0100347 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100348
349 kfree(buf);
350
351 return ret;
352}
353
354static const struct file_operations platform_list_fops = {
355 .read = platform_list_read_file,
356 .llseek = default_llseek,/* read accesses f_pos */
357};
358
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200359static void soc_init_card_debugfs(struct snd_soc_card *card)
360{
361 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000362 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200363 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200364 dev_warn(card->dev,
365 "ASoC: Failed to create codec debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200366 return;
367 }
368
369 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
370 card->debugfs_card_root,
371 &card->pop_time);
372 if (!card->debugfs_pop_time)
373 dev_warn(card->dev,
374 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200375}
376
377static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
378{
379 debugfs_remove_recursive(card->debugfs_card_root);
380}
381
Mark Brown2624d5f2009-11-03 21:56:13 +0000382#else
383
384static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
385{
386}
387
388static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
389{
390}
Axel Linb95fccb2010-11-09 17:06:44 +0800391
392static inline void soc_init_card_debugfs(struct snd_soc_card *card)
393{
394}
395
396static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
397{
398}
Mark Brown2624d5f2009-11-03 21:56:13 +0000399#endif
400
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200401#ifdef CONFIG_SND_SOC_AC97_BUS
402/* unregister ac97 codec */
403static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
404{
405 if (codec->ac97->dev.bus)
406 device_unregister(&codec->ac97->dev);
407 return 0;
408}
409
410/* stop no dev release warning */
411static void soc_ac97_device_release(struct device *dev){}
412
413/* register ac97 codec to bus */
414static int soc_ac97_dev_register(struct snd_soc_codec *codec)
415{
416 int err;
417
418 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100419 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200420 codec->ac97->dev.release = soc_ac97_device_release;
421
Kay Sieversbb072bf2008-11-02 03:50:35 +0100422 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000423 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200424 err = device_register(&codec->ac97->dev);
425 if (err < 0) {
426 snd_printk(KERN_ERR "Can't register ac97 bus\n");
427 codec->ac97->dev.bus = NULL;
428 return err;
429 }
430 return 0;
431}
432#endif
433
Mark Brown06f409d2009-04-07 18:10:13 +0100434static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
435{
436 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000437 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
438 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Mark Brown06f409d2009-04-07 18:10:13 +0100439 int ret;
440
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000441 if (codec_dai->driver->symmetric_rates || cpu_dai->driver->symmetric_rates ||
442 rtd->dai_link->symmetric_rates) {
443 dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n",
444 rtd->rate);
Mark Brown06f409d2009-04-07 18:10:13 +0100445
446 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
447 SNDRV_PCM_HW_PARAM_RATE,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000448 rtd->rate,
449 rtd->rate);
Mark Brown06f409d2009-04-07 18:10:13 +0100450 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000451 dev_err(&rtd->dev,
Mark Brown06f409d2009-04-07 18:10:13 +0100452 "Unable to apply rate symmetry constraint: %d\n", ret);
453 return ret;
454 }
455 }
456
457 return 0;
458}
459
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200460/*
461 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
462 * then initialized and any private data can be allocated. This also calls
463 * startup for the cpu DAI, platform, machine and codec DAI.
464 */
465static int soc_pcm_open(struct snd_pcm_substream *substream)
466{
467 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200468 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000469 struct snd_soc_platform *platform = rtd->platform;
470 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
471 struct snd_soc_dai *codec_dai = rtd->codec_dai;
472 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
473 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200474 int ret = 0;
475
476 mutex_lock(&pcm_mutex);
477
478 /* startup the audio subsystem */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000479 if (cpu_dai->driver->ops->startup) {
480 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200481 if (ret < 0) {
482 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100483 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200484 goto out;
485 }
486 }
487
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000488 if (platform->driver->ops->open) {
489 ret = platform->driver->ops->open(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200490 if (ret < 0) {
491 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
492 goto platform_err;
493 }
494 }
495
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000496 if (codec_dai->driver->ops->startup) {
497 ret = codec_dai->driver->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100498 if (ret < 0) {
499 printk(KERN_ERR "asoc: can't open codec %s\n",
500 codec_dai->name);
501 goto codec_dai_err;
502 }
503 }
504
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000505 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
506 ret = rtd->dai_link->ops->startup(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200507 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000508 printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200509 goto machine_err;
510 }
511 }
512
Mark Browna00f90f2010-12-02 16:24:24 +0000513 /* Check that the codec and cpu DAIs are compatible */
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200514 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
515 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000516 max(codec_dai_drv->playback.rate_min,
517 cpu_dai_drv->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200518 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000519 min(codec_dai_drv->playback.rate_max,
520 cpu_dai_drv->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200521 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000522 max(codec_dai_drv->playback.channels_min,
523 cpu_dai_drv->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200524 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000525 min(codec_dai_drv->playback.channels_max,
526 cpu_dai_drv->playback.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100527 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000528 codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100529 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000530 codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates;
531 if (codec_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900532 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000533 runtime->hw.rates |= cpu_dai_drv->playback.rates;
534 if (cpu_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900535 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000536 runtime->hw.rates |= codec_dai_drv->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200537 } else {
538 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000539 max(codec_dai_drv->capture.rate_min,
540 cpu_dai_drv->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200541 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000542 min(codec_dai_drv->capture.rate_max,
543 cpu_dai_drv->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200544 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000545 max(codec_dai_drv->capture.channels_min,
546 cpu_dai_drv->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200547 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000548 min(codec_dai_drv->capture.channels_max,
549 cpu_dai_drv->capture.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100550 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000551 codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100552 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000553 codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates;
554 if (codec_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900555 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000556 runtime->hw.rates |= cpu_dai_drv->capture.rates;
557 if (cpu_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900558 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000559 runtime->hw.rates |= codec_dai_drv->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200560 }
561
562 snd_pcm_limit_hw_rates(runtime);
563 if (!runtime->hw.rates) {
564 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100565 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900566 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200567 }
568 if (!runtime->hw.formats) {
569 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100570 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900571 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200572 }
573 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
574 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000575 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900576 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200577 }
578
Mark Brown06f409d2009-04-07 18:10:13 +0100579 /* Symmetry only applies if we've already got an active stream. */
580 if (cpu_dai->active || codec_dai->active) {
581 ret = soc_pcm_apply_symmetry(substream);
582 if (ret != 0)
Jassi Brarbb1c0472010-02-25 11:24:53 +0900583 goto config_err;
Mark Brown06f409d2009-04-07 18:10:13 +0100584 }
585
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000586 pr_debug("asoc: %s <-> %s info:\n",
587 codec_dai->name, cpu_dai->name);
Mark Brownf24368c2008-10-21 21:45:08 +0100588 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
589 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
590 runtime->hw.channels_max);
591 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
592 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200593
Jassi Brar14dc5732010-02-26 09:12:32 +0900594 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000595 cpu_dai->playback_active++;
596 codec_dai->playback_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900597 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000598 cpu_dai->capture_active++;
599 codec_dai->capture_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900600 }
601 cpu_dai->active++;
602 codec_dai->active++;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000603 rtd->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200604 mutex_unlock(&pcm_mutex);
605 return 0;
606
Jassi Brarbb1c0472010-02-25 11:24:53 +0900607config_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000608 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
609 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200610
Jassi Brarbb1c0472010-02-25 11:24:53 +0900611machine_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000612 if (codec_dai->driver->ops->shutdown)
613 codec_dai->driver->ops->shutdown(substream, codec_dai);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900614
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100615codec_dai_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000616 if (platform->driver->ops->close)
617 platform->driver->ops->close(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200618
619platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000620 if (cpu_dai->driver->ops->shutdown)
621 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200622out:
623 mutex_unlock(&pcm_mutex);
624 return ret;
625}
626
627/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200628 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200629 * This is to ensure there are no pops or clicks in between any music tracks
630 * due to DAPM power cycling.
631 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100632static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200633{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000634 struct snd_soc_pcm_runtime *rtd =
635 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
636 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200637
638 mutex_lock(&pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200639
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000640 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
641 codec_dai->driver->playback.stream_name,
642 codec_dai->playback_active ? "active" : "inactive",
643 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200644
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000645 /* are we waiting on this codec DAI stream */
646 if (codec_dai->pop_wait == 1) {
647 codec_dai->pop_wait = 0;
648 snd_soc_dapm_stream_event(rtd,
649 codec_dai->driver->playback.stream_name,
650 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200651 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000652
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200653 mutex_unlock(&pcm_mutex);
654}
655
656/*
657 * Called by ALSA when a PCM substream is closed. Private data can be
658 * freed here. The cpu DAI, codec DAI, machine and platform are also
659 * shutdown.
660 */
661static int soc_codec_close(struct snd_pcm_substream *substream)
662{
663 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000664 struct snd_soc_platform *platform = rtd->platform;
665 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
666 struct snd_soc_dai *codec_dai = rtd->codec_dai;
667 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200668
669 mutex_lock(&pcm_mutex);
670
Jassi Brar14dc5732010-02-26 09:12:32 +0900671 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000672 cpu_dai->playback_active--;
673 codec_dai->playback_active--;
Jassi Brar14dc5732010-02-26 09:12:32 +0900674 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000675 cpu_dai->capture_active--;
676 codec_dai->capture_active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200677 }
Jassi Brar14dc5732010-02-26 09:12:32 +0900678
679 cpu_dai->active--;
680 codec_dai->active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200681 codec->active--;
682
Mark Brown6010b2d2008-09-06 18:33:24 +0100683 /* Muting the DAC suppresses artifacts caused during digital
684 * shutdown, for example from stopping clocks.
685 */
686 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
687 snd_soc_dai_digital_mute(codec_dai, 1);
688
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000689 if (cpu_dai->driver->ops->shutdown)
690 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200691
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000692 if (codec_dai->driver->ops->shutdown)
693 codec_dai->driver->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200694
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000695 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
696 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200697
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000698 if (platform->driver->ops->close)
699 platform->driver->ops->close(substream);
700 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200701
702 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
703 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100704 codec_dai->pop_wait = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000705 schedule_delayed_work(&rtd->delayed_work,
706 msecs_to_jiffies(rtd->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200707 } else {
708 /* capture streams can be powered down now */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000709 snd_soc_dapm_stream_event(rtd,
710 codec_dai->driver->capture.stream_name,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100711 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200712 }
713
714 mutex_unlock(&pcm_mutex);
715 return 0;
716}
717
718/*
719 * Called by ALSA when the PCM substream is prepared, can set format, sample
720 * rate, etc. This function is non atomic and can be called multiple times,
721 * it can refer to the runtime info.
722 */
723static int soc_pcm_prepare(struct snd_pcm_substream *substream)
724{
725 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000726 struct snd_soc_platform *platform = rtd->platform;
727 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
728 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200729 int ret = 0;
730
731 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100732
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000733 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
734 ret = rtd->dai_link->ops->prepare(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100735 if (ret < 0) {
736 printk(KERN_ERR "asoc: machine prepare error\n");
737 goto out;
738 }
739 }
740
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000741 if (platform->driver->ops->prepare) {
742 ret = platform->driver->ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200743 if (ret < 0) {
744 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200745 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200746 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200747 }
748
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000749 if (codec_dai->driver->ops->prepare) {
750 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200751 if (ret < 0) {
752 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200753 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200754 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200755 }
756
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000757 if (cpu_dai->driver->ops->prepare) {
758 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100759 if (ret < 0) {
760 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
761 goto out;
762 }
763 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200764
Mark Brownd45f6212008-10-14 13:58:36 +0100765 /* cancel any delayed stream shutdown that is pending */
766 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
767 codec_dai->pop_wait) {
768 codec_dai->pop_wait = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000769 cancel_delayed_work(&rtd->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100770 }
771
Mark Brown452c5ea2009-05-17 21:41:23 +0100772 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000773 snd_soc_dapm_stream_event(rtd,
774 codec_dai->driver->playback.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100775 SND_SOC_DAPM_STREAM_START);
776 else
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000777 snd_soc_dapm_stream_event(rtd,
778 codec_dai->driver->capture.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100779 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100780
Mark Brown452c5ea2009-05-17 21:41:23 +0100781 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200782
783out:
784 mutex_unlock(&pcm_mutex);
785 return ret;
786}
787
788/*
789 * Called by ALSA when the hardware params are set by application. This
790 * function can also be called multiple times and can allocate buffers
791 * (using snd_pcm_lib_* ). It's non-atomic.
792 */
793static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
794 struct snd_pcm_hw_params *params)
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);
803
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000804 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
805 ret = rtd->dai_link->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200806 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100807 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200808 goto out;
809 }
810 }
811
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000812 if (codec_dai->driver->ops->hw_params) {
813 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100814 if (ret < 0) {
815 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
816 codec_dai->name);
817 goto codec_err;
818 }
819 }
820
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000821 if (cpu_dai->driver->ops->hw_params) {
822 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200823 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200824 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100825 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200826 goto interface_err;
827 }
828 }
829
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000830 if (platform->driver->ops->hw_params) {
831 ret = platform->driver->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200832 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200833 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200834 platform->name);
835 goto platform_err;
836 }
837 }
838
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000839 rtd->rate = params_rate(params);
Mark Brown06f409d2009-04-07 18:10:13 +0100840
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200841out:
842 mutex_unlock(&pcm_mutex);
843 return ret;
844
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200845platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000846 if (cpu_dai->driver->ops->hw_free)
847 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200848
849interface_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000850 if (codec_dai->driver->ops->hw_free)
851 codec_dai->driver->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100852
853codec_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000854 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
855 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200856
857 mutex_unlock(&pcm_mutex);
858 return ret;
859}
860
861/*
Mark Browna00f90f2010-12-02 16:24:24 +0000862 * Frees resources allocated by hw_params, can be called multiple times
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200863 */
864static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
865{
866 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000867 struct snd_soc_platform *platform = rtd->platform;
868 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
869 struct snd_soc_dai *codec_dai = rtd->codec_dai;
870 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200871
872 mutex_lock(&pcm_mutex);
873
874 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100875 if (!codec->active)
876 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200877
878 /* free any machine hw params */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000879 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
880 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200881
882 /* free any DMA resources */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000883 if (platform->driver->ops->hw_free)
884 platform->driver->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200885
Mark Browna00f90f2010-12-02 16:24:24 +0000886 /* now free hw params for the DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000887 if (codec_dai->driver->ops->hw_free)
888 codec_dai->driver->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200889
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000890 if (cpu_dai->driver->ops->hw_free)
891 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200892
893 mutex_unlock(&pcm_mutex);
894 return 0;
895}
896
897static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
898{
899 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000900 struct snd_soc_platform *platform = rtd->platform;
901 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
902 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200903 int ret;
904
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000905 if (codec_dai->driver->ops->trigger) {
906 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200907 if (ret < 0)
908 return ret;
909 }
910
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000911 if (platform->driver->ops->trigger) {
912 ret = platform->driver->ops->trigger(substream, cmd);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200913 if (ret < 0)
914 return ret;
915 }
916
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000917 if (cpu_dai->driver->ops->trigger) {
918 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200919 if (ret < 0)
920 return ret;
921 }
922 return 0;
923}
924
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200925/*
926 * soc level wrapper for pointer callback
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200927 * If cpu_dai, codec_dai, platform driver has the delay callback, than
928 * the runtime->delay will be updated accordingly.
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200929 */
930static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
931{
932 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000933 struct snd_soc_platform *platform = rtd->platform;
934 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
935 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200936 struct snd_pcm_runtime *runtime = substream->runtime;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200937 snd_pcm_uframes_t offset = 0;
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200938 snd_pcm_sframes_t delay = 0;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200939
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000940 if (platform->driver->ops->pointer)
941 offset = platform->driver->ops->pointer(substream);
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200942
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000943 if (cpu_dai->driver->ops->delay)
944 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200945
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000946 if (codec_dai->driver->ops->delay)
947 delay += codec_dai->driver->ops->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200948
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000949 if (platform->driver->delay)
950 delay += platform->driver->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200951
952 runtime->delay = delay;
953
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200954 return offset;
955}
956
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200957/* ASoC PCM operations */
958static struct snd_pcm_ops soc_pcm_ops = {
959 .open = soc_pcm_open,
960 .close = soc_codec_close,
961 .hw_params = soc_pcm_hw_params,
962 .hw_free = soc_pcm_hw_free,
963 .prepare = soc_pcm_prepare,
964 .trigger = soc_pcm_trigger,
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200965 .pointer = soc_pcm_pointer,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200966};
967
968#ifdef CONFIG_PM
969/* powers down audio subsystem for suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100970static int soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200971{
Mark Brown416356f2009-06-30 19:05:15 +0100972 struct platform_device *pdev = to_platform_device(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000973 struct snd_soc_card *card = platform_get_drvdata(pdev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200974 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200975 int i;
976
Daniel Macke3509ff2009-06-03 17:44:49 +0200977 /* If the initialization of this soc device failed, there is no codec
978 * associated with it. Just bail out in this case.
979 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000980 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200981 return 0;
982
Andy Green6ed25972008-06-13 16:24:05 +0100983 /* Due to the resume being scheduled into a workqueue we could
984 * suspend before that's finished - wait for it to complete.
985 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000986 snd_power_lock(card->snd_card);
987 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
988 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100989
990 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000991 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100992
Mark Browna00f90f2010-12-02 16:24:24 +0000993 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000994 for (i = 0; i < card->num_rtd; i++) {
995 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
996 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100997
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000998 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100999 continue;
1000
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001001 if (drv->ops->digital_mute && dai->playback_active)
1002 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001003 }
1004
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001005 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001006 for (i = 0; i < card->num_rtd; i++) {
1007 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001008 continue;
1009
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001010 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +01001011 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001012
Mark Brown87506542008-11-18 20:50:34 +00001013 if (card->suspend_pre)
Mark Brown416356f2009-06-30 19:05:15 +01001014 card->suspend_pre(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001015
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001016 for (i = 0; i < card->num_rtd; i++) {
1017 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1018 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001019
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001020 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001021 continue;
1022
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001023 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
1024 cpu_dai->driver->suspend(cpu_dai);
1025 if (platform->driver->suspend && !platform->suspended) {
1026 platform->driver->suspend(cpu_dai);
1027 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +01001028 }
1029 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001030
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001031 /* close any waiting streams and save state */
1032 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +01001033 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001034 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001035 }
Mark Brown3efab7d2010-05-09 13:25:43 +01001036
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001037 for (i = 0; i < card->num_rtd; i++) {
1038 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1039
1040 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001041 continue;
1042
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001043 if (driver->playback.stream_name != NULL)
1044 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1045 SND_SOC_DAPM_STREAM_SUSPEND);
1046
1047 if (driver->capture.stream_name != NULL)
1048 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1049 SND_SOC_DAPM_STREAM_SUSPEND);
1050 }
1051
1052 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001053 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001054 /* If there are paths active then the CODEC will be held with
1055 * bias _ON and should not be suspended. */
1056 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001057 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001058 case SND_SOC_BIAS_STANDBY:
1059 case SND_SOC_BIAS_OFF:
1060 codec->driver->suspend(codec, PMSG_SUSPEND);
1061 codec->suspended = 1;
1062 break;
1063 default:
1064 dev_dbg(codec->dev, "CODEC is on over suspend\n");
1065 break;
1066 }
1067 }
1068 }
1069
1070 for (i = 0; i < card->num_rtd; i++) {
1071 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1072
1073 if (card->rtd[i].dai_link->ignore_suspend)
1074 continue;
1075
1076 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
1077 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001078 }
1079
Mark Brown87506542008-11-18 20:50:34 +00001080 if (card->suspend_post)
Mark Brown416356f2009-06-30 19:05:15 +01001081 card->suspend_post(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001082
1083 return 0;
1084}
1085
Andy Green6ed25972008-06-13 16:24:05 +01001086/* deferred resume work, so resume can complete before we finished
1087 * setting our codec back up, which can be very slow on I2C
1088 */
1089static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001090{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001091 struct snd_soc_card *card =
1092 container_of(work, struct snd_soc_card, deferred_resume_work);
1093 struct platform_device *pdev = to_platform_device(card->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001094 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001095 int i;
1096
Andy Green6ed25972008-06-13 16:24:05 +01001097 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1098 * so userspace apps are blocked from touching us
1099 */
1100
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001101 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +01001102
Mark Brown99497882010-05-07 20:24:05 +01001103 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001104 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +01001105
Mark Brown87506542008-11-18 20:50:34 +00001106 if (card->resume_pre)
1107 card->resume_pre(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001108
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001109 /* resume AC97 DAIs */
1110 for (i = 0; i < card->num_rtd; i++) {
1111 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +01001112
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001113 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001114 continue;
1115
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001116 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
1117 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001118 }
1119
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001120 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001121 /* If the CODEC was idle over suspend then it will have been
1122 * left with bias OFF or STANDBY and suspended so we must now
1123 * resume. Otherwise the suspend was suppressed.
1124 */
1125 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001126 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001127 case SND_SOC_BIAS_STANDBY:
1128 case SND_SOC_BIAS_OFF:
1129 codec->driver->resume(codec);
1130 codec->suspended = 0;
1131 break;
1132 default:
1133 dev_dbg(codec->dev, "CODEC was on over suspend\n");
1134 break;
1135 }
Mark Brown1547aba2010-05-07 21:11:40 +01001136 }
1137 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001138
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001139 for (i = 0; i < card->num_rtd; i++) {
1140 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001141
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001142 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001143 continue;
1144
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001145 if (driver->playback.stream_name != NULL)
1146 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001147 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001148
1149 if (driver->capture.stream_name != NULL)
1150 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001151 SND_SOC_DAPM_STREAM_RESUME);
1152 }
1153
Mark Brown3ff3f642008-05-19 12:32:25 +02001154 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001155 for (i = 0; i < card->num_rtd; i++) {
1156 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1157 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001158
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001159 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001160 continue;
1161
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001162 if (drv->ops->digital_mute && dai->playback_active)
1163 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001164 }
1165
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001166 for (i = 0; i < card->num_rtd; i++) {
1167 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1168 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001169
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001170 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001171 continue;
1172
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001173 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
1174 cpu_dai->driver->resume(cpu_dai);
1175 if (platform->driver->resume && platform->suspended) {
1176 platform->driver->resume(cpu_dai);
1177 platform->suspended = 0;
1178 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001179 }
1180
Mark Brown87506542008-11-18 20:50:34 +00001181 if (card->resume_post)
1182 card->resume_post(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001183
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001184 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +01001185
1186 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001187 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +01001188}
1189
1190/* powers up audio subsystem after a suspend */
Mark Brown416356f2009-06-30 19:05:15 +01001191static int soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +01001192{
Mark Brown416356f2009-06-30 19:05:15 +01001193 struct platform_device *pdev = to_platform_device(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001194 struct snd_soc_card *card = platform_get_drvdata(pdev);
1195 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +02001196
Mark Brown64ab9ba2009-03-31 11:27:03 +01001197 /* AC97 devices might have other drivers hanging off them so
1198 * need to resume immediately. Other drivers don't have that
1199 * problem and may take a substantial amount of time to resume
1200 * due to I/O costs and anti-pop so handle them out of line.
1201 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001202 for (i = 0; i < card->num_rtd; i++) {
1203 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1204 if (cpu_dai->driver->ac97_control) {
1205 dev_dbg(dev, "Resuming AC97 immediately\n");
1206 soc_resume_deferred(&card->deferred_resume_work);
1207 } else {
1208 dev_dbg(dev, "Scheduling resume work\n");
1209 if (!schedule_work(&card->deferred_resume_work))
1210 dev_err(dev, "resume work item may be lost\n");
1211 }
Mark Brown64ab9ba2009-03-31 11:27:03 +01001212 }
Andy Green6ed25972008-06-13 16:24:05 +01001213
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001214 return 0;
1215}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001216#else
1217#define soc_suspend NULL
1218#define soc_resume NULL
1219#endif
1220
Barry Song02a06d32009-10-16 18:13:38 +08001221static struct snd_soc_dai_ops null_dai_ops = {
1222};
1223
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001224static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001225{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001226 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1227 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +00001228 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001229 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001230 struct snd_soc_dai *codec_dai, *cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001231
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001232 if (rtd->complete)
1233 return 1;
1234 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +00001235
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001236 /* do we already have the CPU DAI for this link ? */
1237 if (rtd->cpu_dai) {
1238 goto find_codec;
1239 }
1240 /* no, then find CPU DAI from registered DAIs*/
1241 list_for_each_entry(cpu_dai, &dai_list, list) {
1242 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
1243
1244 if (!try_module_get(cpu_dai->dev->driver->owner))
1245 return -ENODEV;
1246
1247 rtd->cpu_dai = cpu_dai;
1248 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001249 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001250 }
1251 dev_dbg(card->dev, "CPU DAI %s not registered\n",
1252 dai_link->cpu_dai_name);
1253
1254find_codec:
1255 /* do we already have the CODEC for this link ? */
1256 if (rtd->codec) {
1257 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +00001258 }
1259
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001260 /* no, then find CODEC from registered CODECs*/
1261 list_for_each_entry(codec, &codec_list, list) {
1262 if (!strcmp(codec->name, dai_link->codec_name)) {
1263 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +00001264
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001265 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
1266 list_for_each_entry(codec_dai, &dai_list, list) {
1267 if (codec->dev == codec_dai->dev &&
1268 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
1269 rtd->codec_dai = codec_dai;
1270 goto find_platform;
Mark Brown6b05eda2008-12-08 19:26:48 +00001271 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001272 }
1273 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
1274 dai_link->codec_dai_name);
1275
1276 goto find_platform;
1277 }
1278 }
1279 dev_dbg(card->dev, "CODEC %s not registered\n",
1280 dai_link->codec_name);
1281
1282find_platform:
1283 /* do we already have the CODEC DAI for this link ? */
1284 if (rtd->platform) {
1285 goto out;
1286 }
1287 /* no, then find CPU DAI from registered DAIs*/
1288 list_for_each_entry(platform, &platform_list, list) {
1289 if (!strcmp(platform->name, dai_link->platform_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001290 rtd->platform = platform;
1291 goto out;
1292 }
1293 }
1294
1295 dev_dbg(card->dev, "platform %s not registered\n",
1296 dai_link->platform_name);
1297 return 0;
1298
1299out:
1300 /* mark rtd as complete if we found all 4 of our client devices */
1301 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
1302 rtd->complete = 1;
1303 card->num_rtd++;
1304 }
1305 return 1;
1306}
1307
Jarkko Nikula589c3562010-12-06 16:27:07 +02001308static void soc_remove_codec(struct snd_soc_codec *codec)
1309{
1310 int err;
1311
1312 if (codec->driver->remove) {
1313 err = codec->driver->remove(codec);
1314 if (err < 0)
1315 dev_err(codec->dev,
1316 "asoc: failed to remove %s: %d\n",
1317 codec->name, err);
1318 }
1319
1320 /* Make sure all DAPM widgets are freed */
1321 snd_soc_dapm_free(&codec->dapm);
1322
1323 soc_cleanup_codec_debugfs(codec);
1324 codec->probed = 0;
1325 list_del(&codec->card_list);
1326 module_put(codec->dev->driver->owner);
1327}
1328
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001329static void soc_remove_dai_link(struct snd_soc_card *card, int num)
1330{
1331 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1332 struct snd_soc_codec *codec = rtd->codec;
1333 struct snd_soc_platform *platform = rtd->platform;
1334 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1335 int err;
1336
1337 /* unregister the rtd device */
1338 if (rtd->dev_registered) {
1339 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001340 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001341 device_unregister(&rtd->dev);
1342 rtd->dev_registered = 0;
1343 }
1344
1345 /* remove the CODEC DAI */
1346 if (codec_dai && codec_dai->probed) {
1347 if (codec_dai->driver->remove) {
1348 err = codec_dai->driver->remove(codec_dai);
1349 if (err < 0)
1350 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
1351 }
1352 codec_dai->probed = 0;
1353 list_del(&codec_dai->card_list);
1354 }
1355
1356 /* remove the platform */
1357 if (platform && platform->probed) {
1358 if (platform->driver->remove) {
1359 err = platform->driver->remove(platform);
1360 if (err < 0)
1361 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
1362 }
1363 platform->probed = 0;
1364 list_del(&platform->card_list);
1365 module_put(platform->dev->driver->owner);
1366 }
1367
1368 /* remove the CODEC */
Jarkko Nikula589c3562010-12-06 16:27:07 +02001369 if (codec && codec->probed)
1370 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001371
1372 /* remove the cpu_dai */
1373 if (cpu_dai && cpu_dai->probed) {
1374 if (cpu_dai->driver->remove) {
1375 err = cpu_dai->driver->remove(cpu_dai);
1376 if (err < 0)
1377 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
1378 }
1379 cpu_dai->probed = 0;
1380 list_del(&cpu_dai->card_list);
1381 module_put(cpu_dai->dev->driver->owner);
1382 }
1383}
1384
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001385static void soc_set_name_prefix(struct snd_soc_card *card,
1386 struct snd_soc_codec *codec)
1387{
1388 int i;
1389
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001390 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001391 return;
1392
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001393 for (i = 0; i < card->num_configs; i++) {
1394 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001395 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1396 codec->name_prefix = map->name_prefix;
1397 break;
1398 }
1399 }
1400}
1401
Jarkko Nikula589c3562010-12-06 16:27:07 +02001402static int soc_probe_codec(struct snd_soc_card *card,
1403 struct snd_soc_codec *codec)
1404{
1405 int ret = 0;
1406
1407 codec->card = card;
1408 codec->dapm.card = card;
1409 soc_set_name_prefix(card, codec);
1410
1411 if (codec->driver->probe) {
1412 ret = codec->driver->probe(codec);
1413 if (ret < 0) {
1414 dev_err(codec->dev,
1415 "asoc: failed to probe CODEC %s: %d\n",
1416 codec->name, ret);
1417 return ret;
1418 }
1419 }
1420
1421 soc_init_codec_debugfs(codec);
1422
1423 /* mark codec as probed and add to card codec list */
Harsha Priyaf6c2ed52011-01-05 11:34:51 +05301424 if (!try_module_get(codec->dev->driver->owner))
1425 return -ENODEV;
1426
Jarkko Nikula589c3562010-12-06 16:27:07 +02001427 codec->probed = 1;
1428 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001429 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001430
1431 return ret;
1432}
1433
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001434static void rtd_release(struct device *dev) {}
1435
Jarkko Nikula589c3562010-12-06 16:27:07 +02001436static int soc_post_component_init(struct snd_soc_card *card,
1437 struct snd_soc_codec *codec,
1438 int num, int dailess)
1439{
1440 struct snd_soc_dai_link *dai_link = NULL;
1441 struct snd_soc_aux_dev *aux_dev = NULL;
1442 struct snd_soc_pcm_runtime *rtd;
1443 const char *temp, *name;
1444 int ret = 0;
1445
1446 if (!dailess) {
1447 dai_link = &card->dai_link[num];
1448 rtd = &card->rtd[num];
1449 name = dai_link->name;
1450 } else {
1451 aux_dev = &card->aux_dev[num];
1452 rtd = &card->rtd_aux[num];
1453 name = aux_dev->name;
1454 }
1455
1456 /* machine controls, routes and widgets are not prefixed */
1457 temp = codec->name_prefix;
1458 codec->name_prefix = NULL;
1459
1460 /* do machine specific initialization */
1461 if (!dailess && dai_link->init)
1462 ret = dai_link->init(rtd);
1463 else if (dailess && aux_dev->init)
1464 ret = aux_dev->init(&codec->dapm);
1465 if (ret < 0) {
1466 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1467 return ret;
1468 }
1469 codec->name_prefix = temp;
1470
1471 /* Make sure all DAPM widgets are instantiated */
1472 snd_soc_dapm_new_widgets(&codec->dapm);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001473
1474 /* register the rtd device */
1475 rtd->codec = codec;
1476 rtd->card = card;
1477 rtd->dev.parent = card->dev;
1478 rtd->dev.release = rtd_release;
1479 rtd->dev.init_name = name;
1480 ret = device_register(&rtd->dev);
1481 if (ret < 0) {
1482 dev_err(card->dev,
1483 "asoc: failed to register runtime device: %d\n", ret);
1484 return ret;
1485 }
1486 rtd->dev_registered = 1;
1487
1488 /* add DAPM sysfs entries for this codec */
1489 ret = snd_soc_dapm_sys_add(&rtd->dev);
1490 if (ret < 0)
1491 dev_err(codec->dev,
1492 "asoc: failed to add codec dapm sysfs entries: %d\n",
1493 ret);
1494
1495 /* add codec sysfs entries */
1496 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1497 if (ret < 0)
1498 dev_err(codec->dev,
1499 "asoc: failed to add codec sysfs files: %d\n", ret);
1500
1501 return 0;
1502}
1503
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001504static int soc_probe_dai_link(struct snd_soc_card *card, int num)
1505{
1506 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1507 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1508 struct snd_soc_codec *codec = rtd->codec;
1509 struct snd_soc_platform *platform = rtd->platform;
1510 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1511 int ret;
1512
1513 dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num);
1514
1515 /* config components */
1516 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001517 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001518 codec_dai->card = card;
1519 cpu_dai->card = card;
1520
1521 /* set default power off timeout */
1522 rtd->pmdown_time = pmdown_time;
1523
1524 /* probe the cpu_dai */
1525 if (!cpu_dai->probed) {
1526 if (cpu_dai->driver->probe) {
1527 ret = cpu_dai->driver->probe(cpu_dai);
1528 if (ret < 0) {
1529 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1530 cpu_dai->name);
1531 return ret;
1532 }
1533 }
1534 cpu_dai->probed = 1;
1535 /* mark cpu_dai as probed and add to card cpu_dai list */
1536 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1537 }
1538
1539 /* probe the CODEC */
1540 if (!codec->probed) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001541 ret = soc_probe_codec(card, codec);
1542 if (ret < 0)
1543 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001544 }
1545
1546 /* probe the platform */
1547 if (!platform->probed) {
1548 if (platform->driver->probe) {
1549 ret = platform->driver->probe(platform);
1550 if (ret < 0) {
1551 printk(KERN_ERR "asoc: failed to probe platform %s\n",
1552 platform->name);
1553 return ret;
1554 }
1555 }
1556 /* mark platform as probed and add to card platform list */
Harsha Priyaf6c2ed52011-01-05 11:34:51 +05301557
1558 if (!try_module_get(platform->dev->driver->owner))
1559 return -ENODEV;
1560
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001561 platform->probed = 1;
1562 list_add(&platform->card_list, &card->platform_dev_list);
1563 }
1564
1565 /* probe the CODEC DAI */
1566 if (!codec_dai->probed) {
1567 if (codec_dai->driver->probe) {
1568 ret = codec_dai->driver->probe(codec_dai);
1569 if (ret < 0) {
1570 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1571 codec_dai->name);
1572 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001573 }
1574 }
1575
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001576 /* mark cpu_dai as probed and add to card cpu_dai list */
1577 codec_dai->probed = 1;
1578 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001579 }
1580
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001581 /* DAPM dai link stream work */
1582 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
1583
Jarkko Nikula589c3562010-12-06 16:27:07 +02001584 ret = soc_post_component_init(card, codec, num, 0);
1585 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001586 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001587
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001588 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1589 if (ret < 0)
1590 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1591
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001592 /* create the pcm */
1593 ret = soc_new_pcm(rtd, num);
1594 if (ret < 0) {
1595 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1596 return ret;
1597 }
1598
1599 /* add platform data for AC97 devices */
1600 if (rtd->codec_dai->driver->ac97_control)
1601 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1602
1603 return 0;
1604}
1605
1606#ifdef CONFIG_SND_SOC_AC97_BUS
1607static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1608{
1609 int ret;
1610
1611 /* Only instantiate AC97 if not already done by the adaptor
1612 * for the generic AC97 subsystem.
1613 */
1614 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001615 /*
1616 * It is possible that the AC97 device is already registered to
1617 * the device subsystem. This happens when the device is created
1618 * via snd_ac97_mixer(). Currently only SoC codec that does so
1619 * is the generic AC97 glue but others migh emerge.
1620 *
1621 * In those cases we don't try to register the device again.
1622 */
1623 if (!rtd->codec->ac97_created)
1624 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001625
1626 ret = soc_ac97_dev_register(rtd->codec);
1627 if (ret < 0) {
1628 printk(KERN_ERR "asoc: AC97 device register failed\n");
1629 return ret;
1630 }
1631
1632 rtd->codec->ac97_registered = 1;
1633 }
1634 return 0;
1635}
1636
1637static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1638{
1639 if (codec->ac97_registered) {
1640 soc_ac97_dev_unregister(codec);
1641 codec->ac97_registered = 0;
1642 }
1643}
1644#endif
1645
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001646static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1647{
1648 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001649 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001650 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001651
1652 /* find CODEC from registered CODECs*/
1653 list_for_each_entry(codec, &codec_list, list) {
1654 if (!strcmp(codec->name, aux_dev->codec_name)) {
1655 if (codec->probed) {
1656 dev_err(codec->dev,
1657 "asoc: codec already probed");
1658 ret = -EBUSY;
1659 goto out;
1660 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001661 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001662 }
1663 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001664 /* codec not found */
1665 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1666 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001667
Jarkko Nikula676ad982010-12-03 09:18:22 +02001668found:
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001669 if (!try_module_get(codec->dev->driver->owner))
1670 return -ENODEV;
1671
Jarkko Nikula589c3562010-12-06 16:27:07 +02001672 ret = soc_probe_codec(card, codec);
1673 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001674 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001675
Jarkko Nikula589c3562010-12-06 16:27:07 +02001676 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001677
1678out:
1679 return ret;
1680}
1681
1682static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1683{
1684 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1685 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001686
1687 /* unregister the rtd device */
1688 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001689 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001690 device_unregister(&rtd->dev);
1691 rtd->dev_registered = 0;
1692 }
1693
Jarkko Nikula589c3562010-12-06 16:27:07 +02001694 if (codec && codec->probed)
1695 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001696}
1697
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001698static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1699 enum snd_soc_compress_type compress_type)
1700{
1701 int ret;
1702
1703 if (codec->cache_init)
1704 return 0;
1705
1706 /* override the compress_type if necessary */
1707 if (compress_type && codec->compress_type != compress_type)
1708 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001709 ret = snd_soc_cache_init(codec);
1710 if (ret < 0) {
1711 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1712 ret);
1713 return ret;
1714 }
1715 codec->cache_init = 1;
1716 return 0;
1717}
1718
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001719static void snd_soc_instantiate_card(struct snd_soc_card *card)
1720{
1721 struct platform_device *pdev = to_platform_device(card->dev);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001722 struct snd_soc_codec *codec;
1723 struct snd_soc_codec_conf *codec_conf;
1724 enum snd_soc_compress_type compress_type;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001725 int ret, i;
1726
1727 mutex_lock(&card->mutex);
1728
1729 if (card->instantiated) {
1730 mutex_unlock(&card->mutex);
1731 return;
1732 }
1733
1734 /* bind DAIs */
1735 for (i = 0; i < card->num_links; i++)
1736 soc_bind_dai_link(card, i);
1737
1738 /* bind completed ? */
1739 if (card->num_rtd != card->num_links) {
1740 mutex_unlock(&card->mutex);
1741 return;
1742 }
1743
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001744 /* initialize the register cache for each available codec */
1745 list_for_each_entry(codec, &codec_list, list) {
1746 if (codec->cache_init)
1747 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001748 /* by default we don't override the compress_type */
1749 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001750 /* check to see if we need to override the compress_type */
1751 for (i = 0; i < card->num_configs; ++i) {
1752 codec_conf = &card->codec_conf[i];
1753 if (!strcmp(codec->name, codec_conf->dev_name)) {
1754 compress_type = codec_conf->compress_type;
1755 if (compress_type && compress_type
1756 != codec->compress_type)
1757 break;
1758 }
1759 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001760 ret = snd_soc_init_codec_cache(codec, compress_type);
1761 if (ret < 0) {
1762 mutex_unlock(&card->mutex);
1763 return;
1764 }
1765 }
1766
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001767 /* card bind complete so register a sound card */
1768 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1769 card->owner, 0, &card->snd_card);
1770 if (ret < 0) {
1771 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1772 card->name);
1773 mutex_unlock(&card->mutex);
1774 return;
1775 }
1776 card->snd_card->dev = card->dev;
1777
Randy Dunlap1301a962008-06-17 19:19:34 +01001778#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +01001779 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001780 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001781#endif
Andy Green6ed25972008-06-13 16:24:05 +01001782
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001783 /* initialise the sound card only once */
1784 if (card->probe) {
1785 ret = card->probe(pdev);
1786 if (ret < 0)
1787 goto card_probe_error;
1788 }
1789
Mark Brownfe3e78e2009-11-03 22:13:13 +00001790 for (i = 0; i < card->num_links; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001791 ret = soc_probe_dai_link(card, i);
1792 if (ret < 0) {
Mark Brown321de0d2010-09-21 15:09:37 +01001793 pr_err("asoc: failed to instantiate card %s: %d\n",
1794 card->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001795 goto probe_dai_err;
1796 }
1797 }
1798
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001799 for (i = 0; i < card->num_aux_devs; i++) {
1800 ret = soc_probe_aux_dev(card, i);
1801 if (ret < 0) {
1802 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1803 card->name, ret);
1804 goto probe_aux_dev_err;
1805 }
1806 }
1807
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001808 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1809 "%s", card->name);
1810 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1811 "%s", card->name);
1812
1813 ret = snd_card_register(card->snd_card);
1814 if (ret < 0) {
1815 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001816 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001817 }
1818
1819#ifdef CONFIG_SND_SOC_AC97_BUS
1820 /* register any AC97 codecs */
1821 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001822 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1823 if (ret < 0) {
1824 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1825 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001826 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001827 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001828 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001829 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001830#endif
1831
Mark Brown435c5e22008-12-04 15:32:53 +00001832 card->instantiated = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001833 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001834 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001835
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001836probe_aux_dev_err:
1837 for (i = 0; i < card->num_aux_devs; i++)
1838 soc_remove_aux_dev(card, i);
1839
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001840probe_dai_err:
1841 for (i = 0; i < card->num_links; i++)
1842 soc_remove_dai_link(card, i);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001843
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001844card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001845 if (card->remove)
1846 card->remove(pdev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001847
1848 snd_card_free(card->snd_card);
1849
1850 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001851}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001852
Mark Brown435c5e22008-12-04 15:32:53 +00001853/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001854 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001855 * client_mutex.
1856 */
1857static void snd_soc_instantiate_cards(void)
1858{
1859 struct snd_soc_card *card;
1860 list_for_each_entry(card, &card_list, list)
1861 snd_soc_instantiate_card(card);
1862}
1863
1864/* probes a new socdev */
1865static int soc_probe(struct platform_device *pdev)
1866{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001867 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001868 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001869
Vinod Koul70a7ca32011-01-14 19:22:48 +05301870 /*
1871 * no card, so machine driver should be registering card
1872 * we should not be here in that case so ret error
1873 */
1874 if (!card)
1875 return -EINVAL;
1876
Mark Brown435c5e22008-12-04 15:32:53 +00001877 /* Bodge while we unpick instantiation */
1878 card->dev = &pdev->dev;
Vinod Koul4e10bda2011-01-13 22:48:52 +05301879 snd_soc_initialize_card_lists(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001880
Mark Brown435c5e22008-12-04 15:32:53 +00001881 ret = snd_soc_register_card(card);
1882 if (ret != 0) {
1883 dev_err(&pdev->dev, "Failed to register card\n");
1884 return ret;
1885 }
1886
1887 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001888}
1889
Vinod Koulb0e26482011-01-13 22:48:02 +05301890static int soc_cleanup_card_resources(struct snd_soc_card *card)
1891{
1892 struct platform_device *pdev = to_platform_device(card->dev);
1893 int i;
1894
1895 /* make sure any delayed work runs */
1896 for (i = 0; i < card->num_rtd; i++) {
1897 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1898 flush_delayed_work_sync(&rtd->delayed_work);
1899 }
1900
1901 /* remove auxiliary devices */
1902 for (i = 0; i < card->num_aux_devs; i++)
1903 soc_remove_aux_dev(card, i);
1904
1905 /* remove and free each DAI */
1906 for (i = 0; i < card->num_rtd; i++)
1907 soc_remove_dai_link(card, i);
1908
1909 soc_cleanup_card_debugfs(card);
1910
1911 /* remove the card */
1912 if (card->remove)
1913 card->remove(pdev);
1914
1915 kfree(card->rtd);
1916 snd_card_free(card->snd_card);
1917 return 0;
1918
1919}
1920
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001921/* removes a socdev */
1922static int soc_remove(struct platform_device *pdev)
1923{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001924 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001925
Mark Brownc5af3a22008-11-28 13:29:45 +00001926 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001927 return 0;
1928}
1929
Mark Brown416356f2009-06-30 19:05:15 +01001930static int soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001931{
Mark Brown416356f2009-06-30 19:05:15 +01001932 struct platform_device *pdev = to_platform_device(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001933 struct snd_soc_card *card = platform_get_drvdata(pdev);
1934 int i;
Mark Brown51737472009-06-22 13:16:51 +01001935
1936 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001937 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001938
1939 /* Flush out pmdown_time work - we actually do want to run it
1940 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001941 for (i = 0; i < card->num_rtd; i++) {
1942 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01001943 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001944 }
Mark Brown51737472009-06-22 13:16:51 +01001945
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001946 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001947
1948 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001949}
1950
Alexey Dobriyan47145212009-12-14 18:00:08 -08001951static const struct dev_pm_ops soc_pm_ops = {
Mark Brown416356f2009-06-30 19:05:15 +01001952 .suspend = soc_suspend,
1953 .resume = soc_resume,
1954 .poweroff = soc_poweroff,
1955};
1956
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001957/* ASoC platform driver */
1958static struct platform_driver soc_driver = {
1959 .driver = {
1960 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001961 .owner = THIS_MODULE,
Mark Brown416356f2009-06-30 19:05:15 +01001962 .pm = &soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001963 },
1964 .probe = soc_probe,
1965 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001966};
1967
1968/* create a new pcm */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001969static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001970{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001971 struct snd_soc_codec *codec = rtd->codec;
1972 struct snd_soc_platform *platform = rtd->platform;
1973 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1974 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001975 struct snd_pcm *pcm;
1976 char new_name[64];
1977 int ret = 0, playback = 0, capture = 0;
1978
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001979 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00001980 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001981 rtd->dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001982
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001983 if (codec_dai->driver->playback.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001984 playback = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001985 if (codec_dai->driver->capture.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001986 capture = 1;
1987
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001988 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name);
1989 ret = snd_pcm_new(rtd->card->snd_card, new_name,
1990 num, playback, capture, &pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001991 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001992 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001993 return ret;
1994 }
1995
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001996 rtd->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001997 pcm->private_data = rtd;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001998 soc_pcm_ops.mmap = platform->driver->ops->mmap;
1999 soc_pcm_ops.pointer = platform->driver->ops->pointer;
2000 soc_pcm_ops.ioctl = platform->driver->ops->ioctl;
2001 soc_pcm_ops.copy = platform->driver->ops->copy;
2002 soc_pcm_ops.silence = platform->driver->ops->silence;
2003 soc_pcm_ops.ack = platform->driver->ops->ack;
2004 soc_pcm_ops.page = platform->driver->ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002005
2006 if (playback)
2007 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
2008
2009 if (capture)
2010 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
2011
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002012 ret = platform->driver->pcm_new(rtd->card->snd_card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002013 if (ret < 0) {
2014 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002015 return ret;
2016 }
2017
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002018 pcm->private_free = platform->driver->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002019 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2020 cpu_dai->name);
2021 return ret;
2022}
2023
Mark Brown096e49d2009-07-05 15:12:22 +01002024/**
2025 * snd_soc_codec_volatile_register: Report if a register is volatile.
2026 *
2027 * @codec: CODEC to query.
2028 * @reg: Register to query.
2029 *
2030 * Boolean function indiciating if a CODEC register is volatile.
2031 */
2032int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
2033{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00002034 if (codec->volatile_register)
2035 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01002036 else
2037 return 0;
2038}
2039EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
2040
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002041/**
2042 * snd_soc_new_ac97_codec - initailise AC97 device
2043 * @codec: audio codec
2044 * @ops: AC97 bus operations
2045 * @num: AC97 codec number
2046 *
2047 * Initialises AC97 codec resources for use by ad-hoc devices only.
2048 */
2049int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2050 struct snd_ac97_bus_ops *ops, int num)
2051{
2052 mutex_lock(&codec->mutex);
2053
2054 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2055 if (codec->ac97 == NULL) {
2056 mutex_unlock(&codec->mutex);
2057 return -ENOMEM;
2058 }
2059
2060 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2061 if (codec->ac97->bus == NULL) {
2062 kfree(codec->ac97);
2063 codec->ac97 = NULL;
2064 mutex_unlock(&codec->mutex);
2065 return -ENOMEM;
2066 }
2067
2068 codec->ac97->bus->ops = ops;
2069 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002070
2071 /*
2072 * Mark the AC97 device to be created by us. This way we ensure that the
2073 * device will be registered with the device subsystem later on.
2074 */
2075 codec->ac97_created = 1;
2076
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002077 mutex_unlock(&codec->mutex);
2078 return 0;
2079}
2080EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2081
2082/**
2083 * snd_soc_free_ac97_codec - free AC97 codec device
2084 * @codec: audio codec
2085 *
2086 * Frees AC97 codec device resources.
2087 */
2088void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2089{
2090 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002091#ifdef CONFIG_SND_SOC_AC97_BUS
2092 soc_unregister_ac97_dai_link(codec);
2093#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002094 kfree(codec->ac97->bus);
2095 kfree(codec->ac97);
2096 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002097 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002098 mutex_unlock(&codec->mutex);
2099}
2100EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2101
Mark Brownc3753702010-11-01 15:41:57 -04002102unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2103{
2104 unsigned int ret;
2105
Mark Brownc3acec22010-12-02 16:15:29 +00002106 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002107 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002108 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002109
2110 return ret;
2111}
2112EXPORT_SYMBOL_GPL(snd_soc_read);
2113
2114unsigned int snd_soc_write(struct snd_soc_codec *codec,
2115 unsigned int reg, unsigned int val)
2116{
2117 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002118 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002119 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002120}
2121EXPORT_SYMBOL_GPL(snd_soc_write);
2122
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002123/**
2124 * snd_soc_update_bits - update codec register bits
2125 * @codec: audio codec
2126 * @reg: codec register
2127 * @mask: register mask
2128 * @value: new value
2129 *
2130 * Writes new register value.
2131 *
Timur Tabi180c3292011-01-10 15:58:13 -06002132 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002133 */
2134int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002135 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002136{
2137 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002138 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002139 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002140
Timur Tabi180c3292011-01-10 15:58:13 -06002141 ret = snd_soc_read(codec, reg);
2142 if (ret < 0)
2143 return ret;
2144
2145 old = ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002146 new = (old & ~mask) | value;
2147 change = old != new;
Timur Tabi180c3292011-01-10 15:58:13 -06002148 if (change) {
2149 ret = snd_soc_write(codec, reg, new);
2150 if (ret < 0)
2151 return ret;
2152 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002153
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002154 return change;
2155}
2156EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2157
2158/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002159 * snd_soc_update_bits_locked - update codec register bits
2160 * @codec: audio codec
2161 * @reg: codec register
2162 * @mask: register mask
2163 * @value: new value
2164 *
2165 * Writes new register value, and takes the codec mutex.
2166 *
2167 * Returns 1 for change else 0.
2168 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002169int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2170 unsigned short reg, unsigned int mask,
2171 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002172{
2173 int change;
2174
2175 mutex_lock(&codec->mutex);
2176 change = snd_soc_update_bits(codec, reg, mask, value);
2177 mutex_unlock(&codec->mutex);
2178
2179 return change;
2180}
Mark Browndd1b3d52009-12-04 14:22:03 +00002181EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002182
2183/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002184 * snd_soc_test_bits - test register for change
2185 * @codec: audio codec
2186 * @reg: codec register
2187 * @mask: register mask
2188 * @value: new value
2189 *
2190 * Tests a register with a new value and checks if the new value is
2191 * different from the old value.
2192 *
2193 * Returns 1 for change else 0.
2194 */
2195int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002196 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002197{
2198 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002199 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002200
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002201 old = snd_soc_read(codec, reg);
2202 new = (old & ~mask) | value;
2203 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002204
2205 return change;
2206}
2207EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2208
2209/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002210 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2211 * @substream: the pcm substream
2212 * @hw: the hardware parameters
2213 *
2214 * Sets the substream runtime hardware parameters.
2215 */
2216int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2217 const struct snd_pcm_hardware *hw)
2218{
2219 struct snd_pcm_runtime *runtime = substream->runtime;
2220 runtime->hw.info = hw->info;
2221 runtime->hw.formats = hw->formats;
2222 runtime->hw.period_bytes_min = hw->period_bytes_min;
2223 runtime->hw.period_bytes_max = hw->period_bytes_max;
2224 runtime->hw.periods_min = hw->periods_min;
2225 runtime->hw.periods_max = hw->periods_max;
2226 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2227 runtime->hw.fifo_size = hw->fifo_size;
2228 return 0;
2229}
2230EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2231
2232/**
2233 * snd_soc_cnew - create new control
2234 * @_template: control template
2235 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002236 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002237 *
2238 * Create a new mixer control from a template control.
2239 *
2240 * Returns 0 for success, else error.
2241 */
2242struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2243 void *data, char *long_name)
2244{
2245 struct snd_kcontrol_new template;
2246
2247 memcpy(&template, _template, sizeof(template));
2248 if (long_name)
2249 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002250 template.index = 0;
2251
2252 return snd_ctl_new1(&template, data);
2253}
2254EXPORT_SYMBOL_GPL(snd_soc_cnew);
2255
2256/**
Ian Molton3e8e1952009-01-09 00:23:21 +00002257 * snd_soc_add_controls - add an array of controls to a codec.
2258 * Convienience function to add a list of controls. Many codecs were
2259 * duplicating this code.
2260 *
2261 * @codec: codec to add controls to
2262 * @controls: array of controls to add
2263 * @num_controls: number of elements in the array
2264 *
2265 * Return 0 for success, else error.
2266 */
2267int snd_soc_add_controls(struct snd_soc_codec *codec,
2268 const struct snd_kcontrol_new *controls, int num_controls)
2269{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002270 struct snd_card *card = codec->card->snd_card;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002271 char prefixed_name[44], *name;
Ian Molton3e8e1952009-01-09 00:23:21 +00002272 int err, i;
2273
2274 for (i = 0; i < num_controls; i++) {
2275 const struct snd_kcontrol_new *control = &controls[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002276 if (codec->name_prefix) {
2277 snprintf(prefixed_name, sizeof(prefixed_name), "%s %s",
2278 codec->name_prefix, control->name);
2279 name = prefixed_name;
2280 } else {
2281 name = control->name;
2282 }
2283 err = snd_ctl_add(card, snd_soc_cnew(control, codec, name));
Ian Molton3e8e1952009-01-09 00:23:21 +00002284 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002285 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002286 codec->name, name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002287 return err;
2288 }
2289 }
2290
2291 return 0;
2292}
2293EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2294
2295/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002296 * snd_soc_info_enum_double - enumerated double mixer info callback
2297 * @kcontrol: mixer control
2298 * @uinfo: control element information
2299 *
2300 * Callback to provide information about a double enumerated
2301 * mixer control.
2302 *
2303 * Returns 0 for success.
2304 */
2305int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2306 struct snd_ctl_elem_info *uinfo)
2307{
2308 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2309
2310 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2311 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002312 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002313
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002314 if (uinfo->value.enumerated.item > e->max - 1)
2315 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002316 strcpy(uinfo->value.enumerated.name,
2317 e->texts[uinfo->value.enumerated.item]);
2318 return 0;
2319}
2320EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2321
2322/**
2323 * snd_soc_get_enum_double - enumerated double mixer get callback
2324 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002325 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002326 *
2327 * Callback to get the value of a double enumerated mixer.
2328 *
2329 * Returns 0 for success.
2330 */
2331int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2332 struct snd_ctl_elem_value *ucontrol)
2333{
2334 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2335 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002336 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002337
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002338 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002339 ;
2340 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002341 ucontrol->value.enumerated.item[0]
2342 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002343 if (e->shift_l != e->shift_r)
2344 ucontrol->value.enumerated.item[1] =
2345 (val >> e->shift_r) & (bitmask - 1);
2346
2347 return 0;
2348}
2349EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2350
2351/**
2352 * snd_soc_put_enum_double - enumerated double mixer put callback
2353 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002354 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002355 *
2356 * Callback to set the value of a double enumerated mixer.
2357 *
2358 * Returns 0 for success.
2359 */
2360int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2361 struct snd_ctl_elem_value *ucontrol)
2362{
2363 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2364 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002365 unsigned int val;
2366 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002367
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002368 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002369 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002370 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002371 return -EINVAL;
2372 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2373 mask = (bitmask - 1) << e->shift_l;
2374 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002375 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002376 return -EINVAL;
2377 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2378 mask |= (bitmask - 1) << e->shift_r;
2379 }
2380
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002381 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002382}
2383EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2384
2385/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002386 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2387 * @kcontrol: mixer control
2388 * @ucontrol: control element information
2389 *
2390 * Callback to get the value of a double semi enumerated mixer.
2391 *
2392 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2393 * used for handling bitfield coded enumeration for example.
2394 *
2395 * Returns 0 for success.
2396 */
2397int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2398 struct snd_ctl_elem_value *ucontrol)
2399{
2400 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002401 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002402 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002403
2404 reg_val = snd_soc_read(codec, e->reg);
2405 val = (reg_val >> e->shift_l) & e->mask;
2406 for (mux = 0; mux < e->max; mux++) {
2407 if (val == e->values[mux])
2408 break;
2409 }
2410 ucontrol->value.enumerated.item[0] = mux;
2411 if (e->shift_l != e->shift_r) {
2412 val = (reg_val >> e->shift_r) & e->mask;
2413 for (mux = 0; mux < e->max; mux++) {
2414 if (val == e->values[mux])
2415 break;
2416 }
2417 ucontrol->value.enumerated.item[1] = mux;
2418 }
2419
2420 return 0;
2421}
2422EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2423
2424/**
2425 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2426 * @kcontrol: mixer control
2427 * @ucontrol: control element information
2428 *
2429 * Callback to set the value of a double semi enumerated mixer.
2430 *
2431 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2432 * used for handling bitfield coded enumeration for example.
2433 *
2434 * Returns 0 for success.
2435 */
2436int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2437 struct snd_ctl_elem_value *ucontrol)
2438{
2439 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002440 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002441 unsigned int val;
2442 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002443
2444 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2445 return -EINVAL;
2446 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2447 mask = e->mask << e->shift_l;
2448 if (e->shift_l != e->shift_r) {
2449 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2450 return -EINVAL;
2451 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2452 mask |= e->mask << e->shift_r;
2453 }
2454
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002455 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002456}
2457EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2458
2459/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002460 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2461 * @kcontrol: mixer control
2462 * @uinfo: control element information
2463 *
2464 * Callback to provide information about an external enumerated
2465 * single mixer.
2466 *
2467 * Returns 0 for success.
2468 */
2469int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2470 struct snd_ctl_elem_info *uinfo)
2471{
2472 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2473
2474 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2475 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002476 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002477
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002478 if (uinfo->value.enumerated.item > e->max - 1)
2479 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002480 strcpy(uinfo->value.enumerated.name,
2481 e->texts[uinfo->value.enumerated.item]);
2482 return 0;
2483}
2484EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2485
2486/**
2487 * snd_soc_info_volsw_ext - external single mixer info callback
2488 * @kcontrol: mixer control
2489 * @uinfo: control element information
2490 *
2491 * Callback to provide information about a single external mixer control.
2492 *
2493 * Returns 0 for success.
2494 */
2495int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2496 struct snd_ctl_elem_info *uinfo)
2497{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002498 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002499
Mark Brownfd5dfad2009-04-15 21:37:46 +01002500 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002501 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2502 else
2503 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2504
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002505 uinfo->count = 1;
2506 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002507 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002508 return 0;
2509}
2510EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2511
2512/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002513 * snd_soc_info_volsw - single mixer info callback
2514 * @kcontrol: mixer control
2515 * @uinfo: control element information
2516 *
2517 * Callback to provide information about a single mixer control.
2518 *
2519 * Returns 0 for success.
2520 */
2521int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2522 struct snd_ctl_elem_info *uinfo)
2523{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002524 struct soc_mixer_control *mc =
2525 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002526 int platform_max;
Mark Brown762b8df2008-10-30 12:37:08 +00002527 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002528 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002529
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002530 if (!mc->platform_max)
2531 mc->platform_max = mc->max;
2532 platform_max = mc->platform_max;
2533
2534 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002535 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2536 else
2537 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2538
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002539 uinfo->count = shift == rshift ? 1 : 2;
2540 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002541 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002542 return 0;
2543}
2544EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2545
2546/**
2547 * snd_soc_get_volsw - single mixer get callback
2548 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002549 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002550 *
2551 * Callback to get the value of a single mixer control.
2552 *
2553 * Returns 0 for success.
2554 */
2555int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2556 struct snd_ctl_elem_value *ucontrol)
2557{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002558 struct soc_mixer_control *mc =
2559 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002560 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002561 unsigned int reg = mc->reg;
2562 unsigned int shift = mc->shift;
2563 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002564 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002565 unsigned int mask = (1 << fls(max)) - 1;
2566 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002567
2568 ucontrol->value.integer.value[0] =
2569 (snd_soc_read(codec, reg) >> shift) & mask;
2570 if (shift != rshift)
2571 ucontrol->value.integer.value[1] =
2572 (snd_soc_read(codec, reg) >> rshift) & mask;
2573 if (invert) {
2574 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002575 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002576 if (shift != rshift)
2577 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002578 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002579 }
2580
2581 return 0;
2582}
2583EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2584
2585/**
2586 * snd_soc_put_volsw - single mixer put callback
2587 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002588 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002589 *
2590 * Callback to set the value of a single mixer control.
2591 *
2592 * Returns 0 for success.
2593 */
2594int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2595 struct snd_ctl_elem_value *ucontrol)
2596{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002597 struct soc_mixer_control *mc =
2598 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002599 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002600 unsigned int reg = mc->reg;
2601 unsigned int shift = mc->shift;
2602 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002603 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002604 unsigned int mask = (1 << fls(max)) - 1;
2605 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002606 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002607
2608 val = (ucontrol->value.integer.value[0] & mask);
2609 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002610 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002611 val_mask = mask << shift;
2612 val = val << shift;
2613 if (shift != rshift) {
2614 val2 = (ucontrol->value.integer.value[1] & mask);
2615 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002616 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002617 val_mask |= mask << rshift;
2618 val |= val2 << rshift;
2619 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002620 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002621}
2622EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2623
2624/**
2625 * snd_soc_info_volsw_2r - double mixer info callback
2626 * @kcontrol: mixer control
2627 * @uinfo: control element information
2628 *
2629 * Callback to provide information about a double mixer control that
2630 * spans 2 codec registers.
2631 *
2632 * Returns 0 for success.
2633 */
2634int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2635 struct snd_ctl_elem_info *uinfo)
2636{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002637 struct soc_mixer_control *mc =
2638 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002639 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002640
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002641 if (!mc->platform_max)
2642 mc->platform_max = mc->max;
2643 platform_max = mc->platform_max;
2644
2645 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002646 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2647 else
2648 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2649
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002650 uinfo->count = 2;
2651 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002652 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002653 return 0;
2654}
2655EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2656
2657/**
2658 * snd_soc_get_volsw_2r - double mixer get callback
2659 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002660 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002661 *
2662 * Callback to get the value of a double mixer control that spans 2 registers.
2663 *
2664 * Returns 0 for success.
2665 */
2666int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2667 struct snd_ctl_elem_value *ucontrol)
2668{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002669 struct soc_mixer_control *mc =
2670 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002671 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002672 unsigned int reg = mc->reg;
2673 unsigned int reg2 = mc->rreg;
2674 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002675 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002676 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002677 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002678
2679 ucontrol->value.integer.value[0] =
2680 (snd_soc_read(codec, reg) >> shift) & mask;
2681 ucontrol->value.integer.value[1] =
2682 (snd_soc_read(codec, reg2) >> shift) & mask;
2683 if (invert) {
2684 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002685 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002686 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002687 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002688 }
2689
2690 return 0;
2691}
2692EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2693
2694/**
2695 * snd_soc_put_volsw_2r - double mixer set callback
2696 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002697 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002698 *
2699 * Callback to set the value of a double mixer control that spans 2 registers.
2700 *
2701 * Returns 0 for success.
2702 */
2703int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2704 struct snd_ctl_elem_value *ucontrol)
2705{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002706 struct soc_mixer_control *mc =
2707 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002708 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002709 unsigned int reg = mc->reg;
2710 unsigned int reg2 = mc->rreg;
2711 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002712 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002713 unsigned int mask = (1 << fls(max)) - 1;
2714 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002715 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002716 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002717
2718 val_mask = mask << shift;
2719 val = (ucontrol->value.integer.value[0] & mask);
2720 val2 = (ucontrol->value.integer.value[1] & mask);
2721
2722 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002723 val = max - val;
2724 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002725 }
2726
2727 val = val << shift;
2728 val2 = val2 << shift;
2729
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002730 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002731 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002732 return err;
2733
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002734 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002735 return err;
2736}
2737EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2738
Mark Browne13ac2e2008-05-28 17:58:05 +01002739/**
2740 * snd_soc_info_volsw_s8 - signed mixer info callback
2741 * @kcontrol: mixer control
2742 * @uinfo: control element information
2743 *
2744 * Callback to provide information about a signed mixer control.
2745 *
2746 * Returns 0 for success.
2747 */
2748int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2749 struct snd_ctl_elem_info *uinfo)
2750{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002751 struct soc_mixer_control *mc =
2752 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002753 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002754 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002755
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002756 if (!mc->platform_max)
2757 mc->platform_max = mc->max;
2758 platform_max = mc->platform_max;
2759
Mark Browne13ac2e2008-05-28 17:58:05 +01002760 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2761 uinfo->count = 2;
2762 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002763 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002764 return 0;
2765}
2766EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2767
2768/**
2769 * snd_soc_get_volsw_s8 - signed mixer get callback
2770 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002771 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002772 *
2773 * Callback to get the value of a signed mixer control.
2774 *
2775 * Returns 0 for success.
2776 */
2777int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2778 struct snd_ctl_elem_value *ucontrol)
2779{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002780 struct soc_mixer_control *mc =
2781 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002782 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002783 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002784 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002785 int val = snd_soc_read(codec, reg);
2786
2787 ucontrol->value.integer.value[0] =
2788 ((signed char)(val & 0xff))-min;
2789 ucontrol->value.integer.value[1] =
2790 ((signed char)((val >> 8) & 0xff))-min;
2791 return 0;
2792}
2793EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2794
2795/**
2796 * snd_soc_put_volsw_sgn - signed mixer put callback
2797 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002798 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002799 *
2800 * Callback to set the value of a signed mixer control.
2801 *
2802 * Returns 0 for success.
2803 */
2804int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2805 struct snd_ctl_elem_value *ucontrol)
2806{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002807 struct soc_mixer_control *mc =
2808 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002809 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002810 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002811 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002812 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002813
2814 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2815 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2816
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002817 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002818}
2819EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2820
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002821/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002822 * snd_soc_limit_volume - Set new limit to an existing volume control.
2823 *
2824 * @codec: where to look for the control
2825 * @name: Name of the control
2826 * @max: new maximum limit
2827 *
2828 * Return 0 for success, else error.
2829 */
2830int snd_soc_limit_volume(struct snd_soc_codec *codec,
2831 const char *name, int max)
2832{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002833 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002834 struct snd_kcontrol *kctl;
2835 struct soc_mixer_control *mc;
2836 int found = 0;
2837 int ret = -EINVAL;
2838
2839 /* Sanity check for name and max */
2840 if (unlikely(!name || max <= 0))
2841 return -EINVAL;
2842
2843 list_for_each_entry(kctl, &card->controls, list) {
2844 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2845 found = 1;
2846 break;
2847 }
2848 }
2849 if (found) {
2850 mc = (struct soc_mixer_control *)kctl->private_value;
2851 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002852 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002853 ret = 0;
2854 }
2855 }
2856 return ret;
2857}
2858EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2859
2860/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002861 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2862 * mixer info callback
2863 * @kcontrol: mixer control
2864 * @uinfo: control element information
2865 *
2866 * Returns 0 for success.
2867 */
2868int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2869 struct snd_ctl_elem_info *uinfo)
2870{
2871 struct soc_mixer_control *mc =
2872 (struct soc_mixer_control *)kcontrol->private_value;
2873 int max = mc->max;
2874 int min = mc->min;
2875
2876 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2877 uinfo->count = 2;
2878 uinfo->value.integer.min = 0;
2879 uinfo->value.integer.max = max-min;
2880
2881 return 0;
2882}
2883EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
2884
2885/**
2886 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
2887 * mixer get callback
2888 * @kcontrol: mixer control
2889 * @uinfo: control element information
2890 *
2891 * Returns 0 for success.
2892 */
2893int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2894 struct snd_ctl_elem_value *ucontrol)
2895{
2896 struct soc_mixer_control *mc =
2897 (struct soc_mixer_control *)kcontrol->private_value;
2898 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2899 unsigned int mask = (1<<mc->shift)-1;
2900 int min = mc->min;
2901 int val = snd_soc_read(codec, mc->reg) & mask;
2902 int valr = snd_soc_read(codec, mc->rreg) & mask;
2903
Stuart Longland20630c72010-06-18 12:56:10 +10002904 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
2905 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002906 return 0;
2907}
2908EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
2909
2910/**
2911 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
2912 * mixer put callback
2913 * @kcontrol: mixer control
2914 * @uinfo: control element information
2915 *
2916 * Returns 0 for success.
2917 */
2918int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2919 struct snd_ctl_elem_value *ucontrol)
2920{
2921 struct soc_mixer_control *mc =
2922 (struct soc_mixer_control *)kcontrol->private_value;
2923 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2924 unsigned int mask = (1<<mc->shift)-1;
2925 int min = mc->min;
2926 int ret;
2927 unsigned int val, valr, oval, ovalr;
2928
2929 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
2930 val &= mask;
2931 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
2932 valr &= mask;
2933
2934 oval = snd_soc_read(codec, mc->reg) & mask;
2935 ovalr = snd_soc_read(codec, mc->rreg) & mask;
2936
2937 ret = 0;
2938 if (oval != val) {
2939 ret = snd_soc_write(codec, mc->reg, val);
2940 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002941 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002942 }
2943 if (ovalr != valr) {
2944 ret = snd_soc_write(codec, mc->rreg, valr);
2945 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002946 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002947 }
2948
2949 return 0;
2950}
2951EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
2952
2953/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002954 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2955 * @dai: DAI
2956 * @clk_id: DAI specific clock ID
2957 * @freq: new clock frequency in Hz
2958 * @dir: new clock direction - input/output.
2959 *
2960 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2961 */
2962int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2963 unsigned int freq, int dir)
2964{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002965 if (dai->driver && dai->driver->ops->set_sysclk)
2966 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002967 else
2968 return -EINVAL;
2969}
2970EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2971
2972/**
2973 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2974 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002975 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002976 * @div: new clock divisor.
2977 *
2978 * Configures the clock dividers. This is used to derive the best DAI bit and
2979 * frame clocks from the system or master clock. It's best to set the DAI bit
2980 * and frame clocks as low as possible to save system power.
2981 */
2982int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2983 int div_id, int div)
2984{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002985 if (dai->driver && dai->driver->ops->set_clkdiv)
2986 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002987 else
2988 return -EINVAL;
2989}
2990EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2991
2992/**
2993 * snd_soc_dai_set_pll - configure DAI PLL.
2994 * @dai: DAI
2995 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002996 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002997 * @freq_in: PLL input clock frequency in Hz
2998 * @freq_out: requested PLL output clock frequency in Hz
2999 *
3000 * Configures and enables PLL to generate output clock based on input clock.
3001 */
Mark Brown85488032009-09-05 18:52:16 +01003002int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3003 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003004{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003005 if (dai->driver && dai->driver->ops->set_pll)
3006 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003007 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003008 else
3009 return -EINVAL;
3010}
3011EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3012
3013/**
3014 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3015 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003016 * @fmt: SND_SOC_DAIFMT_ format value.
3017 *
3018 * Configures the DAI hardware format and clocking.
3019 */
3020int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3021{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003022 if (dai->driver && dai->driver->ops->set_fmt)
3023 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003024 else
3025 return -EINVAL;
3026}
3027EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3028
3029/**
3030 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3031 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003032 * @tx_mask: bitmask representing active TX slots.
3033 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003034 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003035 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003036 *
3037 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3038 * specific.
3039 */
3040int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003041 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003042{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003043 if (dai->driver && dai->driver->ops->set_tdm_slot)
3044 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003045 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003046 else
3047 return -EINVAL;
3048}
3049EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3050
3051/**
Barry Song472df3c2009-09-12 01:16:29 +08003052 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3053 * @dai: DAI
3054 * @tx_num: how many TX channels
3055 * @tx_slot: pointer to an array which imply the TX slot number channel
3056 * 0~num-1 uses
3057 * @rx_num: how many RX channels
3058 * @rx_slot: pointer to an array which imply the RX slot number channel
3059 * 0~num-1 uses
3060 *
3061 * configure the relationship between channel number and TDM slot number.
3062 */
3063int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3064 unsigned int tx_num, unsigned int *tx_slot,
3065 unsigned int rx_num, unsigned int *rx_slot)
3066{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003067 if (dai->driver && dai->driver->ops->set_channel_map)
3068 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003069 rx_num, rx_slot);
3070 else
3071 return -EINVAL;
3072}
3073EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3074
3075/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003076 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3077 * @dai: DAI
3078 * @tristate: tristate enable
3079 *
3080 * Tristates the DAI so that others can use it.
3081 */
3082int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3083{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003084 if (dai->driver && dai->driver->ops->set_tristate)
3085 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003086 else
3087 return -EINVAL;
3088}
3089EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3090
3091/**
3092 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3093 * @dai: DAI
3094 * @mute: mute enable
3095 *
3096 * Mutes the DAI DAC.
3097 */
3098int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3099{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003100 if (dai->driver && dai->driver->ops->digital_mute)
3101 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003102 else
3103 return -EINVAL;
3104}
3105EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3106
Mark Brownc5af3a22008-11-28 13:29:45 +00003107/**
3108 * snd_soc_register_card - Register a card with the ASoC core
3109 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003110 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003111 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003112 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303113int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003114{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003115 int i;
3116
Mark Brownc5af3a22008-11-28 13:29:45 +00003117 if (!card->name || !card->dev)
3118 return -EINVAL;
3119
Vinod Koul150dd2f2011-01-13 22:48:32 +05303120 soc_init_card_debugfs(card);
3121
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003122 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
3123 (card->num_links + card->num_aux_devs),
3124 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003125 if (card->rtd == NULL)
3126 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003127 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003128
3129 for (i = 0; i < card->num_links; i++)
3130 card->rtd[i].dai_link = &card->dai_link[i];
3131
Mark Brownc5af3a22008-11-28 13:29:45 +00003132 INIT_LIST_HEAD(&card->list);
3133 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003134 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003135
3136 mutex_lock(&client_mutex);
3137 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003138 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00003139 mutex_unlock(&client_mutex);
3140
3141 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
3142
3143 return 0;
3144}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303145EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003146
3147/**
3148 * snd_soc_unregister_card - Unregister a card with the ASoC core
3149 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003150 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003151 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003152 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303153int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003154{
Vinod Koulb0e26482011-01-13 22:48:02 +05303155 if (card->instantiated)
3156 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003157 mutex_lock(&client_mutex);
3158 list_del(&card->list);
3159 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003160 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3161
3162 return 0;
3163}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303164EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003165
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003166/*
3167 * Simplify DAI link configuration by removing ".-1" from device names
3168 * and sanitizing names.
3169 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003170static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003171{
3172 char *found, name[NAME_SIZE];
3173 int id1, id2;
3174
3175 if (dev_name(dev) == NULL)
3176 return NULL;
3177
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003178 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003179
3180 /* are we a "%s.%d" name (platform and SPI components) */
3181 found = strstr(name, dev->driver->name);
3182 if (found) {
3183 /* get ID */
3184 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3185
3186 /* discard ID from name if ID == -1 */
3187 if (*id == -1)
3188 found[strlen(dev->driver->name)] = '\0';
3189 }
3190
3191 } else {
3192 /* I2C component devices are named "bus-addr" */
3193 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3194 char tmp[NAME_SIZE];
3195
3196 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003197 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003198
3199 /* sanitize component name for DAI link creation */
3200 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003201 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003202 } else
3203 *id = 0;
3204 }
3205
3206 return kstrdup(name, GFP_KERNEL);
3207}
3208
3209/*
3210 * Simplify DAI link naming for single devices with multiple DAIs by removing
3211 * any ".-1" and using the DAI name (instead of device name).
3212 */
3213static inline char *fmt_multiple_name(struct device *dev,
3214 struct snd_soc_dai_driver *dai_drv)
3215{
3216 if (dai_drv->name == NULL) {
3217 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
3218 dev_name(dev));
3219 return NULL;
3220 }
3221
3222 return kstrdup(dai_drv->name, GFP_KERNEL);
3223}
3224
Mark Brown91151712008-11-30 23:31:24 +00003225/**
3226 * snd_soc_register_dai - Register a DAI with the ASoC core
3227 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003228 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003229 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003230int snd_soc_register_dai(struct device *dev,
3231 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003232{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003233 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003234
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003235 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003236
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003237 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3238 if (dai == NULL)
3239 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003240
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003241 /* create DAI component name */
3242 dai->name = fmt_single_name(dev, &dai->id);
3243 if (dai->name == NULL) {
3244 kfree(dai);
3245 return -ENOMEM;
3246 }
3247
3248 dai->dev = dev;
3249 dai->driver = dai_drv;
3250 if (!dai->driver->ops)
3251 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003252
3253 mutex_lock(&client_mutex);
3254 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003255 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003256 mutex_unlock(&client_mutex);
3257
3258 pr_debug("Registered DAI '%s'\n", dai->name);
3259
3260 return 0;
3261}
3262EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3263
3264/**
3265 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3266 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003267 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003268 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003269void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003270{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003271 struct snd_soc_dai *dai;
3272
3273 list_for_each_entry(dai, &dai_list, list) {
3274 if (dev == dai->dev)
3275 goto found;
3276 }
3277 return;
3278
3279found:
Mark Brown91151712008-11-30 23:31:24 +00003280 mutex_lock(&client_mutex);
3281 list_del(&dai->list);
3282 mutex_unlock(&client_mutex);
3283
3284 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003285 kfree(dai->name);
3286 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003287}
3288EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3289
3290/**
3291 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3292 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003293 * @dai: Array of DAIs to register
3294 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003295 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003296int snd_soc_register_dais(struct device *dev,
3297 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003298{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003299 struct snd_soc_dai *dai;
3300 int i, ret = 0;
3301
Liam Girdwood720ffa42010-08-18 00:30:30 +01003302 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003303
3304 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003305
3306 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003307 if (dai == NULL) {
3308 ret = -ENOMEM;
3309 goto err;
3310 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003311
3312 /* create DAI component name */
3313 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3314 if (dai->name == NULL) {
3315 kfree(dai);
3316 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003317 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003318 }
3319
3320 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003321 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003322 if (dai->driver->id)
3323 dai->id = dai->driver->id;
3324 else
3325 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003326 if (!dai->driver->ops)
3327 dai->driver->ops = &null_dai_ops;
3328
3329 mutex_lock(&client_mutex);
3330 list_add(&dai->list, &dai_list);
3331 mutex_unlock(&client_mutex);
3332
3333 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003334 }
3335
Axel Lin1dcb4f32010-12-06 16:48:03 +08003336 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003337 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003338 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003339 return 0;
3340
3341err:
3342 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003343 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003344
3345 return ret;
3346}
3347EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3348
3349/**
3350 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3351 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003352 * @dai: Array of DAIs to unregister
3353 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003354 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003355void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003356{
3357 int i;
3358
3359 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003360 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003361}
3362EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3363
Mark Brown12a48a8c2008-12-03 19:40:30 +00003364/**
3365 * snd_soc_register_platform - Register a platform with the ASoC core
3366 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003367 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003368 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003369int snd_soc_register_platform(struct device *dev,
3370 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003371{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003372 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003373
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003374 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3375
3376 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3377 if (platform == NULL)
3378 return -ENOMEM;
3379
3380 /* create platform component name */
3381 platform->name = fmt_single_name(dev, &platform->id);
3382 if (platform->name == NULL) {
3383 kfree(platform);
3384 return -ENOMEM;
3385 }
3386
3387 platform->dev = dev;
3388 platform->driver = platform_drv;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003389
3390 mutex_lock(&client_mutex);
3391 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003392 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003393 mutex_unlock(&client_mutex);
3394
3395 pr_debug("Registered platform '%s'\n", platform->name);
3396
3397 return 0;
3398}
3399EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3400
3401/**
3402 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3403 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003404 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003405 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003406void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003407{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003408 struct snd_soc_platform *platform;
3409
3410 list_for_each_entry(platform, &platform_list, list) {
3411 if (dev == platform->dev)
3412 goto found;
3413 }
3414 return;
3415
3416found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003417 mutex_lock(&client_mutex);
3418 list_del(&platform->list);
3419 mutex_unlock(&client_mutex);
3420
3421 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003422 kfree(platform->name);
3423 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003424}
3425EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3426
Mark Brown151ab222009-05-09 16:22:58 +01003427static u64 codec_format_map[] = {
3428 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3429 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3430 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3431 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3432 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3433 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3434 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3435 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3436 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3437 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3438 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3439 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3440 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3441 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3442 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3443 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3444};
3445
3446/* Fix up the DAI formats for endianness: codecs don't actually see
3447 * the endianness of the data but we're using the CPU format
3448 * definitions which do need to include endianness so we ensure that
3449 * codec DAIs always have both big and little endian variants set.
3450 */
3451static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3452{
3453 int i;
3454
3455 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3456 if (stream->formats & codec_format_map[i])
3457 stream->formats |= codec_format_map[i];
3458}
3459
Mark Brown0d0cf002008-12-10 14:32:45 +00003460/**
3461 * snd_soc_register_codec - Register a codec with the ASoC core
3462 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003463 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003464 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003465int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003466 const struct snd_soc_codec_driver *codec_drv,
3467 struct snd_soc_dai_driver *dai_drv,
3468 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003469{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003470 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003471 struct snd_soc_codec *codec;
3472 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003473
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003474 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003475
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003476 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3477 if (codec == NULL)
3478 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003479
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003480 /* create CODEC component name */
3481 codec->name = fmt_single_name(dev, &codec->id);
3482 if (codec->name == NULL) {
3483 kfree(codec);
3484 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003485 }
3486
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003487 if (codec_drv->compress_type)
3488 codec->compress_type = codec_drv->compress_type;
3489 else
3490 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3491
Mark Brownc3acec22010-12-02 16:15:29 +00003492 codec->write = codec_drv->write;
3493 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003494 codec->volatile_register = codec_drv->volatile_register;
3495 codec->readable_register = codec_drv->readable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003496 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3497 codec->dapm.dev = dev;
3498 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003499 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003500 codec->dev = dev;
3501 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003502 codec->num_dai = num_dai;
3503 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003504
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003505 /* allocate CODEC register cache */
3506 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003507 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003508 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003509 /* it is necessary to make a copy of the default register cache
3510 * because in the case of using a compression type that requires
3511 * the default register cache to be marked as __devinitconst the
3512 * kernel might have freed the array by the time we initialize
3513 * the cache.
3514 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003515 if (codec_drv->reg_cache_default) {
3516 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3517 reg_size, GFP_KERNEL);
3518 if (!codec->reg_def_copy) {
3519 ret = -ENOMEM;
3520 goto fail;
3521 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003522 }
3523 }
3524
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003525 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3526 if (!codec->volatile_register)
3527 codec->volatile_register = snd_soc_default_volatile_register;
3528 if (!codec->readable_register)
3529 codec->readable_register = snd_soc_default_readable_register;
3530 }
3531
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003532 for (i = 0; i < num_dai; i++) {
3533 fixup_codec_formats(&dai_drv[i].playback);
3534 fixup_codec_formats(&dai_drv[i].capture);
3535 }
3536
Mark Brown26b01cc2010-08-18 20:20:55 +01003537 /* register any DAIs */
3538 if (num_dai) {
3539 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3540 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003541 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003542 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003543
Mark Brown0d0cf002008-12-10 14:32:45 +00003544 mutex_lock(&client_mutex);
3545 list_add(&codec->list, &codec_list);
3546 snd_soc_instantiate_cards();
3547 mutex_unlock(&client_mutex);
3548
3549 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003550 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003551
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003552fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003553 kfree(codec->reg_def_copy);
3554 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003555 kfree(codec->name);
3556 kfree(codec);
3557 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003558}
3559EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3560
3561/**
3562 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3563 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003564 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003565 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003566void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003567{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003568 struct snd_soc_codec *codec;
3569 int i;
3570
3571 list_for_each_entry(codec, &codec_list, list) {
3572 if (dev == codec->dev)
3573 goto found;
3574 }
3575 return;
3576
3577found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003578 if (codec->num_dai)
3579 for (i = 0; i < codec->num_dai; i++)
3580 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003581
Mark Brown0d0cf002008-12-10 14:32:45 +00003582 mutex_lock(&client_mutex);
3583 list_del(&codec->list);
3584 mutex_unlock(&client_mutex);
3585
3586 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003587
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003588 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003589 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003590 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003591 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003592}
3593EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3594
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003595static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003596{
Mark Brown384c89e2008-12-03 17:34:03 +00003597#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003598 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3599 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003600 printk(KERN_WARNING
3601 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003602 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003603 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003604
Mark Brown8a9dab12011-01-10 22:25:21 +00003605 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003606 &codec_list_fops))
3607 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3608
Mark Brown8a9dab12011-01-10 22:25:21 +00003609 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003610 &dai_list_fops))
3611 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003612
Mark Brown8a9dab12011-01-10 22:25:21 +00003613 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003614 &platform_list_fops))
3615 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003616#endif
3617
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003618 return platform_driver_register(&soc_driver);
3619}
Mark Brown4abe8e12010-10-12 17:41:03 +01003620module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003621
Mark Brown7d8c16a2008-11-30 22:11:24 +00003622static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003623{
Mark Brown384c89e2008-12-03 17:34:03 +00003624#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003625 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003626#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003627 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003628}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003629module_exit(snd_soc_exit);
3630
3631/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003632MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003633MODULE_DESCRIPTION("ALSA SoC Core");
3634MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003635MODULE_ALIAS("platform:soc-audio");