blob: 8af47f7a8fcbe6367ed360327a30d62288310b05 [file] [log] [blame]
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001/*
2 * soc-core.c -- ALSA SoC Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwood0664d882006-12-18 14:39:02 +01005 * Copyright 2005 Openedhand Ltd.
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00006 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
Liam Girdwood0664d882006-12-18 14:39:02 +01008 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01009 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +010010 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020012 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020018 * TODO:
19 * o Add hw rules to enforce rates, etc.
20 * o More testing with other codecs/machines.
21 * o Add more codecs and platforms to ensure good API coverage.
22 * o Support TDM on PCM and I2S
23 */
24
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/pm.h>
30#include <linux/bitops.h>
Troy Kisky12ef1932008-10-13 17:42:14 -070031#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020032#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Marek Vasut474828a2009-07-22 13:01:03 +020034#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020035#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000036#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020037#include <sound/pcm.h>
38#include <sound/pcm_params.h>
39#include <sound/soc.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040#include <sound/initval.h>
41
Mark Browna8b1d342010-11-03 18:05:58 -040042#define CREATE_TRACE_POINTS
43#include <trace/events/asoc.h>
44
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000045#define NAME_SIZE 32
46
Frank Mandarinodb2a4162006-10-06 18:31:09 +020047static DEFINE_MUTEX(pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +020048static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
49
Mark Brown384c89e2008-12-03 17:34:03 +000050#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000051struct dentry *snd_soc_debugfs_root;
52EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000053#endif
54
Mark Brownc5af3a22008-11-28 13:29:45 +000055static DEFINE_MUTEX(client_mutex);
56static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000057static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000058static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000059static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000060
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000061static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
Mark Brownc5af3a22008-11-28 13:29:45 +000062
Frank Mandarinodb2a4162006-10-06 18:31:09 +020063/*
64 * This is a timeout to do a DAPM powerdown after a stream is closed().
65 * It can be used to eliminate pops between different playback streams, e.g.
66 * between two audio tracks.
67 */
68static int pmdown_time = 5000;
69module_param(pmdown_time, int, 0);
70MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
71
Mark Brown2624d5f2009-11-03 21:56:13 +000072/* codec register dump */
73static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
74{
Mark Brown5164d742010-07-14 16:14:33 +010075 int ret, i, step = 1, count = 0;
Mark Brown2624d5f2009-11-03 21:56:13 +000076
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000077 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +000078 return 0;
79
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000080 if (codec->driver->reg_cache_step)
81 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +000082
83 count += sprintf(buf, "%s registers\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000084 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +000085 if (codec->readable_register && !codec->readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +000086 continue;
87
88 count += sprintf(buf + count, "%2x: ", i);
89 if (count >= PAGE_SIZE - 1)
90 break;
91
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000092 if (codec->driver->display_register) {
93 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +000094 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +010095 } else {
96 /* If the read fails it's almost certainly due to
97 * the register being volatile and the device being
98 * powered off.
99 */
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000100 ret = snd_soc_read(codec, i);
Mark Brown5164d742010-07-14 16:14:33 +0100101 if (ret >= 0)
102 count += snprintf(buf + count,
103 PAGE_SIZE - count,
104 "%4x", ret);
105 else
106 count += snprintf(buf + count,
107 PAGE_SIZE - count,
108 "<no data: %d>", ret);
109 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000110
111 if (count >= PAGE_SIZE - 1)
112 break;
113
114 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
115 if (count >= PAGE_SIZE - 1)
116 break;
117 }
118
119 /* Truncate count; min() would cause a warning */
120 if (count >= PAGE_SIZE)
121 count = PAGE_SIZE - 1;
122
123 return count;
124}
125static ssize_t codec_reg_show(struct device *dev,
126 struct device_attribute *attr, char *buf)
127{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000128 struct snd_soc_pcm_runtime *rtd =
129 container_of(dev, struct snd_soc_pcm_runtime, dev);
130
131 return soc_codec_reg_show(rtd->codec, buf);
Mark Brown2624d5f2009-11-03 21:56:13 +0000132}
133
134static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
135
Mark Browndbe21402010-02-12 11:37:24 +0000136static ssize_t pmdown_time_show(struct device *dev,
137 struct device_attribute *attr, char *buf)
138{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000139 struct snd_soc_pcm_runtime *rtd =
140 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Browndbe21402010-02-12 11:37:24 +0000141
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000142 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000143}
144
145static ssize_t pmdown_time_set(struct device *dev,
146 struct device_attribute *attr,
147 const char *buf, size_t count)
148{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000149 struct snd_soc_pcm_runtime *rtd =
150 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Brownc593b522010-10-27 20:11:17 -0700151 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000152
Mark Brownc593b522010-10-27 20:11:17 -0700153 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
154 if (ret)
155 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000156
157 return count;
158}
159
160static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
161
Mark Brown2624d5f2009-11-03 21:56:13 +0000162#ifdef CONFIG_DEBUG_FS
163static int codec_reg_open_file(struct inode *inode, struct file *file)
164{
165 file->private_data = inode->i_private;
166 return 0;
167}
168
169static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
170 size_t count, loff_t *ppos)
171{
172 ssize_t ret;
173 struct snd_soc_codec *codec = file->private_data;
174 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
175 if (!buf)
176 return -ENOMEM;
177 ret = soc_codec_reg_show(codec, buf);
178 if (ret >= 0)
179 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
180 kfree(buf);
181 return ret;
182}
183
184static ssize_t codec_reg_write_file(struct file *file,
185 const char __user *user_buf, size_t count, loff_t *ppos)
186{
187 char buf[32];
188 int buf_size;
189 char *start = buf;
190 unsigned long reg, value;
191 int step = 1;
192 struct snd_soc_codec *codec = file->private_data;
193
194 buf_size = min(count, (sizeof(buf)-1));
195 if (copy_from_user(buf, user_buf, buf_size))
196 return -EFAULT;
197 buf[buf_size] = 0;
198
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000199 if (codec->driver->reg_cache_step)
200 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000201
202 while (*start == ' ')
203 start++;
204 reg = simple_strtoul(start, &start, 16);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000205 if ((reg >= codec->driver->reg_cache_size) || (reg % step))
Mark Brown2624d5f2009-11-03 21:56:13 +0000206 return -EINVAL;
207 while (*start == ' ')
208 start++;
209 if (strict_strtoul(start, 16, &value))
210 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000211
212 /* Userspace has been fiddling around behind the kernel's back */
213 add_taint(TAINT_USER);
214
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000215 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000216 return buf_size;
217}
218
219static const struct file_operations codec_reg_fops = {
220 .open = codec_reg_open_file,
221 .read = codec_reg_read_file,
222 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200223 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000224};
225
226static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
227{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200228 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
229
230 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
231 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000232 if (!codec->debugfs_codec_root) {
233 printk(KERN_WARNING
234 "ASoC: Failed to create codec debugfs directory\n");
235 return;
236 }
237
Mark Brownaaee8ef2011-01-26 20:53:50 +0000238 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
239 &codec->cache_sync);
240 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
241 &codec->cache_only);
242
Mark Brown2624d5f2009-11-03 21:56:13 +0000243 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
244 codec->debugfs_codec_root,
245 codec, &codec_reg_fops);
246 if (!codec->debugfs_reg)
247 printk(KERN_WARNING
248 "ASoC: Failed to create codec register debugfs file\n");
249
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200250 codec->dapm.debugfs_dapm = debugfs_create_dir("dapm",
Mark Brown2624d5f2009-11-03 21:56:13 +0000251 codec->debugfs_codec_root);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200252 if (!codec->dapm.debugfs_dapm)
Mark Brown2624d5f2009-11-03 21:56:13 +0000253 printk(KERN_WARNING
254 "Failed to create DAPM debugfs directory\n");
255
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200256 snd_soc_dapm_debugfs_init(&codec->dapm);
Mark Brown2624d5f2009-11-03 21:56:13 +0000257}
258
259static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
260{
261 debugfs_remove_recursive(codec->debugfs_codec_root);
262}
263
Mark Brownc3c5a192010-09-15 18:15:14 +0100264static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
265 size_t count, loff_t *ppos)
266{
267 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100268 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100269 struct snd_soc_codec *codec;
270
271 if (!buf)
272 return -ENOMEM;
273
Mark Brown2b194f9d2010-10-13 10:52:16 +0100274 list_for_each_entry(codec, &codec_list, list) {
275 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
276 codec->name);
277 if (len >= 0)
278 ret += len;
279 if (ret > PAGE_SIZE) {
280 ret = PAGE_SIZE;
281 break;
282 }
283 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100284
285 if (ret >= 0)
286 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
287
288 kfree(buf);
289
290 return ret;
291}
292
293static const struct file_operations codec_list_fops = {
294 .read = codec_list_read_file,
295 .llseek = default_llseek,/* read accesses f_pos */
296};
297
Mark Brownf3208782010-09-15 18:19:07 +0100298static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
299 size_t count, loff_t *ppos)
300{
301 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100302 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100303 struct snd_soc_dai *dai;
304
305 if (!buf)
306 return -ENOMEM;
307
Mark Brown2b194f9d2010-10-13 10:52:16 +0100308 list_for_each_entry(dai, &dai_list, list) {
309 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
310 if (len >= 0)
311 ret += len;
312 if (ret > PAGE_SIZE) {
313 ret = PAGE_SIZE;
314 break;
315 }
316 }
Mark Brownf3208782010-09-15 18:19:07 +0100317
Mark Brown2b194f9d2010-10-13 10:52:16 +0100318 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100319
320 kfree(buf);
321
322 return ret;
323}
324
325static const struct file_operations dai_list_fops = {
326 .read = dai_list_read_file,
327 .llseek = default_llseek,/* read accesses f_pos */
328};
329
Mark Brown19c7ac22010-09-15 18:22:40 +0100330static ssize_t platform_list_read_file(struct file *file,
331 char __user *user_buf,
332 size_t count, loff_t *ppos)
333{
334 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100335 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100336 struct snd_soc_platform *platform;
337
338 if (!buf)
339 return -ENOMEM;
340
Mark Brown2b194f9d2010-10-13 10:52:16 +0100341 list_for_each_entry(platform, &platform_list, list) {
342 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
343 platform->name);
344 if (len >= 0)
345 ret += len;
346 if (ret > PAGE_SIZE) {
347 ret = PAGE_SIZE;
348 break;
349 }
350 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100351
Mark Brown2b194f9d2010-10-13 10:52:16 +0100352 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100353
354 kfree(buf);
355
356 return ret;
357}
358
359static const struct file_operations platform_list_fops = {
360 .read = platform_list_read_file,
361 .llseek = default_llseek,/* read accesses f_pos */
362};
363
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200364static void soc_init_card_debugfs(struct snd_soc_card *card)
365{
366 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000367 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200368 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200369 dev_warn(card->dev,
370 "ASoC: Failed to create codec debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200371 return;
372 }
373
374 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
375 card->debugfs_card_root,
376 &card->pop_time);
377 if (!card->debugfs_pop_time)
378 dev_warn(card->dev,
379 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200380}
381
382static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
383{
384 debugfs_remove_recursive(card->debugfs_card_root);
385}
386
Mark Brown2624d5f2009-11-03 21:56:13 +0000387#else
388
389static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
390{
391}
392
393static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
394{
395}
Axel Linb95fccb2010-11-09 17:06:44 +0800396
397static inline void soc_init_card_debugfs(struct snd_soc_card *card)
398{
399}
400
401static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
402{
403}
Mark Brown2624d5f2009-11-03 21:56:13 +0000404#endif
405
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200406#ifdef CONFIG_SND_SOC_AC97_BUS
407/* unregister ac97 codec */
408static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
409{
410 if (codec->ac97->dev.bus)
411 device_unregister(&codec->ac97->dev);
412 return 0;
413}
414
415/* stop no dev release warning */
416static void soc_ac97_device_release(struct device *dev){}
417
418/* register ac97 codec to bus */
419static int soc_ac97_dev_register(struct snd_soc_codec *codec)
420{
421 int err;
422
423 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100424 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200425 codec->ac97->dev.release = soc_ac97_device_release;
426
Kay Sieversbb072bf2008-11-02 03:50:35 +0100427 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000428 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200429 err = device_register(&codec->ac97->dev);
430 if (err < 0) {
431 snd_printk(KERN_ERR "Can't register ac97 bus\n");
432 codec->ac97->dev.bus = NULL;
433 return err;
434 }
435 return 0;
436}
437#endif
438
Mark Brown06f409d2009-04-07 18:10:13 +0100439static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
440{
441 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000442 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
443 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Mark Brown06f409d2009-04-07 18:10:13 +0100444 int ret;
445
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000446 if (codec_dai->driver->symmetric_rates || cpu_dai->driver->symmetric_rates ||
447 rtd->dai_link->symmetric_rates) {
448 dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n",
449 rtd->rate);
Mark Brown06f409d2009-04-07 18:10:13 +0100450
451 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
452 SNDRV_PCM_HW_PARAM_RATE,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000453 rtd->rate,
454 rtd->rate);
Mark Brown06f409d2009-04-07 18:10:13 +0100455 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000456 dev_err(&rtd->dev,
Mark Brown06f409d2009-04-07 18:10:13 +0100457 "Unable to apply rate symmetry constraint: %d\n", ret);
458 return ret;
459 }
460 }
461
462 return 0;
463}
464
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200465/*
466 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
467 * then initialized and any private data can be allocated. This also calls
468 * startup for the cpu DAI, platform, machine and codec DAI.
469 */
470static int soc_pcm_open(struct snd_pcm_substream *substream)
471{
472 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200473 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000474 struct snd_soc_platform *platform = rtd->platform;
475 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
476 struct snd_soc_dai *codec_dai = rtd->codec_dai;
477 struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver;
478 struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200479 int ret = 0;
480
481 mutex_lock(&pcm_mutex);
482
483 /* startup the audio subsystem */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000484 if (cpu_dai->driver->ops->startup) {
485 ret = cpu_dai->driver->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200486 if (ret < 0) {
487 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100488 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200489 goto out;
490 }
491 }
492
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000493 if (platform->driver->ops->open) {
494 ret = platform->driver->ops->open(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200495 if (ret < 0) {
496 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
497 goto platform_err;
498 }
499 }
500
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000501 if (codec_dai->driver->ops->startup) {
502 ret = codec_dai->driver->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100503 if (ret < 0) {
504 printk(KERN_ERR "asoc: can't open codec %s\n",
505 codec_dai->name);
506 goto codec_dai_err;
507 }
508 }
509
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000510 if (rtd->dai_link->ops && rtd->dai_link->ops->startup) {
511 ret = rtd->dai_link->ops->startup(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200512 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000513 printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200514 goto machine_err;
515 }
516 }
517
Mark Browna00f90f2010-12-02 16:24:24 +0000518 /* Check that the codec and cpu DAIs are compatible */
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200519 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
520 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000521 max(codec_dai_drv->playback.rate_min,
522 cpu_dai_drv->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200523 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000524 min(codec_dai_drv->playback.rate_max,
525 cpu_dai_drv->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200526 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000527 max(codec_dai_drv->playback.channels_min,
528 cpu_dai_drv->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200529 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000530 min(codec_dai_drv->playback.channels_max,
531 cpu_dai_drv->playback.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100532 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000533 codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100534 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000535 codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates;
536 if (codec_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900537 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000538 runtime->hw.rates |= cpu_dai_drv->playback.rates;
539 if (cpu_dai_drv->playback.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900540 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000541 runtime->hw.rates |= codec_dai_drv->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200542 } else {
543 runtime->hw.rate_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000544 max(codec_dai_drv->capture.rate_min,
545 cpu_dai_drv->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200546 runtime->hw.rate_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000547 min(codec_dai_drv->capture.rate_max,
548 cpu_dai_drv->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200549 runtime->hw.channels_min =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000550 max(codec_dai_drv->capture.channels_min,
551 cpu_dai_drv->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200552 runtime->hw.channels_max =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000553 min(codec_dai_drv->capture.channels_max,
554 cpu_dai_drv->capture.channels_max);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100555 runtime->hw.formats =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000556 codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100557 runtime->hw.rates =
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000558 codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates;
559 if (codec_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900560 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000561 runtime->hw.rates |= cpu_dai_drv->capture.rates;
562 if (cpu_dai_drv->capture.rates
Jassi Brard9ad6292010-03-12 13:38:52 +0900563 & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000564 runtime->hw.rates |= codec_dai_drv->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200565 }
566
567 snd_pcm_limit_hw_rates(runtime);
568 if (!runtime->hw.rates) {
569 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100570 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900571 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200572 }
573 if (!runtime->hw.formats) {
574 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100575 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900576 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200577 }
578 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
579 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000580 codec_dai->name, cpu_dai->name);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900581 goto config_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200582 }
583
Mark Brown06f409d2009-04-07 18:10:13 +0100584 /* Symmetry only applies if we've already got an active stream. */
585 if (cpu_dai->active || codec_dai->active) {
586 ret = soc_pcm_apply_symmetry(substream);
587 if (ret != 0)
Jassi Brarbb1c0472010-02-25 11:24:53 +0900588 goto config_err;
Mark Brown06f409d2009-04-07 18:10:13 +0100589 }
590
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000591 pr_debug("asoc: %s <-> %s info:\n",
592 codec_dai->name, cpu_dai->name);
Mark Brownf24368c2008-10-21 21:45:08 +0100593 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
594 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
595 runtime->hw.channels_max);
596 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
597 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200598
Jassi Brar14dc5732010-02-26 09:12:32 +0900599 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600 cpu_dai->playback_active++;
601 codec_dai->playback_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900602 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000603 cpu_dai->capture_active++;
604 codec_dai->capture_active++;
Jassi Brar14dc5732010-02-26 09:12:32 +0900605 }
606 cpu_dai->active++;
607 codec_dai->active++;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000608 rtd->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200609 mutex_unlock(&pcm_mutex);
610 return 0;
611
Jassi Brarbb1c0472010-02-25 11:24:53 +0900612config_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000613 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
614 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200615
Jassi Brarbb1c0472010-02-25 11:24:53 +0900616machine_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000617 if (codec_dai->driver->ops->shutdown)
618 codec_dai->driver->ops->shutdown(substream, codec_dai);
Jassi Brarbb1c0472010-02-25 11:24:53 +0900619
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100620codec_dai_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000621 if (platform->driver->ops->close)
622 platform->driver->ops->close(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200623
624platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000625 if (cpu_dai->driver->ops->shutdown)
626 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200627out:
628 mutex_unlock(&pcm_mutex);
629 return ret;
630}
631
632/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200633 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200634 * This is to ensure there are no pops or clicks in between any music tracks
635 * due to DAPM power cycling.
636 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100637static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200638{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000639 struct snd_soc_pcm_runtime *rtd =
640 container_of(work, struct snd_soc_pcm_runtime, delayed_work.work);
641 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200642
643 mutex_lock(&pcm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200644
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000645 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
646 codec_dai->driver->playback.stream_name,
647 codec_dai->playback_active ? "active" : "inactive",
648 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200649
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000650 /* are we waiting on this codec DAI stream */
651 if (codec_dai->pop_wait == 1) {
652 codec_dai->pop_wait = 0;
653 snd_soc_dapm_stream_event(rtd,
654 codec_dai->driver->playback.stream_name,
655 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200656 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000657
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200658 mutex_unlock(&pcm_mutex);
659}
660
661/*
662 * Called by ALSA when a PCM substream is closed. Private data can be
663 * freed here. The cpu DAI, codec DAI, machine and platform are also
664 * shutdown.
665 */
666static int soc_codec_close(struct snd_pcm_substream *substream)
667{
668 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000669 struct snd_soc_platform *platform = rtd->platform;
670 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
671 struct snd_soc_dai *codec_dai = rtd->codec_dai;
672 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200673
674 mutex_lock(&pcm_mutex);
675
Jassi Brar14dc5732010-02-26 09:12:32 +0900676 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000677 cpu_dai->playback_active--;
678 codec_dai->playback_active--;
Jassi Brar14dc5732010-02-26 09:12:32 +0900679 } else {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000680 cpu_dai->capture_active--;
681 codec_dai->capture_active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200682 }
Jassi Brar14dc5732010-02-26 09:12:32 +0900683
684 cpu_dai->active--;
685 codec_dai->active--;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200686 codec->active--;
687
Mark Brown6010b2d2008-09-06 18:33:24 +0100688 /* Muting the DAC suppresses artifacts caused during digital
689 * shutdown, for example from stopping clocks.
690 */
691 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
692 snd_soc_dai_digital_mute(codec_dai, 1);
693
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000694 if (cpu_dai->driver->ops->shutdown)
695 cpu_dai->driver->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200696
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000697 if (codec_dai->driver->ops->shutdown)
698 codec_dai->driver->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200699
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000700 if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown)
701 rtd->dai_link->ops->shutdown(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200702
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000703 if (platform->driver->ops->close)
704 platform->driver->ops->close(substream);
705 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200706
707 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
708 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100709 codec_dai->pop_wait = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000710 schedule_delayed_work(&rtd->delayed_work,
711 msecs_to_jiffies(rtd->pmdown_time));
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200712 } else {
713 /* capture streams can be powered down now */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000714 snd_soc_dapm_stream_event(rtd,
715 codec_dai->driver->capture.stream_name,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100716 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200717 }
718
719 mutex_unlock(&pcm_mutex);
720 return 0;
721}
722
723/*
724 * Called by ALSA when the PCM substream is prepared, can set format, sample
725 * rate, etc. This function is non atomic and can be called multiple times,
726 * it can refer to the runtime info.
727 */
728static int soc_pcm_prepare(struct snd_pcm_substream *substream)
729{
730 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000731 struct snd_soc_platform *platform = rtd->platform;
732 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
733 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200734 int ret = 0;
735
736 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100737
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000738 if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) {
739 ret = rtd->dai_link->ops->prepare(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100740 if (ret < 0) {
741 printk(KERN_ERR "asoc: machine prepare error\n");
742 goto out;
743 }
744 }
745
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000746 if (platform->driver->ops->prepare) {
747 ret = platform->driver->ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200748 if (ret < 0) {
749 printk(KERN_ERR "asoc: platform 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 (codec_dai->driver->ops->prepare) {
755 ret = codec_dai->driver->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200756 if (ret < 0) {
757 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200758 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200759 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200760 }
761
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000762 if (cpu_dai->driver->ops->prepare) {
763 ret = cpu_dai->driver->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100764 if (ret < 0) {
765 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
766 goto out;
767 }
768 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200769
Mark Brownd45f6212008-10-14 13:58:36 +0100770 /* cancel any delayed stream shutdown that is pending */
771 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
772 codec_dai->pop_wait) {
773 codec_dai->pop_wait = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000774 cancel_delayed_work(&rtd->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100775 }
776
Mark Brown452c5ea2009-05-17 21:41:23 +0100777 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000778 snd_soc_dapm_stream_event(rtd,
779 codec_dai->driver->playback.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100780 SND_SOC_DAPM_STREAM_START);
781 else
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000782 snd_soc_dapm_stream_event(rtd,
783 codec_dai->driver->capture.stream_name,
Mark Brown452c5ea2009-05-17 21:41:23 +0100784 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100785
Mark Brown452c5ea2009-05-17 21:41:23 +0100786 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200787
788out:
789 mutex_unlock(&pcm_mutex);
790 return ret;
791}
792
793/*
794 * Called by ALSA when the hardware params are set by application. This
795 * function can also be called multiple times and can allocate buffers
796 * (using snd_pcm_lib_* ). It's non-atomic.
797 */
798static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
799 struct snd_pcm_hw_params *params)
800{
801 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000802 struct snd_soc_platform *platform = rtd->platform;
803 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
804 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200805 int ret = 0;
806
807 mutex_lock(&pcm_mutex);
808
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000809 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) {
810 ret = rtd->dai_link->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200811 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100812 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200813 goto out;
814 }
815 }
816
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000817 if (codec_dai->driver->ops->hw_params) {
818 ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100819 if (ret < 0) {
820 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
821 codec_dai->name);
822 goto codec_err;
823 }
824 }
825
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000826 if (cpu_dai->driver->ops->hw_params) {
827 ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200828 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200829 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100830 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200831 goto interface_err;
832 }
833 }
834
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000835 if (platform->driver->ops->hw_params) {
836 ret = platform->driver->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200837 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200838 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200839 platform->name);
840 goto platform_err;
841 }
842 }
843
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000844 rtd->rate = params_rate(params);
Mark Brown06f409d2009-04-07 18:10:13 +0100845
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200846out:
847 mutex_unlock(&pcm_mutex);
848 return ret;
849
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200850platform_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000851 if (cpu_dai->driver->ops->hw_free)
852 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200853
854interface_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000855 if (codec_dai->driver->ops->hw_free)
856 codec_dai->driver->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100857
858codec_err:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000859 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
860 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200861
862 mutex_unlock(&pcm_mutex);
863 return ret;
864}
865
866/*
Mark Browna00f90f2010-12-02 16:24:24 +0000867 * Frees resources allocated by hw_params, can be called multiple times
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200868 */
869static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
870{
871 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000872 struct snd_soc_platform *platform = rtd->platform;
873 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
874 struct snd_soc_dai *codec_dai = rtd->codec_dai;
875 struct snd_soc_codec *codec = rtd->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200876
877 mutex_lock(&pcm_mutex);
878
879 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100880 if (!codec->active)
881 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200882
883 /* free any machine hw params */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000884 if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free)
885 rtd->dai_link->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200886
887 /* free any DMA resources */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000888 if (platform->driver->ops->hw_free)
889 platform->driver->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200890
Mark Browna00f90f2010-12-02 16:24:24 +0000891 /* now free hw params for the DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000892 if (codec_dai->driver->ops->hw_free)
893 codec_dai->driver->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200894
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000895 if (cpu_dai->driver->ops->hw_free)
896 cpu_dai->driver->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200897
898 mutex_unlock(&pcm_mutex);
899 return 0;
900}
901
902static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
903{
904 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000905 struct snd_soc_platform *platform = rtd->platform;
906 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
907 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200908 int ret;
909
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000910 if (codec_dai->driver->ops->trigger) {
911 ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200912 if (ret < 0)
913 return ret;
914 }
915
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000916 if (platform->driver->ops->trigger) {
917 ret = platform->driver->ops->trigger(substream, cmd);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200918 if (ret < 0)
919 return ret;
920 }
921
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000922 if (cpu_dai->driver->ops->trigger) {
923 ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200924 if (ret < 0)
925 return ret;
926 }
927 return 0;
928}
929
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200930/*
931 * soc level wrapper for pointer callback
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200932 * If cpu_dai, codec_dai, platform driver has the delay callback, than
933 * the runtime->delay will be updated accordingly.
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200934 */
935static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream)
936{
937 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000938 struct snd_soc_platform *platform = rtd->platform;
939 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
940 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200941 struct snd_pcm_runtime *runtime = substream->runtime;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200942 snd_pcm_uframes_t offset = 0;
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200943 snd_pcm_sframes_t delay = 0;
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200944
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000945 if (platform->driver->ops->pointer)
946 offset = platform->driver->ops->pointer(substream);
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200947
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000948 if (cpu_dai->driver->ops->delay)
949 delay += cpu_dai->driver->ops->delay(substream, cpu_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200950
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000951 if (codec_dai->driver->ops->delay)
952 delay += codec_dai->driver->ops->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200953
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000954 if (platform->driver->delay)
955 delay += platform->driver->delay(substream, codec_dai);
Peter Ujfalusi258020d2010-03-03 15:08:07 +0200956
957 runtime->delay = delay;
958
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200959 return offset;
960}
961
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200962/* ASoC PCM operations */
963static struct snd_pcm_ops soc_pcm_ops = {
964 .open = soc_pcm_open,
965 .close = soc_codec_close,
966 .hw_params = soc_pcm_hw_params,
967 .hw_free = soc_pcm_hw_free,
968 .prepare = soc_pcm_prepare,
969 .trigger = soc_pcm_trigger,
Peter Ujfalusi377b6f62010-03-03 15:08:06 +0200970 .pointer = soc_pcm_pointer,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200971};
972
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000973#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200974/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000975int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200976{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000977 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200978 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200979 int i;
980
Daniel Macke3509ff2009-06-03 17:44:49 +0200981 /* If the initialization of this soc device failed, there is no codec
982 * associated with it. Just bail out in this case.
983 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000984 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200985 return 0;
986
Andy Green6ed25972008-06-13 16:24:05 +0100987 /* Due to the resume being scheduled into a workqueue we could
988 * suspend before that's finished - wait for it to complete.
989 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000990 snd_power_lock(card->snd_card);
991 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
992 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100993
994 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000995 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100996
Mark Browna00f90f2010-12-02 16:24:24 +0000997 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000998 for (i = 0; i < card->num_rtd; i++) {
999 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1000 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001001
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001002 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001003 continue;
1004
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001005 if (drv->ops->digital_mute && dai->playback_active)
1006 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001007 }
1008
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001009 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001010 for (i = 0; i < card->num_rtd; i++) {
1011 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001012 continue;
1013
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001014 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +01001015 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001016
Mark Brown87506542008-11-18 20:50:34 +00001017 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001018 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001019
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001020 for (i = 0; i < card->num_rtd; i++) {
1021 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1022 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001023
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001024 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001025 continue;
1026
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001027 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
1028 cpu_dai->driver->suspend(cpu_dai);
1029 if (platform->driver->suspend && !platform->suspended) {
1030 platform->driver->suspend(cpu_dai);
1031 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +01001032 }
1033 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001034
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001035 /* close any waiting streams and save state */
1036 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +01001037 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001038 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001039 }
Mark Brown3efab7d2010-05-09 13:25:43 +01001040
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001041 for (i = 0; i < card->num_rtd; i++) {
1042 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
1043
1044 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001045 continue;
1046
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001047 if (driver->playback.stream_name != NULL)
1048 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
1049 SND_SOC_DAPM_STREAM_SUSPEND);
1050
1051 if (driver->capture.stream_name != NULL)
1052 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
1053 SND_SOC_DAPM_STREAM_SUSPEND);
1054 }
1055
1056 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001057 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001058 /* If there are paths active then the CODEC will be held with
1059 * bias _ON and should not be suspended. */
1060 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001061 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001062 case SND_SOC_BIAS_STANDBY:
1063 case SND_SOC_BIAS_OFF:
1064 codec->driver->suspend(codec, PMSG_SUSPEND);
1065 codec->suspended = 1;
1066 break;
1067 default:
1068 dev_dbg(codec->dev, "CODEC is on over suspend\n");
1069 break;
1070 }
1071 }
1072 }
1073
1074 for (i = 0; i < card->num_rtd; i++) {
1075 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1076
1077 if (card->rtd[i].dai_link->ignore_suspend)
1078 continue;
1079
1080 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
1081 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001082 }
1083
Mark Brown87506542008-11-18 20:50:34 +00001084 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001085 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001086
1087 return 0;
1088}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001089EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001090
Andy Green6ed25972008-06-13 16:24:05 +01001091/* deferred resume work, so resume can complete before we finished
1092 * setting our codec back up, which can be very slow on I2C
1093 */
1094static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001095{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001096 struct snd_soc_card *card =
1097 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001098 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001099 int i;
1100
Andy Green6ed25972008-06-13 16:24:05 +01001101 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
1102 * so userspace apps are blocked from touching us
1103 */
1104
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001105 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +01001106
Mark Brown99497882010-05-07 20:24:05 +01001107 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001108 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +01001109
Mark Brown87506542008-11-18 20:50:34 +00001110 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +00001111 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001112
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001113 /* resume AC97 DAIs */
1114 for (i = 0; i < card->num_rtd; i++) {
1115 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +01001116
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001117 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001118 continue;
1119
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001120 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
1121 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001122 }
1123
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001124 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001125 /* If the CODEC was idle over suspend then it will have been
1126 * left with bias OFF or STANDBY and suspended so we must now
1127 * resume. Otherwise the suspend was suppressed.
1128 */
1129 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001130 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001131 case SND_SOC_BIAS_STANDBY:
1132 case SND_SOC_BIAS_OFF:
1133 codec->driver->resume(codec);
1134 codec->suspended = 0;
1135 break;
1136 default:
1137 dev_dbg(codec->dev, "CODEC was on over suspend\n");
1138 break;
1139 }
Mark Brown1547aba2010-05-07 21:11:40 +01001140 }
1141 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001142
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001143 for (i = 0; i < card->num_rtd; i++) {
1144 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001145
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001146 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001147 continue;
1148
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001149 if (driver->playback.stream_name != NULL)
1150 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001151 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001152
1153 if (driver->capture.stream_name != NULL)
1154 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001155 SND_SOC_DAPM_STREAM_RESUME);
1156 }
1157
Mark Brown3ff3f642008-05-19 12:32:25 +02001158 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001159 for (i = 0; i < card->num_rtd; i++) {
1160 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
1161 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +01001162
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001163 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001164 continue;
1165
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001166 if (drv->ops->digital_mute && dai->playback_active)
1167 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001168 }
1169
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001170 for (i = 0; i < card->num_rtd; i++) {
1171 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1172 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +01001173
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +01001175 continue;
1176
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001177 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
1178 cpu_dai->driver->resume(cpu_dai);
1179 if (platform->driver->resume && platform->suspended) {
1180 platform->driver->resume(cpu_dai);
1181 platform->suspended = 0;
1182 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001183 }
1184
Mark Brown87506542008-11-18 20:50:34 +00001185 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +00001186 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001187
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001188 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +01001189
1190 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001191 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +01001192}
1193
1194/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001195int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +01001196{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001197 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001198 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +02001199
Mark Brown64ab9ba2009-03-31 11:27:03 +01001200 /* AC97 devices might have other drivers hanging off them so
1201 * need to resume immediately. Other drivers don't have that
1202 * problem and may take a substantial amount of time to resume
1203 * due to I/O costs and anti-pop so handle them out of line.
1204 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001205 for (i = 0; i < card->num_rtd; i++) {
1206 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
1207 if (cpu_dai->driver->ac97_control) {
1208 dev_dbg(dev, "Resuming AC97 immediately\n");
1209 soc_resume_deferred(&card->deferred_resume_work);
1210 } else {
1211 dev_dbg(dev, "Scheduling resume work\n");
1212 if (!schedule_work(&card->deferred_resume_work))
1213 dev_err(dev, "resume work item may be lost\n");
1214 }
Mark Brown64ab9ba2009-03-31 11:27:03 +01001215 }
Andy Green6ed25972008-06-13 16:24:05 +01001216
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001217 return 0;
1218}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001219EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001220#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001221#define snd_soc_suspend NULL
1222#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001223#endif
1224
Barry Song02a06d32009-10-16 18:13:38 +08001225static struct snd_soc_dai_ops null_dai_ops = {
1226};
1227
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001228static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001229{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001230 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1231 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +00001232 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001233 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001234 struct snd_soc_dai *codec_dai, *cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001235
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001236 if (rtd->complete)
1237 return 1;
1238 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +00001239
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001240 /* do we already have the CPU DAI for this link ? */
1241 if (rtd->cpu_dai) {
1242 goto find_codec;
1243 }
1244 /* no, then find CPU DAI from registered DAIs*/
1245 list_for_each_entry(cpu_dai, &dai_list, list) {
1246 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
1247
1248 if (!try_module_get(cpu_dai->dev->driver->owner))
1249 return -ENODEV;
1250
1251 rtd->cpu_dai = cpu_dai;
1252 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +00001253 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001254 }
1255 dev_dbg(card->dev, "CPU DAI %s not registered\n",
1256 dai_link->cpu_dai_name);
1257
1258find_codec:
1259 /* do we already have the CODEC for this link ? */
1260 if (rtd->codec) {
1261 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +00001262 }
1263
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001264 /* no, then find CODEC from registered CODECs*/
1265 list_for_each_entry(codec, &codec_list, list) {
1266 if (!strcmp(codec->name, dai_link->codec_name)) {
1267 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +00001268
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001269 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
1270 list_for_each_entry(codec_dai, &dai_list, list) {
1271 if (codec->dev == codec_dai->dev &&
1272 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
1273 rtd->codec_dai = codec_dai;
1274 goto find_platform;
Mark Brown6b05eda2008-12-08 19:26:48 +00001275 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001276 }
1277 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
1278 dai_link->codec_dai_name);
1279
1280 goto find_platform;
1281 }
1282 }
1283 dev_dbg(card->dev, "CODEC %s not registered\n",
1284 dai_link->codec_name);
1285
1286find_platform:
1287 /* do we already have the CODEC DAI for this link ? */
1288 if (rtd->platform) {
1289 goto out;
1290 }
1291 /* no, then find CPU DAI from registered DAIs*/
1292 list_for_each_entry(platform, &platform_list, list) {
1293 if (!strcmp(platform->name, dai_link->platform_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001294 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 */
Harsha Priyaf6c2ed52011-01-05 11:34:51 +05301428 if (!try_module_get(codec->dev->driver->owner))
1429 return -ENODEV;
1430
Jarkko Nikula589c3562010-12-06 16:27:07 +02001431 codec->probed = 1;
1432 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001433 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001434
1435 return ret;
1436}
1437
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001438static void rtd_release(struct device *dev) {}
1439
Jarkko Nikula589c3562010-12-06 16:27:07 +02001440static int soc_post_component_init(struct snd_soc_card *card,
1441 struct snd_soc_codec *codec,
1442 int num, int dailess)
1443{
1444 struct snd_soc_dai_link *dai_link = NULL;
1445 struct snd_soc_aux_dev *aux_dev = NULL;
1446 struct snd_soc_pcm_runtime *rtd;
1447 const char *temp, *name;
1448 int ret = 0;
1449
1450 if (!dailess) {
1451 dai_link = &card->dai_link[num];
1452 rtd = &card->rtd[num];
1453 name = dai_link->name;
1454 } else {
1455 aux_dev = &card->aux_dev[num];
1456 rtd = &card->rtd_aux[num];
1457 name = aux_dev->name;
1458 }
1459
1460 /* machine controls, routes and widgets are not prefixed */
1461 temp = codec->name_prefix;
1462 codec->name_prefix = NULL;
1463
1464 /* do machine specific initialization */
1465 if (!dailess && dai_link->init)
1466 ret = dai_link->init(rtd);
1467 else if (dailess && aux_dev->init)
1468 ret = aux_dev->init(&codec->dapm);
1469 if (ret < 0) {
1470 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1471 return ret;
1472 }
1473 codec->name_prefix = temp;
1474
1475 /* Make sure all DAPM widgets are instantiated */
1476 snd_soc_dapm_new_widgets(&codec->dapm);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001477
1478 /* register the rtd device */
1479 rtd->codec = codec;
1480 rtd->card = card;
1481 rtd->dev.parent = card->dev;
1482 rtd->dev.release = rtd_release;
1483 rtd->dev.init_name = name;
1484 ret = device_register(&rtd->dev);
1485 if (ret < 0) {
1486 dev_err(card->dev,
1487 "asoc: failed to register runtime device: %d\n", ret);
1488 return ret;
1489 }
1490 rtd->dev_registered = 1;
1491
1492 /* add DAPM sysfs entries for this codec */
1493 ret = snd_soc_dapm_sys_add(&rtd->dev);
1494 if (ret < 0)
1495 dev_err(codec->dev,
1496 "asoc: failed to add codec dapm sysfs entries: %d\n",
1497 ret);
1498
1499 /* add codec sysfs entries */
1500 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1501 if (ret < 0)
1502 dev_err(codec->dev,
1503 "asoc: failed to add codec sysfs files: %d\n", ret);
1504
1505 return 0;
1506}
1507
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001508static int soc_probe_dai_link(struct snd_soc_card *card, int num)
1509{
1510 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1511 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1512 struct snd_soc_codec *codec = rtd->codec;
1513 struct snd_soc_platform *platform = rtd->platform;
1514 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1515 int ret;
1516
1517 dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num);
1518
1519 /* config components */
1520 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001521 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001522 codec_dai->card = card;
1523 cpu_dai->card = card;
1524
1525 /* set default power off timeout */
1526 rtd->pmdown_time = pmdown_time;
1527
1528 /* probe the cpu_dai */
1529 if (!cpu_dai->probed) {
1530 if (cpu_dai->driver->probe) {
1531 ret = cpu_dai->driver->probe(cpu_dai);
1532 if (ret < 0) {
1533 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1534 cpu_dai->name);
1535 return ret;
1536 }
1537 }
1538 cpu_dai->probed = 1;
1539 /* mark cpu_dai as probed and add to card cpu_dai list */
1540 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1541 }
1542
1543 /* probe the CODEC */
1544 if (!codec->probed) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001545 ret = soc_probe_codec(card, codec);
1546 if (ret < 0)
1547 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001548 }
1549
1550 /* probe the platform */
1551 if (!platform->probed) {
1552 if (platform->driver->probe) {
1553 ret = platform->driver->probe(platform);
1554 if (ret < 0) {
1555 printk(KERN_ERR "asoc: failed to probe platform %s\n",
1556 platform->name);
1557 return ret;
1558 }
1559 }
1560 /* mark platform as probed and add to card platform list */
Harsha Priyaf6c2ed52011-01-05 11:34:51 +05301561
1562 if (!try_module_get(platform->dev->driver->owner))
1563 return -ENODEV;
1564
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001565 platform->probed = 1;
1566 list_add(&platform->card_list, &card->platform_dev_list);
1567 }
1568
1569 /* probe the CODEC DAI */
1570 if (!codec_dai->probed) {
1571 if (codec_dai->driver->probe) {
1572 ret = codec_dai->driver->probe(codec_dai);
1573 if (ret < 0) {
1574 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1575 codec_dai->name);
1576 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001577 }
1578 }
1579
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001580 /* mark cpu_dai as probed and add to card cpu_dai list */
1581 codec_dai->probed = 1;
1582 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001583 }
1584
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001585 /* DAPM dai link stream work */
1586 INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work);
1587
Jarkko Nikula589c3562010-12-06 16:27:07 +02001588 ret = soc_post_component_init(card, codec, num, 0);
1589 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001590 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001591
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001592 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1593 if (ret < 0)
1594 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1595
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001596 /* create the pcm */
1597 ret = soc_new_pcm(rtd, num);
1598 if (ret < 0) {
1599 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1600 return ret;
1601 }
1602
1603 /* add platform data for AC97 devices */
1604 if (rtd->codec_dai->driver->ac97_control)
1605 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1606
1607 return 0;
1608}
1609
1610#ifdef CONFIG_SND_SOC_AC97_BUS
1611static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1612{
1613 int ret;
1614
1615 /* Only instantiate AC97 if not already done by the adaptor
1616 * for the generic AC97 subsystem.
1617 */
1618 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001619 /*
1620 * It is possible that the AC97 device is already registered to
1621 * the device subsystem. This happens when the device is created
1622 * via snd_ac97_mixer(). Currently only SoC codec that does so
1623 * is the generic AC97 glue but others migh emerge.
1624 *
1625 * In those cases we don't try to register the device again.
1626 */
1627 if (!rtd->codec->ac97_created)
1628 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001629
1630 ret = soc_ac97_dev_register(rtd->codec);
1631 if (ret < 0) {
1632 printk(KERN_ERR "asoc: AC97 device register failed\n");
1633 return ret;
1634 }
1635
1636 rtd->codec->ac97_registered = 1;
1637 }
1638 return 0;
1639}
1640
1641static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1642{
1643 if (codec->ac97_registered) {
1644 soc_ac97_dev_unregister(codec);
1645 codec->ac97_registered = 0;
1646 }
1647}
1648#endif
1649
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001650static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1651{
1652 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001653 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001654 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001655
1656 /* find CODEC from registered CODECs*/
1657 list_for_each_entry(codec, &codec_list, list) {
1658 if (!strcmp(codec->name, aux_dev->codec_name)) {
1659 if (codec->probed) {
1660 dev_err(codec->dev,
1661 "asoc: codec already probed");
1662 ret = -EBUSY;
1663 goto out;
1664 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001665 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001666 }
1667 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001668 /* codec not found */
1669 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1670 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001671
Jarkko Nikula676ad982010-12-03 09:18:22 +02001672found:
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001673 if (!try_module_get(codec->dev->driver->owner))
1674 return -ENODEV;
1675
Jarkko Nikula589c3562010-12-06 16:27:07 +02001676 ret = soc_probe_codec(card, codec);
1677 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001678 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001679
Jarkko Nikula589c3562010-12-06 16:27:07 +02001680 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001681
1682out:
1683 return ret;
1684}
1685
1686static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1687{
1688 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1689 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001690
1691 /* unregister the rtd device */
1692 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001693 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001694 device_unregister(&rtd->dev);
1695 rtd->dev_registered = 0;
1696 }
1697
Jarkko Nikula589c3562010-12-06 16:27:07 +02001698 if (codec && codec->probed)
1699 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001700}
1701
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001702static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1703 enum snd_soc_compress_type compress_type)
1704{
1705 int ret;
1706
1707 if (codec->cache_init)
1708 return 0;
1709
1710 /* override the compress_type if necessary */
1711 if (compress_type && codec->compress_type != compress_type)
1712 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001713 ret = snd_soc_cache_init(codec);
1714 if (ret < 0) {
1715 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1716 ret);
1717 return ret;
1718 }
1719 codec->cache_init = 1;
1720 return 0;
1721}
1722
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001723static void snd_soc_instantiate_card(struct snd_soc_card *card)
1724{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001725 struct snd_soc_codec *codec;
1726 struct snd_soc_codec_conf *codec_conf;
1727 enum snd_soc_compress_type compress_type;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001728 int ret, i;
1729
1730 mutex_lock(&card->mutex);
1731
1732 if (card->instantiated) {
1733 mutex_unlock(&card->mutex);
1734 return;
1735 }
1736
1737 /* bind DAIs */
1738 for (i = 0; i < card->num_links; i++)
1739 soc_bind_dai_link(card, i);
1740
1741 /* bind completed ? */
1742 if (card->num_rtd != card->num_links) {
1743 mutex_unlock(&card->mutex);
1744 return;
1745 }
1746
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001747 /* initialize the register cache for each available codec */
1748 list_for_each_entry(codec, &codec_list, list) {
1749 if (codec->cache_init)
1750 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001751 /* by default we don't override the compress_type */
1752 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001753 /* check to see if we need to override the compress_type */
1754 for (i = 0; i < card->num_configs; ++i) {
1755 codec_conf = &card->codec_conf[i];
1756 if (!strcmp(codec->name, codec_conf->dev_name)) {
1757 compress_type = codec_conf->compress_type;
1758 if (compress_type && compress_type
1759 != codec->compress_type)
1760 break;
1761 }
1762 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001763 ret = snd_soc_init_codec_cache(codec, compress_type);
1764 if (ret < 0) {
1765 mutex_unlock(&card->mutex);
1766 return;
1767 }
1768 }
1769
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001770 /* card bind complete so register a sound card */
1771 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1772 card->owner, 0, &card->snd_card);
1773 if (ret < 0) {
1774 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1775 card->name);
1776 mutex_unlock(&card->mutex);
1777 return;
1778 }
1779 card->snd_card->dev = card->dev;
1780
Randy Dunlap1301a962008-06-17 19:19:34 +01001781#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +01001782 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001783 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001784#endif
Andy Green6ed25972008-06-13 16:24:05 +01001785
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001786 /* initialise the sound card only once */
1787 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001788 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001789 if (ret < 0)
1790 goto card_probe_error;
1791 }
1792
Mark Brownfe3e78e2009-11-03 22:13:13 +00001793 for (i = 0; i < card->num_links; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001794 ret = soc_probe_dai_link(card, i);
1795 if (ret < 0) {
Mark Brown321de0d2010-09-21 15:09:37 +01001796 pr_err("asoc: failed to instantiate card %s: %d\n",
1797 card->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001798 goto probe_dai_err;
1799 }
1800 }
1801
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001802 for (i = 0; i < card->num_aux_devs; i++) {
1803 ret = soc_probe_aux_dev(card, i);
1804 if (ret < 0) {
1805 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1806 card->name, ret);
1807 goto probe_aux_dev_err;
1808 }
1809 }
1810
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001811 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1812 "%s", card->name);
1813 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1814 "%s", card->name);
1815
1816 ret = snd_card_register(card->snd_card);
1817 if (ret < 0) {
1818 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001819 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001820 }
1821
1822#ifdef CONFIG_SND_SOC_AC97_BUS
1823 /* register any AC97 codecs */
1824 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001825 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1826 if (ret < 0) {
1827 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1828 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001829 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001830 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001831 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001832 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001833#endif
1834
Mark Brown435c5e22008-12-04 15:32:53 +00001835 card->instantiated = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001836 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001837 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001838
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001839probe_aux_dev_err:
1840 for (i = 0; i < card->num_aux_devs; i++)
1841 soc_remove_aux_dev(card, i);
1842
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001843probe_dai_err:
1844 for (i = 0; i < card->num_links; i++)
1845 soc_remove_dai_link(card, i);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001846
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001847card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001848 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001849 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001850
1851 snd_card_free(card->snd_card);
1852
1853 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001854}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001855
Mark Brown435c5e22008-12-04 15:32:53 +00001856/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001857 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001858 * client_mutex.
1859 */
1860static void snd_soc_instantiate_cards(void)
1861{
1862 struct snd_soc_card *card;
1863 list_for_each_entry(card, &card_list, list)
1864 snd_soc_instantiate_card(card);
1865}
1866
1867/* probes a new socdev */
1868static int soc_probe(struct platform_device *pdev)
1869{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001870 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001871 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001872
Vinod Koul70a7ca32011-01-14 19:22:48 +05301873 /*
1874 * no card, so machine driver should be registering card
1875 * we should not be here in that case so ret error
1876 */
1877 if (!card)
1878 return -EINVAL;
1879
Mark Brown435c5e22008-12-04 15:32:53 +00001880 /* Bodge while we unpick instantiation */
1881 card->dev = &pdev->dev;
Vinod Koul4e10bda2011-01-13 22:48:52 +05301882 snd_soc_initialize_card_lists(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001883
Mark Brown435c5e22008-12-04 15:32:53 +00001884 ret = snd_soc_register_card(card);
1885 if (ret != 0) {
1886 dev_err(&pdev->dev, "Failed to register card\n");
1887 return ret;
1888 }
1889
1890 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001891}
1892
Vinod Koulb0e26482011-01-13 22:48:02 +05301893static int soc_cleanup_card_resources(struct snd_soc_card *card)
1894{
Vinod Koulb0e26482011-01-13 22:48:02 +05301895 int i;
1896
1897 /* make sure any delayed work runs */
1898 for (i = 0; i < card->num_rtd; i++) {
1899 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1900 flush_delayed_work_sync(&rtd->delayed_work);
1901 }
1902
1903 /* remove auxiliary devices */
1904 for (i = 0; i < card->num_aux_devs; i++)
1905 soc_remove_aux_dev(card, i);
1906
1907 /* remove and free each DAI */
1908 for (i = 0; i < card->num_rtd; i++)
1909 soc_remove_dai_link(card, i);
1910
1911 soc_cleanup_card_debugfs(card);
1912
1913 /* remove the card */
1914 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001915 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301916
1917 kfree(card->rtd);
1918 snd_card_free(card->snd_card);
1919 return 0;
1920
1921}
1922
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001923/* removes a socdev */
1924static int soc_remove(struct platform_device *pdev)
1925{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001926 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001927
Mark Brownc5af3a22008-11-28 13:29:45 +00001928 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001929 return 0;
1930}
1931
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001932int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001933{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001934 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001935 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}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001951EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001952
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001953const struct dev_pm_ops snd_soc_pm_ops = {
1954 .suspend = snd_soc_suspend,
1955 .resume = snd_soc_resume,
1956 .poweroff = snd_soc_poweroff,
Mark Brown416356f2009-06-30 19:05:15 +01001957};
1958
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001959/* ASoC platform driver */
1960static struct platform_driver soc_driver = {
1961 .driver = {
1962 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001963 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001964 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001965 },
1966 .probe = soc_probe,
1967 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001968};
1969
1970/* create a new pcm */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001971static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001972{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001973 struct snd_soc_codec *codec = rtd->codec;
1974 struct snd_soc_platform *platform = rtd->platform;
1975 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1976 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001977 struct snd_pcm *pcm;
1978 char new_name[64];
1979 int ret = 0, playback = 0, capture = 0;
1980
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001981 /* check client and interface hw capabilities */
Mark Brown40ca1142009-12-24 13:44:28 +00001982 snprintf(new_name, sizeof(new_name), "%s %s-%d",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001983 rtd->dai_link->stream_name, codec_dai->name, num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001984
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001985 if (codec_dai->driver->playback.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001986 playback = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001987 if (codec_dai->driver->capture.channels_min)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001988 capture = 1;
1989
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001990 dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name);
1991 ret = snd_pcm_new(rtd->card->snd_card, new_name,
1992 num, playback, capture, &pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001993 if (ret < 0) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001994 printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001995 return ret;
1996 }
1997
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001998 rtd->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001999 pcm->private_data = rtd;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002000 soc_pcm_ops.mmap = platform->driver->ops->mmap;
2001 soc_pcm_ops.pointer = platform->driver->ops->pointer;
2002 soc_pcm_ops.ioctl = platform->driver->ops->ioctl;
2003 soc_pcm_ops.copy = platform->driver->ops->copy;
2004 soc_pcm_ops.silence = platform->driver->ops->silence;
2005 soc_pcm_ops.ack = platform->driver->ops->ack;
2006 soc_pcm_ops.page = platform->driver->ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002007
2008 if (playback)
2009 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
2010
2011 if (capture)
2012 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
2013
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002014 ret = platform->driver->pcm_new(rtd->card->snd_card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002015 if (ret < 0) {
2016 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002017 return ret;
2018 }
2019
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002020 pcm->private_free = platform->driver->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002021 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
2022 cpu_dai->name);
2023 return ret;
2024}
2025
Mark Brown096e49d2009-07-05 15:12:22 +01002026/**
2027 * snd_soc_codec_volatile_register: Report if a register is volatile.
2028 *
2029 * @codec: CODEC to query.
2030 * @reg: Register to query.
2031 *
2032 * Boolean function indiciating if a CODEC register is volatile.
2033 */
Mark Brown181e0552011-01-24 14:05:25 +00002034int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
2035 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01002036{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00002037 if (codec->volatile_register)
2038 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01002039 else
2040 return 0;
2041}
2042EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
2043
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002044/**
2045 * snd_soc_new_ac97_codec - initailise AC97 device
2046 * @codec: audio codec
2047 * @ops: AC97 bus operations
2048 * @num: AC97 codec number
2049 *
2050 * Initialises AC97 codec resources for use by ad-hoc devices only.
2051 */
2052int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2053 struct snd_ac97_bus_ops *ops, int num)
2054{
2055 mutex_lock(&codec->mutex);
2056
2057 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2058 if (codec->ac97 == NULL) {
2059 mutex_unlock(&codec->mutex);
2060 return -ENOMEM;
2061 }
2062
2063 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2064 if (codec->ac97->bus == NULL) {
2065 kfree(codec->ac97);
2066 codec->ac97 = NULL;
2067 mutex_unlock(&codec->mutex);
2068 return -ENOMEM;
2069 }
2070
2071 codec->ac97->bus->ops = ops;
2072 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002073
2074 /*
2075 * Mark the AC97 device to be created by us. This way we ensure that the
2076 * device will be registered with the device subsystem later on.
2077 */
2078 codec->ac97_created = 1;
2079
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002080 mutex_unlock(&codec->mutex);
2081 return 0;
2082}
2083EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2084
2085/**
2086 * snd_soc_free_ac97_codec - free AC97 codec device
2087 * @codec: audio codec
2088 *
2089 * Frees AC97 codec device resources.
2090 */
2091void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2092{
2093 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002094#ifdef CONFIG_SND_SOC_AC97_BUS
2095 soc_unregister_ac97_dai_link(codec);
2096#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002097 kfree(codec->ac97->bus);
2098 kfree(codec->ac97);
2099 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002100 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002101 mutex_unlock(&codec->mutex);
2102}
2103EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2104
Mark Brownc3753702010-11-01 15:41:57 -04002105unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2106{
2107 unsigned int ret;
2108
Mark Brownc3acec22010-12-02 16:15:29 +00002109 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002110 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002111 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002112
2113 return ret;
2114}
2115EXPORT_SYMBOL_GPL(snd_soc_read);
2116
2117unsigned int snd_soc_write(struct snd_soc_codec *codec,
2118 unsigned int reg, unsigned int val)
2119{
2120 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002121 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002122 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002123}
2124EXPORT_SYMBOL_GPL(snd_soc_write);
2125
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002126/**
2127 * snd_soc_update_bits - update codec register bits
2128 * @codec: audio codec
2129 * @reg: codec register
2130 * @mask: register mask
2131 * @value: new value
2132 *
2133 * Writes new register value.
2134 *
Timur Tabi180c3292011-01-10 15:58:13 -06002135 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002136 */
2137int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002138 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002139{
2140 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002141 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002142 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002143
Timur Tabi180c3292011-01-10 15:58:13 -06002144 ret = snd_soc_read(codec, reg);
2145 if (ret < 0)
2146 return ret;
2147
2148 old = ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002149 new = (old & ~mask) | value;
2150 change = old != new;
Timur Tabi180c3292011-01-10 15:58:13 -06002151 if (change) {
2152 ret = snd_soc_write(codec, reg, new);
2153 if (ret < 0)
2154 return ret;
2155 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002156
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002157 return change;
2158}
2159EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2160
2161/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002162 * snd_soc_update_bits_locked - update codec register bits
2163 * @codec: audio codec
2164 * @reg: codec register
2165 * @mask: register mask
2166 * @value: new value
2167 *
2168 * Writes new register value, and takes the codec mutex.
2169 *
2170 * Returns 1 for change else 0.
2171 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002172int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2173 unsigned short reg, unsigned int mask,
2174 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002175{
2176 int change;
2177
2178 mutex_lock(&codec->mutex);
2179 change = snd_soc_update_bits(codec, reg, mask, value);
2180 mutex_unlock(&codec->mutex);
2181
2182 return change;
2183}
Mark Browndd1b3d52009-12-04 14:22:03 +00002184EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002185
2186/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002187 * snd_soc_test_bits - test register for change
2188 * @codec: audio codec
2189 * @reg: codec register
2190 * @mask: register mask
2191 * @value: new value
2192 *
2193 * Tests a register with a new value and checks if the new value is
2194 * different from the old value.
2195 *
2196 * Returns 1 for change else 0.
2197 */
2198int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002199 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002200{
2201 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002202 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002203
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002204 old = snd_soc_read(codec, reg);
2205 new = (old & ~mask) | value;
2206 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002207
2208 return change;
2209}
2210EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2211
2212/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002213 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2214 * @substream: the pcm substream
2215 * @hw: the hardware parameters
2216 *
2217 * Sets the substream runtime hardware parameters.
2218 */
2219int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2220 const struct snd_pcm_hardware *hw)
2221{
2222 struct snd_pcm_runtime *runtime = substream->runtime;
2223 runtime->hw.info = hw->info;
2224 runtime->hw.formats = hw->formats;
2225 runtime->hw.period_bytes_min = hw->period_bytes_min;
2226 runtime->hw.period_bytes_max = hw->period_bytes_max;
2227 runtime->hw.periods_min = hw->periods_min;
2228 runtime->hw.periods_max = hw->periods_max;
2229 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2230 runtime->hw.fifo_size = hw->fifo_size;
2231 return 0;
2232}
2233EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2234
2235/**
2236 * snd_soc_cnew - create new control
2237 * @_template: control template
2238 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002239 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002240 *
2241 * Create a new mixer control from a template control.
2242 *
2243 * Returns 0 for success, else error.
2244 */
2245struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
2246 void *data, char *long_name)
2247{
2248 struct snd_kcontrol_new template;
2249
2250 memcpy(&template, _template, sizeof(template));
2251 if (long_name)
2252 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002253 template.index = 0;
2254
2255 return snd_ctl_new1(&template, data);
2256}
2257EXPORT_SYMBOL_GPL(snd_soc_cnew);
2258
2259/**
Ian Molton3e8e1952009-01-09 00:23:21 +00002260 * snd_soc_add_controls - add an array of controls to a codec.
2261 * Convienience function to add a list of controls. Many codecs were
2262 * duplicating this code.
2263 *
2264 * @codec: codec to add controls to
2265 * @controls: array of controls to add
2266 * @num_controls: number of elements in the array
2267 *
2268 * Return 0 for success, else error.
2269 */
2270int snd_soc_add_controls(struct snd_soc_codec *codec,
2271 const struct snd_kcontrol_new *controls, int num_controls)
2272{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002273 struct snd_card *card = codec->card->snd_card;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002274 char prefixed_name[44], *name;
Ian Molton3e8e1952009-01-09 00:23:21 +00002275 int err, i;
2276
2277 for (i = 0; i < num_controls; i++) {
2278 const struct snd_kcontrol_new *control = &controls[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002279 if (codec->name_prefix) {
2280 snprintf(prefixed_name, sizeof(prefixed_name), "%s %s",
2281 codec->name_prefix, control->name);
2282 name = prefixed_name;
2283 } else {
2284 name = control->name;
2285 }
2286 err = snd_ctl_add(card, snd_soc_cnew(control, codec, name));
Ian Molton3e8e1952009-01-09 00:23:21 +00002287 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002288 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Jarkko Nikulaead9b912010-11-13 20:40:44 +02002289 codec->name, name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002290 return err;
2291 }
2292 }
2293
2294 return 0;
2295}
2296EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2297
2298/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002299 * snd_soc_info_enum_double - enumerated double mixer info callback
2300 * @kcontrol: mixer control
2301 * @uinfo: control element information
2302 *
2303 * Callback to provide information about a double enumerated
2304 * mixer control.
2305 *
2306 * Returns 0 for success.
2307 */
2308int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2309 struct snd_ctl_elem_info *uinfo)
2310{
2311 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2312
2313 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2314 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002315 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002316
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002317 if (uinfo->value.enumerated.item > e->max - 1)
2318 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002319 strcpy(uinfo->value.enumerated.name,
2320 e->texts[uinfo->value.enumerated.item]);
2321 return 0;
2322}
2323EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2324
2325/**
2326 * snd_soc_get_enum_double - enumerated double mixer get callback
2327 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002328 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002329 *
2330 * Callback to get the value of a double enumerated mixer.
2331 *
2332 * Returns 0 for success.
2333 */
2334int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2335 struct snd_ctl_elem_value *ucontrol)
2336{
2337 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2338 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002339 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002340
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002341 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002342 ;
2343 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002344 ucontrol->value.enumerated.item[0]
2345 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002346 if (e->shift_l != e->shift_r)
2347 ucontrol->value.enumerated.item[1] =
2348 (val >> e->shift_r) & (bitmask - 1);
2349
2350 return 0;
2351}
2352EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2353
2354/**
2355 * snd_soc_put_enum_double - enumerated double mixer put callback
2356 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002357 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002358 *
2359 * Callback to set the value of a double enumerated mixer.
2360 *
2361 * Returns 0 for success.
2362 */
2363int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2364 struct snd_ctl_elem_value *ucontrol)
2365{
2366 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2367 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002368 unsigned int val;
2369 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002370
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002371 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002372 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002373 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002374 return -EINVAL;
2375 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2376 mask = (bitmask - 1) << e->shift_l;
2377 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002378 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002379 return -EINVAL;
2380 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2381 mask |= (bitmask - 1) << e->shift_r;
2382 }
2383
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002384 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002385}
2386EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2387
2388/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002389 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2390 * @kcontrol: mixer control
2391 * @ucontrol: control element information
2392 *
2393 * Callback to get the value of a double semi enumerated mixer.
2394 *
2395 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2396 * used for handling bitfield coded enumeration for example.
2397 *
2398 * Returns 0 for success.
2399 */
2400int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2401 struct snd_ctl_elem_value *ucontrol)
2402{
2403 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002404 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002405 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002406
2407 reg_val = snd_soc_read(codec, e->reg);
2408 val = (reg_val >> e->shift_l) & e->mask;
2409 for (mux = 0; mux < e->max; mux++) {
2410 if (val == e->values[mux])
2411 break;
2412 }
2413 ucontrol->value.enumerated.item[0] = mux;
2414 if (e->shift_l != e->shift_r) {
2415 val = (reg_val >> e->shift_r) & e->mask;
2416 for (mux = 0; mux < e->max; mux++) {
2417 if (val == e->values[mux])
2418 break;
2419 }
2420 ucontrol->value.enumerated.item[1] = mux;
2421 }
2422
2423 return 0;
2424}
2425EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2426
2427/**
2428 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2429 * @kcontrol: mixer control
2430 * @ucontrol: control element information
2431 *
2432 * Callback to set the value of a double semi enumerated mixer.
2433 *
2434 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2435 * used for handling bitfield coded enumeration for example.
2436 *
2437 * Returns 0 for success.
2438 */
2439int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2440 struct snd_ctl_elem_value *ucontrol)
2441{
2442 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002443 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002444 unsigned int val;
2445 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002446
2447 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2448 return -EINVAL;
2449 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2450 mask = e->mask << e->shift_l;
2451 if (e->shift_l != e->shift_r) {
2452 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2453 return -EINVAL;
2454 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2455 mask |= e->mask << e->shift_r;
2456 }
2457
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002458 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002459}
2460EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2461
2462/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002463 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2464 * @kcontrol: mixer control
2465 * @uinfo: control element information
2466 *
2467 * Callback to provide information about an external enumerated
2468 * single mixer.
2469 *
2470 * Returns 0 for success.
2471 */
2472int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2473 struct snd_ctl_elem_info *uinfo)
2474{
2475 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2476
2477 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2478 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002479 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002480
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002481 if (uinfo->value.enumerated.item > e->max - 1)
2482 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002483 strcpy(uinfo->value.enumerated.name,
2484 e->texts[uinfo->value.enumerated.item]);
2485 return 0;
2486}
2487EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2488
2489/**
2490 * snd_soc_info_volsw_ext - external single mixer info callback
2491 * @kcontrol: mixer control
2492 * @uinfo: control element information
2493 *
2494 * Callback to provide information about a single external mixer control.
2495 *
2496 * Returns 0 for success.
2497 */
2498int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2499 struct snd_ctl_elem_info *uinfo)
2500{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002501 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002502
Mark Brownfd5dfad2009-04-15 21:37:46 +01002503 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002504 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2505 else
2506 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2507
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002508 uinfo->count = 1;
2509 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002510 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002511 return 0;
2512}
2513EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2514
2515/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002516 * snd_soc_info_volsw - single mixer info callback
2517 * @kcontrol: mixer control
2518 * @uinfo: control element information
2519 *
2520 * Callback to provide information about a single mixer control.
2521 *
2522 * Returns 0 for success.
2523 */
2524int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2525 struct snd_ctl_elem_info *uinfo)
2526{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002527 struct soc_mixer_control *mc =
2528 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002529 int platform_max;
Mark Brown762b8df2008-10-30 12:37:08 +00002530 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002531 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002532
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002533 if (!mc->platform_max)
2534 mc->platform_max = mc->max;
2535 platform_max = mc->platform_max;
2536
2537 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002538 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2539 else
2540 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2541
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002542 uinfo->count = shift == rshift ? 1 : 2;
2543 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002544 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002545 return 0;
2546}
2547EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2548
2549/**
2550 * snd_soc_get_volsw - single mixer get callback
2551 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002552 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002553 *
2554 * Callback to get the value of a single mixer control.
2555 *
2556 * Returns 0 for success.
2557 */
2558int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2559 struct snd_ctl_elem_value *ucontrol)
2560{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002561 struct soc_mixer_control *mc =
2562 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002563 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002564 unsigned int reg = mc->reg;
2565 unsigned int shift = mc->shift;
2566 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002567 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002568 unsigned int mask = (1 << fls(max)) - 1;
2569 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002570
2571 ucontrol->value.integer.value[0] =
2572 (snd_soc_read(codec, reg) >> shift) & mask;
2573 if (shift != rshift)
2574 ucontrol->value.integer.value[1] =
2575 (snd_soc_read(codec, reg) >> rshift) & mask;
2576 if (invert) {
2577 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002578 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002579 if (shift != rshift)
2580 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002581 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002582 }
2583
2584 return 0;
2585}
2586EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2587
2588/**
2589 * snd_soc_put_volsw - single mixer put callback
2590 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002591 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002592 *
2593 * Callback to set the value of a single mixer control.
2594 *
2595 * Returns 0 for success.
2596 */
2597int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2598 struct snd_ctl_elem_value *ucontrol)
2599{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002600 struct soc_mixer_control *mc =
2601 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002602 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002603 unsigned int reg = mc->reg;
2604 unsigned int shift = mc->shift;
2605 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002606 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002607 unsigned int mask = (1 << fls(max)) - 1;
2608 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002609 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002610
2611 val = (ucontrol->value.integer.value[0] & mask);
2612 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002613 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002614 val_mask = mask << shift;
2615 val = val << shift;
2616 if (shift != rshift) {
2617 val2 = (ucontrol->value.integer.value[1] & mask);
2618 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002619 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002620 val_mask |= mask << rshift;
2621 val |= val2 << rshift;
2622 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002623 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002624}
2625EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2626
2627/**
2628 * snd_soc_info_volsw_2r - double mixer info callback
2629 * @kcontrol: mixer control
2630 * @uinfo: control element information
2631 *
2632 * Callback to provide information about a double mixer control that
2633 * spans 2 codec registers.
2634 *
2635 * Returns 0 for success.
2636 */
2637int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2638 struct snd_ctl_elem_info *uinfo)
2639{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002640 struct soc_mixer_control *mc =
2641 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002642 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002643
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002644 if (!mc->platform_max)
2645 mc->platform_max = mc->max;
2646 platform_max = mc->platform_max;
2647
2648 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002649 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2650 else
2651 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2652
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002653 uinfo->count = 2;
2654 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002655 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002656 return 0;
2657}
2658EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2659
2660/**
2661 * snd_soc_get_volsw_2r - double mixer get callback
2662 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002663 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002664 *
2665 * Callback to get the value of a double mixer control that spans 2 registers.
2666 *
2667 * Returns 0 for success.
2668 */
2669int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2670 struct snd_ctl_elem_value *ucontrol)
2671{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002672 struct soc_mixer_control *mc =
2673 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002674 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002675 unsigned int reg = mc->reg;
2676 unsigned int reg2 = mc->rreg;
2677 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002678 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002679 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002680 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002681
2682 ucontrol->value.integer.value[0] =
2683 (snd_soc_read(codec, reg) >> shift) & mask;
2684 ucontrol->value.integer.value[1] =
2685 (snd_soc_read(codec, reg2) >> shift) & mask;
2686 if (invert) {
2687 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002688 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002689 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002690 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002691 }
2692
2693 return 0;
2694}
2695EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2696
2697/**
2698 * snd_soc_put_volsw_2r - double mixer set callback
2699 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002700 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002701 *
2702 * Callback to set the value of a double mixer control that spans 2 registers.
2703 *
2704 * Returns 0 for success.
2705 */
2706int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2707 struct snd_ctl_elem_value *ucontrol)
2708{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002709 struct soc_mixer_control *mc =
2710 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002711 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002712 unsigned int reg = mc->reg;
2713 unsigned int reg2 = mc->rreg;
2714 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002715 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002716 unsigned int mask = (1 << fls(max)) - 1;
2717 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002718 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002719 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002720
2721 val_mask = mask << shift;
2722 val = (ucontrol->value.integer.value[0] & mask);
2723 val2 = (ucontrol->value.integer.value[1] & mask);
2724
2725 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002726 val = max - val;
2727 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002728 }
2729
2730 val = val << shift;
2731 val2 = val2 << shift;
2732
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002733 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002734 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002735 return err;
2736
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002737 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002738 return err;
2739}
2740EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2741
Mark Browne13ac2e2008-05-28 17:58:05 +01002742/**
2743 * snd_soc_info_volsw_s8 - signed mixer info callback
2744 * @kcontrol: mixer control
2745 * @uinfo: control element information
2746 *
2747 * Callback to provide information about a signed mixer control.
2748 *
2749 * Returns 0 for success.
2750 */
2751int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2752 struct snd_ctl_elem_info *uinfo)
2753{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002754 struct soc_mixer_control *mc =
2755 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002756 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002757 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002758
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002759 if (!mc->platform_max)
2760 mc->platform_max = mc->max;
2761 platform_max = mc->platform_max;
2762
Mark Browne13ac2e2008-05-28 17:58:05 +01002763 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2764 uinfo->count = 2;
2765 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002766 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002767 return 0;
2768}
2769EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2770
2771/**
2772 * snd_soc_get_volsw_s8 - signed mixer get callback
2773 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002774 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002775 *
2776 * Callback to get the value of a signed mixer control.
2777 *
2778 * Returns 0 for success.
2779 */
2780int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2781 struct snd_ctl_elem_value *ucontrol)
2782{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002783 struct soc_mixer_control *mc =
2784 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002785 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002786 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002787 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002788 int val = snd_soc_read(codec, reg);
2789
2790 ucontrol->value.integer.value[0] =
2791 ((signed char)(val & 0xff))-min;
2792 ucontrol->value.integer.value[1] =
2793 ((signed char)((val >> 8) & 0xff))-min;
2794 return 0;
2795}
2796EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2797
2798/**
2799 * snd_soc_put_volsw_sgn - signed mixer put callback
2800 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002801 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002802 *
2803 * Callback to set the value of a signed mixer control.
2804 *
2805 * Returns 0 for success.
2806 */
2807int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2808 struct snd_ctl_elem_value *ucontrol)
2809{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002810 struct soc_mixer_control *mc =
2811 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002812 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002813 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002814 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002815 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002816
2817 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2818 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2819
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002820 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002821}
2822EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2823
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002824/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002825 * snd_soc_limit_volume - Set new limit to an existing volume control.
2826 *
2827 * @codec: where to look for the control
2828 * @name: Name of the control
2829 * @max: new maximum limit
2830 *
2831 * Return 0 for success, else error.
2832 */
2833int snd_soc_limit_volume(struct snd_soc_codec *codec,
2834 const char *name, int max)
2835{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002836 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002837 struct snd_kcontrol *kctl;
2838 struct soc_mixer_control *mc;
2839 int found = 0;
2840 int ret = -EINVAL;
2841
2842 /* Sanity check for name and max */
2843 if (unlikely(!name || max <= 0))
2844 return -EINVAL;
2845
2846 list_for_each_entry(kctl, &card->controls, list) {
2847 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2848 found = 1;
2849 break;
2850 }
2851 }
2852 if (found) {
2853 mc = (struct soc_mixer_control *)kctl->private_value;
2854 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002855 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002856 ret = 0;
2857 }
2858 }
2859 return ret;
2860}
2861EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2862
2863/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002864 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2865 * mixer info callback
2866 * @kcontrol: mixer control
2867 * @uinfo: control element information
2868 *
2869 * Returns 0 for success.
2870 */
2871int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2872 struct snd_ctl_elem_info *uinfo)
2873{
2874 struct soc_mixer_control *mc =
2875 (struct soc_mixer_control *)kcontrol->private_value;
2876 int max = mc->max;
2877 int min = mc->min;
2878
2879 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2880 uinfo->count = 2;
2881 uinfo->value.integer.min = 0;
2882 uinfo->value.integer.max = max-min;
2883
2884 return 0;
2885}
2886EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
2887
2888/**
2889 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
2890 * mixer get callback
2891 * @kcontrol: mixer control
2892 * @uinfo: control element information
2893 *
2894 * Returns 0 for success.
2895 */
2896int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2897 struct snd_ctl_elem_value *ucontrol)
2898{
2899 struct soc_mixer_control *mc =
2900 (struct soc_mixer_control *)kcontrol->private_value;
2901 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2902 unsigned int mask = (1<<mc->shift)-1;
2903 int min = mc->min;
2904 int val = snd_soc_read(codec, mc->reg) & mask;
2905 int valr = snd_soc_read(codec, mc->rreg) & mask;
2906
Stuart Longland20630c72010-06-18 12:56:10 +10002907 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
2908 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002909 return 0;
2910}
2911EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
2912
2913/**
2914 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
2915 * mixer put callback
2916 * @kcontrol: mixer control
2917 * @uinfo: control element information
2918 *
2919 * Returns 0 for success.
2920 */
2921int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2922 struct snd_ctl_elem_value *ucontrol)
2923{
2924 struct soc_mixer_control *mc =
2925 (struct soc_mixer_control *)kcontrol->private_value;
2926 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2927 unsigned int mask = (1<<mc->shift)-1;
2928 int min = mc->min;
2929 int ret;
2930 unsigned int val, valr, oval, ovalr;
2931
2932 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
2933 val &= mask;
2934 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
2935 valr &= mask;
2936
2937 oval = snd_soc_read(codec, mc->reg) & mask;
2938 ovalr = snd_soc_read(codec, mc->rreg) & mask;
2939
2940 ret = 0;
2941 if (oval != val) {
2942 ret = snd_soc_write(codec, mc->reg, val);
2943 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002944 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002945 }
2946 if (ovalr != valr) {
2947 ret = snd_soc_write(codec, mc->rreg, valr);
2948 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002949 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002950 }
2951
2952 return 0;
2953}
2954EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
2955
2956/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002957 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2958 * @dai: DAI
2959 * @clk_id: DAI specific clock ID
2960 * @freq: new clock frequency in Hz
2961 * @dir: new clock direction - input/output.
2962 *
2963 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2964 */
2965int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2966 unsigned int freq, int dir)
2967{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002968 if (dai->driver && dai->driver->ops->set_sysclk)
2969 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002970 else
2971 return -EINVAL;
2972}
2973EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2974
2975/**
2976 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2977 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002978 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002979 * @div: new clock divisor.
2980 *
2981 * Configures the clock dividers. This is used to derive the best DAI bit and
2982 * frame clocks from the system or master clock. It's best to set the DAI bit
2983 * and frame clocks as low as possible to save system power.
2984 */
2985int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2986 int div_id, int div)
2987{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002988 if (dai->driver && dai->driver->ops->set_clkdiv)
2989 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002990 else
2991 return -EINVAL;
2992}
2993EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2994
2995/**
2996 * snd_soc_dai_set_pll - configure DAI PLL.
2997 * @dai: DAI
2998 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002999 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003000 * @freq_in: PLL input clock frequency in Hz
3001 * @freq_out: requested PLL output clock frequency in Hz
3002 *
3003 * Configures and enables PLL to generate output clock based on input clock.
3004 */
Mark Brown85488032009-09-05 18:52:16 +01003005int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3006 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003007{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003008 if (dai->driver && dai->driver->ops->set_pll)
3009 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003010 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003011 else
3012 return -EINVAL;
3013}
3014EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3015
3016/**
3017 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3018 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003019 * @fmt: SND_SOC_DAIFMT_ format value.
3020 *
3021 * Configures the DAI hardware format and clocking.
3022 */
3023int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3024{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003025 if (dai->driver && dai->driver->ops->set_fmt)
3026 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003027 else
3028 return -EINVAL;
3029}
3030EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3031
3032/**
3033 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3034 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003035 * @tx_mask: bitmask representing active TX slots.
3036 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003037 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003038 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003039 *
3040 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3041 * specific.
3042 */
3043int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003044 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003045{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003046 if (dai->driver && dai->driver->ops->set_tdm_slot)
3047 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003048 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003049 else
3050 return -EINVAL;
3051}
3052EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3053
3054/**
Barry Song472df3c2009-09-12 01:16:29 +08003055 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3056 * @dai: DAI
3057 * @tx_num: how many TX channels
3058 * @tx_slot: pointer to an array which imply the TX slot number channel
3059 * 0~num-1 uses
3060 * @rx_num: how many RX channels
3061 * @rx_slot: pointer to an array which imply the RX slot number channel
3062 * 0~num-1 uses
3063 *
3064 * configure the relationship between channel number and TDM slot number.
3065 */
3066int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3067 unsigned int tx_num, unsigned int *tx_slot,
3068 unsigned int rx_num, unsigned int *rx_slot)
3069{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003070 if (dai->driver && dai->driver->ops->set_channel_map)
3071 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003072 rx_num, rx_slot);
3073 else
3074 return -EINVAL;
3075}
3076EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3077
3078/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003079 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3080 * @dai: DAI
3081 * @tristate: tristate enable
3082 *
3083 * Tristates the DAI so that others can use it.
3084 */
3085int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3086{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003087 if (dai->driver && dai->driver->ops->set_tristate)
3088 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003089 else
3090 return -EINVAL;
3091}
3092EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3093
3094/**
3095 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3096 * @dai: DAI
3097 * @mute: mute enable
3098 *
3099 * Mutes the DAI DAC.
3100 */
3101int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3102{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003103 if (dai->driver && dai->driver->ops->digital_mute)
3104 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003105 else
3106 return -EINVAL;
3107}
3108EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3109
Mark Brownc5af3a22008-11-28 13:29:45 +00003110/**
3111 * snd_soc_register_card - Register a card with the ASoC core
3112 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003113 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003114 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003115 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303116int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003117{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003118 int i;
3119
Mark Brownc5af3a22008-11-28 13:29:45 +00003120 if (!card->name || !card->dev)
3121 return -EINVAL;
3122
Vinod Koul150dd2f2011-01-13 22:48:32 +05303123 soc_init_card_debugfs(card);
3124
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003125 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
3126 (card->num_links + card->num_aux_devs),
3127 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003128 if (card->rtd == NULL)
3129 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003130 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003131
3132 for (i = 0; i < card->num_links; i++)
3133 card->rtd[i].dai_link = &card->dai_link[i];
3134
Mark Brownc5af3a22008-11-28 13:29:45 +00003135 INIT_LIST_HEAD(&card->list);
3136 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003137 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003138
3139 mutex_lock(&client_mutex);
3140 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003141 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00003142 mutex_unlock(&client_mutex);
3143
3144 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
3145
3146 return 0;
3147}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303148EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003149
3150/**
3151 * snd_soc_unregister_card - Unregister a card with the ASoC core
3152 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003153 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003154 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003155 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303156int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003157{
Vinod Koulb0e26482011-01-13 22:48:02 +05303158 if (card->instantiated)
3159 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003160 mutex_lock(&client_mutex);
3161 list_del(&card->list);
3162 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003163 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3164
3165 return 0;
3166}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303167EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003168
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003169/*
3170 * Simplify DAI link configuration by removing ".-1" from device names
3171 * and sanitizing names.
3172 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003173static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003174{
3175 char *found, name[NAME_SIZE];
3176 int id1, id2;
3177
3178 if (dev_name(dev) == NULL)
3179 return NULL;
3180
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003181 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003182
3183 /* are we a "%s.%d" name (platform and SPI components) */
3184 found = strstr(name, dev->driver->name);
3185 if (found) {
3186 /* get ID */
3187 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3188
3189 /* discard ID from name if ID == -1 */
3190 if (*id == -1)
3191 found[strlen(dev->driver->name)] = '\0';
3192 }
3193
3194 } else {
3195 /* I2C component devices are named "bus-addr" */
3196 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3197 char tmp[NAME_SIZE];
3198
3199 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003200 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003201
3202 /* sanitize component name for DAI link creation */
3203 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003204 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003205 } else
3206 *id = 0;
3207 }
3208
3209 return kstrdup(name, GFP_KERNEL);
3210}
3211
3212/*
3213 * Simplify DAI link naming for single devices with multiple DAIs by removing
3214 * any ".-1" and using the DAI name (instead of device name).
3215 */
3216static inline char *fmt_multiple_name(struct device *dev,
3217 struct snd_soc_dai_driver *dai_drv)
3218{
3219 if (dai_drv->name == NULL) {
3220 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
3221 dev_name(dev));
3222 return NULL;
3223 }
3224
3225 return kstrdup(dai_drv->name, GFP_KERNEL);
3226}
3227
Mark Brown91151712008-11-30 23:31:24 +00003228/**
3229 * snd_soc_register_dai - Register a DAI with the ASoC core
3230 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003231 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003232 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003233int snd_soc_register_dai(struct device *dev,
3234 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003235{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003236 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003237
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003238 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003239
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003240 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3241 if (dai == NULL)
3242 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003243
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003244 /* create DAI component name */
3245 dai->name = fmt_single_name(dev, &dai->id);
3246 if (dai->name == NULL) {
3247 kfree(dai);
3248 return -ENOMEM;
3249 }
3250
3251 dai->dev = dev;
3252 dai->driver = dai_drv;
3253 if (!dai->driver->ops)
3254 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003255
3256 mutex_lock(&client_mutex);
3257 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003258 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003259 mutex_unlock(&client_mutex);
3260
3261 pr_debug("Registered DAI '%s'\n", dai->name);
3262
3263 return 0;
3264}
3265EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3266
3267/**
3268 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3269 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003270 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003271 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003272void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003273{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003274 struct snd_soc_dai *dai;
3275
3276 list_for_each_entry(dai, &dai_list, list) {
3277 if (dev == dai->dev)
3278 goto found;
3279 }
3280 return;
3281
3282found:
Mark Brown91151712008-11-30 23:31:24 +00003283 mutex_lock(&client_mutex);
3284 list_del(&dai->list);
3285 mutex_unlock(&client_mutex);
3286
3287 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003288 kfree(dai->name);
3289 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003290}
3291EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3292
3293/**
3294 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3295 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003296 * @dai: Array of DAIs to register
3297 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003298 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003299int snd_soc_register_dais(struct device *dev,
3300 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003301{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003302 struct snd_soc_dai *dai;
3303 int i, ret = 0;
3304
Liam Girdwood720ffa42010-08-18 00:30:30 +01003305 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003306
3307 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003308
3309 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003310 if (dai == NULL) {
3311 ret = -ENOMEM;
3312 goto err;
3313 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003314
3315 /* create DAI component name */
3316 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3317 if (dai->name == NULL) {
3318 kfree(dai);
3319 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003320 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003321 }
3322
3323 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003324 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003325 if (dai->driver->id)
3326 dai->id = dai->driver->id;
3327 else
3328 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003329 if (!dai->driver->ops)
3330 dai->driver->ops = &null_dai_ops;
3331
3332 mutex_lock(&client_mutex);
3333 list_add(&dai->list, &dai_list);
3334 mutex_unlock(&client_mutex);
3335
3336 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003337 }
3338
Axel Lin1dcb4f32010-12-06 16:48:03 +08003339 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003340 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003341 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003342 return 0;
3343
3344err:
3345 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003346 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003347
3348 return ret;
3349}
3350EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3351
3352/**
3353 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3354 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003355 * @dai: Array of DAIs to unregister
3356 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003357 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003358void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003359{
3360 int i;
3361
3362 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003363 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003364}
3365EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3366
Mark Brown12a48a8c2008-12-03 19:40:30 +00003367/**
3368 * snd_soc_register_platform - Register a platform with the ASoC core
3369 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003370 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003371 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003372int snd_soc_register_platform(struct device *dev,
3373 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003374{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003375 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003376
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003377 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3378
3379 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3380 if (platform == NULL)
3381 return -ENOMEM;
3382
3383 /* create platform component name */
3384 platform->name = fmt_single_name(dev, &platform->id);
3385 if (platform->name == NULL) {
3386 kfree(platform);
3387 return -ENOMEM;
3388 }
3389
3390 platform->dev = dev;
3391 platform->driver = platform_drv;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003392
3393 mutex_lock(&client_mutex);
3394 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003395 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003396 mutex_unlock(&client_mutex);
3397
3398 pr_debug("Registered platform '%s'\n", platform->name);
3399
3400 return 0;
3401}
3402EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3403
3404/**
3405 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3406 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003407 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003408 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003409void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003410{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003411 struct snd_soc_platform *platform;
3412
3413 list_for_each_entry(platform, &platform_list, list) {
3414 if (dev == platform->dev)
3415 goto found;
3416 }
3417 return;
3418
3419found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003420 mutex_lock(&client_mutex);
3421 list_del(&platform->list);
3422 mutex_unlock(&client_mutex);
3423
3424 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003425 kfree(platform->name);
3426 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003427}
3428EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3429
Mark Brown151ab222009-05-09 16:22:58 +01003430static u64 codec_format_map[] = {
3431 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3432 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3433 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3434 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3435 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3436 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3437 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3438 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3439 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3440 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3441 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3442 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3443 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3444 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3445 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3446 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3447};
3448
3449/* Fix up the DAI formats for endianness: codecs don't actually see
3450 * the endianness of the data but we're using the CPU format
3451 * definitions which do need to include endianness so we ensure that
3452 * codec DAIs always have both big and little endian variants set.
3453 */
3454static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3455{
3456 int i;
3457
3458 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3459 if (stream->formats & codec_format_map[i])
3460 stream->formats |= codec_format_map[i];
3461}
3462
Mark Brown0d0cf002008-12-10 14:32:45 +00003463/**
3464 * snd_soc_register_codec - Register a codec with the ASoC core
3465 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003466 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003467 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003468int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003469 const struct snd_soc_codec_driver *codec_drv,
3470 struct snd_soc_dai_driver *dai_drv,
3471 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003472{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003473 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003474 struct snd_soc_codec *codec;
3475 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003476
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003477 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003478
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003479 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3480 if (codec == NULL)
3481 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003482
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003483 /* create CODEC component name */
3484 codec->name = fmt_single_name(dev, &codec->id);
3485 if (codec->name == NULL) {
3486 kfree(codec);
3487 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003488 }
3489
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003490 if (codec_drv->compress_type)
3491 codec->compress_type = codec_drv->compress_type;
3492 else
3493 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3494
Mark Brownc3acec22010-12-02 16:15:29 +00003495 codec->write = codec_drv->write;
3496 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003497 codec->volatile_register = codec_drv->volatile_register;
3498 codec->readable_register = codec_drv->readable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003499 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3500 codec->dapm.dev = dev;
3501 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003502 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003503 codec->dev = dev;
3504 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003505 codec->num_dai = num_dai;
3506 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003507
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003508 /* allocate CODEC register cache */
3509 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003510 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003511 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003512 /* it is necessary to make a copy of the default register cache
3513 * because in the case of using a compression type that requires
3514 * the default register cache to be marked as __devinitconst the
3515 * kernel might have freed the array by the time we initialize
3516 * the cache.
3517 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003518 if (codec_drv->reg_cache_default) {
3519 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3520 reg_size, GFP_KERNEL);
3521 if (!codec->reg_def_copy) {
3522 ret = -ENOMEM;
3523 goto fail;
3524 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003525 }
3526 }
3527
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003528 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3529 if (!codec->volatile_register)
3530 codec->volatile_register = snd_soc_default_volatile_register;
3531 if (!codec->readable_register)
3532 codec->readable_register = snd_soc_default_readable_register;
3533 }
3534
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003535 for (i = 0; i < num_dai; i++) {
3536 fixup_codec_formats(&dai_drv[i].playback);
3537 fixup_codec_formats(&dai_drv[i].capture);
3538 }
3539
Mark Brown26b01cc2010-08-18 20:20:55 +01003540 /* register any DAIs */
3541 if (num_dai) {
3542 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3543 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003544 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003545 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003546
Mark Brown0d0cf002008-12-10 14:32:45 +00003547 mutex_lock(&client_mutex);
3548 list_add(&codec->list, &codec_list);
3549 snd_soc_instantiate_cards();
3550 mutex_unlock(&client_mutex);
3551
3552 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003553 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003554
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003555fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003556 kfree(codec->reg_def_copy);
3557 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003558 kfree(codec->name);
3559 kfree(codec);
3560 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003561}
3562EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3563
3564/**
3565 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3566 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003567 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003568 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003569void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003570{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003571 struct snd_soc_codec *codec;
3572 int i;
3573
3574 list_for_each_entry(codec, &codec_list, list) {
3575 if (dev == codec->dev)
3576 goto found;
3577 }
3578 return;
3579
3580found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003581 if (codec->num_dai)
3582 for (i = 0; i < codec->num_dai; i++)
3583 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003584
Mark Brown0d0cf002008-12-10 14:32:45 +00003585 mutex_lock(&client_mutex);
3586 list_del(&codec->list);
3587 mutex_unlock(&client_mutex);
3588
3589 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003590
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003591 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003592 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003593 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003594 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003595}
3596EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3597
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003598static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003599{
Mark Brown384c89e2008-12-03 17:34:03 +00003600#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003601 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3602 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003603 printk(KERN_WARNING
3604 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003605 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003606 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003607
Mark Brown8a9dab12011-01-10 22:25:21 +00003608 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003609 &codec_list_fops))
3610 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3611
Mark Brown8a9dab12011-01-10 22:25:21 +00003612 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003613 &dai_list_fops))
3614 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003615
Mark Brown8a9dab12011-01-10 22:25:21 +00003616 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003617 &platform_list_fops))
3618 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003619#endif
3620
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003621 return platform_driver_register(&soc_driver);
3622}
Mark Brown4abe8e12010-10-12 17:41:03 +01003623module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003624
Mark Brown7d8c16a2008-11-30 22:11:24 +00003625static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003626{
Mark Brown384c89e2008-12-03 17:34:03 +00003627#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003628 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003629#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003630 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003631}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003632module_exit(snd_soc_exit);
3633
3634/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003635MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003636MODULE_DESCRIPTION("ALSA SoC Core");
3637MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003638MODULE_ALIAS("platform:soc-audio");