blob: 201a4d003b9a8d88b1659c5d24f844b6a3702a5b [file] [log] [blame]
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001/*
2 * soc-core.c -- ALSA SoC Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwood0664d882006-12-18 14:39:02 +01005 * Copyright 2005 Openedhand Ltd.
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00006 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
Liam Girdwood0664d882006-12-18 14:39:02 +01008 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01009 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +010010 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020012 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020018 * TODO:
19 * o Add hw rules to enforce rates, etc.
20 * o More testing with other codecs/machines.
21 * o Add more codecs and platforms to ensure good API coverage.
22 * o Support TDM on PCM and I2S
23 */
24
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/pm.h>
30#include <linux/bitops.h>
Troy Kisky12ef1932008-10-13 17:42:14 -070031#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020032#include <linux/platform_device.h>
Mark Brownf0e8ed82011-09-20 11:41:54 +010033#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Stephen Warrenbec4fa02011-12-12 15:55:34 -070035#include <linux/of.h>
Marek Vasut474828a2009-07-22 13:01:03 +020036#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020037#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000038#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020039#include <sound/pcm.h>
40#include <sound/pcm_params.h>
41#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010042#include <sound/soc-dpcm.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020043#include <sound/initval.h>
44
Mark Browna8b1d342010-11-03 18:05:58 -040045#define CREATE_TRACE_POINTS
46#include <trace/events/asoc.h>
47
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000048#define NAME_SIZE 32
49
Frank Mandarinodb2a4162006-10-06 18:31:09 +020050static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
51
Mark Brown384c89e2008-12-03 17:34:03 +000052#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000053struct dentry *snd_soc_debugfs_root;
54EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000055#endif
56
Mark Brownc5af3a22008-11-28 13:29:45 +000057static DEFINE_MUTEX(client_mutex);
Mark Brown91151712008-11-30 23:31:24 +000058static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000059static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000060static LIST_HEAD(codec_list);
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
Mark Brown25032c12011-08-01 13:52:48 +0900108 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000109 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) {
Lars-Peter Clausenb92d1502011-08-27 18:24:14 +0200146 if (!snd_soc_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{
Mark Brown36ae1a92012-01-06 17:12:45 -0800172 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000173
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000174 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000175}
176
177static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
178
Mark Browndbe21402010-02-12 11:37:24 +0000179static ssize_t pmdown_time_show(struct device *dev,
180 struct device_attribute *attr, char *buf)
181{
Mark Brown36ae1a92012-01-06 17:12:45 -0800182 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000183
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000184 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000185}
186
187static ssize_t pmdown_time_set(struct device *dev,
188 struct device_attribute *attr,
189 const char *buf, size_t count)
190{
Mark Brown36ae1a92012-01-06 17:12:45 -0800191 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700192 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000193
Mark Brownc593b522010-10-27 20:11:17 -0700194 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
195 if (ret)
196 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000197
198 return count;
199}
200
201static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
202
Mark Brown2624d5f2009-11-03 21:56:13 +0000203#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000204static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000205 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000206{
207 ssize_t ret;
208 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000209 char *buf;
210
211 if (*ppos < 0 || !count)
212 return -EINVAL;
213
214 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000215 if (!buf)
216 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000217
218 ret = soc_codec_reg_show(codec, buf, count, *ppos);
219 if (ret >= 0) {
220 if (copy_to_user(user_buf, buf, ret)) {
221 kfree(buf);
222 return -EFAULT;
223 }
224 *ppos += ret;
225 }
226
Mark Brown2624d5f2009-11-03 21:56:13 +0000227 kfree(buf);
228 return ret;
229}
230
231static ssize_t codec_reg_write_file(struct file *file,
232 const char __user *user_buf, size_t count, loff_t *ppos)
233{
234 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700235 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000236 char *start = buf;
237 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000238 struct snd_soc_codec *codec = file->private_data;
239
240 buf_size = min(count, (sizeof(buf)-1));
241 if (copy_from_user(buf, user_buf, buf_size))
242 return -EFAULT;
243 buf[buf_size] = 0;
244
Mark Brown2624d5f2009-11-03 21:56:13 +0000245 while (*start == ' ')
246 start++;
247 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000248 while (*start == ' ')
249 start++;
250 if (strict_strtoul(start, 16, &value))
251 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000252
253 /* Userspace has been fiddling around behind the kernel's back */
254 add_taint(TAINT_USER);
255
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000256 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000257 return buf_size;
258}
259
260static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700261 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000262 .read = codec_reg_read_file,
263 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200264 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000265};
266
267static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
268{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200269 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
270
271 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
272 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000273 if (!codec->debugfs_codec_root) {
Liam Girdwood64e60f92012-02-15 15:15:37 +0000274 dev_warn(codec->dev, "Failed to create codec debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000275 return;
276 }
277
Mark Brownaaee8ef2011-01-26 20:53:50 +0000278 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
279 &codec->cache_sync);
280 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
281 &codec->cache_only);
282
Mark Brown2624d5f2009-11-03 21:56:13 +0000283 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
284 codec->debugfs_codec_root,
285 codec, &codec_reg_fops);
286 if (!codec->debugfs_reg)
Liam Girdwood64e60f92012-02-15 15:15:37 +0000287 dev_warn(codec->dev, "Failed to create codec register debugfs file\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000288
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200289 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000290}
291
292static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
293{
294 debugfs_remove_recursive(codec->debugfs_codec_root);
295}
296
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000297static void soc_init_platform_debugfs(struct snd_soc_platform *platform)
298{
299 struct dentry *debugfs_card_root = platform->card->debugfs_card_root;
300
301 platform->debugfs_platform_root = debugfs_create_dir(platform->name,
302 debugfs_card_root);
303 if (!platform->debugfs_platform_root) {
304 dev_warn(platform->dev,
305 "Failed to create platform debugfs directory\n");
306 return;
307 }
308
309 snd_soc_dapm_debugfs_init(&platform->dapm,
310 platform->debugfs_platform_root);
311}
312
313static void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
314{
315 debugfs_remove_recursive(platform->debugfs_platform_root);
316}
317
Mark Brownc3c5a192010-09-15 18:15:14 +0100318static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
319 size_t count, loff_t *ppos)
320{
321 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100322 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100323 struct snd_soc_codec *codec;
324
325 if (!buf)
326 return -ENOMEM;
327
Mark Brown2b194f9d2010-10-13 10:52:16 +0100328 list_for_each_entry(codec, &codec_list, list) {
329 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
330 codec->name);
331 if (len >= 0)
332 ret += len;
333 if (ret > PAGE_SIZE) {
334 ret = PAGE_SIZE;
335 break;
336 }
337 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100338
339 if (ret >= 0)
340 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
341
342 kfree(buf);
343
344 return ret;
345}
346
347static const struct file_operations codec_list_fops = {
348 .read = codec_list_read_file,
349 .llseek = default_llseek,/* read accesses f_pos */
350};
351
Mark Brownf3208782010-09-15 18:19:07 +0100352static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
353 size_t count, loff_t *ppos)
354{
355 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100356 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100357 struct snd_soc_dai *dai;
358
359 if (!buf)
360 return -ENOMEM;
361
Mark Brown2b194f9d2010-10-13 10:52:16 +0100362 list_for_each_entry(dai, &dai_list, list) {
363 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
364 if (len >= 0)
365 ret += len;
366 if (ret > PAGE_SIZE) {
367 ret = PAGE_SIZE;
368 break;
369 }
370 }
Mark Brownf3208782010-09-15 18:19:07 +0100371
Mark Brown2b194f9d2010-10-13 10:52:16 +0100372 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100373
374 kfree(buf);
375
376 return ret;
377}
378
379static const struct file_operations dai_list_fops = {
380 .read = dai_list_read_file,
381 .llseek = default_llseek,/* read accesses f_pos */
382};
383
Mark Brown19c7ac22010-09-15 18:22:40 +0100384static ssize_t platform_list_read_file(struct file *file,
385 char __user *user_buf,
386 size_t count, loff_t *ppos)
387{
388 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100389 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100390 struct snd_soc_platform *platform;
391
392 if (!buf)
393 return -ENOMEM;
394
Mark Brown2b194f9d2010-10-13 10:52:16 +0100395 list_for_each_entry(platform, &platform_list, list) {
396 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
397 platform->name);
398 if (len >= 0)
399 ret += len;
400 if (ret > PAGE_SIZE) {
401 ret = PAGE_SIZE;
402 break;
403 }
404 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100405
Mark Brown2b194f9d2010-10-13 10:52:16 +0100406 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100407
408 kfree(buf);
409
410 return ret;
411}
412
413static const struct file_operations platform_list_fops = {
414 .read = platform_list_read_file,
415 .llseek = default_llseek,/* read accesses f_pos */
416};
417
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200418static void soc_init_card_debugfs(struct snd_soc_card *card)
419{
420 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000421 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200422 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200423 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100424 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200425 return;
426 }
427
428 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
429 card->debugfs_card_root,
430 &card->pop_time);
431 if (!card->debugfs_pop_time)
432 dev_warn(card->dev,
433 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200434}
435
436static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
437{
438 debugfs_remove_recursive(card->debugfs_card_root);
439}
440
Mark Brown2624d5f2009-11-03 21:56:13 +0000441#else
442
443static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
444{
445}
446
447static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
448{
449}
Axel Linb95fccb2010-11-09 17:06:44 +0800450
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000451static inline void soc_init_platform_debugfs(struct snd_soc_platform *platform)
452{
453}
454
455static inline void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
456{
457}
458
Axel Linb95fccb2010-11-09 17:06:44 +0800459static inline void soc_init_card_debugfs(struct snd_soc_card *card)
460{
461}
462
463static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
464{
465}
Mark Brown2624d5f2009-11-03 21:56:13 +0000466#endif
467
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200468#ifdef CONFIG_SND_SOC_AC97_BUS
469/* unregister ac97 codec */
470static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
471{
472 if (codec->ac97->dev.bus)
473 device_unregister(&codec->ac97->dev);
474 return 0;
475}
476
477/* stop no dev release warning */
478static void soc_ac97_device_release(struct device *dev){}
479
480/* register ac97 codec to bus */
481static int soc_ac97_dev_register(struct snd_soc_codec *codec)
482{
483 int err;
484
485 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100486 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200487 codec->ac97->dev.release = soc_ac97_device_release;
488
Kay Sieversbb072bf2008-11-02 03:50:35 +0100489 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000490 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200491 err = device_register(&codec->ac97->dev);
492 if (err < 0) {
493 snd_printk(KERN_ERR "Can't register ac97 bus\n");
494 codec->ac97->dev.bus = NULL;
495 return err;
496 }
497 return 0;
498}
499#endif
500
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000501#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200502/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000503int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200504{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000505 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200506 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200507 int i;
508
Daniel Macke3509ff2009-06-03 17:44:49 +0200509 /* If the initialization of this soc device failed, there is no codec
510 * associated with it. Just bail out in this case.
511 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000512 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200513 return 0;
514
Andy Green6ed25972008-06-13 16:24:05 +0100515 /* Due to the resume being scheduled into a workqueue we could
516 * suspend before that's finished - wait for it to complete.
517 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000518 snd_power_lock(card->snd_card);
519 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
520 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100521
522 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000523 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100524
Mark Browna00f90f2010-12-02 16:24:24 +0000525 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000526 for (i = 0; i < card->num_rtd; i++) {
527 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
528 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100529
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000530 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100531 continue;
532
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000533 if (drv->ops->digital_mute && dai->playback_active)
534 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200535 }
536
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100537 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000538 for (i = 0; i < card->num_rtd; i++) {
539 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100540 continue;
541
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000542 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100543 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100544
Mark Brown87506542008-11-18 20:50:34 +0000545 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000546 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200547
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000548 for (i = 0; i < card->num_rtd; i++) {
549 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
550 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100551
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000552 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100553 continue;
554
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000555 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
556 cpu_dai->driver->suspend(cpu_dai);
557 if (platform->driver->suspend && !platform->suspended) {
558 platform->driver->suspend(cpu_dai);
559 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100560 }
561 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200562
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000563 /* close any waiting streams and save state */
564 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +0100565 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200566 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000567 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100568
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000569 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000570
571 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100572 continue;
573
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800574 snd_soc_dapm_stream_event(&card->rtd[i],
575 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800576 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000577
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800578 snd_soc_dapm_stream_event(&card->rtd[i],
579 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800580 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000581 }
582
583 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200584 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000585 /* If there are paths active then the CODEC will be held with
586 * bias _ON and should not be suspended. */
587 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200588 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000589 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000590 /*
591 * If the CODEC is capable of idle
592 * bias off then being in STANDBY
593 * means it's doing something,
594 * otherwise fall through.
595 */
596 if (codec->dapm.idle_bias_off) {
597 dev_dbg(codec->dev,
598 "idle_bias_off CODEC on over suspend\n");
599 break;
600 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000601 case SND_SOC_BIAS_OFF:
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100602 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000603 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900604 codec->cache_sync = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000605 break;
606 default:
607 dev_dbg(codec->dev, "CODEC is on over suspend\n");
608 break;
609 }
610 }
611 }
612
613 for (i = 0; i < card->num_rtd; i++) {
614 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
615
616 if (card->rtd[i].dai_link->ignore_suspend)
617 continue;
618
619 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
620 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200621 }
622
Mark Brown87506542008-11-18 20:50:34 +0000623 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000624 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200625
626 return 0;
627}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000628EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200629
Andy Green6ed25972008-06-13 16:24:05 +0100630/* deferred resume work, so resume can complete before we finished
631 * setting our codec back up, which can be very slow on I2C
632 */
633static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200634{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000635 struct snd_soc_card *card =
636 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200637 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200638 int i;
639
Andy Green6ed25972008-06-13 16:24:05 +0100640 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
641 * so userspace apps are blocked from touching us
642 */
643
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000644 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100645
Mark Brown9949788b2010-05-07 20:24:05 +0100646 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000647 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown9949788b2010-05-07 20:24:05 +0100648
Mark Brown87506542008-11-18 20:50:34 +0000649 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000650 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200651
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000652 /* resume AC97 DAIs */
653 for (i = 0; i < card->num_rtd; i++) {
654 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100655
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000656 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100657 continue;
658
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000659 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
660 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200661 }
662
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200663 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000664 /* If the CODEC was idle over suspend then it will have been
665 * left with bias OFF or STANDBY and suspended so we must now
666 * resume. Otherwise the suspend was suppressed.
667 */
668 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200669 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000670 case SND_SOC_BIAS_STANDBY:
671 case SND_SOC_BIAS_OFF:
672 codec->driver->resume(codec);
673 codec->suspended = 0;
674 break;
675 default:
676 dev_dbg(codec->dev, "CODEC was on over suspend\n");
677 break;
678 }
Mark Brown1547aba2010-05-07 21:11:40 +0100679 }
680 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200681
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000682 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100683
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000684 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100685 continue;
686
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800687 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000688 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800689 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000690
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800691 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000692 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800693 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200694 }
695
Mark Brown3ff3f642008-05-19 12:32:25 +0200696 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000697 for (i = 0; i < card->num_rtd; i++) {
698 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
699 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100700
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000701 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100702 continue;
703
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000704 if (drv->ops->digital_mute && dai->playback_active)
705 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200706 }
707
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000708 for (i = 0; i < card->num_rtd; i++) {
709 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
710 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100711
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000712 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100713 continue;
714
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000715 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
716 cpu_dai->driver->resume(cpu_dai);
717 if (platform->driver->resume && platform->suspended) {
718 platform->driver->resume(cpu_dai);
719 platform->suspended = 0;
720 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200721 }
722
Mark Brown87506542008-11-18 20:50:34 +0000723 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000724 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200725
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000726 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100727
728 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000729 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +0100730}
731
732/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000733int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100734{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000735 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600736 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200737
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800738 /* If the initialization of this soc device failed, there is no codec
739 * associated with it. Just bail out in this case.
740 */
741 if (list_empty(&card->codec_dev_list))
742 return 0;
743
Mark Brown64ab9ba2009-03-31 11:27:03 +0100744 /* AC97 devices might have other drivers hanging off them so
745 * need to resume immediately. Other drivers don't have that
746 * problem and may take a substantial amount of time to resume
747 * due to I/O costs and anti-pop so handle them out of line.
748 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000749 for (i = 0; i < card->num_rtd; i++) {
750 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600751 ac97_control |= cpu_dai->driver->ac97_control;
752 }
753 if (ac97_control) {
754 dev_dbg(dev, "Resuming AC97 immediately\n");
755 soc_resume_deferred(&card->deferred_resume_work);
756 } else {
757 dev_dbg(dev, "Scheduling resume work\n");
758 if (!schedule_work(&card->deferred_resume_work))
759 dev_err(dev, "resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100760 }
Andy Green6ed25972008-06-13 16:24:05 +0100761
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200762 return 0;
763}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000764EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200765#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000766#define snd_soc_suspend NULL
767#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200768#endif
769
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100770static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800771};
772
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000773static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200774{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000775 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
776 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +0000777 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000778 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000779 struct snd_soc_dai *codec_dai, *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100780 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200781
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000782 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000783
Mark Brownb19e6e72012-03-14 21:18:39 +0000784 /* Find CPU DAI from registered DAIs*/
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000785 list_for_each_entry(cpu_dai, &dai_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700786 if (dai_link->cpu_dai_of_node) {
787 if (cpu_dai->dev->of_node != dai_link->cpu_dai_of_node)
788 continue;
789 } else {
790 if (strcmp(cpu_dai->name, dai_link->cpu_dai_name))
791 continue;
792 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700793
794 rtd->cpu_dai = cpu_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000795 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000796
797 if (!rtd->cpu_dai) {
798 dev_dbg(card->dev, "CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000799 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000800 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000801 }
802
Mark Brownb19e6e72012-03-14 21:18:39 +0000803 /* Find CODEC from registered CODECs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000804 list_for_each_entry(codec, &codec_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700805 if (dai_link->codec_of_node) {
806 if (codec->dev->of_node != dai_link->codec_of_node)
807 continue;
808 } else {
809 if (strcmp(codec->name, dai_link->codec_name))
810 continue;
811 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000812
Stephen Warren2610ab72011-12-07 13:58:27 -0700813 rtd->codec = codec;
814
815 /*
816 * CODEC found, so find CODEC DAI from registered DAIs from
817 * this CODEC
818 */
819 list_for_each_entry(codec_dai, &dai_list, list) {
820 if (codec->dev == codec_dai->dev &&
821 !strcmp(codec_dai->name,
822 dai_link->codec_dai_name)) {
823
824 rtd->codec_dai = codec_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000825 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000826 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000827
828 if (!rtd->codec_dai) {
829 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
Stephen Warren2610ab72011-12-07 13:58:27 -0700830 dai_link->codec_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000831 return -EPROBE_DEFER;
832 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000833 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000834
Mark Brownb19e6e72012-03-14 21:18:39 +0000835 if (!rtd->codec) {
836 dev_dbg(card->dev, "CODEC %s not registered\n",
837 dai_link->codec_name);
838 return -EPROBE_DEFER;
839 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100840
841 /* if there's no platform we match on the empty platform */
842 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700843 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100844 platform_name = "snd-soc-dummy";
845
Mark Brownb19e6e72012-03-14 21:18:39 +0000846 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000847 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700848 if (dai_link->platform_of_node) {
849 if (platform->dev->of_node !=
850 dai_link->platform_of_node)
851 continue;
852 } else {
853 if (strcmp(platform->name, platform_name))
854 continue;
855 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700856
857 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000858 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000859 if (!rtd->platform) {
860 dev_dbg(card->dev, "platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000861 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000862 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000863 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000864
865 card->num_rtd++;
866
867 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000868}
869
Jarkko Nikula589c3562010-12-06 16:27:07 +0200870static void soc_remove_codec(struct snd_soc_codec *codec)
871{
872 int err;
873
874 if (codec->driver->remove) {
875 err = codec->driver->remove(codec);
876 if (err < 0)
877 dev_err(codec->dev,
878 "asoc: failed to remove %s: %d\n",
879 codec->name, err);
880 }
881
882 /* Make sure all DAPM widgets are freed */
883 snd_soc_dapm_free(&codec->dapm);
884
885 soc_cleanup_codec_debugfs(codec);
886 codec->probed = 0;
887 list_del(&codec->card_list);
888 module_put(codec->dev->driver->owner);
889}
890
Liam Girdwood0168bf02011-06-07 16:08:05 +0100891static void soc_remove_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000892{
893 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
894 struct snd_soc_codec *codec = rtd->codec;
895 struct snd_soc_platform *platform = rtd->platform;
896 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
897 int err;
898
899 /* unregister the rtd device */
900 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -0800901 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
902 device_remove_file(rtd->dev, &dev_attr_codec_reg);
903 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000904 rtd->dev_registered = 0;
905 }
906
907 /* remove the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100908 if (codec_dai && codec_dai->probed &&
909 codec_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000910 if (codec_dai->driver->remove) {
911 err = codec_dai->driver->remove(codec_dai);
912 if (err < 0)
Fabio Estevam0837fc62012-02-17 19:40:38 -0200913 pr_err("asoc: failed to remove %s: %d\n",
914 codec_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000915 }
916 codec_dai->probed = 0;
917 list_del(&codec_dai->card_list);
918 }
919
920 /* remove the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100921 if (platform && platform->probed &&
922 platform->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000923 if (platform->driver->remove) {
924 err = platform->driver->remove(platform);
925 if (err < 0)
Fabio Estevam0837fc62012-02-17 19:40:38 -0200926 pr_err("asoc: failed to remove %s: %d\n",
927 platform->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000928 }
Liam Girdwood675c4962012-01-16 15:25:37 +0000929
930 /* Make sure all DAPM widgets are freed */
931 snd_soc_dapm_free(&platform->dapm);
932
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000933 soc_cleanup_platform_debugfs(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000934 platform->probed = 0;
935 list_del(&platform->card_list);
936 module_put(platform->dev->driver->owner);
937 }
938
939 /* remove the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100940 if (codec && codec->probed &&
941 codec->driver->remove_order == order)
Jarkko Nikula589c3562010-12-06 16:27:07 +0200942 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000943
944 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100945 if (cpu_dai && cpu_dai->probed &&
946 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000947 if (cpu_dai->driver->remove) {
948 err = cpu_dai->driver->remove(cpu_dai);
949 if (err < 0)
Fabio Estevam0837fc62012-02-17 19:40:38 -0200950 pr_err("asoc: failed to remove %s: %d\n",
951 cpu_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000952 }
953 cpu_dai->probed = 0;
954 list_del(&cpu_dai->card_list);
955 module_put(cpu_dai->dev->driver->owner);
956 }
957}
958
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900959static void soc_remove_dai_links(struct snd_soc_card *card)
960{
Liam Girdwood0168bf02011-06-07 16:08:05 +0100961 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900962
Liam Girdwood0168bf02011-06-07 16:08:05 +0100963 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
964 order++) {
965 for (dai = 0; dai < card->num_rtd; dai++)
966 soc_remove_dai_link(card, dai, order);
967 }
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900968 card->num_rtd = 0;
969}
970
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200971static void soc_set_name_prefix(struct snd_soc_card *card,
972 struct snd_soc_codec *codec)
973{
974 int i;
975
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000976 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200977 return;
978
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000979 for (i = 0; i < card->num_configs; i++) {
980 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200981 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
982 codec->name_prefix = map->name_prefix;
983 break;
984 }
985 }
986}
987
Jarkko Nikula589c3562010-12-06 16:27:07 +0200988static int soc_probe_codec(struct snd_soc_card *card,
989 struct snd_soc_codec *codec)
990{
991 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +0000992 const struct snd_soc_codec_driver *driver = codec->driver;
Mark Brown888df392012-02-16 19:37:51 -0800993 struct snd_soc_dai *dai;
Jarkko Nikula589c3562010-12-06 16:27:07 +0200994
995 codec->card = card;
996 codec->dapm.card = card;
997 soc_set_name_prefix(card, codec);
998
Jarkko Nikula70d293312011-01-27 16:24:22 +0200999 if (!try_module_get(codec->dev->driver->owner))
1000 return -ENODEV;
1001
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001002 soc_init_codec_debugfs(codec);
1003
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001004 if (driver->dapm_widgets)
1005 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1006 driver->num_dapm_widgets);
1007
Mark Brown888df392012-02-16 19:37:51 -08001008 /* Create DAPM widgets for each DAI stream */
1009 list_for_each_entry(dai, &dai_list, list) {
1010 if (dai->dev != codec->dev)
1011 continue;
1012
1013 snd_soc_dapm_new_dai_widgets(&codec->dapm, dai);
1014 }
1015
Mark Brown33c5f962011-08-22 18:40:30 +01001016 codec->dapm.idle_bias_off = driver->idle_bias_off;
1017
Mark Brown89b95ac02011-03-07 16:38:44 +00001018 if (driver->probe) {
1019 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001020 if (ret < 0) {
1021 dev_err(codec->dev,
1022 "asoc: failed to probe CODEC %s: %d\n",
1023 codec->name, ret);
Jarkko Nikula70d293312011-01-27 16:24:22 +02001024 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001025 }
1026 }
1027
Mark Brownb7af1da2011-04-07 19:18:44 +09001028 if (driver->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001029 snd_soc_add_codec_controls(codec, driver->controls,
Mark Brownb7af1da2011-04-07 19:18:44 +09001030 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001031 if (driver->dapm_routes)
1032 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1033 driver->num_dapm_routes);
1034
Jarkko Nikula589c3562010-12-06 16:27:07 +02001035 /* mark codec as probed and add to card codec list */
1036 codec->probed = 1;
1037 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001038 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001039
Jarkko Nikula70d293312011-01-27 16:24:22 +02001040 return 0;
1041
1042err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001043 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d293312011-01-27 16:24:22 +02001044 module_put(codec->dev->driver->owner);
1045
Jarkko Nikula589c3562010-12-06 16:27:07 +02001046 return ret;
1047}
1048
Liam Girdwood956245e2011-07-01 16:54:08 +01001049static int soc_probe_platform(struct snd_soc_card *card,
1050 struct snd_soc_platform *platform)
1051{
1052 int ret = 0;
1053 const struct snd_soc_platform_driver *driver = platform->driver;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001054 struct snd_soc_dai *dai;
Liam Girdwood956245e2011-07-01 16:54:08 +01001055
1056 platform->card = card;
Liam Girdwoodb7950642011-07-04 22:10:52 +01001057 platform->dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +01001058
1059 if (!try_module_get(platform->dev->driver->owner))
1060 return -ENODEV;
1061
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +00001062 soc_init_platform_debugfs(platform);
1063
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001064 if (driver->dapm_widgets)
1065 snd_soc_dapm_new_controls(&platform->dapm,
1066 driver->dapm_widgets, driver->num_dapm_widgets);
1067
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001068 /* Create DAPM widgets for each DAI stream */
1069 list_for_each_entry(dai, &dai_list, list) {
1070 if (dai->dev != platform->dev)
1071 continue;
1072
1073 snd_soc_dapm_new_dai_widgets(&platform->dapm, dai);
1074 }
1075
Stephen Warren3fec6b62012-04-05 12:28:01 -06001076 platform->dapm.idle_bias_off = 1;
1077
Liam Girdwood956245e2011-07-01 16:54:08 +01001078 if (driver->probe) {
1079 ret = driver->probe(platform);
1080 if (ret < 0) {
1081 dev_err(platform->dev,
1082 "asoc: failed to probe platform %s: %d\n",
1083 platform->name, ret);
1084 goto err_probe;
1085 }
1086 }
1087
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001088 if (driver->controls)
1089 snd_soc_add_platform_controls(platform, driver->controls,
1090 driver->num_controls);
1091 if (driver->dapm_routes)
1092 snd_soc_dapm_add_routes(&platform->dapm, driver->dapm_routes,
1093 driver->num_dapm_routes);
1094
Liam Girdwood956245e2011-07-01 16:54:08 +01001095 /* mark platform as probed and add to card platform list */
1096 platform->probed = 1;
1097 list_add(&platform->card_list, &card->platform_dev_list);
Liam Girdwoodb7950642011-07-04 22:10:52 +01001098 list_add(&platform->dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001099
1100 return 0;
1101
1102err_probe:
Liam Girdwood02db1102012-03-02 16:13:44 +00001103 soc_cleanup_platform_debugfs(platform);
Liam Girdwood956245e2011-07-01 16:54:08 +01001104 module_put(platform->dev->driver->owner);
1105
1106 return ret;
1107}
1108
Mark Brown36ae1a92012-01-06 17:12:45 -08001109static void rtd_release(struct device *dev)
1110{
1111 kfree(dev);
1112}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001113
Jarkko Nikula589c3562010-12-06 16:27:07 +02001114static int soc_post_component_init(struct snd_soc_card *card,
1115 struct snd_soc_codec *codec,
1116 int num, int dailess)
1117{
1118 struct snd_soc_dai_link *dai_link = NULL;
1119 struct snd_soc_aux_dev *aux_dev = NULL;
1120 struct snd_soc_pcm_runtime *rtd;
1121 const char *temp, *name;
1122 int ret = 0;
1123
1124 if (!dailess) {
1125 dai_link = &card->dai_link[num];
1126 rtd = &card->rtd[num];
1127 name = dai_link->name;
1128 } else {
1129 aux_dev = &card->aux_dev[num];
1130 rtd = &card->rtd_aux[num];
1131 name = aux_dev->name;
1132 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001133 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001134
Mark Brown4b1cfcb2011-10-18 00:11:49 +01001135 /* Make sure all DAPM widgets are instantiated */
1136 snd_soc_dapm_new_widgets(&codec->dapm);
1137
Jarkko Nikula589c3562010-12-06 16:27:07 +02001138 /* machine controls, routes and widgets are not prefixed */
1139 temp = codec->name_prefix;
1140 codec->name_prefix = NULL;
1141
1142 /* do machine specific initialization */
1143 if (!dailess && dai_link->init)
1144 ret = dai_link->init(rtd);
1145 else if (dailess && aux_dev->init)
1146 ret = aux_dev->init(&codec->dapm);
1147 if (ret < 0) {
1148 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1149 return ret;
1150 }
1151 codec->name_prefix = temp;
1152
Jarkko Nikula589c3562010-12-06 16:27:07 +02001153 /* register the rtd device */
1154 rtd->codec = codec;
Mark Brown36ae1a92012-01-06 17:12:45 -08001155
1156 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1157 if (!rtd->dev)
1158 return -ENOMEM;
1159 device_initialize(rtd->dev);
1160 rtd->dev->parent = card->dev;
1161 rtd->dev->release = rtd_release;
1162 rtd->dev->init_name = name;
1163 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001164 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001165 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1166 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1167 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1168 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001169 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001170 if (ret < 0) {
1171 dev_err(card->dev,
1172 "asoc: failed to register runtime device: %d\n", ret);
1173 return ret;
1174 }
1175 rtd->dev_registered = 1;
1176
1177 /* add DAPM sysfs entries for this codec */
Mark Brown36ae1a92012-01-06 17:12:45 -08001178 ret = snd_soc_dapm_sys_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001179 if (ret < 0)
1180 dev_err(codec->dev,
1181 "asoc: failed to add codec dapm sysfs entries: %d\n",
1182 ret);
1183
1184 /* add codec sysfs entries */
Mark Brown36ae1a92012-01-06 17:12:45 -08001185 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001186 if (ret < 0)
1187 dev_err(codec->dev,
1188 "asoc: failed to add codec sysfs files: %d\n", ret);
1189
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001190#ifdef CONFIG_DEBUG_FS
1191 /* add DPCM sysfs entries */
1192 if (!dai_link->dynamic)
1193 goto out;
1194
1195 ret = soc_dpcm_debugfs_add(rtd);
1196 if (ret < 0)
1197 dev_err(rtd->dev, "asoc: failed to add dpcm sysfs entries: %d\n", ret);
1198
1199out:
1200#endif
Jarkko Nikula589c3562010-12-06 16:27:07 +02001201 return 0;
1202}
1203
Liam Girdwood0168bf02011-06-07 16:08:05 +01001204static int soc_probe_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001205{
1206 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1207 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1208 struct snd_soc_codec *codec = rtd->codec;
1209 struct snd_soc_platform *platform = rtd->platform;
Mark Brownc74184e2012-04-04 22:12:09 +01001210 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1211 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1212 struct snd_soc_dapm_widget *play_w, *capture_w;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001213 int ret;
1214
Liam Girdwood0168bf02011-06-07 16:08:05 +01001215 dev_dbg(card->dev, "probe %s dai link %d late %d\n",
1216 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001217
1218 /* config components */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001219 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001220 codec_dai->card = card;
1221 cpu_dai->card = card;
1222
1223 /* set default power off timeout */
1224 rtd->pmdown_time = pmdown_time;
1225
1226 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001227 if (!cpu_dai->probed &&
1228 cpu_dai->driver->probe_order == order) {
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001229 cpu_dai->dapm.card = card;
Liam Girdwood61b61e32011-05-24 13:57:43 +01001230 if (!try_module_get(cpu_dai->dev->driver->owner))
1231 return -ENODEV;
1232
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001233 snd_soc_dapm_new_dai_widgets(&cpu_dai->dapm, cpu_dai);
1234
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001235 if (cpu_dai->driver->probe) {
1236 ret = cpu_dai->driver->probe(cpu_dai);
1237 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001238 pr_err("asoc: failed to probe CPU DAI %s: %d\n",
1239 cpu_dai->name, ret);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001240 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001241 return ret;
1242 }
1243 }
1244 cpu_dai->probed = 1;
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001245 /* mark cpu_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001246 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1247 }
1248
1249 /* probe the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001250 if (!codec->probed &&
1251 codec->driver->probe_order == order) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001252 ret = soc_probe_codec(card, codec);
1253 if (ret < 0)
1254 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001255 }
1256
1257 /* probe the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001258 if (!platform->probed &&
1259 platform->driver->probe_order == order) {
Liam Girdwood956245e2011-07-01 16:54:08 +01001260 ret = soc_probe_platform(card, platform);
1261 if (ret < 0)
1262 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001263 }
1264
1265 /* probe the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001266 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001267 if (codec_dai->driver->probe) {
1268 ret = codec_dai->driver->probe(codec_dai);
1269 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001270 pr_err("asoc: failed to probe CODEC DAI %s: %d\n",
1271 codec_dai->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001272 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001273 }
1274 }
1275
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001276 /* mark codec_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001277 codec_dai->probed = 1;
1278 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001279 }
1280
Liam Girdwood0168bf02011-06-07 16:08:05 +01001281 /* complete DAI probe during last probe */
1282 if (order != SND_SOC_COMP_ORDER_LAST)
1283 return 0;
1284
Jarkko Nikula589c3562010-12-06 16:27:07 +02001285 ret = soc_post_component_init(card, codec, num, 0);
1286 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001287 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001288
Mark Brown36ae1a92012-01-06 17:12:45 -08001289 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001290 if (ret < 0)
Fabio Estevam0837fc62012-02-17 19:40:38 -02001291 pr_warn("asoc: failed to add pmdown_time sysfs:%d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001292
Mark Brownc74184e2012-04-04 22:12:09 +01001293 if (!dai_link->params) {
1294 /* create the pcm */
1295 ret = soc_new_pcm(rtd, num);
1296 if (ret < 0) {
1297 pr_err("asoc: can't create pcm %s :%d\n",
1298 dai_link->stream_name, ret);
1299 return ret;
1300 }
1301 } else {
1302 /* link the DAI widgets */
1303 play_w = codec_dai->playback_widget;
1304 capture_w = cpu_dai->capture_widget;
1305 if (play_w && capture_w) {
1306 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1307 capture_w, play_w);
1308 if (ret != 0) {
1309 dev_err(card->dev, "Can't link %s to %s: %d\n",
1310 play_w->name, capture_w->name, ret);
1311 return ret;
1312 }
1313 }
1314
1315 play_w = cpu_dai->playback_widget;
1316 capture_w = codec_dai->capture_widget;
1317 if (play_w && capture_w) {
1318 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1319 capture_w, play_w);
1320 if (ret != 0) {
1321 dev_err(card->dev, "Can't link %s to %s: %d\n",
1322 play_w->name, capture_w->name, ret);
1323 return ret;
1324 }
1325 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001326 }
1327
1328 /* add platform data for AC97 devices */
1329 if (rtd->codec_dai->driver->ac97_control)
1330 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1331
1332 return 0;
1333}
1334
1335#ifdef CONFIG_SND_SOC_AC97_BUS
1336static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1337{
1338 int ret;
1339
1340 /* Only instantiate AC97 if not already done by the adaptor
1341 * for the generic AC97 subsystem.
1342 */
1343 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001344 /*
1345 * It is possible that the AC97 device is already registered to
1346 * the device subsystem. This happens when the device is created
1347 * via snd_ac97_mixer(). Currently only SoC codec that does so
1348 * is the generic AC97 glue but others migh emerge.
1349 *
1350 * In those cases we don't try to register the device again.
1351 */
1352 if (!rtd->codec->ac97_created)
1353 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001354
1355 ret = soc_ac97_dev_register(rtd->codec);
1356 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001357 pr_err("asoc: AC97 device register failed:%d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001358 return ret;
1359 }
1360
1361 rtd->codec->ac97_registered = 1;
1362 }
1363 return 0;
1364}
1365
1366static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1367{
1368 if (codec->ac97_registered) {
1369 soc_ac97_dev_unregister(codec);
1370 codec->ac97_registered = 0;
1371 }
1372}
1373#endif
1374
Mark Brownb19e6e72012-03-14 21:18:39 +00001375static int soc_check_aux_dev(struct snd_soc_card *card, int num)
1376{
1377 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1378 struct snd_soc_codec *codec;
1379
1380 /* find CODEC from registered CODECs*/
1381 list_for_each_entry(codec, &codec_list, list) {
1382 if (!strcmp(codec->name, aux_dev->codec_name))
1383 return 0;
1384 }
1385
1386 return -EPROBE_DEFER;
1387}
1388
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001389static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1390{
1391 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001392 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001393 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001394
1395 /* find CODEC from registered CODECs*/
1396 list_for_each_entry(codec, &codec_list, list) {
1397 if (!strcmp(codec->name, aux_dev->codec_name)) {
1398 if (codec->probed) {
1399 dev_err(codec->dev,
1400 "asoc: codec already probed");
1401 ret = -EBUSY;
1402 goto out;
1403 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001404 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001405 }
1406 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001407 /* codec not found */
1408 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
Mark Brownb19e6e72012-03-14 21:18:39 +00001409 return -EPROBE_DEFER;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001410
Jarkko Nikula676ad982010-12-03 09:18:22 +02001411found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001412 ret = soc_probe_codec(card, codec);
1413 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001414 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001415
Jarkko Nikula589c3562010-12-06 16:27:07 +02001416 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001417
1418out:
1419 return ret;
1420}
1421
1422static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1423{
1424 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1425 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001426
1427 /* unregister the rtd device */
1428 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001429 device_remove_file(rtd->dev, &dev_attr_codec_reg);
1430 device_del(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001431 rtd->dev_registered = 0;
1432 }
1433
Jarkko Nikula589c3562010-12-06 16:27:07 +02001434 if (codec && codec->probed)
1435 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001436}
1437
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001438static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1439 enum snd_soc_compress_type compress_type)
1440{
1441 int ret;
1442
1443 if (codec->cache_init)
1444 return 0;
1445
1446 /* override the compress_type if necessary */
1447 if (compress_type && codec->compress_type != compress_type)
1448 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001449 ret = snd_soc_cache_init(codec);
1450 if (ret < 0) {
1451 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1452 ret);
1453 return ret;
1454 }
1455 codec->cache_init = 1;
1456 return 0;
1457}
1458
Mark Brownb19e6e72012-03-14 21:18:39 +00001459static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001460{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001461 struct snd_soc_codec *codec;
1462 struct snd_soc_codec_conf *codec_conf;
1463 enum snd_soc_compress_type compress_type;
Mark Brown75d9ac42011-09-27 16:41:01 +01001464 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001465 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001466
Liam Girdwood01b9d992012-03-07 10:38:25 +00001467 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001468
Mark Brownb19e6e72012-03-14 21:18:39 +00001469 /* bind DAIs */
1470 for (i = 0; i < card->num_links; i++) {
1471 ret = soc_bind_dai_link(card, i);
1472 if (ret != 0)
1473 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001474 }
1475
Mark Brownb19e6e72012-03-14 21:18:39 +00001476 /* check aux_devs too */
1477 for (i = 0; i < card->num_aux_devs; i++) {
1478 ret = soc_check_aux_dev(card, i);
1479 if (ret != 0)
1480 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001481 }
1482
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001483 /* initialize the register cache for each available codec */
1484 list_for_each_entry(codec, &codec_list, list) {
1485 if (codec->cache_init)
1486 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001487 /* by default we don't override the compress_type */
1488 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001489 /* check to see if we need to override the compress_type */
1490 for (i = 0; i < card->num_configs; ++i) {
1491 codec_conf = &card->codec_conf[i];
1492 if (!strcmp(codec->name, codec_conf->dev_name)) {
1493 compress_type = codec_conf->compress_type;
1494 if (compress_type && compress_type
1495 != codec->compress_type)
1496 break;
1497 }
1498 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001499 ret = snd_soc_init_codec_cache(codec, compress_type);
Mark Brownb19e6e72012-03-14 21:18:39 +00001500 if (ret < 0)
1501 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001502 }
1503
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001504 /* card bind complete so register a sound card */
1505 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1506 card->owner, 0, &card->snd_card);
1507 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001508 pr_err("asoc: can't create sound card for card %s: %d\n",
1509 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001510 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001511 }
1512 card->snd_card->dev = card->dev;
1513
Mark Browne37a4972011-03-02 18:21:57 +00001514 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1515 card->dapm.dev = card->dev;
1516 card->dapm.card = card;
1517 list_add(&card->dapm.list, &card->dapm_list);
1518
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001519#ifdef CONFIG_DEBUG_FS
1520 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1521#endif
1522
Mark Brown88ee1c62011-02-02 10:43:26 +00001523#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001524 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001525 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001526#endif
Andy Green6ed25972008-06-13 16:24:05 +01001527
Mark Brown9a841eb2011-04-12 17:51:37 -07001528 if (card->dapm_widgets)
1529 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1530 card->num_dapm_widgets);
1531
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001532 /* initialise the sound card only once */
1533 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001534 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001535 if (ret < 0)
1536 goto card_probe_error;
1537 }
1538
Liam Girdwood0168bf02011-06-07 16:08:05 +01001539 /* early DAI link probe */
1540 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1541 order++) {
1542 for (i = 0; i < card->num_links; i++) {
1543 ret = soc_probe_dai_link(card, i, order);
1544 if (ret < 0) {
1545 pr_err("asoc: failed to instantiate card %s: %d\n",
Mark Brown321de0d2010-09-21 15:09:37 +01001546 card->name, ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001547 goto probe_dai_err;
1548 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001549 }
1550 }
1551
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001552 for (i = 0; i < card->num_aux_devs; i++) {
1553 ret = soc_probe_aux_dev(card, i);
1554 if (ret < 0) {
1555 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1556 card->name, ret);
1557 goto probe_aux_dev_err;
1558 }
1559 }
1560
Mark Brown888df392012-02-16 19:37:51 -08001561 snd_soc_dapm_link_dai_widgets(card);
1562
Mark Brownb7af1da2011-04-07 19:18:44 +09001563 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001564 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001565
Mark Brownb8ad29d2011-03-02 18:35:51 +00001566 if (card->dapm_routes)
1567 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1568 card->num_dapm_routes);
1569
Mark Brownb90d2f92011-10-10 13:38:06 +01001570 snd_soc_dapm_new_widgets(&card->dapm);
1571
Mark Brown75d9ac42011-09-27 16:41:01 +01001572 for (i = 0; i < card->num_links; i++) {
1573 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001574 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001575
Mark Brownf04209a2012-04-09 16:29:21 +01001576 if (dai_fmt) {
Mark Brown75d9ac42011-09-27 16:41:01 +01001577 ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001578 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001579 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001580 dev_warn(card->rtd[i].codec_dai->dev,
1581 "Failed to set DAI format: %d\n",
1582 ret);
Mark Brownf04209a2012-04-09 16:29:21 +01001583 }
1584
1585 /* If this is a regular CPU link there will be a platform */
1586 if (dai_fmt && dai_link->platform_name) {
1587 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1588 dai_fmt);
1589 if (ret != 0 && ret != -ENOTSUPP)
1590 dev_warn(card->rtd[i].cpu_dai->dev,
1591 "Failed to set DAI format: %d\n",
1592 ret);
1593 } else if (dai_fmt) {
1594 /* Flip the polarity for the "CPU" end */
1595 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1596 switch (dai_link->dai_fmt &
1597 SND_SOC_DAIFMT_MASTER_MASK) {
1598 case SND_SOC_DAIFMT_CBM_CFM:
1599 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1600 break;
1601 case SND_SOC_DAIFMT_CBM_CFS:
1602 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1603 break;
1604 case SND_SOC_DAIFMT_CBS_CFM:
1605 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1606 break;
1607 case SND_SOC_DAIFMT_CBS_CFS:
1608 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1609 break;
1610 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001611
1612 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001613 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001614 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001615 dev_warn(card->rtd[i].cpu_dai->dev,
1616 "Failed to set DAI format: %d\n",
1617 ret);
1618 }
1619 }
1620
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001621 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001622 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001623 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1624 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001625 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1626 "%s", card->driver_name ? card->driver_name : card->name);
1627 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1628 switch (card->snd_card->driver[i]) {
1629 case '_':
1630 case '-':
1631 case '\0':
1632 break;
1633 default:
1634 if (!isalnum(card->snd_card->driver[i]))
1635 card->snd_card->driver[i] = '_';
1636 break;
1637 }
1638 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001639
Mark Brown28e9ad92011-03-02 18:36:34 +00001640 if (card->late_probe) {
1641 ret = card->late_probe(card);
1642 if (ret < 0) {
1643 dev_err(card->dev, "%s late_probe() failed: %d\n",
1644 card->name, ret);
1645 goto probe_aux_dev_err;
1646 }
1647 }
1648
Mark Brown2dc00212011-10-08 13:59:44 +01001649 snd_soc_dapm_new_widgets(&card->dapm);
1650
Stephen Warren16332812011-11-23 12:42:04 -07001651 if (card->fully_routed)
Mark Brownb05d8dc2011-11-27 19:38:34 +00001652 list_for_each_entry(codec, &card->codec_dev_list, card_list)
Stephen Warren16332812011-11-23 12:42:04 -07001653 snd_soc_dapm_auto_nc_codec_pins(codec);
1654
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001655 ret = snd_card_register(card->snd_card);
1656 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001657 pr_err("asoc: failed to register soundcard for %s: %d\n",
1658 card->name, ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001659 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001660 }
1661
1662#ifdef CONFIG_SND_SOC_AC97_BUS
1663 /* register any AC97 codecs */
1664 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001665 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1666 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001667 pr_err("asoc: failed to register AC97 %s: %d\n",
1668 card->name, ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001669 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001670 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001671 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001672 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001673 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001674#endif
1675
Mark Brown435c5e22008-12-04 15:32:53 +00001676 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001677 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001678 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001679
1680 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001681
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001682probe_aux_dev_err:
1683 for (i = 0; i < card->num_aux_devs; i++)
1684 soc_remove_aux_dev(card, i);
1685
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001686probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001687 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001688
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001689card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001690 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001691 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001692
1693 snd_card_free(card->snd_card);
1694
Mark Brownb19e6e72012-03-14 21:18:39 +00001695base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001696 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001697
Mark Brownb19e6e72012-03-14 21:18:39 +00001698 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001699}
1700
1701/* probes a new socdev */
1702static int soc_probe(struct platform_device *pdev)
1703{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001704 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001705 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001706
Vinod Koul70a7ca32011-01-14 19:22:48 +05301707 /*
1708 * no card, so machine driver should be registering card
1709 * we should not be here in that case so ret error
1710 */
1711 if (!card)
1712 return -EINVAL;
1713
Mark Brownfe4085e2012-03-02 13:07:41 +00001714 dev_warn(&pdev->dev,
1715 "ASoC machine %s should use snd_soc_register_card()\n",
1716 card->name);
1717
Mark Brown435c5e22008-12-04 15:32:53 +00001718 /* Bodge while we unpick instantiation */
1719 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001720
Mark Brown435c5e22008-12-04 15:32:53 +00001721 ret = snd_soc_register_card(card);
1722 if (ret != 0) {
1723 dev_err(&pdev->dev, "Failed to register card\n");
1724 return ret;
1725 }
1726
1727 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001728}
1729
Vinod Koulb0e26482011-01-13 22:48:02 +05301730static int soc_cleanup_card_resources(struct snd_soc_card *card)
1731{
Vinod Koulb0e26482011-01-13 22:48:02 +05301732 int i;
1733
1734 /* make sure any delayed work runs */
1735 for (i = 0; i < card->num_rtd; i++) {
1736 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1737 flush_delayed_work_sync(&rtd->delayed_work);
1738 }
1739
1740 /* remove auxiliary devices */
1741 for (i = 0; i < card->num_aux_devs; i++)
1742 soc_remove_aux_dev(card, i);
1743
1744 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001745 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301746
1747 soc_cleanup_card_debugfs(card);
1748
1749 /* remove the card */
1750 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001751 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301752
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001753 snd_soc_dapm_free(&card->dapm);
1754
Vinod Koulb0e26482011-01-13 22:48:02 +05301755 snd_card_free(card->snd_card);
1756 return 0;
1757
1758}
1759
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001760/* removes a socdev */
1761static int soc_remove(struct platform_device *pdev)
1762{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001763 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001764
Mark Brownc5af3a22008-11-28 13:29:45 +00001765 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001766 return 0;
1767}
1768
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001769int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001770{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001771 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001772 int i;
Mark Brown51737472009-06-22 13:16:51 +01001773
1774 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001775 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001776
1777 /* Flush out pmdown_time work - we actually do want to run it
1778 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001779 for (i = 0; i < card->num_rtd; i++) {
1780 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01001781 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001782 }
Mark Brown51737472009-06-22 13:16:51 +01001783
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001784 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001785
1786 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001787}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001788EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001789
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001790const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301791 .suspend = snd_soc_suspend,
1792 .resume = snd_soc_resume,
1793 .freeze = snd_soc_suspend,
1794 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001795 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301796 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001797};
Stephen Warrendeb26072011-04-05 19:35:30 -06001798EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001799
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001800/* ASoC platform driver */
1801static struct platform_driver soc_driver = {
1802 .driver = {
1803 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001804 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001805 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001806 },
1807 .probe = soc_probe,
1808 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001809};
1810
Mark Brown096e49d2009-07-05 15:12:22 +01001811/**
1812 * snd_soc_codec_volatile_register: Report if a register is volatile.
1813 *
1814 * @codec: CODEC to query.
1815 * @reg: Register to query.
1816 *
1817 * Boolean function indiciating if a CODEC register is volatile.
1818 */
Mark Brown181e0552011-01-24 14:05:25 +00001819int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1820 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01001821{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00001822 if (codec->volatile_register)
1823 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01001824 else
1825 return 0;
1826}
1827EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1828
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001829/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001830 * snd_soc_codec_readable_register: Report if a register is readable.
1831 *
1832 * @codec: CODEC to query.
1833 * @reg: Register to query.
1834 *
1835 * Boolean function indicating if a CODEC register is readable.
1836 */
1837int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
1838 unsigned int reg)
1839{
1840 if (codec->readable_register)
1841 return codec->readable_register(codec, reg);
1842 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001843 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001844}
1845EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
1846
1847/**
1848 * snd_soc_codec_writable_register: Report if a register is writable.
1849 *
1850 * @codec: CODEC to query.
1851 * @reg: Register to query.
1852 *
1853 * Boolean function indicating if a CODEC register is writable.
1854 */
1855int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
1856 unsigned int reg)
1857{
1858 if (codec->writable_register)
1859 return codec->writable_register(codec, reg);
1860 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001861 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001862}
1863EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
1864
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001865int snd_soc_platform_read(struct snd_soc_platform *platform,
1866 unsigned int reg)
1867{
1868 unsigned int ret;
1869
1870 if (!platform->driver->read) {
1871 dev_err(platform->dev, "platform has no read back\n");
1872 return -1;
1873 }
1874
1875 ret = platform->driver->read(platform, reg);
1876 dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001877 trace_snd_soc_preg_read(platform, reg, ret);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001878
1879 return ret;
1880}
1881EXPORT_SYMBOL_GPL(snd_soc_platform_read);
1882
1883int snd_soc_platform_write(struct snd_soc_platform *platform,
1884 unsigned int reg, unsigned int val)
1885{
1886 if (!platform->driver->write) {
1887 dev_err(platform->dev, "platform has no write back\n");
1888 return -1;
1889 }
1890
1891 dev_dbg(platform->dev, "write %x = %x\n", reg, val);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001892 trace_snd_soc_preg_write(platform, reg, val);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001893 return platform->driver->write(platform, reg, val);
1894}
1895EXPORT_SYMBOL_GPL(snd_soc_platform_write);
1896
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001897/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001898 * snd_soc_new_ac97_codec - initailise AC97 device
1899 * @codec: audio codec
1900 * @ops: AC97 bus operations
1901 * @num: AC97 codec number
1902 *
1903 * Initialises AC97 codec resources for use by ad-hoc devices only.
1904 */
1905int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1906 struct snd_ac97_bus_ops *ops, int num)
1907{
1908 mutex_lock(&codec->mutex);
1909
1910 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1911 if (codec->ac97 == NULL) {
1912 mutex_unlock(&codec->mutex);
1913 return -ENOMEM;
1914 }
1915
1916 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1917 if (codec->ac97->bus == NULL) {
1918 kfree(codec->ac97);
1919 codec->ac97 = NULL;
1920 mutex_unlock(&codec->mutex);
1921 return -ENOMEM;
1922 }
1923
1924 codec->ac97->bus->ops = ops;
1925 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03001926
1927 /*
1928 * Mark the AC97 device to be created by us. This way we ensure that the
1929 * device will be registered with the device subsystem later on.
1930 */
1931 codec->ac97_created = 1;
1932
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001933 mutex_unlock(&codec->mutex);
1934 return 0;
1935}
1936EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1937
1938/**
1939 * snd_soc_free_ac97_codec - free AC97 codec device
1940 * @codec: audio codec
1941 *
1942 * Frees AC97 codec device resources.
1943 */
1944void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1945{
1946 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001947#ifdef CONFIG_SND_SOC_AC97_BUS
1948 soc_unregister_ac97_dai_link(codec);
1949#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001950 kfree(codec->ac97->bus);
1951 kfree(codec->ac97);
1952 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03001953 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001954 mutex_unlock(&codec->mutex);
1955}
1956EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1957
Mark Brownc3753702010-11-01 15:41:57 -04001958unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
1959{
1960 unsigned int ret;
1961
Mark Brownc3acec22010-12-02 16:15:29 +00001962 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04001963 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04001964 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04001965
1966 return ret;
1967}
1968EXPORT_SYMBOL_GPL(snd_soc_read);
1969
1970unsigned int snd_soc_write(struct snd_soc_codec *codec,
1971 unsigned int reg, unsigned int val)
1972{
1973 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04001974 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00001975 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04001976}
1977EXPORT_SYMBOL_GPL(snd_soc_write);
1978
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00001979unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
1980 unsigned int reg, const void *data, size_t len)
1981{
1982 return codec->bulk_write_raw(codec, reg, data, len);
1983}
1984EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
1985
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001986/**
1987 * snd_soc_update_bits - update codec register bits
1988 * @codec: audio codec
1989 * @reg: codec register
1990 * @mask: register mask
1991 * @value: new value
1992 *
1993 * Writes new register value.
1994 *
Timur Tabi180c3292011-01-10 15:58:13 -06001995 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001996 */
1997int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001998 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001999{
Mark Brown8a713da2011-12-03 12:33:55 +00002000 bool change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002001 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002002 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002003
Mark Brown8a713da2011-12-03 12:33:55 +00002004 if (codec->using_regmap) {
2005 ret = regmap_update_bits_check(codec->control_data, reg,
2006 mask, value, &change);
2007 } else {
2008 ret = snd_soc_read(codec, reg);
Timur Tabi180c3292011-01-10 15:58:13 -06002009 if (ret < 0)
2010 return ret;
Mark Brown8a713da2011-12-03 12:33:55 +00002011
2012 old = ret;
2013 new = (old & ~mask) | (value & mask);
2014 change = old != new;
2015 if (change)
2016 ret = snd_soc_write(codec, reg, new);
Timur Tabi180c3292011-01-10 15:58:13 -06002017 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002018
Mark Brown8a713da2011-12-03 12:33:55 +00002019 if (ret < 0)
2020 return ret;
2021
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002022 return change;
2023}
2024EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2025
2026/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002027 * snd_soc_update_bits_locked - update codec register bits
2028 * @codec: audio codec
2029 * @reg: codec register
2030 * @mask: register mask
2031 * @value: new value
2032 *
2033 * Writes new register value, and takes the codec mutex.
2034 *
2035 * Returns 1 for change else 0.
2036 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002037int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2038 unsigned short reg, unsigned int mask,
2039 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002040{
2041 int change;
2042
2043 mutex_lock(&codec->mutex);
2044 change = snd_soc_update_bits(codec, reg, mask, value);
2045 mutex_unlock(&codec->mutex);
2046
2047 return change;
2048}
Mark Browndd1b3d52009-12-04 14:22:03 +00002049EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002050
2051/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002052 * snd_soc_test_bits - test register for change
2053 * @codec: audio codec
2054 * @reg: codec register
2055 * @mask: register mask
2056 * @value: new value
2057 *
2058 * Tests a register with a new value and checks if the new value is
2059 * different from the old value.
2060 *
2061 * Returns 1 for change else 0.
2062 */
2063int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002064 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002065{
2066 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002067 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002068
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002069 old = snd_soc_read(codec, reg);
2070 new = (old & ~mask) | value;
2071 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002072
2073 return change;
2074}
2075EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2076
2077/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002078 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2079 * @substream: the pcm substream
2080 * @hw: the hardware parameters
2081 *
2082 * Sets the substream runtime hardware parameters.
2083 */
2084int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2085 const struct snd_pcm_hardware *hw)
2086{
2087 struct snd_pcm_runtime *runtime = substream->runtime;
2088 runtime->hw.info = hw->info;
2089 runtime->hw.formats = hw->formats;
2090 runtime->hw.period_bytes_min = hw->period_bytes_min;
2091 runtime->hw.period_bytes_max = hw->period_bytes_max;
2092 runtime->hw.periods_min = hw->periods_min;
2093 runtime->hw.periods_max = hw->periods_max;
2094 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2095 runtime->hw.fifo_size = hw->fifo_size;
2096 return 0;
2097}
2098EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2099
2100/**
2101 * snd_soc_cnew - create new control
2102 * @_template: control template
2103 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002104 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002105 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002106 *
2107 * Create a new mixer control from a template control.
2108 *
2109 * Returns 0 for success, else error.
2110 */
2111struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002112 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002113 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002114{
2115 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002116 struct snd_kcontrol *kcontrol;
2117 char *name = NULL;
2118 int name_len;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002119
2120 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002121 template.index = 0;
2122
Mark Brownefb7ac32011-03-08 17:23:24 +00002123 if (!long_name)
2124 long_name = template.name;
2125
2126 if (prefix) {
2127 name_len = strlen(long_name) + strlen(prefix) + 2;
Axel Lin57cf9d42011-08-20 11:03:44 +08002128 name = kmalloc(name_len, GFP_KERNEL);
Mark Brownefb7ac32011-03-08 17:23:24 +00002129 if (!name)
2130 return NULL;
2131
2132 snprintf(name, name_len, "%s %s", prefix, long_name);
2133
2134 template.name = name;
2135 } else {
2136 template.name = long_name;
2137 }
2138
2139 kcontrol = snd_ctl_new1(&template, data);
2140
2141 kfree(name);
2142
2143 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002144}
2145EXPORT_SYMBOL_GPL(snd_soc_cnew);
2146
Liam Girdwood022658b2012-02-03 17:43:09 +00002147static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2148 const struct snd_kcontrol_new *controls, int num_controls,
2149 const char *prefix, void *data)
2150{
2151 int err, i;
2152
2153 for (i = 0; i < num_controls; i++) {
2154 const struct snd_kcontrol_new *control = &controls[i];
2155 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2156 control->name, prefix));
2157 if (err < 0) {
2158 dev_err(dev, "Failed to add %s: %d\n", control->name, err);
2159 return err;
2160 }
2161 }
2162
2163 return 0;
2164}
2165
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002166/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002167 * snd_soc_add_codec_controls - add an array of controls to a codec.
2168 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002169 * duplicating this code.
2170 *
2171 * @codec: codec to add controls to
2172 * @controls: array of controls to add
2173 * @num_controls: number of elements in the array
2174 *
2175 * Return 0 for success, else error.
2176 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002177int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Ian Molton3e8e1952009-01-09 00:23:21 +00002178 const struct snd_kcontrol_new *controls, int num_controls)
2179{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002180 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002181
Liam Girdwood022658b2012-02-03 17:43:09 +00002182 return snd_soc_add_controls(card, codec->dev, controls, num_controls,
2183 codec->name_prefix, codec);
Ian Molton3e8e1952009-01-09 00:23:21 +00002184}
Liam Girdwood022658b2012-02-03 17:43:09 +00002185EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002186
2187/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002188 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002189 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002190 *
2191 * @platform: platform to add controls to
2192 * @controls: array of controls to add
2193 * @num_controls: number of elements in the array
2194 *
2195 * Return 0 for success, else error.
2196 */
2197int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2198 const struct snd_kcontrol_new *controls, int num_controls)
2199{
2200 struct snd_card *card = platform->card->snd_card;
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002201
Liam Girdwood022658b2012-02-03 17:43:09 +00002202 return snd_soc_add_controls(card, platform->dev, controls, num_controls,
2203 NULL, platform);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002204}
2205EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2206
2207/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002208 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2209 * Convenience function to add a list of controls.
2210 *
2211 * @soc_card: SoC card to add controls to
2212 * @controls: array of controls to add
2213 * @num_controls: number of elements in the array
2214 *
2215 * Return 0 for success, else error.
2216 */
2217int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2218 const struct snd_kcontrol_new *controls, int num_controls)
2219{
2220 struct snd_card *card = soc_card->snd_card;
2221
2222 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2223 NULL, soc_card);
2224}
2225EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2226
2227/**
2228 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2229 * Convienience function to add a list of controls.
2230 *
2231 * @dai: DAI to add controls to
2232 * @controls: array of controls to add
2233 * @num_controls: number of elements in the array
2234 *
2235 * Return 0 for success, else error.
2236 */
2237int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2238 const struct snd_kcontrol_new *controls, int num_controls)
2239{
2240 struct snd_card *card = dai->card->snd_card;
2241
2242 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2243 NULL, dai);
2244}
2245EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2246
2247/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002248 * snd_soc_info_enum_double - enumerated double mixer info callback
2249 * @kcontrol: mixer control
2250 * @uinfo: control element information
2251 *
2252 * Callback to provide information about a double enumerated
2253 * mixer control.
2254 *
2255 * Returns 0 for success.
2256 */
2257int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2258 struct snd_ctl_elem_info *uinfo)
2259{
2260 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2261
2262 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2263 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002264 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002265
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002266 if (uinfo->value.enumerated.item > e->max - 1)
2267 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002268 strcpy(uinfo->value.enumerated.name,
2269 e->texts[uinfo->value.enumerated.item]);
2270 return 0;
2271}
2272EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2273
2274/**
2275 * snd_soc_get_enum_double - enumerated double mixer get callback
2276 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002277 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002278 *
2279 * Callback to get the value of a double enumerated mixer.
2280 *
2281 * Returns 0 for success.
2282 */
2283int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2284 struct snd_ctl_elem_value *ucontrol)
2285{
2286 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2287 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002288 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002289
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002290 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002291 ;
2292 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002293 ucontrol->value.enumerated.item[0]
2294 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002295 if (e->shift_l != e->shift_r)
2296 ucontrol->value.enumerated.item[1] =
2297 (val >> e->shift_r) & (bitmask - 1);
2298
2299 return 0;
2300}
2301EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2302
2303/**
2304 * snd_soc_put_enum_double - enumerated double mixer put callback
2305 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002306 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002307 *
2308 * Callback to set the value of a double enumerated mixer.
2309 *
2310 * Returns 0 for success.
2311 */
2312int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2313 struct snd_ctl_elem_value *ucontrol)
2314{
2315 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2316 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002317 unsigned int val;
2318 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002319
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002320 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002321 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002322 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002323 return -EINVAL;
2324 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2325 mask = (bitmask - 1) << e->shift_l;
2326 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002327 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002328 return -EINVAL;
2329 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2330 mask |= (bitmask - 1) << e->shift_r;
2331 }
2332
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002333 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002334}
2335EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2336
2337/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002338 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2339 * @kcontrol: mixer control
2340 * @ucontrol: control element information
2341 *
2342 * Callback to get the value of a double semi enumerated mixer.
2343 *
2344 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2345 * used for handling bitfield coded enumeration for example.
2346 *
2347 * Returns 0 for success.
2348 */
2349int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2350 struct snd_ctl_elem_value *ucontrol)
2351{
2352 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002353 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002354 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002355
2356 reg_val = snd_soc_read(codec, e->reg);
2357 val = (reg_val >> e->shift_l) & e->mask;
2358 for (mux = 0; mux < e->max; mux++) {
2359 if (val == e->values[mux])
2360 break;
2361 }
2362 ucontrol->value.enumerated.item[0] = mux;
2363 if (e->shift_l != e->shift_r) {
2364 val = (reg_val >> e->shift_r) & e->mask;
2365 for (mux = 0; mux < e->max; mux++) {
2366 if (val == e->values[mux])
2367 break;
2368 }
2369 ucontrol->value.enumerated.item[1] = mux;
2370 }
2371
2372 return 0;
2373}
2374EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2375
2376/**
2377 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2378 * @kcontrol: mixer control
2379 * @ucontrol: control element information
2380 *
2381 * Callback to set the value of a double semi enumerated mixer.
2382 *
2383 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2384 * used for handling bitfield coded enumeration for example.
2385 *
2386 * Returns 0 for success.
2387 */
2388int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2389 struct snd_ctl_elem_value *ucontrol)
2390{
2391 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002392 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002393 unsigned int val;
2394 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002395
2396 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2397 return -EINVAL;
2398 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2399 mask = e->mask << e->shift_l;
2400 if (e->shift_l != e->shift_r) {
2401 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2402 return -EINVAL;
2403 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2404 mask |= e->mask << e->shift_r;
2405 }
2406
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002407 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002408}
2409EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2410
2411/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002412 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2413 * @kcontrol: mixer control
2414 * @uinfo: control element information
2415 *
2416 * Callback to provide information about an external enumerated
2417 * single mixer.
2418 *
2419 * Returns 0 for success.
2420 */
2421int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2422 struct snd_ctl_elem_info *uinfo)
2423{
2424 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2425
2426 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2427 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002428 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002429
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002430 if (uinfo->value.enumerated.item > e->max - 1)
2431 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002432 strcpy(uinfo->value.enumerated.name,
2433 e->texts[uinfo->value.enumerated.item]);
2434 return 0;
2435}
2436EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2437
2438/**
2439 * snd_soc_info_volsw_ext - external single mixer info callback
2440 * @kcontrol: mixer control
2441 * @uinfo: control element information
2442 *
2443 * Callback to provide information about a single external mixer control.
2444 *
2445 * Returns 0 for success.
2446 */
2447int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2448 struct snd_ctl_elem_info *uinfo)
2449{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002450 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002451
Mark Brownfd5dfad2009-04-15 21:37:46 +01002452 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002453 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2454 else
2455 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2456
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002457 uinfo->count = 1;
2458 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002459 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002460 return 0;
2461}
2462EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2463
2464/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002465 * snd_soc_info_volsw - single mixer info callback
2466 * @kcontrol: mixer control
2467 * @uinfo: control element information
2468 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002469 * Callback to provide information about a single mixer control, or a double
2470 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002471 *
2472 * Returns 0 for success.
2473 */
2474int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2475 struct snd_ctl_elem_info *uinfo)
2476{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002477 struct soc_mixer_control *mc =
2478 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002479 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002480
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002481 if (!mc->platform_max)
2482 mc->platform_max = mc->max;
2483 platform_max = mc->platform_max;
2484
2485 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002486 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2487 else
2488 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2489
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002490 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002491 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002492 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002493 return 0;
2494}
2495EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2496
2497/**
2498 * snd_soc_get_volsw - single mixer get callback
2499 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002500 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002501 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002502 * Callback to get the value of a single mixer control, or a double mixer
2503 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002504 *
2505 * Returns 0 for success.
2506 */
2507int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2508 struct snd_ctl_elem_value *ucontrol)
2509{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002510 struct soc_mixer_control *mc =
2511 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002512 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002513 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002514 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002515 unsigned int shift = mc->shift;
2516 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002517 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002518 unsigned int mask = (1 << fls(max)) - 1;
2519 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002520
2521 ucontrol->value.integer.value[0] =
2522 (snd_soc_read(codec, reg) >> shift) & mask;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002523 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002524 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002525 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002526
2527 if (snd_soc_volsw_is_stereo(mc)) {
2528 if (reg == reg2)
2529 ucontrol->value.integer.value[1] =
2530 (snd_soc_read(codec, reg) >> rshift) & mask;
2531 else
2532 ucontrol->value.integer.value[1] =
2533 (snd_soc_read(codec, reg2) >> shift) & mask;
2534 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002535 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002536 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002537 }
2538
2539 return 0;
2540}
2541EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2542
2543/**
2544 * snd_soc_put_volsw - single mixer put callback
2545 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002546 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002547 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002548 * Callback to set the value of a single mixer control, or a double mixer
2549 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002550 *
2551 * Returns 0 for success.
2552 */
2553int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2554 struct snd_ctl_elem_value *ucontrol)
2555{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002556 struct soc_mixer_control *mc =
2557 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002558 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002559 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002560 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002561 unsigned int shift = mc->shift;
2562 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002563 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002564 unsigned int mask = (1 << fls(max)) - 1;
2565 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002566 int err;
2567 bool type_2r = 0;
2568 unsigned int val2 = 0;
2569 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002570
2571 val = (ucontrol->value.integer.value[0] & mask);
2572 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002573 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002574 val_mask = mask << shift;
2575 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002576 if (snd_soc_volsw_is_stereo(mc)) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002577 val2 = (ucontrol->value.integer.value[1] & mask);
2578 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002579 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002580 if (reg == reg2) {
2581 val_mask |= mask << rshift;
2582 val |= val2 << rshift;
2583 } else {
2584 val2 = val2 << shift;
2585 type_2r = 1;
2586 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002587 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002588 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002589 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002590 return err;
2591
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002592 if (type_2r)
2593 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2594
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002595 return err;
2596}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002597EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002598
Mark Browne13ac2e2008-05-28 17:58:05 +01002599/**
Brian Austin1d99f242012-03-30 10:43:55 -05002600 * snd_soc_get_volsw_sx - single mixer get callback
2601 * @kcontrol: mixer control
2602 * @ucontrol: control element information
2603 *
2604 * Callback to get the value of a single mixer control, or a double mixer
2605 * control that spans 2 registers.
2606 *
2607 * Returns 0 for success.
2608 */
2609int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2610 struct snd_ctl_elem_value *ucontrol)
2611{
2612 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2613 struct soc_mixer_control *mc =
2614 (struct soc_mixer_control *)kcontrol->private_value;
2615
2616 unsigned int reg = mc->reg;
2617 unsigned int reg2 = mc->rreg;
2618 unsigned int shift = mc->shift;
2619 unsigned int rshift = mc->rshift;
2620 int max = mc->max;
2621 int min = mc->min;
2622 int mask = (1 << (fls(min + max) - 1)) - 1;
2623
2624 ucontrol->value.integer.value[0] =
2625 ((snd_soc_read(codec, reg) >> shift) - min) & mask;
2626
2627 if (snd_soc_volsw_is_stereo(mc))
2628 ucontrol->value.integer.value[1] =
2629 ((snd_soc_read(codec, reg2) >> rshift) - min) & mask;
2630
2631 return 0;
2632}
2633EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2634
2635/**
2636 * snd_soc_put_volsw_sx - double mixer set callback
2637 * @kcontrol: mixer control
2638 * @uinfo: control element information
2639 *
2640 * Callback to set the value of a double mixer control that spans 2 registers.
2641 *
2642 * Returns 0 for success.
2643 */
2644int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2645 struct snd_ctl_elem_value *ucontrol)
2646{
2647 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2648 struct soc_mixer_control *mc =
2649 (struct soc_mixer_control *)kcontrol->private_value;
2650
2651 unsigned int reg = mc->reg;
2652 unsigned int reg2 = mc->rreg;
2653 unsigned int shift = mc->shift;
2654 unsigned int rshift = mc->rshift;
2655 int max = mc->max;
2656 int min = mc->min;
2657 int mask = (1 << (fls(min + max) - 1)) - 1;
Brian Austin27f1d752012-04-03 11:33:50 -05002658 int err = 0;
Brian Austin1d99f242012-03-30 10:43:55 -05002659 unsigned short val, val_mask, val2 = 0;
2660
2661 val_mask = mask << shift;
2662 val = (ucontrol->value.integer.value[0] + min) & mask;
2663 val = val << shift;
2664
2665 if (snd_soc_update_bits_locked(codec, reg, val_mask, val))
2666 return err;
2667
2668 if (snd_soc_volsw_is_stereo(mc)) {
2669 val_mask = mask << rshift;
2670 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2671 val2 = val2 << rshift;
2672
2673 if (snd_soc_update_bits_locked(codec, reg2, val_mask, val2))
2674 return err;
2675 }
2676 return 0;
2677}
2678EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2679
2680/**
Mark Browne13ac2e2008-05-28 17:58:05 +01002681 * snd_soc_info_volsw_s8 - signed mixer info callback
2682 * @kcontrol: mixer control
2683 * @uinfo: control element information
2684 *
2685 * Callback to provide information about a signed mixer control.
2686 *
2687 * Returns 0 for success.
2688 */
2689int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2690 struct snd_ctl_elem_info *uinfo)
2691{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002692 struct soc_mixer_control *mc =
2693 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002694 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002695 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002696
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002697 if (!mc->platform_max)
2698 mc->platform_max = mc->max;
2699 platform_max = mc->platform_max;
2700
Mark Browne13ac2e2008-05-28 17:58:05 +01002701 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2702 uinfo->count = 2;
2703 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002704 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002705 return 0;
2706}
2707EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2708
2709/**
2710 * snd_soc_get_volsw_s8 - signed mixer get callback
2711 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002712 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002713 *
2714 * Callback to get the value of a signed mixer control.
2715 *
2716 * Returns 0 for success.
2717 */
2718int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2719 struct snd_ctl_elem_value *ucontrol)
2720{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002721 struct soc_mixer_control *mc =
2722 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002723 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002724 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002725 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002726 int val = snd_soc_read(codec, reg);
2727
2728 ucontrol->value.integer.value[0] =
2729 ((signed char)(val & 0xff))-min;
2730 ucontrol->value.integer.value[1] =
2731 ((signed char)((val >> 8) & 0xff))-min;
2732 return 0;
2733}
2734EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2735
2736/**
2737 * snd_soc_put_volsw_sgn - signed mixer put callback
2738 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002739 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002740 *
2741 * Callback to set the value of a signed mixer control.
2742 *
2743 * Returns 0 for success.
2744 */
2745int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2746 struct snd_ctl_elem_value *ucontrol)
2747{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002748 struct soc_mixer_control *mc =
2749 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002750 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002751 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002752 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002753 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002754
2755 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2756 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2757
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002758 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002759}
2760EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2761
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002762/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002763 * snd_soc_limit_volume - Set new limit to an existing volume control.
2764 *
2765 * @codec: where to look for the control
2766 * @name: Name of the control
2767 * @max: new maximum limit
2768 *
2769 * Return 0 for success, else error.
2770 */
2771int snd_soc_limit_volume(struct snd_soc_codec *codec,
2772 const char *name, int max)
2773{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002774 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002775 struct snd_kcontrol *kctl;
2776 struct soc_mixer_control *mc;
2777 int found = 0;
2778 int ret = -EINVAL;
2779
2780 /* Sanity check for name and max */
2781 if (unlikely(!name || max <= 0))
2782 return -EINVAL;
2783
2784 list_for_each_entry(kctl, &card->controls, list) {
2785 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2786 found = 1;
2787 break;
2788 }
2789 }
2790 if (found) {
2791 mc = (struct soc_mixer_control *)kctl->private_value;
2792 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002793 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002794 ret = 0;
2795 }
2796 }
2797 return ret;
2798}
2799EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2800
Mark Brown71d08512011-10-10 18:31:26 +01002801int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
2802 struct snd_ctl_elem_info *uinfo)
2803{
2804 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2805 struct soc_bytes *params = (void *)kcontrol->private_value;
2806
2807 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
2808 uinfo->count = params->num_regs * codec->val_bytes;
2809
2810 return 0;
2811}
2812EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
2813
2814int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
2815 struct snd_ctl_elem_value *ucontrol)
2816{
2817 struct soc_bytes *params = (void *)kcontrol->private_value;
2818 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2819 int ret;
2820
2821 if (codec->using_regmap)
2822 ret = regmap_raw_read(codec->control_data, params->base,
2823 ucontrol->value.bytes.data,
2824 params->num_regs * codec->val_bytes);
2825 else
2826 ret = -EINVAL;
2827
Mark Brownf831b052012-02-17 16:20:33 -08002828 /* Hide any masked bytes to ensure consistent data reporting */
2829 if (ret == 0 && params->mask) {
2830 switch (codec->val_bytes) {
2831 case 1:
2832 ucontrol->value.bytes.data[0] &= ~params->mask;
2833 break;
2834 case 2:
2835 ((u16 *)(&ucontrol->value.bytes.data))[0]
2836 &= ~params->mask;
2837 break;
2838 case 4:
2839 ((u32 *)(&ucontrol->value.bytes.data))[0]
2840 &= ~params->mask;
2841 break;
2842 default:
2843 return -EINVAL;
2844 }
2845 }
2846
Mark Brown71d08512011-10-10 18:31:26 +01002847 return ret;
2848}
2849EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
2850
2851int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
2852 struct snd_ctl_elem_value *ucontrol)
2853{
2854 struct soc_bytes *params = (void *)kcontrol->private_value;
2855 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownf831b052012-02-17 16:20:33 -08002856 int ret, len;
2857 unsigned int val;
2858 void *data;
Mark Brown71d08512011-10-10 18:31:26 +01002859
Mark Brownf831b052012-02-17 16:20:33 -08002860 if (!codec->using_regmap)
2861 return -EINVAL;
2862
2863 data = ucontrol->value.bytes.data;
2864 len = params->num_regs * codec->val_bytes;
2865
2866 /*
2867 * If we've got a mask then we need to preserve the register
2868 * bits. We shouldn't modify the incoming data so take a
2869 * copy.
2870 */
2871 if (params->mask) {
2872 ret = regmap_read(codec->control_data, params->base, &val);
2873 if (ret != 0)
2874 return ret;
2875
2876 val &= params->mask;
2877
2878 data = kmemdup(data, len, GFP_KERNEL);
2879 if (!data)
2880 return -ENOMEM;
2881
2882 switch (codec->val_bytes) {
2883 case 1:
2884 ((u8 *)data)[0] &= ~params->mask;
2885 ((u8 *)data)[0] |= val;
2886 break;
2887 case 2:
2888 ((u16 *)data)[0] &= cpu_to_be16(~params->mask);
2889 ((u16 *)data)[0] |= cpu_to_be16(val);
2890 break;
2891 case 4:
2892 ((u32 *)data)[0] &= cpu_to_be32(~params->mask);
2893 ((u32 *)data)[0] |= cpu_to_be32(val);
2894 break;
2895 default:
2896 return -EINVAL;
2897 }
2898 }
2899
2900 ret = regmap_raw_write(codec->control_data, params->base,
2901 data, len);
2902
2903 if (params->mask)
2904 kfree(data);
Mark Brown71d08512011-10-10 18:31:26 +01002905
2906 return ret;
2907}
2908EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
2909
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002910/**
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02002911 * snd_soc_info_xr_sx - signed multi register info callback
2912 * @kcontrol: mreg control
2913 * @uinfo: control element information
2914 *
2915 * Callback to provide information of a control that can
2916 * span multiple codec registers which together
2917 * forms a single signed value in a MSB/LSB manner.
2918 *
2919 * Returns 0 for success.
2920 */
2921int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
2922 struct snd_ctl_elem_info *uinfo)
2923{
2924 struct soc_mreg_control *mc =
2925 (struct soc_mreg_control *)kcontrol->private_value;
2926 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2927 uinfo->count = 1;
2928 uinfo->value.integer.min = mc->min;
2929 uinfo->value.integer.max = mc->max;
2930
2931 return 0;
2932}
2933EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
2934
2935/**
2936 * snd_soc_get_xr_sx - signed multi register get callback
2937 * @kcontrol: mreg control
2938 * @ucontrol: control element information
2939 *
2940 * Callback to get the value of a control that can span
2941 * multiple codec registers which together forms a single
2942 * signed value in a MSB/LSB manner. The control supports
2943 * specifying total no of bits used to allow for bitfields
2944 * across the multiple codec registers.
2945 *
2946 * Returns 0 for success.
2947 */
2948int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
2949 struct snd_ctl_elem_value *ucontrol)
2950{
2951 struct soc_mreg_control *mc =
2952 (struct soc_mreg_control *)kcontrol->private_value;
2953 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2954 unsigned int regbase = mc->regbase;
2955 unsigned int regcount = mc->regcount;
2956 unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
2957 unsigned int regwmask = (1<<regwshift)-1;
2958 unsigned int invert = mc->invert;
2959 unsigned long mask = (1UL<<mc->nbits)-1;
2960 long min = mc->min;
2961 long max = mc->max;
2962 long val = 0;
2963 unsigned long regval;
2964 unsigned int i;
2965
2966 for (i = 0; i < regcount; i++) {
2967 regval = snd_soc_read(codec, regbase+i) & regwmask;
2968 val |= regval << (regwshift*(regcount-i-1));
2969 }
2970 val &= mask;
2971 if (min < 0 && val > max)
2972 val |= ~mask;
2973 if (invert)
2974 val = max - val;
2975 ucontrol->value.integer.value[0] = val;
2976
2977 return 0;
2978}
2979EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
2980
2981/**
2982 * snd_soc_put_xr_sx - signed multi register get callback
2983 * @kcontrol: mreg control
2984 * @ucontrol: control element information
2985 *
2986 * Callback to set the value of a control that can span
2987 * multiple codec registers which together forms a single
2988 * signed value in a MSB/LSB manner. The control supports
2989 * specifying total no of bits used to allow for bitfields
2990 * across the multiple codec registers.
2991 *
2992 * Returns 0 for success.
2993 */
2994int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
2995 struct snd_ctl_elem_value *ucontrol)
2996{
2997 struct soc_mreg_control *mc =
2998 (struct soc_mreg_control *)kcontrol->private_value;
2999 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3000 unsigned int regbase = mc->regbase;
3001 unsigned int regcount = mc->regcount;
3002 unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3003 unsigned int regwmask = (1<<regwshift)-1;
3004 unsigned int invert = mc->invert;
3005 unsigned long mask = (1UL<<mc->nbits)-1;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003006 long max = mc->max;
3007 long val = ucontrol->value.integer.value[0];
3008 unsigned int i, regval, regmask;
3009 int err;
3010
3011 if (invert)
3012 val = max - val;
3013 val &= mask;
3014 for (i = 0; i < regcount; i++) {
3015 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3016 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
3017 err = snd_soc_update_bits_locked(codec, regbase+i,
3018 regmask, regval);
3019 if (err < 0)
3020 return err;
3021 }
3022
3023 return 0;
3024}
3025EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3026
3027/**
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003028 * snd_soc_get_strobe - strobe get callback
3029 * @kcontrol: mixer control
3030 * @ucontrol: control element information
3031 *
3032 * Callback get the value of a strobe mixer control.
3033 *
3034 * Returns 0 for success.
3035 */
3036int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
3037 struct snd_ctl_elem_value *ucontrol)
3038{
3039 struct soc_mixer_control *mc =
3040 (struct soc_mixer_control *)kcontrol->private_value;
3041 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3042 unsigned int reg = mc->reg;
3043 unsigned int shift = mc->shift;
3044 unsigned int mask = 1 << shift;
3045 unsigned int invert = mc->invert != 0;
3046 unsigned int val = snd_soc_read(codec, reg) & mask;
3047
3048 if (shift != 0 && val != 0)
3049 val = val >> shift;
3050 ucontrol->value.enumerated.item[0] = val ^ invert;
3051
3052 return 0;
3053}
3054EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3055
3056/**
3057 * snd_soc_put_strobe - strobe put callback
3058 * @kcontrol: mixer control
3059 * @ucontrol: control element information
3060 *
3061 * Callback strobe a register bit to high then low (or the inverse)
3062 * in one pass of a single mixer enum control.
3063 *
3064 * Returns 1 for success.
3065 */
3066int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3067 struct snd_ctl_elem_value *ucontrol)
3068{
3069 struct soc_mixer_control *mc =
3070 (struct soc_mixer_control *)kcontrol->private_value;
3071 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3072 unsigned int reg = mc->reg;
3073 unsigned int shift = mc->shift;
3074 unsigned int mask = 1 << shift;
3075 unsigned int invert = mc->invert != 0;
3076 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3077 unsigned int val1 = (strobe ^ invert) ? mask : 0;
3078 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3079 int err;
3080
3081 err = snd_soc_update_bits_locked(codec, reg, mask, val1);
3082 if (err < 0)
3083 return err;
3084
3085 err = snd_soc_update_bits_locked(codec, reg, mask, val2);
3086 return err;
3087}
3088EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3089
3090/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003091 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3092 * @dai: DAI
3093 * @clk_id: DAI specific clock ID
3094 * @freq: new clock frequency in Hz
3095 * @dir: new clock direction - input/output.
3096 *
3097 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3098 */
3099int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3100 unsigned int freq, int dir)
3101{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003102 if (dai->driver && dai->driver->ops->set_sysclk)
3103 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003104 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003105 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00003106 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003107 else
3108 return -EINVAL;
3109}
3110EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3111
3112/**
Mark Brownec4ee522011-03-07 20:58:11 +00003113 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3114 * @codec: CODEC
3115 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01003116 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00003117 * @freq: new clock frequency in Hz
3118 * @dir: new clock direction - input/output.
3119 *
3120 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3121 */
3122int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01003123 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00003124{
3125 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003126 return codec->driver->set_sysclk(codec, clk_id, source,
3127 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003128 else
3129 return -EINVAL;
3130}
3131EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3132
3133/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003134 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3135 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003136 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003137 * @div: new clock divisor.
3138 *
3139 * Configures the clock dividers. This is used to derive the best DAI bit and
3140 * frame clocks from the system or master clock. It's best to set the DAI bit
3141 * and frame clocks as low as possible to save system power.
3142 */
3143int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3144 int div_id, int div)
3145{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003146 if (dai->driver && dai->driver->ops->set_clkdiv)
3147 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003148 else
3149 return -EINVAL;
3150}
3151EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3152
3153/**
3154 * snd_soc_dai_set_pll - configure DAI PLL.
3155 * @dai: DAI
3156 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003157 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003158 * @freq_in: PLL input clock frequency in Hz
3159 * @freq_out: requested PLL output clock frequency in Hz
3160 *
3161 * Configures and enables PLL to generate output clock based on input clock.
3162 */
Mark Brown85488032009-09-05 18:52:16 +01003163int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3164 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003165{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003166 if (dai->driver && dai->driver->ops->set_pll)
3167 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003168 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003169 else if (dai->codec && dai->codec->driver->set_pll)
3170 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3171 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003172 else
3173 return -EINVAL;
3174}
3175EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3176
Mark Brownec4ee522011-03-07 20:58:11 +00003177/*
3178 * snd_soc_codec_set_pll - configure codec PLL.
3179 * @codec: CODEC
3180 * @pll_id: DAI specific PLL ID
3181 * @source: DAI specific source for the PLL
3182 * @freq_in: PLL input clock frequency in Hz
3183 * @freq_out: requested PLL output clock frequency in Hz
3184 *
3185 * Configures and enables PLL to generate output clock based on input clock.
3186 */
3187int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3188 unsigned int freq_in, unsigned int freq_out)
3189{
3190 if (codec->driver->set_pll)
3191 return codec->driver->set_pll(codec, pll_id, source,
3192 freq_in, freq_out);
3193 else
3194 return -EINVAL;
3195}
3196EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3197
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003198/**
3199 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3200 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003201 * @fmt: SND_SOC_DAIFMT_ format value.
3202 *
3203 * Configures the DAI hardware format and clocking.
3204 */
3205int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3206{
Shawn Guo5e4ba562012-03-09 00:59:40 +08003207 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003208 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08003209 if (dai->driver->ops->set_fmt == NULL)
3210 return -ENOTSUPP;
3211 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003212}
3213EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3214
3215/**
3216 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3217 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003218 * @tx_mask: bitmask representing active TX slots.
3219 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003220 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003221 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003222 *
3223 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3224 * specific.
3225 */
3226int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003227 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003228{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003229 if (dai->driver && dai->driver->ops->set_tdm_slot)
3230 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003231 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003232 else
3233 return -EINVAL;
3234}
3235EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3236
3237/**
Barry Song472df3c2009-09-12 01:16:29 +08003238 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3239 * @dai: DAI
3240 * @tx_num: how many TX channels
3241 * @tx_slot: pointer to an array which imply the TX slot number channel
3242 * 0~num-1 uses
3243 * @rx_num: how many RX channels
3244 * @rx_slot: pointer to an array which imply the RX slot number channel
3245 * 0~num-1 uses
3246 *
3247 * configure the relationship between channel number and TDM slot number.
3248 */
3249int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3250 unsigned int tx_num, unsigned int *tx_slot,
3251 unsigned int rx_num, unsigned int *rx_slot)
3252{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003253 if (dai->driver && dai->driver->ops->set_channel_map)
3254 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003255 rx_num, rx_slot);
3256 else
3257 return -EINVAL;
3258}
3259EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3260
3261/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003262 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3263 * @dai: DAI
3264 * @tristate: tristate enable
3265 *
3266 * Tristates the DAI so that others can use it.
3267 */
3268int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3269{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003270 if (dai->driver && dai->driver->ops->set_tristate)
3271 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003272 else
3273 return -EINVAL;
3274}
3275EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3276
3277/**
3278 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3279 * @dai: DAI
3280 * @mute: mute enable
3281 *
3282 * Mutes the DAI DAC.
3283 */
3284int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3285{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003286 if (dai->driver && dai->driver->ops->digital_mute)
3287 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003288 else
Mark Brown04570c62012-04-13 19:16:03 +01003289 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003290}
3291EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3292
Mark Brownc5af3a22008-11-28 13:29:45 +00003293/**
3294 * snd_soc_register_card - Register a card with the ASoC core
3295 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003296 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003297 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003298 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303299int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003300{
Mark Brownb19e6e72012-03-14 21:18:39 +00003301 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003302
Mark Brownc5af3a22008-11-28 13:29:45 +00003303 if (!card->name || !card->dev)
3304 return -EINVAL;
3305
Stephen Warren5a504962011-12-21 10:40:59 -07003306 for (i = 0; i < card->num_links; i++) {
3307 struct snd_soc_dai_link *link = &card->dai_link[i];
3308
3309 /*
3310 * Codec must be specified by 1 of name or OF node,
3311 * not both or neither.
3312 */
3313 if (!!link->codec_name == !!link->codec_of_node) {
3314 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00003315 "Neither/both codec name/of_node are set for %s\n",
3316 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003317 return -EINVAL;
3318 }
3319
3320 /*
3321 * Platform may be specified by either name or OF node, but
3322 * can be left unspecified, and a dummy platform will be used.
3323 */
3324 if (link->platform_name && link->platform_of_node) {
3325 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00003326 "Both platform name/of_node are set for %s\n", link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003327 return -EINVAL;
3328 }
3329
3330 /*
3331 * CPU DAI must be specified by 1 of name or OF node,
3332 * not both or neither.
3333 */
3334 if (!!link->cpu_dai_name == !!link->cpu_dai_of_node) {
3335 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00003336 "Neither/both cpu_dai name/of_node are set for %s\n",
3337 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003338 return -EINVAL;
3339 }
3340 }
3341
Mark Browned77cc12011-05-03 18:25:34 +01003342 dev_set_drvdata(card->dev, card);
3343
Stephen Warren111c6412011-01-28 14:26:35 -07003344 snd_soc_initialize_card_lists(card);
3345
Vinod Koul150dd2f2011-01-13 22:48:32 +05303346 soc_init_card_debugfs(card);
3347
Mark Brown181a6892012-03-14 20:18:49 +00003348 card->rtd = devm_kzalloc(card->dev,
3349 sizeof(struct snd_soc_pcm_runtime) *
3350 (card->num_links + card->num_aux_devs),
3351 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003352 if (card->rtd == NULL)
3353 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003354 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003355
3356 for (i = 0; i < card->num_links; i++)
3357 card->rtd[i].dai_link = &card->dai_link[i];
3358
Mark Brownc5af3a22008-11-28 13:29:45 +00003359 INIT_LIST_HEAD(&card->list);
Mark Browndb432b42011-10-03 21:06:40 +01003360 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00003361 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003362 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003363 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003364
Mark Brownb19e6e72012-03-14 21:18:39 +00003365 ret = snd_soc_instantiate_card(card);
3366 if (ret != 0)
3367 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003368
Mark Brownb19e6e72012-03-14 21:18:39 +00003369 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00003370}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303371EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003372
3373/**
3374 * snd_soc_unregister_card - Unregister a card with the ASoC core
3375 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003376 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003377 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003378 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303379int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003380{
Vinod Koulb0e26482011-01-13 22:48:02 +05303381 if (card->instantiated)
3382 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003383 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3384
3385 return 0;
3386}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303387EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003388
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003389/*
3390 * Simplify DAI link configuration by removing ".-1" from device names
3391 * and sanitizing names.
3392 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003393static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003394{
3395 char *found, name[NAME_SIZE];
3396 int id1, id2;
3397
3398 if (dev_name(dev) == NULL)
3399 return NULL;
3400
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003401 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003402
3403 /* are we a "%s.%d" name (platform and SPI components) */
3404 found = strstr(name, dev->driver->name);
3405 if (found) {
3406 /* get ID */
3407 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3408
3409 /* discard ID from name if ID == -1 */
3410 if (*id == -1)
3411 found[strlen(dev->driver->name)] = '\0';
3412 }
3413
3414 } else {
3415 /* I2C component devices are named "bus-addr" */
3416 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3417 char tmp[NAME_SIZE];
3418
3419 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003420 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003421
3422 /* sanitize component name for DAI link creation */
3423 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003424 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003425 } else
3426 *id = 0;
3427 }
3428
3429 return kstrdup(name, GFP_KERNEL);
3430}
3431
3432/*
3433 * Simplify DAI link naming for single devices with multiple DAIs by removing
3434 * any ".-1" and using the DAI name (instead of device name).
3435 */
3436static inline char *fmt_multiple_name(struct device *dev,
3437 struct snd_soc_dai_driver *dai_drv)
3438{
3439 if (dai_drv->name == NULL) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02003440 pr_err("asoc: error - multiple DAI %s registered with no name\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003441 dev_name(dev));
3442 return NULL;
3443 }
3444
3445 return kstrdup(dai_drv->name, GFP_KERNEL);
3446}
3447
Mark Brown91151712008-11-30 23:31:24 +00003448/**
3449 * snd_soc_register_dai - Register a DAI with the ASoC core
3450 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003451 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003452 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003453int snd_soc_register_dai(struct device *dev,
3454 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003455{
Mark Brown054880f2012-04-09 17:29:19 +01003456 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003457 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003458
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003459 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003460
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003461 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3462 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003463 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003464
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003465 /* create DAI component name */
3466 dai->name = fmt_single_name(dev, &dai->id);
3467 if (dai->name == NULL) {
3468 kfree(dai);
3469 return -ENOMEM;
3470 }
3471
3472 dai->dev = dev;
3473 dai->driver = dai_drv;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003474 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003475 if (!dai->driver->ops)
3476 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003477
3478 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003479
3480 list_for_each_entry(codec, &codec_list, list) {
3481 if (codec->dev == dev) {
3482 dev_dbg(dev, "Mapped DAI %s to CODEC %s\n",
3483 dai->name, codec->name);
3484 dai->codec = codec;
3485 break;
3486 }
3487 }
3488
Mark Brown91151712008-11-30 23:31:24 +00003489 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003490
Mark Brown91151712008-11-30 23:31:24 +00003491 mutex_unlock(&client_mutex);
3492
3493 pr_debug("Registered DAI '%s'\n", dai->name);
3494
3495 return 0;
3496}
3497EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3498
3499/**
3500 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3501 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003502 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003503 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003504void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003505{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003506 struct snd_soc_dai *dai;
3507
3508 list_for_each_entry(dai, &dai_list, list) {
3509 if (dev == dai->dev)
3510 goto found;
3511 }
3512 return;
3513
3514found:
Mark Brown91151712008-11-30 23:31:24 +00003515 mutex_lock(&client_mutex);
3516 list_del(&dai->list);
3517 mutex_unlock(&client_mutex);
3518
3519 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003520 kfree(dai->name);
3521 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003522}
3523EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3524
3525/**
3526 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3527 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003528 * @dai: Array of DAIs to register
3529 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003530 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003531int snd_soc_register_dais(struct device *dev,
3532 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003533{
Mark Brown054880f2012-04-09 17:29:19 +01003534 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003535 struct snd_soc_dai *dai;
3536 int i, ret = 0;
3537
Liam Girdwood720ffa42010-08-18 00:30:30 +01003538 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003539
3540 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003541
3542 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003543 if (dai == NULL) {
3544 ret = -ENOMEM;
3545 goto err;
3546 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003547
3548 /* create DAI component name */
3549 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3550 if (dai->name == NULL) {
3551 kfree(dai);
3552 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003553 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003554 }
3555
3556 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003557 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003558 if (dai->driver->id)
3559 dai->id = dai->driver->id;
3560 else
3561 dai->id = i;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003562 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003563 if (!dai->driver->ops)
3564 dai->driver->ops = &null_dai_ops;
3565
3566 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003567
3568 list_for_each_entry(codec, &codec_list, list) {
3569 if (codec->dev == dev) {
3570 dev_dbg(dev, "Mapped DAI %s to CODEC %s\n",
3571 dai->name, codec->name);
3572 dai->codec = codec;
3573 break;
3574 }
3575 }
3576
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003577 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003578
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003579 mutex_unlock(&client_mutex);
3580
3581 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003582 }
3583
3584 return 0;
3585
3586err:
3587 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003588 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003589
3590 return ret;
3591}
3592EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3593
3594/**
3595 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3596 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003597 * @dai: Array of DAIs to unregister
3598 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003599 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003600void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003601{
3602 int i;
3603
3604 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003605 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003606}
3607EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3608
Mark Brown12a48a8c2008-12-03 19:40:30 +00003609/**
3610 * snd_soc_register_platform - Register a platform with the ASoC core
3611 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003612 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003613 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003614int snd_soc_register_platform(struct device *dev,
3615 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003616{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003617 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003618
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003619 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3620
3621 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3622 if (platform == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003623 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003624
3625 /* create platform component name */
3626 platform->name = fmt_single_name(dev, &platform->id);
3627 if (platform->name == NULL) {
3628 kfree(platform);
3629 return -ENOMEM;
3630 }
3631
3632 platform->dev = dev;
3633 platform->driver = platform_drv;
Liam Girdwoodb7950642011-07-04 22:10:52 +01003634 platform->dapm.dev = dev;
3635 platform->dapm.platform = platform;
Liam Girdwood64a648c2011-07-25 11:15:15 +01003636 platform->dapm.stream_event = platform_drv->stream_event;
Liam Girdwoodcc22d372012-03-06 18:16:18 +00003637 mutex_init(&platform->mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003638
3639 mutex_lock(&client_mutex);
3640 list_add(&platform->list, &platform_list);
3641 mutex_unlock(&client_mutex);
3642
3643 pr_debug("Registered platform '%s'\n", platform->name);
3644
3645 return 0;
3646}
3647EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3648
3649/**
3650 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3651 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003652 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003653 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003654void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003655{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003656 struct snd_soc_platform *platform;
3657
3658 list_for_each_entry(platform, &platform_list, list) {
3659 if (dev == platform->dev)
3660 goto found;
3661 }
3662 return;
3663
3664found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003665 mutex_lock(&client_mutex);
3666 list_del(&platform->list);
3667 mutex_unlock(&client_mutex);
3668
3669 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003670 kfree(platform->name);
3671 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003672}
3673EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3674
Mark Brown151ab222009-05-09 16:22:58 +01003675static u64 codec_format_map[] = {
3676 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3677 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3678 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3679 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3680 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3681 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3682 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3683 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3684 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3685 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3686 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3687 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3688 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3689 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3690 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3691 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3692};
3693
3694/* Fix up the DAI formats for endianness: codecs don't actually see
3695 * the endianness of the data but we're using the CPU format
3696 * definitions which do need to include endianness so we ensure that
3697 * codec DAIs always have both big and little endian variants set.
3698 */
3699static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3700{
3701 int i;
3702
3703 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3704 if (stream->formats & codec_format_map[i])
3705 stream->formats |= codec_format_map[i];
3706}
3707
Mark Brown0d0cf002008-12-10 14:32:45 +00003708/**
3709 * snd_soc_register_codec - Register a codec with the ASoC core
3710 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003711 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003712 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003713int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003714 const struct snd_soc_codec_driver *codec_drv,
3715 struct snd_soc_dai_driver *dai_drv,
3716 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003717{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003718 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003719 struct snd_soc_codec *codec;
3720 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003721
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003722 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003723
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003724 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3725 if (codec == NULL)
3726 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003727
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003728 /* create CODEC component name */
3729 codec->name = fmt_single_name(dev, &codec->id);
3730 if (codec->name == NULL) {
3731 kfree(codec);
3732 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003733 }
3734
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003735 if (codec_drv->compress_type)
3736 codec->compress_type = codec_drv->compress_type;
3737 else
3738 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3739
Mark Brownc3acec22010-12-02 16:15:29 +00003740 codec->write = codec_drv->write;
3741 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003742 codec->volatile_register = codec_drv->volatile_register;
3743 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003744 codec->writable_register = codec_drv->writable_register;
Mark Brown5124e692012-02-08 13:20:50 +00003745 codec->ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003746 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3747 codec->dapm.dev = dev;
3748 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003749 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwood64a648c2011-07-25 11:15:15 +01003750 codec->dapm.stream_event = codec_drv->stream_event;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003751 codec->dev = dev;
3752 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003753 codec->num_dai = num_dai;
3754 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003755
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003756 /* allocate CODEC register cache */
3757 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003758 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003759 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003760 /* it is necessary to make a copy of the default register cache
3761 * because in the case of using a compression type that requires
3762 * the default register cache to be marked as __devinitconst the
3763 * kernel might have freed the array by the time we initialize
3764 * the cache.
3765 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003766 if (codec_drv->reg_cache_default) {
3767 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3768 reg_size, GFP_KERNEL);
3769 if (!codec->reg_def_copy) {
3770 ret = -ENOMEM;
3771 goto fail;
3772 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003773 }
3774 }
3775
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003776 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3777 if (!codec->volatile_register)
3778 codec->volatile_register = snd_soc_default_volatile_register;
3779 if (!codec->readable_register)
3780 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003781 if (!codec->writable_register)
3782 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003783 }
3784
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003785 for (i = 0; i < num_dai; i++) {
3786 fixup_codec_formats(&dai_drv[i].playback);
3787 fixup_codec_formats(&dai_drv[i].capture);
3788 }
3789
Mark Brown054880f2012-04-09 17:29:19 +01003790 mutex_lock(&client_mutex);
3791 list_add(&codec->list, &codec_list);
3792 mutex_unlock(&client_mutex);
3793
Mark Brown26b01cc2010-08-18 20:20:55 +01003794 /* register any DAIs */
3795 if (num_dai) {
3796 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3797 if (ret < 0)
Mark Brown054880f2012-04-09 17:29:19 +01003798 dev_err(codec->dev, "Failed to regster DAIs: %d\n",
3799 ret);
Mark Brown26b01cc2010-08-18 20:20:55 +01003800 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003801
Mark Brown0d0cf002008-12-10 14:32:45 +00003802 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003803 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003804
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003805fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003806 kfree(codec->reg_def_copy);
3807 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003808 kfree(codec->name);
3809 kfree(codec);
3810 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003811}
3812EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3813
3814/**
3815 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3816 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003817 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003818 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003819void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003820{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003821 struct snd_soc_codec *codec;
3822 int i;
3823
3824 list_for_each_entry(codec, &codec_list, list) {
3825 if (dev == codec->dev)
3826 goto found;
3827 }
3828 return;
3829
3830found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003831 if (codec->num_dai)
3832 for (i = 0; i < codec->num_dai; i++)
3833 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003834
Mark Brown0d0cf002008-12-10 14:32:45 +00003835 mutex_lock(&client_mutex);
3836 list_del(&codec->list);
3837 mutex_unlock(&client_mutex);
3838
3839 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003840
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003841 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003842 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003843 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003844 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003845}
3846EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3847
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003848/* Retrieve a card's name from device tree */
3849int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3850 const char *propname)
3851{
3852 struct device_node *np = card->dev->of_node;
3853 int ret;
3854
3855 ret = of_property_read_string_index(np, propname, 0, &card->name);
3856 /*
3857 * EINVAL means the property does not exist. This is fine providing
3858 * card->name was previously set, which is checked later in
3859 * snd_soc_register_card.
3860 */
3861 if (ret < 0 && ret != -EINVAL) {
3862 dev_err(card->dev,
3863 "Property '%s' could not be read: %d\n",
3864 propname, ret);
3865 return ret;
3866 }
3867
3868 return 0;
3869}
3870EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3871
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003872int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3873 const char *propname)
3874{
3875 struct device_node *np = card->dev->of_node;
3876 int num_routes;
3877 struct snd_soc_dapm_route *routes;
3878 int i, ret;
3879
3880 num_routes = of_property_count_strings(np, propname);
3881 if (num_routes & 1) {
3882 dev_err(card->dev,
3883 "Property '%s's length is not even\n",
3884 propname);
3885 return -EINVAL;
3886 }
3887 num_routes /= 2;
3888 if (!num_routes) {
3889 dev_err(card->dev,
3890 "Property '%s's length is zero\n",
3891 propname);
3892 return -EINVAL;
3893 }
3894
3895 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
3896 GFP_KERNEL);
3897 if (!routes) {
3898 dev_err(card->dev,
3899 "Could not allocate DAPM route table\n");
3900 return -EINVAL;
3901 }
3902
3903 for (i = 0; i < num_routes; i++) {
3904 ret = of_property_read_string_index(np, propname,
3905 2 * i, &routes[i].sink);
3906 if (ret) {
3907 dev_err(card->dev,
3908 "Property '%s' index %d could not be read: %d\n",
3909 propname, 2 * i, ret);
3910 return -EINVAL;
3911 }
3912 ret = of_property_read_string_index(np, propname,
3913 (2 * i) + 1, &routes[i].source);
3914 if (ret) {
3915 dev_err(card->dev,
3916 "Property '%s' index %d could not be read: %d\n",
3917 propname, (2 * i) + 1, ret);
3918 return -EINVAL;
3919 }
3920 }
3921
3922 card->num_dapm_routes = num_routes;
3923 card->dapm_routes = routes;
3924
3925 return 0;
3926}
3927EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3928
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003929static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003930{
Mark Brown384c89e2008-12-03 17:34:03 +00003931#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003932 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3933 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02003934 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003935 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003936 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003937
Mark Brown8a9dab12011-01-10 22:25:21 +00003938 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003939 &codec_list_fops))
3940 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3941
Mark Brown8a9dab12011-01-10 22:25:21 +00003942 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003943 &dai_list_fops))
3944 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003945
Mark Brown8a9dab12011-01-10 22:25:21 +00003946 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003947 &platform_list_fops))
3948 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003949#endif
3950
Mark Brownfb257892011-04-28 10:57:54 +01003951 snd_soc_util_init();
3952
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003953 return platform_driver_register(&soc_driver);
3954}
Mark Brown4abe8e12010-10-12 17:41:03 +01003955module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003956
Mark Brown7d8c16a2008-11-30 22:11:24 +00003957static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003958{
Mark Brownfb257892011-04-28 10:57:54 +01003959 snd_soc_util_exit();
3960
Mark Brown384c89e2008-12-03 17:34:03 +00003961#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003962 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003963#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003964 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003965}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003966module_exit(snd_soc_exit);
3967
3968/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003969MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003970MODULE_DESCRIPTION("ALSA SoC Core");
3971MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003972MODULE_ALIAS("platform:soc-audio");