blob: bd183a7ed696e1fec9f859d93c77a56b679d6ba1 [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
51static struct dentry *debugfs_root;
52#endif
53
Mark Brownc5af3a22008-11-28 13:29:45 +000054static DEFINE_MUTEX(client_mutex);
55static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000056static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000057static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000058static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000059
60static int snd_soc_register_card(struct snd_soc_card *card);
61static int snd_soc_unregister_card(struct snd_soc_card *card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000062static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
Mark Brownc5af3a22008-11-28 13:29:45 +000063
Frank Mandarinodb2a4162006-10-06 18:31:09 +020064/*
65 * This is a timeout to do a DAPM powerdown after a stream is closed().
66 * It can be used to eliminate pops between different playback streams, e.g.
67 * between two audio tracks.
68 */
69static int pmdown_time = 5000;
70module_param(pmdown_time, int, 0);
71MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
72
Mark Brown2624d5f2009-11-03 21:56:13 +000073/* codec register dump */
74static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
75{
Mark Brown5164d742010-07-14 16:14:33 +010076 int ret, i, step = 1, count = 0;
Mark Brown2624d5f2009-11-03 21:56:13 +000077
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000078 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +000079 return 0;
80
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000081 if (codec->driver->reg_cache_step)
82 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +000083
84 count += sprintf(buf, "%s registers\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000085 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
86 if (codec->driver->readable_register && !codec->driver->readable_register(i))
Mark Brown2624d5f2009-11-03 21:56:13 +000087 continue;
88
89 count += sprintf(buf + count, "%2x: ", i);
90 if (count >= PAGE_SIZE - 1)
91 break;
92
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000093 if (codec->driver->display_register) {
94 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +000095 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +010096 } else {
97 /* If the read fails it's almost certainly due to
98 * the register being volatile and the device being
99 * powered off.
100 */
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000101 ret = snd_soc_read(codec, i);
Mark Brown5164d742010-07-14 16:14:33 +0100102 if (ret >= 0)
103 count += snprintf(buf + count,
104 PAGE_SIZE - count,
105 "%4x", ret);
106 else
107 count += snprintf(buf + count,
108 PAGE_SIZE - count,
109 "<no data: %d>", ret);
110 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000111
112 if (count >= PAGE_SIZE - 1)
113 break;
114
115 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
116 if (count >= PAGE_SIZE - 1)
117 break;
118 }
119
120 /* Truncate count; min() would cause a warning */
121 if (count >= PAGE_SIZE)
122 count = PAGE_SIZE - 1;
123
124 return count;
125}
126static ssize_t codec_reg_show(struct device *dev,
127 struct device_attribute *attr, char *buf)
128{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000129 struct snd_soc_pcm_runtime *rtd =
130 container_of(dev, struct snd_soc_pcm_runtime, dev);
131
132 return soc_codec_reg_show(rtd->codec, buf);
Mark Brown2624d5f2009-11-03 21:56:13 +0000133}
134
135static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
136
Mark Browndbe21402010-02-12 11:37:24 +0000137static ssize_t pmdown_time_show(struct device *dev,
138 struct device_attribute *attr, char *buf)
139{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000140 struct snd_soc_pcm_runtime *rtd =
141 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Browndbe21402010-02-12 11:37:24 +0000142
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000143 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000144}
145
146static ssize_t pmdown_time_set(struct device *dev,
147 struct device_attribute *attr,
148 const char *buf, size_t count)
149{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000150 struct snd_soc_pcm_runtime *rtd =
151 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Brownc593b522010-10-27 20:11:17 -0700152 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000153
Mark Brownc593b522010-10-27 20:11:17 -0700154 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
155 if (ret)
156 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000157
158 return count;
159}
160
161static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
162
Mark Brown2624d5f2009-11-03 21:56:13 +0000163#ifdef CONFIG_DEBUG_FS
164static int codec_reg_open_file(struct inode *inode, struct file *file)
165{
166 file->private_data = inode->i_private;
167 return 0;
168}
169
170static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
171 size_t count, loff_t *ppos)
172{
173 ssize_t ret;
174 struct snd_soc_codec *codec = file->private_data;
175 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
176 if (!buf)
177 return -ENOMEM;
178 ret = soc_codec_reg_show(codec, buf);
179 if (ret >= 0)
180 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
181 kfree(buf);
182 return ret;
183}
184
185static ssize_t codec_reg_write_file(struct file *file,
186 const char __user *user_buf, size_t count, loff_t *ppos)
187{
188 char buf[32];
189 int buf_size;
190 char *start = buf;
191 unsigned long reg, value;
192 int step = 1;
193 struct snd_soc_codec *codec = file->private_data;
194
195 buf_size = min(count, (sizeof(buf)-1));
196 if (copy_from_user(buf, user_buf, buf_size))
197 return -EFAULT;
198 buf[buf_size] = 0;
199
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000200 if (codec->driver->reg_cache_step)
201 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000202
203 while (*start == ' ')
204 start++;
205 reg = simple_strtoul(start, &start, 16);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000206 if ((reg >= codec->driver->reg_cache_size) || (reg % step))
Mark Brown2624d5f2009-11-03 21:56:13 +0000207 return -EINVAL;
208 while (*start == ' ')
209 start++;
210 if (strict_strtoul(start, 16, &value))
211 return -EINVAL;
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000212 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000213 return buf_size;
214}
215
216static const struct file_operations codec_reg_fops = {
217 .open = codec_reg_open_file,
218 .read = codec_reg_read_file,
219 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200220 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000221};
222
223static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
224{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200225 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
226
227 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
228 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000229 if (!codec->debugfs_codec_root) {
230 printk(KERN_WARNING
231 "ASoC: Failed to create codec debugfs directory\n");
232 return;
233 }
234
235 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
236 codec->debugfs_codec_root,
237 codec, &codec_reg_fops);
238 if (!codec->debugfs_reg)
239 printk(KERN_WARNING
240 "ASoC: Failed to create codec register debugfs file\n");
241
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200242 codec->dapm.debugfs_dapm = debugfs_create_dir("dapm",
Mark Brown2624d5f2009-11-03 21:56:13 +0000243 codec->debugfs_codec_root);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200244 if (!codec->dapm.debugfs_dapm)
Mark Brown2624d5f2009-11-03 21:56:13 +0000245 printk(KERN_WARNING
246 "Failed to create DAPM debugfs directory\n");
247
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200248 snd_soc_dapm_debugfs_init(&codec->dapm);
Mark Brown2624d5f2009-11-03 21:56:13 +0000249}
250
251static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
252{
253 debugfs_remove_recursive(codec->debugfs_codec_root);
254}
255
Mark Brownc3c5a192010-09-15 18:15:14 +0100256static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
257 size_t count, loff_t *ppos)
258{
259 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100260 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100261 struct snd_soc_codec *codec;
262
263 if (!buf)
264 return -ENOMEM;
265
Mark Brown2b194f9d2010-10-13 10:52:16 +0100266 list_for_each_entry(codec, &codec_list, list) {
267 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
268 codec->name);
269 if (len >= 0)
270 ret += len;
271 if (ret > PAGE_SIZE) {
272 ret = PAGE_SIZE;
273 break;
274 }
275 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100276
277 if (ret >= 0)
278 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
279
280 kfree(buf);
281
282 return ret;
283}
284
285static const struct file_operations codec_list_fops = {
286 .read = codec_list_read_file,
287 .llseek = default_llseek,/* read accesses f_pos */
288};
289
Mark Brownf3208782010-09-15 18:19:07 +0100290static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
291 size_t count, loff_t *ppos)
292{
293 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100294 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100295 struct snd_soc_dai *dai;
296
297 if (!buf)
298 return -ENOMEM;
299
Mark Brown2b194f9d2010-10-13 10:52:16 +0100300 list_for_each_entry(dai, &dai_list, list) {
301 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
302 if (len >= 0)
303 ret += len;
304 if (ret > PAGE_SIZE) {
305 ret = PAGE_SIZE;
306 break;
307 }
308 }
Mark Brownf3208782010-09-15 18:19:07 +0100309
Mark Brown2b194f9d2010-10-13 10:52:16 +0100310 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100311
312 kfree(buf);
313
314 return ret;
315}
316
317static const struct file_operations dai_list_fops = {
318 .read = dai_list_read_file,
319 .llseek = default_llseek,/* read accesses f_pos */
320};
321
Mark Brown19c7ac22010-09-15 18:22:40 +0100322static ssize_t platform_list_read_file(struct file *file,
323 char __user *user_buf,
324 size_t count, loff_t *ppos)
325{
326 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100327 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100328 struct snd_soc_platform *platform;
329
330 if (!buf)
331 return -ENOMEM;
332
Mark Brown2b194f9d2010-10-13 10:52:16 +0100333 list_for_each_entry(platform, &platform_list, list) {
334 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
335 platform->name);
336 if (len >= 0)
337 ret += len;
338 if (ret > PAGE_SIZE) {
339 ret = PAGE_SIZE;
340 break;
341 }
342 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100343
Mark Brown2b194f9d2010-10-13 10:52:16 +0100344 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100345
346 kfree(buf);
347
348 return ret;
349}
350
351static const struct file_operations platform_list_fops = {
352 .read = platform_list_read_file,
353 .llseek = default_llseek,/* read accesses f_pos */
354};
355
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200356static void soc_init_card_debugfs(struct snd_soc_card *card)
357{
358 card->debugfs_card_root = debugfs_create_dir(card->name,
359 debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200360 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200361 dev_warn(card->dev,
362 "ASoC: Failed to create codec debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200363 return;
364 }
365
366 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
367 card->debugfs_card_root,
368 &card->pop_time);
369 if (!card->debugfs_pop_time)
370 dev_warn(card->dev,
371 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200372}
373
374static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
375{
376 debugfs_remove_recursive(card->debugfs_card_root);
377}
378
Mark Brown2624d5f2009-11-03 21:56:13 +0000379#else
380
381static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
382{
383}
384
385static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
386{
387}
Axel Linb95fccb2010-11-09 17:06:44 +0800388
389static inline void soc_init_card_debugfs(struct snd_soc_card *card)
390{
391}
392
393static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
394{
395}
Mark Brown2624d5f2009-11-03 21:56:13 +0000396#endif
397
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200398#ifdef CONFIG_SND_SOC_AC97_BUS
399/* unregister ac97 codec */
400static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
401{
402 if (codec->ac97->dev.bus)
403 device_unregister(&codec->ac97->dev);
404 return 0;
405}
406
407/* stop no dev release warning */
408static void soc_ac97_device_release(struct device *dev){}
409
410/* register ac97 codec to bus */
411static int soc_ac97_dev_register(struct snd_soc_codec *codec)
412{
413 int err;
414
415 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100416 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200417 codec->ac97->dev.release = soc_ac97_device_release;
418
Kay Sieversbb072bf2008-11-02 03:50:35 +0100419 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000420 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200421 err = device_register(&codec->ac97->dev);
422 if (err < 0) {
423 snd_printk(KERN_ERR "Can't register ac97 bus\n");
424 codec->ac97->dev.bus = NULL;
425 return err;
426 }
427 return 0;
428}
429#endif
430
Mark Brown06f409d2009-04-07 18:10:13 +0100431static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
432{
433 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000434 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
435 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Mark Brown06f409d2009-04-07 18:10:13 +0100436 int ret;
437
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000438 if (codec_dai->driver->symmetric_rates || cpu_dai->driver->symmetric_rates ||
439 rtd->dai_link->symmetric_rates) {
440 dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n",
441 rtd->rate);
Mark Brown06f409d2009-04-07 18:10:13 +0100442
443 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
444 SNDRV_PCM_HW_PARAM_RATE,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000445 rtd->rate,
446 rtd->rate);
Mark Brown06f409d2009-04-07 18:10:13 +0100447 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000448 dev_err(&rtd->dev,
Mark Brown06f409d2009-04-07 18:10:13 +0100449 "Unable to apply rate symmetry constraint: %d\n", ret);
450 return ret;
451 }
452 }
453
454 return 0;
455}
456
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200457/*
458 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
459 * then initialized and any private data can be allocated. This also calls
460 * startup for the cpu DAI, platform, machine and codec DAI.
461 */
462static int soc_pcm_open(struct snd_pcm_substream *substream)
463{
464 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200465 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000466 struct snd_soc_platform *platform = rtd->platform;
467 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
468 struct snd_soc_dai *codec_dai = rtd->codec_dai;
469 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
470 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200471 int ret = 0;
472
473 mutex_lock(&pcm_mutex);
474
475 /* startup the audio subsystem */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000476 if (cpu_dai->driver->ops->startup) {
477 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200478 if (ret < 0) {
479 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100480 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200481 goto out;
482 }
483 }
484
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000485 if (platform->driver->ops->open) {
486 ret = platform->driver->ops->open(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200487 if (ret < 0) {
488 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
489 goto platform_err;
490 }
491 }
492
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000493 if (codec_dai->driver->ops->startup) {
494 ret = codec_dai->driver->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100495 if (ret < 0) {
496 printk(KERN_ERR "asoc: can't open codec %s\n",
497 codec_dai->name);
498 goto codec_dai_err;
499 }
500 }
501
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000502 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
503 ret = rtd->dai_link->ops->startup(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200504 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000505 printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200506 goto machine_err;
507 }
508 }
509
Mark Browna00f90f2010-12-02 16:24:24 +0000510 /* Check that the codec and cpu DAIs are compatible */
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200511 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
512 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000513 max(codec_dai_drv->playback.rate_min,
514 cpu_dai_drv->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200515 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000516 min(codec_dai_drv->playback.rate_max,
517 cpu_dai_drv->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200518 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000519 max(codec_dai_drv->playback.channels_min,
520 cpu_dai_drv->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200521 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000522 min(codec_dai_drv->playback.channels_max,
523 cpu_dai_drv->playback.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100524 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000525 codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100526 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000527 codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates;
528 if (codec_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900529 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000530 runtime->hw.rates |= cpu_dai_drv->playback.rates;
531 if (cpu_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 |= codec_dai_drv->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200534 } else {
535 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000536 max(codec_dai_drv->capture.rate_min,
537 cpu_dai_drv->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200538 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000539 min(codec_dai_drv->capture.rate_max,
540 cpu_dai_drv->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200541 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000542 max(codec_dai_drv->capture.channels_min,
543 cpu_dai_drv->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200544 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000545 min(codec_dai_drv->capture.channels_max,
546 cpu_dai_drv->capture.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100547 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000548 codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100549 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000550 codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates;
551 if (codec_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900552 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000553 runtime->hw.rates |= cpu_dai_drv->capture.rates;
554 if (cpu_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 |= codec_dai_drv->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200557 }
558
559 snd_pcm_limit_hw_rates(runtime);
560 if (!runtime->hw.rates) {
561 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100562 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900563 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200564 }
565 if (!runtime->hw.formats) {
566 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100567 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900568 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200569 }
570 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
571 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000572 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900573 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200574 }
575
Mark Brown06f409d2009-04-07 18:10:13 +0100576 /* Symmetry only applies if we've already got an active stream. */
577 if (cpu_dai->active || codec_dai->active) {
578 ret = soc_pcm_apply_symmetry(substream);
579 if (ret != 0)
Jassi Brarbb1c0472010-02-25 11:24:53 +0900580 goto config_err;
Mark Brown06f409d2009-04-07 18:10:13 +0100581 }
582
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000583 pr_debug("asoc: %s <-> %s info:\n",
584 codec_dai->name, cpu_dai->name);
Mark Brownf24368c2008-10-21 21:45:08 +0100585 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
586 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
587 runtime->hw.channels_max);
588 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
589 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200590
Jassi Brar14dc5732010-02-26 09:12:32 +0900591 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000592 cpu_dai->playback_active++;
593 codec_dai->playback_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900594 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000595 cpu_dai->capture_active++;
596 codec_dai->capture_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900597 }
598 cpu_dai->active++;
599 codec_dai->active++;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600 rtd->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200601 mutex_unlock(&pcm_mutex);
602 return 0;
603
Jassi Brarbb1c0472010-02-25 11:24:53 +0900604config_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000605 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
606 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200607
Jassi Brarbb1c0472010-02-25 11:24:53 +0900608machine_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000609 if (codec_dai->driver->ops->shutdown)
610 codec_dai->driver->ops->shutdown(substream, codec_dai);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900611
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100612codec_dai_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000613 if (platform->driver->ops->close)
614 platform->driver->ops->close(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200615
616platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000617 if (cpu_dai->driver->ops->shutdown)
618 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200619out:
620 mutex_unlock(&pcm_mutex);
621 return ret;
622}
623
624/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200625 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200626 * This is to ensure there are no pops or clicks in between any music tracks
627 * due to DAPM power cycling.
628 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100629static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200630{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000631 struct snd_soc_pcm_runtime *rtd =
632 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
633 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200634
635 mutex_lock(&pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200636
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000637 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
638 codec_dai->driver->playback.stream_name,
639 codec_dai->playback_active ? "active" : "inactive",
640 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200641
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000642 /* are we waiting on this codec DAI stream */
643 if (codec_dai->pop_wait == 1) {
644 codec_dai->pop_wait = 0;
645 snd_soc_dapm_stream_event(rtd,
646 codec_dai->driver->playback.stream_name,
647 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200648 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000649
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200650 mutex_unlock(&pcm_mutex);
651}
652
653/*
654 * Called by ALSA when a PCM substream is closed. Private data can be
655 * freed here. The cpu DAI, codec DAI, machine and platform are also
656 * shutdown.
657 */
658static int soc_codec_close(struct snd_pcm_substream *substream)
659{
660 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000661 struct snd_soc_platform *platform = rtd->platform;
662 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
663 struct snd_soc_dai *codec_dai = rtd->codec_dai;
664 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200665
666 mutex_lock(&pcm_mutex);
667
Jassi Brar14dc5732010-02-26 09:12:32 +0900668 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000669 cpu_dai->playback_active--;
670 codec_dai->playback_active--;
Jassi Brar14dc5732010-02-26 09:12:32 +0900671 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000672 cpu_dai->capture_active--;
673 codec_dai->capture_active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200674 }
Jassi Brar14dc5732010-02-26 09:12:32 +0900675
676 cpu_dai->active--;
677 codec_dai->active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200678 codec->active--;
679
Mark Brown6010b2d2008-09-06 18:33:24 +0100680 /* Muting the DAC suppresses artifacts caused during digital
681 * shutdown, for example from stopping clocks.
682 */
683 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
684 snd_soc_dai_digital_mute(codec_dai, 1);
685
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000686 if (cpu_dai->driver->ops->shutdown)
687 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200688
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000689 if (codec_dai->driver->ops->shutdown)
690 codec_dai->driver->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200691
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000692 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
693 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200694
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000695 if (platform->driver->ops->close)
696 platform->driver->ops->close(substream);
697 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200698
699 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
700 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100701 codec_dai->pop_wait = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000702 schedule_delayed_work(&rtd->delayed_work,
703 msecs_to_jiffies(rtd->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200704 } else {
705 /* capture streams can be powered down now */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000706 snd_soc_dapm_stream_event(rtd,
707 codec_dai->driver->capture.stream_name,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100708 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200709 }
710
711 mutex_unlock(&pcm_mutex);
712 return 0;
713}
714
715/*
716 * Called by ALSA when the PCM substream is prepared, can set format, sample
717 * rate, etc. This function is non atomic and can be called multiple times,
718 * it can refer to the runtime info.
719 */
720static int soc_pcm_prepare(struct snd_pcm_substream *substream)
721{
722 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000723 struct snd_soc_platform *platform = rtd->platform;
724 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
725 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200726 int ret = 0;
727
728 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100729
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000730 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
731 ret = rtd->dai_link->ops->prepare(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100732 if (ret < 0) {
733 printk(KERN_ERR "asoc: machine prepare error\n");
734 goto out;
735 }
736 }
737
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000738 if (platform->driver->ops->prepare) {
739 ret = platform->driver->ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200740 if (ret < 0) {
741 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200742 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200743 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200744 }
745
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000746 if (codec_dai->driver->ops->prepare) {
747 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200748 if (ret < 0) {
749 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200750 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200751 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200752 }
753
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000754 if (cpu_dai->driver->ops->prepare) {
755 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100756 if (ret < 0) {
757 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
758 goto out;
759 }
760 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200761
Mark Brownd45f6212008-10-14 13:58:36 +0100762 /* cancel any delayed stream shutdown that is pending */
763 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
764 codec_dai->pop_wait) {
765 codec_dai->pop_wait = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000766 cancel_delayed_work(&rtd->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100767 }
768
Mark Brown452c5ea2009-05-17 21:41:23 +0100769 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000770 snd_soc_dapm_stream_event(rtd,
771 codec_dai->driver->playback.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100772 SND_SOC_DAPM_STREAM_START);
773 else
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000774 snd_soc_dapm_stream_event(rtd,
775 codec_dai->driver->capture.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100776 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100777
Mark Brown452c5ea2009-05-17 21:41:23 +0100778 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200779
780out:
781 mutex_unlock(&pcm_mutex);
782 return ret;
783}
784
785/*
786 * Called by ALSA when the hardware params are set by application. This
787 * function can also be called multiple times and can allocate buffers
788 * (using snd_pcm_lib_* ). It's non-atomic.
789 */
790static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
791 struct snd_pcm_hw_params *params)
792{
793 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000794 struct snd_soc_platform *platform = rtd->platform;
795 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
796 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200797 int ret = 0;
798
799 mutex_lock(&pcm_mutex);
800
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000801 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
802 ret = rtd->dai_link->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200803 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100804 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200805 goto out;
806 }
807 }
808
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000809 if (codec_dai->driver->ops->hw_params) {
810 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100811 if (ret < 0) {
812 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
813 codec_dai->name);
814 goto codec_err;
815 }
816 }
817
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000818 if (cpu_dai->driver->ops->hw_params) {
819 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200820 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200821 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100822 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200823 goto interface_err;
824 }
825 }
826
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000827 if (platform->driver->ops->hw_params) {
828 ret = platform->driver->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200829 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200830 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200831 platform->name);
832 goto platform_err;
833 }
834 }
835
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000836 rtd->rate = params_rate(params);
Mark Brown06f409d2009-04-07 18:10:13 +0100837
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200838out:
839 mutex_unlock(&pcm_mutex);
840 return ret;
841
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200842platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000843 if (cpu_dai->driver->ops->hw_free)
844 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200845
846interface_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000847 if (codec_dai->driver->ops->hw_free)
848 codec_dai->driver->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100849
850codec_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000851 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
852 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200853
854 mutex_unlock(&pcm_mutex);
855 return ret;
856}
857
858/*
Mark Browna00f90f2010-12-02 16:24:24 +0000859 * Frees resources allocated by hw_params, can be called multiple times
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200860 */
861static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
862{
863 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000864 struct snd_soc_platform *platform = rtd->platform;
865 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
866 struct snd_soc_dai *codec_dai = rtd->codec_dai;
867 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200868
869 mutex_lock(&pcm_mutex);
870
871 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100872 if (!codec->active)
873 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200874
875 /* free any machine hw params */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000876 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
877 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200878
879 /* free any DMA resources */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000880 if (platform->driver->ops->hw_free)
881 platform->driver->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200882
Mark Browna00f90f2010-12-02 16:24:24 +0000883 /* now free hw params for the DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000884 if (codec_dai->driver->ops->hw_free)
885 codec_dai->driver->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200886
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000887 if (cpu_dai->driver->ops->hw_free)
888 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200889
890 mutex_unlock(&pcm_mutex);
891 return 0;
892}
893
894static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
895{
896 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000897 struct snd_soc_platform *platform = rtd->platform;
898 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
899 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200900 int ret;
901
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000902 if (codec_dai->driver->ops->trigger) {
903 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200904 if (ret < 0)
905 return ret;
906 }
907
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000908 if (platform->driver->ops->trigger) {
909 ret = platform->driver->ops->trigger(substream, cmd);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200910 if (ret < 0)
911 return ret;
912 }
913
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000914 if (cpu_dai->driver->ops->trigger) {
915 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200916 if (ret < 0)
917 return ret;
918 }
919 return 0;
920}
921
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200922/*
923 * soc level wrapper for pointer callback
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200924 * If cpu_dai, codec_dai, platform driver has the delay callback, than
925 * the runtime->delay will be updated accordingly.
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200926 */
927static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
928{
929 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000930 struct snd_soc_platform *platform = rtd->platform;
931 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
932 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200933 struct snd_pcm_runtime *runtime = substream->runtime;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200934 snd_pcm_uframes_t offset = 0;
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200935 snd_pcm_sframes_t delay = 0;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200936
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000937 if (platform->driver->ops->pointer)
938 offset = platform->driver->ops->pointer(substream);
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200939
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000940 if (cpu_dai->driver->ops->delay)
941 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200942
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000943 if (codec_dai->driver->ops->delay)
944 delay += codec_dai->driver->ops->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200945
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000946 if (platform->driver->delay)
947 delay += platform->driver->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200948
949 runtime->delay = delay;
950
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200951 return offset;
952}
953
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200954/* ASoC PCM operations */
955static struct snd_pcm_ops soc_pcm_ops = {
956 .open = soc_pcm_open,
957 .close = soc_codec_close,
958 .hw_params = soc_pcm_hw_params,
959 .hw_free = soc_pcm_hw_free,
960 .prepare = soc_pcm_prepare,
961 .trigger = soc_pcm_trigger,
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200962 .pointer = soc_pcm_pointer,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200963};
964
965#ifdef CONFIG_PM
966/* powers down audio subsystem for suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100967static int soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200968{
Mark Brown416356f2009-06-30 19:05:15 +0100969 struct platform_device *pdev = to_platform_device(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000970 struct snd_soc_card *card = platform_get_drvdata(pdev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200971 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200972 int i;
973
Daniel Macke3509ff2009-06-03 17:44:49 +0200974 /* If the initialization of this soc device failed, there is no codec
975 * associated with it. Just bail out in this case.
976 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000977 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200978 return 0;
979
Andy Green6ed25972008-06-13 16:24:05 +0100980 /* Due to the resume being scheduled into a workqueue we could
981 * suspend before that's finished - wait for it to complete.
982 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000983 snd_power_lock(card->snd_card);
984 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
985 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100986
987 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000988 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100989
Mark Browna00f90f2010-12-02 16:24:24 +0000990 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000991 for (i = 0; i < card->num_rtd; i++) {
992 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
993 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100994
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000995 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100996 continue;
997
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000998 if (drv->ops->digital_mute && dai->playback_active)
999 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001000 }
1001
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001002 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001003 for (i = 0; i < card->num_rtd; i++) {
1004 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001005 continue;
1006
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001007 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +01001008 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001009
Mark Brown87506542008-11-18 20:50:34 +00001010 if (card->suspend_pre)
Mark Brown416356f2009-06-30 19:05:15 +01001011 card->suspend_pre(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001012
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001013 for (i = 0; i < card->num_rtd; i++) {
1014 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1015 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001016
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001017 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001018 continue;
1019
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001020 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
1021 cpu_dai->driver->suspend(cpu_dai);
1022 if (platform->driver->suspend && !platform->suspended) {
1023 platform->driver->suspend(cpu_dai);
1024 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +01001025 }
1026 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001027
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001028 /* close any waiting streams and save state */
1029 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +01001030 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001031 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001032 }
Mark Brown3efab7d2010-05-09 13:25:43 +01001033
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001034 for (i = 0; i < card->num_rtd; i++) {
1035 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1036
1037 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001038 continue;
1039
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001040 if (driver->playback.stream_name != NULL)
1041 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1042 SND_SOC_DAPM_STREAM_SUSPEND);
1043
1044 if (driver->capture.stream_name != NULL)
1045 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1046 SND_SOC_DAPM_STREAM_SUSPEND);
1047 }
1048
1049 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001050 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001051 /* If there are paths active then the CODEC will be held with
1052 * bias _ON and should not be suspended. */
1053 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001054 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001055 case SND_SOC_BIAS_STANDBY:
1056 case SND_SOC_BIAS_OFF:
1057 codec->driver->suspend(codec, PMSG_SUSPEND);
1058 codec->suspended = 1;
1059 break;
1060 default:
1061 dev_dbg(codec->dev, "CODEC is on over suspend\n");
1062 break;
1063 }
1064 }
1065 }
1066
1067 for (i = 0; i < card->num_rtd; i++) {
1068 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1069
1070 if (card->rtd[i].dai_link->ignore_suspend)
1071 continue;
1072
1073 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
1074 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001075 }
1076
Mark Brown87506542008-11-18 20:50:34 +00001077 if (card->suspend_post)
Mark Brown416356f2009-06-30 19:05:15 +01001078 card->suspend_post(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001079
1080 return 0;
1081}
1082
Andy Green6ed25972008-06-13 16:24:05 +01001083/* deferred resume work, so resume can complete before we finished
1084 * setting our codec back up, which can be very slow on I2C
1085 */
1086static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001087{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001088 struct snd_soc_card *card =
1089 container_of(work, struct snd_soc_card, deferred_resume_work);
1090 struct platform_device *pdev = to_platform_device(card->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001091 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001092 int i;
1093
Andy Green6ed25972008-06-13 16:24:05 +01001094 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1095 * so userspace apps are blocked from touching us
1096 */
1097
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001098 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +01001099
Mark Brown99497882010-05-07 20:24:05 +01001100 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001101 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +01001102
Mark Brown87506542008-11-18 20:50:34 +00001103 if (card->resume_pre)
1104 card->resume_pre(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001105
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001106 /* resume AC97 DAIs */
1107 for (i = 0; i < card->num_rtd; i++) {
1108 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +01001109
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001110 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001111 continue;
1112
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001113 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
1114 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001115 }
1116
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001117 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001118 /* If the CODEC was idle over suspend then it will have been
1119 * left with bias OFF or STANDBY and suspended so we must now
1120 * resume. Otherwise the suspend was suppressed.
1121 */
1122 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001123 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001124 case SND_SOC_BIAS_STANDBY:
1125 case SND_SOC_BIAS_OFF:
1126 codec->driver->resume(codec);
1127 codec->suspended = 0;
1128 break;
1129 default:
1130 dev_dbg(codec->dev, "CODEC was on over suspend\n");
1131 break;
1132 }
Mark Brown1547aba2010-05-07 21:11:40 +01001133 }
1134 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001135
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001136 for (i = 0; i < card->num_rtd; i++) {
1137 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001138
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001139 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001140 continue;
1141
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001142 if (driver->playback.stream_name != NULL)
1143 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001144 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001145
1146 if (driver->capture.stream_name != NULL)
1147 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001148 SND_SOC_DAPM_STREAM_RESUME);
1149 }
1150
Mark Brown3ff3f642008-05-19 12:32:25 +02001151 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001152 for (i = 0; i < card->num_rtd; i++) {
1153 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1154 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001155
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001156 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001157 continue;
1158
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001159 if (drv->ops->digital_mute && dai->playback_active)
1160 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001161 }
1162
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001163 for (i = 0; i < card->num_rtd; i++) {
1164 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1165 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001166
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001167 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001168 continue;
1169
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001170 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
1171 cpu_dai->driver->resume(cpu_dai);
1172 if (platform->driver->resume && platform->suspended) {
1173 platform->driver->resume(cpu_dai);
1174 platform->suspended = 0;
1175 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001176 }
1177
Mark Brown87506542008-11-18 20:50:34 +00001178 if (card->resume_post)
1179 card->resume_post(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001180
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001181 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +01001182
1183 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001184 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +01001185}
1186
1187/* powers up audio subsystem after a suspend */
Mark Brown416356f2009-06-30 19:05:15 +01001188static int soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +01001189{
Mark Brown416356f2009-06-30 19:05:15 +01001190 struct platform_device *pdev = to_platform_device(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001191 struct snd_soc_card *card = platform_get_drvdata(pdev);
1192 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +02001193
Mark Brown64ab9ba2009-03-31 11:27:03 +01001194 /* AC97 devices might have other drivers hanging off them so
1195 * need to resume immediately. Other drivers don't have that
1196 * problem and may take a substantial amount of time to resume
1197 * due to I/O costs and anti-pop so handle them out of line.
1198 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001199 for (i = 0; i < card->num_rtd; i++) {
1200 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1201 if (cpu_dai->driver->ac97_control) {
1202 dev_dbg(dev, "Resuming AC97 immediately\n");
1203 soc_resume_deferred(&card->deferred_resume_work);
1204 } else {
1205 dev_dbg(dev, "Scheduling resume work\n");
1206 if (!schedule_work(&card->deferred_resume_work))
1207 dev_err(dev, "resume work item may be lost\n");
1208 }
Mark Brown64ab9ba2009-03-31 11:27:03 +01001209 }
Andy Green6ed25972008-06-13 16:24:05 +01001210
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001211 return 0;
1212}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001213#else
1214#define soc_suspend NULL
1215#define soc_resume NULL
1216#endif
1217
Barry Song02a06d32009-10-16 18:13:38 +08001218static struct snd_soc_dai_ops null_dai_ops = {
1219};
1220
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001221static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001222{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001223 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1224 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +00001225 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001226 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001227 struct snd_soc_dai *codec_dai, *cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001228
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001229 if (rtd->complete)
1230 return 1;
1231 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +00001232
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001233 /* do we already have the CPU DAI for this link ? */
1234 if (rtd->cpu_dai) {
1235 goto find_codec;
1236 }
1237 /* no, then find CPU DAI from registered DAIs*/
1238 list_for_each_entry(cpu_dai, &dai_list, list) {
1239 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
1240
1241 if (!try_module_get(cpu_dai->dev->driver->owner))
1242 return -ENODEV;
1243
1244 rtd->cpu_dai = cpu_dai;
1245 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001246 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001247 }
1248 dev_dbg(card->dev, "CPU DAI %s not registered\n",
1249 dai_link->cpu_dai_name);
1250
1251find_codec:
1252 /* do we already have the CODEC for this link ? */
1253 if (rtd->codec) {
1254 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +00001255 }
1256
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001257 /* no, then find CODEC from registered CODECs*/
1258 list_for_each_entry(codec, &codec_list, list) {
1259 if (!strcmp(codec->name, dai_link->codec_name)) {
1260 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +00001261
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001262 if (!try_module_get(codec->dev->driver->owner))
1263 return -ENODEV;
Mark Brown435c5e22008-12-04 15:32:53 +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)) {
1290
1291 if (!try_module_get(platform->dev->driver->owner))
1292 return -ENODEV;
1293
1294 rtd->platform = platform;
1295 goto out;
1296 }
1297 }
1298
1299 dev_dbg(card->dev, "platform %s not registered\n",
1300 dai_link->platform_name);
1301 return 0;
1302
1303out:
1304 /* mark rtd as complete if we found all 4 of our client devices */
1305 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
1306 rtd->complete = 1;
1307 card->num_rtd++;
1308 }
1309 return 1;
1310}
1311
Jarkko Nikula589c3562010-12-06 16:27:07 +02001312static void soc_remove_codec(struct snd_soc_codec *codec)
1313{
1314 int err;
1315
1316 if (codec->driver->remove) {
1317 err = codec->driver->remove(codec);
1318 if (err < 0)
1319 dev_err(codec->dev,
1320 "asoc: failed to remove %s: %d\n",
1321 codec->name, err);
1322 }
1323
1324 /* Make sure all DAPM widgets are freed */
1325 snd_soc_dapm_free(&codec->dapm);
1326
1327 soc_cleanup_codec_debugfs(codec);
1328 codec->probed = 0;
1329 list_del(&codec->card_list);
1330 module_put(codec->dev->driver->owner);
1331}
1332
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001333static void soc_remove_dai_link(struct snd_soc_card *card, int num)
1334{
1335 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1336 struct snd_soc_codec *codec = rtd->codec;
1337 struct snd_soc_platform *platform = rtd->platform;
1338 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1339 int err;
1340
1341 /* unregister the rtd device */
1342 if (rtd->dev_registered) {
1343 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001344 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001345 device_unregister(&rtd->dev);
1346 rtd->dev_registered = 0;
1347 }
1348
1349 /* remove the CODEC DAI */
1350 if (codec_dai && codec_dai->probed) {
1351 if (codec_dai->driver->remove) {
1352 err = codec_dai->driver->remove(codec_dai);
1353 if (err < 0)
1354 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
1355 }
1356 codec_dai->probed = 0;
1357 list_del(&codec_dai->card_list);
1358 }
1359
1360 /* remove the platform */
1361 if (platform && platform->probed) {
1362 if (platform->driver->remove) {
1363 err = platform->driver->remove(platform);
1364 if (err < 0)
1365 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
1366 }
1367 platform->probed = 0;
1368 list_del(&platform->card_list);
1369 module_put(platform->dev->driver->owner);
1370 }
1371
1372 /* remove the CODEC */
Jarkko Nikula589c3562010-12-06 16:27:07 +02001373 if (codec && codec->probed)
1374 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001375
1376 /* remove the cpu_dai */
1377 if (cpu_dai && cpu_dai->probed) {
1378 if (cpu_dai->driver->remove) {
1379 err = cpu_dai->driver->remove(cpu_dai);
1380 if (err < 0)
1381 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
1382 }
1383 cpu_dai->probed = 0;
1384 list_del(&cpu_dai->card_list);
1385 module_put(cpu_dai->dev->driver->owner);
1386 }
1387}
1388
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001389static void soc_set_name_prefix(struct snd_soc_card *card,
1390 struct snd_soc_codec *codec)
1391{
1392 int i;
1393
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001394 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001395 return;
1396
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001397 for (i = 0; i < card->num_configs; i++) {
1398 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001399 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1400 codec->name_prefix = map->name_prefix;
1401 break;
1402 }
1403 }
1404}
1405
Jarkko Nikula589c3562010-12-06 16:27:07 +02001406static int soc_probe_codec(struct snd_soc_card *card,
1407 struct snd_soc_codec *codec)
1408{
1409 int ret = 0;
1410
1411 codec->card = card;
1412 codec->dapm.card = card;
1413 soc_set_name_prefix(card, codec);
1414
1415 if (codec->driver->probe) {
1416 ret = codec->driver->probe(codec);
1417 if (ret < 0) {
1418 dev_err(codec->dev,
1419 "asoc: failed to probe CODEC %s: %d\n",
1420 codec->name, ret);
1421 return ret;
1422 }
1423 }
1424
1425 soc_init_codec_debugfs(codec);
1426
1427 /* mark codec as probed and add to card codec list */
1428 codec->probed = 1;
1429 list_add(&codec->card_list, &card->codec_dev_list);
1430
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);
1473 snd_soc_dapm_sync(&codec->dapm);
1474
1475 /* register the rtd device */
1476 rtd->codec = codec;
1477 rtd->card = card;
1478 rtd->dev.parent = card->dev;
1479 rtd->dev.release = rtd_release;
1480 rtd->dev.init_name = name;
1481 ret = device_register(&rtd->dev);
1482 if (ret < 0) {
1483 dev_err(card->dev,
1484 "asoc: failed to register runtime device: %d\n", ret);
1485 return ret;
1486 }
1487 rtd->dev_registered = 1;
1488
1489 /* add DAPM sysfs entries for this codec */
1490 ret = snd_soc_dapm_sys_add(&rtd->dev);
1491 if (ret < 0)
1492 dev_err(codec->dev,
1493 "asoc: failed to add codec dapm sysfs entries: %d\n",
1494 ret);
1495
1496 /* add codec sysfs entries */
1497 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1498 if (ret < 0)
1499 dev_err(codec->dev,
1500 "asoc: failed to add codec sysfs files: %d\n", ret);
1501
1502 return 0;
1503}
1504
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001505static int soc_probe_dai_link(struct snd_soc_card *card, int num)
1506{
1507 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1508 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1509 struct snd_soc_codec *codec = rtd->codec;
1510 struct snd_soc_platform *platform = rtd->platform;
1511 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1512 int ret;
1513
1514 dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num);
1515
1516 /* config components */
1517 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001518 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001519 codec_dai->card = card;
1520 cpu_dai->card = card;
1521
1522 /* set default power off timeout */
1523 rtd->pmdown_time = pmdown_time;
1524
1525 /* probe the cpu_dai */
1526 if (!cpu_dai->probed) {
1527 if (cpu_dai->driver->probe) {
1528 ret = cpu_dai->driver->probe(cpu_dai);
1529 if (ret < 0) {
1530 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1531 cpu_dai->name);
1532 return ret;
1533 }
1534 }
1535 cpu_dai->probed = 1;
1536 /* mark cpu_dai as probed and add to card cpu_dai list */
1537 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1538 }
1539
1540 /* probe the CODEC */
1541 if (!codec->probed) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001542 ret = soc_probe_codec(card, codec);
1543 if (ret < 0)
1544 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001545 }
1546
1547 /* probe the platform */
1548 if (!platform->probed) {
1549 if (platform->driver->probe) {
1550 ret = platform->driver->probe(platform);
1551 if (ret < 0) {
1552 printk(KERN_ERR "asoc: failed to probe platform %s\n",
1553 platform->name);
1554 return ret;
1555 }
1556 }
1557 /* mark platform as probed and add to card platform list */
1558 platform->probed = 1;
1559 list_add(&platform->card_list, &card->platform_dev_list);
1560 }
1561
1562 /* probe the CODEC DAI */
1563 if (!codec_dai->probed) {
1564 if (codec_dai->driver->probe) {
1565 ret = codec_dai->driver->probe(codec_dai);
1566 if (ret < 0) {
1567 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1568 codec_dai->name);
1569 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001570 }
1571 }
1572
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001573 /* mark cpu_dai as probed and add to card cpu_dai list */
1574 codec_dai->probed = 1;
1575 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001576 }
1577
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001578 /* DAPM dai link stream work */
1579 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
1580
Jarkko Nikula589c3562010-12-06 16:27:07 +02001581 ret = soc_post_component_init(card, codec, num, 0);
1582 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001583 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001584
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001585 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1586 if (ret < 0)
1587 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1588
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001589 /* create the pcm */
1590 ret = soc_new_pcm(rtd, num);
1591 if (ret < 0) {
1592 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1593 return ret;
1594 }
1595
1596 /* add platform data for AC97 devices */
1597 if (rtd->codec_dai->driver->ac97_control)
1598 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1599
1600 return 0;
1601}
1602
1603#ifdef CONFIG_SND_SOC_AC97_BUS
1604static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1605{
1606 int ret;
1607
1608 /* Only instantiate AC97 if not already done by the adaptor
1609 * for the generic AC97 subsystem.
1610 */
1611 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001612 /*
1613 * It is possible that the AC97 device is already registered to
1614 * the device subsystem. This happens when the device is created
1615 * via snd_ac97_mixer(). Currently only SoC codec that does so
1616 * is the generic AC97 glue but others migh emerge.
1617 *
1618 * In those cases we don't try to register the device again.
1619 */
1620 if (!rtd->codec->ac97_created)
1621 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001622
1623 ret = soc_ac97_dev_register(rtd->codec);
1624 if (ret < 0) {
1625 printk(KERN_ERR "asoc: AC97 device register failed\n");
1626 return ret;
1627 }
1628
1629 rtd->codec->ac97_registered = 1;
1630 }
1631 return 0;
1632}
1633
1634static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1635{
1636 if (codec->ac97_registered) {
1637 soc_ac97_dev_unregister(codec);
1638 codec->ac97_registered = 0;
1639 }
1640}
1641#endif
1642
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001643static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1644{
1645 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001646 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001647 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001648
1649 /* find CODEC from registered CODECs*/
1650 list_for_each_entry(codec, &codec_list, list) {
1651 if (!strcmp(codec->name, aux_dev->codec_name)) {
1652 if (codec->probed) {
1653 dev_err(codec->dev,
1654 "asoc: codec already probed");
1655 ret = -EBUSY;
1656 goto out;
1657 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001658 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001659 }
1660 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001661 /* codec not found */
1662 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1663 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001664
Jarkko Nikula676ad982010-12-03 09:18:22 +02001665found:
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001666 if (!try_module_get(codec->dev->driver->owner))
1667 return -ENODEV;
1668
Jarkko Nikula589c3562010-12-06 16:27:07 +02001669 ret = soc_probe_codec(card, codec);
1670 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001671 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001672
Jarkko Nikula589c3562010-12-06 16:27:07 +02001673 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001674
1675out:
1676 return ret;
1677}
1678
1679static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1680{
1681 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1682 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001683
1684 /* unregister the rtd device */
1685 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001686 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001687 device_unregister(&rtd->dev);
1688 rtd->dev_registered = 0;
1689 }
1690
Jarkko Nikula589c3562010-12-06 16:27:07 +02001691 if (codec && codec->probed)
1692 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001693}
1694
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001695static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1696 enum snd_soc_compress_type compress_type)
1697{
1698 int ret;
1699
1700 if (codec->cache_init)
1701 return 0;
1702
1703 /* override the compress_type if necessary */
1704 if (compress_type && codec->compress_type != compress_type)
1705 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001706 ret = snd_soc_cache_init(codec);
1707 if (ret < 0) {
1708 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1709 ret);
1710 return ret;
1711 }
1712 codec->cache_init = 1;
1713 return 0;
1714}
1715
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001716static void snd_soc_instantiate_card(struct snd_soc_card *card)
1717{
1718 struct platform_device *pdev = to_platform_device(card->dev);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001719 struct snd_soc_codec *codec;
1720 struct snd_soc_codec_conf *codec_conf;
1721 enum snd_soc_compress_type compress_type;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001722 int ret, i;
1723
1724 mutex_lock(&card->mutex);
1725
1726 if (card->instantiated) {
1727 mutex_unlock(&card->mutex);
1728 return;
1729 }
1730
1731 /* bind DAIs */
1732 for (i = 0; i < card->num_links; i++)
1733 soc_bind_dai_link(card, i);
1734
1735 /* bind completed ? */
1736 if (card->num_rtd != card->num_links) {
1737 mutex_unlock(&card->mutex);
1738 return;
1739 }
1740
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001741 /* initialize the register cache for each available codec */
1742 list_for_each_entry(codec, &codec_list, list) {
1743 if (codec->cache_init)
1744 continue;
1745 /* check to see if we need to override the compress_type */
1746 for (i = 0; i < card->num_configs; ++i) {
1747 codec_conf = &card->codec_conf[i];
1748 if (!strcmp(codec->name, codec_conf->dev_name)) {
1749 compress_type = codec_conf->compress_type;
1750 if (compress_type && compress_type
1751 != codec->compress_type)
1752 break;
1753 }
1754 }
1755 if (i == card->num_configs) {
1756 /* no need to override the compress_type so
1757 * go ahead and do the standard thing */
1758 ret = snd_soc_init_codec_cache(codec, 0);
1759 if (ret < 0) {
1760 mutex_unlock(&card->mutex);
1761 return;
1762 }
1763 continue;
1764 }
1765 /* override the compress_type with the one supplied in
1766 * the machine driver */
1767 ret = snd_soc_init_codec_cache(codec, compress_type);
1768 if (ret < 0) {
1769 mutex_unlock(&card->mutex);
1770 return;
1771 }
1772 }
1773
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001774 /* card bind complete so register a sound card */
1775 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1776 card->owner, 0, &card->snd_card);
1777 if (ret < 0) {
1778 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1779 card->name);
1780 mutex_unlock(&card->mutex);
1781 return;
1782 }
1783 card->snd_card->dev = card->dev;
1784
Randy Dunlap1301a962008-06-17 19:19:34 +01001785#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +01001786 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001787 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001788#endif
Andy Green6ed25972008-06-13 16:24:05 +01001789
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001790 /* initialise the sound card only once */
1791 if (card->probe) {
1792 ret = card->probe(pdev);
1793 if (ret < 0)
1794 goto card_probe_error;
1795 }
1796
Mark Brownfe3e78e2009-11-03 22:13:13 +00001797 for (i = 0; i < card->num_links; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001798 ret = soc_probe_dai_link(card, i);
1799 if (ret < 0) {
Mark Brown321de0d2010-09-21 15:09:37 +01001800 pr_err("asoc: failed to instantiate card %s: %d\n",
1801 card->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001802 goto probe_dai_err;
1803 }
1804 }
1805
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001806 for (i = 0; i < card->num_aux_devs; i++) {
1807 ret = soc_probe_aux_dev(card, i);
1808 if (ret < 0) {
1809 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1810 card->name, ret);
1811 goto probe_aux_dev_err;
1812 }
1813 }
1814
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001815 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1816 "%s", card->name);
1817 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1818 "%s", card->name);
1819
1820 ret = snd_card_register(card->snd_card);
1821 if (ret < 0) {
1822 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001823 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001824 }
1825
1826#ifdef CONFIG_SND_SOC_AC97_BUS
1827 /* register any AC97 codecs */
1828 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001829 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1830 if (ret < 0) {
1831 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1832 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001833 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001834 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001835 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001836 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001837#endif
1838
Mark Brown435c5e22008-12-04 15:32:53 +00001839 card->instantiated = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001840 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001841 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001842
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001843probe_aux_dev_err:
1844 for (i = 0; i < card->num_aux_devs; i++)
1845 soc_remove_aux_dev(card, i);
1846
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001847probe_dai_err:
1848 for (i = 0; i < card->num_links; i++)
1849 soc_remove_dai_link(card, i);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001850
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001851card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001852 if (card->remove)
1853 card->remove(pdev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001854
1855 snd_card_free(card->snd_card);
1856
1857 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001858}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001859
Mark Brown435c5e22008-12-04 15:32:53 +00001860/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001861 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001862 * client_mutex.
1863 */
1864static void snd_soc_instantiate_cards(void)
1865{
1866 struct snd_soc_card *card;
1867 list_for_each_entry(card, &card_list, list)
1868 snd_soc_instantiate_card(card);
1869}
1870
1871/* probes a new socdev */
1872static int soc_probe(struct platform_device *pdev)
1873{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001874 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001875 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001876
1877 /* Bodge while we unpick instantiation */
1878 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001879 INIT_LIST_HEAD(&card->dai_dev_list);
1880 INIT_LIST_HEAD(&card->codec_dev_list);
1881 INIT_LIST_HEAD(&card->platform_dev_list);
Jarkko Nikula97c866d2010-12-14 12:18:31 +02001882 INIT_LIST_HEAD(&card->widgets);
Jarkko Nikula8ddab3f2010-12-14 12:18:30 +02001883 INIT_LIST_HEAD(&card->paths);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001884
Jarkko Nikulaa6052152010-11-05 20:35:19 +02001885 soc_init_card_debugfs(card);
1886
Mark Brown435c5e22008-12-04 15:32:53 +00001887 ret = snd_soc_register_card(card);
1888 if (ret != 0) {
1889 dev_err(&pdev->dev, "Failed to register card\n");
1890 return ret;
1891 }
1892
1893 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001894}
1895
1896/* removes a socdev */
1897static int soc_remove(struct platform_device *pdev)
1898{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001899 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001900 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001901
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001902 if (card->instantiated) {
Mike Rapoport914dc182009-05-11 13:04:55 +03001903
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001904 /* make sure any delayed work runs */
1905 for (i = 0; i < card->num_rtd; i++) {
1906 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01001907 flush_delayed_work_sync(&rtd->delayed_work);
Guennadi Liakhovetskib2dfa622010-03-18 08:23:33 +01001908 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001909
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001910 /* remove auxiliary devices */
1911 for (i = 0; i < card->num_aux_devs; i++)
1912 soc_remove_aux_dev(card, i);
1913
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001914 /* remove and free each DAI */
1915 for (i = 0; i < card->num_rtd; i++)
1916 soc_remove_dai_link(card, i);
1917
Jarkko Nikulaa6052152010-11-05 20:35:19 +02001918 soc_cleanup_card_debugfs(card);
1919
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001920 /* remove the card */
Guennadi Liakhovetskib2dfa622010-03-18 08:23:33 +01001921 if (card->remove)
1922 card->remove(pdev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001923
1924 kfree(card->rtd);
1925 snd_card_free(card->snd_card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001926 }
Mark Brownc5af3a22008-11-28 13:29:45 +00001927 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001928 return 0;
1929}
1930
Mark Brown416356f2009-06-30 19:05:15 +01001931static int soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001932{
Mark Brown416356f2009-06-30 19:05:15 +01001933 struct platform_device *pdev = to_platform_device(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001934 struct snd_soc_card *card = platform_get_drvdata(pdev);
1935 int i;
Mark Brown51737472009-06-22 13:16:51 +01001936
1937 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001938 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001939
1940 /* Flush out pmdown_time work - we actually do want to run it
1941 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001942 for (i = 0; i < card->num_rtd; i++) {
1943 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01001944 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001945 }
Mark Brown51737472009-06-22 13:16:51 +01001946
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001947 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001948
1949 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001950}
1951
Alexey Dobriyan47145212009-12-14 18:00:08 -08001952static const struct dev_pm_ops soc_pm_ops = {
Mark Brown416356f2009-06-30 19:05:15 +01001953 .suspend = soc_suspend,
1954 .resume = soc_resume,
1955 .poweroff = soc_poweroff,
1956};
1957
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001958/* ASoC platform driver */
1959static struct platform_driver soc_driver = {
1960 .driver = {
1961 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001962 .owner = THIS_MODULE,
Mark Brown416356f2009-06-30 19:05:15 +01001963 .pm = &soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001964 },
1965 .probe = soc_probe,
1966 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001967};
1968
1969/* create a new pcm */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001970static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001971{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001972 struct snd_soc_codec *codec = rtd->codec;
1973 struct snd_soc_platform *platform = rtd->platform;
1974 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1975 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001976 struct snd_pcm *pcm;
1977 char new_name[64];
1978 int ret = 0, playback = 0, capture = 0;
1979
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001980 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00001981 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001982 rtd->dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001983
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001984 if (codec_dai->driver->playback.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001985 playback = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001986 if (codec_dai->driver->capture.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001987 capture = 1;
1988
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001989 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name);
1990 ret = snd_pcm_new(rtd->card->snd_card, new_name,
1991 num, playback, capture, &pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001992 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001993 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001994 return ret;
1995 }
1996
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001997 rtd->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001998 pcm->private_data = rtd;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001999 soc_pcm_ops.mmap = platform->driver->ops->mmap;
2000 soc_pcm_ops.pointer = platform->driver->ops->pointer;
2001 soc_pcm_ops.ioctl = platform->driver->ops->ioctl;
2002 soc_pcm_ops.copy = platform->driver->ops->copy;
2003 soc_pcm_ops.silence = platform->driver->ops->silence;
2004 soc_pcm_ops.ack = platform->driver->ops->ack;
2005 soc_pcm_ops.page = platform->driver->ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002006
2007 if (playback)
2008 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
2009
2010 if (capture)
2011 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
2012
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002013 ret = platform->driver->pcm_new(rtd->card->snd_card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002014 if (ret < 0) {
2015 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002016 return ret;
2017 }
2018
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002019 pcm->private_free = platform->driver->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002020 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2021 cpu_dai->name);
2022 return ret;
2023}
2024
Mark Brown096e49d2009-07-05 15:12:22 +01002025/**
2026 * snd_soc_codec_volatile_register: Report if a register is volatile.
2027 *
2028 * @codec: CODEC to query.
2029 * @reg: Register to query.
2030 *
2031 * Boolean function indiciating if a CODEC register is volatile.
2032 */
2033int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
2034{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002035 if (codec->driver->volatile_register)
2036 return codec->driver->volatile_register(reg);
Mark Brown096e49d2009-07-05 15:12:22 +01002037 else
2038 return 0;
2039}
2040EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
2041
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002042/**
2043 * snd_soc_new_ac97_codec - initailise AC97 device
2044 * @codec: audio codec
2045 * @ops: AC97 bus operations
2046 * @num: AC97 codec number
2047 *
2048 * Initialises AC97 codec resources for use by ad-hoc devices only.
2049 */
2050int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2051 struct snd_ac97_bus_ops *ops, int num)
2052{
2053 mutex_lock(&codec->mutex);
2054
2055 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2056 if (codec->ac97 == NULL) {
2057 mutex_unlock(&codec->mutex);
2058 return -ENOMEM;
2059 }
2060
2061 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2062 if (codec->ac97->bus == NULL) {
2063 kfree(codec->ac97);
2064 codec->ac97 = NULL;
2065 mutex_unlock(&codec->mutex);
2066 return -ENOMEM;
2067 }
2068
2069 codec->ac97->bus->ops = ops;
2070 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002071
2072 /*
2073 * Mark the AC97 device to be created by us. This way we ensure that the
2074 * device will be registered with the device subsystem later on.
2075 */
2076 codec->ac97_created = 1;
2077
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002078 mutex_unlock(&codec->mutex);
2079 return 0;
2080}
2081EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2082
2083/**
2084 * snd_soc_free_ac97_codec - free AC97 codec device
2085 * @codec: audio codec
2086 *
2087 * Frees AC97 codec device resources.
2088 */
2089void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2090{
2091 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002092#ifdef CONFIG_SND_SOC_AC97_BUS
2093 soc_unregister_ac97_dai_link(codec);
2094#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002095 kfree(codec->ac97->bus);
2096 kfree(codec->ac97);
2097 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002098 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002099 mutex_unlock(&codec->mutex);
2100}
2101EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2102
Mark Brownc3753702010-11-01 15:41:57 -04002103unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2104{
2105 unsigned int ret;
2106
Mark Brownc3acec22010-12-02 16:15:29 +00002107 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002108 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002109 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002110
2111 return ret;
2112}
2113EXPORT_SYMBOL_GPL(snd_soc_read);
2114
2115unsigned int snd_soc_write(struct snd_soc_codec *codec,
2116 unsigned int reg, unsigned int val)
2117{
2118 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002119 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002120 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002121}
2122EXPORT_SYMBOL_GPL(snd_soc_write);
2123
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002124/**
2125 * snd_soc_update_bits - update codec register bits
2126 * @codec: audio codec
2127 * @reg: codec register
2128 * @mask: register mask
2129 * @value: new value
2130 *
2131 * Writes new register value.
2132 *
2133 * Returns 1 for change else 0.
2134 */
2135int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002136 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002137{
2138 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002139 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002140
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002141 old = snd_soc_read(codec, reg);
2142 new = (old & ~mask) | value;
2143 change = old != new;
2144 if (change)
2145 snd_soc_write(codec, reg, new);
2146
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002147 return change;
2148}
2149EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2150
2151/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002152 * snd_soc_update_bits_locked - update codec register bits
2153 * @codec: audio codec
2154 * @reg: codec register
2155 * @mask: register mask
2156 * @value: new value
2157 *
2158 * Writes new register value, and takes the codec mutex.
2159 *
2160 * Returns 1 for change else 0.
2161 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002162int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2163 unsigned short reg, unsigned int mask,
2164 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002165{
2166 int change;
2167
2168 mutex_lock(&codec->mutex);
2169 change = snd_soc_update_bits(codec, reg, mask, value);
2170 mutex_unlock(&codec->mutex);
2171
2172 return change;
2173}
Mark Browndd1b3d52009-12-04 14:22:03 +00002174EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002175
2176/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002177 * snd_soc_test_bits - test register for change
2178 * @codec: audio codec
2179 * @reg: codec register
2180 * @mask: register mask
2181 * @value: new value
2182 *
2183 * Tests a register with a new value and checks if the new value is
2184 * different from the old value.
2185 *
2186 * Returns 1 for change else 0.
2187 */
2188int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002189 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002190{
2191 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002192 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002193
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002194 old = snd_soc_read(codec, reg);
2195 new = (old & ~mask) | value;
2196 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002197
2198 return change;
2199}
2200EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2201
2202/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002203 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2204 * @substream: the pcm substream
2205 * @hw: the hardware parameters
2206 *
2207 * Sets the substream runtime hardware parameters.
2208 */
2209int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2210 const struct snd_pcm_hardware *hw)
2211{
2212 struct snd_pcm_runtime *runtime = substream->runtime;
2213 runtime->hw.info = hw->info;
2214 runtime->hw.formats = hw->formats;
2215 runtime->hw.period_bytes_min = hw->period_bytes_min;
2216 runtime->hw.period_bytes_max = hw->period_bytes_max;
2217 runtime->hw.periods_min = hw->periods_min;
2218 runtime->hw.periods_max = hw->periods_max;
2219 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2220 runtime->hw.fifo_size = hw->fifo_size;
2221 return 0;
2222}
2223EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2224
2225/**
2226 * snd_soc_cnew - create new control
2227 * @_template: control template
2228 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002229 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002230 *
2231 * Create a new mixer control from a template control.
2232 *
2233 * Returns 0 for success, else error.
2234 */
2235struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2236 void *data, char *long_name)
2237{
2238 struct snd_kcontrol_new template;
2239
2240 memcpy(&template, _template, sizeof(template));
2241 if (long_name)
2242 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002243 template.index = 0;
2244
2245 return snd_ctl_new1(&template, data);
2246}
2247EXPORT_SYMBOL_GPL(snd_soc_cnew);
2248
2249/**
Ian Molton3e8e1952009-01-09 00:23:21 +00002250 * snd_soc_add_controls - add an array of controls to a codec.
2251 * Convienience function to add a list of controls. Many codecs were
2252 * duplicating this code.
2253 *
2254 * @codec: codec to add controls to
2255 * @controls: array of controls to add
2256 * @num_controls: number of elements in the array
2257 *
2258 * Return 0 for success, else error.
2259 */
2260int snd_soc_add_controls(struct snd_soc_codec *codec,
2261 const struct snd_kcontrol_new *controls, int num_controls)
2262{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002263 struct snd_card *card = codec->card->snd_card;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002264 char prefixed_name[44], *name;
Ian Molton3e8e1952009-01-09 00:23:21 +00002265 int err, i;
2266
2267 for (i = 0; i < num_controls; i++) {
2268 const struct snd_kcontrol_new *control = &controls[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002269 if (codec->name_prefix) {
2270 snprintf(prefixed_name, sizeof(prefixed_name), "%s %s",
2271 codec->name_prefix, control->name);
2272 name = prefixed_name;
2273 } else {
2274 name = control->name;
2275 }
2276 err = snd_ctl_add(card, snd_soc_cnew(control, codec, name));
Ian Molton3e8e1952009-01-09 00:23:21 +00002277 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002278 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002279 codec->name, name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002280 return err;
2281 }
2282 }
2283
2284 return 0;
2285}
2286EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2287
2288/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002289 * snd_soc_info_enum_double - enumerated double mixer info callback
2290 * @kcontrol: mixer control
2291 * @uinfo: control element information
2292 *
2293 * Callback to provide information about a double enumerated
2294 * mixer control.
2295 *
2296 * Returns 0 for success.
2297 */
2298int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2299 struct snd_ctl_elem_info *uinfo)
2300{
2301 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2302
2303 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2304 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002305 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002306
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002307 if (uinfo->value.enumerated.item > e->max - 1)
2308 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002309 strcpy(uinfo->value.enumerated.name,
2310 e->texts[uinfo->value.enumerated.item]);
2311 return 0;
2312}
2313EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2314
2315/**
2316 * snd_soc_get_enum_double - enumerated double mixer get callback
2317 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002318 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002319 *
2320 * Callback to get the value of a double enumerated mixer.
2321 *
2322 * Returns 0 for success.
2323 */
2324int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2325 struct snd_ctl_elem_value *ucontrol)
2326{
2327 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2328 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002329 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002330
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002331 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002332 ;
2333 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002334 ucontrol->value.enumerated.item[0]
2335 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002336 if (e->shift_l != e->shift_r)
2337 ucontrol->value.enumerated.item[1] =
2338 (val >> e->shift_r) & (bitmask - 1);
2339
2340 return 0;
2341}
2342EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2343
2344/**
2345 * snd_soc_put_enum_double - enumerated double mixer put callback
2346 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002347 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002348 *
2349 * Callback to set the value of a double enumerated mixer.
2350 *
2351 * Returns 0 for success.
2352 */
2353int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2354 struct snd_ctl_elem_value *ucontrol)
2355{
2356 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2357 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002358 unsigned int val;
2359 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002360
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002361 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002362 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002363 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002364 return -EINVAL;
2365 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2366 mask = (bitmask - 1) << e->shift_l;
2367 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002368 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002369 return -EINVAL;
2370 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2371 mask |= (bitmask - 1) << e->shift_r;
2372 }
2373
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002374 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002375}
2376EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2377
2378/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002379 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2380 * @kcontrol: mixer control
2381 * @ucontrol: control element information
2382 *
2383 * Callback to get the value of a double semi enumerated mixer.
2384 *
2385 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2386 * used for handling bitfield coded enumeration for example.
2387 *
2388 * Returns 0 for success.
2389 */
2390int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2391 struct snd_ctl_elem_value *ucontrol)
2392{
2393 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002394 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002395 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002396
2397 reg_val = snd_soc_read(codec, e->reg);
2398 val = (reg_val >> e->shift_l) & e->mask;
2399 for (mux = 0; mux < e->max; mux++) {
2400 if (val == e->values[mux])
2401 break;
2402 }
2403 ucontrol->value.enumerated.item[0] = mux;
2404 if (e->shift_l != e->shift_r) {
2405 val = (reg_val >> e->shift_r) & e->mask;
2406 for (mux = 0; mux < e->max; mux++) {
2407 if (val == e->values[mux])
2408 break;
2409 }
2410 ucontrol->value.enumerated.item[1] = mux;
2411 }
2412
2413 return 0;
2414}
2415EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2416
2417/**
2418 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2419 * @kcontrol: mixer control
2420 * @ucontrol: control element information
2421 *
2422 * Callback to set the value of a double semi enumerated mixer.
2423 *
2424 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2425 * used for handling bitfield coded enumeration for example.
2426 *
2427 * Returns 0 for success.
2428 */
2429int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2430 struct snd_ctl_elem_value *ucontrol)
2431{
2432 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002433 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002434 unsigned int val;
2435 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002436
2437 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2438 return -EINVAL;
2439 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2440 mask = e->mask << e->shift_l;
2441 if (e->shift_l != e->shift_r) {
2442 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2443 return -EINVAL;
2444 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2445 mask |= e->mask << e->shift_r;
2446 }
2447
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002448 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002449}
2450EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2451
2452/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002453 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2454 * @kcontrol: mixer control
2455 * @uinfo: control element information
2456 *
2457 * Callback to provide information about an external enumerated
2458 * single mixer.
2459 *
2460 * Returns 0 for success.
2461 */
2462int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2463 struct snd_ctl_elem_info *uinfo)
2464{
2465 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2466
2467 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2468 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002469 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002470
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002471 if (uinfo->value.enumerated.item > e->max - 1)
2472 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002473 strcpy(uinfo->value.enumerated.name,
2474 e->texts[uinfo->value.enumerated.item]);
2475 return 0;
2476}
2477EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2478
2479/**
2480 * snd_soc_info_volsw_ext - external single mixer info callback
2481 * @kcontrol: mixer control
2482 * @uinfo: control element information
2483 *
2484 * Callback to provide information about a single external mixer control.
2485 *
2486 * Returns 0 for success.
2487 */
2488int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2489 struct snd_ctl_elem_info *uinfo)
2490{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002491 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002492
Mark Brownfd5dfad2009-04-15 21:37:46 +01002493 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002494 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2495 else
2496 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2497
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002498 uinfo->count = 1;
2499 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002500 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002501 return 0;
2502}
2503EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2504
2505/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002506 * snd_soc_info_volsw - single mixer info callback
2507 * @kcontrol: mixer control
2508 * @uinfo: control element information
2509 *
2510 * Callback to provide information about a single mixer control.
2511 *
2512 * Returns 0 for success.
2513 */
2514int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2515 struct snd_ctl_elem_info *uinfo)
2516{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002517 struct soc_mixer_control *mc =
2518 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002519 int platform_max;
Mark Brown762b8df2008-10-30 12:37:08 +00002520 unsigned int shift = mc->shift;
Jon Smirl815ecf82008-07-29 10:22:24 -04002521 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002522
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002523 if (!mc->platform_max)
2524 mc->platform_max = mc->max;
2525 platform_max = mc->platform_max;
2526
2527 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002528 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2529 else
2530 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2531
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002532 uinfo->count = shift == rshift ? 1 : 2;
2533 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002534 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002535 return 0;
2536}
2537EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2538
2539/**
2540 * snd_soc_get_volsw - single mixer get callback
2541 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002542 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002543 *
2544 * Callback to get the value of a single mixer control.
2545 *
2546 * Returns 0 for success.
2547 */
2548int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2549 struct snd_ctl_elem_value *ucontrol)
2550{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002551 struct soc_mixer_control *mc =
2552 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002553 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf82008-07-29 10:22:24 -04002554 unsigned int reg = mc->reg;
2555 unsigned int shift = mc->shift;
2556 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002557 int max = mc->max;
Jon Smirl815ecf82008-07-29 10:22:24 -04002558 unsigned int mask = (1 << fls(max)) - 1;
2559 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002560
2561 ucontrol->value.integer.value[0] =
2562 (snd_soc_read(codec, reg) >> shift) & mask;
2563 if (shift != rshift)
2564 ucontrol->value.integer.value[1] =
2565 (snd_soc_read(codec, reg) >> rshift) & mask;
2566 if (invert) {
2567 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002568 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002569 if (shift != rshift)
2570 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002571 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002572 }
2573
2574 return 0;
2575}
2576EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2577
2578/**
2579 * snd_soc_put_volsw - single mixer put callback
2580 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002581 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002582 *
2583 * Callback to set the value of a single mixer control.
2584 *
2585 * Returns 0 for success.
2586 */
2587int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2588 struct snd_ctl_elem_value *ucontrol)
2589{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002590 struct soc_mixer_control *mc =
2591 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002592 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf82008-07-29 10:22:24 -04002593 unsigned int reg = mc->reg;
2594 unsigned int shift = mc->shift;
2595 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002596 int max = mc->max;
Jon Smirl815ecf82008-07-29 10:22:24 -04002597 unsigned int mask = (1 << fls(max)) - 1;
2598 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002599 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002600
2601 val = (ucontrol->value.integer.value[0] & mask);
2602 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002603 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002604 val_mask = mask << shift;
2605 val = val << shift;
2606 if (shift != rshift) {
2607 val2 = (ucontrol->value.integer.value[1] & mask);
2608 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002609 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002610 val_mask |= mask << rshift;
2611 val |= val2 << rshift;
2612 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002613 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002614}
2615EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2616
2617/**
2618 * snd_soc_info_volsw_2r - double mixer info callback
2619 * @kcontrol: mixer control
2620 * @uinfo: control element information
2621 *
2622 * Callback to provide information about a double mixer control that
2623 * spans 2 codec registers.
2624 *
2625 * Returns 0 for success.
2626 */
2627int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2628 struct snd_ctl_elem_info *uinfo)
2629{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002630 struct soc_mixer_control *mc =
2631 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002632 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002633
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002634 if (!mc->platform_max)
2635 mc->platform_max = mc->max;
2636 platform_max = mc->platform_max;
2637
2638 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002639 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2640 else
2641 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2642
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002643 uinfo->count = 2;
2644 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002645 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002646 return 0;
2647}
2648EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2649
2650/**
2651 * snd_soc_get_volsw_2r - double mixer get callback
2652 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002653 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002654 *
2655 * Callback to get the value of a double mixer control that spans 2 registers.
2656 *
2657 * Returns 0 for success.
2658 */
2659int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2660 struct snd_ctl_elem_value *ucontrol)
2661{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002662 struct soc_mixer_control *mc =
2663 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002664 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf82008-07-29 10:22:24 -04002665 unsigned int reg = mc->reg;
2666 unsigned int reg2 = mc->rreg;
2667 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002668 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002669 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf82008-07-29 10:22:24 -04002670 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002671
2672 ucontrol->value.integer.value[0] =
2673 (snd_soc_read(codec, reg) >> shift) & mask;
2674 ucontrol->value.integer.value[1] =
2675 (snd_soc_read(codec, reg2) >> shift) & mask;
2676 if (invert) {
2677 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002678 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002679 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002680 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002681 }
2682
2683 return 0;
2684}
2685EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2686
2687/**
2688 * snd_soc_put_volsw_2r - double mixer set callback
2689 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002690 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002691 *
2692 * Callback to set the value of a double mixer control that spans 2 registers.
2693 *
2694 * Returns 0 for success.
2695 */
2696int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2697 struct snd_ctl_elem_value *ucontrol)
2698{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002699 struct soc_mixer_control *mc =
2700 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002701 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf82008-07-29 10:22:24 -04002702 unsigned int reg = mc->reg;
2703 unsigned int reg2 = mc->rreg;
2704 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002705 int max = mc->max;
Jon Smirl815ecf82008-07-29 10:22:24 -04002706 unsigned int mask = (1 << fls(max)) - 1;
2707 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002708 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002709 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002710
2711 val_mask = mask << shift;
2712 val = (ucontrol->value.integer.value[0] & mask);
2713 val2 = (ucontrol->value.integer.value[1] & mask);
2714
2715 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002716 val = max - val;
2717 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002718 }
2719
2720 val = val << shift;
2721 val2 = val2 << shift;
2722
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002723 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002724 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002725 return err;
2726
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002727 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002728 return err;
2729}
2730EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2731
Mark Browne13ac2e2008-05-28 17:58:05 +01002732/**
2733 * snd_soc_info_volsw_s8 - signed mixer info callback
2734 * @kcontrol: mixer control
2735 * @uinfo: control element information
2736 *
2737 * Callback to provide information about a signed mixer control.
2738 *
2739 * Returns 0 for success.
2740 */
2741int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2742 struct snd_ctl_elem_info *uinfo)
2743{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002744 struct soc_mixer_control *mc =
2745 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002746 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002747 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002748
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002749 if (!mc->platform_max)
2750 mc->platform_max = mc->max;
2751 platform_max = mc->platform_max;
2752
Mark Browne13ac2e2008-05-28 17:58:05 +01002753 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2754 uinfo->count = 2;
2755 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002756 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002757 return 0;
2758}
2759EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2760
2761/**
2762 * snd_soc_get_volsw_s8 - signed mixer get callback
2763 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002764 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002765 *
2766 * Callback to get the value of a signed mixer control.
2767 *
2768 * Returns 0 for success.
2769 */
2770int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2771 struct snd_ctl_elem_value *ucontrol)
2772{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002773 struct soc_mixer_control *mc =
2774 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002775 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf82008-07-29 10:22:24 -04002776 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002777 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002778 int val = snd_soc_read(codec, reg);
2779
2780 ucontrol->value.integer.value[0] =
2781 ((signed char)(val & 0xff))-min;
2782 ucontrol->value.integer.value[1] =
2783 ((signed char)((val >> 8) & 0xff))-min;
2784 return 0;
2785}
2786EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2787
2788/**
2789 * snd_soc_put_volsw_sgn - signed mixer put callback
2790 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002791 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002792 *
2793 * Callback to set the value of a signed mixer control.
2794 *
2795 * Returns 0 for success.
2796 */
2797int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2798 struct snd_ctl_elem_value *ucontrol)
2799{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002800 struct soc_mixer_control *mc =
2801 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002802 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf82008-07-29 10:22:24 -04002803 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002804 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002805 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002806
2807 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2808 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2809
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002810 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002811}
2812EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2813
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002814/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002815 * snd_soc_limit_volume - Set new limit to an existing volume control.
2816 *
2817 * @codec: where to look for the control
2818 * @name: Name of the control
2819 * @max: new maximum limit
2820 *
2821 * Return 0 for success, else error.
2822 */
2823int snd_soc_limit_volume(struct snd_soc_codec *codec,
2824 const char *name, int max)
2825{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002826 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002827 struct snd_kcontrol *kctl;
2828 struct soc_mixer_control *mc;
2829 int found = 0;
2830 int ret = -EINVAL;
2831
2832 /* Sanity check for name and max */
2833 if (unlikely(!name || max <= 0))
2834 return -EINVAL;
2835
2836 list_for_each_entry(kctl, &card->controls, list) {
2837 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2838 found = 1;
2839 break;
2840 }
2841 }
2842 if (found) {
2843 mc = (struct soc_mixer_control *)kctl->private_value;
2844 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002845 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002846 ret = 0;
2847 }
2848 }
2849 return ret;
2850}
2851EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2852
2853/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002854 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2855 * mixer info callback
2856 * @kcontrol: mixer control
2857 * @uinfo: control element information
2858 *
2859 * Returns 0 for success.
2860 */
2861int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2862 struct snd_ctl_elem_info *uinfo)
2863{
2864 struct soc_mixer_control *mc =
2865 (struct soc_mixer_control *)kcontrol->private_value;
2866 int max = mc->max;
2867 int min = mc->min;
2868
2869 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2870 uinfo->count = 2;
2871 uinfo->value.integer.min = 0;
2872 uinfo->value.integer.max = max-min;
2873
2874 return 0;
2875}
2876EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
2877
2878/**
2879 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
2880 * mixer get callback
2881 * @kcontrol: mixer control
2882 * @uinfo: control element information
2883 *
2884 * Returns 0 for success.
2885 */
2886int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2887 struct snd_ctl_elem_value *ucontrol)
2888{
2889 struct soc_mixer_control *mc =
2890 (struct soc_mixer_control *)kcontrol->private_value;
2891 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2892 unsigned int mask = (1<<mc->shift)-1;
2893 int min = mc->min;
2894 int val = snd_soc_read(codec, mc->reg) & mask;
2895 int valr = snd_soc_read(codec, mc->rreg) & mask;
2896
Stuart Longland20630c72010-06-18 12:56:10 +10002897 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
2898 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002899 return 0;
2900}
2901EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
2902
2903/**
2904 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
2905 * mixer put callback
2906 * @kcontrol: mixer control
2907 * @uinfo: control element information
2908 *
2909 * Returns 0 for success.
2910 */
2911int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2912 struct snd_ctl_elem_value *ucontrol)
2913{
2914 struct soc_mixer_control *mc =
2915 (struct soc_mixer_control *)kcontrol->private_value;
2916 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2917 unsigned int mask = (1<<mc->shift)-1;
2918 int min = mc->min;
2919 int ret;
2920 unsigned int val, valr, oval, ovalr;
2921
2922 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
2923 val &= mask;
2924 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
2925 valr &= mask;
2926
2927 oval = snd_soc_read(codec, mc->reg) & mask;
2928 ovalr = snd_soc_read(codec, mc->rreg) & mask;
2929
2930 ret = 0;
2931 if (oval != val) {
2932 ret = snd_soc_write(codec, mc->reg, val);
2933 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002934 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002935 }
2936 if (ovalr != valr) {
2937 ret = snd_soc_write(codec, mc->rreg, valr);
2938 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002939 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002940 }
2941
2942 return 0;
2943}
2944EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
2945
2946/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002947 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2948 * @dai: DAI
2949 * @clk_id: DAI specific clock ID
2950 * @freq: new clock frequency in Hz
2951 * @dir: new clock direction - input/output.
2952 *
2953 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2954 */
2955int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2956 unsigned int freq, int dir)
2957{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002958 if (dai->driver && dai->driver->ops->set_sysclk)
2959 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002960 else
2961 return -EINVAL;
2962}
2963EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2964
2965/**
2966 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2967 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002968 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002969 * @div: new clock divisor.
2970 *
2971 * Configures the clock dividers. This is used to derive the best DAI bit and
2972 * frame clocks from the system or master clock. It's best to set the DAI bit
2973 * and frame clocks as low as possible to save system power.
2974 */
2975int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2976 int div_id, int div)
2977{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002978 if (dai->driver && dai->driver->ops->set_clkdiv)
2979 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002980 else
2981 return -EINVAL;
2982}
2983EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2984
2985/**
2986 * snd_soc_dai_set_pll - configure DAI PLL.
2987 * @dai: DAI
2988 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002989 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002990 * @freq_in: PLL input clock frequency in Hz
2991 * @freq_out: requested PLL output clock frequency in Hz
2992 *
2993 * Configures and enables PLL to generate output clock based on input clock.
2994 */
Mark Brown85488032009-09-05 18:52:16 +01002995int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2996 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002997{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002998 if (dai->driver && dai->driver->ops->set_pll)
2999 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003000 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003001 else
3002 return -EINVAL;
3003}
3004EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3005
3006/**
3007 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3008 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003009 * @fmt: SND_SOC_DAIFMT_ format value.
3010 *
3011 * Configures the DAI hardware format and clocking.
3012 */
3013int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3014{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003015 if (dai->driver && dai->driver->ops->set_fmt)
3016 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003017 else
3018 return -EINVAL;
3019}
3020EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3021
3022/**
3023 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3024 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003025 * @tx_mask: bitmask representing active TX slots.
3026 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003027 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003028 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003029 *
3030 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3031 * specific.
3032 */
3033int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003034 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003035{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003036 if (dai->driver && dai->driver->ops->set_tdm_slot)
3037 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003038 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003039 else
3040 return -EINVAL;
3041}
3042EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3043
3044/**
Barry Song472df3c2009-09-12 01:16:29 +08003045 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3046 * @dai: DAI
3047 * @tx_num: how many TX channels
3048 * @tx_slot: pointer to an array which imply the TX slot number channel
3049 * 0~num-1 uses
3050 * @rx_num: how many RX channels
3051 * @rx_slot: pointer to an array which imply the RX slot number channel
3052 * 0~num-1 uses
3053 *
3054 * configure the relationship between channel number and TDM slot number.
3055 */
3056int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3057 unsigned int tx_num, unsigned int *tx_slot,
3058 unsigned int rx_num, unsigned int *rx_slot)
3059{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003060 if (dai->driver && dai->driver->ops->set_channel_map)
3061 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003062 rx_num, rx_slot);
3063 else
3064 return -EINVAL;
3065}
3066EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3067
3068/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003069 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3070 * @dai: DAI
3071 * @tristate: tristate enable
3072 *
3073 * Tristates the DAI so that others can use it.
3074 */
3075int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3076{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003077 if (dai->driver && dai->driver->ops->set_tristate)
3078 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003079 else
3080 return -EINVAL;
3081}
3082EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3083
3084/**
3085 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3086 * @dai: DAI
3087 * @mute: mute enable
3088 *
3089 * Mutes the DAI DAC.
3090 */
3091int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3092{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003093 if (dai->driver && dai->driver->ops->digital_mute)
3094 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003095 else
3096 return -EINVAL;
3097}
3098EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3099
Mark Brownc5af3a22008-11-28 13:29:45 +00003100/**
3101 * snd_soc_register_card - Register a card with the ASoC core
3102 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003103 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003104 *
3105 * Note that currently this is an internal only function: it will be
3106 * exposed to machine drivers after further backporting of ASoC v2
3107 * registration APIs.
3108 */
3109static int snd_soc_register_card(struct snd_soc_card *card)
3110{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003111 int i;
3112
Mark Brownc5af3a22008-11-28 13:29:45 +00003113 if (!card->name || !card->dev)
3114 return -EINVAL;
3115
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003116 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
3117 (card->num_links + card->num_aux_devs),
3118 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003119 if (card->rtd == NULL)
3120 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003121 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003122
3123 for (i = 0; i < card->num_links; i++)
3124 card->rtd[i].dai_link = &card->dai_link[i];
3125
Mark Brownc5af3a22008-11-28 13:29:45 +00003126 INIT_LIST_HEAD(&card->list);
3127 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003128 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003129
3130 mutex_lock(&client_mutex);
3131 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003132 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00003133 mutex_unlock(&client_mutex);
3134
3135 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
3136
3137 return 0;
3138}
3139
3140/**
3141 * snd_soc_unregister_card - Unregister a card with the ASoC core
3142 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003143 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003144 *
3145 * Note that currently this is an internal only function: it will be
3146 * exposed to machine drivers after further backporting of ASoC v2
3147 * registration APIs.
3148 */
3149static int snd_soc_unregister_card(struct snd_soc_card *card)
3150{
3151 mutex_lock(&client_mutex);
3152 list_del(&card->list);
3153 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003154 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3155
3156 return 0;
3157}
3158
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003159/*
3160 * Simplify DAI link configuration by removing ".-1" from device names
3161 * and sanitizing names.
3162 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003163static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003164{
3165 char *found, name[NAME_SIZE];
3166 int id1, id2;
3167
3168 if (dev_name(dev) == NULL)
3169 return NULL;
3170
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003171 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003172
3173 /* are we a "%s.%d" name (platform and SPI components) */
3174 found = strstr(name, dev->driver->name);
3175 if (found) {
3176 /* get ID */
3177 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3178
3179 /* discard ID from name if ID == -1 */
3180 if (*id == -1)
3181 found[strlen(dev->driver->name)] = '\0';
3182 }
3183
3184 } else {
3185 /* I2C component devices are named "bus-addr" */
3186 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3187 char tmp[NAME_SIZE];
3188
3189 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003190 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003191
3192 /* sanitize component name for DAI link creation */
3193 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003194 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003195 } else
3196 *id = 0;
3197 }
3198
3199 return kstrdup(name, GFP_KERNEL);
3200}
3201
3202/*
3203 * Simplify DAI link naming for single devices with multiple DAIs by removing
3204 * any ".-1" and using the DAI name (instead of device name).
3205 */
3206static inline char *fmt_multiple_name(struct device *dev,
3207 struct snd_soc_dai_driver *dai_drv)
3208{
3209 if (dai_drv->name == NULL) {
3210 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
3211 dev_name(dev));
3212 return NULL;
3213 }
3214
3215 return kstrdup(dai_drv->name, GFP_KERNEL);
3216}
3217
Mark Brown91151712008-11-30 23:31:24 +00003218/**
3219 * snd_soc_register_dai - Register a DAI with the ASoC core
3220 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003221 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003222 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003223int snd_soc_register_dai(struct device *dev,
3224 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003225{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003226 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003227
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003228 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003229
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003230 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3231 if (dai == NULL)
3232 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003233
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003234 /* create DAI component name */
3235 dai->name = fmt_single_name(dev, &dai->id);
3236 if (dai->name == NULL) {
3237 kfree(dai);
3238 return -ENOMEM;
3239 }
3240
3241 dai->dev = dev;
3242 dai->driver = dai_drv;
3243 if (!dai->driver->ops)
3244 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003245
3246 mutex_lock(&client_mutex);
3247 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003248 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003249 mutex_unlock(&client_mutex);
3250
3251 pr_debug("Registered DAI '%s'\n", dai->name);
3252
3253 return 0;
3254}
3255EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3256
3257/**
3258 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3259 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003260 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003261 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003262void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003263{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003264 struct snd_soc_dai *dai;
3265
3266 list_for_each_entry(dai, &dai_list, list) {
3267 if (dev == dai->dev)
3268 goto found;
3269 }
3270 return;
3271
3272found:
Mark Brown91151712008-11-30 23:31:24 +00003273 mutex_lock(&client_mutex);
3274 list_del(&dai->list);
3275 mutex_unlock(&client_mutex);
3276
3277 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003278 kfree(dai->name);
3279 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003280}
3281EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3282
3283/**
3284 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3285 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003286 * @dai: Array of DAIs to register
3287 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003288 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003289int snd_soc_register_dais(struct device *dev,
3290 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003291{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003292 struct snd_soc_dai *dai;
3293 int i, ret = 0;
3294
Liam Girdwood720ffa42010-08-18 00:30:30 +01003295 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003296
3297 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003298
3299 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003300 if (dai == NULL) {
3301 ret = -ENOMEM;
3302 goto err;
3303 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003304
3305 /* create DAI component name */
3306 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3307 if (dai->name == NULL) {
3308 kfree(dai);
3309 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003310 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003311 }
3312
3313 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003314 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003315 if (dai->driver->id)
3316 dai->id = dai->driver->id;
3317 else
3318 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003319 if (!dai->driver->ops)
3320 dai->driver->ops = &null_dai_ops;
3321
3322 mutex_lock(&client_mutex);
3323 list_add(&dai->list, &dai_list);
3324 mutex_unlock(&client_mutex);
3325
3326 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003327 }
3328
Axel Lin1dcb4f32010-12-06 16:48:03 +08003329 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003330 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003331 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003332 return 0;
3333
3334err:
3335 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003336 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003337
3338 return ret;
3339}
3340EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3341
3342/**
3343 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3344 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003345 * @dai: Array of DAIs to unregister
3346 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003347 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003348void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003349{
3350 int i;
3351
3352 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003353 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003354}
3355EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3356
Mark Brown12a48a8c2008-12-03 19:40:30 +00003357/**
3358 * snd_soc_register_platform - Register a platform with the ASoC core
3359 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003360 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003361 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003362int snd_soc_register_platform(struct device *dev,
3363 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003364{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003365 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003366
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003367 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3368
3369 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3370 if (platform == NULL)
3371 return -ENOMEM;
3372
3373 /* create platform component name */
3374 platform->name = fmt_single_name(dev, &platform->id);
3375 if (platform->name == NULL) {
3376 kfree(platform);
3377 return -ENOMEM;
3378 }
3379
3380 platform->dev = dev;
3381 platform->driver = platform_drv;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003382
3383 mutex_lock(&client_mutex);
3384 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003385 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003386 mutex_unlock(&client_mutex);
3387
3388 pr_debug("Registered platform '%s'\n", platform->name);
3389
3390 return 0;
3391}
3392EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3393
3394/**
3395 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3396 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003397 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003398 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003399void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003400{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003401 struct snd_soc_platform *platform;
3402
3403 list_for_each_entry(platform, &platform_list, list) {
3404 if (dev == platform->dev)
3405 goto found;
3406 }
3407 return;
3408
3409found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003410 mutex_lock(&client_mutex);
3411 list_del(&platform->list);
3412 mutex_unlock(&client_mutex);
3413
3414 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003415 kfree(platform->name);
3416 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003417}
3418EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3419
Mark Brown151ab222009-05-09 16:22:58 +01003420static u64 codec_format_map[] = {
3421 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3422 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3423 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3424 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3425 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3426 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3427 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3428 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3429 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3430 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3431 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3432 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3433 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3434 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3435 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3436 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3437};
3438
3439/* Fix up the DAI formats for endianness: codecs don't actually see
3440 * the endianness of the data but we're using the CPU format
3441 * definitions which do need to include endianness so we ensure that
3442 * codec DAIs always have both big and little endian variants set.
3443 */
3444static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3445{
3446 int i;
3447
3448 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3449 if (stream->formats & codec_format_map[i])
3450 stream->formats |= codec_format_map[i];
3451}
3452
Mark Brown0d0cf002008-12-10 14:32:45 +00003453/**
3454 * snd_soc_register_codec - Register a codec with the ASoC core
3455 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003456 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003457 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003458int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003459 const struct snd_soc_codec_driver *codec_drv,
3460 struct snd_soc_dai_driver *dai_drv,
3461 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003462{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003463 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003464 struct snd_soc_codec *codec;
3465 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003466
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003467 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003468
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003469 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3470 if (codec == NULL)
3471 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003472
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003473 /* create CODEC component name */
3474 codec->name = fmt_single_name(dev, &codec->id);
3475 if (codec->name == NULL) {
3476 kfree(codec);
3477 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003478 }
3479
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003480 if (codec_drv->compress_type)
3481 codec->compress_type = codec_drv->compress_type;
3482 else
3483 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3484
Mark Brownc3acec22010-12-02 16:15:29 +00003485 codec->write = codec_drv->write;
3486 codec->read = codec_drv->read;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003487 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3488 codec->dapm.dev = dev;
3489 codec->dapm.codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003490 codec->dev = dev;
3491 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003492 codec->num_dai = num_dai;
3493 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003494
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003495 /* allocate CODEC register cache */
3496 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003497 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
3498 /* it is necessary to make a copy of the default register cache
3499 * because in the case of using a compression type that requires
3500 * the default register cache to be marked as __devinitconst the
3501 * kernel might have freed the array by the time we initialize
3502 * the cache.
3503 */
3504 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3505 reg_size, GFP_KERNEL);
3506 if (!codec->reg_def_copy) {
3507 ret = -ENOMEM;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003508 goto fail;
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003509 }
3510 }
3511
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003512 for (i = 0; i < num_dai; i++) {
3513 fixup_codec_formats(&dai_drv[i].playback);
3514 fixup_codec_formats(&dai_drv[i].capture);
3515 }
3516
Mark Brown26b01cc2010-08-18 20:20:55 +01003517 /* register any DAIs */
3518 if (num_dai) {
3519 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3520 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003521 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003522 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003523
Mark Brown0d0cf002008-12-10 14:32:45 +00003524 mutex_lock(&client_mutex);
3525 list_add(&codec->list, &codec_list);
3526 snd_soc_instantiate_cards();
3527 mutex_unlock(&client_mutex);
3528
3529 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003530 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003531
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003532fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003533 kfree(codec->reg_def_copy);
3534 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003535 kfree(codec->name);
3536 kfree(codec);
3537 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003538}
3539EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3540
3541/**
3542 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3543 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003544 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003545 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003546void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003547{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003548 struct snd_soc_codec *codec;
3549 int i;
3550
3551 list_for_each_entry(codec, &codec_list, list) {
3552 if (dev == codec->dev)
3553 goto found;
3554 }
3555 return;
3556
3557found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003558 if (codec->num_dai)
3559 for (i = 0; i < codec->num_dai; i++)
3560 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003561
Mark Brown0d0cf002008-12-10 14:32:45 +00003562 mutex_lock(&client_mutex);
3563 list_del(&codec->list);
3564 mutex_unlock(&client_mutex);
3565
3566 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003567
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003568 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003569 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003570 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003571 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003572}
3573EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3574
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003575static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003576{
Mark Brown384c89e2008-12-03 17:34:03 +00003577#ifdef CONFIG_DEBUG_FS
3578 debugfs_root = debugfs_create_dir("asoc", NULL);
3579 if (IS_ERR(debugfs_root) || !debugfs_root) {
3580 printk(KERN_WARNING
3581 "ASoC: Failed to create debugfs directory\n");
3582 debugfs_root = NULL;
3583 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003584
3585 if (!debugfs_create_file("codecs", 0444, debugfs_root, NULL,
3586 &codec_list_fops))
3587 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3588
Mark Brownf3208782010-09-15 18:19:07 +01003589 if (!debugfs_create_file("dais", 0444, debugfs_root, NULL,
3590 &dai_list_fops))
3591 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003592
3593 if (!debugfs_create_file("platforms", 0444, debugfs_root, NULL,
3594 &platform_list_fops))
3595 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003596#endif
3597
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003598 return platform_driver_register(&soc_driver);
3599}
Mark Brown4abe8e12010-10-12 17:41:03 +01003600module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003601
Mark Brown7d8c16a2008-11-30 22:11:24 +00003602static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003603{
Mark Brown384c89e2008-12-03 17:34:03 +00003604#ifdef CONFIG_DEBUG_FS
3605 debugfs_remove_recursive(debugfs_root);
3606#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003607 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003608}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003609module_exit(snd_soc_exit);
3610
3611/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003612MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003613MODULE_DESCRIPTION("ALSA SoC Core");
3614MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003615MODULE_ALIAS("platform:soc-audio");