blob: 2abaf6dcdb0ac06b750231982bf3c06e665b875d [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>
Mark Brownf0e8ed82011-09-20 11:41:54 +010033#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Marek Vasut474828a2009-07-22 13:01:03 +020035#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020036#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000037#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020038#include <sound/pcm.h>
39#include <sound/pcm_params.h>
40#include <sound/soc.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020041#include <sound/initval.h>
42
Mark Browna8b1d342010-11-03 18:05:58 -040043#define CREATE_TRACE_POINTS
44#include <trace/events/asoc.h>
45
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000046#define NAME_SIZE 32
47
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 Girdwoodddee6272011-06-09 14:45:53 +010061int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
Mark Brownc5af3a22008-11-28 13:29:45 +000062
Frank Mandarinodb2a4162006-10-06 18:31:09 +020063/*
64 * This is a timeout to do a DAPM powerdown after a stream is closed().
65 * It can be used to eliminate pops between different playback streams, e.g.
66 * between two audio tracks.
67 */
68static int pmdown_time = 5000;
69module_param(pmdown_time, int, 0);
70MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
71
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000072/* returns the minimum number of bytes needed to represent
73 * a particular given value */
74static int min_bytes_needed(unsigned long val)
75{
76 int c = 0;
77 int i;
78
79 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
80 if (val & (1UL << i))
81 break;
82 c = (sizeof val * 8) - c;
83 if (!c || (c % 8))
84 c = (c + 8) / 8;
85 else
86 c /= 8;
87 return c;
88}
89
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000090/* fill buf which is 'len' bytes with a formatted
91 * string of the form 'reg: value\n' */
92static int format_register_str(struct snd_soc_codec *codec,
93 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +000094{
Stephen Warren00b317a2011-04-01 14:50:44 -060095 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
96 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000097 int ret;
98 char tmpbuf[len + 1];
99 char regbuf[regsize + 1];
100
101 /* since tmpbuf is allocated on the stack, warn the callers if they
102 * try to abuse this function */
103 WARN_ON(len > 63);
104
105 /* +2 for ': ' and + 1 for '\n' */
106 if (wordsize + regsize + 2 + 1 != len)
107 return -EINVAL;
108
Mark Brown25032c12011-08-01 13:52:48 +0900109 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000110 if (ret < 0) {
111 memset(regbuf, 'X', regsize);
112 regbuf[regsize] = '\0';
113 } else {
114 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
115 }
116
117 /* prepare the buffer */
118 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
119 /* copy it back to the caller without the '\0' */
120 memcpy(buf, tmpbuf, len);
121
122 return 0;
123}
124
125/* codec register dump */
126static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
127 size_t count, loff_t pos)
128{
129 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000130 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000131 int len;
132 size_t total = 0;
133 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000134
Stephen Warren00b317a2011-04-01 14:50:44 -0600135 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
136 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000137
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000138 len = wordsize + regsize + 2 + 1;
139
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000140 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000141 return 0;
142
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000143 if (codec->driver->reg_cache_step)
144 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000145
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000146 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausenb92d1502011-08-27 18:24:14 +0200147 if (!snd_soc_codec_readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +0000148 continue;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000149 if (codec->driver->display_register) {
150 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +0000151 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +0100152 } else {
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000153 /* only support larger than PAGE_SIZE bytes debugfs
154 * entries for the default case */
155 if (p >= pos) {
156 if (total + len >= count - 1)
157 break;
158 format_register_str(codec, i, buf + total, len);
159 total += len;
160 }
161 p += len;
Mark Brown5164d742010-07-14 16:14:33 +0100162 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000163 }
164
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000165 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000166
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000167 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000168}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000169
Mark Brown2624d5f2009-11-03 21:56:13 +0000170static ssize_t codec_reg_show(struct device *dev,
171 struct device_attribute *attr, char *buf)
172{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000173 struct snd_soc_pcm_runtime *rtd =
174 container_of(dev, struct snd_soc_pcm_runtime, dev);
175
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000176 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000177}
178
179static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
180
Mark Browndbe21402010-02-12 11:37:24 +0000181static ssize_t pmdown_time_show(struct device *dev,
182 struct device_attribute *attr, char *buf)
183{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000184 struct snd_soc_pcm_runtime *rtd =
185 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Browndbe21402010-02-12 11:37:24 +0000186
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000187 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000188}
189
190static ssize_t pmdown_time_set(struct device *dev,
191 struct device_attribute *attr,
192 const char *buf, size_t count)
193{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000194 struct snd_soc_pcm_runtime *rtd =
195 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Brownc593b522010-10-27 20:11:17 -0700196 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000197
Mark Brownc593b522010-10-27 20:11:17 -0700198 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
199 if (ret)
200 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000201
202 return count;
203}
204
205static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
206
Mark Brown2624d5f2009-11-03 21:56:13 +0000207#ifdef CONFIG_DEBUG_FS
208static int codec_reg_open_file(struct inode *inode, struct file *file)
209{
210 file->private_data = inode->i_private;
211 return 0;
212}
213
214static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000215 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000216{
217 ssize_t ret;
218 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000219 char *buf;
220
221 if (*ppos < 0 || !count)
222 return -EINVAL;
223
224 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000225 if (!buf)
226 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000227
228 ret = soc_codec_reg_show(codec, buf, count, *ppos);
229 if (ret >= 0) {
230 if (copy_to_user(user_buf, buf, ret)) {
231 kfree(buf);
232 return -EFAULT;
233 }
234 *ppos += ret;
235 }
236
Mark Brown2624d5f2009-11-03 21:56:13 +0000237 kfree(buf);
238 return ret;
239}
240
241static ssize_t codec_reg_write_file(struct file *file,
242 const char __user *user_buf, size_t count, loff_t *ppos)
243{
244 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700245 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000246 char *start = buf;
247 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000248 struct snd_soc_codec *codec = file->private_data;
249
250 buf_size = min(count, (sizeof(buf)-1));
251 if (copy_from_user(buf, user_buf, buf_size))
252 return -EFAULT;
253 buf[buf_size] = 0;
254
Mark Brown2624d5f2009-11-03 21:56:13 +0000255 while (*start == ' ')
256 start++;
257 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000258 while (*start == ' ')
259 start++;
260 if (strict_strtoul(start, 16, &value))
261 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000262
263 /* Userspace has been fiddling around behind the kernel's back */
264 add_taint(TAINT_USER);
265
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000266 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000267 return buf_size;
268}
269
270static const struct file_operations codec_reg_fops = {
271 .open = codec_reg_open_file,
272 .read = codec_reg_read_file,
273 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200274 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000275};
276
277static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
278{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200279 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
280
281 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
282 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000283 if (!codec->debugfs_codec_root) {
284 printk(KERN_WARNING
285 "ASoC: Failed to create codec debugfs directory\n");
286 return;
287 }
288
Mark Brownaaee8ef2011-01-26 20:53:50 +0000289 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
290 &codec->cache_sync);
291 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
292 &codec->cache_only);
293
Mark Brown2624d5f2009-11-03 21:56:13 +0000294 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
295 codec->debugfs_codec_root,
296 codec, &codec_reg_fops);
297 if (!codec->debugfs_reg)
298 printk(KERN_WARNING
299 "ASoC: Failed to create codec register debugfs file\n");
300
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200301 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000302}
303
304static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
305{
306 debugfs_remove_recursive(codec->debugfs_codec_root);
307}
308
Mark Brownc3c5a192010-09-15 18:15:14 +0100309static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
310 size_t count, loff_t *ppos)
311{
312 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100313 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100314 struct snd_soc_codec *codec;
315
316 if (!buf)
317 return -ENOMEM;
318
Mark Brown2b194f9d2010-10-13 10:52:16 +0100319 list_for_each_entry(codec, &codec_list, list) {
320 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
321 codec->name);
322 if (len >= 0)
323 ret += len;
324 if (ret > PAGE_SIZE) {
325 ret = PAGE_SIZE;
326 break;
327 }
328 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100329
330 if (ret >= 0)
331 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
332
333 kfree(buf);
334
335 return ret;
336}
337
338static const struct file_operations codec_list_fops = {
339 .read = codec_list_read_file,
340 .llseek = default_llseek,/* read accesses f_pos */
341};
342
Mark Brownf3208782010-09-15 18:19:07 +0100343static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
344 size_t count, loff_t *ppos)
345{
346 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100347 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100348 struct snd_soc_dai *dai;
349
350 if (!buf)
351 return -ENOMEM;
352
Mark Brown2b194f9d2010-10-13 10:52:16 +0100353 list_for_each_entry(dai, &dai_list, list) {
354 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
355 if (len >= 0)
356 ret += len;
357 if (ret > PAGE_SIZE) {
358 ret = PAGE_SIZE;
359 break;
360 }
361 }
Mark Brownf3208782010-09-15 18:19:07 +0100362
Mark Brown2b194f9d2010-10-13 10:52:16 +0100363 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100364
365 kfree(buf);
366
367 return ret;
368}
369
370static const struct file_operations dai_list_fops = {
371 .read = dai_list_read_file,
372 .llseek = default_llseek,/* read accesses f_pos */
373};
374
Mark Brown19c7ac22010-09-15 18:22:40 +0100375static ssize_t platform_list_read_file(struct file *file,
376 char __user *user_buf,
377 size_t count, loff_t *ppos)
378{
379 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100380 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100381 struct snd_soc_platform *platform;
382
383 if (!buf)
384 return -ENOMEM;
385
Mark Brown2b194f9d2010-10-13 10:52:16 +0100386 list_for_each_entry(platform, &platform_list, list) {
387 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
388 platform->name);
389 if (len >= 0)
390 ret += len;
391 if (ret > PAGE_SIZE) {
392 ret = PAGE_SIZE;
393 break;
394 }
395 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100396
Mark Brown2b194f9d2010-10-13 10:52:16 +0100397 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100398
399 kfree(buf);
400
401 return ret;
402}
403
404static const struct file_operations platform_list_fops = {
405 .read = platform_list_read_file,
406 .llseek = default_llseek,/* read accesses f_pos */
407};
408
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200409static void soc_init_card_debugfs(struct snd_soc_card *card)
410{
411 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000412 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200413 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200414 dev_warn(card->dev,
415 "ASoC: Failed to create codec debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200416 return;
417 }
418
419 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
420 card->debugfs_card_root,
421 &card->pop_time);
422 if (!card->debugfs_pop_time)
423 dev_warn(card->dev,
424 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200425}
426
427static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
428{
429 debugfs_remove_recursive(card->debugfs_card_root);
430}
431
Mark Brown2624d5f2009-11-03 21:56:13 +0000432#else
433
434static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
435{
436}
437
438static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
439{
440}
Axel Linb95fccb2010-11-09 17:06:44 +0800441
442static inline void soc_init_card_debugfs(struct snd_soc_card *card)
443{
444}
445
446static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
447{
448}
Mark Brown2624d5f2009-11-03 21:56:13 +0000449#endif
450
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200451#ifdef CONFIG_SND_SOC_AC97_BUS
452/* unregister ac97 codec */
453static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
454{
455 if (codec->ac97->dev.bus)
456 device_unregister(&codec->ac97->dev);
457 return 0;
458}
459
460/* stop no dev release warning */
461static void soc_ac97_device_release(struct device *dev){}
462
463/* register ac97 codec to bus */
464static int soc_ac97_dev_register(struct snd_soc_codec *codec)
465{
466 int err;
467
468 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100469 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200470 codec->ac97->dev.release = soc_ac97_device_release;
471
Kay Sieversbb072bf2008-11-02 03:50:35 +0100472 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000473 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200474 err = device_register(&codec->ac97->dev);
475 if (err < 0) {
476 snd_printk(KERN_ERR "Can't register ac97 bus\n");
477 codec->ac97->dev.bus = NULL;
478 return err;
479 }
480 return 0;
481}
482#endif
483
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000484#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200485/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000486int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200487{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000488 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200489 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200490 int i;
491
Daniel Macke3509ff2009-06-03 17:44:49 +0200492 /* If the initialization of this soc device failed, there is no codec
493 * associated with it. Just bail out in this case.
494 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000495 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200496 return 0;
497
Andy Green6ed25972008-06-13 16:24:05 +0100498 /* Due to the resume being scheduled into a workqueue we could
499 * suspend before that's finished - wait for it to complete.
500 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000501 snd_power_lock(card->snd_card);
502 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
503 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100504
505 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000506 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100507
Mark Browna00f90f2010-12-02 16:24:24 +0000508 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000509 for (i = 0; i < card->num_rtd; i++) {
510 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
511 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100512
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000513 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100514 continue;
515
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000516 if (drv->ops->digital_mute && dai->playback_active)
517 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200518 }
519
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100520 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000521 for (i = 0; i < card->num_rtd; i++) {
522 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100523 continue;
524
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000525 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100526 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100527
Mark Brown87506542008-11-18 20:50:34 +0000528 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000529 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200530
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000531 for (i = 0; i < card->num_rtd; i++) {
532 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
533 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100534
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000535 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100536 continue;
537
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000538 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
539 cpu_dai->driver->suspend(cpu_dai);
540 if (platform->driver->suspend && !platform->suspended) {
541 platform->driver->suspend(cpu_dai);
542 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100543 }
544 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200545
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000546 /* close any waiting streams and save state */
547 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +0100548 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200549 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000550 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100551
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000552 for (i = 0; i < card->num_rtd; i++) {
553 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
554
555 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100556 continue;
557
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000558 if (driver->playback.stream_name != NULL)
559 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
560 SND_SOC_DAPM_STREAM_SUSPEND);
561
562 if (driver->capture.stream_name != NULL)
563 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
564 SND_SOC_DAPM_STREAM_SUSPEND);
565 }
566
567 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200568 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000569 /* If there are paths active then the CODEC will be held with
570 * bias _ON and should not be suspended. */
571 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200572 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000573 case SND_SOC_BIAS_STANDBY:
574 case SND_SOC_BIAS_OFF:
575 codec->driver->suspend(codec, PMSG_SUSPEND);
576 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900577 codec->cache_sync = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000578 break;
579 default:
580 dev_dbg(codec->dev, "CODEC is on over suspend\n");
581 break;
582 }
583 }
584 }
585
586 for (i = 0; i < card->num_rtd; i++) {
587 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
588
589 if (card->rtd[i].dai_link->ignore_suspend)
590 continue;
591
592 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
593 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200594 }
595
Mark Brown87506542008-11-18 20:50:34 +0000596 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000597 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200598
599 return 0;
600}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000601EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200602
Andy Green6ed25972008-06-13 16:24:05 +0100603/* deferred resume work, so resume can complete before we finished
604 * setting our codec back up, which can be very slow on I2C
605 */
606static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200607{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000608 struct snd_soc_card *card =
609 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200610 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200611 int i;
612
Andy Green6ed25972008-06-13 16:24:05 +0100613 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
614 * so userspace apps are blocked from touching us
615 */
616
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000617 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100618
Mark Brown99497882010-05-07 20:24:05 +0100619 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000620 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100621
Mark Brown87506542008-11-18 20:50:34 +0000622 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000623 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200624
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000625 /* resume AC97 DAIs */
626 for (i = 0; i < card->num_rtd; i++) {
627 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100628
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000629 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100630 continue;
631
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000632 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
633 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200634 }
635
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200636 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000637 /* If the CODEC was idle over suspend then it will have been
638 * left with bias OFF or STANDBY and suspended so we must now
639 * resume. Otherwise the suspend was suppressed.
640 */
641 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200642 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000643 case SND_SOC_BIAS_STANDBY:
644 case SND_SOC_BIAS_OFF:
645 codec->driver->resume(codec);
646 codec->suspended = 0;
647 break;
648 default:
649 dev_dbg(codec->dev, "CODEC was on over suspend\n");
650 break;
651 }
Mark Brown1547aba2010-05-07 21:11:40 +0100652 }
653 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200654
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000655 for (i = 0; i < card->num_rtd; i++) {
656 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100657
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000658 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100659 continue;
660
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000661 if (driver->playback.stream_name != NULL)
662 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200663 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000664
665 if (driver->capture.stream_name != NULL)
666 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200667 SND_SOC_DAPM_STREAM_RESUME);
668 }
669
Mark Brown3ff3f642008-05-19 12:32:25 +0200670 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000671 for (i = 0; i < card->num_rtd; i++) {
672 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
673 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100674
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000675 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100676 continue;
677
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000678 if (drv->ops->digital_mute && dai->playback_active)
679 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200680 }
681
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000682 for (i = 0; i < card->num_rtd; i++) {
683 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
684 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100685
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000686 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100687 continue;
688
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000689 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
690 cpu_dai->driver->resume(cpu_dai);
691 if (platform->driver->resume && platform->suspended) {
692 platform->driver->resume(cpu_dai);
693 platform->suspended = 0;
694 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200695 }
696
Mark Brown87506542008-11-18 20:50:34 +0000697 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000698 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200699
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000700 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100701
702 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000703 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +0100704}
705
706/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000707int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100708{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000709 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600710 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200711
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800712 /* If the initialization of this soc device failed, there is no codec
713 * associated with it. Just bail out in this case.
714 */
715 if (list_empty(&card->codec_dev_list))
716 return 0;
717
Mark Brown64ab9ba2009-03-31 11:27:03 +0100718 /* AC97 devices might have other drivers hanging off them so
719 * need to resume immediately. Other drivers don't have that
720 * problem and may take a substantial amount of time to resume
721 * due to I/O costs and anti-pop so handle them out of line.
722 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000723 for (i = 0; i < card->num_rtd; i++) {
724 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600725 ac97_control |= cpu_dai->driver->ac97_control;
726 }
727 if (ac97_control) {
728 dev_dbg(dev, "Resuming AC97 immediately\n");
729 soc_resume_deferred(&card->deferred_resume_work);
730 } else {
731 dev_dbg(dev, "Scheduling resume work\n");
732 if (!schedule_work(&card->deferred_resume_work))
733 dev_err(dev, "resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100734 }
Andy Green6ed25972008-06-13 16:24:05 +0100735
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200736 return 0;
737}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000738EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200739#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000740#define snd_soc_suspend NULL
741#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200742#endif
743
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100744static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800745};
746
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000747static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200748{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000749 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
750 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +0000751 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000752 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000753 struct snd_soc_dai *codec_dai, *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100754 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200755
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000756 if (rtd->complete)
757 return 1;
758 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000759
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000760 /* do we already have the CPU DAI for this link ? */
761 if (rtd->cpu_dai) {
762 goto find_codec;
763 }
764 /* no, then find CPU DAI from registered DAIs*/
765 list_for_each_entry(cpu_dai, &dai_list, list) {
766 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000767 rtd->cpu_dai = cpu_dai;
768 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000769 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000770 }
771 dev_dbg(card->dev, "CPU DAI %s not registered\n",
772 dai_link->cpu_dai_name);
773
774find_codec:
775 /* do we already have the CODEC for this link ? */
776 if (rtd->codec) {
777 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +0000778 }
779
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000780 /* no, then find CODEC from registered CODECs*/
781 list_for_each_entry(codec, &codec_list, list) {
782 if (!strcmp(codec->name, dai_link->codec_name)) {
783 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +0000784
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000785 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
786 list_for_each_entry(codec_dai, &dai_list, list) {
787 if (codec->dev == codec_dai->dev &&
788 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
789 rtd->codec_dai = codec_dai;
790 goto find_platform;
Mark Brown6b05eda2008-12-08 19:26:48 +0000791 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000792 }
793 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
794 dai_link->codec_dai_name);
795
796 goto find_platform;
797 }
798 }
799 dev_dbg(card->dev, "CODEC %s not registered\n",
800 dai_link->codec_name);
801
802find_platform:
Mark Brown848dd8b2011-04-27 18:16:32 +0100803 /* do we need a platform? */
804 if (rtd->platform)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000805 goto out;
Mark Brown848dd8b2011-04-27 18:16:32 +0100806
807 /* if there's no platform we match on the empty platform */
808 platform_name = dai_link->platform_name;
809 if (!platform_name)
810 platform_name = "snd-soc-dummy";
811
812 /* no, then find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000813 list_for_each_entry(platform, &platform_list, list) {
Mark Brown848dd8b2011-04-27 18:16:32 +0100814 if (!strcmp(platform->name, platform_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000815 rtd->platform = platform;
816 goto out;
817 }
818 }
819
820 dev_dbg(card->dev, "platform %s not registered\n",
821 dai_link->platform_name);
822 return 0;
823
824out:
825 /* mark rtd as complete if we found all 4 of our client devices */
826 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
827 rtd->complete = 1;
828 card->num_rtd++;
829 }
830 return 1;
831}
832
Jarkko Nikula589c3562010-12-06 16:27:07 +0200833static void soc_remove_codec(struct snd_soc_codec *codec)
834{
835 int err;
836
837 if (codec->driver->remove) {
838 err = codec->driver->remove(codec);
839 if (err < 0)
840 dev_err(codec->dev,
841 "asoc: failed to remove %s: %d\n",
842 codec->name, err);
843 }
844
845 /* Make sure all DAPM widgets are freed */
846 snd_soc_dapm_free(&codec->dapm);
847
848 soc_cleanup_codec_debugfs(codec);
849 codec->probed = 0;
850 list_del(&codec->card_list);
851 module_put(codec->dev->driver->owner);
852}
853
Liam Girdwood0168bf02011-06-07 16:08:05 +0100854static void soc_remove_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000855{
856 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
857 struct snd_soc_codec *codec = rtd->codec;
858 struct snd_soc_platform *platform = rtd->platform;
859 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
860 int err;
861
862 /* unregister the rtd device */
863 if (rtd->dev_registered) {
864 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200865 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000866 device_unregister(&rtd->dev);
867 rtd->dev_registered = 0;
868 }
869
870 /* remove the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100871 if (codec_dai && codec_dai->probed &&
872 codec_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000873 if (codec_dai->driver->remove) {
874 err = codec_dai->driver->remove(codec_dai);
875 if (err < 0)
876 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
877 }
878 codec_dai->probed = 0;
879 list_del(&codec_dai->card_list);
880 }
881
882 /* remove the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100883 if (platform && platform->probed &&
884 platform->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000885 if (platform->driver->remove) {
886 err = platform->driver->remove(platform);
887 if (err < 0)
888 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
889 }
890 platform->probed = 0;
891 list_del(&platform->card_list);
892 module_put(platform->dev->driver->owner);
893 }
894
895 /* remove the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100896 if (codec && codec->probed &&
897 codec->driver->remove_order == order)
Jarkko Nikula589c3562010-12-06 16:27:07 +0200898 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000899
900 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100901 if (cpu_dai && cpu_dai->probed &&
902 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000903 if (cpu_dai->driver->remove) {
904 err = cpu_dai->driver->remove(cpu_dai);
905 if (err < 0)
906 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
907 }
908 cpu_dai->probed = 0;
909 list_del(&cpu_dai->card_list);
910 module_put(cpu_dai->dev->driver->owner);
911 }
912}
913
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900914static void soc_remove_dai_links(struct snd_soc_card *card)
915{
Liam Girdwood0168bf02011-06-07 16:08:05 +0100916 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900917
Liam Girdwood0168bf02011-06-07 16:08:05 +0100918 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
919 order++) {
920 for (dai = 0; dai < card->num_rtd; dai++)
921 soc_remove_dai_link(card, dai, order);
922 }
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900923 card->num_rtd = 0;
924}
925
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200926static void soc_set_name_prefix(struct snd_soc_card *card,
927 struct snd_soc_codec *codec)
928{
929 int i;
930
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000931 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200932 return;
933
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000934 for (i = 0; i < card->num_configs; i++) {
935 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200936 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
937 codec->name_prefix = map->name_prefix;
938 break;
939 }
940 }
941}
942
Jarkko Nikula589c3562010-12-06 16:27:07 +0200943static int soc_probe_codec(struct snd_soc_card *card,
944 struct snd_soc_codec *codec)
945{
946 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +0000947 const struct snd_soc_codec_driver *driver = codec->driver;
Jarkko Nikula589c3562010-12-06 16:27:07 +0200948
949 codec->card = card;
950 codec->dapm.card = card;
951 soc_set_name_prefix(card, codec);
952
Jarkko Nikula70d29332011-01-27 16:24:22 +0200953 if (!try_module_get(codec->dev->driver->owner))
954 return -ENODEV;
955
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +0200956 soc_init_codec_debugfs(codec);
957
Lars-Peter Clausen77530152011-05-05 16:59:09 +0200958 if (driver->dapm_widgets)
959 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
960 driver->num_dapm_widgets);
961
Mark Brown33c5f962011-08-22 18:40:30 +0100962 codec->dapm.idle_bias_off = driver->idle_bias_off;
963
Mark Brown89b95ac02011-03-07 16:38:44 +0000964 if (driver->probe) {
965 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200966 if (ret < 0) {
967 dev_err(codec->dev,
968 "asoc: failed to probe CODEC %s: %d\n",
969 codec->name, ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +0200970 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +0200971 }
972 }
973
Mark Brownb7af1da2011-04-07 19:18:44 +0900974 if (driver->controls)
975 snd_soc_add_controls(codec, driver->controls,
976 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +0000977 if (driver->dapm_routes)
978 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
979 driver->num_dapm_routes);
980
Jarkko Nikula589c3562010-12-06 16:27:07 +0200981 /* mark codec as probed and add to card codec list */
982 codec->probed = 1;
983 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +0200984 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200985
Jarkko Nikula70d29332011-01-27 16:24:22 +0200986 return 0;
987
988err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +0200989 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +0200990 module_put(codec->dev->driver->owner);
991
Jarkko Nikula589c3562010-12-06 16:27:07 +0200992 return ret;
993}
994
Liam Girdwood956245e2011-07-01 16:54:08 +0100995static int soc_probe_platform(struct snd_soc_card *card,
996 struct snd_soc_platform *platform)
997{
998 int ret = 0;
999 const struct snd_soc_platform_driver *driver = platform->driver;
1000
1001 platform->card = card;
Liam Girdwoodb7950642011-07-04 22:10:52 +01001002 platform->dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +01001003
1004 if (!try_module_get(platform->dev->driver->owner))
1005 return -ENODEV;
1006
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001007 if (driver->dapm_widgets)
1008 snd_soc_dapm_new_controls(&platform->dapm,
1009 driver->dapm_widgets, driver->num_dapm_widgets);
1010
Liam Girdwood956245e2011-07-01 16:54:08 +01001011 if (driver->probe) {
1012 ret = driver->probe(platform);
1013 if (ret < 0) {
1014 dev_err(platform->dev,
1015 "asoc: failed to probe platform %s: %d\n",
1016 platform->name, ret);
1017 goto err_probe;
1018 }
1019 }
1020
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001021 if (driver->controls)
1022 snd_soc_add_platform_controls(platform, driver->controls,
1023 driver->num_controls);
1024 if (driver->dapm_routes)
1025 snd_soc_dapm_add_routes(&platform->dapm, driver->dapm_routes,
1026 driver->num_dapm_routes);
1027
Liam Girdwood956245e2011-07-01 16:54:08 +01001028 /* mark platform as probed and add to card platform list */
1029 platform->probed = 1;
1030 list_add(&platform->card_list, &card->platform_dev_list);
Liam Girdwoodb7950642011-07-04 22:10:52 +01001031 list_add(&platform->dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001032
1033 return 0;
1034
1035err_probe:
1036 module_put(platform->dev->driver->owner);
1037
1038 return ret;
1039}
1040
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001041static void rtd_release(struct device *dev) {}
1042
Jarkko Nikula589c3562010-12-06 16:27:07 +02001043static int soc_post_component_init(struct snd_soc_card *card,
1044 struct snd_soc_codec *codec,
1045 int num, int dailess)
1046{
1047 struct snd_soc_dai_link *dai_link = NULL;
1048 struct snd_soc_aux_dev *aux_dev = NULL;
1049 struct snd_soc_pcm_runtime *rtd;
1050 const char *temp, *name;
1051 int ret = 0;
1052
1053 if (!dailess) {
1054 dai_link = &card->dai_link[num];
1055 rtd = &card->rtd[num];
1056 name = dai_link->name;
1057 } else {
1058 aux_dev = &card->aux_dev[num];
1059 rtd = &card->rtd_aux[num];
1060 name = aux_dev->name;
1061 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001062 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001063
Mark Brown4b1cfcb2011-10-18 00:11:49 +01001064 /* Make sure all DAPM widgets are instantiated */
1065 snd_soc_dapm_new_widgets(&codec->dapm);
1066
Jarkko Nikula589c3562010-12-06 16:27:07 +02001067 /* machine controls, routes and widgets are not prefixed */
1068 temp = codec->name_prefix;
1069 codec->name_prefix = NULL;
1070
1071 /* do machine specific initialization */
1072 if (!dailess && dai_link->init)
1073 ret = dai_link->init(rtd);
1074 else if (dailess && aux_dev->init)
1075 ret = aux_dev->init(&codec->dapm);
1076 if (ret < 0) {
1077 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1078 return ret;
1079 }
1080 codec->name_prefix = temp;
1081
Jarkko Nikula589c3562010-12-06 16:27:07 +02001082 /* register the rtd device */
1083 rtd->codec = codec;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001084 rtd->dev.parent = card->dev;
1085 rtd->dev.release = rtd_release;
1086 rtd->dev.init_name = name;
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001087 mutex_init(&rtd->pcm_mutex);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001088 ret = device_register(&rtd->dev);
1089 if (ret < 0) {
1090 dev_err(card->dev,
1091 "asoc: failed to register runtime device: %d\n", ret);
1092 return ret;
1093 }
1094 rtd->dev_registered = 1;
1095
1096 /* add DAPM sysfs entries for this codec */
1097 ret = snd_soc_dapm_sys_add(&rtd->dev);
1098 if (ret < 0)
1099 dev_err(codec->dev,
1100 "asoc: failed to add codec dapm sysfs entries: %d\n",
1101 ret);
1102
1103 /* add codec sysfs entries */
1104 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1105 if (ret < 0)
1106 dev_err(codec->dev,
1107 "asoc: failed to add codec sysfs files: %d\n", ret);
1108
1109 return 0;
1110}
1111
Liam Girdwood0168bf02011-06-07 16:08:05 +01001112static int soc_probe_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001113{
1114 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1115 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1116 struct snd_soc_codec *codec = rtd->codec;
1117 struct snd_soc_platform *platform = rtd->platform;
1118 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1119 int ret;
1120
Liam Girdwood0168bf02011-06-07 16:08:05 +01001121 dev_dbg(card->dev, "probe %s dai link %d late %d\n",
1122 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001123
1124 /* config components */
1125 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001126 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001127 codec_dai->card = card;
1128 cpu_dai->card = card;
1129
1130 /* set default power off timeout */
1131 rtd->pmdown_time = pmdown_time;
1132
1133 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001134 if (!cpu_dai->probed &&
1135 cpu_dai->driver->probe_order == order) {
Liam Girdwood61b61e32011-05-24 13:57:43 +01001136 if (!try_module_get(cpu_dai->dev->driver->owner))
1137 return -ENODEV;
1138
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001139 if (cpu_dai->driver->probe) {
1140 ret = cpu_dai->driver->probe(cpu_dai);
1141 if (ret < 0) {
1142 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1143 cpu_dai->name);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001144 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001145 return ret;
1146 }
1147 }
1148 cpu_dai->probed = 1;
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001149 /* mark cpu_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001150 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1151 }
1152
1153 /* probe the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001154 if (!codec->probed &&
1155 codec->driver->probe_order == order) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001156 ret = soc_probe_codec(card, codec);
1157 if (ret < 0)
1158 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001159 }
1160
1161 /* probe the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001162 if (!platform->probed &&
1163 platform->driver->probe_order == order) {
Liam Girdwood956245e2011-07-01 16:54:08 +01001164 ret = soc_probe_platform(card, platform);
1165 if (ret < 0)
1166 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001167 }
1168
1169 /* probe the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001170 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001171 if (codec_dai->driver->probe) {
1172 ret = codec_dai->driver->probe(codec_dai);
1173 if (ret < 0) {
1174 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1175 codec_dai->name);
1176 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001177 }
1178 }
1179
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001180 /* mark codec_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001181 codec_dai->probed = 1;
1182 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001183 }
1184
Liam Girdwood0168bf02011-06-07 16:08:05 +01001185 /* complete DAI probe during last probe */
1186 if (order != SND_SOC_COMP_ORDER_LAST)
1187 return 0;
1188
Jarkko Nikula589c3562010-12-06 16:27:07 +02001189 ret = soc_post_component_init(card, codec, num, 0);
1190 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001191 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001192
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001193 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1194 if (ret < 0)
1195 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1196
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001197 /* create the pcm */
1198 ret = soc_new_pcm(rtd, num);
1199 if (ret < 0) {
1200 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1201 return ret;
1202 }
1203
1204 /* add platform data for AC97 devices */
1205 if (rtd->codec_dai->driver->ac97_control)
1206 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1207
1208 return 0;
1209}
1210
1211#ifdef CONFIG_SND_SOC_AC97_BUS
1212static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1213{
1214 int ret;
1215
1216 /* Only instantiate AC97 if not already done by the adaptor
1217 * for the generic AC97 subsystem.
1218 */
1219 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001220 /*
1221 * It is possible that the AC97 device is already registered to
1222 * the device subsystem. This happens when the device is created
1223 * via snd_ac97_mixer(). Currently only SoC codec that does so
1224 * is the generic AC97 glue but others migh emerge.
1225 *
1226 * In those cases we don't try to register the device again.
1227 */
1228 if (!rtd->codec->ac97_created)
1229 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001230
1231 ret = soc_ac97_dev_register(rtd->codec);
1232 if (ret < 0) {
1233 printk(KERN_ERR "asoc: AC97 device register failed\n");
1234 return ret;
1235 }
1236
1237 rtd->codec->ac97_registered = 1;
1238 }
1239 return 0;
1240}
1241
1242static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1243{
1244 if (codec->ac97_registered) {
1245 soc_ac97_dev_unregister(codec);
1246 codec->ac97_registered = 0;
1247 }
1248}
1249#endif
1250
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001251static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1252{
1253 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001254 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001255 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001256
1257 /* find CODEC from registered CODECs*/
1258 list_for_each_entry(codec, &codec_list, list) {
1259 if (!strcmp(codec->name, aux_dev->codec_name)) {
1260 if (codec->probed) {
1261 dev_err(codec->dev,
1262 "asoc: codec already probed");
1263 ret = -EBUSY;
1264 goto out;
1265 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001266 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001267 }
1268 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001269 /* codec not found */
1270 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1271 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001272
Jarkko Nikula676ad982010-12-03 09:18:22 +02001273found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001274 ret = soc_probe_codec(card, codec);
1275 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001276 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001277
Jarkko Nikula589c3562010-12-06 16:27:07 +02001278 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001279
1280out:
1281 return ret;
1282}
1283
1284static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1285{
1286 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1287 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001288
1289 /* unregister the rtd device */
1290 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001291 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001292 device_unregister(&rtd->dev);
1293 rtd->dev_registered = 0;
1294 }
1295
Jarkko Nikula589c3562010-12-06 16:27:07 +02001296 if (codec && codec->probed)
1297 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001298}
1299
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001300static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1301 enum snd_soc_compress_type compress_type)
1302{
1303 int ret;
1304
1305 if (codec->cache_init)
1306 return 0;
1307
1308 /* override the compress_type if necessary */
1309 if (compress_type && codec->compress_type != compress_type)
1310 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001311 ret = snd_soc_cache_init(codec);
1312 if (ret < 0) {
1313 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1314 ret);
1315 return ret;
1316 }
1317 codec->cache_init = 1;
1318 return 0;
1319}
1320
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001321static void snd_soc_instantiate_card(struct snd_soc_card *card)
1322{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001323 struct snd_soc_codec *codec;
1324 struct snd_soc_codec_conf *codec_conf;
1325 enum snd_soc_compress_type compress_type;
Mark Brown75d9ac42011-09-27 16:41:01 +01001326 struct snd_soc_dai_link *dai_link;
Liam Girdwood0168bf02011-06-07 16:08:05 +01001327 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001328
1329 mutex_lock(&card->mutex);
1330
1331 if (card->instantiated) {
1332 mutex_unlock(&card->mutex);
1333 return;
1334 }
1335
1336 /* bind DAIs */
1337 for (i = 0; i < card->num_links; i++)
1338 soc_bind_dai_link(card, i);
1339
1340 /* bind completed ? */
1341 if (card->num_rtd != card->num_links) {
1342 mutex_unlock(&card->mutex);
1343 return;
1344 }
1345
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001346 /* initialize the register cache for each available codec */
1347 list_for_each_entry(codec, &codec_list, list) {
1348 if (codec->cache_init)
1349 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001350 /* by default we don't override the compress_type */
1351 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001352 /* check to see if we need to override the compress_type */
1353 for (i = 0; i < card->num_configs; ++i) {
1354 codec_conf = &card->codec_conf[i];
1355 if (!strcmp(codec->name, codec_conf->dev_name)) {
1356 compress_type = codec_conf->compress_type;
1357 if (compress_type && compress_type
1358 != codec->compress_type)
1359 break;
1360 }
1361 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001362 ret = snd_soc_init_codec_cache(codec, compress_type);
1363 if (ret < 0) {
1364 mutex_unlock(&card->mutex);
1365 return;
1366 }
1367 }
1368
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001369 /* card bind complete so register a sound card */
1370 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1371 card->owner, 0, &card->snd_card);
1372 if (ret < 0) {
1373 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1374 card->name);
1375 mutex_unlock(&card->mutex);
1376 return;
1377 }
1378 card->snd_card->dev = card->dev;
1379
Mark Browne37a4972011-03-02 18:21:57 +00001380 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1381 card->dapm.dev = card->dev;
1382 card->dapm.card = card;
1383 list_add(&card->dapm.list, &card->dapm_list);
1384
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001385#ifdef CONFIG_DEBUG_FS
1386 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1387#endif
1388
Mark Brown88ee1c62011-02-02 10:43:26 +00001389#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001390 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001391 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001392#endif
Andy Green6ed25972008-06-13 16:24:05 +01001393
Mark Brown9a841eb2011-04-12 17:51:37 -07001394 if (card->dapm_widgets)
1395 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1396 card->num_dapm_widgets);
1397
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001398 /* initialise the sound card only once */
1399 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001400 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001401 if (ret < 0)
1402 goto card_probe_error;
1403 }
1404
Liam Girdwood0168bf02011-06-07 16:08:05 +01001405 /* early DAI link probe */
1406 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1407 order++) {
1408 for (i = 0; i < card->num_links; i++) {
1409 ret = soc_probe_dai_link(card, i, order);
1410 if (ret < 0) {
1411 pr_err("asoc: failed to instantiate card %s: %d\n",
Mark Brown321de0d2010-09-21 15:09:37 +01001412 card->name, ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001413 goto probe_dai_err;
1414 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001415 }
1416 }
1417
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001418 for (i = 0; i < card->num_aux_devs; i++) {
1419 ret = soc_probe_aux_dev(card, i);
1420 if (ret < 0) {
1421 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1422 card->name, ret);
1423 goto probe_aux_dev_err;
1424 }
1425 }
1426
Mark Brownb7af1da2011-04-07 19:18:44 +09001427 /* We should have a non-codec control add function but we don't */
1428 if (card->controls)
1429 snd_soc_add_controls(list_first_entry(&card->codec_dev_list,
1430 struct snd_soc_codec,
1431 card_list),
1432 card->controls,
1433 card->num_controls);
1434
Mark Brownb8ad29d2011-03-02 18:35:51 +00001435 if (card->dapm_routes)
1436 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1437 card->num_dapm_routes);
1438
Mark Brownb90d2f92011-10-10 13:38:06 +01001439 snd_soc_dapm_new_widgets(&card->dapm);
1440
Mark Brown75d9ac42011-09-27 16:41:01 +01001441 for (i = 0; i < card->num_links; i++) {
1442 dai_link = &card->dai_link[i];
1443
1444 if (dai_link->dai_fmt) {
1445 ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
1446 dai_link->dai_fmt);
1447 if (ret != 0)
1448 dev_warn(card->rtd[i].codec_dai->dev,
1449 "Failed to set DAI format: %d\n",
1450 ret);
1451
1452 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1453 dai_link->dai_fmt);
1454 if (ret != 0)
1455 dev_warn(card->rtd[i].cpu_dai->dev,
1456 "Failed to set DAI format: %d\n",
1457 ret);
1458 }
1459 }
1460
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001461 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001462 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001463 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1464 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001465 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1466 "%s", card->driver_name ? card->driver_name : card->name);
1467 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1468 switch (card->snd_card->driver[i]) {
1469 case '_':
1470 case '-':
1471 case '\0':
1472 break;
1473 default:
1474 if (!isalnum(card->snd_card->driver[i]))
1475 card->snd_card->driver[i] = '_';
1476 break;
1477 }
1478 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001479
Mark Brown28e9ad92011-03-02 18:36:34 +00001480 if (card->late_probe) {
1481 ret = card->late_probe(card);
1482 if (ret < 0) {
1483 dev_err(card->dev, "%s late_probe() failed: %d\n",
1484 card->name, ret);
1485 goto probe_aux_dev_err;
1486 }
1487 }
1488
Mark Brown2dc00212011-10-08 13:59:44 +01001489 snd_soc_dapm_new_widgets(&card->dapm);
1490
Stephen Warren16332812011-11-23 12:42:04 -07001491 if (card->fully_routed)
1492 list_for_each_entry(codec, &codec_list, list)
1493 snd_soc_dapm_auto_nc_codec_pins(codec);
1494
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001495 ret = snd_card_register(card->snd_card);
1496 if (ret < 0) {
1497 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001498 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001499 }
1500
1501#ifdef CONFIG_SND_SOC_AC97_BUS
1502 /* register any AC97 codecs */
1503 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001504 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1505 if (ret < 0) {
1506 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1507 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001508 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001509 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001510 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001511 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001512#endif
1513
Mark Brown435c5e22008-12-04 15:32:53 +00001514 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001515 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001516 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001517 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001518
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001519probe_aux_dev_err:
1520 for (i = 0; i < card->num_aux_devs; i++)
1521 soc_remove_aux_dev(card, i);
1522
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001523probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001524 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001525
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001526card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001527 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001528 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001529
1530 snd_card_free(card->snd_card);
1531
1532 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001533}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001534
Mark Brown435c5e22008-12-04 15:32:53 +00001535/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001536 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001537 * client_mutex.
1538 */
1539static void snd_soc_instantiate_cards(void)
1540{
1541 struct snd_soc_card *card;
1542 list_for_each_entry(card, &card_list, list)
1543 snd_soc_instantiate_card(card);
1544}
1545
1546/* probes a new socdev */
1547static int soc_probe(struct platform_device *pdev)
1548{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001549 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001550 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001551
Vinod Koul70a7ca32011-01-14 19:22:48 +05301552 /*
1553 * no card, so machine driver should be registering card
1554 * we should not be here in that case so ret error
1555 */
1556 if (!card)
1557 return -EINVAL;
1558
Mark Brown435c5e22008-12-04 15:32:53 +00001559 /* Bodge while we unpick instantiation */
1560 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001561
Mark Brown435c5e22008-12-04 15:32:53 +00001562 ret = snd_soc_register_card(card);
1563 if (ret != 0) {
1564 dev_err(&pdev->dev, "Failed to register card\n");
1565 return ret;
1566 }
1567
1568 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001569}
1570
Vinod Koulb0e26482011-01-13 22:48:02 +05301571static int soc_cleanup_card_resources(struct snd_soc_card *card)
1572{
Vinod Koulb0e26482011-01-13 22:48:02 +05301573 int i;
1574
1575 /* make sure any delayed work runs */
1576 for (i = 0; i < card->num_rtd; i++) {
1577 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1578 flush_delayed_work_sync(&rtd->delayed_work);
1579 }
1580
1581 /* remove auxiliary devices */
1582 for (i = 0; i < card->num_aux_devs; i++)
1583 soc_remove_aux_dev(card, i);
1584
1585 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001586 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301587
1588 soc_cleanup_card_debugfs(card);
1589
1590 /* remove the card */
1591 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001592 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301593
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001594 snd_soc_dapm_free(&card->dapm);
1595
Vinod Koulb0e26482011-01-13 22:48:02 +05301596 kfree(card->rtd);
1597 snd_card_free(card->snd_card);
1598 return 0;
1599
1600}
1601
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001602/* removes a socdev */
1603static int soc_remove(struct platform_device *pdev)
1604{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001605 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001606
Mark Brownc5af3a22008-11-28 13:29:45 +00001607 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001608 return 0;
1609}
1610
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001611int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001612{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001613 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001614 int i;
Mark Brown51737472009-06-22 13:16:51 +01001615
1616 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001617 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001618
1619 /* Flush out pmdown_time work - we actually do want to run it
1620 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001621 for (i = 0; i < card->num_rtd; i++) {
1622 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01001623 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001624 }
Mark Brown51737472009-06-22 13:16:51 +01001625
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001626 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001627
1628 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001629}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001630EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001631
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001632const struct dev_pm_ops snd_soc_pm_ops = {
1633 .suspend = snd_soc_suspend,
1634 .resume = snd_soc_resume,
1635 .poweroff = snd_soc_poweroff,
Mark Brown416356f2009-06-30 19:05:15 +01001636};
Stephen Warrendeb26072011-04-05 19:35:30 -06001637EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001638
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001639/* ASoC platform driver */
1640static struct platform_driver soc_driver = {
1641 .driver = {
1642 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001643 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001644 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001645 },
1646 .probe = soc_probe,
1647 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001648};
1649
Mark Brown096e49d2009-07-05 15:12:22 +01001650/**
1651 * snd_soc_codec_volatile_register: Report if a register is volatile.
1652 *
1653 * @codec: CODEC to query.
1654 * @reg: Register to query.
1655 *
1656 * Boolean function indiciating if a CODEC register is volatile.
1657 */
Mark Brown181e0552011-01-24 14:05:25 +00001658int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1659 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01001660{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00001661 if (codec->volatile_register)
1662 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01001663 else
1664 return 0;
1665}
1666EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1667
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001668/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001669 * snd_soc_codec_readable_register: Report if a register is readable.
1670 *
1671 * @codec: CODEC to query.
1672 * @reg: Register to query.
1673 *
1674 * Boolean function indicating if a CODEC register is readable.
1675 */
1676int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
1677 unsigned int reg)
1678{
1679 if (codec->readable_register)
1680 return codec->readable_register(codec, reg);
1681 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001682 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001683}
1684EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
1685
1686/**
1687 * snd_soc_codec_writable_register: Report if a register is writable.
1688 *
1689 * @codec: CODEC to query.
1690 * @reg: Register to query.
1691 *
1692 * Boolean function indicating if a CODEC register is writable.
1693 */
1694int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
1695 unsigned int reg)
1696{
1697 if (codec->writable_register)
1698 return codec->writable_register(codec, reg);
1699 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001700 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001701}
1702EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
1703
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001704int snd_soc_platform_read(struct snd_soc_platform *platform,
1705 unsigned int reg)
1706{
1707 unsigned int ret;
1708
1709 if (!platform->driver->read) {
1710 dev_err(platform->dev, "platform has no read back\n");
1711 return -1;
1712 }
1713
1714 ret = platform->driver->read(platform, reg);
1715 dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001716 trace_snd_soc_preg_read(platform, reg, ret);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001717
1718 return ret;
1719}
1720EXPORT_SYMBOL_GPL(snd_soc_platform_read);
1721
1722int snd_soc_platform_write(struct snd_soc_platform *platform,
1723 unsigned int reg, unsigned int val)
1724{
1725 if (!platform->driver->write) {
1726 dev_err(platform->dev, "platform has no write back\n");
1727 return -1;
1728 }
1729
1730 dev_dbg(platform->dev, "write %x = %x\n", reg, val);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001731 trace_snd_soc_preg_write(platform, reg, val);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001732 return platform->driver->write(platform, reg, val);
1733}
1734EXPORT_SYMBOL_GPL(snd_soc_platform_write);
1735
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001736/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001737 * snd_soc_new_ac97_codec - initailise AC97 device
1738 * @codec: audio codec
1739 * @ops: AC97 bus operations
1740 * @num: AC97 codec number
1741 *
1742 * Initialises AC97 codec resources for use by ad-hoc devices only.
1743 */
1744int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1745 struct snd_ac97_bus_ops *ops, int num)
1746{
1747 mutex_lock(&codec->mutex);
1748
1749 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1750 if (codec->ac97 == NULL) {
1751 mutex_unlock(&codec->mutex);
1752 return -ENOMEM;
1753 }
1754
1755 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1756 if (codec->ac97->bus == NULL) {
1757 kfree(codec->ac97);
1758 codec->ac97 = NULL;
1759 mutex_unlock(&codec->mutex);
1760 return -ENOMEM;
1761 }
1762
1763 codec->ac97->bus->ops = ops;
1764 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03001765
1766 /*
1767 * Mark the AC97 device to be created by us. This way we ensure that the
1768 * device will be registered with the device subsystem later on.
1769 */
1770 codec->ac97_created = 1;
1771
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001772 mutex_unlock(&codec->mutex);
1773 return 0;
1774}
1775EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1776
1777/**
1778 * snd_soc_free_ac97_codec - free AC97 codec device
1779 * @codec: audio codec
1780 *
1781 * Frees AC97 codec device resources.
1782 */
1783void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1784{
1785 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001786#ifdef CONFIG_SND_SOC_AC97_BUS
1787 soc_unregister_ac97_dai_link(codec);
1788#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001789 kfree(codec->ac97->bus);
1790 kfree(codec->ac97);
1791 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03001792 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001793 mutex_unlock(&codec->mutex);
1794}
1795EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1796
Mark Brownc3753702010-11-01 15:41:57 -04001797unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
1798{
1799 unsigned int ret;
1800
Mark Brownc3acec22010-12-02 16:15:29 +00001801 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04001802 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04001803 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04001804
1805 return ret;
1806}
1807EXPORT_SYMBOL_GPL(snd_soc_read);
1808
1809unsigned int snd_soc_write(struct snd_soc_codec *codec,
1810 unsigned int reg, unsigned int val)
1811{
1812 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04001813 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00001814 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04001815}
1816EXPORT_SYMBOL_GPL(snd_soc_write);
1817
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00001818unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
1819 unsigned int reg, const void *data, size_t len)
1820{
1821 return codec->bulk_write_raw(codec, reg, data, len);
1822}
1823EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
1824
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001825/**
1826 * snd_soc_update_bits - update codec register bits
1827 * @codec: audio codec
1828 * @reg: codec register
1829 * @mask: register mask
1830 * @value: new value
1831 *
1832 * Writes new register value.
1833 *
Timur Tabi180c3292011-01-10 15:58:13 -06001834 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001835 */
1836int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001837 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001838{
1839 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001840 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06001841 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001842
Timur Tabi180c3292011-01-10 15:58:13 -06001843 ret = snd_soc_read(codec, reg);
1844 if (ret < 0)
1845 return ret;
1846
1847 old = ret;
Mark Brown78bf3c92011-06-03 17:09:14 +01001848 new = (old & ~mask) | (value & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001849 change = old != new;
Timur Tabi180c3292011-01-10 15:58:13 -06001850 if (change) {
1851 ret = snd_soc_write(codec, reg, new);
1852 if (ret < 0)
1853 return ret;
1854 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001855
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001856 return change;
1857}
1858EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1859
1860/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001861 * snd_soc_update_bits_locked - update codec register bits
1862 * @codec: audio codec
1863 * @reg: codec register
1864 * @mask: register mask
1865 * @value: new value
1866 *
1867 * Writes new register value, and takes the codec mutex.
1868 *
1869 * Returns 1 for change else 0.
1870 */
Mark Browndd1b3d52009-12-04 14:22:03 +00001871int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
1872 unsigned short reg, unsigned int mask,
1873 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001874{
1875 int change;
1876
1877 mutex_lock(&codec->mutex);
1878 change = snd_soc_update_bits(codec, reg, mask, value);
1879 mutex_unlock(&codec->mutex);
1880
1881 return change;
1882}
Mark Browndd1b3d52009-12-04 14:22:03 +00001883EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001884
1885/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001886 * snd_soc_test_bits - test register for change
1887 * @codec: audio codec
1888 * @reg: codec register
1889 * @mask: register mask
1890 * @value: new value
1891 *
1892 * Tests a register with a new value and checks if the new value is
1893 * different from the old value.
1894 *
1895 * Returns 1 for change else 0.
1896 */
1897int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001898 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001899{
1900 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001901 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001902
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001903 old = snd_soc_read(codec, reg);
1904 new = (old & ~mask) | value;
1905 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001906
1907 return change;
1908}
1909EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1910
1911/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001912 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1913 * @substream: the pcm substream
1914 * @hw: the hardware parameters
1915 *
1916 * Sets the substream runtime hardware parameters.
1917 */
1918int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1919 const struct snd_pcm_hardware *hw)
1920{
1921 struct snd_pcm_runtime *runtime = substream->runtime;
1922 runtime->hw.info = hw->info;
1923 runtime->hw.formats = hw->formats;
1924 runtime->hw.period_bytes_min = hw->period_bytes_min;
1925 runtime->hw.period_bytes_max = hw->period_bytes_max;
1926 runtime->hw.periods_min = hw->periods_min;
1927 runtime->hw.periods_max = hw->periods_max;
1928 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1929 runtime->hw.fifo_size = hw->fifo_size;
1930 return 0;
1931}
1932EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1933
1934/**
1935 * snd_soc_cnew - create new control
1936 * @_template: control template
1937 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001938 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001939 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001940 *
1941 * Create a new mixer control from a template control.
1942 *
1943 * Returns 0 for success, else error.
1944 */
1945struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brownefb7ac32011-03-08 17:23:24 +00001946 void *data, char *long_name,
1947 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001948{
1949 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001950 struct snd_kcontrol *kcontrol;
1951 char *name = NULL;
1952 int name_len;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001953
1954 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001955 template.index = 0;
1956
Mark Brownefb7ac32011-03-08 17:23:24 +00001957 if (!long_name)
1958 long_name = template.name;
1959
1960 if (prefix) {
1961 name_len = strlen(long_name) + strlen(prefix) + 2;
Axel Lin57cf9d42011-08-20 11:03:44 +08001962 name = kmalloc(name_len, GFP_KERNEL);
Mark Brownefb7ac32011-03-08 17:23:24 +00001963 if (!name)
1964 return NULL;
1965
1966 snprintf(name, name_len, "%s %s", prefix, long_name);
1967
1968 template.name = name;
1969 } else {
1970 template.name = long_name;
1971 }
1972
1973 kcontrol = snd_ctl_new1(&template, data);
1974
1975 kfree(name);
1976
1977 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001978}
1979EXPORT_SYMBOL_GPL(snd_soc_cnew);
1980
1981/**
Ian Molton3e8e1952009-01-09 00:23:21 +00001982 * snd_soc_add_controls - add an array of controls to a codec.
1983 * Convienience function to add a list of controls. Many codecs were
1984 * duplicating this code.
1985 *
1986 * @codec: codec to add controls to
1987 * @controls: array of controls to add
1988 * @num_controls: number of elements in the array
1989 *
1990 * Return 0 for success, else error.
1991 */
1992int snd_soc_add_controls(struct snd_soc_codec *codec,
1993 const struct snd_kcontrol_new *controls, int num_controls)
1994{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001995 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00001996 int err, i;
1997
1998 for (i = 0; i < num_controls; i++) {
1999 const struct snd_kcontrol_new *control = &controls[i];
Mark Brownefb7ac32011-03-08 17:23:24 +00002000 err = snd_ctl_add(card, snd_soc_cnew(control, codec,
2001 control->name,
2002 codec->name_prefix));
Ian Molton3e8e1952009-01-09 00:23:21 +00002003 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002004 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Mark Brownefb7ac32011-03-08 17:23:24 +00002005 codec->name, control->name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002006 return err;
2007 }
2008 }
2009
2010 return 0;
2011}
2012EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2013
2014/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002015 * snd_soc_add_platform_controls - add an array of controls to a platform.
2016 * Convienience function to add a list of controls.
2017 *
2018 * @platform: platform to add controls to
2019 * @controls: array of controls to add
2020 * @num_controls: number of elements in the array
2021 *
2022 * Return 0 for success, else error.
2023 */
2024int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2025 const struct snd_kcontrol_new *controls, int num_controls)
2026{
2027 struct snd_card *card = platform->card->snd_card;
2028 int err, i;
2029
2030 for (i = 0; i < num_controls; i++) {
2031 const struct snd_kcontrol_new *control = &controls[i];
2032 err = snd_ctl_add(card, snd_soc_cnew(control, platform,
2033 control->name, NULL));
2034 if (err < 0) {
2035 dev_err(platform->dev, "Failed to add %s %d\n",control->name, err);
2036 return err;
2037 }
2038 }
2039
2040 return 0;
2041}
2042EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2043
2044/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002045 * snd_soc_info_enum_double - enumerated double mixer info callback
2046 * @kcontrol: mixer control
2047 * @uinfo: control element information
2048 *
2049 * Callback to provide information about a double enumerated
2050 * mixer control.
2051 *
2052 * Returns 0 for success.
2053 */
2054int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2055 struct snd_ctl_elem_info *uinfo)
2056{
2057 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2058
2059 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2060 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002061 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002062
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002063 if (uinfo->value.enumerated.item > e->max - 1)
2064 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002065 strcpy(uinfo->value.enumerated.name,
2066 e->texts[uinfo->value.enumerated.item]);
2067 return 0;
2068}
2069EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2070
2071/**
2072 * snd_soc_get_enum_double - enumerated double mixer get callback
2073 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002074 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002075 *
2076 * Callback to get the value of a double enumerated mixer.
2077 *
2078 * Returns 0 for success.
2079 */
2080int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2081 struct snd_ctl_elem_value *ucontrol)
2082{
2083 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2084 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002085 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002086
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002087 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002088 ;
2089 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002090 ucontrol->value.enumerated.item[0]
2091 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002092 if (e->shift_l != e->shift_r)
2093 ucontrol->value.enumerated.item[1] =
2094 (val >> e->shift_r) & (bitmask - 1);
2095
2096 return 0;
2097}
2098EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2099
2100/**
2101 * snd_soc_put_enum_double - enumerated double mixer put callback
2102 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002103 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002104 *
2105 * Callback to set the value of a double enumerated mixer.
2106 *
2107 * Returns 0 for success.
2108 */
2109int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2110 struct snd_ctl_elem_value *ucontrol)
2111{
2112 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2113 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002114 unsigned int val;
2115 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002116
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002117 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002118 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002119 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002120 return -EINVAL;
2121 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2122 mask = (bitmask - 1) << e->shift_l;
2123 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002124 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002125 return -EINVAL;
2126 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2127 mask |= (bitmask - 1) << e->shift_r;
2128 }
2129
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002130 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002131}
2132EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2133
2134/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002135 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2136 * @kcontrol: mixer control
2137 * @ucontrol: control element information
2138 *
2139 * Callback to get the value of a double semi enumerated mixer.
2140 *
2141 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2142 * used for handling bitfield coded enumeration for example.
2143 *
2144 * Returns 0 for success.
2145 */
2146int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2147 struct snd_ctl_elem_value *ucontrol)
2148{
2149 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002150 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002151 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002152
2153 reg_val = snd_soc_read(codec, e->reg);
2154 val = (reg_val >> e->shift_l) & e->mask;
2155 for (mux = 0; mux < e->max; mux++) {
2156 if (val == e->values[mux])
2157 break;
2158 }
2159 ucontrol->value.enumerated.item[0] = mux;
2160 if (e->shift_l != e->shift_r) {
2161 val = (reg_val >> e->shift_r) & e->mask;
2162 for (mux = 0; mux < e->max; mux++) {
2163 if (val == e->values[mux])
2164 break;
2165 }
2166 ucontrol->value.enumerated.item[1] = mux;
2167 }
2168
2169 return 0;
2170}
2171EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2172
2173/**
2174 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2175 * @kcontrol: mixer control
2176 * @ucontrol: control element information
2177 *
2178 * Callback to set the value of a double semi enumerated mixer.
2179 *
2180 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2181 * used for handling bitfield coded enumeration for example.
2182 *
2183 * Returns 0 for success.
2184 */
2185int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2186 struct snd_ctl_elem_value *ucontrol)
2187{
2188 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002189 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002190 unsigned int val;
2191 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002192
2193 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2194 return -EINVAL;
2195 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2196 mask = e->mask << e->shift_l;
2197 if (e->shift_l != e->shift_r) {
2198 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2199 return -EINVAL;
2200 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2201 mask |= e->mask << e->shift_r;
2202 }
2203
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002204 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002205}
2206EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2207
2208/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002209 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2210 * @kcontrol: mixer control
2211 * @uinfo: control element information
2212 *
2213 * Callback to provide information about an external enumerated
2214 * single mixer.
2215 *
2216 * Returns 0 for success.
2217 */
2218int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2219 struct snd_ctl_elem_info *uinfo)
2220{
2221 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2222
2223 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2224 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002225 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002226
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002227 if (uinfo->value.enumerated.item > e->max - 1)
2228 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002229 strcpy(uinfo->value.enumerated.name,
2230 e->texts[uinfo->value.enumerated.item]);
2231 return 0;
2232}
2233EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2234
2235/**
2236 * snd_soc_info_volsw_ext - external single mixer info callback
2237 * @kcontrol: mixer control
2238 * @uinfo: control element information
2239 *
2240 * Callback to provide information about a single external mixer control.
2241 *
2242 * Returns 0 for success.
2243 */
2244int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2245 struct snd_ctl_elem_info *uinfo)
2246{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002247 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002248
Mark Brownfd5dfad2009-04-15 21:37:46 +01002249 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002250 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2251 else
2252 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2253
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002254 uinfo->count = 1;
2255 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002256 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002257 return 0;
2258}
2259EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2260
2261/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002262 * snd_soc_info_volsw - single mixer info callback
2263 * @kcontrol: mixer control
2264 * @uinfo: control element information
2265 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002266 * Callback to provide information about a single mixer control, or a double
2267 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002268 *
2269 * Returns 0 for success.
2270 */
2271int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2272 struct snd_ctl_elem_info *uinfo)
2273{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002274 struct soc_mixer_control *mc =
2275 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002276 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002277
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002278 if (!mc->platform_max)
2279 mc->platform_max = mc->max;
2280 platform_max = mc->platform_max;
2281
2282 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002283 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2284 else
2285 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2286
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002287 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002288 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002289 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002290 return 0;
2291}
2292EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2293
2294/**
2295 * snd_soc_get_volsw - single mixer get callback
2296 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002297 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002298 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002299 * Callback to get the value of a single mixer control, or a double mixer
2300 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002301 *
2302 * Returns 0 for success.
2303 */
2304int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2305 struct snd_ctl_elem_value *ucontrol)
2306{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002307 struct soc_mixer_control *mc =
2308 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002309 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002310 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002311 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002312 unsigned int shift = mc->shift;
2313 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002314 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002315 unsigned int mask = (1 << fls(max)) - 1;
2316 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002317
2318 ucontrol->value.integer.value[0] =
2319 (snd_soc_read(codec, reg) >> shift) & mask;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002320 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002321 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002322 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002323
2324 if (snd_soc_volsw_is_stereo(mc)) {
2325 if (reg == reg2)
2326 ucontrol->value.integer.value[1] =
2327 (snd_soc_read(codec, reg) >> rshift) & mask;
2328 else
2329 ucontrol->value.integer.value[1] =
2330 (snd_soc_read(codec, reg2) >> shift) & mask;
2331 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002332 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002333 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002334 }
2335
2336 return 0;
2337}
2338EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2339
2340/**
2341 * snd_soc_put_volsw - single mixer put callback
2342 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002343 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002344 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002345 * Callback to set the value of a single mixer control, or a double mixer
2346 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002347 *
2348 * Returns 0 for success.
2349 */
2350int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2351 struct snd_ctl_elem_value *ucontrol)
2352{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002353 struct soc_mixer_control *mc =
2354 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002355 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002356 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002357 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002358 unsigned int shift = mc->shift;
2359 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002360 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002361 unsigned int mask = (1 << fls(max)) - 1;
2362 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002363 int err;
2364 bool type_2r = 0;
2365 unsigned int val2 = 0;
2366 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002367
2368 val = (ucontrol->value.integer.value[0] & mask);
2369 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002370 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002371 val_mask = mask << shift;
2372 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002373 if (snd_soc_volsw_is_stereo(mc)) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002374 val2 = (ucontrol->value.integer.value[1] & mask);
2375 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002376 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002377 if (reg == reg2) {
2378 val_mask |= mask << rshift;
2379 val |= val2 << rshift;
2380 } else {
2381 val2 = val2 << shift;
2382 type_2r = 1;
2383 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002384 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002385 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002386 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002387 return err;
2388
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002389 if (type_2r)
2390 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2391
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002392 return err;
2393}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002394EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002395
Mark Browne13ac2e2008-05-28 17:58:05 +01002396/**
2397 * snd_soc_info_volsw_s8 - signed mixer info callback
2398 * @kcontrol: mixer control
2399 * @uinfo: control element information
2400 *
2401 * Callback to provide information about a signed mixer control.
2402 *
2403 * Returns 0 for success.
2404 */
2405int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2406 struct snd_ctl_elem_info *uinfo)
2407{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002408 struct soc_mixer_control *mc =
2409 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002410 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002411 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002412
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002413 if (!mc->platform_max)
2414 mc->platform_max = mc->max;
2415 platform_max = mc->platform_max;
2416
Mark Browne13ac2e2008-05-28 17:58:05 +01002417 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2418 uinfo->count = 2;
2419 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002420 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002421 return 0;
2422}
2423EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2424
2425/**
2426 * snd_soc_get_volsw_s8 - signed mixer get callback
2427 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002428 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002429 *
2430 * Callback to get the value of a signed mixer control.
2431 *
2432 * Returns 0 for success.
2433 */
2434int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2435 struct snd_ctl_elem_value *ucontrol)
2436{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002437 struct soc_mixer_control *mc =
2438 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002439 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002440 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002441 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002442 int val = snd_soc_read(codec, reg);
2443
2444 ucontrol->value.integer.value[0] =
2445 ((signed char)(val & 0xff))-min;
2446 ucontrol->value.integer.value[1] =
2447 ((signed char)((val >> 8) & 0xff))-min;
2448 return 0;
2449}
2450EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2451
2452/**
2453 * snd_soc_put_volsw_sgn - signed mixer put callback
2454 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002455 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002456 *
2457 * Callback to set the value of a signed mixer control.
2458 *
2459 * Returns 0 for success.
2460 */
2461int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2462 struct snd_ctl_elem_value *ucontrol)
2463{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002464 struct soc_mixer_control *mc =
2465 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002466 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002467 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002468 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002469 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002470
2471 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2472 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2473
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002474 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002475}
2476EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2477
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002478/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002479 * snd_soc_limit_volume - Set new limit to an existing volume control.
2480 *
2481 * @codec: where to look for the control
2482 * @name: Name of the control
2483 * @max: new maximum limit
2484 *
2485 * Return 0 for success, else error.
2486 */
2487int snd_soc_limit_volume(struct snd_soc_codec *codec,
2488 const char *name, int max)
2489{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002490 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002491 struct snd_kcontrol *kctl;
2492 struct soc_mixer_control *mc;
2493 int found = 0;
2494 int ret = -EINVAL;
2495
2496 /* Sanity check for name and max */
2497 if (unlikely(!name || max <= 0))
2498 return -EINVAL;
2499
2500 list_for_each_entry(kctl, &card->controls, list) {
2501 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2502 found = 1;
2503 break;
2504 }
2505 }
2506 if (found) {
2507 mc = (struct soc_mixer_control *)kctl->private_value;
2508 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002509 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002510 ret = 0;
2511 }
2512 }
2513 return ret;
2514}
2515EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2516
2517/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002518 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2519 * mixer info callback
2520 * @kcontrol: mixer control
2521 * @uinfo: control element information
2522 *
2523 * Returns 0 for success.
2524 */
2525int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2526 struct snd_ctl_elem_info *uinfo)
2527{
2528 struct soc_mixer_control *mc =
2529 (struct soc_mixer_control *)kcontrol->private_value;
2530 int max = mc->max;
2531 int min = mc->min;
2532
2533 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2534 uinfo->count = 2;
2535 uinfo->value.integer.min = 0;
2536 uinfo->value.integer.max = max-min;
2537
2538 return 0;
2539}
2540EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
2541
2542/**
2543 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
2544 * mixer get callback
2545 * @kcontrol: mixer control
2546 * @uinfo: control element information
2547 *
2548 * Returns 0 for success.
2549 */
2550int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2551 struct snd_ctl_elem_value *ucontrol)
2552{
2553 struct soc_mixer_control *mc =
2554 (struct soc_mixer_control *)kcontrol->private_value;
2555 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2556 unsigned int mask = (1<<mc->shift)-1;
2557 int min = mc->min;
2558 int val = snd_soc_read(codec, mc->reg) & mask;
2559 int valr = snd_soc_read(codec, mc->rreg) & mask;
2560
Stuart Longland20630c72010-06-18 12:56:10 +10002561 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
2562 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002563 return 0;
2564}
2565EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
2566
2567/**
2568 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
2569 * mixer put callback
2570 * @kcontrol: mixer control
2571 * @uinfo: control element information
2572 *
2573 * Returns 0 for success.
2574 */
2575int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2576 struct snd_ctl_elem_value *ucontrol)
2577{
2578 struct soc_mixer_control *mc =
2579 (struct soc_mixer_control *)kcontrol->private_value;
2580 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2581 unsigned int mask = (1<<mc->shift)-1;
2582 int min = mc->min;
2583 int ret;
2584 unsigned int val, valr, oval, ovalr;
2585
2586 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
2587 val &= mask;
2588 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
2589 valr &= mask;
2590
2591 oval = snd_soc_read(codec, mc->reg) & mask;
2592 ovalr = snd_soc_read(codec, mc->rreg) & mask;
2593
2594 ret = 0;
2595 if (oval != val) {
2596 ret = snd_soc_write(codec, mc->reg, val);
2597 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002598 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002599 }
2600 if (ovalr != valr) {
2601 ret = snd_soc_write(codec, mc->rreg, valr);
2602 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002603 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002604 }
2605
2606 return 0;
2607}
2608EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
2609
2610/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002611 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2612 * @dai: DAI
2613 * @clk_id: DAI specific clock ID
2614 * @freq: new clock frequency in Hz
2615 * @dir: new clock direction - input/output.
2616 *
2617 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2618 */
2619int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2620 unsigned int freq, int dir)
2621{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002622 if (dai->driver && dai->driver->ops->set_sysclk)
2623 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002624 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002625 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00002626 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002627 else
2628 return -EINVAL;
2629}
2630EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2631
2632/**
Mark Brownec4ee522011-03-07 20:58:11 +00002633 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2634 * @codec: CODEC
2635 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01002636 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00002637 * @freq: new clock frequency in Hz
2638 * @dir: new clock direction - input/output.
2639 *
2640 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2641 */
2642int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01002643 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00002644{
2645 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002646 return codec->driver->set_sysclk(codec, clk_id, source,
2647 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002648 else
2649 return -EINVAL;
2650}
2651EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2652
2653/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002654 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2655 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002656 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002657 * @div: new clock divisor.
2658 *
2659 * Configures the clock dividers. This is used to derive the best DAI bit and
2660 * frame clocks from the system or master clock. It's best to set the DAI bit
2661 * and frame clocks as low as possible to save system power.
2662 */
2663int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2664 int div_id, int div)
2665{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002666 if (dai->driver && dai->driver->ops->set_clkdiv)
2667 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002668 else
2669 return -EINVAL;
2670}
2671EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2672
2673/**
2674 * snd_soc_dai_set_pll - configure DAI PLL.
2675 * @dai: DAI
2676 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002677 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002678 * @freq_in: PLL input clock frequency in Hz
2679 * @freq_out: requested PLL output clock frequency in Hz
2680 *
2681 * Configures and enables PLL to generate output clock based on input clock.
2682 */
Mark Brown85488032009-09-05 18:52:16 +01002683int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2684 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002685{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002686 if (dai->driver && dai->driver->ops->set_pll)
2687 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002688 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002689 else if (dai->codec && dai->codec->driver->set_pll)
2690 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2691 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002692 else
2693 return -EINVAL;
2694}
2695EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2696
Mark Brownec4ee522011-03-07 20:58:11 +00002697/*
2698 * snd_soc_codec_set_pll - configure codec PLL.
2699 * @codec: CODEC
2700 * @pll_id: DAI specific PLL ID
2701 * @source: DAI specific source for the PLL
2702 * @freq_in: PLL input clock frequency in Hz
2703 * @freq_out: requested PLL output clock frequency in Hz
2704 *
2705 * Configures and enables PLL to generate output clock based on input clock.
2706 */
2707int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2708 unsigned int freq_in, unsigned int freq_out)
2709{
2710 if (codec->driver->set_pll)
2711 return codec->driver->set_pll(codec, pll_id, source,
2712 freq_in, freq_out);
2713 else
2714 return -EINVAL;
2715}
2716EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2717
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002718/**
2719 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2720 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002721 * @fmt: SND_SOC_DAIFMT_ format value.
2722 *
2723 * Configures the DAI hardware format and clocking.
2724 */
2725int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2726{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002727 if (dai->driver && dai->driver->ops->set_fmt)
2728 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002729 else
2730 return -EINVAL;
2731}
2732EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2733
2734/**
2735 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2736 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002737 * @tx_mask: bitmask representing active TX slots.
2738 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002739 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002740 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002741 *
2742 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2743 * specific.
2744 */
2745int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002746 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002747{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002748 if (dai->driver && dai->driver->ops->set_tdm_slot)
2749 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002750 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002751 else
2752 return -EINVAL;
2753}
2754EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2755
2756/**
Barry Song472df3c2009-09-12 01:16:29 +08002757 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2758 * @dai: DAI
2759 * @tx_num: how many TX channels
2760 * @tx_slot: pointer to an array which imply the TX slot number channel
2761 * 0~num-1 uses
2762 * @rx_num: how many RX channels
2763 * @rx_slot: pointer to an array which imply the RX slot number channel
2764 * 0~num-1 uses
2765 *
2766 * configure the relationship between channel number and TDM slot number.
2767 */
2768int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2769 unsigned int tx_num, unsigned int *tx_slot,
2770 unsigned int rx_num, unsigned int *rx_slot)
2771{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002772 if (dai->driver && dai->driver->ops->set_channel_map)
2773 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002774 rx_num, rx_slot);
2775 else
2776 return -EINVAL;
2777}
2778EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2779
2780/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002781 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2782 * @dai: DAI
2783 * @tristate: tristate enable
2784 *
2785 * Tristates the DAI so that others can use it.
2786 */
2787int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2788{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002789 if (dai->driver && dai->driver->ops->set_tristate)
2790 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002791 else
2792 return -EINVAL;
2793}
2794EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2795
2796/**
2797 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2798 * @dai: DAI
2799 * @mute: mute enable
2800 *
2801 * Mutes the DAI DAC.
2802 */
2803int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2804{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002805 if (dai->driver && dai->driver->ops->digital_mute)
2806 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002807 else
2808 return -EINVAL;
2809}
2810EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2811
Mark Brownc5af3a22008-11-28 13:29:45 +00002812/**
2813 * snd_soc_register_card - Register a card with the ASoC core
2814 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002815 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002816 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002817 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302818int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002819{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002820 int i;
2821
Mark Brownc5af3a22008-11-28 13:29:45 +00002822 if (!card->name || !card->dev)
2823 return -EINVAL;
2824
Mark Browned77cc12011-05-03 18:25:34 +01002825 dev_set_drvdata(card->dev, card);
2826
Stephen Warren111c6412011-01-28 14:26:35 -07002827 snd_soc_initialize_card_lists(card);
2828
Vinod Koul150dd2f2011-01-13 22:48:32 +05302829 soc_init_card_debugfs(card);
2830
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002831 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
2832 (card->num_links + card->num_aux_devs),
2833 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002834 if (card->rtd == NULL)
2835 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002836 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002837
2838 for (i = 0; i < card->num_links; i++)
2839 card->rtd[i].dai_link = &card->dai_link[i];
2840
Mark Brownc5af3a22008-11-28 13:29:45 +00002841 INIT_LIST_HEAD(&card->list);
Mark Browndb432b42011-10-03 21:06:40 +01002842 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00002843 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002844 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002845
2846 mutex_lock(&client_mutex);
2847 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002848 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002849 mutex_unlock(&client_mutex);
2850
2851 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2852
2853 return 0;
2854}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302855EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002856
2857/**
2858 * snd_soc_unregister_card - Unregister a card with the ASoC core
2859 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002860 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002861 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002862 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302863int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002864{
Vinod Koulb0e26482011-01-13 22:48:02 +05302865 if (card->instantiated)
2866 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002867 mutex_lock(&client_mutex);
2868 list_del(&card->list);
2869 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002870 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2871
2872 return 0;
2873}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302874EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002875
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002876/*
2877 * Simplify DAI link configuration by removing ".-1" from device names
2878 * and sanitizing names.
2879 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002880static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002881{
2882 char *found, name[NAME_SIZE];
2883 int id1, id2;
2884
2885 if (dev_name(dev) == NULL)
2886 return NULL;
2887
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002888 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002889
2890 /* are we a "%s.%d" name (platform and SPI components) */
2891 found = strstr(name, dev->driver->name);
2892 if (found) {
2893 /* get ID */
2894 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2895
2896 /* discard ID from name if ID == -1 */
2897 if (*id == -1)
2898 found[strlen(dev->driver->name)] = '\0';
2899 }
2900
2901 } else {
2902 /* I2C component devices are named "bus-addr" */
2903 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2904 char tmp[NAME_SIZE];
2905
2906 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002907 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002908
2909 /* sanitize component name for DAI link creation */
2910 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002911 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002912 } else
2913 *id = 0;
2914 }
2915
2916 return kstrdup(name, GFP_KERNEL);
2917}
2918
2919/*
2920 * Simplify DAI link naming for single devices with multiple DAIs by removing
2921 * any ".-1" and using the DAI name (instead of device name).
2922 */
2923static inline char *fmt_multiple_name(struct device *dev,
2924 struct snd_soc_dai_driver *dai_drv)
2925{
2926 if (dai_drv->name == NULL) {
2927 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
2928 dev_name(dev));
2929 return NULL;
2930 }
2931
2932 return kstrdup(dai_drv->name, GFP_KERNEL);
2933}
2934
Mark Brown91151712008-11-30 23:31:24 +00002935/**
2936 * snd_soc_register_dai - Register a DAI with the ASoC core
2937 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002938 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00002939 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002940int snd_soc_register_dai(struct device *dev,
2941 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00002942{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002943 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00002944
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002945 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00002946
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002947 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
2948 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08002949 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08002950
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002951 /* create DAI component name */
2952 dai->name = fmt_single_name(dev, &dai->id);
2953 if (dai->name == NULL) {
2954 kfree(dai);
2955 return -ENOMEM;
2956 }
2957
2958 dai->dev = dev;
2959 dai->driver = dai_drv;
2960 if (!dai->driver->ops)
2961 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00002962
2963 mutex_lock(&client_mutex);
2964 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002965 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00002966 mutex_unlock(&client_mutex);
2967
2968 pr_debug("Registered DAI '%s'\n", dai->name);
2969
2970 return 0;
2971}
2972EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2973
2974/**
2975 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2976 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002977 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00002978 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002979void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00002980{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002981 struct snd_soc_dai *dai;
2982
2983 list_for_each_entry(dai, &dai_list, list) {
2984 if (dev == dai->dev)
2985 goto found;
2986 }
2987 return;
2988
2989found:
Mark Brown91151712008-11-30 23:31:24 +00002990 mutex_lock(&client_mutex);
2991 list_del(&dai->list);
2992 mutex_unlock(&client_mutex);
2993
2994 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002995 kfree(dai->name);
2996 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00002997}
2998EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2999
3000/**
3001 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3002 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003003 * @dai: Array of DAIs to register
3004 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003005 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003006int snd_soc_register_dais(struct device *dev,
3007 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003008{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003009 struct snd_soc_dai *dai;
3010 int i, ret = 0;
3011
Liam Girdwood720ffa42010-08-18 00:30:30 +01003012 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003013
3014 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003015
3016 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003017 if (dai == NULL) {
3018 ret = -ENOMEM;
3019 goto err;
3020 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003021
3022 /* create DAI component name */
3023 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3024 if (dai->name == NULL) {
3025 kfree(dai);
3026 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003027 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003028 }
3029
3030 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003031 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003032 if (dai->driver->id)
3033 dai->id = dai->driver->id;
3034 else
3035 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003036 if (!dai->driver->ops)
3037 dai->driver->ops = &null_dai_ops;
3038
3039 mutex_lock(&client_mutex);
3040 list_add(&dai->list, &dai_list);
3041 mutex_unlock(&client_mutex);
3042
3043 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003044 }
3045
Axel Lin1dcb4f32010-12-06 16:48:03 +08003046 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003047 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003048 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003049 return 0;
3050
3051err:
3052 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003053 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003054
3055 return ret;
3056}
3057EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3058
3059/**
3060 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3061 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003062 * @dai: Array of DAIs to unregister
3063 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003064 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003065void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003066{
3067 int i;
3068
3069 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003070 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003071}
3072EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3073
Mark Brown12a48a8c2008-12-03 19:40:30 +00003074/**
3075 * snd_soc_register_platform - Register a platform with the ASoC core
3076 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003077 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003078 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003079int snd_soc_register_platform(struct device *dev,
3080 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003081{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003082 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003083
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003084 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3085
3086 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3087 if (platform == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003088 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003089
3090 /* create platform component name */
3091 platform->name = fmt_single_name(dev, &platform->id);
3092 if (platform->name == NULL) {
3093 kfree(platform);
3094 return -ENOMEM;
3095 }
3096
3097 platform->dev = dev;
3098 platform->driver = platform_drv;
Liam Girdwoodb7950642011-07-04 22:10:52 +01003099 platform->dapm.dev = dev;
3100 platform->dapm.platform = platform;
Liam Girdwood64a648c2011-07-25 11:15:15 +01003101 platform->dapm.stream_event = platform_drv->stream_event;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003102
3103 mutex_lock(&client_mutex);
3104 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003105 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003106 mutex_unlock(&client_mutex);
3107
3108 pr_debug("Registered platform '%s'\n", platform->name);
3109
3110 return 0;
3111}
3112EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3113
3114/**
3115 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3116 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003117 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003118 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003119void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003120{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003121 struct snd_soc_platform *platform;
3122
3123 list_for_each_entry(platform, &platform_list, list) {
3124 if (dev == platform->dev)
3125 goto found;
3126 }
3127 return;
3128
3129found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003130 mutex_lock(&client_mutex);
3131 list_del(&platform->list);
3132 mutex_unlock(&client_mutex);
3133
3134 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003135 kfree(platform->name);
3136 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003137}
3138EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3139
Mark Brown151ab222009-05-09 16:22:58 +01003140static u64 codec_format_map[] = {
3141 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3142 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3143 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3144 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3145 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3146 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3147 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3148 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3149 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3150 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3151 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3152 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3153 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3154 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3155 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3156 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3157};
3158
3159/* Fix up the DAI formats for endianness: codecs don't actually see
3160 * the endianness of the data but we're using the CPU format
3161 * definitions which do need to include endianness so we ensure that
3162 * codec DAIs always have both big and little endian variants set.
3163 */
3164static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3165{
3166 int i;
3167
3168 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3169 if (stream->formats & codec_format_map[i])
3170 stream->formats |= codec_format_map[i];
3171}
3172
Mark Brown0d0cf002008-12-10 14:32:45 +00003173/**
3174 * snd_soc_register_codec - Register a codec with the ASoC core
3175 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003176 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003177 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003178int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003179 const struct snd_soc_codec_driver *codec_drv,
3180 struct snd_soc_dai_driver *dai_drv,
3181 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003182{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003183 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003184 struct snd_soc_codec *codec;
3185 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003186
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003187 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003188
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003189 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3190 if (codec == NULL)
3191 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003192
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003193 /* create CODEC component name */
3194 codec->name = fmt_single_name(dev, &codec->id);
3195 if (codec->name == NULL) {
3196 kfree(codec);
3197 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003198 }
3199
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003200 if (codec_drv->compress_type)
3201 codec->compress_type = codec_drv->compress_type;
3202 else
3203 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3204
Mark Brownc3acec22010-12-02 16:15:29 +00003205 codec->write = codec_drv->write;
3206 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003207 codec->volatile_register = codec_drv->volatile_register;
3208 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003209 codec->writable_register = codec_drv->writable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003210 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3211 codec->dapm.dev = dev;
3212 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003213 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwood64a648c2011-07-25 11:15:15 +01003214 codec->dapm.stream_event = codec_drv->stream_event;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003215 codec->dev = dev;
3216 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003217 codec->num_dai = num_dai;
3218 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003219
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003220 /* allocate CODEC register cache */
3221 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003222 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003223 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003224 /* it is necessary to make a copy of the default register cache
3225 * because in the case of using a compression type that requires
3226 * the default register cache to be marked as __devinitconst the
3227 * kernel might have freed the array by the time we initialize
3228 * the cache.
3229 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003230 if (codec_drv->reg_cache_default) {
3231 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3232 reg_size, GFP_KERNEL);
3233 if (!codec->reg_def_copy) {
3234 ret = -ENOMEM;
3235 goto fail;
3236 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003237 }
3238 }
3239
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003240 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3241 if (!codec->volatile_register)
3242 codec->volatile_register = snd_soc_default_volatile_register;
3243 if (!codec->readable_register)
3244 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003245 if (!codec->writable_register)
3246 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003247 }
3248
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003249 for (i = 0; i < num_dai; i++) {
3250 fixup_codec_formats(&dai_drv[i].playback);
3251 fixup_codec_formats(&dai_drv[i].capture);
3252 }
3253
Mark Brown26b01cc2010-08-18 20:20:55 +01003254 /* register any DAIs */
3255 if (num_dai) {
3256 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3257 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003258 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003259 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003260
Mark Brown0d0cf002008-12-10 14:32:45 +00003261 mutex_lock(&client_mutex);
3262 list_add(&codec->list, &codec_list);
3263 snd_soc_instantiate_cards();
3264 mutex_unlock(&client_mutex);
3265
3266 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003267 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003268
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003269fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003270 kfree(codec->reg_def_copy);
3271 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003272 kfree(codec->name);
3273 kfree(codec);
3274 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003275}
3276EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3277
3278/**
3279 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3280 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003281 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003282 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003283void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003284{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003285 struct snd_soc_codec *codec;
3286 int i;
3287
3288 list_for_each_entry(codec, &codec_list, list) {
3289 if (dev == codec->dev)
3290 goto found;
3291 }
3292 return;
3293
3294found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003295 if (codec->num_dai)
3296 for (i = 0; i < codec->num_dai; i++)
3297 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003298
Mark Brown0d0cf002008-12-10 14:32:45 +00003299 mutex_lock(&client_mutex);
3300 list_del(&codec->list);
3301 mutex_unlock(&client_mutex);
3302
3303 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003304
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003305 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003306 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003307 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003308 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003309}
3310EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3311
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003312static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003313{
Mark Brown384c89e2008-12-03 17:34:03 +00003314#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003315 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3316 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003317 printk(KERN_WARNING
3318 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003319 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003320 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003321
Mark Brown8a9dab12011-01-10 22:25:21 +00003322 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003323 &codec_list_fops))
3324 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3325
Mark Brown8a9dab12011-01-10 22:25:21 +00003326 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003327 &dai_list_fops))
3328 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003329
Mark Brown8a9dab12011-01-10 22:25:21 +00003330 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003331 &platform_list_fops))
3332 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003333#endif
3334
Mark Brownfb257892011-04-28 10:57:54 +01003335 snd_soc_util_init();
3336
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003337 return platform_driver_register(&soc_driver);
3338}
Mark Brown4abe8e12010-10-12 17:41:03 +01003339module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003340
Mark Brown7d8c16a2008-11-30 22:11:24 +00003341static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003342{
Mark Brownfb257892011-04-28 10:57:54 +01003343 snd_soc_util_exit();
3344
Mark Brown384c89e2008-12-03 17:34:03 +00003345#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003346 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003347#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003348 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003349}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003350module_exit(snd_soc_exit);
3351
3352/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003353MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003354MODULE_DESCRIPTION("ALSA SoC Core");
3355MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003356MODULE_ALIAS("platform:soc-audio");