blob: 5d308e92f9b095c1ee7d382ef3c12d7802ded360 [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>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020042#include <sound/initval.h>
43
Mark Browna8b1d342010-11-03 18:05:58 -040044#define CREATE_TRACE_POINTS
45#include <trace/events/asoc.h>
46
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000047#define NAME_SIZE 32
48
Frank Mandarinodb2a4162006-10-06 18:31:09 +020049static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
50
Mark Brown384c89e2008-12-03 17:34:03 +000051#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000052struct dentry *snd_soc_debugfs_root;
53EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000054#endif
55
Mark Brownc5af3a22008-11-28 13:29:45 +000056static DEFINE_MUTEX(client_mutex);
Mark Brown91151712008-11-30 23:31:24 +000057static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000058static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000059static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000060
Frank Mandarinodb2a4162006-10-06 18:31:09 +020061/*
62 * This is a timeout to do a DAPM powerdown after a stream is closed().
63 * It can be used to eliminate pops between different playback streams, e.g.
64 * between two audio tracks.
65 */
66static int pmdown_time = 5000;
67module_param(pmdown_time, int, 0);
68MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
69
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000070/* returns the minimum number of bytes needed to represent
71 * a particular given value */
72static int min_bytes_needed(unsigned long val)
73{
74 int c = 0;
75 int i;
76
77 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
78 if (val & (1UL << i))
79 break;
80 c = (sizeof val * 8) - c;
81 if (!c || (c % 8))
82 c = (c + 8) / 8;
83 else
84 c /= 8;
85 return c;
86}
87
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000088/* fill buf which is 'len' bytes with a formatted
89 * string of the form 'reg: value\n' */
90static int format_register_str(struct snd_soc_codec *codec,
91 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +000092{
Stephen Warren00b317a2011-04-01 14:50:44 -060093 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
94 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000095 int ret;
96 char tmpbuf[len + 1];
97 char regbuf[regsize + 1];
98
99 /* since tmpbuf is allocated on the stack, warn the callers if they
100 * try to abuse this function */
101 WARN_ON(len > 63);
102
103 /* +2 for ': ' and + 1 for '\n' */
104 if (wordsize + regsize + 2 + 1 != len)
105 return -EINVAL;
106
Mark Brown25032c12011-08-01 13:52:48 +0900107 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000108 if (ret < 0) {
109 memset(regbuf, 'X', regsize);
110 regbuf[regsize] = '\0';
111 } else {
112 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
113 }
114
115 /* prepare the buffer */
116 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
117 /* copy it back to the caller without the '\0' */
118 memcpy(buf, tmpbuf, len);
119
120 return 0;
121}
122
123/* codec register dump */
124static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
125 size_t count, loff_t pos)
126{
127 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000128 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000129 int len;
130 size_t total = 0;
131 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000132
Stephen Warren00b317a2011-04-01 14:50:44 -0600133 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
134 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000135
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000136 len = wordsize + regsize + 2 + 1;
137
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000138 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000139 return 0;
140
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000141 if (codec->driver->reg_cache_step)
142 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000143
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000144 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausenb92d1502011-08-27 18:24:14 +0200145 if (!snd_soc_codec_readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +0000146 continue;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000147 if (codec->driver->display_register) {
148 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +0000149 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +0100150 } else {
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000151 /* only support larger than PAGE_SIZE bytes debugfs
152 * entries for the default case */
153 if (p >= pos) {
154 if (total + len >= count - 1)
155 break;
156 format_register_str(codec, i, buf + total, len);
157 total += len;
158 }
159 p += len;
Mark Brown5164d742010-07-14 16:14:33 +0100160 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000161 }
162
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000163 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000164
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000165 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000166}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000167
Mark Brown2624d5f2009-11-03 21:56:13 +0000168static ssize_t codec_reg_show(struct device *dev,
169 struct device_attribute *attr, char *buf)
170{
Mark Brown36ae1a92012-01-06 17:12:45 -0800171 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000172
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000173 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000174}
175
176static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
177
Mark Browndbe21402010-02-12 11:37:24 +0000178static ssize_t pmdown_time_show(struct device *dev,
179 struct device_attribute *attr, char *buf)
180{
Mark Brown36ae1a92012-01-06 17:12:45 -0800181 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000182
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000183 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000184}
185
186static ssize_t pmdown_time_set(struct device *dev,
187 struct device_attribute *attr,
188 const char *buf, size_t count)
189{
Mark Brown36ae1a92012-01-06 17:12:45 -0800190 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700191 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000192
Mark Brownc593b522010-10-27 20:11:17 -0700193 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
194 if (ret)
195 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000196
197 return count;
198}
199
200static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
201
Mark Brown2624d5f2009-11-03 21:56:13 +0000202#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000203static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000204 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000205{
206 ssize_t ret;
207 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000208 char *buf;
209
210 if (*ppos < 0 || !count)
211 return -EINVAL;
212
213 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000214 if (!buf)
215 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000216
217 ret = soc_codec_reg_show(codec, buf, count, *ppos);
218 if (ret >= 0) {
219 if (copy_to_user(user_buf, buf, ret)) {
220 kfree(buf);
221 return -EFAULT;
222 }
223 *ppos += ret;
224 }
225
Mark Brown2624d5f2009-11-03 21:56:13 +0000226 kfree(buf);
227 return ret;
228}
229
230static ssize_t codec_reg_write_file(struct file *file,
231 const char __user *user_buf, size_t count, loff_t *ppos)
232{
233 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700234 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000235 char *start = buf;
236 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000237 struct snd_soc_codec *codec = file->private_data;
238
239 buf_size = min(count, (sizeof(buf)-1));
240 if (copy_from_user(buf, user_buf, buf_size))
241 return -EFAULT;
242 buf[buf_size] = 0;
243
Mark Brown2624d5f2009-11-03 21:56:13 +0000244 while (*start == ' ')
245 start++;
246 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000247 while (*start == ' ')
248 start++;
249 if (strict_strtoul(start, 16, &value))
250 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000251
252 /* Userspace has been fiddling around behind the kernel's back */
253 add_taint(TAINT_USER);
254
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000255 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000256 return buf_size;
257}
258
259static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700260 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000261 .read = codec_reg_read_file,
262 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200263 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000264};
265
266static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
267{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200268 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
269
270 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
271 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000272 if (!codec->debugfs_codec_root) {
Liam Girdwood64e60f92012-02-15 15:15:37 +0000273 dev_warn(codec->dev, "Failed to create codec debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000274 return;
275 }
276
Mark Brownaaee8ef2011-01-26 20:53:50 +0000277 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
278 &codec->cache_sync);
279 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
280 &codec->cache_only);
281
Mark Brown2624d5f2009-11-03 21:56:13 +0000282 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
283 codec->debugfs_codec_root,
284 codec, &codec_reg_fops);
285 if (!codec->debugfs_reg)
Liam Girdwood64e60f92012-02-15 15:15:37 +0000286 dev_warn(codec->dev, "Failed to create codec register debugfs file\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000287
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200288 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000289}
290
291static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
292{
293 debugfs_remove_recursive(codec->debugfs_codec_root);
294}
295
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000296static void soc_init_platform_debugfs(struct snd_soc_platform *platform)
297{
298 struct dentry *debugfs_card_root = platform->card->debugfs_card_root;
299
300 platform->debugfs_platform_root = debugfs_create_dir(platform->name,
301 debugfs_card_root);
302 if (!platform->debugfs_platform_root) {
303 dev_warn(platform->dev,
304 "Failed to create platform debugfs directory\n");
305 return;
306 }
307
308 snd_soc_dapm_debugfs_init(&platform->dapm,
309 platform->debugfs_platform_root);
310}
311
312static void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
313{
314 debugfs_remove_recursive(platform->debugfs_platform_root);
315}
316
Mark Brownc3c5a192010-09-15 18:15:14 +0100317static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
318 size_t count, loff_t *ppos)
319{
320 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100321 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100322 struct snd_soc_codec *codec;
323
324 if (!buf)
325 return -ENOMEM;
326
Mark Brown2b194f9d2010-10-13 10:52:16 +0100327 list_for_each_entry(codec, &codec_list, list) {
328 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
329 codec->name);
330 if (len >= 0)
331 ret += len;
332 if (ret > PAGE_SIZE) {
333 ret = PAGE_SIZE;
334 break;
335 }
336 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100337
338 if (ret >= 0)
339 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
340
341 kfree(buf);
342
343 return ret;
344}
345
346static const struct file_operations codec_list_fops = {
347 .read = codec_list_read_file,
348 .llseek = default_llseek,/* read accesses f_pos */
349};
350
Mark Brownf3208782010-09-15 18:19:07 +0100351static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
352 size_t count, loff_t *ppos)
353{
354 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100355 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100356 struct snd_soc_dai *dai;
357
358 if (!buf)
359 return -ENOMEM;
360
Mark Brown2b194f9d2010-10-13 10:52:16 +0100361 list_for_each_entry(dai, &dai_list, list) {
362 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
363 if (len >= 0)
364 ret += len;
365 if (ret > PAGE_SIZE) {
366 ret = PAGE_SIZE;
367 break;
368 }
369 }
Mark Brownf3208782010-09-15 18:19:07 +0100370
Mark Brown2b194f9d2010-10-13 10:52:16 +0100371 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100372
373 kfree(buf);
374
375 return ret;
376}
377
378static const struct file_operations dai_list_fops = {
379 .read = dai_list_read_file,
380 .llseek = default_llseek,/* read accesses f_pos */
381};
382
Mark Brown19c7ac22010-09-15 18:22:40 +0100383static ssize_t platform_list_read_file(struct file *file,
384 char __user *user_buf,
385 size_t count, loff_t *ppos)
386{
387 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100388 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100389 struct snd_soc_platform *platform;
390
391 if (!buf)
392 return -ENOMEM;
393
Mark Brown2b194f9d2010-10-13 10:52:16 +0100394 list_for_each_entry(platform, &platform_list, list) {
395 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
396 platform->name);
397 if (len >= 0)
398 ret += len;
399 if (ret > PAGE_SIZE) {
400 ret = PAGE_SIZE;
401 break;
402 }
403 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100404
Mark Brown2b194f9d2010-10-13 10:52:16 +0100405 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100406
407 kfree(buf);
408
409 return ret;
410}
411
412static const struct file_operations platform_list_fops = {
413 .read = platform_list_read_file,
414 .llseek = default_llseek,/* read accesses f_pos */
415};
416
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200417static void soc_init_card_debugfs(struct snd_soc_card *card)
418{
419 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000420 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200421 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200422 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100423 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200424 return;
425 }
426
427 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
428 card->debugfs_card_root,
429 &card->pop_time);
430 if (!card->debugfs_pop_time)
431 dev_warn(card->dev,
432 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200433}
434
435static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
436{
437 debugfs_remove_recursive(card->debugfs_card_root);
438}
439
Mark Brown2624d5f2009-11-03 21:56:13 +0000440#else
441
442static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
443{
444}
445
446static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
447{
448}
Axel Linb95fccb2010-11-09 17:06:44 +0800449
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000450static inline void soc_init_platform_debugfs(struct snd_soc_platform *platform)
451{
452}
453
454static inline void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
455{
456}
457
Axel Linb95fccb2010-11-09 17:06:44 +0800458static inline void soc_init_card_debugfs(struct snd_soc_card *card)
459{
460}
461
462static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
463{
464}
Mark Brown2624d5f2009-11-03 21:56:13 +0000465#endif
466
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200467#ifdef CONFIG_SND_SOC_AC97_BUS
468/* unregister ac97 codec */
469static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
470{
471 if (codec->ac97->dev.bus)
472 device_unregister(&codec->ac97->dev);
473 return 0;
474}
475
476/* stop no dev release warning */
477static void soc_ac97_device_release(struct device *dev){}
478
479/* register ac97 codec to bus */
480static int soc_ac97_dev_register(struct snd_soc_codec *codec)
481{
482 int err;
483
484 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100485 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200486 codec->ac97->dev.release = soc_ac97_device_release;
487
Kay Sieversbb072bf2008-11-02 03:50:35 +0100488 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000489 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200490 err = device_register(&codec->ac97->dev);
491 if (err < 0) {
492 snd_printk(KERN_ERR "Can't register ac97 bus\n");
493 codec->ac97->dev.bus = NULL;
494 return err;
495 }
496 return 0;
497}
498#endif
499
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000500#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200501/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000502int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200503{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000504 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200505 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200506 int i;
507
Daniel Macke3509ff2009-06-03 17:44:49 +0200508 /* If the initialization of this soc device failed, there is no codec
509 * associated with it. Just bail out in this case.
510 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000511 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200512 return 0;
513
Andy Green6ed25972008-06-13 16:24:05 +0100514 /* Due to the resume being scheduled into a workqueue we could
515 * suspend before that's finished - wait for it to complete.
516 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000517 snd_power_lock(card->snd_card);
518 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
519 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100520
521 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000522 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100523
Mark Browna00f90f2010-12-02 16:24:24 +0000524 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000525 for (i = 0; i < card->num_rtd; i++) {
526 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
527 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100528
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000529 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100530 continue;
531
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000532 if (drv->ops->digital_mute && dai->playback_active)
533 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200534 }
535
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100536 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000537 for (i = 0; i < card->num_rtd; i++) {
538 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100539 continue;
540
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000541 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100542 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100543
Mark Brown87506542008-11-18 20:50:34 +0000544 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000545 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200546
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000547 for (i = 0; i < card->num_rtd; i++) {
548 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
549 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100550
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000551 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100552 continue;
553
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000554 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
555 cpu_dai->driver->suspend(cpu_dai);
556 if (platform->driver->suspend && !platform->suspended) {
557 platform->driver->suspend(cpu_dai);
558 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100559 }
560 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200561
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000562 /* close any waiting streams and save state */
563 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +0100564 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200565 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000566 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100567
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000568 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000569
570 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100571 continue;
572
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800573 snd_soc_dapm_stream_event(&card->rtd[i],
574 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800575 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000576
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800577 snd_soc_dapm_stream_event(&card->rtd[i],
578 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800579 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000580 }
581
582 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200583 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000584 /* If there are paths active then the CODEC will be held with
585 * bias _ON and should not be suspended. */
586 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200587 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000588 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000589 /*
590 * If the CODEC is capable of idle
591 * bias off then being in STANDBY
592 * means it's doing something,
593 * otherwise fall through.
594 */
595 if (codec->dapm.idle_bias_off) {
596 dev_dbg(codec->dev,
597 "idle_bias_off CODEC on over suspend\n");
598 break;
599 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600 case SND_SOC_BIAS_OFF:
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100601 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000602 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900603 codec->cache_sync = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000604 break;
605 default:
606 dev_dbg(codec->dev, "CODEC is on over suspend\n");
607 break;
608 }
609 }
610 }
611
612 for (i = 0; i < card->num_rtd; i++) {
613 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
614
615 if (card->rtd[i].dai_link->ignore_suspend)
616 continue;
617
618 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
619 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200620 }
621
Mark Brown87506542008-11-18 20:50:34 +0000622 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000623 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200624
625 return 0;
626}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000627EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200628
Andy Green6ed25972008-06-13 16:24:05 +0100629/* deferred resume work, so resume can complete before we finished
630 * setting our codec back up, which can be very slow on I2C
631 */
632static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200633{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000634 struct snd_soc_card *card =
635 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200636 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200637 int i;
638
Andy Green6ed25972008-06-13 16:24:05 +0100639 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
640 * so userspace apps are blocked from touching us
641 */
642
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000643 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100644
Mark Brown99497882010-05-07 20:24:05 +0100645 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000646 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100647
Mark Brown87506542008-11-18 20:50:34 +0000648 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000649 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200650
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000651 /* resume AC97 DAIs */
652 for (i = 0; i < card->num_rtd; i++) {
653 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100654
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000655 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100656 continue;
657
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000658 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
659 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200660 }
661
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200662 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000663 /* If the CODEC was idle over suspend then it will have been
664 * left with bias OFF or STANDBY and suspended so we must now
665 * resume. Otherwise the suspend was suppressed.
666 */
667 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200668 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000669 case SND_SOC_BIAS_STANDBY:
670 case SND_SOC_BIAS_OFF:
671 codec->driver->resume(codec);
672 codec->suspended = 0;
673 break;
674 default:
675 dev_dbg(codec->dev, "CODEC was on over suspend\n");
676 break;
677 }
Mark Brown1547aba2010-05-07 21:11:40 +0100678 }
679 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200680
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000681 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100682
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000683 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100684 continue;
685
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800686 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000687 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800688 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000689
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800690 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000691 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800692 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200693 }
694
Mark Brown3ff3f642008-05-19 12:32:25 +0200695 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000696 for (i = 0; i < card->num_rtd; i++) {
697 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
698 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100699
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000700 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100701 continue;
702
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000703 if (drv->ops->digital_mute && dai->playback_active)
704 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200705 }
706
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000707 for (i = 0; i < card->num_rtd; i++) {
708 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
709 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100710
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000711 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100712 continue;
713
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000714 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
715 cpu_dai->driver->resume(cpu_dai);
716 if (platform->driver->resume && platform->suspended) {
717 platform->driver->resume(cpu_dai);
718 platform->suspended = 0;
719 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200720 }
721
Mark Brown87506542008-11-18 20:50:34 +0000722 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000723 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200724
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000725 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100726
727 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000728 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +0100729}
730
731/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000732int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100733{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000734 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600735 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200736
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800737 /* If the initialization of this soc device failed, there is no codec
738 * associated with it. Just bail out in this case.
739 */
740 if (list_empty(&card->codec_dev_list))
741 return 0;
742
Mark Brown64ab9ba2009-03-31 11:27:03 +0100743 /* AC97 devices might have other drivers hanging off them so
744 * need to resume immediately. Other drivers don't have that
745 * problem and may take a substantial amount of time to resume
746 * due to I/O costs and anti-pop so handle them out of line.
747 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000748 for (i = 0; i < card->num_rtd; i++) {
749 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600750 ac97_control |= cpu_dai->driver->ac97_control;
751 }
752 if (ac97_control) {
753 dev_dbg(dev, "Resuming AC97 immediately\n");
754 soc_resume_deferred(&card->deferred_resume_work);
755 } else {
756 dev_dbg(dev, "Scheduling resume work\n");
757 if (!schedule_work(&card->deferred_resume_work))
758 dev_err(dev, "resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100759 }
Andy Green6ed25972008-06-13 16:24:05 +0100760
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200761 return 0;
762}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000763EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200764#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000765#define snd_soc_suspend NULL
766#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200767#endif
768
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100769static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800770};
771
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000772static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200773{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000774 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
775 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +0000776 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000777 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000778 struct snd_soc_dai *codec_dai, *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100779 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200780
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000781 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000782
Mark Brownb19e6e72012-03-14 21:18:39 +0000783 /* Find CPU DAI from registered DAIs*/
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000784 list_for_each_entry(cpu_dai, &dai_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700785 if (dai_link->cpu_dai_of_node) {
786 if (cpu_dai->dev->of_node != dai_link->cpu_dai_of_node)
787 continue;
788 } else {
789 if (strcmp(cpu_dai->name, dai_link->cpu_dai_name))
790 continue;
791 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700792
793 rtd->cpu_dai = cpu_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000794 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000795
796 if (!rtd->cpu_dai) {
797 dev_dbg(card->dev, "CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000798 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000799 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000800 }
801
Mark Brownb19e6e72012-03-14 21:18:39 +0000802 /* Find CODEC from registered CODECs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000803 list_for_each_entry(codec, &codec_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700804 if (dai_link->codec_of_node) {
805 if (codec->dev->of_node != dai_link->codec_of_node)
806 continue;
807 } else {
808 if (strcmp(codec->name, dai_link->codec_name))
809 continue;
810 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000811
Stephen Warren2610ab72011-12-07 13:58:27 -0700812 rtd->codec = codec;
813
814 /*
815 * CODEC found, so find CODEC DAI from registered DAIs from
816 * this CODEC
817 */
818 list_for_each_entry(codec_dai, &dai_list, list) {
819 if (codec->dev == codec_dai->dev &&
820 !strcmp(codec_dai->name,
821 dai_link->codec_dai_name)) {
822
823 rtd->codec_dai = codec_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000824 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000825 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000826
827 if (!rtd->codec_dai) {
828 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
Stephen Warren2610ab72011-12-07 13:58:27 -0700829 dai_link->codec_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000830 return -EPROBE_DEFER;
831 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000832 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000833
Mark Brownb19e6e72012-03-14 21:18:39 +0000834 if (!rtd->codec) {
835 dev_dbg(card->dev, "CODEC %s not registered\n",
836 dai_link->codec_name);
837 return -EPROBE_DEFER;
838 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100839
840 /* if there's no platform we match on the empty platform */
841 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700842 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100843 platform_name = "snd-soc-dummy";
844
Mark Brownb19e6e72012-03-14 21:18:39 +0000845 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000846 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700847 if (dai_link->platform_of_node) {
848 if (platform->dev->of_node !=
849 dai_link->platform_of_node)
850 continue;
851 } else {
852 if (strcmp(platform->name, platform_name))
853 continue;
854 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700855
856 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000857 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000858 if (!rtd->platform) {
859 dev_dbg(card->dev, "platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000860 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000861 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000862 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000863
864 card->num_rtd++;
865
866 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000867}
868
Jarkko Nikula589c3562010-12-06 16:27:07 +0200869static void soc_remove_codec(struct snd_soc_codec *codec)
870{
871 int err;
872
873 if (codec->driver->remove) {
874 err = codec->driver->remove(codec);
875 if (err < 0)
876 dev_err(codec->dev,
877 "asoc: failed to remove %s: %d\n",
878 codec->name, err);
879 }
880
881 /* Make sure all DAPM widgets are freed */
882 snd_soc_dapm_free(&codec->dapm);
883
884 soc_cleanup_codec_debugfs(codec);
885 codec->probed = 0;
886 list_del(&codec->card_list);
887 module_put(codec->dev->driver->owner);
888}
889
Liam Girdwood0168bf02011-06-07 16:08:05 +0100890static void soc_remove_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000891{
892 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
893 struct snd_soc_codec *codec = rtd->codec;
894 struct snd_soc_platform *platform = rtd->platform;
895 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
896 int err;
897
898 /* unregister the rtd device */
899 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -0800900 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
901 device_remove_file(rtd->dev, &dev_attr_codec_reg);
902 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000903 rtd->dev_registered = 0;
904 }
905
906 /* remove the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100907 if (codec_dai && codec_dai->probed &&
908 codec_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000909 if (codec_dai->driver->remove) {
910 err = codec_dai->driver->remove(codec_dai);
911 if (err < 0)
Fabio Estevam0837fc62012-02-17 19:40:38 -0200912 pr_err("asoc: failed to remove %s: %d\n",
913 codec_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000914 }
915 codec_dai->probed = 0;
916 list_del(&codec_dai->card_list);
917 }
918
919 /* remove the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100920 if (platform && platform->probed &&
921 platform->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000922 if (platform->driver->remove) {
923 err = platform->driver->remove(platform);
924 if (err < 0)
Fabio Estevam0837fc62012-02-17 19:40:38 -0200925 pr_err("asoc: failed to remove %s: %d\n",
926 platform->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000927 }
Liam Girdwood675c4962012-01-16 15:25:37 +0000928
929 /* Make sure all DAPM widgets are freed */
930 snd_soc_dapm_free(&platform->dapm);
931
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000932 soc_cleanup_platform_debugfs(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000933 platform->probed = 0;
934 list_del(&platform->card_list);
935 module_put(platform->dev->driver->owner);
936 }
937
938 /* remove the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100939 if (codec && codec->probed &&
940 codec->driver->remove_order == order)
Jarkko Nikula589c3562010-12-06 16:27:07 +0200941 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000942
943 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100944 if (cpu_dai && cpu_dai->probed &&
945 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000946 if (cpu_dai->driver->remove) {
947 err = cpu_dai->driver->remove(cpu_dai);
948 if (err < 0)
Fabio Estevam0837fc62012-02-17 19:40:38 -0200949 pr_err("asoc: failed to remove %s: %d\n",
950 cpu_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000951 }
952 cpu_dai->probed = 0;
953 list_del(&cpu_dai->card_list);
954 module_put(cpu_dai->dev->driver->owner);
955 }
956}
957
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900958static void soc_remove_dai_links(struct snd_soc_card *card)
959{
Liam Girdwood0168bf02011-06-07 16:08:05 +0100960 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900961
Liam Girdwood0168bf02011-06-07 16:08:05 +0100962 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
963 order++) {
964 for (dai = 0; dai < card->num_rtd; dai++)
965 soc_remove_dai_link(card, dai, order);
966 }
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900967 card->num_rtd = 0;
968}
969
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200970static void soc_set_name_prefix(struct snd_soc_card *card,
971 struct snd_soc_codec *codec)
972{
973 int i;
974
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000975 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200976 return;
977
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000978 for (i = 0; i < card->num_configs; i++) {
979 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200980 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
981 codec->name_prefix = map->name_prefix;
982 break;
983 }
984 }
985}
986
Jarkko Nikula589c3562010-12-06 16:27:07 +0200987static int soc_probe_codec(struct snd_soc_card *card,
988 struct snd_soc_codec *codec)
989{
990 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +0000991 const struct snd_soc_codec_driver *driver = codec->driver;
Mark Brown888df392012-02-16 19:37:51 -0800992 struct snd_soc_dai *dai;
Jarkko Nikula589c3562010-12-06 16:27:07 +0200993
994 codec->card = card;
995 codec->dapm.card = card;
996 soc_set_name_prefix(card, codec);
997
Jarkko Nikula70d29332011-01-27 16:24:22 +0200998 if (!try_module_get(codec->dev->driver->owner))
999 return -ENODEV;
1000
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001001 soc_init_codec_debugfs(codec);
1002
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001003 if (driver->dapm_widgets)
1004 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1005 driver->num_dapm_widgets);
1006
Mark Brown888df392012-02-16 19:37:51 -08001007 /* Create DAPM widgets for each DAI stream */
1008 list_for_each_entry(dai, &dai_list, list) {
1009 if (dai->dev != codec->dev)
1010 continue;
1011
1012 snd_soc_dapm_new_dai_widgets(&codec->dapm, dai);
1013 }
1014
Mark Brown33c5f962011-08-22 18:40:30 +01001015 codec->dapm.idle_bias_off = driver->idle_bias_off;
1016
Mark Brown89b95ac02011-03-07 16:38:44 +00001017 if (driver->probe) {
1018 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001019 if (ret < 0) {
1020 dev_err(codec->dev,
1021 "asoc: failed to probe CODEC %s: %d\n",
1022 codec->name, ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001023 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001024 }
1025 }
1026
Mark Brownb7af1da2011-04-07 19:18:44 +09001027 if (driver->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001028 snd_soc_add_codec_controls(codec, driver->controls,
Mark Brownb7af1da2011-04-07 19:18:44 +09001029 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001030 if (driver->dapm_routes)
1031 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1032 driver->num_dapm_routes);
1033
Jarkko Nikula589c3562010-12-06 16:27:07 +02001034 /* mark codec as probed and add to card codec list */
1035 codec->probed = 1;
1036 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001037 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001038
Jarkko Nikula70d29332011-01-27 16:24:22 +02001039 return 0;
1040
1041err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001042 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001043 module_put(codec->dev->driver->owner);
1044
Jarkko Nikula589c3562010-12-06 16:27:07 +02001045 return ret;
1046}
1047
Liam Girdwood956245e2011-07-01 16:54:08 +01001048static int soc_probe_platform(struct snd_soc_card *card,
1049 struct snd_soc_platform *platform)
1050{
1051 int ret = 0;
1052 const struct snd_soc_platform_driver *driver = platform->driver;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001053 struct snd_soc_dai *dai;
Liam Girdwood956245e2011-07-01 16:54:08 +01001054
1055 platform->card = card;
Liam Girdwoodb7950642011-07-04 22:10:52 +01001056 platform->dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +01001057
1058 if (!try_module_get(platform->dev->driver->owner))
1059 return -ENODEV;
1060
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +00001061 soc_init_platform_debugfs(platform);
1062
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001063 if (driver->dapm_widgets)
1064 snd_soc_dapm_new_controls(&platform->dapm,
1065 driver->dapm_widgets, driver->num_dapm_widgets);
1066
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001067 /* Create DAPM widgets for each DAI stream */
1068 list_for_each_entry(dai, &dai_list, list) {
1069 if (dai->dev != platform->dev)
1070 continue;
1071
1072 snd_soc_dapm_new_dai_widgets(&platform->dapm, dai);
1073 }
1074
Stephen Warren3fec6b62012-04-05 12:28:01 -06001075 platform->dapm.idle_bias_off = 1;
1076
Liam Girdwood956245e2011-07-01 16:54:08 +01001077 if (driver->probe) {
1078 ret = driver->probe(platform);
1079 if (ret < 0) {
1080 dev_err(platform->dev,
1081 "asoc: failed to probe platform %s: %d\n",
1082 platform->name, ret);
1083 goto err_probe;
1084 }
1085 }
1086
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001087 if (driver->controls)
1088 snd_soc_add_platform_controls(platform, driver->controls,
1089 driver->num_controls);
1090 if (driver->dapm_routes)
1091 snd_soc_dapm_add_routes(&platform->dapm, driver->dapm_routes,
1092 driver->num_dapm_routes);
1093
Liam Girdwood956245e2011-07-01 16:54:08 +01001094 /* mark platform as probed and add to card platform list */
1095 platform->probed = 1;
1096 list_add(&platform->card_list, &card->platform_dev_list);
Liam Girdwoodb7950642011-07-04 22:10:52 +01001097 list_add(&platform->dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001098
1099 return 0;
1100
1101err_probe:
Liam Girdwood02db1102012-03-02 16:13:44 +00001102 soc_cleanup_platform_debugfs(platform);
Liam Girdwood956245e2011-07-01 16:54:08 +01001103 module_put(platform->dev->driver->owner);
1104
1105 return ret;
1106}
1107
Mark Brown36ae1a92012-01-06 17:12:45 -08001108static void rtd_release(struct device *dev)
1109{
1110 kfree(dev);
1111}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001112
Jarkko Nikula589c3562010-12-06 16:27:07 +02001113static int soc_post_component_init(struct snd_soc_card *card,
1114 struct snd_soc_codec *codec,
1115 int num, int dailess)
1116{
1117 struct snd_soc_dai_link *dai_link = NULL;
1118 struct snd_soc_aux_dev *aux_dev = NULL;
1119 struct snd_soc_pcm_runtime *rtd;
1120 const char *temp, *name;
1121 int ret = 0;
1122
1123 if (!dailess) {
1124 dai_link = &card->dai_link[num];
1125 rtd = &card->rtd[num];
1126 name = dai_link->name;
1127 } else {
1128 aux_dev = &card->aux_dev[num];
1129 rtd = &card->rtd_aux[num];
1130 name = aux_dev->name;
1131 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001132 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001133
Mark Brown4b1cfcb2011-10-18 00:11:49 +01001134 /* Make sure all DAPM widgets are instantiated */
1135 snd_soc_dapm_new_widgets(&codec->dapm);
1136
Jarkko Nikula589c3562010-12-06 16:27:07 +02001137 /* machine controls, routes and widgets are not prefixed */
1138 temp = codec->name_prefix;
1139 codec->name_prefix = NULL;
1140
1141 /* do machine specific initialization */
1142 if (!dailess && dai_link->init)
1143 ret = dai_link->init(rtd);
1144 else if (dailess && aux_dev->init)
1145 ret = aux_dev->init(&codec->dapm);
1146 if (ret < 0) {
1147 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1148 return ret;
1149 }
1150 codec->name_prefix = temp;
1151
Jarkko Nikula589c3562010-12-06 16:27:07 +02001152 /* register the rtd device */
1153 rtd->codec = codec;
Mark Brown36ae1a92012-01-06 17:12:45 -08001154
1155 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1156 if (!rtd->dev)
1157 return -ENOMEM;
1158 device_initialize(rtd->dev);
1159 rtd->dev->parent = card->dev;
1160 rtd->dev->release = rtd_release;
1161 rtd->dev->init_name = name;
1162 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001163 mutex_init(&rtd->pcm_mutex);
Mark Brown36ae1a92012-01-06 17:12:45 -08001164 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001165 if (ret < 0) {
1166 dev_err(card->dev,
1167 "asoc: failed to register runtime device: %d\n", ret);
1168 return ret;
1169 }
1170 rtd->dev_registered = 1;
1171
1172 /* add DAPM sysfs entries for this codec */
Mark Brown36ae1a92012-01-06 17:12:45 -08001173 ret = snd_soc_dapm_sys_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001174 if (ret < 0)
1175 dev_err(codec->dev,
1176 "asoc: failed to add codec dapm sysfs entries: %d\n",
1177 ret);
1178
1179 /* add codec sysfs entries */
Mark Brown36ae1a92012-01-06 17:12:45 -08001180 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001181 if (ret < 0)
1182 dev_err(codec->dev,
1183 "asoc: failed to add codec sysfs files: %d\n", ret);
1184
1185 return 0;
1186}
1187
Liam Girdwood0168bf02011-06-07 16:08:05 +01001188static int soc_probe_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001189{
1190 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1191 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1192 struct snd_soc_codec *codec = rtd->codec;
1193 struct snd_soc_platform *platform = rtd->platform;
Mark Brownc74184e2012-04-04 22:12:09 +01001194 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1195 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1196 struct snd_soc_dapm_widget *play_w, *capture_w;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001197 int ret;
1198
Liam Girdwood0168bf02011-06-07 16:08:05 +01001199 dev_dbg(card->dev, "probe %s dai link %d late %d\n",
1200 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001201
1202 /* config components */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001203 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001204 codec_dai->card = card;
1205 cpu_dai->card = card;
1206
1207 /* set default power off timeout */
1208 rtd->pmdown_time = pmdown_time;
1209
1210 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001211 if (!cpu_dai->probed &&
1212 cpu_dai->driver->probe_order == order) {
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001213 cpu_dai->dapm.card = card;
Liam Girdwood61b61e32011-05-24 13:57:43 +01001214 if (!try_module_get(cpu_dai->dev->driver->owner))
1215 return -ENODEV;
1216
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001217 snd_soc_dapm_new_dai_widgets(&cpu_dai->dapm, cpu_dai);
1218
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001219 if (cpu_dai->driver->probe) {
1220 ret = cpu_dai->driver->probe(cpu_dai);
1221 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001222 pr_err("asoc: failed to probe CPU DAI %s: %d\n",
1223 cpu_dai->name, ret);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001224 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001225 return ret;
1226 }
1227 }
1228 cpu_dai->probed = 1;
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001229 /* mark cpu_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001230 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1231 }
1232
1233 /* probe the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001234 if (!codec->probed &&
1235 codec->driver->probe_order == order) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001236 ret = soc_probe_codec(card, codec);
1237 if (ret < 0)
1238 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001239 }
1240
1241 /* probe the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001242 if (!platform->probed &&
1243 platform->driver->probe_order == order) {
Liam Girdwood956245e2011-07-01 16:54:08 +01001244 ret = soc_probe_platform(card, platform);
1245 if (ret < 0)
1246 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001247 }
1248
1249 /* probe the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001250 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001251 if (codec_dai->driver->probe) {
1252 ret = codec_dai->driver->probe(codec_dai);
1253 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001254 pr_err("asoc: failed to probe CODEC DAI %s: %d\n",
1255 codec_dai->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001256 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001257 }
1258 }
1259
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001260 /* mark codec_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001261 codec_dai->probed = 1;
1262 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001263 }
1264
Liam Girdwood0168bf02011-06-07 16:08:05 +01001265 /* complete DAI probe during last probe */
1266 if (order != SND_SOC_COMP_ORDER_LAST)
1267 return 0;
1268
Jarkko Nikula589c3562010-12-06 16:27:07 +02001269 ret = soc_post_component_init(card, codec, num, 0);
1270 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001271 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001272
Mark Brown36ae1a92012-01-06 17:12:45 -08001273 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001274 if (ret < 0)
Fabio Estevam0837fc62012-02-17 19:40:38 -02001275 pr_warn("asoc: failed to add pmdown_time sysfs:%d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001276
Mark Brownc74184e2012-04-04 22:12:09 +01001277 if (!dai_link->params) {
1278 /* create the pcm */
1279 ret = soc_new_pcm(rtd, num);
1280 if (ret < 0) {
1281 pr_err("asoc: can't create pcm %s :%d\n",
1282 dai_link->stream_name, ret);
1283 return ret;
1284 }
1285 } else {
1286 /* link the DAI widgets */
1287 play_w = codec_dai->playback_widget;
1288 capture_w = cpu_dai->capture_widget;
1289 if (play_w && capture_w) {
1290 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1291 capture_w, play_w);
1292 if (ret != 0) {
1293 dev_err(card->dev, "Can't link %s to %s: %d\n",
1294 play_w->name, capture_w->name, ret);
1295 return ret;
1296 }
1297 }
1298
1299 play_w = cpu_dai->playback_widget;
1300 capture_w = codec_dai->capture_widget;
1301 if (play_w && capture_w) {
1302 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1303 capture_w, play_w);
1304 if (ret != 0) {
1305 dev_err(card->dev, "Can't link %s to %s: %d\n",
1306 play_w->name, capture_w->name, ret);
1307 return ret;
1308 }
1309 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001310 }
1311
1312 /* add platform data for AC97 devices */
1313 if (rtd->codec_dai->driver->ac97_control)
1314 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1315
1316 return 0;
1317}
1318
1319#ifdef CONFIG_SND_SOC_AC97_BUS
1320static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1321{
1322 int ret;
1323
1324 /* Only instantiate AC97 if not already done by the adaptor
1325 * for the generic AC97 subsystem.
1326 */
1327 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001328 /*
1329 * It is possible that the AC97 device is already registered to
1330 * the device subsystem. This happens when the device is created
1331 * via snd_ac97_mixer(). Currently only SoC codec that does so
1332 * is the generic AC97 glue but others migh emerge.
1333 *
1334 * In those cases we don't try to register the device again.
1335 */
1336 if (!rtd->codec->ac97_created)
1337 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001338
1339 ret = soc_ac97_dev_register(rtd->codec);
1340 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001341 pr_err("asoc: AC97 device register failed:%d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001342 return ret;
1343 }
1344
1345 rtd->codec->ac97_registered = 1;
1346 }
1347 return 0;
1348}
1349
1350static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1351{
1352 if (codec->ac97_registered) {
1353 soc_ac97_dev_unregister(codec);
1354 codec->ac97_registered = 0;
1355 }
1356}
1357#endif
1358
Mark Brownb19e6e72012-03-14 21:18:39 +00001359static int soc_check_aux_dev(struct snd_soc_card *card, int num)
1360{
1361 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1362 struct snd_soc_codec *codec;
1363
1364 /* find CODEC from registered CODECs*/
1365 list_for_each_entry(codec, &codec_list, list) {
1366 if (!strcmp(codec->name, aux_dev->codec_name))
1367 return 0;
1368 }
1369
1370 return -EPROBE_DEFER;
1371}
1372
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001373static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1374{
1375 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001376 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001377 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001378
1379 /* find CODEC from registered CODECs*/
1380 list_for_each_entry(codec, &codec_list, list) {
1381 if (!strcmp(codec->name, aux_dev->codec_name)) {
1382 if (codec->probed) {
1383 dev_err(codec->dev,
1384 "asoc: codec already probed");
1385 ret = -EBUSY;
1386 goto out;
1387 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001388 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001389 }
1390 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001391 /* codec not found */
1392 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
Mark Brownb19e6e72012-03-14 21:18:39 +00001393 return -EPROBE_DEFER;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001394
Jarkko Nikula676ad982010-12-03 09:18:22 +02001395found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001396 ret = soc_probe_codec(card, codec);
1397 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001398 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001399
Jarkko Nikula589c3562010-12-06 16:27:07 +02001400 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001401
1402out:
1403 return ret;
1404}
1405
1406static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1407{
1408 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1409 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001410
1411 /* unregister the rtd device */
1412 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001413 device_remove_file(rtd->dev, &dev_attr_codec_reg);
1414 device_del(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001415 rtd->dev_registered = 0;
1416 }
1417
Jarkko Nikula589c3562010-12-06 16:27:07 +02001418 if (codec && codec->probed)
1419 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001420}
1421
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001422static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1423 enum snd_soc_compress_type compress_type)
1424{
1425 int ret;
1426
1427 if (codec->cache_init)
1428 return 0;
1429
1430 /* override the compress_type if necessary */
1431 if (compress_type && codec->compress_type != compress_type)
1432 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001433 ret = snd_soc_cache_init(codec);
1434 if (ret < 0) {
1435 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1436 ret);
1437 return ret;
1438 }
1439 codec->cache_init = 1;
1440 return 0;
1441}
1442
Mark Brownb19e6e72012-03-14 21:18:39 +00001443static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001444{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001445 struct snd_soc_codec *codec;
1446 struct snd_soc_codec_conf *codec_conf;
1447 enum snd_soc_compress_type compress_type;
Mark Brown75d9ac42011-09-27 16:41:01 +01001448 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001449 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001450
Liam Girdwood01b9d992012-03-07 10:38:25 +00001451 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001452
Mark Brownb19e6e72012-03-14 21:18:39 +00001453 /* bind DAIs */
1454 for (i = 0; i < card->num_links; i++) {
1455 ret = soc_bind_dai_link(card, i);
1456 if (ret != 0)
1457 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001458 }
1459
Mark Brownb19e6e72012-03-14 21:18:39 +00001460 /* check aux_devs too */
1461 for (i = 0; i < card->num_aux_devs; i++) {
1462 ret = soc_check_aux_dev(card, i);
1463 if (ret != 0)
1464 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001465 }
1466
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001467 /* initialize the register cache for each available codec */
1468 list_for_each_entry(codec, &codec_list, list) {
1469 if (codec->cache_init)
1470 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001471 /* by default we don't override the compress_type */
1472 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001473 /* check to see if we need to override the compress_type */
1474 for (i = 0; i < card->num_configs; ++i) {
1475 codec_conf = &card->codec_conf[i];
1476 if (!strcmp(codec->name, codec_conf->dev_name)) {
1477 compress_type = codec_conf->compress_type;
1478 if (compress_type && compress_type
1479 != codec->compress_type)
1480 break;
1481 }
1482 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001483 ret = snd_soc_init_codec_cache(codec, compress_type);
Mark Brownb19e6e72012-03-14 21:18:39 +00001484 if (ret < 0)
1485 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001486 }
1487
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001488 /* card bind complete so register a sound card */
1489 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1490 card->owner, 0, &card->snd_card);
1491 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001492 pr_err("asoc: can't create sound card for card %s: %d\n",
1493 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001494 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001495 }
1496 card->snd_card->dev = card->dev;
1497
Mark Browne37a4972011-03-02 18:21:57 +00001498 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1499 card->dapm.dev = card->dev;
1500 card->dapm.card = card;
1501 list_add(&card->dapm.list, &card->dapm_list);
1502
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001503#ifdef CONFIG_DEBUG_FS
1504 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1505#endif
1506
Mark Brown88ee1c62011-02-02 10:43:26 +00001507#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001508 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001509 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001510#endif
Andy Green6ed25972008-06-13 16:24:05 +01001511
Mark Brown9a841eb2011-04-12 17:51:37 -07001512 if (card->dapm_widgets)
1513 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1514 card->num_dapm_widgets);
1515
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001516 /* initialise the sound card only once */
1517 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001518 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001519 if (ret < 0)
1520 goto card_probe_error;
1521 }
1522
Liam Girdwood0168bf02011-06-07 16:08:05 +01001523 /* early DAI link probe */
1524 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1525 order++) {
1526 for (i = 0; i < card->num_links; i++) {
1527 ret = soc_probe_dai_link(card, i, order);
1528 if (ret < 0) {
1529 pr_err("asoc: failed to instantiate card %s: %d\n",
Mark Brown321de0d2010-09-21 15:09:37 +01001530 card->name, ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001531 goto probe_dai_err;
1532 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001533 }
1534 }
1535
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001536 for (i = 0; i < card->num_aux_devs; i++) {
1537 ret = soc_probe_aux_dev(card, i);
1538 if (ret < 0) {
1539 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1540 card->name, ret);
1541 goto probe_aux_dev_err;
1542 }
1543 }
1544
Mark Brown888df392012-02-16 19:37:51 -08001545 snd_soc_dapm_link_dai_widgets(card);
1546
Mark Brownb7af1da2011-04-07 19:18:44 +09001547 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001548 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001549
Mark Brownb8ad29d2011-03-02 18:35:51 +00001550 if (card->dapm_routes)
1551 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1552 card->num_dapm_routes);
1553
Mark Brownb90d2f92011-10-10 13:38:06 +01001554 snd_soc_dapm_new_widgets(&card->dapm);
1555
Mark Brown75d9ac42011-09-27 16:41:01 +01001556 for (i = 0; i < card->num_links; i++) {
1557 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001558 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001559
Mark Brownf04209a2012-04-09 16:29:21 +01001560 if (dai_fmt) {
Mark Brown75d9ac42011-09-27 16:41:01 +01001561 ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001562 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001563 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001564 dev_warn(card->rtd[i].codec_dai->dev,
1565 "Failed to set DAI format: %d\n",
1566 ret);
Mark Brownf04209a2012-04-09 16:29:21 +01001567 }
1568
1569 /* If this is a regular CPU link there will be a platform */
1570 if (dai_fmt && dai_link->platform_name) {
1571 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1572 dai_fmt);
1573 if (ret != 0 && ret != -ENOTSUPP)
1574 dev_warn(card->rtd[i].cpu_dai->dev,
1575 "Failed to set DAI format: %d\n",
1576 ret);
1577 } else if (dai_fmt) {
1578 /* Flip the polarity for the "CPU" end */
1579 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1580 switch (dai_link->dai_fmt &
1581 SND_SOC_DAIFMT_MASTER_MASK) {
1582 case SND_SOC_DAIFMT_CBM_CFM:
1583 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1584 break;
1585 case SND_SOC_DAIFMT_CBM_CFS:
1586 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1587 break;
1588 case SND_SOC_DAIFMT_CBS_CFM:
1589 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1590 break;
1591 case SND_SOC_DAIFMT_CBS_CFS:
1592 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1593 break;
1594 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001595
1596 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001597 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001598 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001599 dev_warn(card->rtd[i].cpu_dai->dev,
1600 "Failed to set DAI format: %d\n",
1601 ret);
1602 }
1603 }
1604
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001605 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001606 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001607 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1608 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001609 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1610 "%s", card->driver_name ? card->driver_name : card->name);
1611 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1612 switch (card->snd_card->driver[i]) {
1613 case '_':
1614 case '-':
1615 case '\0':
1616 break;
1617 default:
1618 if (!isalnum(card->snd_card->driver[i]))
1619 card->snd_card->driver[i] = '_';
1620 break;
1621 }
1622 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001623
Mark Brown28e9ad92011-03-02 18:36:34 +00001624 if (card->late_probe) {
1625 ret = card->late_probe(card);
1626 if (ret < 0) {
1627 dev_err(card->dev, "%s late_probe() failed: %d\n",
1628 card->name, ret);
1629 goto probe_aux_dev_err;
1630 }
1631 }
1632
Mark Brown2dc00212011-10-08 13:59:44 +01001633 snd_soc_dapm_new_widgets(&card->dapm);
1634
Stephen Warren16332812011-11-23 12:42:04 -07001635 if (card->fully_routed)
Mark Brownb05d8dc2011-11-27 19:38:34 +00001636 list_for_each_entry(codec, &card->codec_dev_list, card_list)
Stephen Warren16332812011-11-23 12:42:04 -07001637 snd_soc_dapm_auto_nc_codec_pins(codec);
1638
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001639 ret = snd_card_register(card->snd_card);
1640 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001641 pr_err("asoc: failed to register soundcard for %s: %d\n",
1642 card->name, ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001643 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001644 }
1645
1646#ifdef CONFIG_SND_SOC_AC97_BUS
1647 /* register any AC97 codecs */
1648 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001649 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1650 if (ret < 0) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02001651 pr_err("asoc: failed to register AC97 %s: %d\n",
1652 card->name, ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001653 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001654 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001655 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001656 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001657 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001658#endif
1659
Mark Brown435c5e22008-12-04 15:32:53 +00001660 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001661 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001662 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001663
1664 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001665
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001666probe_aux_dev_err:
1667 for (i = 0; i < card->num_aux_devs; i++)
1668 soc_remove_aux_dev(card, i);
1669
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001670probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001671 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001672
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001673card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001674 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001675 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001676
1677 snd_card_free(card->snd_card);
1678
Mark Brownb19e6e72012-03-14 21:18:39 +00001679base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001680 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001681
Mark Brownb19e6e72012-03-14 21:18:39 +00001682 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001683}
1684
1685/* probes a new socdev */
1686static int soc_probe(struct platform_device *pdev)
1687{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001688 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001689 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001690
Vinod Koul70a7ca32011-01-14 19:22:48 +05301691 /*
1692 * no card, so machine driver should be registering card
1693 * we should not be here in that case so ret error
1694 */
1695 if (!card)
1696 return -EINVAL;
1697
Mark Brownfe4085e2012-03-02 13:07:41 +00001698 dev_warn(&pdev->dev,
1699 "ASoC machine %s should use snd_soc_register_card()\n",
1700 card->name);
1701
Mark Brown435c5e22008-12-04 15:32:53 +00001702 /* Bodge while we unpick instantiation */
1703 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001704
Mark Brown435c5e22008-12-04 15:32:53 +00001705 ret = snd_soc_register_card(card);
1706 if (ret != 0) {
1707 dev_err(&pdev->dev, "Failed to register card\n");
1708 return ret;
1709 }
1710
1711 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001712}
1713
Vinod Koulb0e26482011-01-13 22:48:02 +05301714static int soc_cleanup_card_resources(struct snd_soc_card *card)
1715{
Vinod Koulb0e26482011-01-13 22:48:02 +05301716 int i;
1717
1718 /* make sure any delayed work runs */
1719 for (i = 0; i < card->num_rtd; i++) {
1720 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1721 flush_delayed_work_sync(&rtd->delayed_work);
1722 }
1723
1724 /* remove auxiliary devices */
1725 for (i = 0; i < card->num_aux_devs; i++)
1726 soc_remove_aux_dev(card, i);
1727
1728 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001729 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301730
1731 soc_cleanup_card_debugfs(card);
1732
1733 /* remove the card */
1734 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001735 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301736
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001737 snd_soc_dapm_free(&card->dapm);
1738
Vinod Koulb0e26482011-01-13 22:48:02 +05301739 snd_card_free(card->snd_card);
1740 return 0;
1741
1742}
1743
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001744/* removes a socdev */
1745static int soc_remove(struct platform_device *pdev)
1746{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001747 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001748
Mark Brownc5af3a22008-11-28 13:29:45 +00001749 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001750 return 0;
1751}
1752
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001753int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001754{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001755 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001756 int i;
Mark Brown51737472009-06-22 13:16:51 +01001757
1758 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001759 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001760
1761 /* Flush out pmdown_time work - we actually do want to run it
1762 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001763 for (i = 0; i < card->num_rtd; i++) {
1764 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01001765 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001766 }
Mark Brown51737472009-06-22 13:16:51 +01001767
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001768 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001769
1770 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001771}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001772EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001773
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001774const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301775 .suspend = snd_soc_suspend,
1776 .resume = snd_soc_resume,
1777 .freeze = snd_soc_suspend,
1778 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001779 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301780 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001781};
Stephen Warrendeb26072011-04-05 19:35:30 -06001782EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001783
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001784/* ASoC platform driver */
1785static struct platform_driver soc_driver = {
1786 .driver = {
1787 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001788 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001789 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001790 },
1791 .probe = soc_probe,
1792 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001793};
1794
Mark Brown096e49d2009-07-05 15:12:22 +01001795/**
1796 * snd_soc_codec_volatile_register: Report if a register is volatile.
1797 *
1798 * @codec: CODEC to query.
1799 * @reg: Register to query.
1800 *
1801 * Boolean function indiciating if a CODEC register is volatile.
1802 */
Mark Brown181e0552011-01-24 14:05:25 +00001803int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1804 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01001805{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00001806 if (codec->volatile_register)
1807 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01001808 else
1809 return 0;
1810}
1811EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1812
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001813/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001814 * snd_soc_codec_readable_register: Report if a register is readable.
1815 *
1816 * @codec: CODEC to query.
1817 * @reg: Register to query.
1818 *
1819 * Boolean function indicating if a CODEC register is readable.
1820 */
1821int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
1822 unsigned int reg)
1823{
1824 if (codec->readable_register)
1825 return codec->readable_register(codec, reg);
1826 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001827 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001828}
1829EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
1830
1831/**
1832 * snd_soc_codec_writable_register: Report if a register is writable.
1833 *
1834 * @codec: CODEC to query.
1835 * @reg: Register to query.
1836 *
1837 * Boolean function indicating if a CODEC register is writable.
1838 */
1839int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
1840 unsigned int reg)
1841{
1842 if (codec->writable_register)
1843 return codec->writable_register(codec, reg);
1844 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001845 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001846}
1847EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
1848
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001849int snd_soc_platform_read(struct snd_soc_platform *platform,
1850 unsigned int reg)
1851{
1852 unsigned int ret;
1853
1854 if (!platform->driver->read) {
1855 dev_err(platform->dev, "platform has no read back\n");
1856 return -1;
1857 }
1858
1859 ret = platform->driver->read(platform, reg);
1860 dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001861 trace_snd_soc_preg_read(platform, reg, ret);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001862
1863 return ret;
1864}
1865EXPORT_SYMBOL_GPL(snd_soc_platform_read);
1866
1867int snd_soc_platform_write(struct snd_soc_platform *platform,
1868 unsigned int reg, unsigned int val)
1869{
1870 if (!platform->driver->write) {
1871 dev_err(platform->dev, "platform has no write back\n");
1872 return -1;
1873 }
1874
1875 dev_dbg(platform->dev, "write %x = %x\n", reg, val);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001876 trace_snd_soc_preg_write(platform, reg, val);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001877 return platform->driver->write(platform, reg, val);
1878}
1879EXPORT_SYMBOL_GPL(snd_soc_platform_write);
1880
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001881/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001882 * snd_soc_new_ac97_codec - initailise AC97 device
1883 * @codec: audio codec
1884 * @ops: AC97 bus operations
1885 * @num: AC97 codec number
1886 *
1887 * Initialises AC97 codec resources for use by ad-hoc devices only.
1888 */
1889int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1890 struct snd_ac97_bus_ops *ops, int num)
1891{
1892 mutex_lock(&codec->mutex);
1893
1894 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1895 if (codec->ac97 == NULL) {
1896 mutex_unlock(&codec->mutex);
1897 return -ENOMEM;
1898 }
1899
1900 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1901 if (codec->ac97->bus == NULL) {
1902 kfree(codec->ac97);
1903 codec->ac97 = NULL;
1904 mutex_unlock(&codec->mutex);
1905 return -ENOMEM;
1906 }
1907
1908 codec->ac97->bus->ops = ops;
1909 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03001910
1911 /*
1912 * Mark the AC97 device to be created by us. This way we ensure that the
1913 * device will be registered with the device subsystem later on.
1914 */
1915 codec->ac97_created = 1;
1916
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001917 mutex_unlock(&codec->mutex);
1918 return 0;
1919}
1920EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1921
1922/**
1923 * snd_soc_free_ac97_codec - free AC97 codec device
1924 * @codec: audio codec
1925 *
1926 * Frees AC97 codec device resources.
1927 */
1928void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1929{
1930 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001931#ifdef CONFIG_SND_SOC_AC97_BUS
1932 soc_unregister_ac97_dai_link(codec);
1933#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001934 kfree(codec->ac97->bus);
1935 kfree(codec->ac97);
1936 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03001937 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001938 mutex_unlock(&codec->mutex);
1939}
1940EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1941
Mark Brownc3753702010-11-01 15:41:57 -04001942unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
1943{
1944 unsigned int ret;
1945
Mark Brownc3acec22010-12-02 16:15:29 +00001946 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04001947 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04001948 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04001949
1950 return ret;
1951}
1952EXPORT_SYMBOL_GPL(snd_soc_read);
1953
1954unsigned int snd_soc_write(struct snd_soc_codec *codec,
1955 unsigned int reg, unsigned int val)
1956{
1957 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04001958 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00001959 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04001960}
1961EXPORT_SYMBOL_GPL(snd_soc_write);
1962
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00001963unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
1964 unsigned int reg, const void *data, size_t len)
1965{
1966 return codec->bulk_write_raw(codec, reg, data, len);
1967}
1968EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
1969
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001970/**
1971 * snd_soc_update_bits - update codec register bits
1972 * @codec: audio codec
1973 * @reg: codec register
1974 * @mask: register mask
1975 * @value: new value
1976 *
1977 * Writes new register value.
1978 *
Timur Tabi180c3292011-01-10 15:58:13 -06001979 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001980 */
1981int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001982 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001983{
Mark Brown8a713da2011-12-03 12:33:55 +00001984 bool change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001985 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06001986 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001987
Mark Brown8a713da2011-12-03 12:33:55 +00001988 if (codec->using_regmap) {
1989 ret = regmap_update_bits_check(codec->control_data, reg,
1990 mask, value, &change);
1991 } else {
1992 ret = snd_soc_read(codec, reg);
Timur Tabi180c3292011-01-10 15:58:13 -06001993 if (ret < 0)
1994 return ret;
Mark Brown8a713da2011-12-03 12:33:55 +00001995
1996 old = ret;
1997 new = (old & ~mask) | (value & mask);
1998 change = old != new;
1999 if (change)
2000 ret = snd_soc_write(codec, reg, new);
Timur Tabi180c3292011-01-10 15:58:13 -06002001 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002002
Mark Brown8a713da2011-12-03 12:33:55 +00002003 if (ret < 0)
2004 return ret;
2005
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002006 return change;
2007}
2008EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2009
2010/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002011 * snd_soc_update_bits_locked - update codec register bits
2012 * @codec: audio codec
2013 * @reg: codec register
2014 * @mask: register mask
2015 * @value: new value
2016 *
2017 * Writes new register value, and takes the codec mutex.
2018 *
2019 * Returns 1 for change else 0.
2020 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002021int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2022 unsigned short reg, unsigned int mask,
2023 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002024{
2025 int change;
2026
2027 mutex_lock(&codec->mutex);
2028 change = snd_soc_update_bits(codec, reg, mask, value);
2029 mutex_unlock(&codec->mutex);
2030
2031 return change;
2032}
Mark Browndd1b3d52009-12-04 14:22:03 +00002033EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002034
2035/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002036 * snd_soc_test_bits - test register for change
2037 * @codec: audio codec
2038 * @reg: codec register
2039 * @mask: register mask
2040 * @value: new value
2041 *
2042 * Tests a register with a new value and checks if the new value is
2043 * different from the old value.
2044 *
2045 * Returns 1 for change else 0.
2046 */
2047int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002048 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002049{
2050 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002051 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002052
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002053 old = snd_soc_read(codec, reg);
2054 new = (old & ~mask) | value;
2055 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002056
2057 return change;
2058}
2059EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2060
2061/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002062 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
2063 * @substream: the pcm substream
2064 * @hw: the hardware parameters
2065 *
2066 * Sets the substream runtime hardware parameters.
2067 */
2068int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
2069 const struct snd_pcm_hardware *hw)
2070{
2071 struct snd_pcm_runtime *runtime = substream->runtime;
2072 runtime->hw.info = hw->info;
2073 runtime->hw.formats = hw->formats;
2074 runtime->hw.period_bytes_min = hw->period_bytes_min;
2075 runtime->hw.period_bytes_max = hw->period_bytes_max;
2076 runtime->hw.periods_min = hw->periods_min;
2077 runtime->hw.periods_max = hw->periods_max;
2078 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
2079 runtime->hw.fifo_size = hw->fifo_size;
2080 return 0;
2081}
2082EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
2083
2084/**
2085 * snd_soc_cnew - create new control
2086 * @_template: control template
2087 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002088 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002089 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002090 *
2091 * Create a new mixer control from a template control.
2092 *
2093 * Returns 0 for success, else error.
2094 */
2095struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002096 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002097 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002098{
2099 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002100 struct snd_kcontrol *kcontrol;
2101 char *name = NULL;
2102 int name_len;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002103
2104 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002105 template.index = 0;
2106
Mark Brownefb7ac32011-03-08 17:23:24 +00002107 if (!long_name)
2108 long_name = template.name;
2109
2110 if (prefix) {
2111 name_len = strlen(long_name) + strlen(prefix) + 2;
Axel Lin57cf9d42011-08-20 11:03:44 +08002112 name = kmalloc(name_len, GFP_KERNEL);
Mark Brownefb7ac32011-03-08 17:23:24 +00002113 if (!name)
2114 return NULL;
2115
2116 snprintf(name, name_len, "%s %s", prefix, long_name);
2117
2118 template.name = name;
2119 } else {
2120 template.name = long_name;
2121 }
2122
2123 kcontrol = snd_ctl_new1(&template, data);
2124
2125 kfree(name);
2126
2127 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002128}
2129EXPORT_SYMBOL_GPL(snd_soc_cnew);
2130
Liam Girdwood022658b2012-02-03 17:43:09 +00002131static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2132 const struct snd_kcontrol_new *controls, int num_controls,
2133 const char *prefix, void *data)
2134{
2135 int err, i;
2136
2137 for (i = 0; i < num_controls; i++) {
2138 const struct snd_kcontrol_new *control = &controls[i];
2139 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2140 control->name, prefix));
2141 if (err < 0) {
2142 dev_err(dev, "Failed to add %s: %d\n", control->name, err);
2143 return err;
2144 }
2145 }
2146
2147 return 0;
2148}
2149
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002150/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002151 * snd_soc_add_codec_controls - add an array of controls to a codec.
2152 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002153 * duplicating this code.
2154 *
2155 * @codec: codec to add controls to
2156 * @controls: array of controls to add
2157 * @num_controls: number of elements in the array
2158 *
2159 * Return 0 for success, else error.
2160 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002161int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Ian Molton3e8e1952009-01-09 00:23:21 +00002162 const struct snd_kcontrol_new *controls, int num_controls)
2163{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002164 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002165
Liam Girdwood022658b2012-02-03 17:43:09 +00002166 return snd_soc_add_controls(card, codec->dev, controls, num_controls,
2167 codec->name_prefix, codec);
Ian Molton3e8e1952009-01-09 00:23:21 +00002168}
Liam Girdwood022658b2012-02-03 17:43:09 +00002169EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002170
2171/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002172 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002173 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002174 *
2175 * @platform: platform to add controls to
2176 * @controls: array of controls to add
2177 * @num_controls: number of elements in the array
2178 *
2179 * Return 0 for success, else error.
2180 */
2181int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2182 const struct snd_kcontrol_new *controls, int num_controls)
2183{
2184 struct snd_card *card = platform->card->snd_card;
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002185
Liam Girdwood022658b2012-02-03 17:43:09 +00002186 return snd_soc_add_controls(card, platform->dev, controls, num_controls,
2187 NULL, platform);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002188}
2189EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2190
2191/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002192 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2193 * Convenience function to add a list of controls.
2194 *
2195 * @soc_card: SoC card to add controls to
2196 * @controls: array of controls to add
2197 * @num_controls: number of elements in the array
2198 *
2199 * Return 0 for success, else error.
2200 */
2201int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2202 const struct snd_kcontrol_new *controls, int num_controls)
2203{
2204 struct snd_card *card = soc_card->snd_card;
2205
2206 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2207 NULL, soc_card);
2208}
2209EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2210
2211/**
2212 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2213 * Convienience function to add a list of controls.
2214 *
2215 * @dai: DAI to add controls to
2216 * @controls: array of controls to add
2217 * @num_controls: number of elements in the array
2218 *
2219 * Return 0 for success, else error.
2220 */
2221int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2222 const struct snd_kcontrol_new *controls, int num_controls)
2223{
2224 struct snd_card *card = dai->card->snd_card;
2225
2226 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2227 NULL, dai);
2228}
2229EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2230
2231/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002232 * snd_soc_info_enum_double - enumerated double mixer info callback
2233 * @kcontrol: mixer control
2234 * @uinfo: control element information
2235 *
2236 * Callback to provide information about a double enumerated
2237 * mixer control.
2238 *
2239 * Returns 0 for success.
2240 */
2241int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2242 struct snd_ctl_elem_info *uinfo)
2243{
2244 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2245
2246 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2247 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002248 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002249
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002250 if (uinfo->value.enumerated.item > e->max - 1)
2251 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002252 strcpy(uinfo->value.enumerated.name,
2253 e->texts[uinfo->value.enumerated.item]);
2254 return 0;
2255}
2256EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2257
2258/**
2259 * snd_soc_get_enum_double - enumerated double mixer get callback
2260 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002261 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002262 *
2263 * Callback to get the value of a double enumerated mixer.
2264 *
2265 * Returns 0 for success.
2266 */
2267int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2268 struct snd_ctl_elem_value *ucontrol)
2269{
2270 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2271 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002272 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002273
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002274 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002275 ;
2276 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002277 ucontrol->value.enumerated.item[0]
2278 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002279 if (e->shift_l != e->shift_r)
2280 ucontrol->value.enumerated.item[1] =
2281 (val >> e->shift_r) & (bitmask - 1);
2282
2283 return 0;
2284}
2285EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2286
2287/**
2288 * snd_soc_put_enum_double - enumerated double mixer put callback
2289 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002290 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002291 *
2292 * Callback to set the value of a double enumerated mixer.
2293 *
2294 * Returns 0 for success.
2295 */
2296int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2297 struct snd_ctl_elem_value *ucontrol)
2298{
2299 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2300 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002301 unsigned int val;
2302 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002303
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002304 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002305 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002306 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002307 return -EINVAL;
2308 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2309 mask = (bitmask - 1) << e->shift_l;
2310 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002311 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002312 return -EINVAL;
2313 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2314 mask |= (bitmask - 1) << e->shift_r;
2315 }
2316
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002317 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002318}
2319EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2320
2321/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002322 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2323 * @kcontrol: mixer control
2324 * @ucontrol: control element information
2325 *
2326 * Callback to get the value of a double semi enumerated mixer.
2327 *
2328 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2329 * used for handling bitfield coded enumeration for example.
2330 *
2331 * Returns 0 for success.
2332 */
2333int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2334 struct snd_ctl_elem_value *ucontrol)
2335{
2336 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002337 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002338 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002339
2340 reg_val = snd_soc_read(codec, e->reg);
2341 val = (reg_val >> e->shift_l) & e->mask;
2342 for (mux = 0; mux < e->max; mux++) {
2343 if (val == e->values[mux])
2344 break;
2345 }
2346 ucontrol->value.enumerated.item[0] = mux;
2347 if (e->shift_l != e->shift_r) {
2348 val = (reg_val >> e->shift_r) & e->mask;
2349 for (mux = 0; mux < e->max; mux++) {
2350 if (val == e->values[mux])
2351 break;
2352 }
2353 ucontrol->value.enumerated.item[1] = mux;
2354 }
2355
2356 return 0;
2357}
2358EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2359
2360/**
2361 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2362 * @kcontrol: mixer control
2363 * @ucontrol: control element information
2364 *
2365 * Callback to set the value of a double semi enumerated mixer.
2366 *
2367 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2368 * used for handling bitfield coded enumeration for example.
2369 *
2370 * Returns 0 for success.
2371 */
2372int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2373 struct snd_ctl_elem_value *ucontrol)
2374{
2375 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002376 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002377 unsigned int val;
2378 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002379
2380 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2381 return -EINVAL;
2382 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2383 mask = e->mask << e->shift_l;
2384 if (e->shift_l != e->shift_r) {
2385 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2386 return -EINVAL;
2387 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2388 mask |= e->mask << e->shift_r;
2389 }
2390
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002391 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002392}
2393EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2394
2395/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002396 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2397 * @kcontrol: mixer control
2398 * @uinfo: control element information
2399 *
2400 * Callback to provide information about an external enumerated
2401 * single mixer.
2402 *
2403 * Returns 0 for success.
2404 */
2405int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2406 struct snd_ctl_elem_info *uinfo)
2407{
2408 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2409
2410 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2411 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002412 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002413
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002414 if (uinfo->value.enumerated.item > e->max - 1)
2415 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002416 strcpy(uinfo->value.enumerated.name,
2417 e->texts[uinfo->value.enumerated.item]);
2418 return 0;
2419}
2420EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2421
2422/**
2423 * snd_soc_info_volsw_ext - external single mixer info callback
2424 * @kcontrol: mixer control
2425 * @uinfo: control element information
2426 *
2427 * Callback to provide information about a single external mixer control.
2428 *
2429 * Returns 0 for success.
2430 */
2431int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2432 struct snd_ctl_elem_info *uinfo)
2433{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002434 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002435
Mark Brownfd5dfad2009-04-15 21:37:46 +01002436 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002437 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2438 else
2439 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2440
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002441 uinfo->count = 1;
2442 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002443 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002444 return 0;
2445}
2446EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2447
2448/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002449 * snd_soc_info_volsw - single mixer info callback
2450 * @kcontrol: mixer control
2451 * @uinfo: control element information
2452 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002453 * Callback to provide information about a single mixer control, or a double
2454 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002455 *
2456 * Returns 0 for success.
2457 */
2458int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2459 struct snd_ctl_elem_info *uinfo)
2460{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002461 struct soc_mixer_control *mc =
2462 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002463 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002464
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002465 if (!mc->platform_max)
2466 mc->platform_max = mc->max;
2467 platform_max = mc->platform_max;
2468
2469 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002470 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2471 else
2472 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2473
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002474 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002475 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002476 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002477 return 0;
2478}
2479EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2480
2481/**
2482 * snd_soc_get_volsw - single mixer get callback
2483 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002484 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002485 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002486 * Callback to get the value of a single mixer control, or a double mixer
2487 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002488 *
2489 * Returns 0 for success.
2490 */
2491int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2492 struct snd_ctl_elem_value *ucontrol)
2493{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002494 struct soc_mixer_control *mc =
2495 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002496 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002497 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002498 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002499 unsigned int shift = mc->shift;
2500 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002501 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002502 unsigned int mask = (1 << fls(max)) - 1;
2503 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002504
2505 ucontrol->value.integer.value[0] =
2506 (snd_soc_read(codec, reg) >> shift) & mask;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002507 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002508 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002509 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002510
2511 if (snd_soc_volsw_is_stereo(mc)) {
2512 if (reg == reg2)
2513 ucontrol->value.integer.value[1] =
2514 (snd_soc_read(codec, reg) >> rshift) & mask;
2515 else
2516 ucontrol->value.integer.value[1] =
2517 (snd_soc_read(codec, reg2) >> shift) & mask;
2518 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002519 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002520 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002521 }
2522
2523 return 0;
2524}
2525EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2526
2527/**
2528 * snd_soc_put_volsw - single mixer put callback
2529 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002530 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002531 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002532 * Callback to set the value of a single mixer control, or a double mixer
2533 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002534 *
2535 * Returns 0 for success.
2536 */
2537int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2538 struct snd_ctl_elem_value *ucontrol)
2539{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002540 struct soc_mixer_control *mc =
2541 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002542 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002543 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002544 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002545 unsigned int shift = mc->shift;
2546 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002547 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002548 unsigned int mask = (1 << fls(max)) - 1;
2549 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002550 int err;
2551 bool type_2r = 0;
2552 unsigned int val2 = 0;
2553 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002554
2555 val = (ucontrol->value.integer.value[0] & mask);
2556 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002557 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002558 val_mask = mask << shift;
2559 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002560 if (snd_soc_volsw_is_stereo(mc)) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002561 val2 = (ucontrol->value.integer.value[1] & mask);
2562 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002563 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002564 if (reg == reg2) {
2565 val_mask |= mask << rshift;
2566 val |= val2 << rshift;
2567 } else {
2568 val2 = val2 << shift;
2569 type_2r = 1;
2570 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002571 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002572 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002573 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002574 return err;
2575
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002576 if (type_2r)
2577 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2578
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002579 return err;
2580}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002581EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002582
Mark Browne13ac2e2008-05-28 17:58:05 +01002583/**
Brian Austin1d99f242012-03-30 10:43:55 -05002584 * snd_soc_get_volsw_sx - single mixer get callback
2585 * @kcontrol: mixer control
2586 * @ucontrol: control element information
2587 *
2588 * Callback to get the value of a single mixer control, or a double mixer
2589 * control that spans 2 registers.
2590 *
2591 * Returns 0 for success.
2592 */
2593int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2594 struct snd_ctl_elem_value *ucontrol)
2595{
2596 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2597 struct soc_mixer_control *mc =
2598 (struct soc_mixer_control *)kcontrol->private_value;
2599
2600 unsigned int reg = mc->reg;
2601 unsigned int reg2 = mc->rreg;
2602 unsigned int shift = mc->shift;
2603 unsigned int rshift = mc->rshift;
2604 int max = mc->max;
2605 int min = mc->min;
2606 int mask = (1 << (fls(min + max) - 1)) - 1;
2607
2608 ucontrol->value.integer.value[0] =
2609 ((snd_soc_read(codec, reg) >> shift) - min) & mask;
2610
2611 if (snd_soc_volsw_is_stereo(mc))
2612 ucontrol->value.integer.value[1] =
2613 ((snd_soc_read(codec, reg2) >> rshift) - min) & mask;
2614
2615 return 0;
2616}
2617EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2618
2619/**
2620 * snd_soc_put_volsw_sx - double mixer set callback
2621 * @kcontrol: mixer control
2622 * @uinfo: control element information
2623 *
2624 * Callback to set the value of a double mixer control that spans 2 registers.
2625 *
2626 * Returns 0 for success.
2627 */
2628int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2629 struct snd_ctl_elem_value *ucontrol)
2630{
2631 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2632 struct soc_mixer_control *mc =
2633 (struct soc_mixer_control *)kcontrol->private_value;
2634
2635 unsigned int reg = mc->reg;
2636 unsigned int reg2 = mc->rreg;
2637 unsigned int shift = mc->shift;
2638 unsigned int rshift = mc->rshift;
2639 int max = mc->max;
2640 int min = mc->min;
2641 int mask = (1 << (fls(min + max) - 1)) - 1;
Brian Austin27f1d752012-04-03 11:33:50 -05002642 int err = 0;
Brian Austin1d99f242012-03-30 10:43:55 -05002643 unsigned short val, val_mask, val2 = 0;
2644
2645 val_mask = mask << shift;
2646 val = (ucontrol->value.integer.value[0] + min) & mask;
2647 val = val << shift;
2648
2649 if (snd_soc_update_bits_locked(codec, reg, val_mask, val))
2650 return err;
2651
2652 if (snd_soc_volsw_is_stereo(mc)) {
2653 val_mask = mask << rshift;
2654 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2655 val2 = val2 << rshift;
2656
2657 if (snd_soc_update_bits_locked(codec, reg2, val_mask, val2))
2658 return err;
2659 }
2660 return 0;
2661}
2662EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2663
2664/**
Mark Browne13ac2e2008-05-28 17:58:05 +01002665 * snd_soc_info_volsw_s8 - signed mixer info callback
2666 * @kcontrol: mixer control
2667 * @uinfo: control element information
2668 *
2669 * Callback to provide information about a signed mixer control.
2670 *
2671 * Returns 0 for success.
2672 */
2673int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2674 struct snd_ctl_elem_info *uinfo)
2675{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002676 struct soc_mixer_control *mc =
2677 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002678 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002679 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002680
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002681 if (!mc->platform_max)
2682 mc->platform_max = mc->max;
2683 platform_max = mc->platform_max;
2684
Mark Browne13ac2e2008-05-28 17:58:05 +01002685 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2686 uinfo->count = 2;
2687 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002688 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002689 return 0;
2690}
2691EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2692
2693/**
2694 * snd_soc_get_volsw_s8 - signed mixer get callback
2695 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002696 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002697 *
2698 * Callback to get the value of a signed mixer control.
2699 *
2700 * Returns 0 for success.
2701 */
2702int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2703 struct snd_ctl_elem_value *ucontrol)
2704{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002705 struct soc_mixer_control *mc =
2706 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002707 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002708 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002709 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002710 int val = snd_soc_read(codec, reg);
2711
2712 ucontrol->value.integer.value[0] =
2713 ((signed char)(val & 0xff))-min;
2714 ucontrol->value.integer.value[1] =
2715 ((signed char)((val >> 8) & 0xff))-min;
2716 return 0;
2717}
2718EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2719
2720/**
2721 * snd_soc_put_volsw_sgn - signed mixer put callback
2722 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002723 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002724 *
2725 * Callback to set the value of a signed mixer control.
2726 *
2727 * Returns 0 for success.
2728 */
2729int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2730 struct snd_ctl_elem_value *ucontrol)
2731{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002732 struct soc_mixer_control *mc =
2733 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002734 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002735 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002736 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002737 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002738
2739 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2740 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2741
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002742 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002743}
2744EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2745
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002746/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002747 * snd_soc_limit_volume - Set new limit to an existing volume control.
2748 *
2749 * @codec: where to look for the control
2750 * @name: Name of the control
2751 * @max: new maximum limit
2752 *
2753 * Return 0 for success, else error.
2754 */
2755int snd_soc_limit_volume(struct snd_soc_codec *codec,
2756 const char *name, int max)
2757{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002758 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002759 struct snd_kcontrol *kctl;
2760 struct soc_mixer_control *mc;
2761 int found = 0;
2762 int ret = -EINVAL;
2763
2764 /* Sanity check for name and max */
2765 if (unlikely(!name || max <= 0))
2766 return -EINVAL;
2767
2768 list_for_each_entry(kctl, &card->controls, list) {
2769 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2770 found = 1;
2771 break;
2772 }
2773 }
2774 if (found) {
2775 mc = (struct soc_mixer_control *)kctl->private_value;
2776 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002777 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002778 ret = 0;
2779 }
2780 }
2781 return ret;
2782}
2783EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2784
Mark Brown71d08512011-10-10 18:31:26 +01002785int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
2786 struct snd_ctl_elem_info *uinfo)
2787{
2788 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2789 struct soc_bytes *params = (void *)kcontrol->private_value;
2790
2791 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
2792 uinfo->count = params->num_regs * codec->val_bytes;
2793
2794 return 0;
2795}
2796EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
2797
2798int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
2799 struct snd_ctl_elem_value *ucontrol)
2800{
2801 struct soc_bytes *params = (void *)kcontrol->private_value;
2802 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2803 int ret;
2804
2805 if (codec->using_regmap)
2806 ret = regmap_raw_read(codec->control_data, params->base,
2807 ucontrol->value.bytes.data,
2808 params->num_regs * codec->val_bytes);
2809 else
2810 ret = -EINVAL;
2811
Mark Brownf831b052012-02-17 16:20:33 -08002812 /* Hide any masked bytes to ensure consistent data reporting */
2813 if (ret == 0 && params->mask) {
2814 switch (codec->val_bytes) {
2815 case 1:
2816 ucontrol->value.bytes.data[0] &= ~params->mask;
2817 break;
2818 case 2:
2819 ((u16 *)(&ucontrol->value.bytes.data))[0]
2820 &= ~params->mask;
2821 break;
2822 case 4:
2823 ((u32 *)(&ucontrol->value.bytes.data))[0]
2824 &= ~params->mask;
2825 break;
2826 default:
2827 return -EINVAL;
2828 }
2829 }
2830
Mark Brown71d08512011-10-10 18:31:26 +01002831 return ret;
2832}
2833EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
2834
2835int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
2836 struct snd_ctl_elem_value *ucontrol)
2837{
2838 struct soc_bytes *params = (void *)kcontrol->private_value;
2839 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownf831b052012-02-17 16:20:33 -08002840 int ret, len;
2841 unsigned int val;
2842 void *data;
Mark Brown71d08512011-10-10 18:31:26 +01002843
Mark Brownf831b052012-02-17 16:20:33 -08002844 if (!codec->using_regmap)
2845 return -EINVAL;
2846
2847 data = ucontrol->value.bytes.data;
2848 len = params->num_regs * codec->val_bytes;
2849
2850 /*
2851 * If we've got a mask then we need to preserve the register
2852 * bits. We shouldn't modify the incoming data so take a
2853 * copy.
2854 */
2855 if (params->mask) {
2856 ret = regmap_read(codec->control_data, params->base, &val);
2857 if (ret != 0)
2858 return ret;
2859
2860 val &= params->mask;
2861
2862 data = kmemdup(data, len, GFP_KERNEL);
2863 if (!data)
2864 return -ENOMEM;
2865
2866 switch (codec->val_bytes) {
2867 case 1:
2868 ((u8 *)data)[0] &= ~params->mask;
2869 ((u8 *)data)[0] |= val;
2870 break;
2871 case 2:
2872 ((u16 *)data)[0] &= cpu_to_be16(~params->mask);
2873 ((u16 *)data)[0] |= cpu_to_be16(val);
2874 break;
2875 case 4:
2876 ((u32 *)data)[0] &= cpu_to_be32(~params->mask);
2877 ((u32 *)data)[0] |= cpu_to_be32(val);
2878 break;
2879 default:
2880 return -EINVAL;
2881 }
2882 }
2883
2884 ret = regmap_raw_write(codec->control_data, params->base,
2885 data, len);
2886
2887 if (params->mask)
2888 kfree(data);
Mark Brown71d08512011-10-10 18:31:26 +01002889
2890 return ret;
2891}
2892EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
2893
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002894/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002895 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2896 * @dai: DAI
2897 * @clk_id: DAI specific clock ID
2898 * @freq: new clock frequency in Hz
2899 * @dir: new clock direction - input/output.
2900 *
2901 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2902 */
2903int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2904 unsigned int freq, int dir)
2905{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002906 if (dai->driver && dai->driver->ops->set_sysclk)
2907 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002908 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002909 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00002910 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002911 else
2912 return -EINVAL;
2913}
2914EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2915
2916/**
Mark Brownec4ee522011-03-07 20:58:11 +00002917 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2918 * @codec: CODEC
2919 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01002920 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00002921 * @freq: new clock frequency in Hz
2922 * @dir: new clock direction - input/output.
2923 *
2924 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2925 */
2926int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01002927 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00002928{
2929 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002930 return codec->driver->set_sysclk(codec, clk_id, source,
2931 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002932 else
2933 return -EINVAL;
2934}
2935EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2936
2937/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002938 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2939 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002940 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002941 * @div: new clock divisor.
2942 *
2943 * Configures the clock dividers. This is used to derive the best DAI bit and
2944 * frame clocks from the system or master clock. It's best to set the DAI bit
2945 * and frame clocks as low as possible to save system power.
2946 */
2947int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2948 int div_id, int div)
2949{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002950 if (dai->driver && dai->driver->ops->set_clkdiv)
2951 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002952 else
2953 return -EINVAL;
2954}
2955EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2956
2957/**
2958 * snd_soc_dai_set_pll - configure DAI PLL.
2959 * @dai: DAI
2960 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002961 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002962 * @freq_in: PLL input clock frequency in Hz
2963 * @freq_out: requested PLL output clock frequency in Hz
2964 *
2965 * Configures and enables PLL to generate output clock based on input clock.
2966 */
Mark Brown85488032009-09-05 18:52:16 +01002967int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2968 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002969{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002970 if (dai->driver && dai->driver->ops->set_pll)
2971 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002972 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002973 else if (dai->codec && dai->codec->driver->set_pll)
2974 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2975 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002976 else
2977 return -EINVAL;
2978}
2979EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2980
Mark Brownec4ee522011-03-07 20:58:11 +00002981/*
2982 * snd_soc_codec_set_pll - configure codec PLL.
2983 * @codec: CODEC
2984 * @pll_id: DAI specific PLL ID
2985 * @source: DAI specific source for the PLL
2986 * @freq_in: PLL input clock frequency in Hz
2987 * @freq_out: requested PLL output clock frequency in Hz
2988 *
2989 * Configures and enables PLL to generate output clock based on input clock.
2990 */
2991int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2992 unsigned int freq_in, unsigned int freq_out)
2993{
2994 if (codec->driver->set_pll)
2995 return codec->driver->set_pll(codec, pll_id, source,
2996 freq_in, freq_out);
2997 else
2998 return -EINVAL;
2999}
3000EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3001
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003002/**
3003 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3004 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003005 * @fmt: SND_SOC_DAIFMT_ format value.
3006 *
3007 * Configures the DAI hardware format and clocking.
3008 */
3009int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3010{
Shawn Guo5e4ba562012-03-09 00:59:40 +08003011 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003012 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08003013 if (dai->driver->ops->set_fmt == NULL)
3014 return -ENOTSUPP;
3015 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003016}
3017EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3018
3019/**
3020 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3021 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003022 * @tx_mask: bitmask representing active TX slots.
3023 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003024 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003025 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003026 *
3027 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3028 * specific.
3029 */
3030int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003031 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003032{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003033 if (dai->driver && dai->driver->ops->set_tdm_slot)
3034 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003035 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003036 else
3037 return -EINVAL;
3038}
3039EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3040
3041/**
Barry Song472df3c2009-09-12 01:16:29 +08003042 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3043 * @dai: DAI
3044 * @tx_num: how many TX channels
3045 * @tx_slot: pointer to an array which imply the TX slot number channel
3046 * 0~num-1 uses
3047 * @rx_num: how many RX channels
3048 * @rx_slot: pointer to an array which imply the RX slot number channel
3049 * 0~num-1 uses
3050 *
3051 * configure the relationship between channel number and TDM slot number.
3052 */
3053int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3054 unsigned int tx_num, unsigned int *tx_slot,
3055 unsigned int rx_num, unsigned int *rx_slot)
3056{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003057 if (dai->driver && dai->driver->ops->set_channel_map)
3058 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003059 rx_num, rx_slot);
3060 else
3061 return -EINVAL;
3062}
3063EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3064
3065/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003066 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3067 * @dai: DAI
3068 * @tristate: tristate enable
3069 *
3070 * Tristates the DAI so that others can use it.
3071 */
3072int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3073{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003074 if (dai->driver && dai->driver->ops->set_tristate)
3075 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003076 else
3077 return -EINVAL;
3078}
3079EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3080
3081/**
3082 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3083 * @dai: DAI
3084 * @mute: mute enable
3085 *
3086 * Mutes the DAI DAC.
3087 */
3088int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
3089{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003090 if (dai->driver && dai->driver->ops->digital_mute)
3091 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003092 else
Mark Brown04570c62012-04-13 19:16:03 +01003093 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003094}
3095EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3096
Mark Brownc5af3a22008-11-28 13:29:45 +00003097/**
3098 * snd_soc_register_card - Register a card with the ASoC core
3099 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003100 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003101 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003102 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303103int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003104{
Mark Brownb19e6e72012-03-14 21:18:39 +00003105 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003106
Mark Brownc5af3a22008-11-28 13:29:45 +00003107 if (!card->name || !card->dev)
3108 return -EINVAL;
3109
Stephen Warren5a504962011-12-21 10:40:59 -07003110 for (i = 0; i < card->num_links; i++) {
3111 struct snd_soc_dai_link *link = &card->dai_link[i];
3112
3113 /*
3114 * Codec must be specified by 1 of name or OF node,
3115 * not both or neither.
3116 */
3117 if (!!link->codec_name == !!link->codec_of_node) {
3118 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00003119 "Neither/both codec name/of_node are set for %s\n",
3120 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003121 return -EINVAL;
3122 }
3123
3124 /*
3125 * Platform may be specified by either name or OF node, but
3126 * can be left unspecified, and a dummy platform will be used.
3127 */
3128 if (link->platform_name && link->platform_of_node) {
3129 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00003130 "Both platform name/of_node are set for %s\n", link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003131 return -EINVAL;
3132 }
3133
3134 /*
3135 * CPU DAI must be specified by 1 of name or OF node,
3136 * not both or neither.
3137 */
3138 if (!!link->cpu_dai_name == !!link->cpu_dai_of_node) {
3139 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00003140 "Neither/both cpu_dai name/of_node are set for %s\n",
3141 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003142 return -EINVAL;
3143 }
3144 }
3145
Mark Browned77cc12011-05-03 18:25:34 +01003146 dev_set_drvdata(card->dev, card);
3147
Stephen Warren111c6412011-01-28 14:26:35 -07003148 snd_soc_initialize_card_lists(card);
3149
Vinod Koul150dd2f2011-01-13 22:48:32 +05303150 soc_init_card_debugfs(card);
3151
Mark Brown181a6892012-03-14 20:18:49 +00003152 card->rtd = devm_kzalloc(card->dev,
3153 sizeof(struct snd_soc_pcm_runtime) *
3154 (card->num_links + card->num_aux_devs),
3155 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003156 if (card->rtd == NULL)
3157 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003158 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003159
3160 for (i = 0; i < card->num_links; i++)
3161 card->rtd[i].dai_link = &card->dai_link[i];
3162
Mark Brownc5af3a22008-11-28 13:29:45 +00003163 INIT_LIST_HEAD(&card->list);
Mark Browndb432b42011-10-03 21:06:40 +01003164 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00003165 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003166 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003167 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003168
Mark Brownb19e6e72012-03-14 21:18:39 +00003169 ret = snd_soc_instantiate_card(card);
3170 if (ret != 0)
3171 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003172
Mark Brownb19e6e72012-03-14 21:18:39 +00003173 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00003174}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303175EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003176
3177/**
3178 * snd_soc_unregister_card - Unregister a card with the ASoC core
3179 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003180 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003181 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003182 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303183int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003184{
Vinod Koulb0e26482011-01-13 22:48:02 +05303185 if (card->instantiated)
3186 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003187 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
3188
3189 return 0;
3190}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303191EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003192
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003193/*
3194 * Simplify DAI link configuration by removing ".-1" from device names
3195 * and sanitizing names.
3196 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003197static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003198{
3199 char *found, name[NAME_SIZE];
3200 int id1, id2;
3201
3202 if (dev_name(dev) == NULL)
3203 return NULL;
3204
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003205 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003206
3207 /* are we a "%s.%d" name (platform and SPI components) */
3208 found = strstr(name, dev->driver->name);
3209 if (found) {
3210 /* get ID */
3211 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3212
3213 /* discard ID from name if ID == -1 */
3214 if (*id == -1)
3215 found[strlen(dev->driver->name)] = '\0';
3216 }
3217
3218 } else {
3219 /* I2C component devices are named "bus-addr" */
3220 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3221 char tmp[NAME_SIZE];
3222
3223 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003224 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003225
3226 /* sanitize component name for DAI link creation */
3227 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003228 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003229 } else
3230 *id = 0;
3231 }
3232
3233 return kstrdup(name, GFP_KERNEL);
3234}
3235
3236/*
3237 * Simplify DAI link naming for single devices with multiple DAIs by removing
3238 * any ".-1" and using the DAI name (instead of device name).
3239 */
3240static inline char *fmt_multiple_name(struct device *dev,
3241 struct snd_soc_dai_driver *dai_drv)
3242{
3243 if (dai_drv->name == NULL) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02003244 pr_err("asoc: error - multiple DAI %s registered with no name\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003245 dev_name(dev));
3246 return NULL;
3247 }
3248
3249 return kstrdup(dai_drv->name, GFP_KERNEL);
3250}
3251
Mark Brown91151712008-11-30 23:31:24 +00003252/**
3253 * snd_soc_register_dai - Register a DAI with the ASoC core
3254 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003255 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003256 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003257int snd_soc_register_dai(struct device *dev,
3258 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003259{
Mark Brown054880f2012-04-09 17:29:19 +01003260 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003261 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003262
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003263 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003264
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003265 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3266 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003267 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003268
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003269 /* create DAI component name */
3270 dai->name = fmt_single_name(dev, &dai->id);
3271 if (dai->name == NULL) {
3272 kfree(dai);
3273 return -ENOMEM;
3274 }
3275
3276 dai->dev = dev;
3277 dai->driver = dai_drv;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003278 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003279 if (!dai->driver->ops)
3280 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003281
3282 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003283
3284 list_for_each_entry(codec, &codec_list, list) {
3285 if (codec->dev == dev) {
3286 dev_dbg(dev, "Mapped DAI %s to CODEC %s\n",
3287 dai->name, codec->name);
3288 dai->codec = codec;
3289 break;
3290 }
3291 }
3292
Mark Brown91151712008-11-30 23:31:24 +00003293 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003294
Mark Brown91151712008-11-30 23:31:24 +00003295 mutex_unlock(&client_mutex);
3296
3297 pr_debug("Registered DAI '%s'\n", dai->name);
3298
3299 return 0;
3300}
3301EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3302
3303/**
3304 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3305 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003306 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003307 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003308void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003309{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003310 struct snd_soc_dai *dai;
3311
3312 list_for_each_entry(dai, &dai_list, list) {
3313 if (dev == dai->dev)
3314 goto found;
3315 }
3316 return;
3317
3318found:
Mark Brown91151712008-11-30 23:31:24 +00003319 mutex_lock(&client_mutex);
3320 list_del(&dai->list);
3321 mutex_unlock(&client_mutex);
3322
3323 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003324 kfree(dai->name);
3325 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003326}
3327EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3328
3329/**
3330 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3331 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003332 * @dai: Array of DAIs to register
3333 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003334 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003335int snd_soc_register_dais(struct device *dev,
3336 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003337{
Mark Brown054880f2012-04-09 17:29:19 +01003338 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003339 struct snd_soc_dai *dai;
3340 int i, ret = 0;
3341
Liam Girdwood720ffa42010-08-18 00:30:30 +01003342 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003343
3344 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003345
3346 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003347 if (dai == NULL) {
3348 ret = -ENOMEM;
3349 goto err;
3350 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003351
3352 /* create DAI component name */
3353 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3354 if (dai->name == NULL) {
3355 kfree(dai);
3356 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003357 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003358 }
3359
3360 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003361 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003362 if (dai->driver->id)
3363 dai->id = dai->driver->id;
3364 else
3365 dai->id = i;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003366 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003367 if (!dai->driver->ops)
3368 dai->driver->ops = &null_dai_ops;
3369
3370 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003371
3372 list_for_each_entry(codec, &codec_list, list) {
3373 if (codec->dev == dev) {
3374 dev_dbg(dev, "Mapped DAI %s to CODEC %s\n",
3375 dai->name, codec->name);
3376 dai->codec = codec;
3377 break;
3378 }
3379 }
3380
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003381 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003382
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003383 mutex_unlock(&client_mutex);
3384
3385 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003386 }
3387
3388 return 0;
3389
3390err:
3391 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003392 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003393
3394 return ret;
3395}
3396EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3397
3398/**
3399 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3400 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003401 * @dai: Array of DAIs to unregister
3402 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003403 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003404void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003405{
3406 int i;
3407
3408 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003409 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003410}
3411EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3412
Mark Brown12a48a8c2008-12-03 19:40:30 +00003413/**
3414 * snd_soc_register_platform - Register a platform with the ASoC core
3415 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003416 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003417 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003418int snd_soc_register_platform(struct device *dev,
3419 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003420{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003421 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003422
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003423 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3424
3425 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3426 if (platform == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003427 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003428
3429 /* create platform component name */
3430 platform->name = fmt_single_name(dev, &platform->id);
3431 if (platform->name == NULL) {
3432 kfree(platform);
3433 return -ENOMEM;
3434 }
3435
3436 platform->dev = dev;
3437 platform->driver = platform_drv;
Liam Girdwoodb7950642011-07-04 22:10:52 +01003438 platform->dapm.dev = dev;
3439 platform->dapm.platform = platform;
Liam Girdwood64a648c2011-07-25 11:15:15 +01003440 platform->dapm.stream_event = platform_drv->stream_event;
Liam Girdwoodcc22d372012-03-06 18:16:18 +00003441 mutex_init(&platform->mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003442
3443 mutex_lock(&client_mutex);
3444 list_add(&platform->list, &platform_list);
3445 mutex_unlock(&client_mutex);
3446
3447 pr_debug("Registered platform '%s'\n", platform->name);
3448
3449 return 0;
3450}
3451EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3452
3453/**
3454 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3455 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003456 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003457 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003458void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003459{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003460 struct snd_soc_platform *platform;
3461
3462 list_for_each_entry(platform, &platform_list, list) {
3463 if (dev == platform->dev)
3464 goto found;
3465 }
3466 return;
3467
3468found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003469 mutex_lock(&client_mutex);
3470 list_del(&platform->list);
3471 mutex_unlock(&client_mutex);
3472
3473 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003474 kfree(platform->name);
3475 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003476}
3477EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3478
Mark Brown151ab222009-05-09 16:22:58 +01003479static u64 codec_format_map[] = {
3480 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3481 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3482 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3483 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3484 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3485 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3486 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3487 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3488 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3489 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3490 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3491 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3492 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3493 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3494 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3495 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3496};
3497
3498/* Fix up the DAI formats for endianness: codecs don't actually see
3499 * the endianness of the data but we're using the CPU format
3500 * definitions which do need to include endianness so we ensure that
3501 * codec DAIs always have both big and little endian variants set.
3502 */
3503static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3504{
3505 int i;
3506
3507 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3508 if (stream->formats & codec_format_map[i])
3509 stream->formats |= codec_format_map[i];
3510}
3511
Mark Brown0d0cf002008-12-10 14:32:45 +00003512/**
3513 * snd_soc_register_codec - Register a codec with the ASoC core
3514 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003515 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003516 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003517int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003518 const struct snd_soc_codec_driver *codec_drv,
3519 struct snd_soc_dai_driver *dai_drv,
3520 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003521{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003522 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003523 struct snd_soc_codec *codec;
3524 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003525
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003526 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003527
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003528 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3529 if (codec == NULL)
3530 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003531
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003532 /* create CODEC component name */
3533 codec->name = fmt_single_name(dev, &codec->id);
3534 if (codec->name == NULL) {
3535 kfree(codec);
3536 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003537 }
3538
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003539 if (codec_drv->compress_type)
3540 codec->compress_type = codec_drv->compress_type;
3541 else
3542 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3543
Mark Brownc3acec22010-12-02 16:15:29 +00003544 codec->write = codec_drv->write;
3545 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003546 codec->volatile_register = codec_drv->volatile_register;
3547 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003548 codec->writable_register = codec_drv->writable_register;
Mark Brown5124e692012-02-08 13:20:50 +00003549 codec->ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003550 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3551 codec->dapm.dev = dev;
3552 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003553 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwood64a648c2011-07-25 11:15:15 +01003554 codec->dapm.stream_event = codec_drv->stream_event;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003555 codec->dev = dev;
3556 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003557 codec->num_dai = num_dai;
3558 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003559
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003560 /* allocate CODEC register cache */
3561 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003562 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003563 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003564 /* it is necessary to make a copy of the default register cache
3565 * because in the case of using a compression type that requires
3566 * the default register cache to be marked as __devinitconst the
3567 * kernel might have freed the array by the time we initialize
3568 * the cache.
3569 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003570 if (codec_drv->reg_cache_default) {
3571 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3572 reg_size, GFP_KERNEL);
3573 if (!codec->reg_def_copy) {
3574 ret = -ENOMEM;
3575 goto fail;
3576 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003577 }
3578 }
3579
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003580 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3581 if (!codec->volatile_register)
3582 codec->volatile_register = snd_soc_default_volatile_register;
3583 if (!codec->readable_register)
3584 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003585 if (!codec->writable_register)
3586 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003587 }
3588
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003589 for (i = 0; i < num_dai; i++) {
3590 fixup_codec_formats(&dai_drv[i].playback);
3591 fixup_codec_formats(&dai_drv[i].capture);
3592 }
3593
Mark Brown054880f2012-04-09 17:29:19 +01003594 mutex_lock(&client_mutex);
3595 list_add(&codec->list, &codec_list);
3596 mutex_unlock(&client_mutex);
3597
Mark Brown26b01cc2010-08-18 20:20:55 +01003598 /* register any DAIs */
3599 if (num_dai) {
3600 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3601 if (ret < 0)
Mark Brown054880f2012-04-09 17:29:19 +01003602 dev_err(codec->dev, "Failed to regster DAIs: %d\n",
3603 ret);
Mark Brown26b01cc2010-08-18 20:20:55 +01003604 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003605
Mark Brown0d0cf002008-12-10 14:32:45 +00003606 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003607 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003608
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003609fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003610 kfree(codec->reg_def_copy);
3611 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003612 kfree(codec->name);
3613 kfree(codec);
3614 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003615}
3616EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3617
3618/**
3619 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3620 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003621 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003622 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003623void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003624{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003625 struct snd_soc_codec *codec;
3626 int i;
3627
3628 list_for_each_entry(codec, &codec_list, list) {
3629 if (dev == codec->dev)
3630 goto found;
3631 }
3632 return;
3633
3634found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003635 if (codec->num_dai)
3636 for (i = 0; i < codec->num_dai; i++)
3637 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003638
Mark Brown0d0cf002008-12-10 14:32:45 +00003639 mutex_lock(&client_mutex);
3640 list_del(&codec->list);
3641 mutex_unlock(&client_mutex);
3642
3643 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003644
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003645 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003646 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003647 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003648 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003649}
3650EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3651
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003652/* Retrieve a card's name from device tree */
3653int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3654 const char *propname)
3655{
3656 struct device_node *np = card->dev->of_node;
3657 int ret;
3658
3659 ret = of_property_read_string_index(np, propname, 0, &card->name);
3660 /*
3661 * EINVAL means the property does not exist. This is fine providing
3662 * card->name was previously set, which is checked later in
3663 * snd_soc_register_card.
3664 */
3665 if (ret < 0 && ret != -EINVAL) {
3666 dev_err(card->dev,
3667 "Property '%s' could not be read: %d\n",
3668 propname, ret);
3669 return ret;
3670 }
3671
3672 return 0;
3673}
3674EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3675
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003676int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3677 const char *propname)
3678{
3679 struct device_node *np = card->dev->of_node;
3680 int num_routes;
3681 struct snd_soc_dapm_route *routes;
3682 int i, ret;
3683
3684 num_routes = of_property_count_strings(np, propname);
3685 if (num_routes & 1) {
3686 dev_err(card->dev,
3687 "Property '%s's length is not even\n",
3688 propname);
3689 return -EINVAL;
3690 }
3691 num_routes /= 2;
3692 if (!num_routes) {
3693 dev_err(card->dev,
3694 "Property '%s's length is zero\n",
3695 propname);
3696 return -EINVAL;
3697 }
3698
3699 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
3700 GFP_KERNEL);
3701 if (!routes) {
3702 dev_err(card->dev,
3703 "Could not allocate DAPM route table\n");
3704 return -EINVAL;
3705 }
3706
3707 for (i = 0; i < num_routes; i++) {
3708 ret = of_property_read_string_index(np, propname,
3709 2 * i, &routes[i].sink);
3710 if (ret) {
3711 dev_err(card->dev,
3712 "Property '%s' index %d could not be read: %d\n",
3713 propname, 2 * i, ret);
3714 return -EINVAL;
3715 }
3716 ret = of_property_read_string_index(np, propname,
3717 (2 * i) + 1, &routes[i].source);
3718 if (ret) {
3719 dev_err(card->dev,
3720 "Property '%s' index %d could not be read: %d\n",
3721 propname, (2 * i) + 1, ret);
3722 return -EINVAL;
3723 }
3724 }
3725
3726 card->num_dapm_routes = num_routes;
3727 card->dapm_routes = routes;
3728
3729 return 0;
3730}
3731EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3732
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003733static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003734{
Mark Brown384c89e2008-12-03 17:34:03 +00003735#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003736 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3737 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02003738 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003739 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003740 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003741
Mark Brown8a9dab12011-01-10 22:25:21 +00003742 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003743 &codec_list_fops))
3744 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3745
Mark Brown8a9dab12011-01-10 22:25:21 +00003746 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003747 &dai_list_fops))
3748 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003749
Mark Brown8a9dab12011-01-10 22:25:21 +00003750 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003751 &platform_list_fops))
3752 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003753#endif
3754
Mark Brownfb257892011-04-28 10:57:54 +01003755 snd_soc_util_init();
3756
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003757 return platform_driver_register(&soc_driver);
3758}
Mark Brown4abe8e12010-10-12 17:41:03 +01003759module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003760
Mark Brown7d8c16a2008-11-30 22:11:24 +00003761static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003762{
Mark Brownfb257892011-04-28 10:57:54 +01003763 snd_soc_util_exit();
3764
Mark Brown384c89e2008-12-03 17:34:03 +00003765#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003766 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003767#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003768 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003769}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003770module_exit(snd_soc_exit);
3771
3772/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003773MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003774MODULE_DESCRIPTION("ALSA SoC Core");
3775MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003776MODULE_ALIAS("platform:soc-audio");