blob: e44267f662166b86bfbfe2e01f77283cb6ec4ac4 [file] [log] [blame]
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001/*
2 * soc-core.c -- ALSA SoC Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwood0664d882006-12-18 14:39:02 +01005 * Copyright 2005 Openedhand Ltd.
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00006 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
Liam Girdwood0664d882006-12-18 14:39:02 +01008 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01009 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +010010 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020012 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020018 * TODO:
19 * o Add hw rules to enforce rates, etc.
20 * o More testing with other codecs/machines.
21 * o Add more codecs and platforms to ensure good API coverage.
22 * o Support TDM on PCM and I2S
23 */
24
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/pm.h>
30#include <linux/bitops.h>
Troy Kisky12ef1932008-10-13 17:42:14 -070031#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020032#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Marek Vasut474828a2009-07-22 13:01:03 +020034#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020035#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000036#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020037#include <sound/pcm.h>
38#include <sound/pcm_params.h>
39#include <sound/soc.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040#include <sound/initval.h>
41
Mark Browna8b1d342010-11-03 18:05:58 -040042#define CREATE_TRACE_POINTS
43#include <trace/events/asoc.h>
44
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000045#define NAME_SIZE 32
46
Frank Mandarinodb2a4162006-10-06 18:31:09 +020047static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
48
Mark Brown384c89e2008-12-03 17:34:03 +000049#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000050struct dentry *snd_soc_debugfs_root;
51EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000052#endif
53
Mark Brownc5af3a22008-11-28 13:29:45 +000054static DEFINE_MUTEX(client_mutex);
55static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000056static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000057static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000058static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000059
Liam Girdwoodddee6272011-06-09 14:45:53 +010060int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
Mark Brownc5af3a22008-11-28 13:29:45 +000061
Frank Mandarinodb2a4162006-10-06 18:31:09 +020062/*
63 * This is a timeout to do a DAPM powerdown after a stream is closed().
64 * It can be used to eliminate pops between different playback streams, e.g.
65 * between two audio tracks.
66 */
67static int pmdown_time = 5000;
68module_param(pmdown_time, int, 0);
69MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
70
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000071/* returns the minimum number of bytes needed to represent
72 * a particular given value */
73static int min_bytes_needed(unsigned long val)
74{
75 int c = 0;
76 int i;
77
78 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
79 if (val & (1UL << i))
80 break;
81 c = (sizeof val * 8) - c;
82 if (!c || (c % 8))
83 c = (c + 8) / 8;
84 else
85 c /= 8;
86 return c;
87}
88
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000089/* fill buf which is 'len' bytes with a formatted
90 * string of the form 'reg: value\n' */
91static int format_register_str(struct snd_soc_codec *codec,
92 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +000093{
Stephen Warren00b317a2011-04-01 14:50:44 -060094 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
95 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000096 int ret;
97 char tmpbuf[len + 1];
98 char regbuf[regsize + 1];
99
100 /* since tmpbuf is allocated on the stack, warn the callers if they
101 * try to abuse this function */
102 WARN_ON(len > 63);
103
104 /* +2 for ': ' and + 1 for '\n' */
105 if (wordsize + regsize + 2 + 1 != len)
106 return -EINVAL;
107
108 ret = snd_soc_read(codec , reg);
109 if (ret < 0) {
110 memset(regbuf, 'X', regsize);
111 regbuf[regsize] = '\0';
112 } else {
113 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
114 }
115
116 /* prepare the buffer */
117 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
118 /* copy it back to the caller without the '\0' */
119 memcpy(buf, tmpbuf, len);
120
121 return 0;
122}
123
124/* codec register dump */
125static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
126 size_t count, loff_t pos)
127{
128 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000129 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000130 int len;
131 size_t total = 0;
132 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000133
Stephen Warren00b317a2011-04-01 14:50:44 -0600134 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
135 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000136
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000137 len = wordsize + regsize + 2 + 1;
138
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000139 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000140 return 0;
141
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000142 if (codec->driver->reg_cache_step)
143 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000144
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000145 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +0000146 if (codec->readable_register && !codec->readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +0000147 continue;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000148 if (codec->driver->display_register) {
149 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +0000150 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +0100151 } else {
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000152 /* only support larger than PAGE_SIZE bytes debugfs
153 * entries for the default case */
154 if (p >= pos) {
155 if (total + len >= count - 1)
156 break;
157 format_register_str(codec, i, buf + total, len);
158 total += len;
159 }
160 p += len;
Mark Brown5164d742010-07-14 16:14:33 +0100161 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000162 }
163
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000164 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000165
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000166 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000167}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000168
Mark Brown2624d5f2009-11-03 21:56:13 +0000169static ssize_t codec_reg_show(struct device *dev,
170 struct device_attribute *attr, char *buf)
171{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000172 struct snd_soc_pcm_runtime *rtd =
173 container_of(dev, struct snd_soc_pcm_runtime, dev);
174
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000175 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000176}
177
178static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
179
Mark Browndbe21402010-02-12 11:37:24 +0000180static ssize_t pmdown_time_show(struct device *dev,
181 struct device_attribute *attr, char *buf)
182{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000183 struct snd_soc_pcm_runtime *rtd =
184 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Browndbe21402010-02-12 11:37:24 +0000185
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000186 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000187}
188
189static ssize_t pmdown_time_set(struct device *dev,
190 struct device_attribute *attr,
191 const char *buf, size_t count)
192{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000193 struct snd_soc_pcm_runtime *rtd =
194 container_of(dev, struct snd_soc_pcm_runtime, dev);
Mark Brownc593b522010-10-27 20:11:17 -0700195 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000196
Mark Brownc593b522010-10-27 20:11:17 -0700197 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
198 if (ret)
199 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000200
201 return count;
202}
203
204static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
205
Mark Brown2624d5f2009-11-03 21:56:13 +0000206#ifdef CONFIG_DEBUG_FS
207static int codec_reg_open_file(struct inode *inode, struct file *file)
208{
209 file->private_data = inode->i_private;
210 return 0;
211}
212
213static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000214 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000215{
216 ssize_t ret;
217 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000218 char *buf;
219
220 if (*ppos < 0 || !count)
221 return -EINVAL;
222
223 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000224 if (!buf)
225 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000226
227 ret = soc_codec_reg_show(codec, buf, count, *ppos);
228 if (ret >= 0) {
229 if (copy_to_user(user_buf, buf, ret)) {
230 kfree(buf);
231 return -EFAULT;
232 }
233 *ppos += ret;
234 }
235
Mark Brown2624d5f2009-11-03 21:56:13 +0000236 kfree(buf);
237 return ret;
238}
239
240static ssize_t codec_reg_write_file(struct file *file,
241 const char __user *user_buf, size_t count, loff_t *ppos)
242{
243 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700244 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000245 char *start = buf;
246 unsigned long reg, value;
247 int step = 1;
248 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
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000255 if (codec->driver->reg_cache_step)
256 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000257
258 while (*start == ' ')
259 start++;
260 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000261 while (*start == ' ')
262 start++;
263 if (strict_strtoul(start, 16, &value))
264 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000265
266 /* Userspace has been fiddling around behind the kernel's back */
267 add_taint(TAINT_USER);
268
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000269 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000270 return buf_size;
271}
272
273static const struct file_operations codec_reg_fops = {
274 .open = codec_reg_open_file,
275 .read = codec_reg_read_file,
276 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200277 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000278};
279
280static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
281{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200282 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
283
284 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
285 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000286 if (!codec->debugfs_codec_root) {
287 printk(KERN_WARNING
288 "ASoC: Failed to create codec debugfs directory\n");
289 return;
290 }
291
Mark Brownaaee8ef2011-01-26 20:53:50 +0000292 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
293 &codec->cache_sync);
294 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
295 &codec->cache_only);
296
Mark Brown2624d5f2009-11-03 21:56:13 +0000297 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
298 codec->debugfs_codec_root,
299 codec, &codec_reg_fops);
300 if (!codec->debugfs_reg)
301 printk(KERN_WARNING
302 "ASoC: Failed to create codec register debugfs file\n");
303
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200304 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000305}
306
307static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
308{
309 debugfs_remove_recursive(codec->debugfs_codec_root);
310}
311
Mark Brownc3c5a192010-09-15 18:15:14 +0100312static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
313 size_t count, loff_t *ppos)
314{
315 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100316 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100317 struct snd_soc_codec *codec;
318
319 if (!buf)
320 return -ENOMEM;
321
Mark Brown2b194f9d2010-10-13 10:52:16 +0100322 list_for_each_entry(codec, &codec_list, list) {
323 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
324 codec->name);
325 if (len >= 0)
326 ret += len;
327 if (ret > PAGE_SIZE) {
328 ret = PAGE_SIZE;
329 break;
330 }
331 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100332
333 if (ret >= 0)
334 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
335
336 kfree(buf);
337
338 return ret;
339}
340
341static const struct file_operations codec_list_fops = {
342 .read = codec_list_read_file,
343 .llseek = default_llseek,/* read accesses f_pos */
344};
345
Mark Brownf3208782010-09-15 18:19:07 +0100346static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
347 size_t count, loff_t *ppos)
348{
349 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100350 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100351 struct snd_soc_dai *dai;
352
353 if (!buf)
354 return -ENOMEM;
355
Mark Brown2b194f9d2010-10-13 10:52:16 +0100356 list_for_each_entry(dai, &dai_list, list) {
357 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
358 if (len >= 0)
359 ret += len;
360 if (ret > PAGE_SIZE) {
361 ret = PAGE_SIZE;
362 break;
363 }
364 }
Mark Brownf3208782010-09-15 18:19:07 +0100365
Mark Brown2b194f9d2010-10-13 10:52:16 +0100366 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100367
368 kfree(buf);
369
370 return ret;
371}
372
373static const struct file_operations dai_list_fops = {
374 .read = dai_list_read_file,
375 .llseek = default_llseek,/* read accesses f_pos */
376};
377
Mark Brown19c7ac22010-09-15 18:22:40 +0100378static ssize_t platform_list_read_file(struct file *file,
379 char __user *user_buf,
380 size_t count, loff_t *ppos)
381{
382 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100383 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100384 struct snd_soc_platform *platform;
385
386 if (!buf)
387 return -ENOMEM;
388
Mark Brown2b194f9d2010-10-13 10:52:16 +0100389 list_for_each_entry(platform, &platform_list, list) {
390 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
391 platform->name);
392 if (len >= 0)
393 ret += len;
394 if (ret > PAGE_SIZE) {
395 ret = PAGE_SIZE;
396 break;
397 }
398 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100399
Mark Brown2b194f9d2010-10-13 10:52:16 +0100400 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100401
402 kfree(buf);
403
404 return ret;
405}
406
407static const struct file_operations platform_list_fops = {
408 .read = platform_list_read_file,
409 .llseek = default_llseek,/* read accesses f_pos */
410};
411
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200412static void soc_init_card_debugfs(struct snd_soc_card *card)
413{
414 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000415 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200416 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200417 dev_warn(card->dev,
418 "ASoC: Failed to create codec debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200419 return;
420 }
421
422 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
423 card->debugfs_card_root,
424 &card->pop_time);
425 if (!card->debugfs_pop_time)
426 dev_warn(card->dev,
427 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200428}
429
430static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
431{
432 debugfs_remove_recursive(card->debugfs_card_root);
433}
434
Mark Brown2624d5f2009-11-03 21:56:13 +0000435#else
436
437static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
438{
439}
440
441static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
442{
443}
Axel Linb95fccb2010-11-09 17:06:44 +0800444
445static inline void soc_init_card_debugfs(struct snd_soc_card *card)
446{
447}
448
449static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
450{
451}
Mark Brown2624d5f2009-11-03 21:56:13 +0000452#endif
453
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200454#ifdef CONFIG_SND_SOC_AC97_BUS
455/* unregister ac97 codec */
456static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
457{
458 if (codec->ac97->dev.bus)
459 device_unregister(&codec->ac97->dev);
460 return 0;
461}
462
463/* stop no dev release warning */
464static void soc_ac97_device_release(struct device *dev){}
465
466/* register ac97 codec to bus */
467static int soc_ac97_dev_register(struct snd_soc_codec *codec)
468{
469 int err;
470
471 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100472 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200473 codec->ac97->dev.release = soc_ac97_device_release;
474
Kay Sieversbb072bf2008-11-02 03:50:35 +0100475 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000476 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200477 err = device_register(&codec->ac97->dev);
478 if (err < 0) {
479 snd_printk(KERN_ERR "Can't register ac97 bus\n");
480 codec->ac97->dev.bus = NULL;
481 return err;
482 }
483 return 0;
484}
485#endif
486
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000487#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200488/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000489int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200490{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000491 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200492 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200493 int i;
494
Daniel Macke3509ff2009-06-03 17:44:49 +0200495 /* If the initialization of this soc device failed, there is no codec
496 * associated with it. Just bail out in this case.
497 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000498 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200499 return 0;
500
Andy Green6ed25972008-06-13 16:24:05 +0100501 /* Due to the resume being scheduled into a workqueue we could
502 * suspend before that's finished - wait for it to complete.
503 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000504 snd_power_lock(card->snd_card);
505 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
506 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100507
508 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000509 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100510
Mark Browna00f90f2010-12-02 16:24:24 +0000511 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000512 for (i = 0; i < card->num_rtd; i++) {
513 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
514 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100515
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000516 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100517 continue;
518
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000519 if (drv->ops->digital_mute && dai->playback_active)
520 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200521 }
522
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100523 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000524 for (i = 0; i < card->num_rtd; i++) {
525 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100526 continue;
527
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000528 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100529 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100530
Mark Brown87506542008-11-18 20:50:34 +0000531 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000532 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200533
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000534 for (i = 0; i < card->num_rtd; i++) {
535 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
536 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100537
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000538 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100539 continue;
540
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000541 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
542 cpu_dai->driver->suspend(cpu_dai);
543 if (platform->driver->suspend && !platform->suspended) {
544 platform->driver->suspend(cpu_dai);
545 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100546 }
547 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200548
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000549 /* close any waiting streams and save state */
550 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +0100551 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200552 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000553 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100554
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000555 for (i = 0; i < card->num_rtd; i++) {
556 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
557
558 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100559 continue;
560
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000561 if (driver->playback.stream_name != NULL)
562 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
563 SND_SOC_DAPM_STREAM_SUSPEND);
564
565 if (driver->capture.stream_name != NULL)
566 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
567 SND_SOC_DAPM_STREAM_SUSPEND);
568 }
569
570 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200571 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000572 /* If there are paths active then the CODEC will be held with
573 * bias _ON and should not be suspended. */
574 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200575 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000576 case SND_SOC_BIAS_STANDBY:
577 case SND_SOC_BIAS_OFF:
578 codec->driver->suspend(codec, PMSG_SUSPEND);
579 codec->suspended = 1;
580 break;
581 default:
582 dev_dbg(codec->dev, "CODEC is on over suspend\n");
583 break;
584 }
585 }
586 }
587
588 for (i = 0; i < card->num_rtd; i++) {
589 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
590
591 if (card->rtd[i].dai_link->ignore_suspend)
592 continue;
593
594 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
595 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200596 }
597
Mark Brown87506542008-11-18 20:50:34 +0000598 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000599 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200600
601 return 0;
602}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000603EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200604
Andy Green6ed25972008-06-13 16:24:05 +0100605/* deferred resume work, so resume can complete before we finished
606 * setting our codec back up, which can be very slow on I2C
607 */
608static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200609{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000610 struct snd_soc_card *card =
611 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200612 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200613 int i;
614
Andy Green6ed25972008-06-13 16:24:05 +0100615 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
616 * so userspace apps are blocked from touching us
617 */
618
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000619 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100620
Mark Brown99497882010-05-07 20:24:05 +0100621 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000622 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100623
Mark Brown87506542008-11-18 20:50:34 +0000624 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000625 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200626
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000627 /* resume AC97 DAIs */
628 for (i = 0; i < card->num_rtd; i++) {
629 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100630
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000631 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100632 continue;
633
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000634 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
635 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200636 }
637
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200638 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000639 /* If the CODEC was idle over suspend then it will have been
640 * left with bias OFF or STANDBY and suspended so we must now
641 * resume. Otherwise the suspend was suppressed.
642 */
643 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200644 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000645 case SND_SOC_BIAS_STANDBY:
646 case SND_SOC_BIAS_OFF:
647 codec->driver->resume(codec);
648 codec->suspended = 0;
649 break;
650 default:
651 dev_dbg(codec->dev, "CODEC was on over suspend\n");
652 break;
653 }
Mark Brown1547aba2010-05-07 21:11:40 +0100654 }
655 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200656
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000657 for (i = 0; i < card->num_rtd; i++) {
658 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100659
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000660 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100661 continue;
662
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000663 if (driver->playback.stream_name != NULL)
664 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200665 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000666
667 if (driver->capture.stream_name != NULL)
668 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200669 SND_SOC_DAPM_STREAM_RESUME);
670 }
671
Mark Brown3ff3f642008-05-19 12:32:25 +0200672 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000673 for (i = 0; i < card->num_rtd; i++) {
674 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
675 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100676
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000677 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100678 continue;
679
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000680 if (drv->ops->digital_mute && dai->playback_active)
681 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200682 }
683
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000684 for (i = 0; i < card->num_rtd; i++) {
685 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
686 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100687
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000688 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100689 continue;
690
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000691 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
692 cpu_dai->driver->resume(cpu_dai);
693 if (platform->driver->resume && platform->suspended) {
694 platform->driver->resume(cpu_dai);
695 platform->suspended = 0;
696 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200697 }
698
Mark Brown87506542008-11-18 20:50:34 +0000699 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000700 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200701
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000702 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100703
704 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000705 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +0100706}
707
708/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000709int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100710{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000711 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600712 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200713
Mark Brown64ab9ba2009-03-31 11:27:03 +0100714 /* AC97 devices might have other drivers hanging off them so
715 * need to resume immediately. Other drivers don't have that
716 * problem and may take a substantial amount of time to resume
717 * due to I/O costs and anti-pop so handle them out of line.
718 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000719 for (i = 0; i < card->num_rtd; i++) {
720 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600721 ac97_control |= cpu_dai->driver->ac97_control;
722 }
723 if (ac97_control) {
724 dev_dbg(dev, "Resuming AC97 immediately\n");
725 soc_resume_deferred(&card->deferred_resume_work);
726 } else {
727 dev_dbg(dev, "Scheduling resume work\n");
728 if (!schedule_work(&card->deferred_resume_work))
729 dev_err(dev, "resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100730 }
Andy Green6ed25972008-06-13 16:24:05 +0100731
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200732 return 0;
733}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000734EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200735#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000736#define snd_soc_suspend NULL
737#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200738#endif
739
Barry Song02a06d32009-10-16 18:13:38 +0800740static struct snd_soc_dai_ops null_dai_ops = {
741};
742
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000743static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200744{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000745 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
746 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +0000747 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000748 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000749 struct snd_soc_dai *codec_dai, *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100750 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200751
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000752 if (rtd->complete)
753 return 1;
754 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000755
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000756 /* do we already have the CPU DAI for this link ? */
757 if (rtd->cpu_dai) {
758 goto find_codec;
759 }
760 /* no, then find CPU DAI from registered DAIs*/
761 list_for_each_entry(cpu_dai, &dai_list, list) {
762 if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000763 rtd->cpu_dai = cpu_dai;
764 goto find_codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000765 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000766 }
767 dev_dbg(card->dev, "CPU DAI %s not registered\n",
768 dai_link->cpu_dai_name);
769
770find_codec:
771 /* do we already have the CODEC for this link ? */
772 if (rtd->codec) {
773 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +0000774 }
775
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000776 /* no, then find CODEC from registered CODECs*/
777 list_for_each_entry(codec, &codec_list, list) {
778 if (!strcmp(codec->name, dai_link->codec_name)) {
779 rtd->codec = codec;
Mark Brown6b05eda2008-12-08 19:26:48 +0000780
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000781 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
782 list_for_each_entry(codec_dai, &dai_list, list) {
783 if (codec->dev == codec_dai->dev &&
784 !strcmp(codec_dai->name, dai_link->codec_dai_name)) {
785 rtd->codec_dai = codec_dai;
786 goto find_platform;
Mark Brown6b05eda2008-12-08 19:26:48 +0000787 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000788 }
789 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
790 dai_link->codec_dai_name);
791
792 goto find_platform;
793 }
794 }
795 dev_dbg(card->dev, "CODEC %s not registered\n",
796 dai_link->codec_name);
797
798find_platform:
Mark Brown848dd8b2011-04-27 18:16:32 +0100799 /* do we need a platform? */
800 if (rtd->platform)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000801 goto out;
Mark Brown848dd8b2011-04-27 18:16:32 +0100802
803 /* if there's no platform we match on the empty platform */
804 platform_name = dai_link->platform_name;
805 if (!platform_name)
806 platform_name = "snd-soc-dummy";
807
808 /* no, then find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000809 list_for_each_entry(platform, &platform_list, list) {
Mark Brown848dd8b2011-04-27 18:16:32 +0100810 if (!strcmp(platform->name, platform_name)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000811 rtd->platform = platform;
812 goto out;
813 }
814 }
815
816 dev_dbg(card->dev, "platform %s not registered\n",
817 dai_link->platform_name);
818 return 0;
819
820out:
821 /* mark rtd as complete if we found all 4 of our client devices */
822 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
823 rtd->complete = 1;
824 card->num_rtd++;
825 }
826 return 1;
827}
828
Jarkko Nikula589c3562010-12-06 16:27:07 +0200829static void soc_remove_codec(struct snd_soc_codec *codec)
830{
831 int err;
832
833 if (codec->driver->remove) {
834 err = codec->driver->remove(codec);
835 if (err < 0)
836 dev_err(codec->dev,
837 "asoc: failed to remove %s: %d\n",
838 codec->name, err);
839 }
840
841 /* Make sure all DAPM widgets are freed */
842 snd_soc_dapm_free(&codec->dapm);
843
844 soc_cleanup_codec_debugfs(codec);
845 codec->probed = 0;
846 list_del(&codec->card_list);
847 module_put(codec->dev->driver->owner);
848}
849
Liam Girdwood0168bf02011-06-07 16:08:05 +0100850static void soc_remove_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000851{
852 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
853 struct snd_soc_codec *codec = rtd->codec;
854 struct snd_soc_platform *platform = rtd->platform;
855 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
856 int err;
857
858 /* unregister the rtd device */
859 if (rtd->dev_registered) {
860 device_remove_file(&rtd->dev, &dev_attr_pmdown_time);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200861 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000862 device_unregister(&rtd->dev);
863 rtd->dev_registered = 0;
864 }
865
866 /* remove the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100867 if (codec_dai && codec_dai->probed &&
868 codec_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000869 if (codec_dai->driver->remove) {
870 err = codec_dai->driver->remove(codec_dai);
871 if (err < 0)
872 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
873 }
874 codec_dai->probed = 0;
875 list_del(&codec_dai->card_list);
876 }
877
878 /* remove the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100879 if (platform && platform->probed &&
880 platform->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000881 if (platform->driver->remove) {
882 err = platform->driver->remove(platform);
883 if (err < 0)
884 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
885 }
886 platform->probed = 0;
887 list_del(&platform->card_list);
888 module_put(platform->dev->driver->owner);
889 }
890
891 /* remove the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100892 if (codec && codec->probed &&
893 codec->driver->remove_order == order)
Jarkko Nikula589c3562010-12-06 16:27:07 +0200894 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000895
896 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100897 if (cpu_dai && cpu_dai->probed &&
898 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000899 if (cpu_dai->driver->remove) {
900 err = cpu_dai->driver->remove(cpu_dai);
901 if (err < 0)
902 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
903 }
904 cpu_dai->probed = 0;
905 list_del(&cpu_dai->card_list);
906 module_put(cpu_dai->dev->driver->owner);
907 }
908}
909
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900910static void soc_remove_dai_links(struct snd_soc_card *card)
911{
Liam Girdwood0168bf02011-06-07 16:08:05 +0100912 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900913
Liam Girdwood0168bf02011-06-07 16:08:05 +0100914 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
915 order++) {
916 for (dai = 0; dai < card->num_rtd; dai++)
917 soc_remove_dai_link(card, dai, order);
918 }
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900919 card->num_rtd = 0;
920}
921
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200922static void soc_set_name_prefix(struct snd_soc_card *card,
923 struct snd_soc_codec *codec)
924{
925 int i;
926
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000927 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200928 return;
929
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000930 for (i = 0; i < card->num_configs; i++) {
931 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200932 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
933 codec->name_prefix = map->name_prefix;
934 break;
935 }
936 }
937}
938
Jarkko Nikula589c3562010-12-06 16:27:07 +0200939static int soc_probe_codec(struct snd_soc_card *card,
940 struct snd_soc_codec *codec)
941{
942 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +0000943 const struct snd_soc_codec_driver *driver = codec->driver;
Jarkko Nikula589c3562010-12-06 16:27:07 +0200944
945 codec->card = card;
946 codec->dapm.card = card;
947 soc_set_name_prefix(card, codec);
948
Jarkko Nikula70d29332011-01-27 16:24:22 +0200949 if (!try_module_get(codec->dev->driver->owner))
950 return -ENODEV;
951
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +0200952 soc_init_codec_debugfs(codec);
953
Lars-Peter Clausen77530152011-05-05 16:59:09 +0200954 if (driver->dapm_widgets)
955 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
956 driver->num_dapm_widgets);
957
Mark Brown89b95ac02011-03-07 16:38:44 +0000958 if (driver->probe) {
959 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200960 if (ret < 0) {
961 dev_err(codec->dev,
962 "asoc: failed to probe CODEC %s: %d\n",
963 codec->name, ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +0200964 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +0200965 }
966 }
967
Mark Brownb7af1da2011-04-07 19:18:44 +0900968 if (driver->controls)
969 snd_soc_add_controls(codec, driver->controls,
970 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +0000971 if (driver->dapm_routes)
972 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
973 driver->num_dapm_routes);
974
Jarkko Nikula589c3562010-12-06 16:27:07 +0200975 /* mark codec as probed and add to card codec list */
976 codec->probed = 1;
977 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +0200978 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200979
Jarkko Nikula70d29332011-01-27 16:24:22 +0200980 return 0;
981
982err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +0200983 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +0200984 module_put(codec->dev->driver->owner);
985
Jarkko Nikula589c3562010-12-06 16:27:07 +0200986 return ret;
987}
988
Liam Girdwood956245e2011-07-01 16:54:08 +0100989static int soc_probe_platform(struct snd_soc_card *card,
990 struct snd_soc_platform *platform)
991{
992 int ret = 0;
993 const struct snd_soc_platform_driver *driver = platform->driver;
994
995 platform->card = card;
Liam Girdwoodb7950642011-07-04 22:10:52 +0100996 platform->dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +0100997
998 if (!try_module_get(platform->dev->driver->owner))
999 return -ENODEV;
1000
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001001 if (driver->dapm_widgets)
1002 snd_soc_dapm_new_controls(&platform->dapm,
1003 driver->dapm_widgets, driver->num_dapm_widgets);
1004
Liam Girdwood956245e2011-07-01 16:54:08 +01001005 if (driver->probe) {
1006 ret = driver->probe(platform);
1007 if (ret < 0) {
1008 dev_err(platform->dev,
1009 "asoc: failed to probe platform %s: %d\n",
1010 platform->name, ret);
1011 goto err_probe;
1012 }
1013 }
1014
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001015 if (driver->controls)
1016 snd_soc_add_platform_controls(platform, driver->controls,
1017 driver->num_controls);
1018 if (driver->dapm_routes)
1019 snd_soc_dapm_add_routes(&platform->dapm, driver->dapm_routes,
1020 driver->num_dapm_routes);
1021
Liam Girdwood956245e2011-07-01 16:54:08 +01001022 /* mark platform as probed and add to card platform list */
1023 platform->probed = 1;
1024 list_add(&platform->card_list, &card->platform_dev_list);
Liam Girdwoodb7950642011-07-04 22:10:52 +01001025 list_add(&platform->dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001026
1027 return 0;
1028
1029err_probe:
1030 module_put(platform->dev->driver->owner);
1031
1032 return ret;
1033}
1034
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001035static void rtd_release(struct device *dev) {}
1036
Jarkko Nikula589c3562010-12-06 16:27:07 +02001037static int soc_post_component_init(struct snd_soc_card *card,
1038 struct snd_soc_codec *codec,
1039 int num, int dailess)
1040{
1041 struct snd_soc_dai_link *dai_link = NULL;
1042 struct snd_soc_aux_dev *aux_dev = NULL;
1043 struct snd_soc_pcm_runtime *rtd;
1044 const char *temp, *name;
1045 int ret = 0;
1046
1047 if (!dailess) {
1048 dai_link = &card->dai_link[num];
1049 rtd = &card->rtd[num];
1050 name = dai_link->name;
1051 } else {
1052 aux_dev = &card->aux_dev[num];
1053 rtd = &card->rtd_aux[num];
1054 name = aux_dev->name;
1055 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001056 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001057
1058 /* machine controls, routes and widgets are not prefixed */
1059 temp = codec->name_prefix;
1060 codec->name_prefix = NULL;
1061
1062 /* do machine specific initialization */
1063 if (!dailess && dai_link->init)
1064 ret = dai_link->init(rtd);
1065 else if (dailess && aux_dev->init)
1066 ret = aux_dev->init(&codec->dapm);
1067 if (ret < 0) {
1068 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1069 return ret;
1070 }
1071 codec->name_prefix = temp;
1072
1073 /* Make sure all DAPM widgets are instantiated */
1074 snd_soc_dapm_new_widgets(&codec->dapm);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001075
1076 /* register the rtd device */
1077 rtd->codec = codec;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001078 rtd->dev.parent = card->dev;
1079 rtd->dev.release = rtd_release;
1080 rtd->dev.init_name = name;
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001081 mutex_init(&rtd->pcm_mutex);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001082 ret = device_register(&rtd->dev);
1083 if (ret < 0) {
1084 dev_err(card->dev,
1085 "asoc: failed to register runtime device: %d\n", ret);
1086 return ret;
1087 }
1088 rtd->dev_registered = 1;
1089
1090 /* add DAPM sysfs entries for this codec */
1091 ret = snd_soc_dapm_sys_add(&rtd->dev);
1092 if (ret < 0)
1093 dev_err(codec->dev,
1094 "asoc: failed to add codec dapm sysfs entries: %d\n",
1095 ret);
1096
1097 /* add codec sysfs entries */
1098 ret = device_create_file(&rtd->dev, &dev_attr_codec_reg);
1099 if (ret < 0)
1100 dev_err(codec->dev,
1101 "asoc: failed to add codec sysfs files: %d\n", ret);
1102
1103 return 0;
1104}
1105
Liam Girdwood0168bf02011-06-07 16:08:05 +01001106static int soc_probe_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001107{
1108 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1109 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1110 struct snd_soc_codec *codec = rtd->codec;
1111 struct snd_soc_platform *platform = rtd->platform;
1112 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1113 int ret;
1114
Liam Girdwood0168bf02011-06-07 16:08:05 +01001115 dev_dbg(card->dev, "probe %s dai link %d late %d\n",
1116 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001117
1118 /* config components */
1119 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001120 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001121 codec_dai->card = card;
1122 cpu_dai->card = card;
1123
1124 /* set default power off timeout */
1125 rtd->pmdown_time = pmdown_time;
1126
1127 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001128 if (!cpu_dai->probed &&
1129 cpu_dai->driver->probe_order == order) {
Liam Girdwood61b61e32011-05-24 13:57:43 +01001130 if (!try_module_get(cpu_dai->dev->driver->owner))
1131 return -ENODEV;
1132
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001133 if (cpu_dai->driver->probe) {
1134 ret = cpu_dai->driver->probe(cpu_dai);
1135 if (ret < 0) {
1136 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1137 cpu_dai->name);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001138 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001139 return ret;
1140 }
1141 }
1142 cpu_dai->probed = 1;
1143 /* mark cpu_dai as probed and add to card cpu_dai list */
1144 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1145 }
1146
1147 /* probe the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001148 if (!codec->probed &&
1149 codec->driver->probe_order == order) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001150 ret = soc_probe_codec(card, codec);
1151 if (ret < 0)
1152 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001153 }
1154
1155 /* probe the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001156 if (!platform->probed &&
1157 platform->driver->probe_order == order) {
Liam Girdwood956245e2011-07-01 16:54:08 +01001158 ret = soc_probe_platform(card, platform);
1159 if (ret < 0)
1160 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001161 }
1162
1163 /* probe the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001164 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001165 if (codec_dai->driver->probe) {
1166 ret = codec_dai->driver->probe(codec_dai);
1167 if (ret < 0) {
1168 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1169 codec_dai->name);
1170 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001171 }
1172 }
1173
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001174 /* mark cpu_dai as probed and add to card cpu_dai list */
1175 codec_dai->probed = 1;
1176 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001177 }
1178
Liam Girdwood0168bf02011-06-07 16:08:05 +01001179 /* complete DAI probe during last probe */
1180 if (order != SND_SOC_COMP_ORDER_LAST)
1181 return 0;
1182
Jarkko Nikula589c3562010-12-06 16:27:07 +02001183 ret = soc_post_component_init(card, codec, num, 0);
1184 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001185 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001186
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001187 ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time);
1188 if (ret < 0)
1189 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1190
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001191 /* create the pcm */
1192 ret = soc_new_pcm(rtd, num);
1193 if (ret < 0) {
1194 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1195 return ret;
1196 }
1197
1198 /* add platform data for AC97 devices */
1199 if (rtd->codec_dai->driver->ac97_control)
1200 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1201
1202 return 0;
1203}
1204
1205#ifdef CONFIG_SND_SOC_AC97_BUS
1206static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1207{
1208 int ret;
1209
1210 /* Only instantiate AC97 if not already done by the adaptor
1211 * for the generic AC97 subsystem.
1212 */
1213 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001214 /*
1215 * It is possible that the AC97 device is already registered to
1216 * the device subsystem. This happens when the device is created
1217 * via snd_ac97_mixer(). Currently only SoC codec that does so
1218 * is the generic AC97 glue but others migh emerge.
1219 *
1220 * In those cases we don't try to register the device again.
1221 */
1222 if (!rtd->codec->ac97_created)
1223 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001224
1225 ret = soc_ac97_dev_register(rtd->codec);
1226 if (ret < 0) {
1227 printk(KERN_ERR "asoc: AC97 device register failed\n");
1228 return ret;
1229 }
1230
1231 rtd->codec->ac97_registered = 1;
1232 }
1233 return 0;
1234}
1235
1236static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1237{
1238 if (codec->ac97_registered) {
1239 soc_ac97_dev_unregister(codec);
1240 codec->ac97_registered = 0;
1241 }
1242}
1243#endif
1244
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001245static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1246{
1247 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001248 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001249 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001250
1251 /* find CODEC from registered CODECs*/
1252 list_for_each_entry(codec, &codec_list, list) {
1253 if (!strcmp(codec->name, aux_dev->codec_name)) {
1254 if (codec->probed) {
1255 dev_err(codec->dev,
1256 "asoc: codec already probed");
1257 ret = -EBUSY;
1258 goto out;
1259 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001260 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001261 }
1262 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001263 /* codec not found */
1264 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1265 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001266
Jarkko Nikula676ad982010-12-03 09:18:22 +02001267found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001268 ret = soc_probe_codec(card, codec);
1269 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001270 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001271
Jarkko Nikula589c3562010-12-06 16:27:07 +02001272 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001273
1274out:
1275 return ret;
1276}
1277
1278static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1279{
1280 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1281 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001282
1283 /* unregister the rtd device */
1284 if (rtd->dev_registered) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001285 device_remove_file(&rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001286 device_unregister(&rtd->dev);
1287 rtd->dev_registered = 0;
1288 }
1289
Jarkko Nikula589c3562010-12-06 16:27:07 +02001290 if (codec && codec->probed)
1291 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001292}
1293
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001294static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1295 enum snd_soc_compress_type compress_type)
1296{
1297 int ret;
1298
1299 if (codec->cache_init)
1300 return 0;
1301
1302 /* override the compress_type if necessary */
1303 if (compress_type && codec->compress_type != compress_type)
1304 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001305 ret = snd_soc_cache_init(codec);
1306 if (ret < 0) {
1307 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1308 ret);
1309 return ret;
1310 }
1311 codec->cache_init = 1;
1312 return 0;
1313}
1314
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001315static void snd_soc_instantiate_card(struct snd_soc_card *card)
1316{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001317 struct snd_soc_codec *codec;
1318 struct snd_soc_codec_conf *codec_conf;
1319 enum snd_soc_compress_type compress_type;
Liam Girdwood0168bf02011-06-07 16:08:05 +01001320 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001321
1322 mutex_lock(&card->mutex);
1323
1324 if (card->instantiated) {
1325 mutex_unlock(&card->mutex);
1326 return;
1327 }
1328
1329 /* bind DAIs */
1330 for (i = 0; i < card->num_links; i++)
1331 soc_bind_dai_link(card, i);
1332
1333 /* bind completed ? */
1334 if (card->num_rtd != card->num_links) {
1335 mutex_unlock(&card->mutex);
1336 return;
1337 }
1338
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001339 /* initialize the register cache for each available codec */
1340 list_for_each_entry(codec, &codec_list, list) {
1341 if (codec->cache_init)
1342 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001343 /* by default we don't override the compress_type */
1344 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001345 /* check to see if we need to override the compress_type */
1346 for (i = 0; i < card->num_configs; ++i) {
1347 codec_conf = &card->codec_conf[i];
1348 if (!strcmp(codec->name, codec_conf->dev_name)) {
1349 compress_type = codec_conf->compress_type;
1350 if (compress_type && compress_type
1351 != codec->compress_type)
1352 break;
1353 }
1354 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001355 ret = snd_soc_init_codec_cache(codec, compress_type);
1356 if (ret < 0) {
1357 mutex_unlock(&card->mutex);
1358 return;
1359 }
1360 }
1361
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001362 /* card bind complete so register a sound card */
1363 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1364 card->owner, 0, &card->snd_card);
1365 if (ret < 0) {
1366 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1367 card->name);
1368 mutex_unlock(&card->mutex);
1369 return;
1370 }
1371 card->snd_card->dev = card->dev;
1372
Mark Browne37a4972011-03-02 18:21:57 +00001373 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1374 card->dapm.dev = card->dev;
1375 card->dapm.card = card;
1376 list_add(&card->dapm.list, &card->dapm_list);
1377
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001378#ifdef CONFIG_DEBUG_FS
1379 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1380#endif
1381
Mark Brown88ee1c62011-02-02 10:43:26 +00001382#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001383 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001384 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001385#endif
Andy Green6ed25972008-06-13 16:24:05 +01001386
Mark Brown9a841eb2011-04-12 17:51:37 -07001387 if (card->dapm_widgets)
1388 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1389 card->num_dapm_widgets);
1390
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001391 /* initialise the sound card only once */
1392 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001393 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001394 if (ret < 0)
1395 goto card_probe_error;
1396 }
1397
Liam Girdwood0168bf02011-06-07 16:08:05 +01001398 /* early DAI link probe */
1399 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1400 order++) {
1401 for (i = 0; i < card->num_links; i++) {
1402 ret = soc_probe_dai_link(card, i, order);
1403 if (ret < 0) {
1404 pr_err("asoc: failed to instantiate card %s: %d\n",
Mark Brown321de0d2010-09-21 15:09:37 +01001405 card->name, ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001406 goto probe_dai_err;
1407 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001408 }
1409 }
1410
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001411 for (i = 0; i < card->num_aux_devs; i++) {
1412 ret = soc_probe_aux_dev(card, i);
1413 if (ret < 0) {
1414 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1415 card->name, ret);
1416 goto probe_aux_dev_err;
1417 }
1418 }
1419
Mark Brownb7af1da2011-04-07 19:18:44 +09001420 /* We should have a non-codec control add function but we don't */
1421 if (card->controls)
1422 snd_soc_add_controls(list_first_entry(&card->codec_dev_list,
1423 struct snd_soc_codec,
1424 card_list),
1425 card->controls,
1426 card->num_controls);
1427
Mark Brownb8ad29d2011-03-02 18:35:51 +00001428 if (card->dapm_routes)
1429 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1430 card->num_dapm_routes);
1431
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001432 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001433 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001434 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1435 "%s", card->long_name ? card->long_name : card->name);
Takashi Iwai873bd4c2011-07-05 09:25:59 +02001436 if (card->driver_name)
1437 strlcpy(card->snd_card->driver, card->driver_name,
1438 sizeof(card->snd_card->driver));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001439
Mark Brown28e9ad92011-03-02 18:36:34 +00001440 if (card->late_probe) {
1441 ret = card->late_probe(card);
1442 if (ret < 0) {
1443 dev_err(card->dev, "%s late_probe() failed: %d\n",
1444 card->name, ret);
1445 goto probe_aux_dev_err;
1446 }
1447 }
1448
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001449 ret = snd_card_register(card->snd_card);
1450 if (ret < 0) {
1451 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001452 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001453 }
1454
1455#ifdef CONFIG_SND_SOC_AC97_BUS
1456 /* register any AC97 codecs */
1457 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001458 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1459 if (ret < 0) {
1460 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1461 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001462 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001463 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001464 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001465 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001466#endif
1467
Mark Brown435c5e22008-12-04 15:32:53 +00001468 card->instantiated = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001469 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001470 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001471
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001472probe_aux_dev_err:
1473 for (i = 0; i < card->num_aux_devs; i++)
1474 soc_remove_aux_dev(card, i);
1475
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001476probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001477 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001478
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001479card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001480 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001481 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001482
1483 snd_card_free(card->snd_card);
1484
1485 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001486}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001487
Mark Brown435c5e22008-12-04 15:32:53 +00001488/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001489 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001490 * client_mutex.
1491 */
1492static void snd_soc_instantiate_cards(void)
1493{
1494 struct snd_soc_card *card;
1495 list_for_each_entry(card, &card_list, list)
1496 snd_soc_instantiate_card(card);
1497}
1498
1499/* probes a new socdev */
1500static int soc_probe(struct platform_device *pdev)
1501{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001502 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001503 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001504
Vinod Koul70a7ca32011-01-14 19:22:48 +05301505 /*
1506 * no card, so machine driver should be registering card
1507 * we should not be here in that case so ret error
1508 */
1509 if (!card)
1510 return -EINVAL;
1511
Mark Brown435c5e22008-12-04 15:32:53 +00001512 /* Bodge while we unpick instantiation */
1513 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001514
Mark Brown435c5e22008-12-04 15:32:53 +00001515 ret = snd_soc_register_card(card);
1516 if (ret != 0) {
1517 dev_err(&pdev->dev, "Failed to register card\n");
1518 return ret;
1519 }
1520
1521 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001522}
1523
Vinod Koulb0e26482011-01-13 22:48:02 +05301524static int soc_cleanup_card_resources(struct snd_soc_card *card)
1525{
Vinod Koulb0e26482011-01-13 22:48:02 +05301526 int i;
1527
1528 /* make sure any delayed work runs */
1529 for (i = 0; i < card->num_rtd; i++) {
1530 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1531 flush_delayed_work_sync(&rtd->delayed_work);
1532 }
1533
1534 /* remove auxiliary devices */
1535 for (i = 0; i < card->num_aux_devs; i++)
1536 soc_remove_aux_dev(card, i);
1537
1538 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001539 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301540
1541 soc_cleanup_card_debugfs(card);
1542
1543 /* remove the card */
1544 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001545 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301546
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001547 snd_soc_dapm_free(&card->dapm);
1548
Vinod Koulb0e26482011-01-13 22:48:02 +05301549 kfree(card->rtd);
1550 snd_card_free(card->snd_card);
1551 return 0;
1552
1553}
1554
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001555/* removes a socdev */
1556static int soc_remove(struct platform_device *pdev)
1557{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001558 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001559
Mark Brownc5af3a22008-11-28 13:29:45 +00001560 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001561 return 0;
1562}
1563
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001564int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001565{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001566 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001567 int i;
Mark Brown51737472009-06-22 13:16:51 +01001568
1569 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001570 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001571
1572 /* Flush out pmdown_time work - we actually do want to run it
1573 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001574 for (i = 0; i < card->num_rtd; i++) {
1575 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01001576 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001577 }
Mark Brown51737472009-06-22 13:16:51 +01001578
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001579 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001580
1581 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001582}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001583EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001584
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001585const struct dev_pm_ops snd_soc_pm_ops = {
1586 .suspend = snd_soc_suspend,
1587 .resume = snd_soc_resume,
1588 .poweroff = snd_soc_poweroff,
Mark Brown416356f2009-06-30 19:05:15 +01001589};
Stephen Warrendeb26072011-04-05 19:35:30 -06001590EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001591
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001592/* ASoC platform driver */
1593static struct platform_driver soc_driver = {
1594 .driver = {
1595 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001596 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001597 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001598 },
1599 .probe = soc_probe,
1600 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001601};
1602
Mark Brown096e49d2009-07-05 15:12:22 +01001603/**
1604 * snd_soc_codec_volatile_register: Report if a register is volatile.
1605 *
1606 * @codec: CODEC to query.
1607 * @reg: Register to query.
1608 *
1609 * Boolean function indiciating if a CODEC register is volatile.
1610 */
Mark Brown181e0552011-01-24 14:05:25 +00001611int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1612 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01001613{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00001614 if (codec->volatile_register)
1615 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01001616 else
1617 return 0;
1618}
1619EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1620
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001621/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001622 * snd_soc_codec_readable_register: Report if a register is readable.
1623 *
1624 * @codec: CODEC to query.
1625 * @reg: Register to query.
1626 *
1627 * Boolean function indicating if a CODEC register is readable.
1628 */
1629int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
1630 unsigned int reg)
1631{
1632 if (codec->readable_register)
1633 return codec->readable_register(codec, reg);
1634 else
1635 return 0;
1636}
1637EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
1638
1639/**
1640 * snd_soc_codec_writable_register: Report if a register is writable.
1641 *
1642 * @codec: CODEC to query.
1643 * @reg: Register to query.
1644 *
1645 * Boolean function indicating if a CODEC register is writable.
1646 */
1647int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
1648 unsigned int reg)
1649{
1650 if (codec->writable_register)
1651 return codec->writable_register(codec, reg);
1652 else
1653 return 0;
1654}
1655EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
1656
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001657int snd_soc_platform_read(struct snd_soc_platform *platform,
1658 unsigned int reg)
1659{
1660 unsigned int ret;
1661
1662 if (!platform->driver->read) {
1663 dev_err(platform->dev, "platform has no read back\n");
1664 return -1;
1665 }
1666
1667 ret = platform->driver->read(platform, reg);
1668 dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001669 trace_snd_soc_preg_read(platform, reg, ret);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001670
1671 return ret;
1672}
1673EXPORT_SYMBOL_GPL(snd_soc_platform_read);
1674
1675int snd_soc_platform_write(struct snd_soc_platform *platform,
1676 unsigned int reg, unsigned int val)
1677{
1678 if (!platform->driver->write) {
1679 dev_err(platform->dev, "platform has no write back\n");
1680 return -1;
1681 }
1682
1683 dev_dbg(platform->dev, "write %x = %x\n", reg, val);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001684 trace_snd_soc_preg_write(platform, reg, val);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001685 return platform->driver->write(platform, reg, val);
1686}
1687EXPORT_SYMBOL_GPL(snd_soc_platform_write);
1688
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001689/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001690 * snd_soc_new_ac97_codec - initailise AC97 device
1691 * @codec: audio codec
1692 * @ops: AC97 bus operations
1693 * @num: AC97 codec number
1694 *
1695 * Initialises AC97 codec resources for use by ad-hoc devices only.
1696 */
1697int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1698 struct snd_ac97_bus_ops *ops, int num)
1699{
1700 mutex_lock(&codec->mutex);
1701
1702 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1703 if (codec->ac97 == NULL) {
1704 mutex_unlock(&codec->mutex);
1705 return -ENOMEM;
1706 }
1707
1708 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1709 if (codec->ac97->bus == NULL) {
1710 kfree(codec->ac97);
1711 codec->ac97 = NULL;
1712 mutex_unlock(&codec->mutex);
1713 return -ENOMEM;
1714 }
1715
1716 codec->ac97->bus->ops = ops;
1717 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03001718
1719 /*
1720 * Mark the AC97 device to be created by us. This way we ensure that the
1721 * device will be registered with the device subsystem later on.
1722 */
1723 codec->ac97_created = 1;
1724
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001725 mutex_unlock(&codec->mutex);
1726 return 0;
1727}
1728EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1729
1730/**
1731 * snd_soc_free_ac97_codec - free AC97 codec device
1732 * @codec: audio codec
1733 *
1734 * Frees AC97 codec device resources.
1735 */
1736void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1737{
1738 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001739#ifdef CONFIG_SND_SOC_AC97_BUS
1740 soc_unregister_ac97_dai_link(codec);
1741#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001742 kfree(codec->ac97->bus);
1743 kfree(codec->ac97);
1744 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03001745 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001746 mutex_unlock(&codec->mutex);
1747}
1748EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1749
Mark Brownc3753702010-11-01 15:41:57 -04001750unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
1751{
1752 unsigned int ret;
1753
Mark Brownc3acec22010-12-02 16:15:29 +00001754 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04001755 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04001756 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04001757
1758 return ret;
1759}
1760EXPORT_SYMBOL_GPL(snd_soc_read);
1761
1762unsigned int snd_soc_write(struct snd_soc_codec *codec,
1763 unsigned int reg, unsigned int val)
1764{
1765 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04001766 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00001767 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04001768}
1769EXPORT_SYMBOL_GPL(snd_soc_write);
1770
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00001771unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
1772 unsigned int reg, const void *data, size_t len)
1773{
1774 return codec->bulk_write_raw(codec, reg, data, len);
1775}
1776EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
1777
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001778/**
1779 * snd_soc_update_bits - update codec register bits
1780 * @codec: audio codec
1781 * @reg: codec register
1782 * @mask: register mask
1783 * @value: new value
1784 *
1785 * Writes new register value.
1786 *
Timur Tabi180c3292011-01-10 15:58:13 -06001787 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001788 */
1789int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001790 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001791{
1792 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001793 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06001794 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001795
Timur Tabi180c3292011-01-10 15:58:13 -06001796 ret = snd_soc_read(codec, reg);
1797 if (ret < 0)
1798 return ret;
1799
1800 old = ret;
Mark Brown78bf3c92011-06-03 17:09:14 +01001801 new = (old & ~mask) | (value & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001802 change = old != new;
Timur Tabi180c3292011-01-10 15:58:13 -06001803 if (change) {
1804 ret = snd_soc_write(codec, reg, new);
1805 if (ret < 0)
1806 return ret;
1807 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001808
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001809 return change;
1810}
1811EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1812
1813/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001814 * snd_soc_update_bits_locked - update codec register bits
1815 * @codec: audio codec
1816 * @reg: codec register
1817 * @mask: register mask
1818 * @value: new value
1819 *
1820 * Writes new register value, and takes the codec mutex.
1821 *
1822 * Returns 1 for change else 0.
1823 */
Mark Browndd1b3d52009-12-04 14:22:03 +00001824int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
1825 unsigned short reg, unsigned int mask,
1826 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001827{
1828 int change;
1829
1830 mutex_lock(&codec->mutex);
1831 change = snd_soc_update_bits(codec, reg, mask, value);
1832 mutex_unlock(&codec->mutex);
1833
1834 return change;
1835}
Mark Browndd1b3d52009-12-04 14:22:03 +00001836EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001837
1838/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001839 * snd_soc_test_bits - test register for change
1840 * @codec: audio codec
1841 * @reg: codec register
1842 * @mask: register mask
1843 * @value: new value
1844 *
1845 * Tests a register with a new value and checks if the new value is
1846 * different from the old value.
1847 *
1848 * Returns 1 for change else 0.
1849 */
1850int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001851 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001852{
1853 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001854 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001855
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001856 old = snd_soc_read(codec, reg);
1857 new = (old & ~mask) | value;
1858 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001859
1860 return change;
1861}
1862EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1863
1864/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001865 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1866 * @substream: the pcm substream
1867 * @hw: the hardware parameters
1868 *
1869 * Sets the substream runtime hardware parameters.
1870 */
1871int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1872 const struct snd_pcm_hardware *hw)
1873{
1874 struct snd_pcm_runtime *runtime = substream->runtime;
1875 runtime->hw.info = hw->info;
1876 runtime->hw.formats = hw->formats;
1877 runtime->hw.period_bytes_min = hw->period_bytes_min;
1878 runtime->hw.period_bytes_max = hw->period_bytes_max;
1879 runtime->hw.periods_min = hw->periods_min;
1880 runtime->hw.periods_max = hw->periods_max;
1881 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1882 runtime->hw.fifo_size = hw->fifo_size;
1883 return 0;
1884}
1885EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1886
1887/**
1888 * snd_soc_cnew - create new control
1889 * @_template: control template
1890 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001891 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001892 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001893 *
1894 * Create a new mixer control from a template control.
1895 *
1896 * Returns 0 for success, else error.
1897 */
1898struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brownefb7ac32011-03-08 17:23:24 +00001899 void *data, char *long_name,
1900 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001901{
1902 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001903 struct snd_kcontrol *kcontrol;
1904 char *name = NULL;
1905 int name_len;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001906
1907 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001908 template.index = 0;
1909
Mark Brownefb7ac32011-03-08 17:23:24 +00001910 if (!long_name)
1911 long_name = template.name;
1912
1913 if (prefix) {
1914 name_len = strlen(long_name) + strlen(prefix) + 2;
1915 name = kmalloc(name_len, GFP_ATOMIC);
1916 if (!name)
1917 return NULL;
1918
1919 snprintf(name, name_len, "%s %s", prefix, long_name);
1920
1921 template.name = name;
1922 } else {
1923 template.name = long_name;
1924 }
1925
1926 kcontrol = snd_ctl_new1(&template, data);
1927
1928 kfree(name);
1929
1930 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001931}
1932EXPORT_SYMBOL_GPL(snd_soc_cnew);
1933
1934/**
Ian Molton3e8e1952009-01-09 00:23:21 +00001935 * snd_soc_add_controls - add an array of controls to a codec.
1936 * Convienience function to add a list of controls. Many codecs were
1937 * duplicating this code.
1938 *
1939 * @codec: codec to add controls to
1940 * @controls: array of controls to add
1941 * @num_controls: number of elements in the array
1942 *
1943 * Return 0 for success, else error.
1944 */
1945int snd_soc_add_controls(struct snd_soc_codec *codec,
1946 const struct snd_kcontrol_new *controls, int num_controls)
1947{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001948 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00001949 int err, i;
1950
1951 for (i = 0; i < num_controls; i++) {
1952 const struct snd_kcontrol_new *control = &controls[i];
Mark Brownefb7ac32011-03-08 17:23:24 +00001953 err = snd_ctl_add(card, snd_soc_cnew(control, codec,
1954 control->name,
1955 codec->name_prefix));
Ian Molton3e8e1952009-01-09 00:23:21 +00001956 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01001957 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Mark Brownefb7ac32011-03-08 17:23:24 +00001958 codec->name, control->name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00001959 return err;
1960 }
1961 }
1962
1963 return 0;
1964}
1965EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1966
1967/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001968 * snd_soc_add_platform_controls - add an array of controls to a platform.
1969 * Convienience function to add a list of controls.
1970 *
1971 * @platform: platform to add controls to
1972 * @controls: array of controls to add
1973 * @num_controls: number of elements in the array
1974 *
1975 * Return 0 for success, else error.
1976 */
1977int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
1978 const struct snd_kcontrol_new *controls, int num_controls)
1979{
1980 struct snd_card *card = platform->card->snd_card;
1981 int err, i;
1982
1983 for (i = 0; i < num_controls; i++) {
1984 const struct snd_kcontrol_new *control = &controls[i];
1985 err = snd_ctl_add(card, snd_soc_cnew(control, platform,
1986 control->name, NULL));
1987 if (err < 0) {
1988 dev_err(platform->dev, "Failed to add %s %d\n",control->name, err);
1989 return err;
1990 }
1991 }
1992
1993 return 0;
1994}
1995EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
1996
1997/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001998 * snd_soc_info_enum_double - enumerated double mixer info callback
1999 * @kcontrol: mixer control
2000 * @uinfo: control element information
2001 *
2002 * Callback to provide information about a double enumerated
2003 * mixer control.
2004 *
2005 * Returns 0 for success.
2006 */
2007int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2008 struct snd_ctl_elem_info *uinfo)
2009{
2010 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2011
2012 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2013 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002014 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002015
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002016 if (uinfo->value.enumerated.item > e->max - 1)
2017 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002018 strcpy(uinfo->value.enumerated.name,
2019 e->texts[uinfo->value.enumerated.item]);
2020 return 0;
2021}
2022EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2023
2024/**
2025 * snd_soc_get_enum_double - enumerated double mixer get callback
2026 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002027 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002028 *
2029 * Callback to get the value of a double enumerated mixer.
2030 *
2031 * Returns 0 for success.
2032 */
2033int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2034 struct snd_ctl_elem_value *ucontrol)
2035{
2036 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2037 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002038 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002039
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002040 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002041 ;
2042 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002043 ucontrol->value.enumerated.item[0]
2044 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002045 if (e->shift_l != e->shift_r)
2046 ucontrol->value.enumerated.item[1] =
2047 (val >> e->shift_r) & (bitmask - 1);
2048
2049 return 0;
2050}
2051EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2052
2053/**
2054 * snd_soc_put_enum_double - enumerated double mixer put callback
2055 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002056 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002057 *
2058 * Callback to set the value of a double enumerated mixer.
2059 *
2060 * Returns 0 for success.
2061 */
2062int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2063 struct snd_ctl_elem_value *ucontrol)
2064{
2065 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2066 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002067 unsigned int val;
2068 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002069
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002070 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002071 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002072 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002073 return -EINVAL;
2074 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2075 mask = (bitmask - 1) << e->shift_l;
2076 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002077 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002078 return -EINVAL;
2079 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2080 mask |= (bitmask - 1) << e->shift_r;
2081 }
2082
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002083 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002084}
2085EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2086
2087/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002088 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2089 * @kcontrol: mixer control
2090 * @ucontrol: control element information
2091 *
2092 * Callback to get the value of a double semi enumerated mixer.
2093 *
2094 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2095 * used for handling bitfield coded enumeration for example.
2096 *
2097 * Returns 0 for success.
2098 */
2099int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2100 struct snd_ctl_elem_value *ucontrol)
2101{
2102 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002103 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002104 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002105
2106 reg_val = snd_soc_read(codec, e->reg);
2107 val = (reg_val >> e->shift_l) & e->mask;
2108 for (mux = 0; mux < e->max; mux++) {
2109 if (val == e->values[mux])
2110 break;
2111 }
2112 ucontrol->value.enumerated.item[0] = mux;
2113 if (e->shift_l != e->shift_r) {
2114 val = (reg_val >> e->shift_r) & e->mask;
2115 for (mux = 0; mux < e->max; mux++) {
2116 if (val == e->values[mux])
2117 break;
2118 }
2119 ucontrol->value.enumerated.item[1] = mux;
2120 }
2121
2122 return 0;
2123}
2124EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2125
2126/**
2127 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2128 * @kcontrol: mixer control
2129 * @ucontrol: control element information
2130 *
2131 * Callback to set the value of a double semi enumerated mixer.
2132 *
2133 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2134 * used for handling bitfield coded enumeration for example.
2135 *
2136 * Returns 0 for success.
2137 */
2138int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2139 struct snd_ctl_elem_value *ucontrol)
2140{
2141 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002142 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002143 unsigned int val;
2144 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002145
2146 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2147 return -EINVAL;
2148 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2149 mask = e->mask << e->shift_l;
2150 if (e->shift_l != e->shift_r) {
2151 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2152 return -EINVAL;
2153 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2154 mask |= e->mask << e->shift_r;
2155 }
2156
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002157 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002158}
2159EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2160
2161/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002162 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2163 * @kcontrol: mixer control
2164 * @uinfo: control element information
2165 *
2166 * Callback to provide information about an external enumerated
2167 * single mixer.
2168 *
2169 * Returns 0 for success.
2170 */
2171int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2172 struct snd_ctl_elem_info *uinfo)
2173{
2174 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2175
2176 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2177 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002178 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002179
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002180 if (uinfo->value.enumerated.item > e->max - 1)
2181 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002182 strcpy(uinfo->value.enumerated.name,
2183 e->texts[uinfo->value.enumerated.item]);
2184 return 0;
2185}
2186EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2187
2188/**
2189 * snd_soc_info_volsw_ext - external single mixer info callback
2190 * @kcontrol: mixer control
2191 * @uinfo: control element information
2192 *
2193 * Callback to provide information about a single external mixer control.
2194 *
2195 * Returns 0 for success.
2196 */
2197int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2198 struct snd_ctl_elem_info *uinfo)
2199{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002200 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002201
Mark Brownfd5dfad2009-04-15 21:37:46 +01002202 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002203 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2204 else
2205 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2206
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002207 uinfo->count = 1;
2208 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002209 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002210 return 0;
2211}
2212EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2213
2214/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002215 * snd_soc_info_volsw - single mixer info callback
2216 * @kcontrol: mixer control
2217 * @uinfo: control element information
2218 *
2219 * Callback to provide information about a single mixer control.
2220 *
2221 * Returns 0 for success.
2222 */
2223int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2224 struct snd_ctl_elem_info *uinfo)
2225{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002226 struct soc_mixer_control *mc =
2227 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002228 int platform_max;
Mark Brown762b8df2008-10-30 12:37:08 +00002229 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002230 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002231
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002232 if (!mc->platform_max)
2233 mc->platform_max = mc->max;
2234 platform_max = mc->platform_max;
2235
2236 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002237 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2238 else
2239 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2240
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002241 uinfo->count = shift == rshift ? 1 : 2;
2242 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002243 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002244 return 0;
2245}
2246EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2247
2248/**
2249 * snd_soc_get_volsw - single mixer get callback
2250 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002251 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002252 *
2253 * Callback to get the value of a single mixer control.
2254 *
2255 * Returns 0 for success.
2256 */
2257int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2258 struct snd_ctl_elem_value *ucontrol)
2259{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002260 struct soc_mixer_control *mc =
2261 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002262 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002263 unsigned int reg = mc->reg;
2264 unsigned int shift = mc->shift;
2265 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002266 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002267 unsigned int mask = (1 << fls(max)) - 1;
2268 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002269
2270 ucontrol->value.integer.value[0] =
2271 (snd_soc_read(codec, reg) >> shift) & mask;
2272 if (shift != rshift)
2273 ucontrol->value.integer.value[1] =
2274 (snd_soc_read(codec, reg) >> rshift) & mask;
2275 if (invert) {
2276 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002277 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002278 if (shift != rshift)
2279 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002280 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002281 }
2282
2283 return 0;
2284}
2285EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2286
2287/**
2288 * snd_soc_put_volsw - single mixer put callback
2289 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002290 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002291 *
2292 * Callback to set the value of a single mixer control.
2293 *
2294 * Returns 0 for success.
2295 */
2296int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2297 struct snd_ctl_elem_value *ucontrol)
2298{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002299 struct soc_mixer_control *mc =
2300 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002301 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002302 unsigned int reg = mc->reg;
2303 unsigned int shift = mc->shift;
2304 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002305 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002306 unsigned int mask = (1 << fls(max)) - 1;
2307 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002308 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002309
2310 val = (ucontrol->value.integer.value[0] & mask);
2311 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002312 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002313 val_mask = mask << shift;
2314 val = val << shift;
2315 if (shift != rshift) {
2316 val2 = (ucontrol->value.integer.value[1] & mask);
2317 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002318 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002319 val_mask |= mask << rshift;
2320 val |= val2 << rshift;
2321 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002322 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002323}
2324EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
2325
2326/**
2327 * snd_soc_info_volsw_2r - double mixer info callback
2328 * @kcontrol: mixer control
2329 * @uinfo: control element information
2330 *
2331 * Callback to provide information about a double mixer control that
2332 * spans 2 codec registers.
2333 *
2334 * Returns 0 for success.
2335 */
2336int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
2337 struct snd_ctl_elem_info *uinfo)
2338{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002339 struct soc_mixer_control *mc =
2340 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002341 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002342
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002343 if (!mc->platform_max)
2344 mc->platform_max = mc->max;
2345 platform_max = mc->platform_max;
2346
2347 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002348 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2349 else
2350 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2351
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002352 uinfo->count = 2;
2353 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002354 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002355 return 0;
2356}
2357EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2358
2359/**
2360 * snd_soc_get_volsw_2r - double mixer get callback
2361 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002362 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002363 *
2364 * Callback to get the value of a double mixer control that spans 2 registers.
2365 *
2366 * Returns 0 for success.
2367 */
2368int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2369 struct snd_ctl_elem_value *ucontrol)
2370{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002371 struct soc_mixer_control *mc =
2372 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002373 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002374 unsigned int reg = mc->reg;
2375 unsigned int reg2 = mc->rreg;
2376 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002377 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002378 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002379 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002380
2381 ucontrol->value.integer.value[0] =
2382 (snd_soc_read(codec, reg) >> shift) & mask;
2383 ucontrol->value.integer.value[1] =
2384 (snd_soc_read(codec, reg2) >> shift) & mask;
2385 if (invert) {
2386 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002387 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002388 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002389 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002390 }
2391
2392 return 0;
2393}
2394EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2395
2396/**
2397 * snd_soc_put_volsw_2r - double mixer set callback
2398 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002399 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002400 *
2401 * Callback to set the value of a double mixer control that spans 2 registers.
2402 *
2403 * Returns 0 for success.
2404 */
2405int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2406 struct snd_ctl_elem_value *ucontrol)
2407{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002408 struct soc_mixer_control *mc =
2409 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002410 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002411 unsigned int reg = mc->reg;
2412 unsigned int reg2 = mc->rreg;
2413 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002414 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002415 unsigned int mask = (1 << fls(max)) - 1;
2416 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002417 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002418 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002419
2420 val_mask = mask << shift;
2421 val = (ucontrol->value.integer.value[0] & mask);
2422 val2 = (ucontrol->value.integer.value[1] & mask);
2423
2424 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002425 val = max - val;
2426 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002427 }
2428
2429 val = val << shift;
2430 val2 = val2 << shift;
2431
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002432 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002433 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002434 return err;
2435
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002436 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002437 return err;
2438}
2439EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2440
Mark Browne13ac2e2008-05-28 17:58:05 +01002441/**
2442 * snd_soc_info_volsw_s8 - signed mixer info callback
2443 * @kcontrol: mixer control
2444 * @uinfo: control element information
2445 *
2446 * Callback to provide information about a signed mixer control.
2447 *
2448 * Returns 0 for success.
2449 */
2450int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2451 struct snd_ctl_elem_info *uinfo)
2452{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002453 struct soc_mixer_control *mc =
2454 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002455 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002456 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002457
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002458 if (!mc->platform_max)
2459 mc->platform_max = mc->max;
2460 platform_max = mc->platform_max;
2461
Mark Browne13ac2e2008-05-28 17:58:05 +01002462 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2463 uinfo->count = 2;
2464 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002465 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002466 return 0;
2467}
2468EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2469
2470/**
2471 * snd_soc_get_volsw_s8 - signed mixer get callback
2472 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002473 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002474 *
2475 * Callback to get the value of a signed mixer control.
2476 *
2477 * Returns 0 for success.
2478 */
2479int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2480 struct snd_ctl_elem_value *ucontrol)
2481{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002482 struct soc_mixer_control *mc =
2483 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002484 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002485 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002486 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002487 int val = snd_soc_read(codec, reg);
2488
2489 ucontrol->value.integer.value[0] =
2490 ((signed char)(val & 0xff))-min;
2491 ucontrol->value.integer.value[1] =
2492 ((signed char)((val >> 8) & 0xff))-min;
2493 return 0;
2494}
2495EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2496
2497/**
2498 * snd_soc_put_volsw_sgn - signed mixer put callback
2499 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002500 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002501 *
2502 * Callback to set the value of a signed mixer control.
2503 *
2504 * Returns 0 for success.
2505 */
2506int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2507 struct snd_ctl_elem_value *ucontrol)
2508{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002509 struct soc_mixer_control *mc =
2510 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002511 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002512 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002513 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002514 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002515
2516 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2517 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2518
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002519 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002520}
2521EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2522
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002523/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002524 * snd_soc_limit_volume - Set new limit to an existing volume control.
2525 *
2526 * @codec: where to look for the control
2527 * @name: Name of the control
2528 * @max: new maximum limit
2529 *
2530 * Return 0 for success, else error.
2531 */
2532int snd_soc_limit_volume(struct snd_soc_codec *codec,
2533 const char *name, int max)
2534{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002535 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002536 struct snd_kcontrol *kctl;
2537 struct soc_mixer_control *mc;
2538 int found = 0;
2539 int ret = -EINVAL;
2540
2541 /* Sanity check for name and max */
2542 if (unlikely(!name || max <= 0))
2543 return -EINVAL;
2544
2545 list_for_each_entry(kctl, &card->controls, list) {
2546 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2547 found = 1;
2548 break;
2549 }
2550 }
2551 if (found) {
2552 mc = (struct soc_mixer_control *)kctl->private_value;
2553 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002554 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002555 ret = 0;
2556 }
2557 }
2558 return ret;
2559}
2560EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2561
2562/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002563 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2564 * mixer info callback
2565 * @kcontrol: mixer control
2566 * @uinfo: control element information
2567 *
2568 * Returns 0 for success.
2569 */
2570int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2571 struct snd_ctl_elem_info *uinfo)
2572{
2573 struct soc_mixer_control *mc =
2574 (struct soc_mixer_control *)kcontrol->private_value;
2575 int max = mc->max;
2576 int min = mc->min;
2577
2578 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2579 uinfo->count = 2;
2580 uinfo->value.integer.min = 0;
2581 uinfo->value.integer.max = max-min;
2582
2583 return 0;
2584}
2585EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
2586
2587/**
2588 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
2589 * mixer get callback
2590 * @kcontrol: mixer control
2591 * @uinfo: control element information
2592 *
2593 * Returns 0 for success.
2594 */
2595int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2596 struct snd_ctl_elem_value *ucontrol)
2597{
2598 struct soc_mixer_control *mc =
2599 (struct soc_mixer_control *)kcontrol->private_value;
2600 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2601 unsigned int mask = (1<<mc->shift)-1;
2602 int min = mc->min;
2603 int val = snd_soc_read(codec, mc->reg) & mask;
2604 int valr = snd_soc_read(codec, mc->rreg) & mask;
2605
Stuart Longland20630c72010-06-18 12:56:10 +10002606 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
2607 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002608 return 0;
2609}
2610EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
2611
2612/**
2613 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
2614 * mixer put callback
2615 * @kcontrol: mixer control
2616 * @uinfo: control element information
2617 *
2618 * Returns 0 for success.
2619 */
2620int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2621 struct snd_ctl_elem_value *ucontrol)
2622{
2623 struct soc_mixer_control *mc =
2624 (struct soc_mixer_control *)kcontrol->private_value;
2625 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2626 unsigned int mask = (1<<mc->shift)-1;
2627 int min = mc->min;
2628 int ret;
2629 unsigned int val, valr, oval, ovalr;
2630
2631 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
2632 val &= mask;
2633 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
2634 valr &= mask;
2635
2636 oval = snd_soc_read(codec, mc->reg) & mask;
2637 ovalr = snd_soc_read(codec, mc->rreg) & mask;
2638
2639 ret = 0;
2640 if (oval != val) {
2641 ret = snd_soc_write(codec, mc->reg, val);
2642 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002643 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002644 }
2645 if (ovalr != valr) {
2646 ret = snd_soc_write(codec, mc->rreg, valr);
2647 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002648 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002649 }
2650
2651 return 0;
2652}
2653EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
2654
2655/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002656 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2657 * @dai: DAI
2658 * @clk_id: DAI specific clock ID
2659 * @freq: new clock frequency in Hz
2660 * @dir: new clock direction - input/output.
2661 *
2662 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2663 */
2664int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2665 unsigned int freq, int dir)
2666{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002667 if (dai->driver && dai->driver->ops->set_sysclk)
2668 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002669 else if (dai->codec && dai->codec->driver->set_sysclk)
2670 return dai->codec->driver->set_sysclk(dai->codec, clk_id,
2671 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002672 else
2673 return -EINVAL;
2674}
2675EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2676
2677/**
Mark Brownec4ee522011-03-07 20:58:11 +00002678 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2679 * @codec: CODEC
2680 * @clk_id: DAI specific clock ID
2681 * @freq: new clock frequency in Hz
2682 * @dir: new clock direction - input/output.
2683 *
2684 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2685 */
2686int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
2687 unsigned int freq, int dir)
2688{
2689 if (codec->driver->set_sysclk)
2690 return codec->driver->set_sysclk(codec, clk_id, freq, dir);
2691 else
2692 return -EINVAL;
2693}
2694EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2695
2696/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002697 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2698 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002699 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002700 * @div: new clock divisor.
2701 *
2702 * Configures the clock dividers. This is used to derive the best DAI bit and
2703 * frame clocks from the system or master clock. It's best to set the DAI bit
2704 * and frame clocks as low as possible to save system power.
2705 */
2706int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2707 int div_id, int div)
2708{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002709 if (dai->driver && dai->driver->ops->set_clkdiv)
2710 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002711 else
2712 return -EINVAL;
2713}
2714EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2715
2716/**
2717 * snd_soc_dai_set_pll - configure DAI PLL.
2718 * @dai: DAI
2719 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002720 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002721 * @freq_in: PLL input clock frequency in Hz
2722 * @freq_out: requested PLL output clock frequency in Hz
2723 *
2724 * Configures and enables PLL to generate output clock based on input clock.
2725 */
Mark Brown85488032009-09-05 18:52:16 +01002726int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2727 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002728{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002729 if (dai->driver && dai->driver->ops->set_pll)
2730 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002731 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002732 else if (dai->codec && dai->codec->driver->set_pll)
2733 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2734 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002735 else
2736 return -EINVAL;
2737}
2738EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2739
Mark Brownec4ee522011-03-07 20:58:11 +00002740/*
2741 * snd_soc_codec_set_pll - configure codec PLL.
2742 * @codec: CODEC
2743 * @pll_id: DAI specific PLL ID
2744 * @source: DAI specific source for the PLL
2745 * @freq_in: PLL input clock frequency in Hz
2746 * @freq_out: requested PLL output clock frequency in Hz
2747 *
2748 * Configures and enables PLL to generate output clock based on input clock.
2749 */
2750int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2751 unsigned int freq_in, unsigned int freq_out)
2752{
2753 if (codec->driver->set_pll)
2754 return codec->driver->set_pll(codec, pll_id, source,
2755 freq_in, freq_out);
2756 else
2757 return -EINVAL;
2758}
2759EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2760
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002761/**
2762 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2763 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002764 * @fmt: SND_SOC_DAIFMT_ format value.
2765 *
2766 * Configures the DAI hardware format and clocking.
2767 */
2768int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2769{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002770 if (dai->driver && dai->driver->ops->set_fmt)
2771 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002772 else
2773 return -EINVAL;
2774}
2775EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2776
2777/**
2778 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2779 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002780 * @tx_mask: bitmask representing active TX slots.
2781 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002782 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002783 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002784 *
2785 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2786 * specific.
2787 */
2788int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002789 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002790{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002791 if (dai->driver && dai->driver->ops->set_tdm_slot)
2792 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002793 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002794 else
2795 return -EINVAL;
2796}
2797EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2798
2799/**
Barry Song472df3c2009-09-12 01:16:29 +08002800 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2801 * @dai: DAI
2802 * @tx_num: how many TX channels
2803 * @tx_slot: pointer to an array which imply the TX slot number channel
2804 * 0~num-1 uses
2805 * @rx_num: how many RX channels
2806 * @rx_slot: pointer to an array which imply the RX slot number channel
2807 * 0~num-1 uses
2808 *
2809 * configure the relationship between channel number and TDM slot number.
2810 */
2811int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2812 unsigned int tx_num, unsigned int *tx_slot,
2813 unsigned int rx_num, unsigned int *rx_slot)
2814{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002815 if (dai->driver && dai->driver->ops->set_channel_map)
2816 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002817 rx_num, rx_slot);
2818 else
2819 return -EINVAL;
2820}
2821EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2822
2823/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002824 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2825 * @dai: DAI
2826 * @tristate: tristate enable
2827 *
2828 * Tristates the DAI so that others can use it.
2829 */
2830int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2831{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002832 if (dai->driver && dai->driver->ops->set_tristate)
2833 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002834 else
2835 return -EINVAL;
2836}
2837EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2838
2839/**
2840 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2841 * @dai: DAI
2842 * @mute: mute enable
2843 *
2844 * Mutes the DAI DAC.
2845 */
2846int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2847{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002848 if (dai->driver && dai->driver->ops->digital_mute)
2849 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002850 else
2851 return -EINVAL;
2852}
2853EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2854
Mark Brownc5af3a22008-11-28 13:29:45 +00002855/**
2856 * snd_soc_register_card - Register a card with the ASoC core
2857 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002858 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002859 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002860 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302861int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002862{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002863 int i;
2864
Mark Brownc5af3a22008-11-28 13:29:45 +00002865 if (!card->name || !card->dev)
2866 return -EINVAL;
2867
Mark Browned77cc12011-05-03 18:25:34 +01002868 dev_set_drvdata(card->dev, card);
2869
Stephen Warren111c6412011-01-28 14:26:35 -07002870 snd_soc_initialize_card_lists(card);
2871
Vinod Koul150dd2f2011-01-13 22:48:32 +05302872 soc_init_card_debugfs(card);
2873
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002874 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
2875 (card->num_links + card->num_aux_devs),
2876 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002877 if (card->rtd == NULL)
2878 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002879 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002880
2881 for (i = 0; i < card->num_links; i++)
2882 card->rtd[i].dai_link = &card->dai_link[i];
2883
Mark Brownc5af3a22008-11-28 13:29:45 +00002884 INIT_LIST_HEAD(&card->list);
2885 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002886 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002887
2888 mutex_lock(&client_mutex);
2889 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002890 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002891 mutex_unlock(&client_mutex);
2892
2893 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2894
2895 return 0;
2896}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302897EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002898
2899/**
2900 * snd_soc_unregister_card - Unregister a card with the ASoC core
2901 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002902 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002903 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002904 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302905int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002906{
Vinod Koulb0e26482011-01-13 22:48:02 +05302907 if (card->instantiated)
2908 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002909 mutex_lock(&client_mutex);
2910 list_del(&card->list);
2911 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002912 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2913
2914 return 0;
2915}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302916EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002917
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002918/*
2919 * Simplify DAI link configuration by removing ".-1" from device names
2920 * and sanitizing names.
2921 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002922static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002923{
2924 char *found, name[NAME_SIZE];
2925 int id1, id2;
2926
2927 if (dev_name(dev) == NULL)
2928 return NULL;
2929
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002930 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002931
2932 /* are we a "%s.%d" name (platform and SPI components) */
2933 found = strstr(name, dev->driver->name);
2934 if (found) {
2935 /* get ID */
2936 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2937
2938 /* discard ID from name if ID == -1 */
2939 if (*id == -1)
2940 found[strlen(dev->driver->name)] = '\0';
2941 }
2942
2943 } else {
2944 /* I2C component devices are named "bus-addr" */
2945 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2946 char tmp[NAME_SIZE];
2947
2948 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002949 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002950
2951 /* sanitize component name for DAI link creation */
2952 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002953 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002954 } else
2955 *id = 0;
2956 }
2957
2958 return kstrdup(name, GFP_KERNEL);
2959}
2960
2961/*
2962 * Simplify DAI link naming for single devices with multiple DAIs by removing
2963 * any ".-1" and using the DAI name (instead of device name).
2964 */
2965static inline char *fmt_multiple_name(struct device *dev,
2966 struct snd_soc_dai_driver *dai_drv)
2967{
2968 if (dai_drv->name == NULL) {
2969 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
2970 dev_name(dev));
2971 return NULL;
2972 }
2973
2974 return kstrdup(dai_drv->name, GFP_KERNEL);
2975}
2976
Mark Brown91151712008-11-30 23:31:24 +00002977/**
2978 * snd_soc_register_dai - Register a DAI with the ASoC core
2979 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002980 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00002981 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002982int snd_soc_register_dai(struct device *dev,
2983 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00002984{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002985 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00002986
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002987 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00002988
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002989 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
2990 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08002991 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08002992
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002993 /* create DAI component name */
2994 dai->name = fmt_single_name(dev, &dai->id);
2995 if (dai->name == NULL) {
2996 kfree(dai);
2997 return -ENOMEM;
2998 }
2999
3000 dai->dev = dev;
3001 dai->driver = dai_drv;
3002 if (!dai->driver->ops)
3003 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003004
3005 mutex_lock(&client_mutex);
3006 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003007 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003008 mutex_unlock(&client_mutex);
3009
3010 pr_debug("Registered DAI '%s'\n", dai->name);
3011
3012 return 0;
3013}
3014EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3015
3016/**
3017 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3018 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003019 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003020 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003021void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003022{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003023 struct snd_soc_dai *dai;
3024
3025 list_for_each_entry(dai, &dai_list, list) {
3026 if (dev == dai->dev)
3027 goto found;
3028 }
3029 return;
3030
3031found:
Mark Brown91151712008-11-30 23:31:24 +00003032 mutex_lock(&client_mutex);
3033 list_del(&dai->list);
3034 mutex_unlock(&client_mutex);
3035
3036 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003037 kfree(dai->name);
3038 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003039}
3040EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3041
3042/**
3043 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3044 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003045 * @dai: Array of DAIs to register
3046 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003047 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003048int snd_soc_register_dais(struct device *dev,
3049 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003050{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003051 struct snd_soc_dai *dai;
3052 int i, ret = 0;
3053
Liam Girdwood720ffa42010-08-18 00:30:30 +01003054 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003055
3056 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003057
3058 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003059 if (dai == NULL) {
3060 ret = -ENOMEM;
3061 goto err;
3062 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003063
3064 /* create DAI component name */
3065 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3066 if (dai->name == NULL) {
3067 kfree(dai);
3068 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003069 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003070 }
3071
3072 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003073 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003074 if (dai->driver->id)
3075 dai->id = dai->driver->id;
3076 else
3077 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003078 if (!dai->driver->ops)
3079 dai->driver->ops = &null_dai_ops;
3080
3081 mutex_lock(&client_mutex);
3082 list_add(&dai->list, &dai_list);
3083 mutex_unlock(&client_mutex);
3084
3085 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003086 }
3087
Axel Lin1dcb4f32010-12-06 16:48:03 +08003088 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003089 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003090 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003091 return 0;
3092
3093err:
3094 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003095 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003096
3097 return ret;
3098}
3099EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3100
3101/**
3102 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3103 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003104 * @dai: Array of DAIs to unregister
3105 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003106 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003107void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003108{
3109 int i;
3110
3111 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003112 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003113}
3114EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3115
Mark Brown12a48a8c2008-12-03 19:40:30 +00003116/**
3117 * snd_soc_register_platform - Register a platform with the ASoC core
3118 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003119 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003120 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003121int snd_soc_register_platform(struct device *dev,
3122 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003123{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003124 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003125
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003126 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3127
3128 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3129 if (platform == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003130 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003131
3132 /* create platform component name */
3133 platform->name = fmt_single_name(dev, &platform->id);
3134 if (platform->name == NULL) {
3135 kfree(platform);
3136 return -ENOMEM;
3137 }
3138
3139 platform->dev = dev;
3140 platform->driver = platform_drv;
Liam Girdwoodb7950642011-07-04 22:10:52 +01003141 platform->dapm.dev = dev;
3142 platform->dapm.platform = platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003143
3144 mutex_lock(&client_mutex);
3145 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003146 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003147 mutex_unlock(&client_mutex);
3148
3149 pr_debug("Registered platform '%s'\n", platform->name);
3150
3151 return 0;
3152}
3153EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3154
3155/**
3156 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3157 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003158 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003159 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003160void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003161{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003162 struct snd_soc_platform *platform;
3163
3164 list_for_each_entry(platform, &platform_list, list) {
3165 if (dev == platform->dev)
3166 goto found;
3167 }
3168 return;
3169
3170found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003171 mutex_lock(&client_mutex);
3172 list_del(&platform->list);
3173 mutex_unlock(&client_mutex);
3174
3175 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003176 kfree(platform->name);
3177 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003178}
3179EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3180
Mark Brown151ab222009-05-09 16:22:58 +01003181static u64 codec_format_map[] = {
3182 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3183 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3184 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3185 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3186 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3187 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3188 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3189 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3190 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3191 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3192 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3193 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3194 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3195 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3196 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3197 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3198};
3199
3200/* Fix up the DAI formats for endianness: codecs don't actually see
3201 * the endianness of the data but we're using the CPU format
3202 * definitions which do need to include endianness so we ensure that
3203 * codec DAIs always have both big and little endian variants set.
3204 */
3205static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3206{
3207 int i;
3208
3209 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3210 if (stream->formats & codec_format_map[i])
3211 stream->formats |= codec_format_map[i];
3212}
3213
Mark Brown0d0cf002008-12-10 14:32:45 +00003214/**
3215 * snd_soc_register_codec - Register a codec with the ASoC core
3216 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003217 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003218 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003219int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003220 const struct snd_soc_codec_driver *codec_drv,
3221 struct snd_soc_dai_driver *dai_drv,
3222 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003223{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003224 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003225 struct snd_soc_codec *codec;
3226 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003227
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003228 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003229
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003230 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3231 if (codec == NULL)
3232 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003233
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003234 /* create CODEC component name */
3235 codec->name = fmt_single_name(dev, &codec->id);
3236 if (codec->name == NULL) {
3237 kfree(codec);
3238 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003239 }
3240
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003241 if (codec_drv->compress_type)
3242 codec->compress_type = codec_drv->compress_type;
3243 else
3244 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3245
Mark Brownc3acec22010-12-02 16:15:29 +00003246 codec->write = codec_drv->write;
3247 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003248 codec->volatile_register = codec_drv->volatile_register;
3249 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003250 codec->writable_register = codec_drv->writable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003251 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3252 codec->dapm.dev = dev;
3253 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003254 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003255 codec->dev = dev;
3256 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003257 codec->num_dai = num_dai;
3258 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003259
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003260 /* allocate CODEC register cache */
3261 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003262 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003263 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003264 /* it is necessary to make a copy of the default register cache
3265 * because in the case of using a compression type that requires
3266 * the default register cache to be marked as __devinitconst the
3267 * kernel might have freed the array by the time we initialize
3268 * the cache.
3269 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003270 if (codec_drv->reg_cache_default) {
3271 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3272 reg_size, GFP_KERNEL);
3273 if (!codec->reg_def_copy) {
3274 ret = -ENOMEM;
3275 goto fail;
3276 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003277 }
3278 }
3279
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003280 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3281 if (!codec->volatile_register)
3282 codec->volatile_register = snd_soc_default_volatile_register;
3283 if (!codec->readable_register)
3284 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003285 if (!codec->writable_register)
3286 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003287 }
3288
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003289 for (i = 0; i < num_dai; i++) {
3290 fixup_codec_formats(&dai_drv[i].playback);
3291 fixup_codec_formats(&dai_drv[i].capture);
3292 }
3293
Mark Brown26b01cc2010-08-18 20:20:55 +01003294 /* register any DAIs */
3295 if (num_dai) {
3296 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3297 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003298 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003299 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003300
Mark Brown0d0cf002008-12-10 14:32:45 +00003301 mutex_lock(&client_mutex);
3302 list_add(&codec->list, &codec_list);
3303 snd_soc_instantiate_cards();
3304 mutex_unlock(&client_mutex);
3305
3306 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003307 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003308
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003309fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003310 kfree(codec->reg_def_copy);
3311 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003312 kfree(codec->name);
3313 kfree(codec);
3314 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003315}
3316EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3317
3318/**
3319 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3320 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003321 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003322 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003323void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003324{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003325 struct snd_soc_codec *codec;
3326 int i;
3327
3328 list_for_each_entry(codec, &codec_list, list) {
3329 if (dev == codec->dev)
3330 goto found;
3331 }
3332 return;
3333
3334found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003335 if (codec->num_dai)
3336 for (i = 0; i < codec->num_dai; i++)
3337 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003338
Mark Brown0d0cf002008-12-10 14:32:45 +00003339 mutex_lock(&client_mutex);
3340 list_del(&codec->list);
3341 mutex_unlock(&client_mutex);
3342
3343 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003344
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003345 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003346 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003347 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003348 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003349}
3350EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3351
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003352static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003353{
Mark Brown384c89e2008-12-03 17:34:03 +00003354#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003355 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3356 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003357 printk(KERN_WARNING
3358 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003359 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003360 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003361
Mark Brown8a9dab12011-01-10 22:25:21 +00003362 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003363 &codec_list_fops))
3364 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3365
Mark Brown8a9dab12011-01-10 22:25:21 +00003366 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003367 &dai_list_fops))
3368 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003369
Mark Brown8a9dab12011-01-10 22:25:21 +00003370 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003371 &platform_list_fops))
3372 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003373#endif
3374
Mark Brownfb257892011-04-28 10:57:54 +01003375 snd_soc_util_init();
3376
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003377 return platform_driver_register(&soc_driver);
3378}
Mark Brown4abe8e12010-10-12 17:41:03 +01003379module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003380
Mark Brown7d8c16a2008-11-30 22:11:24 +00003381static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003382{
Mark Brownfb257892011-04-28 10:57:54 +01003383 snd_soc_util_exit();
3384
Mark Brown384c89e2008-12-03 17:34:03 +00003385#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003386 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003387#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003388 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003389}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003390module_exit(snd_soc_exit);
3391
3392/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003393MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003394MODULE_DESCRIPTION("ALSA SoC Core");
3395MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003396MODULE_ALIAS("platform:soc-audio");