blob: ae48f1013e8093bbf359a831ae8e48e837a6dfa1 [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>
Markus Pargmann741a5092013-08-19 17:05:55 +020033#include <linux/pinctrl/consumer.h>
Mark Brownf0e8ed82011-09-20 11:41:54 +010034#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Stephen Warrenbec4fa02011-12-12 15:55:34 -070036#include <linux/of.h>
Markus Pargmann741a5092013-08-19 17:05:55 +020037#include <linux/gpio.h>
38#include <linux/of_gpio.h>
Marek Vasut474828a2009-07-22 13:01:03 +020039#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000041#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020042#include <sound/pcm.h>
43#include <sound/pcm_params.h>
44#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010045#include <sound/soc-dpcm.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020046#include <sound/initval.h>
47
Mark Browna8b1d342010-11-03 18:05:58 -040048#define CREATE_TRACE_POINTS
49#include <trace/events/asoc.h>
50
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000051#define NAME_SIZE 32
52
Mark Brown384c89e2008-12-03 17:34:03 +000053#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000054struct dentry *snd_soc_debugfs_root;
55EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000056#endif
57
Mark Brownc5af3a22008-11-28 13:29:45 +000058static DEFINE_MUTEX(client_mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +000059static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000060static LIST_HEAD(codec_list);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -070061static LIST_HEAD(component_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000062
Frank Mandarinodb2a4162006-10-06 18:31:09 +020063/*
64 * This is a timeout to do a DAPM powerdown after a stream is closed().
65 * It can be used to eliminate pops between different playback streams, e.g.
66 * between two audio tracks.
67 */
68static int pmdown_time = 5000;
69module_param(pmdown_time, int, 0);
70MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
71
Markus Pargmann741a5092013-08-19 17:05:55 +020072struct snd_ac97_reset_cfg {
73 struct pinctrl *pctl;
74 struct pinctrl_state *pstate_reset;
75 struct pinctrl_state *pstate_warm_reset;
76 struct pinctrl_state *pstate_run;
77 int gpio_sdata;
78 int gpio_sync;
79 int gpio_reset;
80};
81
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000082/* returns the minimum number of bytes needed to represent
83 * a particular given value */
84static int min_bytes_needed(unsigned long val)
85{
86 int c = 0;
87 int i;
88
89 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
90 if (val & (1UL << i))
91 break;
92 c = (sizeof val * 8) - c;
93 if (!c || (c % 8))
94 c = (c + 8) / 8;
95 else
96 c /= 8;
97 return c;
98}
99
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000100/* fill buf which is 'len' bytes with a formatted
101 * string of the form 'reg: value\n' */
102static int format_register_str(struct snd_soc_codec *codec,
103 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +0000104{
Stephen Warren00b317a2011-04-01 14:50:44 -0600105 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
106 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000107 int ret;
108 char tmpbuf[len + 1];
109 char regbuf[regsize + 1];
110
111 /* since tmpbuf is allocated on the stack, warn the callers if they
112 * try to abuse this function */
113 WARN_ON(len > 63);
114
115 /* +2 for ': ' and + 1 for '\n' */
116 if (wordsize + regsize + 2 + 1 != len)
117 return -EINVAL;
118
Mark Brown25032c12011-08-01 13:52:48 +0900119 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000120 if (ret < 0) {
121 memset(regbuf, 'X', regsize);
122 regbuf[regsize] = '\0';
123 } else {
124 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
125 }
126
127 /* prepare the buffer */
128 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
129 /* copy it back to the caller without the '\0' */
130 memcpy(buf, tmpbuf, len);
131
132 return 0;
133}
134
135/* codec register dump */
136static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
137 size_t count, loff_t pos)
138{
139 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000140 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000141 int len;
142 size_t total = 0;
143 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000144
Stephen Warren00b317a2011-04-01 14:50:44 -0600145 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
146 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000147
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000148 len = wordsize + regsize + 2 + 1;
149
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000150 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000151 return 0;
152
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000153 if (codec->driver->reg_cache_step)
154 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000155
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000156 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100157 /* only support larger than PAGE_SIZE bytes debugfs
158 * entries for the default case */
159 if (p >= pos) {
160 if (total + len >= count - 1)
161 break;
162 format_register_str(codec, i, buf + total, len);
163 total += len;
Mark Brown5164d742010-07-14 16:14:33 +0100164 }
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100165 p += len;
Mark Brown2624d5f2009-11-03 21:56:13 +0000166 }
167
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000168 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000169
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000170 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000171}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000172
Mark Brown2624d5f2009-11-03 21:56:13 +0000173static ssize_t codec_reg_show(struct device *dev,
174 struct device_attribute *attr, char *buf)
175{
Mark Brown36ae1a92012-01-06 17:12:45 -0800176 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000177
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000178 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000179}
180
181static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
182
Mark Browndbe21402010-02-12 11:37:24 +0000183static ssize_t pmdown_time_show(struct device *dev,
184 struct device_attribute *attr, char *buf)
185{
Mark Brown36ae1a92012-01-06 17:12:45 -0800186 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000187
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000188 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000189}
190
191static ssize_t pmdown_time_set(struct device *dev,
192 struct device_attribute *attr,
193 const char *buf, size_t count)
194{
Mark Brown36ae1a92012-01-06 17:12:45 -0800195 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700196 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000197
Jingoo Hanb785a492013-07-19 16:24:59 +0900198 ret = kstrtol(buf, 10, &rtd->pmdown_time);
Mark Brownc593b522010-10-27 20:11:17 -0700199 if (ret)
200 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000201
202 return count;
203}
204
205static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
206
Mark Brown2624d5f2009-11-03 21:56:13 +0000207#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000208static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000209 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000210{
211 ssize_t ret;
212 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000213 char *buf;
214
215 if (*ppos < 0 || !count)
216 return -EINVAL;
217
218 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000219 if (!buf)
220 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000221
222 ret = soc_codec_reg_show(codec, buf, count, *ppos);
223 if (ret >= 0) {
224 if (copy_to_user(user_buf, buf, ret)) {
225 kfree(buf);
226 return -EFAULT;
227 }
228 *ppos += ret;
229 }
230
Mark Brown2624d5f2009-11-03 21:56:13 +0000231 kfree(buf);
232 return ret;
233}
234
235static ssize_t codec_reg_write_file(struct file *file,
236 const char __user *user_buf, size_t count, loff_t *ppos)
237{
238 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700239 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000240 char *start = buf;
241 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000242 struct snd_soc_codec *codec = file->private_data;
Jingoo Hanb785a492013-07-19 16:24:59 +0900243 int ret;
Mark Brown2624d5f2009-11-03 21:56:13 +0000244
245 buf_size = min(count, (sizeof(buf)-1));
246 if (copy_from_user(buf, user_buf, buf_size))
247 return -EFAULT;
248 buf[buf_size] = 0;
249
Mark Brown2624d5f2009-11-03 21:56:13 +0000250 while (*start == ' ')
251 start++;
252 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000253 while (*start == ' ')
254 start++;
Jingoo Hanb785a492013-07-19 16:24:59 +0900255 ret = kstrtoul(start, 16, &value);
256 if (ret)
257 return ret;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000258
259 /* Userspace has been fiddling around behind the kernel's back */
Rusty Russell373d4d02013-01-21 17:17:39 +1030260 add_taint(TAINT_USER, LOCKDEP_NOW_UNRELIABLE);
Mark Brown0d51a9c2011-01-06 16:04:57 +0000261
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000262 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000263 return buf_size;
264}
265
266static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700267 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000268 .read = codec_reg_read_file,
269 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200270 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000271};
272
Russell Kinge73f3de2014-06-26 15:22:50 +0100273static struct dentry *soc_debugfs_create_dir(struct dentry *parent,
274 const char *fmt, ...)
275{
276 struct dentry *de;
277 va_list ap;
278 char *s;
279
280 va_start(ap, fmt);
281 s = kvasprintf(GFP_KERNEL, fmt, ap);
282 va_end(ap);
283
284 if (!s)
285 return NULL;
286
287 de = debugfs_create_dir(s, parent);
288 kfree(s);
289
290 return de;
291}
292
Mark Brown2624d5f2009-11-03 21:56:13 +0000293static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
294{
Lars-Peter Clausen00200102014-07-17 22:01:07 +0200295 struct dentry *debugfs_card_root = codec->component.card->debugfs_card_root;
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200296
Russell Kinge73f3de2014-06-26 15:22:50 +0100297 codec->debugfs_codec_root = soc_debugfs_create_dir(debugfs_card_root,
Mark Brown211bcc62014-06-28 13:55:22 +0100298 "codec:%s",
299 codec->component.name);
Mark Brown2624d5f2009-11-03 21:56:13 +0000300 if (!codec->debugfs_codec_root) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200301 dev_warn(codec->dev,
302 "ASoC: Failed to create codec debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000303 return;
304 }
305
Mark Brownaaee8ef2011-01-26 20:53:50 +0000306 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
307 &codec->cache_sync);
308 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
309 &codec->cache_only);
310
Mark Brown2624d5f2009-11-03 21:56:13 +0000311 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
312 codec->debugfs_codec_root,
313 codec, &codec_reg_fops);
314 if (!codec->debugfs_reg)
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200315 dev_warn(codec->dev,
316 "ASoC: Failed to create codec register debugfs file\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000317
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200318 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000319}
320
321static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
322{
323 debugfs_remove_recursive(codec->debugfs_codec_root);
324}
325
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000326static void soc_init_platform_debugfs(struct snd_soc_platform *platform)
327{
Lars-Peter Clausen00200102014-07-17 22:01:07 +0200328 struct dentry *debugfs_card_root = platform->component.card->debugfs_card_root;
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000329
Russell Kinge73f3de2014-06-26 15:22:50 +0100330 platform->debugfs_platform_root = soc_debugfs_create_dir(debugfs_card_root,
Mark Brown211bcc62014-06-28 13:55:22 +0100331 "platform:%s",
332 platform->component.name);
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000333 if (!platform->debugfs_platform_root) {
334 dev_warn(platform->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000335 "ASoC: Failed to create platform debugfs directory\n");
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000336 return;
337 }
338
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +0200339 snd_soc_dapm_debugfs_init(&platform->component.dapm,
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000340 platform->debugfs_platform_root);
341}
342
343static void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
344{
345 debugfs_remove_recursive(platform->debugfs_platform_root);
346}
347
Mark Brownc3c5a192010-09-15 18:15:14 +0100348static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
349 size_t count, loff_t *ppos)
350{
351 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100352 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100353 struct snd_soc_codec *codec;
354
355 if (!buf)
356 return -ENOMEM;
357
Mark Brown2b194f9d2010-10-13 10:52:16 +0100358 list_for_each_entry(codec, &codec_list, list) {
359 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200360 codec->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100361 if (len >= 0)
362 ret += len;
363 if (ret > PAGE_SIZE) {
364 ret = PAGE_SIZE;
365 break;
366 }
367 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100368
369 if (ret >= 0)
370 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
371
372 kfree(buf);
373
374 return ret;
375}
376
377static const struct file_operations codec_list_fops = {
378 .read = codec_list_read_file,
379 .llseek = default_llseek,/* read accesses f_pos */
380};
381
Mark Brownf3208782010-09-15 18:19:07 +0100382static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
383 size_t count, loff_t *ppos)
384{
385 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100386 ssize_t len, ret = 0;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100387 struct snd_soc_component *component;
Mark Brownf3208782010-09-15 18:19:07 +0100388 struct snd_soc_dai *dai;
389
390 if (!buf)
391 return -ENOMEM;
392
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100393 list_for_each_entry(component, &component_list, list) {
394 list_for_each_entry(dai, &component->dai_list, list) {
395 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
396 dai->name);
397 if (len >= 0)
398 ret += len;
399 if (ret > PAGE_SIZE) {
400 ret = PAGE_SIZE;
401 break;
402 }
Mark Brown2b194f9d2010-10-13 10:52:16 +0100403 }
404 }
Mark Brownf3208782010-09-15 18:19:07 +0100405
Mark Brown2b194f9d2010-10-13 10:52:16 +0100406 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100407
408 kfree(buf);
409
410 return ret;
411}
412
413static const struct file_operations dai_list_fops = {
414 .read = dai_list_read_file,
415 .llseek = default_llseek,/* read accesses f_pos */
416};
417
Mark Brown19c7ac22010-09-15 18:22:40 +0100418static ssize_t platform_list_read_file(struct file *file,
419 char __user *user_buf,
420 size_t count, loff_t *ppos)
421{
422 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100423 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100424 struct snd_soc_platform *platform;
425
426 if (!buf)
427 return -ENOMEM;
428
Mark Brown2b194f9d2010-10-13 10:52:16 +0100429 list_for_each_entry(platform, &platform_list, list) {
430 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200431 platform->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100432 if (len >= 0)
433 ret += len;
434 if (ret > PAGE_SIZE) {
435 ret = PAGE_SIZE;
436 break;
437 }
438 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100439
Mark Brown2b194f9d2010-10-13 10:52:16 +0100440 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100441
442 kfree(buf);
443
444 return ret;
445}
446
447static const struct file_operations platform_list_fops = {
448 .read = platform_list_read_file,
449 .llseek = default_llseek,/* read accesses f_pos */
450};
451
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200452static void soc_init_card_debugfs(struct snd_soc_card *card)
453{
454 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000455 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200456 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200457 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100458 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200459 return;
460 }
461
462 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
463 card->debugfs_card_root,
464 &card->pop_time);
465 if (!card->debugfs_pop_time)
466 dev_warn(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000467 "ASoC: Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200468}
469
470static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
471{
472 debugfs_remove_recursive(card->debugfs_card_root);
473}
474
Mark Brown2624d5f2009-11-03 21:56:13 +0000475#else
476
477static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
478{
479}
480
481static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
482{
483}
Axel Linb95fccb2010-11-09 17:06:44 +0800484
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000485static inline void soc_init_platform_debugfs(struct snd_soc_platform *platform)
486{
487}
488
489static inline void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
490{
491}
492
Axel Linb95fccb2010-11-09 17:06:44 +0800493static inline void soc_init_card_debugfs(struct snd_soc_card *card)
494{
495}
496
497static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
498{
499}
Mark Brown2624d5f2009-11-03 21:56:13 +0000500#endif
501
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100502struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
503 const char *dai_link, int stream)
504{
505 int i;
506
507 for (i = 0; i < card->num_links; i++) {
508 if (card->rtd[i].dai_link->no_pcm &&
509 !strcmp(card->rtd[i].dai_link->name, dai_link))
510 return card->rtd[i].pcm->streams[stream].substream;
511 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000512 dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100513 return NULL;
514}
515EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
516
517struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
518 const char *dai_link)
519{
520 int i;
521
522 for (i = 0; i < card->num_links; i++) {
523 if (!strcmp(card->rtd[i].dai_link->name, dai_link))
524 return &card->rtd[i];
525 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000526 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100527 return NULL;
528}
529EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
530
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200531#ifdef CONFIG_SND_SOC_AC97_BUS
532/* unregister ac97 codec */
533static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
534{
535 if (codec->ac97->dev.bus)
536 device_unregister(&codec->ac97->dev);
537 return 0;
538}
539
540/* stop no dev release warning */
541static void soc_ac97_device_release(struct device *dev){}
542
543/* register ac97 codec to bus */
544static int soc_ac97_dev_register(struct snd_soc_codec *codec)
545{
546 int err;
547
548 codec->ac97->dev.bus = &ac97_bus_type;
Lars-Peter Clausen00200102014-07-17 22:01:07 +0200549 codec->ac97->dev.parent = codec->component.card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200550 codec->ac97->dev.release = soc_ac97_device_release;
551
Kay Sieversbb072bf2008-11-02 03:50:35 +0100552 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Lars-Peter Clausen00200102014-07-17 22:01:07 +0200553 codec->component.card->snd_card->number, 0,
554 codec->component.name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200555 err = device_register(&codec->ac97->dev);
556 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000557 dev_err(codec->dev, "ASoC: Can't register ac97 bus\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200558 codec->ac97->dev.bus = NULL;
559 return err;
560 }
561 return 0;
562}
563#endif
564
Richard Fitzgerald9d58a072013-08-05 13:17:28 +0100565static void codec2codec_close_delayed_work(struct work_struct *work)
566{
567 /* Currently nothing to do for c2c links
568 * Since c2c links are internal nodes in the DAPM graph and
569 * don't interface with the outside world or application layer
570 * we don't have to do any special handling on close.
571 */
572}
573
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000574#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200575/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000576int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200577{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000578 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200579 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200580 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200581
Daniel Macke3509ff2009-06-03 17:44:49 +0200582 /* If the initialization of this soc device failed, there is no codec
583 * associated with it. Just bail out in this case.
584 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000585 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200586 return 0;
587
Andy Green6ed25972008-06-13 16:24:05 +0100588 /* Due to the resume being scheduled into a workqueue we could
589 * suspend before that's finished - wait for it to complete.
590 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000591 snd_power_lock(card->snd_card);
592 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
593 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100594
595 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000596 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100597
Mark Browna00f90f2010-12-02 16:24:24 +0000598 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000599 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100600
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000601 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100602 continue;
603
Benoit Cousson88bd8702014-07-08 23:19:34 +0200604 for (j = 0; j < card->rtd[i].num_codecs; j++) {
605 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
606 struct snd_soc_dai_driver *drv = dai->driver;
607
608 if (drv->ops->digital_mute && dai->playback_active)
609 drv->ops->digital_mute(dai, 1);
610 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200611 }
612
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100613 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000614 for (i = 0; i < card->num_rtd; i++) {
615 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100616 continue;
617
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000618 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100619 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100620
Mark Brown87506542008-11-18 20:50:34 +0000621 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000622 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200623
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000624 for (i = 0; i < card->num_rtd; i++) {
625 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
626 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100627
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000628 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100629 continue;
630
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000631 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
632 cpu_dai->driver->suspend(cpu_dai);
633 if (platform->driver->suspend && !platform->suspended) {
634 platform->driver->suspend(cpu_dai);
635 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100636 }
637 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200638
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000639 /* close any waiting streams and save state */
640 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200641 struct snd_soc_dai **codec_dais = card->rtd[i].codec_dais;
Tejun Heo43829732012-08-20 14:51:24 -0700642 flush_delayed_work(&card->rtd[i].delayed_work);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200643 for (j = 0; j < card->rtd[i].num_codecs; j++) {
644 codec_dais[j]->codec->dapm.suspend_bias_level =
645 codec_dais[j]->codec->dapm.bias_level;
646 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000647 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100648
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000649 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000650
651 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100652 continue;
653
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800654 snd_soc_dapm_stream_event(&card->rtd[i],
655 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800656 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000657
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800658 snd_soc_dapm_stream_event(&card->rtd[i],
659 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800660 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000661 }
662
Mark Browne2d32ff2012-08-31 17:38:32 -0700663 /* Recheck all analogue paths too */
664 dapm_mark_io_dirty(&card->dapm);
665 snd_soc_dapm_sync(&card->dapm);
666
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000667 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200668 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000669 /* If there are paths active then the CODEC will be held with
670 * bias _ON and should not be suspended. */
671 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200672 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000673 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000674 /*
675 * If the CODEC is capable of idle
676 * bias off then being in STANDBY
677 * means it's doing something,
678 * otherwise fall through.
679 */
680 if (codec->dapm.idle_bias_off) {
681 dev_dbg(codec->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200682 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000683 break;
684 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000685 case SND_SOC_BIAS_OFF:
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100686 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000687 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900688 codec->cache_sync = 1;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200689 if (codec->component.regmap)
690 regcache_mark_dirty(codec->component.regmap);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800691 /* deactivate pins to sleep state */
692 pinctrl_pm_select_sleep_state(codec->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000693 break;
694 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200695 dev_dbg(codec->dev,
696 "ASoC: CODEC is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000697 break;
698 }
699 }
700 }
701
702 for (i = 0; i < card->num_rtd; i++) {
703 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
704
705 if (card->rtd[i].dai_link->ignore_suspend)
706 continue;
707
708 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
709 cpu_dai->driver->suspend(cpu_dai);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800710
711 /* deactivate pins to sleep state */
712 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200713 }
714
Mark Brown87506542008-11-18 20:50:34 +0000715 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000716 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200717
718 return 0;
719}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000720EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200721
Andy Green6ed25972008-06-13 16:24:05 +0100722/* deferred resume work, so resume can complete before we finished
723 * setting our codec back up, which can be very slow on I2C
724 */
725static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200726{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000727 struct snd_soc_card *card =
728 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200729 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200730 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200731
Andy Green6ed25972008-06-13 16:24:05 +0100732 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
733 * so userspace apps are blocked from touching us
734 */
735
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000736 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100737
Mark Brown99497882010-05-07 20:24:05 +0100738 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000739 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100740
Mark Brown87506542008-11-18 20:50:34 +0000741 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000742 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200743
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000744 /* resume AC97 DAIs */
745 for (i = 0; i < card->num_rtd; i++) {
746 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100747
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000748 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100749 continue;
750
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000751 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
752 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200753 }
754
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200755 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000756 /* If the CODEC was idle over suspend then it will have been
757 * left with bias OFF or STANDBY and suspended so we must now
758 * resume. Otherwise the suspend was suppressed.
759 */
760 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200761 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000762 case SND_SOC_BIAS_STANDBY:
763 case SND_SOC_BIAS_OFF:
764 codec->driver->resume(codec);
765 codec->suspended = 0;
766 break;
767 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200768 dev_dbg(codec->dev,
769 "ASoC: CODEC was on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000770 break;
771 }
Mark Brown1547aba2010-05-07 21:11:40 +0100772 }
773 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200774
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000775 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100776
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000777 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100778 continue;
779
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800780 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000781 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800782 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000783
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800784 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000785 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800786 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200787 }
788
Mark Brown3ff3f642008-05-19 12:32:25 +0200789 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000790 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100791
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000792 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100793 continue;
794
Benoit Cousson88bd8702014-07-08 23:19:34 +0200795 for (j = 0; j < card->rtd[i].num_codecs; j++) {
796 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
797 struct snd_soc_dai_driver *drv = dai->driver;
798
799 if (drv->ops->digital_mute && dai->playback_active)
800 drv->ops->digital_mute(dai, 0);
801 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200802 }
803
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000804 for (i = 0; i < card->num_rtd; i++) {
805 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
806 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100807
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000808 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100809 continue;
810
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000811 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
812 cpu_dai->driver->resume(cpu_dai);
813 if (platform->driver->resume && platform->suspended) {
814 platform->driver->resume(cpu_dai);
815 platform->suspended = 0;
816 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200817 }
818
Mark Brown87506542008-11-18 20:50:34 +0000819 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000820 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200821
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000822 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100823
824 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000825 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Mark Browne2d32ff2012-08-31 17:38:32 -0700826
827 /* Recheck all analogue paths too */
828 dapm_mark_io_dirty(&card->dapm);
829 snd_soc_dapm_sync(&card->dapm);
Andy Green6ed25972008-06-13 16:24:05 +0100830}
831
832/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000833int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100834{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000835 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600836 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200837
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800838 /* If the initialization of this soc device failed, there is no codec
839 * associated with it. Just bail out in this case.
840 */
841 if (list_empty(&card->codec_dev_list))
842 return 0;
843
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800844 /* activate pins from sleep state */
845 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200846 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
847 struct snd_soc_dai **codec_dais = rtd->codec_dais;
848 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
849 int j;
850
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800851 if (cpu_dai->active)
852 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200853
854 for (j = 0; j < rtd->num_codecs; j++) {
855 struct snd_soc_dai *codec_dai = codec_dais[j];
856 if (codec_dai->active)
857 pinctrl_pm_select_default_state(codec_dai->dev);
858 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800859 }
860
Mark Brown64ab9ba2009-03-31 11:27:03 +0100861 /* AC97 devices might have other drivers hanging off them so
862 * need to resume immediately. Other drivers don't have that
863 * problem and may take a substantial amount of time to resume
864 * due to I/O costs and anti-pop so handle them out of line.
865 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000866 for (i = 0; i < card->num_rtd; i++) {
867 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600868 ac97_control |= cpu_dai->driver->ac97_control;
869 }
870 if (ac97_control) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000871 dev_dbg(dev, "ASoC: Resuming AC97 immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600872 soc_resume_deferred(&card->deferred_resume_work);
873 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000874 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600875 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000876 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100877 }
Andy Green6ed25972008-06-13 16:24:05 +0100878
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200879 return 0;
880}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000881EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200882#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000883#define snd_soc_suspend NULL
884#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200885#endif
886
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100887static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800888};
889
Benoit Cousson88bd8702014-07-08 23:19:34 +0200890static struct snd_soc_codec *soc_find_codec(
891 const struct device_node *codec_of_node,
892 const char *codec_name)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100893{
894 struct snd_soc_codec *codec;
895
896 list_for_each_entry(codec, &codec_list, list) {
897 if (codec_of_node) {
898 if (codec->dev->of_node != codec_of_node)
899 continue;
900 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200901 if (strcmp(codec->component.name, codec_name))
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100902 continue;
903 }
904
905 return codec;
906 }
907
908 return NULL;
909}
910
911static struct snd_soc_dai *soc_find_codec_dai(struct snd_soc_codec *codec,
912 const char *codec_dai_name)
913{
914 struct snd_soc_dai *codec_dai;
915
916 list_for_each_entry(codec_dai, &codec->component.dai_list, list) {
917 if (!strcmp(codec_dai->name, codec_dai_name)) {
918 return codec_dai;
919 }
920 }
921
922 return NULL;
923}
924
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000925static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200926{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000927 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
928 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100929 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200930 struct snd_soc_dai_link_component *codecs = dai_link->codecs;
931 struct snd_soc_dai **codec_dais = rtd->codec_dais;
Mark Brown435c5e22008-12-04 15:32:53 +0000932 struct snd_soc_platform *platform;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100933 struct snd_soc_dai *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100934 const char *platform_name;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200935 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200936
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000937 dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000938
Mark Brownb19e6e72012-03-14 21:18:39 +0000939 /* Find CPU DAI from registered DAIs*/
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100940 list_for_each_entry(component, &component_list, list) {
Stephen Warrenbc926572012-05-25 18:22:11 -0600941 if (dai_link->cpu_of_node &&
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100942 component->dev->of_node != dai_link->cpu_of_node)
Stephen Warrenbc926572012-05-25 18:22:11 -0600943 continue;
944 if (dai_link->cpu_name &&
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100945 strcmp(dev_name(component->dev), dai_link->cpu_name))
Stephen Warrenbc926572012-05-25 18:22:11 -0600946 continue;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100947 list_for_each_entry(cpu_dai, &component->dai_list, list) {
948 if (dai_link->cpu_dai_name &&
949 strcmp(cpu_dai->name, dai_link->cpu_dai_name))
950 continue;
Stephen Warren2610ab72011-12-07 13:58:27 -0700951
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100952 rtd->cpu_dai = cpu_dai;
953 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000954 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000955
956 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000957 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000958 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000959 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000960 }
961
Benoit Cousson88bd8702014-07-08 23:19:34 +0200962 rtd->num_codecs = dai_link->num_codecs;
963
964 /* Find CODEC from registered CODECs */
965 for (i = 0; i < rtd->num_codecs; i++) {
966 struct snd_soc_codec *codec;
967 codec = soc_find_codec(codecs[i].of_node, codecs[i].name);
968 if (!codec) {
969 dev_err(card->dev, "ASoC: CODEC %s not registered\n",
970 codecs[i].name);
971 return -EPROBE_DEFER;
972 }
973
974 codec_dais[i] = soc_find_codec_dai(codec, codecs[i].dai_name);
975 if (!codec_dais[i]) {
976 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
977 codecs[i].dai_name);
978 return -EPROBE_DEFER;
979 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000980 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100981
Benoit Cousson88bd8702014-07-08 23:19:34 +0200982 /* Single codec links expect codec and codec_dai in runtime data */
983 rtd->codec_dai = codec_dais[0];
984 rtd->codec = rtd->codec_dai->codec;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100985
Mark Brown848dd8b2011-04-27 18:16:32 +0100986 /* if there's no platform we match on the empty platform */
987 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700988 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100989 platform_name = "snd-soc-dummy";
990
Mark Brownb19e6e72012-03-14 21:18:39 +0000991 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000992 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700993 if (dai_link->platform_of_node) {
994 if (platform->dev->of_node !=
995 dai_link->platform_of_node)
996 continue;
997 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200998 if (strcmp(platform->component.name, platform_name))
Stephen Warren5a504962011-12-21 10:40:59 -0700999 continue;
1000 }
Stephen Warren2610ab72011-12-07 13:58:27 -07001001
1002 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001003 }
Mark Brownb19e6e72012-03-14 21:18:39 +00001004 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001005 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001006 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +00001007 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001008 }
Mark Brownb19e6e72012-03-14 21:18:39 +00001009
1010 card->num_rtd++;
1011
1012 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001013}
1014
Stephen Warrend12cd192012-06-08 12:34:22 -06001015static int soc_remove_platform(struct snd_soc_platform *platform)
1016{
1017 int ret;
1018
1019 if (platform->driver->remove) {
1020 ret = platform->driver->remove(platform);
1021 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001022 dev_err(platform->dev, "ASoC: failed to remove %d\n",
1023 ret);
Stephen Warrend12cd192012-06-08 12:34:22 -06001024 }
1025
1026 /* Make sure all DAPM widgets are freed */
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001027 snd_soc_dapm_free(&platform->component.dapm);
Stephen Warrend12cd192012-06-08 12:34:22 -06001028
1029 soc_cleanup_platform_debugfs(platform);
1030 platform->probed = 0;
Stephen Warrend12cd192012-06-08 12:34:22 -06001031 module_put(platform->dev->driver->owner);
1032
1033 return 0;
1034}
1035
Jarkko Nikula589c3562010-12-06 16:27:07 +02001036static void soc_remove_codec(struct snd_soc_codec *codec)
1037{
1038 int err;
1039
1040 if (codec->driver->remove) {
1041 err = codec->driver->remove(codec);
1042 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001043 dev_err(codec->dev, "ASoC: failed to remove %d\n", err);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001044 }
1045
1046 /* Make sure all DAPM widgets are freed */
1047 snd_soc_dapm_free(&codec->dapm);
1048
1049 soc_cleanup_codec_debugfs(codec);
1050 codec->probed = 0;
1051 list_del(&codec->card_list);
1052 module_put(codec->dev->driver->owner);
1053}
1054
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001055static void soc_remove_codec_dai(struct snd_soc_dai *codec_dai, int order)
1056{
1057 int err;
1058
1059 if (codec_dai && codec_dai->probed &&
1060 codec_dai->driver->remove_order == order) {
1061 if (codec_dai->driver->remove) {
1062 err = codec_dai->driver->remove(codec_dai);
1063 if (err < 0)
1064 dev_err(codec_dai->dev,
1065 "ASoC: failed to remove %s: %d\n",
1066 codec_dai->name, err);
1067 }
1068 codec_dai->probed = 0;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001069 }
1070}
1071
Stephen Warren62ae68f2012-06-08 12:34:23 -06001072static void soc_remove_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001073{
1074 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Benoit Cousson88bd8702014-07-08 23:19:34 +02001075 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1076 int i, err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001077
1078 /* unregister the rtd device */
1079 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001080 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
1081 device_remove_file(rtd->dev, &dev_attr_codec_reg);
1082 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001083 rtd->dev_registered = 0;
1084 }
1085
1086 /* remove the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001087 for (i = 0; i < rtd->num_codecs; i++)
1088 soc_remove_codec_dai(rtd->codec_dais[i], order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001089
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001090 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001091 if (cpu_dai && cpu_dai->probed &&
1092 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001093 if (cpu_dai->driver->remove) {
1094 err = cpu_dai->driver->remove(cpu_dai);
1095 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001096 dev_err(cpu_dai->dev,
1097 "ASoC: failed to remove %s: %d\n",
1098 cpu_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001099 }
1100 cpu_dai->probed = 0;
Lars-Peter Clausen9420d972014-06-16 18:13:10 +02001101 if (!cpu_dai->codec)
Stephen Warrena9db7db2012-06-08 12:34:20 -06001102 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001103 }
1104}
1105
Stephen Warren62ae68f2012-06-08 12:34:23 -06001106static void soc_remove_link_components(struct snd_soc_card *card, int num,
1107 int order)
1108{
1109 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1110 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001111 struct snd_soc_platform *platform = rtd->platform;
1112 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001113 int i;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001114
1115 /* remove the platform */
1116 if (platform && platform->probed &&
1117 platform->driver->remove_order == order) {
1118 soc_remove_platform(platform);
1119 }
1120
1121 /* remove the CODEC-side CODEC */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001122 for (i = 0; i < rtd->num_codecs; i++) {
1123 codec = rtd->codec_dais[i]->codec;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001124 if (codec && codec->probed &&
1125 codec->driver->remove_order == order)
1126 soc_remove_codec(codec);
1127 }
1128
1129 /* remove any CPU-side CODEC */
1130 if (cpu_dai) {
1131 codec = cpu_dai->codec;
1132 if (codec && codec->probed &&
1133 codec->driver->remove_order == order)
1134 soc_remove_codec(codec);
1135 }
1136}
1137
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001138static void soc_remove_dai_links(struct snd_soc_card *card)
1139{
Liam Girdwood0168bf02011-06-07 16:08:05 +01001140 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001141
Liam Girdwood0168bf02011-06-07 16:08:05 +01001142 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1143 order++) {
1144 for (dai = 0; dai < card->num_rtd; dai++)
Stephen Warren62ae68f2012-06-08 12:34:23 -06001145 soc_remove_link_dais(card, dai, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001146 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001147
1148 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1149 order++) {
1150 for (dai = 0; dai < card->num_rtd; dai++)
1151 soc_remove_link_components(card, dai, order);
1152 }
1153
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001154 card->num_rtd = 0;
1155}
1156
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001157static void soc_set_name_prefix(struct snd_soc_card *card,
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001158 struct snd_soc_component *component)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001159{
1160 int i;
1161
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001162 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001163 return;
1164
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001165 for (i = 0; i < card->num_configs; i++) {
1166 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001167 if (map->of_node && component->dev->of_node != map->of_node)
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001168 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001169 if (map->dev_name && strcmp(component->name, map->dev_name))
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001170 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001171 component->name_prefix = map->name_prefix;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001172 break;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001173 }
1174}
1175
Jarkko Nikula589c3562010-12-06 16:27:07 +02001176static int soc_probe_codec(struct snd_soc_card *card,
1177 struct snd_soc_codec *codec)
1178{
1179 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +00001180 const struct snd_soc_codec_driver *driver = codec->driver;
Mark Brown888df392012-02-16 19:37:51 -08001181 struct snd_soc_dai *dai;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001182
Lars-Peter Clausen00200102014-07-17 22:01:07 +02001183 codec->component.card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001184 codec->dapm.card = card;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001185 soc_set_name_prefix(card, &codec->component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001186
Jarkko Nikula70d29332011-01-27 16:24:22 +02001187 if (!try_module_get(codec->dev->driver->owner))
1188 return -ENODEV;
1189
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001190 soc_init_codec_debugfs(codec);
1191
Nariman Poushinb318ad52014-04-01 13:59:33 +01001192 if (driver->dapm_widgets) {
1193 ret = snd_soc_dapm_new_controls(&codec->dapm,
1194 driver->dapm_widgets,
1195 driver->num_dapm_widgets);
1196
1197 if (ret != 0) {
1198 dev_err(codec->dev,
1199 "Failed to create new controls %d\n", ret);
1200 goto err_probe;
1201 }
1202 }
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001203
Mark Brown888df392012-02-16 19:37:51 -08001204 /* Create DAPM widgets for each DAI stream */
Nariman Poushin261edc72014-03-31 15:47:12 +01001205 list_for_each_entry(dai, &codec->component.dai_list, list) {
1206 ret = snd_soc_dapm_new_dai_widgets(&codec->dapm, dai);
1207
1208 if (ret != 0) {
1209 dev_err(codec->dev,
1210 "Failed to create DAI widgets %d\n", ret);
1211 goto err_probe;
1212 }
1213 }
Mark Brown888df392012-02-16 19:37:51 -08001214
Mark Brown33c5f962011-08-22 18:40:30 +01001215 codec->dapm.idle_bias_off = driver->idle_bias_off;
1216
Mark Brown89b95ac02011-03-07 16:38:44 +00001217 if (driver->probe) {
1218 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001219 if (ret < 0) {
1220 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001221 "ASoC: failed to probe CODEC %d\n", ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001222 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001223 }
Chuansheng Liuff541f42012-12-21 18:17:12 +08001224 WARN(codec->dapm.idle_bias_off &&
1225 codec->dapm.bias_level != SND_SOC_BIAS_OFF,
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001226 "codec %s can not start from non-off bias with idle_bias_off==1\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02001227 codec->component.name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001228 }
1229
Mark Brownb7af1da2011-04-07 19:18:44 +09001230 if (driver->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001231 snd_soc_add_codec_controls(codec, driver->controls,
Mark Brownb7af1da2011-04-07 19:18:44 +09001232 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001233 if (driver->dapm_routes)
1234 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1235 driver->num_dapm_routes);
1236
Jarkko Nikula589c3562010-12-06 16:27:07 +02001237 /* mark codec as probed and add to card codec list */
1238 codec->probed = 1;
1239 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001240 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001241
Jarkko Nikula70d29332011-01-27 16:24:22 +02001242 return 0;
1243
1244err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001245 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001246 module_put(codec->dev->driver->owner);
1247
Jarkko Nikula589c3562010-12-06 16:27:07 +02001248 return ret;
1249}
1250
Liam Girdwood956245e2011-07-01 16:54:08 +01001251static int soc_probe_platform(struct snd_soc_card *card,
1252 struct snd_soc_platform *platform)
1253{
1254 int ret = 0;
1255 const struct snd_soc_platform_driver *driver = platform->driver;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01001256 struct snd_soc_component *component;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001257 struct snd_soc_dai *dai;
Liam Girdwood956245e2011-07-01 16:54:08 +01001258
Lars-Peter Clausen00200102014-07-17 22:01:07 +02001259 platform->component.card = card;
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001260 platform->component.dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +01001261
1262 if (!try_module_get(platform->dev->driver->owner))
1263 return -ENODEV;
1264
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +00001265 soc_init_platform_debugfs(platform);
1266
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001267 if (driver->dapm_widgets)
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001268 snd_soc_dapm_new_controls(&platform->component.dapm,
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001269 driver->dapm_widgets, driver->num_dapm_widgets);
1270
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001271 /* Create DAPM widgets for each DAI stream */
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01001272 list_for_each_entry(component, &component_list, list) {
1273 if (component->dev != platform->dev)
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001274 continue;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01001275 list_for_each_entry(dai, &component->dai_list, list)
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001276 snd_soc_dapm_new_dai_widgets(&platform->component.dapm,
1277 dai);
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001278 }
1279
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001280 platform->component.dapm.idle_bias_off = 1;
Stephen Warren3fec6b62012-04-05 12:28:01 -06001281
Liam Girdwood956245e2011-07-01 16:54:08 +01001282 if (driver->probe) {
1283 ret = driver->probe(platform);
1284 if (ret < 0) {
1285 dev_err(platform->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001286 "ASoC: failed to probe platform %d\n", ret);
Liam Girdwood956245e2011-07-01 16:54:08 +01001287 goto err_probe;
1288 }
1289 }
1290
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001291 if (driver->controls)
1292 snd_soc_add_platform_controls(platform, driver->controls,
1293 driver->num_controls);
1294 if (driver->dapm_routes)
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001295 snd_soc_dapm_add_routes(&platform->component.dapm,
1296 driver->dapm_routes, driver->num_dapm_routes);
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001297
Liam Girdwood956245e2011-07-01 16:54:08 +01001298 /* mark platform as probed and add to card platform list */
1299 platform->probed = 1;
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001300 list_add(&platform->component.dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001301
1302 return 0;
1303
1304err_probe:
Liam Girdwood02db1102012-03-02 16:13:44 +00001305 soc_cleanup_platform_debugfs(platform);
Liam Girdwood956245e2011-07-01 16:54:08 +01001306 module_put(platform->dev->driver->owner);
1307
1308 return ret;
1309}
1310
Mark Brown36ae1a92012-01-06 17:12:45 -08001311static void rtd_release(struct device *dev)
1312{
1313 kfree(dev);
1314}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001315
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001316static int soc_post_component_init(struct snd_soc_pcm_runtime *rtd,
1317 const char *name)
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001318{
Jarkko Nikula589c3562010-12-06 16:27:07 +02001319 int ret = 0;
1320
Jarkko Nikula589c3562010-12-06 16:27:07 +02001321 /* register the rtd device */
Mark Brown36ae1a92012-01-06 17:12:45 -08001322 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1323 if (!rtd->dev)
1324 return -ENOMEM;
1325 device_initialize(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001326 rtd->dev->parent = rtd->card->dev;
Mark Brown36ae1a92012-01-06 17:12:45 -08001327 rtd->dev->release = rtd_release;
1328 rtd->dev->init_name = name;
1329 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001330 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001331 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1332 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1333 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1334 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001335 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001336 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001337 /* calling put_device() here to free the rtd->dev */
1338 put_device(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001339 dev_err(rtd->card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001340 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001341 return ret;
1342 }
1343 rtd->dev_registered = 1;
1344
1345 /* add DAPM sysfs entries for this codec */
Mark Brown36ae1a92012-01-06 17:12:45 -08001346 ret = snd_soc_dapm_sys_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001347 if (ret < 0)
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001348 dev_err(rtd->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001349 "ASoC: failed to add codec dapm sysfs entries: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001350
1351 /* add codec sysfs entries */
Mark Brown36ae1a92012-01-06 17:12:45 -08001352 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001353 if (ret < 0)
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001354 dev_err(rtd->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001355 "ASoC: failed to add codec sysfs files: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001356
1357 return 0;
1358}
1359
Stephen Warren62ae68f2012-06-08 12:34:23 -06001360static int soc_probe_link_components(struct snd_soc_card *card, int num,
1361 int order)
1362{
1363 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1364 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001365 struct snd_soc_platform *platform = rtd->platform;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001366 int i, ret;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001367
1368 /* probe the CPU-side component, if it is a CODEC */
1369 if (cpu_dai->codec &&
1370 !cpu_dai->codec->probed &&
1371 cpu_dai->codec->driver->probe_order == order) {
1372 ret = soc_probe_codec(card, cpu_dai->codec);
1373 if (ret < 0)
1374 return ret;
1375 }
1376
Benoit Cousson88bd8702014-07-08 23:19:34 +02001377 /* probe the CODEC-side components */
1378 for (i = 0; i < rtd->num_codecs; i++) {
1379 if (!rtd->codec_dais[i]->codec->probed &&
1380 rtd->codec_dais[i]->codec->driver->probe_order == order) {
1381 ret = soc_probe_codec(card, rtd->codec_dais[i]->codec);
1382 if (ret < 0)
1383 return ret;
1384 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001385 }
1386
1387 /* probe the platform */
1388 if (!platform->probed &&
1389 platform->driver->probe_order == order) {
1390 ret = soc_probe_platform(card, platform);
1391 if (ret < 0)
1392 return ret;
1393 }
1394
1395 return 0;
1396}
1397
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001398static int soc_probe_codec_dai(struct snd_soc_card *card,
1399 struct snd_soc_dai *codec_dai,
1400 int order)
1401{
1402 int ret;
1403
1404 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
1405 if (codec_dai->driver->probe) {
1406 ret = codec_dai->driver->probe(codec_dai);
1407 if (ret < 0) {
1408 dev_err(codec_dai->dev,
1409 "ASoC: failed to probe CODEC DAI %s: %d\n",
1410 codec_dai->name, ret);
1411 return ret;
1412 }
1413 }
1414
1415 /* mark codec_dai as probed and add to card dai list */
1416 codec_dai->probed = 1;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001417 }
1418
1419 return 0;
1420}
1421
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001422static int soc_link_dai_widgets(struct snd_soc_card *card,
1423 struct snd_soc_dai_link *dai_link,
Benoit Cousson3f901a02014-07-01 09:47:54 +02001424 struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001425{
Benoit Cousson3f901a02014-07-01 09:47:54 +02001426 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1427 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001428 struct snd_soc_dapm_widget *play_w, *capture_w;
1429 int ret;
1430
Benoit Cousson88bd8702014-07-08 23:19:34 +02001431 if (rtd->num_codecs > 1)
1432 dev_warn(card->dev, "ASoC: Multiple codecs not supported yet\n");
1433
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001434 /* link the DAI widgets */
1435 play_w = codec_dai->playback_widget;
1436 capture_w = cpu_dai->capture_widget;
1437 if (play_w && capture_w) {
1438 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1439 capture_w, play_w);
1440 if (ret != 0) {
1441 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1442 play_w->name, capture_w->name, ret);
1443 return ret;
1444 }
1445 }
1446
1447 play_w = cpu_dai->playback_widget;
1448 capture_w = codec_dai->capture_widget;
1449 if (play_w && capture_w) {
1450 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1451 capture_w, play_w);
1452 if (ret != 0) {
1453 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1454 play_w->name, capture_w->name, ret);
1455 return ret;
1456 }
1457 }
1458
1459 return 0;
1460}
1461
Stephen Warren62ae68f2012-06-08 12:34:23 -06001462static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001463{
1464 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1465 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001466 struct snd_soc_platform *platform = rtd->platform;
Mark Brownc74184e2012-04-04 22:12:09 +01001467 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001468 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001469
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001470 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Liam Girdwood0168bf02011-06-07 16:08:05 +01001471 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001472
1473 /* config components */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001474 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001475 cpu_dai->card = card;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001476 for (i = 0; i < rtd->num_codecs; i++)
1477 rtd->codec_dais[i]->card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001478
1479 /* set default power off timeout */
1480 rtd->pmdown_time = pmdown_time;
1481
1482 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001483 if (!cpu_dai->probed &&
1484 cpu_dai->driver->probe_order == order) {
Stephen Warrena9db7db2012-06-08 12:34:20 -06001485 if (!cpu_dai->codec) {
Stephen Warrena9db7db2012-06-08 12:34:20 -06001486 if (!try_module_get(cpu_dai->dev->driver->owner))
1487 return -ENODEV;
Stephen Warrena9db7db2012-06-08 12:34:20 -06001488 }
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001489
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001490 if (cpu_dai->driver->probe) {
1491 ret = cpu_dai->driver->probe(cpu_dai);
1492 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001493 dev_err(cpu_dai->dev,
1494 "ASoC: failed to probe CPU DAI %s: %d\n",
1495 cpu_dai->name, ret);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001496 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001497 return ret;
1498 }
1499 }
1500 cpu_dai->probed = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001501 }
1502
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001503 /* probe the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001504 for (i = 0; i < rtd->num_codecs; i++) {
1505 ret = soc_probe_codec_dai(card, rtd->codec_dais[i], order);
1506 if (ret)
1507 return ret;
1508 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001509
Liam Girdwood0168bf02011-06-07 16:08:05 +01001510 /* complete DAI probe during last probe */
1511 if (order != SND_SOC_COMP_ORDER_LAST)
1512 return 0;
1513
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001514 /* do machine specific initialization */
1515 if (dai_link->init) {
1516 ret = dai_link->init(rtd);
1517 if (ret < 0) {
1518 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1519 dai_link->name, ret);
1520 return ret;
1521 }
1522 }
1523
1524 ret = soc_post_component_init(rtd, dai_link->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001525 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001526 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001527
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001528#ifdef CONFIG_DEBUG_FS
1529 /* add DPCM sysfs entries */
1530 if (dai_link->dynamic) {
1531 ret = soc_dpcm_debugfs_add(rtd);
1532 if (ret < 0) {
1533 dev_err(rtd->dev,
1534 "ASoC: failed to add dpcm sysfs entries: %d\n",
1535 ret);
1536 return ret;
1537 }
1538 }
1539#endif
1540
Mark Brown36ae1a92012-01-06 17:12:45 -08001541 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001542 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001543 dev_warn(rtd->dev, "ASoC: failed to add pmdown_time sysfs: %d\n",
1544 ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001545
Namarta Kohli1245b702012-08-16 17:10:41 +05301546 if (cpu_dai->driver->compress_dai) {
1547 /*create compress_device"*/
1548 ret = soc_new_compress(rtd, num);
Mark Brownc74184e2012-04-04 22:12:09 +01001549 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001550 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301551 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001552 return ret;
1553 }
1554 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301555
1556 if (!dai_link->params) {
1557 /* create the pcm */
1558 ret = soc_new_pcm(rtd, num);
1559 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001560 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301561 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001562 return ret;
1563 }
Namarta Kohli1245b702012-08-16 17:10:41 +05301564 } else {
Richard Fitzgerald9d58a072013-08-05 13:17:28 +01001565 INIT_DELAYED_WORK(&rtd->delayed_work,
1566 codec2codec_close_delayed_work);
1567
Namarta Kohli1245b702012-08-16 17:10:41 +05301568 /* link the DAI widgets */
Benoit Cousson3f901a02014-07-01 09:47:54 +02001569 ret = soc_link_dai_widgets(card, dai_link, rtd);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001570 if (ret)
1571 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01001572 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001573 }
1574
1575 /* add platform data for AC97 devices */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001576 for (i = 0; i < rtd->num_codecs; i++) {
1577 if (rtd->codec_dais[i]->driver->ac97_control)
1578 snd_ac97_dev_add_pdata(rtd->codec_dais[i]->codec->ac97,
1579 rtd->cpu_dai->ac97_pdata);
1580 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001581
1582 return 0;
1583}
1584
1585#ifdef CONFIG_SND_SOC_AC97_BUS
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001586static int soc_register_ac97_codec(struct snd_soc_codec *codec,
1587 struct snd_soc_dai *codec_dai)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001588{
1589 int ret;
1590
1591 /* Only instantiate AC97 if not already done by the adaptor
1592 * for the generic AC97 subsystem.
1593 */
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001594 if (codec_dai->driver->ac97_control && !codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001595 /*
1596 * It is possible that the AC97 device is already registered to
1597 * the device subsystem. This happens when the device is created
1598 * via snd_ac97_mixer(). Currently only SoC codec that does so
1599 * is the generic AC97 glue but others migh emerge.
1600 *
1601 * In those cases we don't try to register the device again.
1602 */
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001603 if (!codec->ac97_created)
Mika Westerberg0562f782010-10-13 11:30:32 +03001604 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001605
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001606 ret = soc_ac97_dev_register(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001607 if (ret < 0) {
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001608 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001609 "ASoC: AC97 device register failed: %d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001610 return ret;
1611 }
1612
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001613 codec->ac97_registered = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001614 }
1615 return 0;
1616}
1617
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001618static void soc_unregister_ac97_codec(struct snd_soc_codec *codec)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001619{
1620 if (codec->ac97_registered) {
1621 soc_ac97_dev_unregister(codec);
1622 codec->ac97_registered = 0;
1623 }
1624}
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001625
Benoit Cousson88bd8702014-07-08 23:19:34 +02001626static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1627{
1628 int i, ret;
1629
1630 for (i = 0; i < rtd->num_codecs; i++) {
1631 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
1632
1633 ret = soc_register_ac97_codec(codec_dai->codec, codec_dai);
1634 if (ret) {
1635 while (--i >= 0)
1636 soc_unregister_ac97_codec(codec_dai->codec);
1637 return ret;
1638 }
1639 }
1640
1641 return 0;
1642}
1643
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001644static void soc_unregister_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1645{
Benoit Cousson88bd8702014-07-08 23:19:34 +02001646 int i;
1647
1648 for (i = 0; i < rtd->num_codecs; i++)
1649 soc_unregister_ac97_codec(rtd->codec_dais[i]->codec);
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001650}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001651#endif
1652
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001653static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
Mark Brownb19e6e72012-03-14 21:18:39 +00001654{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001655 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001656 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1657 const char *codecname = aux_dev->codec_name;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001658
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001659 rtd->codec = soc_find_codec(aux_dev->codec_of_node, codecname);
1660 if (!rtd->codec) {
1661 if (aux_dev->codec_of_node)
1662 codecname = of_node_full_name(aux_dev->codec_of_node);
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001663
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001664 dev_err(card->dev, "ASoC: %s not registered\n", codecname);
1665 return -EPROBE_DEFER;
1666 }
1667
1668 return 0;
Mark Brownb19e6e72012-03-14 21:18:39 +00001669}
1670
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001671static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1672{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001673 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001674 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001675 int ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001676
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001677 if (rtd->codec->probed) {
1678 dev_err(rtd->codec->dev, "ASoC: codec already probed\n");
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001679 return -EBUSY;
1680 }
1681
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001682 ret = soc_probe_codec(card, rtd->codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001683 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001684 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001685
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001686 /* do machine specific initialization */
1687 if (aux_dev->init) {
1688 ret = aux_dev->init(&rtd->codec->dapm);
1689 if (ret < 0) {
1690 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1691 aux_dev->name, ret);
1692 return ret;
1693 }
1694 }
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001695
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001696 return soc_post_component_init(rtd, aux_dev->name);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001697}
1698
1699static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1700{
1701 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1702 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001703
1704 /* unregister the rtd device */
1705 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001706 device_remove_file(rtd->dev, &dev_attr_codec_reg);
Chuansheng Liud3bf1562012-12-26 00:57:32 +08001707 device_unregister(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001708 rtd->dev_registered = 0;
1709 }
1710
Jarkko Nikula589c3562010-12-06 16:27:07 +02001711 if (codec && codec->probed)
1712 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001713}
1714
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001715static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001716{
1717 int ret;
1718
1719 if (codec->cache_init)
1720 return 0;
1721
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001722 ret = snd_soc_cache_init(codec);
1723 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001724 dev_err(codec->dev,
1725 "ASoC: Failed to set cache compression type: %d\n",
1726 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001727 return ret;
1728 }
1729 codec->cache_init = 1;
1730 return 0;
1731}
1732
Mark Brownb19e6e72012-03-14 21:18:39 +00001733static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001734{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001735 struct snd_soc_codec *codec;
Mark Brown75d9ac42011-09-27 16:41:01 +01001736 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001737 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001738
Liam Girdwood01b9d992012-03-07 10:38:25 +00001739 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001740
Mark Brownb19e6e72012-03-14 21:18:39 +00001741 /* bind DAIs */
1742 for (i = 0; i < card->num_links; i++) {
1743 ret = soc_bind_dai_link(card, i);
1744 if (ret != 0)
1745 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001746 }
1747
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001748 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00001749 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001750 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00001751 if (ret != 0)
1752 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001753 }
1754
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001755 /* initialize the register cache for each available codec */
1756 list_for_each_entry(codec, &codec_list, list) {
1757 if (codec->cache_init)
1758 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001759 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001760 if (ret < 0)
1761 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001762 }
1763
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001764 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01001765 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001766 card->owner, 0, &card->snd_card);
1767 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001768 dev_err(card->dev,
1769 "ASoC: can't create sound card for card %s: %d\n",
1770 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001771 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001772 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001773
Mark Browne37a4972011-03-02 18:21:57 +00001774 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1775 card->dapm.dev = card->dev;
1776 card->dapm.card = card;
1777 list_add(&card->dapm.list, &card->dapm_list);
1778
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001779#ifdef CONFIG_DEBUG_FS
1780 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1781#endif
1782
Mark Brown88ee1c62011-02-02 10:43:26 +00001783#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001784 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001785 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001786#endif
Andy Green6ed25972008-06-13 16:24:05 +01001787
Mark Brown9a841eb2011-04-12 17:51:37 -07001788 if (card->dapm_widgets)
1789 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1790 card->num_dapm_widgets);
1791
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001792 /* initialise the sound card only once */
1793 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001794 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001795 if (ret < 0)
1796 goto card_probe_error;
1797 }
1798
Stephen Warren62ae68f2012-06-08 12:34:23 -06001799 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001800 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1801 order++) {
1802 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001803 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001804 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001805 dev_err(card->dev,
1806 "ASoC: failed to instantiate card %d\n",
1807 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001808 goto probe_dai_err;
1809 }
1810 }
1811 }
1812
1813 /* probe all DAI links on this card */
1814 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1815 order++) {
1816 for (i = 0; i < card->num_links; i++) {
1817 ret = soc_probe_link_dais(card, i, order);
1818 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001819 dev_err(card->dev,
1820 "ASoC: failed to instantiate card %d\n",
1821 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001822 goto probe_dai_err;
1823 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001824 }
1825 }
1826
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001827 for (i = 0; i < card->num_aux_devs; i++) {
1828 ret = soc_probe_aux_dev(card, i);
1829 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001830 dev_err(card->dev,
1831 "ASoC: failed to add auxiliary devices %d\n",
1832 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001833 goto probe_aux_dev_err;
1834 }
1835 }
1836
Mark Brown888df392012-02-16 19:37:51 -08001837 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00001838 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08001839
Mark Brownb7af1da2011-04-07 19:18:44 +09001840 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001841 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001842
Mark Brownb8ad29d2011-03-02 18:35:51 +00001843 if (card->dapm_routes)
1844 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1845 card->num_dapm_routes);
1846
Mark Brown75d9ac42011-09-27 16:41:01 +01001847 for (i = 0; i < card->num_links; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001848 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Mark Brown75d9ac42011-09-27 16:41:01 +01001849 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001850 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001851
Mark Brownf04209a2012-04-09 16:29:21 +01001852 if (dai_fmt) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001853 struct snd_soc_dai **codec_dais = rtd->codec_dais;
1854 int j;
1855
1856 for (j = 0; j < rtd->num_codecs; j++) {
1857 struct snd_soc_dai *codec_dai = codec_dais[j];
1858
1859 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1860 if (ret != 0 && ret != -ENOTSUPP)
1861 dev_warn(codec_dai->dev,
1862 "ASoC: Failed to set DAI format: %d\n",
1863 ret);
1864 }
Mark Brownf04209a2012-04-09 16:29:21 +01001865 }
1866
1867 /* If this is a regular CPU link there will be a platform */
Stephen Warrenfe33d4c2012-05-14 14:47:22 -06001868 if (dai_fmt &&
1869 (dai_link->platform_name || dai_link->platform_of_node)) {
Mark Brownf04209a2012-04-09 16:29:21 +01001870 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1871 dai_fmt);
1872 if (ret != 0 && ret != -ENOTSUPP)
1873 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001874 "ASoC: Failed to set DAI format: %d\n",
Mark Brownf04209a2012-04-09 16:29:21 +01001875 ret);
1876 } else if (dai_fmt) {
1877 /* Flip the polarity for the "CPU" end */
1878 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1879 switch (dai_link->dai_fmt &
1880 SND_SOC_DAIFMT_MASTER_MASK) {
1881 case SND_SOC_DAIFMT_CBM_CFM:
1882 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1883 break;
1884 case SND_SOC_DAIFMT_CBM_CFS:
1885 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1886 break;
1887 case SND_SOC_DAIFMT_CBS_CFM:
1888 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1889 break;
1890 case SND_SOC_DAIFMT_CBS_CFS:
1891 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1892 break;
1893 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001894
1895 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001896 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001897 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001898 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001899 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001900 ret);
1901 }
1902 }
1903
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001904 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001905 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001906 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1907 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001908 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1909 "%s", card->driver_name ? card->driver_name : card->name);
1910 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1911 switch (card->snd_card->driver[i]) {
1912 case '_':
1913 case '-':
1914 case '\0':
1915 break;
1916 default:
1917 if (!isalnum(card->snd_card->driver[i]))
1918 card->snd_card->driver[i] = '_';
1919 break;
1920 }
1921 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001922
Mark Brown28e9ad92011-03-02 18:36:34 +00001923 if (card->late_probe) {
1924 ret = card->late_probe(card);
1925 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001926 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001927 card->name, ret);
1928 goto probe_aux_dev_err;
1929 }
1930 }
1931
Stephen Warren16332812011-11-23 12:42:04 -07001932 if (card->fully_routed)
Lars-Peter Clausen7df37882014-06-16 18:13:04 +02001933 snd_soc_dapm_auto_nc_pins(card);
Stephen Warren16332812011-11-23 12:42:04 -07001934
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001935 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001936
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001937 ret = snd_card_register(card->snd_card);
1938 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001939 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1940 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001941 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001942 }
1943
1944#ifdef CONFIG_SND_SOC_AC97_BUS
1945 /* register any AC97 codecs */
1946 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001947 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1948 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001949 dev_err(card->dev,
1950 "ASoC: failed to register AC97: %d\n", ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001951 while (--i >= 0)
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001952 soc_unregister_ac97_dai_link(&card->rtd[i]);
Axel Lin6b3ed782010-12-07 16:12:29 +08001953 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001954 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001955 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001956#endif
1957
Mark Brown435c5e22008-12-04 15:32:53 +00001958 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001959 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001960 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001961
1962 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001963
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001964probe_aux_dev_err:
1965 for (i = 0; i < card->num_aux_devs; i++)
1966 soc_remove_aux_dev(card, i);
1967
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001968probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001969 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001970
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001971card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001972 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001973 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001974
1975 snd_card_free(card->snd_card);
1976
Mark Brownb19e6e72012-03-14 21:18:39 +00001977base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001978 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001979
Mark Brownb19e6e72012-03-14 21:18:39 +00001980 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001981}
1982
1983/* probes a new socdev */
1984static int soc_probe(struct platform_device *pdev)
1985{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001986 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001987
Vinod Koul70a7ca32011-01-14 19:22:48 +05301988 /*
1989 * no card, so machine driver should be registering card
1990 * we should not be here in that case so ret error
1991 */
1992 if (!card)
1993 return -EINVAL;
1994
Mark Brownfe4085e2012-03-02 13:07:41 +00001995 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001996 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001997 card->name);
1998
Mark Brown435c5e22008-12-04 15:32:53 +00001999 /* Bodge while we unpick instantiation */
2000 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002001
Mark Brown28d528c2012-08-09 18:45:23 +01002002 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002003}
2004
Vinod Koulb0e26482011-01-13 22:48:02 +05302005static int soc_cleanup_card_resources(struct snd_soc_card *card)
2006{
Vinod Koulb0e26482011-01-13 22:48:02 +05302007 int i;
2008
2009 /* make sure any delayed work runs */
2010 for (i = 0; i < card->num_rtd; i++) {
2011 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07002012 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05302013 }
2014
2015 /* remove auxiliary devices */
2016 for (i = 0; i < card->num_aux_devs; i++)
2017 soc_remove_aux_dev(card, i);
2018
2019 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09002020 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302021
2022 soc_cleanup_card_debugfs(card);
2023
2024 /* remove the card */
2025 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002026 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302027
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02002028 snd_soc_dapm_free(&card->dapm);
2029
Vinod Koulb0e26482011-01-13 22:48:02 +05302030 snd_card_free(card->snd_card);
2031 return 0;
2032
2033}
2034
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002035/* removes a socdev */
2036static int soc_remove(struct platform_device *pdev)
2037{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002038 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002039
Mark Brownc5af3a22008-11-28 13:29:45 +00002040 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002041 return 0;
2042}
2043
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002044int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01002045{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002046 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002047 int i;
Mark Brown51737472009-06-22 13:16:51 +01002048
2049 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01002050 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002051
2052 /* Flush out pmdown_time work - we actually do want to run it
2053 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002054 for (i = 0; i < card->num_rtd; i++) {
2055 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07002056 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002057 }
Mark Brown51737472009-06-22 13:16:51 +01002058
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002059 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01002060
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002061 /* deactivate pins to sleep state */
2062 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002063 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2064 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2065 int j;
2066
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002067 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +02002068 for (j = 0; j < rtd->num_codecs; j++) {
2069 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2070 pinctrl_pm_select_sleep_state(codec_dai->dev);
2071 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002072 }
2073
Mark Brown416356f2009-06-30 19:05:15 +01002074 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002075}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002076EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01002077
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002078const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05302079 .suspend = snd_soc_suspend,
2080 .resume = snd_soc_resume,
2081 .freeze = snd_soc_suspend,
2082 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002083 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05302084 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01002085};
Stephen Warrendeb26072011-04-05 19:35:30 -06002086EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01002087
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002088/* ASoC platform driver */
2089static struct platform_driver soc_driver = {
2090 .driver = {
2091 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02002092 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002093 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002094 },
2095 .probe = soc_probe,
2096 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002097};
2098
Mark Brown096e49d2009-07-05 15:12:22 +01002099/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002100 * snd_soc_new_ac97_codec - initailise AC97 device
2101 * @codec: audio codec
2102 * @ops: AC97 bus operations
2103 * @num: AC97 codec number
2104 *
2105 * Initialises AC97 codec resources for use by ad-hoc devices only.
2106 */
2107int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2108 struct snd_ac97_bus_ops *ops, int num)
2109{
2110 mutex_lock(&codec->mutex);
2111
2112 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2113 if (codec->ac97 == NULL) {
2114 mutex_unlock(&codec->mutex);
2115 return -ENOMEM;
2116 }
2117
2118 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2119 if (codec->ac97->bus == NULL) {
2120 kfree(codec->ac97);
2121 codec->ac97 = NULL;
2122 mutex_unlock(&codec->mutex);
2123 return -ENOMEM;
2124 }
2125
2126 codec->ac97->bus->ops = ops;
2127 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002128
2129 /*
2130 * Mark the AC97 device to be created by us. This way we ensure that the
2131 * device will be registered with the device subsystem later on.
2132 */
2133 codec->ac97_created = 1;
2134
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002135 mutex_unlock(&codec->mutex);
2136 return 0;
2137}
2138EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2139
Markus Pargmann741a5092013-08-19 17:05:55 +02002140static struct snd_ac97_reset_cfg snd_ac97_rst_cfg;
2141
2142static void snd_soc_ac97_warm_reset(struct snd_ac97 *ac97)
2143{
2144 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2145
2146 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_warm_reset);
2147
2148 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 1);
2149
2150 udelay(10);
2151
2152 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2153
2154 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2155 msleep(2);
2156}
2157
2158static void snd_soc_ac97_reset(struct snd_ac97 *ac97)
2159{
2160 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2161
2162 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_reset);
2163
2164 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2165 gpio_direction_output(snd_ac97_rst_cfg.gpio_sdata, 0);
2166 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 0);
2167
2168 udelay(10);
2169
2170 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 1);
2171
2172 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2173 msleep(2);
2174}
2175
2176static int snd_soc_ac97_parse_pinctl(struct device *dev,
2177 struct snd_ac97_reset_cfg *cfg)
2178{
2179 struct pinctrl *p;
2180 struct pinctrl_state *state;
2181 int gpio;
2182 int ret;
2183
2184 p = devm_pinctrl_get(dev);
2185 if (IS_ERR(p)) {
2186 dev_err(dev, "Failed to get pinctrl\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002187 return PTR_ERR(p);
Markus Pargmann741a5092013-08-19 17:05:55 +02002188 }
2189 cfg->pctl = p;
2190
2191 state = pinctrl_lookup_state(p, "ac97-reset");
2192 if (IS_ERR(state)) {
2193 dev_err(dev, "Can't find pinctrl state ac97-reset\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002194 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002195 }
2196 cfg->pstate_reset = state;
2197
2198 state = pinctrl_lookup_state(p, "ac97-warm-reset");
2199 if (IS_ERR(state)) {
2200 dev_err(dev, "Can't find pinctrl state ac97-warm-reset\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002201 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002202 }
2203 cfg->pstate_warm_reset = state;
2204
2205 state = pinctrl_lookup_state(p, "ac97-running");
2206 if (IS_ERR(state)) {
2207 dev_err(dev, "Can't find pinctrl state ac97-running\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002208 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002209 }
2210 cfg->pstate_run = state;
2211
2212 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 0);
2213 if (gpio < 0) {
2214 dev_err(dev, "Can't find ac97-sync gpio\n");
2215 return gpio;
2216 }
2217 ret = devm_gpio_request(dev, gpio, "AC97 link sync");
2218 if (ret) {
2219 dev_err(dev, "Failed requesting ac97-sync gpio\n");
2220 return ret;
2221 }
2222 cfg->gpio_sync = gpio;
2223
2224 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 1);
2225 if (gpio < 0) {
2226 dev_err(dev, "Can't find ac97-sdata gpio %d\n", gpio);
2227 return gpio;
2228 }
2229 ret = devm_gpio_request(dev, gpio, "AC97 link sdata");
2230 if (ret) {
2231 dev_err(dev, "Failed requesting ac97-sdata gpio\n");
2232 return ret;
2233 }
2234 cfg->gpio_sdata = gpio;
2235
2236 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 2);
2237 if (gpio < 0) {
2238 dev_err(dev, "Can't find ac97-reset gpio\n");
2239 return gpio;
2240 }
2241 ret = devm_gpio_request(dev, gpio, "AC97 link reset");
2242 if (ret) {
2243 dev_err(dev, "Failed requesting ac97-reset gpio\n");
2244 return ret;
2245 }
2246 cfg->gpio_reset = gpio;
2247
2248 return 0;
2249}
2250
Mark Brownb047e1c2013-06-26 12:45:59 +01002251struct snd_ac97_bus_ops *soc_ac97_ops;
Kevin Hilmanf74b5e22013-06-28 11:17:49 -07002252EXPORT_SYMBOL_GPL(soc_ac97_ops);
Mark Brownb047e1c2013-06-26 12:45:59 +01002253
2254int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
2255{
2256 if (ops == soc_ac97_ops)
2257 return 0;
2258
2259 if (soc_ac97_ops && ops)
2260 return -EBUSY;
2261
2262 soc_ac97_ops = ops;
2263
2264 return 0;
2265}
2266EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops);
2267
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002268/**
Markus Pargmann741a5092013-08-19 17:05:55 +02002269 * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
2270 *
2271 * This function sets the reset and warm_reset properties of ops and parses
2272 * the device node of pdev to get pinctrl states and gpio numbers to use.
2273 */
2274int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
2275 struct platform_device *pdev)
2276{
2277 struct device *dev = &pdev->dev;
2278 struct snd_ac97_reset_cfg cfg;
2279 int ret;
2280
2281 ret = snd_soc_ac97_parse_pinctl(dev, &cfg);
2282 if (ret)
2283 return ret;
2284
2285 ret = snd_soc_set_ac97_ops(ops);
2286 if (ret)
2287 return ret;
2288
2289 ops->warm_reset = snd_soc_ac97_warm_reset;
2290 ops->reset = snd_soc_ac97_reset;
2291
2292 snd_ac97_rst_cfg = cfg;
2293 return 0;
2294}
2295EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset);
2296
2297/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002298 * snd_soc_free_ac97_codec - free AC97 codec device
2299 * @codec: audio codec
2300 *
2301 * Frees AC97 codec device resources.
2302 */
2303void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2304{
2305 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002306#ifdef CONFIG_SND_SOC_AC97_BUS
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01002307 soc_unregister_ac97_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002308#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002309 kfree(codec->ac97->bus);
2310 kfree(codec->ac97);
2311 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002312 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002313 mutex_unlock(&codec->mutex);
2314}
2315EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2316
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002317/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002318 * snd_soc_cnew - create new control
2319 * @_template: control template
2320 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002321 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002322 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002323 *
2324 * Create a new mixer control from a template control.
2325 *
2326 * Returns 0 for success, else error.
2327 */
2328struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002329 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002330 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002331{
2332 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002333 struct snd_kcontrol *kcontrol;
2334 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002335
2336 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002337 template.index = 0;
2338
Mark Brownefb7ac32011-03-08 17:23:24 +00002339 if (!long_name)
2340 long_name = template.name;
2341
2342 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02002343 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00002344 if (!name)
2345 return NULL;
2346
Mark Brownefb7ac32011-03-08 17:23:24 +00002347 template.name = name;
2348 } else {
2349 template.name = long_name;
2350 }
2351
2352 kcontrol = snd_ctl_new1(&template, data);
2353
2354 kfree(name);
2355
2356 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002357}
2358EXPORT_SYMBOL_GPL(snd_soc_cnew);
2359
Liam Girdwood022658b2012-02-03 17:43:09 +00002360static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2361 const struct snd_kcontrol_new *controls, int num_controls,
2362 const char *prefix, void *data)
2363{
2364 int err, i;
2365
2366 for (i = 0; i < num_controls; i++) {
2367 const struct snd_kcontrol_new *control = &controls[i];
2368 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2369 control->name, prefix));
2370 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002371 dev_err(dev, "ASoC: Failed to add %s: %d\n",
2372 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00002373 return err;
2374 }
2375 }
2376
2377 return 0;
2378}
2379
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01002380struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2381 const char *name)
2382{
2383 struct snd_card *card = soc_card->snd_card;
2384 struct snd_kcontrol *kctl;
2385
2386 if (unlikely(!name))
2387 return NULL;
2388
2389 list_for_each_entry(kctl, &card->controls, list)
2390 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2391 return kctl;
2392 return NULL;
2393}
2394EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2395
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002396/**
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002397 * snd_soc_add_component_controls - Add an array of controls to a component.
2398 *
2399 * @component: Component to add controls to
2400 * @controls: Array of controls to add
2401 * @num_controls: Number of elements in the array
2402 *
2403 * Return: 0 for success, else error.
2404 */
2405int snd_soc_add_component_controls(struct snd_soc_component *component,
2406 const struct snd_kcontrol_new *controls, unsigned int num_controls)
2407{
2408 struct snd_card *card = component->card->snd_card;
2409
2410 return snd_soc_add_controls(card, component->dev, controls,
2411 num_controls, component->name_prefix, component);
2412}
2413EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
2414
2415/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002416 * snd_soc_add_codec_controls - add an array of controls to a codec.
2417 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002418 * duplicating this code.
2419 *
2420 * @codec: codec to add controls to
2421 * @controls: array of controls to add
2422 * @num_controls: number of elements in the array
2423 *
2424 * Return 0 for success, else error.
2425 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002426int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002427 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Ian Molton3e8e1952009-01-09 00:23:21 +00002428{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002429 return snd_soc_add_component_controls(&codec->component, controls,
2430 num_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002431}
Liam Girdwood022658b2012-02-03 17:43:09 +00002432EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002433
2434/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002435 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002436 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002437 *
2438 * @platform: platform to add controls to
2439 * @controls: array of controls to add
2440 * @num_controls: number of elements in the array
2441 *
2442 * Return 0 for success, else error.
2443 */
2444int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002445 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002446{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002447 return snd_soc_add_component_controls(&platform->component, controls,
2448 num_controls);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002449}
2450EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2451
2452/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002453 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2454 * Convenience function to add a list of controls.
2455 *
2456 * @soc_card: SoC card to add controls to
2457 * @controls: array of controls to add
2458 * @num_controls: number of elements in the array
2459 *
2460 * Return 0 for success, else error.
2461 */
2462int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2463 const struct snd_kcontrol_new *controls, int num_controls)
2464{
2465 struct snd_card *card = soc_card->snd_card;
2466
2467 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2468 NULL, soc_card);
2469}
2470EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2471
2472/**
2473 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2474 * Convienience function to add a list of controls.
2475 *
2476 * @dai: DAI to add controls to
2477 * @controls: array of controls to add
2478 * @num_controls: number of elements in the array
2479 *
2480 * Return 0 for success, else error.
2481 */
2482int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2483 const struct snd_kcontrol_new *controls, int num_controls)
2484{
2485 struct snd_card *card = dai->card->snd_card;
2486
2487 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2488 NULL, dai);
2489}
2490EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2491
2492/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002493 * snd_soc_info_enum_double - enumerated double mixer info callback
2494 * @kcontrol: mixer control
2495 * @uinfo: control element information
2496 *
2497 * Callback to provide information about a double enumerated
2498 * mixer control.
2499 *
2500 * Returns 0 for success.
2501 */
2502int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2503 struct snd_ctl_elem_info *uinfo)
2504{
2505 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2506
2507 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2508 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Takashi Iwai9a8d38d2014-02-18 08:11:42 +01002509 uinfo->value.enumerated.items = e->items;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002510
Takashi Iwai9a8d38d2014-02-18 08:11:42 +01002511 if (uinfo->value.enumerated.item >= e->items)
2512 uinfo->value.enumerated.item = e->items - 1;
Takashi Iwaia19685c2013-10-28 14:21:46 +01002513 strlcpy(uinfo->value.enumerated.name,
2514 e->texts[uinfo->value.enumerated.item],
2515 sizeof(uinfo->value.enumerated.name));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002516 return 0;
2517}
2518EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2519
2520/**
2521 * snd_soc_get_enum_double - enumerated double mixer get callback
2522 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002523 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002524 *
2525 * Callback to get the value of a double enumerated mixer.
2526 *
2527 * Returns 0 for success.
2528 */
2529int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2530 struct snd_ctl_elem_value *ucontrol)
2531{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002532 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002533 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002534 unsigned int val, item;
2535 unsigned int reg_val;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002536 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002537
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002538 ret = snd_soc_component_read(component, e->reg, &reg_val);
2539 if (ret)
2540 return ret;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002541 val = (reg_val >> e->shift_l) & e->mask;
2542 item = snd_soc_enum_val_to_item(e, val);
2543 ucontrol->value.enumerated.item[0] = item;
2544 if (e->shift_l != e->shift_r) {
2545 val = (reg_val >> e->shift_l) & e->mask;
2546 item = snd_soc_enum_val_to_item(e, val);
2547 ucontrol->value.enumerated.item[1] = item;
2548 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002549
2550 return 0;
2551}
2552EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2553
2554/**
2555 * snd_soc_put_enum_double - enumerated double mixer put callback
2556 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002557 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002558 *
2559 * Callback to set the value of a double enumerated mixer.
2560 *
2561 * Returns 0 for success.
2562 */
2563int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2564 struct snd_ctl_elem_value *ucontrol)
2565{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002566 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002567 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002568 unsigned int *item = ucontrol->value.enumerated.item;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002569 unsigned int val;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002570 unsigned int mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002571
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002572 if (item[0] >= e->items)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002573 return -EINVAL;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002574 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002575 mask = e->mask << e->shift_l;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002576 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002577 if (item[1] >= e->items)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002578 return -EINVAL;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002579 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002580 mask |= e->mask << e->shift_r;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002581 }
2582
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002583 return snd_soc_component_update_bits(component, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002584}
2585EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2586
2587/**
Markus Pargmannf227b882014-01-16 16:02:10 +01002588 * snd_soc_read_signed - Read a codec register and interprete as signed value
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002589 * @component: component
Markus Pargmannf227b882014-01-16 16:02:10 +01002590 * @reg: Register to read
2591 * @mask: Mask to use after shifting the register value
2592 * @shift: Right shift of register value
2593 * @sign_bit: Bit that describes if a number is negative or not.
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002594 * @signed_val: Pointer to where the read value should be stored
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002595 *
Markus Pargmannf227b882014-01-16 16:02:10 +01002596 * This functions reads a codec register. The register value is shifted right
2597 * by 'shift' bits and masked with the given 'mask'. Afterwards it translates
2598 * the given registervalue into a signed integer if sign_bit is non-zero.
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002599 *
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002600 * Returns 0 on sucess, otherwise an error value
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002601 */
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002602static int snd_soc_read_signed(struct snd_soc_component *component,
2603 unsigned int reg, unsigned int mask, unsigned int shift,
2604 unsigned int sign_bit, int *signed_val)
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002605{
Markus Pargmannf227b882014-01-16 16:02:10 +01002606 int ret;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002607 unsigned int val;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002608
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002609 ret = snd_soc_component_read(component, reg, &val);
2610 if (ret < 0)
2611 return ret;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002612
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002613 val = (val >> shift) & mask;
2614
2615 if (!sign_bit) {
2616 *signed_val = val;
2617 return 0;
2618 }
Markus Pargmannf227b882014-01-16 16:02:10 +01002619
2620 /* non-negative number */
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002621 if (!(val & BIT(sign_bit))) {
2622 *signed_val = val;
2623 return 0;
2624 }
Markus Pargmannf227b882014-01-16 16:02:10 +01002625
2626 ret = val;
2627
2628 /*
2629 * The register most probably does not contain a full-sized int.
2630 * Instead we have an arbitrary number of bits in a signed
2631 * representation which has to be translated into a full-sized int.
2632 * This is done by filling up all bits above the sign-bit.
2633 */
2634 ret |= ~((int)(BIT(sign_bit) - 1));
2635
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002636 *signed_val = ret;
2637
2638 return 0;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002639}
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002640
2641/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002642 * snd_soc_info_volsw - single mixer info callback
2643 * @kcontrol: mixer control
2644 * @uinfo: control element information
2645 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002646 * Callback to provide information about a single mixer control, or a double
2647 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002648 *
2649 * Returns 0 for success.
2650 */
2651int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2652 struct snd_ctl_elem_info *uinfo)
2653{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002654 struct soc_mixer_control *mc =
2655 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002656 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002657
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002658 if (!mc->platform_max)
2659 mc->platform_max = mc->max;
2660 platform_max = mc->platform_max;
2661
2662 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002663 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2664 else
2665 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2666
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002667 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002668 uinfo->value.integer.min = 0;
Markus Pargmannf227b882014-01-16 16:02:10 +01002669 uinfo->value.integer.max = platform_max - mc->min;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002670 return 0;
2671}
2672EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2673
2674/**
2675 * snd_soc_get_volsw - single mixer get callback
2676 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002677 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002678 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002679 * Callback to get the value of a single mixer control, or a double mixer
2680 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002681 *
2682 * Returns 0 for success.
2683 */
2684int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2685 struct snd_ctl_elem_value *ucontrol)
2686{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002687 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl4eaa9812008-07-29 11:42:26 +01002688 struct soc_mixer_control *mc =
2689 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002690 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002691 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002692 unsigned int shift = mc->shift;
2693 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002694 int max = mc->max;
Markus Pargmannf227b882014-01-16 16:02:10 +01002695 int min = mc->min;
2696 int sign_bit = mc->sign_bit;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002697 unsigned int mask = (1 << fls(max)) - 1;
2698 unsigned int invert = mc->invert;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002699 int val;
2700 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002701
Markus Pargmannf227b882014-01-16 16:02:10 +01002702 if (sign_bit)
2703 mask = BIT(sign_bit + 1) - 1;
2704
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002705 ret = snd_soc_read_signed(component, reg, mask, shift, sign_bit, &val);
2706 if (ret)
2707 return ret;
2708
2709 ucontrol->value.integer.value[0] = val - min;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002710 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002711 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002712 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002713
2714 if (snd_soc_volsw_is_stereo(mc)) {
2715 if (reg == reg2)
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002716 ret = snd_soc_read_signed(component, reg, mask, rshift,
2717 sign_bit, &val);
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002718 else
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002719 ret = snd_soc_read_signed(component, reg2, mask, shift,
2720 sign_bit, &val);
2721 if (ret)
2722 return ret;
2723
2724 ucontrol->value.integer.value[1] = val - min;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002725 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002726 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002727 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002728 }
2729
2730 return 0;
2731}
2732EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2733
2734/**
2735 * snd_soc_put_volsw - single mixer put callback
2736 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002737 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002738 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002739 * Callback to set the value of a single mixer control, or a double mixer
2740 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002741 *
2742 * Returns 0 for success.
2743 */
2744int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2745 struct snd_ctl_elem_value *ucontrol)
2746{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002747 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl4eaa9812008-07-29 11:42:26 +01002748 struct soc_mixer_control *mc =
2749 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002750 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002751 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002752 unsigned int shift = mc->shift;
2753 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002754 int max = mc->max;
Markus Pargmannf227b882014-01-16 16:02:10 +01002755 int min = mc->min;
2756 unsigned int sign_bit = mc->sign_bit;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002757 unsigned int mask = (1 << fls(max)) - 1;
2758 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002759 int err;
Nenghua Cao939d9f12014-03-03 19:08:23 +08002760 bool type_2r = false;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002761 unsigned int val2 = 0;
2762 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002763
Markus Pargmannf227b882014-01-16 16:02:10 +01002764 if (sign_bit)
2765 mask = BIT(sign_bit + 1) - 1;
2766
2767 val = ((ucontrol->value.integer.value[0] + min) & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002768 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002769 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002770 val_mask = mask << shift;
2771 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002772 if (snd_soc_volsw_is_stereo(mc)) {
Markus Pargmannf227b882014-01-16 16:02:10 +01002773 val2 = ((ucontrol->value.integer.value[1] + min) & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002774 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002775 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002776 if (reg == reg2) {
2777 val_mask |= mask << rshift;
2778 val |= val2 << rshift;
2779 } else {
2780 val2 = val2 << shift;
Nenghua Cao939d9f12014-03-03 19:08:23 +08002781 type_2r = true;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002782 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002783 }
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002784 err = snd_soc_component_update_bits(component, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002785 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002786 return err;
2787
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002788 if (type_2r)
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002789 err = snd_soc_component_update_bits(component, reg2, val_mask,
2790 val2);
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002791
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002792 return err;
2793}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002794EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002795
Mark Browne13ac2e2008-05-28 17:58:05 +01002796/**
Brian Austin1d99f242012-03-30 10:43:55 -05002797 * snd_soc_get_volsw_sx - single mixer get callback
2798 * @kcontrol: mixer control
2799 * @ucontrol: control element information
2800 *
2801 * Callback to get the value of a single mixer control, or a double mixer
2802 * control that spans 2 registers.
2803 *
2804 * Returns 0 for success.
2805 */
2806int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2807 struct snd_ctl_elem_value *ucontrol)
2808{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002809 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Brian Austin1d99f242012-03-30 10:43:55 -05002810 struct soc_mixer_control *mc =
2811 (struct soc_mixer_control *)kcontrol->private_value;
Brian Austin1d99f242012-03-30 10:43:55 -05002812 unsigned int reg = mc->reg;
2813 unsigned int reg2 = mc->rreg;
2814 unsigned int shift = mc->shift;
2815 unsigned int rshift = mc->rshift;
2816 int max = mc->max;
2817 int min = mc->min;
2818 int mask = (1 << (fls(min + max) - 1)) - 1;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002819 unsigned int val;
2820 int ret;
Brian Austin1d99f242012-03-30 10:43:55 -05002821
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002822 ret = snd_soc_component_read(component, reg, &val);
2823 if (ret < 0)
2824 return ret;
Brian Austin1d99f242012-03-30 10:43:55 -05002825
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002826 ucontrol->value.integer.value[0] = ((val >> shift) - min) & mask;
2827
2828 if (snd_soc_volsw_is_stereo(mc)) {
2829 ret = snd_soc_component_read(component, reg2, &val);
2830 if (ret < 0)
2831 return ret;
2832
2833 val = ((val >> rshift) - min) & mask;
2834 ucontrol->value.integer.value[1] = val;
2835 }
Brian Austin1d99f242012-03-30 10:43:55 -05002836
2837 return 0;
2838}
2839EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2840
2841/**
2842 * snd_soc_put_volsw_sx - double mixer set callback
2843 * @kcontrol: mixer control
2844 * @uinfo: control element information
2845 *
2846 * Callback to set the value of a double mixer control that spans 2 registers.
2847 *
2848 * Returns 0 for success.
2849 */
2850int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2851 struct snd_ctl_elem_value *ucontrol)
2852{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002853 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Brian Austin1d99f242012-03-30 10:43:55 -05002854 struct soc_mixer_control *mc =
2855 (struct soc_mixer_control *)kcontrol->private_value;
2856
2857 unsigned int reg = mc->reg;
2858 unsigned int reg2 = mc->rreg;
2859 unsigned int shift = mc->shift;
2860 unsigned int rshift = mc->rshift;
2861 int max = mc->max;
2862 int min = mc->min;
2863 int mask = (1 << (fls(min + max) - 1)) - 1;
Brian Austin27f1d752012-04-03 11:33:50 -05002864 int err = 0;
Bard Liao1a390192014-04-08 11:18:10 +08002865 unsigned int val, val_mask, val2 = 0;
Brian Austin1d99f242012-03-30 10:43:55 -05002866
2867 val_mask = mask << shift;
2868 val = (ucontrol->value.integer.value[0] + min) & mask;
2869 val = val << shift;
2870
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002871 err = snd_soc_component_update_bits(component, reg, val_mask, val);
Mukund Navadad0558522012-11-09 11:53:40 +05302872 if (err < 0)
2873 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002874
2875 if (snd_soc_volsw_is_stereo(mc)) {
2876 val_mask = mask << rshift;
2877 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2878 val2 = val2 << rshift;
2879
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002880 err = snd_soc_component_update_bits(component, reg2, val_mask,
2881 val2);
Brian Austin1d99f242012-03-30 10:43:55 -05002882 }
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002883 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002884}
2885EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2886
2887/**
Mark Browne13ac2e2008-05-28 17:58:05 +01002888 * snd_soc_info_volsw_s8 - signed mixer info callback
2889 * @kcontrol: mixer control
2890 * @uinfo: control element information
2891 *
2892 * Callback to provide information about a signed mixer control.
2893 *
2894 * Returns 0 for success.
2895 */
2896int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2897 struct snd_ctl_elem_info *uinfo)
2898{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002899 struct soc_mixer_control *mc =
2900 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002901 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002902 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002903
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002904 if (!mc->platform_max)
2905 mc->platform_max = mc->max;
2906 platform_max = mc->platform_max;
2907
Mark Browne13ac2e2008-05-28 17:58:05 +01002908 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2909 uinfo->count = 2;
2910 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002911 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002912 return 0;
2913}
2914EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2915
2916/**
2917 * snd_soc_get_volsw_s8 - signed mixer get callback
2918 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002919 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002920 *
2921 * Callback to get the value of a signed mixer control.
2922 *
2923 * Returns 0 for success.
2924 */
2925int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2926 struct snd_ctl_elem_value *ucontrol)
2927{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002928 struct soc_mixer_control *mc =
2929 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002930 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002931 unsigned int reg = mc->reg;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002932 unsigned int val;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002933 int min = mc->min;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002934 int ret;
2935
2936 ret = snd_soc_component_read(component, reg, &val);
2937 if (ret)
2938 return ret;
Mark Browne13ac2e2008-05-28 17:58:05 +01002939
2940 ucontrol->value.integer.value[0] =
2941 ((signed char)(val & 0xff))-min;
2942 ucontrol->value.integer.value[1] =
2943 ((signed char)((val >> 8) & 0xff))-min;
2944 return 0;
2945}
2946EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2947
2948/**
2949 * snd_soc_put_volsw_sgn - signed mixer put callback
2950 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002951 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002952 *
2953 * Callback to set the value of a signed mixer control.
2954 *
2955 * Returns 0 for success.
2956 */
2957int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2958 struct snd_ctl_elem_value *ucontrol)
2959{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002960 struct soc_mixer_control *mc =
2961 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002962 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002963 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002964 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002965 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002966
2967 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2968 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2969
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002970 return snd_soc_component_update_bits(component, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002971}
2972EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2973
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002974/**
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002975 * snd_soc_info_volsw_range - single mixer info callback with range.
2976 * @kcontrol: mixer control
2977 * @uinfo: control element information
2978 *
2979 * Callback to provide information, within a range, about a single
2980 * mixer control.
2981 *
2982 * returns 0 for success.
2983 */
2984int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
2985 struct snd_ctl_elem_info *uinfo)
2986{
2987 struct soc_mixer_control *mc =
2988 (struct soc_mixer_control *)kcontrol->private_value;
2989 int platform_max;
2990 int min = mc->min;
2991
2992 if (!mc->platform_max)
2993 mc->platform_max = mc->max;
2994 platform_max = mc->platform_max;
2995
2996 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Mark Brown9bde4f02012-12-19 16:05:00 +00002997 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002998 uinfo->value.integer.min = 0;
2999 uinfo->value.integer.max = platform_max - min;
3000
3001 return 0;
3002}
3003EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
3004
3005/**
3006 * snd_soc_put_volsw_range - single mixer put value callback with range.
3007 * @kcontrol: mixer control
3008 * @ucontrol: control element information
3009 *
3010 * Callback to set the value, within a range, for a single mixer control.
3011 *
3012 * Returns 0 for success.
3013 */
3014int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
3015 struct snd_ctl_elem_value *ucontrol)
3016{
3017 struct soc_mixer_control *mc =
3018 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003019 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003020 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003021 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003022 unsigned int shift = mc->shift;
3023 int min = mc->min;
3024 int max = mc->max;
3025 unsigned int mask = (1 << fls(max)) - 1;
3026 unsigned int invert = mc->invert;
3027 unsigned int val, val_mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00003028 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003029
3030 val = ((ucontrol->value.integer.value[0] + min) & mask);
3031 if (invert)
3032 val = max - val;
3033 val_mask = mask << shift;
3034 val = val << shift;
3035
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003036 ret = snd_soc_component_update_bits(component, reg, val_mask, val);
Joonyoung Shim0eaa6cc2013-03-26 14:41:05 +09003037 if (ret < 0)
Mark Brown9bde4f02012-12-19 16:05:00 +00003038 return ret;
3039
3040 if (snd_soc_volsw_is_stereo(mc)) {
3041 val = ((ucontrol->value.integer.value[1] + min) & mask);
3042 if (invert)
3043 val = max - val;
3044 val_mask = mask << shift;
3045 val = val << shift;
3046
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003047 ret = snd_soc_component_update_bits(component, rreg, val_mask,
3048 val);
Mark Brown9bde4f02012-12-19 16:05:00 +00003049 }
3050
3051 return ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003052}
3053EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
3054
3055/**
3056 * snd_soc_get_volsw_range - single mixer get callback with range
3057 * @kcontrol: mixer control
3058 * @ucontrol: control element information
3059 *
3060 * Callback to get the value, within a range, of a single mixer control.
3061 *
3062 * Returns 0 for success.
3063 */
3064int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
3065 struct snd_ctl_elem_value *ucontrol)
3066{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003067 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003068 struct soc_mixer_control *mc =
3069 (struct soc_mixer_control *)kcontrol->private_value;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003070 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003071 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003072 unsigned int shift = mc->shift;
3073 int min = mc->min;
3074 int max = mc->max;
3075 unsigned int mask = (1 << fls(max)) - 1;
3076 unsigned int invert = mc->invert;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003077 unsigned int val;
3078 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003079
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003080 ret = snd_soc_component_read(component, reg, &val);
3081 if (ret)
3082 return ret;
3083
3084 ucontrol->value.integer.value[0] = (val >> shift) & mask;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003085 if (invert)
3086 ucontrol->value.integer.value[0] =
3087 max - ucontrol->value.integer.value[0];
3088 ucontrol->value.integer.value[0] =
3089 ucontrol->value.integer.value[0] - min;
3090
Mark Brown9bde4f02012-12-19 16:05:00 +00003091 if (snd_soc_volsw_is_stereo(mc)) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003092 ret = snd_soc_component_read(component, rreg, &val);
3093 if (ret)
3094 return ret;
3095
3096 ucontrol->value.integer.value[1] = (val >> shift) & mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00003097 if (invert)
3098 ucontrol->value.integer.value[1] =
3099 max - ucontrol->value.integer.value[1];
3100 ucontrol->value.integer.value[1] =
3101 ucontrol->value.integer.value[1] - min;
3102 }
3103
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003104 return 0;
3105}
3106EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
3107
3108/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003109 * snd_soc_limit_volume - Set new limit to an existing volume control.
3110 *
3111 * @codec: where to look for the control
3112 * @name: Name of the control
3113 * @max: new maximum limit
3114 *
3115 * Return 0 for success, else error.
3116 */
3117int snd_soc_limit_volume(struct snd_soc_codec *codec,
3118 const char *name, int max)
3119{
Lars-Peter Clausen00200102014-07-17 22:01:07 +02003120 struct snd_card *card = codec->component.card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003121 struct snd_kcontrol *kctl;
3122 struct soc_mixer_control *mc;
3123 int found = 0;
3124 int ret = -EINVAL;
3125
3126 /* Sanity check for name and max */
3127 if (unlikely(!name || max <= 0))
3128 return -EINVAL;
3129
3130 list_for_each_entry(kctl, &card->controls, list) {
3131 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3132 found = 1;
3133 break;
3134 }
3135 }
3136 if (found) {
3137 mc = (struct soc_mixer_control *)kctl->private_value;
3138 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03003139 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003140 ret = 0;
3141 }
3142 }
3143 return ret;
3144}
3145EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3146
Mark Brown71d08512011-10-10 18:31:26 +01003147int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
3148 struct snd_ctl_elem_info *uinfo)
3149{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003150 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003151 struct soc_bytes *params = (void *)kcontrol->private_value;
3152
3153 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003154 uinfo->count = params->num_regs * component->val_bytes;
Mark Brown71d08512011-10-10 18:31:26 +01003155
3156 return 0;
3157}
3158EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
3159
3160int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
3161 struct snd_ctl_elem_value *ucontrol)
3162{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003163 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003164 struct soc_bytes *params = (void *)kcontrol->private_value;
Mark Brown71d08512011-10-10 18:31:26 +01003165 int ret;
3166
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003167 if (component->regmap)
3168 ret = regmap_raw_read(component->regmap, params->base,
Mark Brown71d08512011-10-10 18:31:26 +01003169 ucontrol->value.bytes.data,
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003170 params->num_regs * component->val_bytes);
Mark Brown71d08512011-10-10 18:31:26 +01003171 else
3172 ret = -EINVAL;
3173
Mark Brownf831b052012-02-17 16:20:33 -08003174 /* Hide any masked bytes to ensure consistent data reporting */
3175 if (ret == 0 && params->mask) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003176 switch (component->val_bytes) {
Mark Brownf831b052012-02-17 16:20:33 -08003177 case 1:
3178 ucontrol->value.bytes.data[0] &= ~params->mask;
3179 break;
3180 case 2:
3181 ((u16 *)(&ucontrol->value.bytes.data))[0]
Charles Keepax8f1ec932013-11-29 13:33:11 +00003182 &= cpu_to_be16(~params->mask);
Mark Brownf831b052012-02-17 16:20:33 -08003183 break;
3184 case 4:
3185 ((u32 *)(&ucontrol->value.bytes.data))[0]
Charles Keepax8f1ec932013-11-29 13:33:11 +00003186 &= cpu_to_be32(~params->mask);
Mark Brownf831b052012-02-17 16:20:33 -08003187 break;
3188 default:
3189 return -EINVAL;
3190 }
3191 }
3192
Mark Brown71d08512011-10-10 18:31:26 +01003193 return ret;
3194}
3195EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
3196
3197int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
3198 struct snd_ctl_elem_value *ucontrol)
3199{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003200 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003201 struct soc_bytes *params = (void *)kcontrol->private_value;
Mark Brownf831b052012-02-17 16:20:33 -08003202 int ret, len;
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003203 unsigned int val, mask;
Mark Brownf831b052012-02-17 16:20:33 -08003204 void *data;
Mark Brown71d08512011-10-10 18:31:26 +01003205
Xiubo Li6596aa02014-09-28 17:29:37 +08003206 if (!component->regmap || !params->num_regs)
Mark Brownf831b052012-02-17 16:20:33 -08003207 return -EINVAL;
3208
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003209 len = params->num_regs * component->val_bytes;
Mark Brownf831b052012-02-17 16:20:33 -08003210
Mark Brownb5a8fe42013-01-20 21:42:22 +09003211 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
3212 if (!data)
3213 return -ENOMEM;
3214
Mark Brownf831b052012-02-17 16:20:33 -08003215 /*
3216 * If we've got a mask then we need to preserve the register
3217 * bits. We shouldn't modify the incoming data so take a
3218 * copy.
3219 */
3220 if (params->mask) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003221 ret = regmap_read(component->regmap, params->base, &val);
Mark Brownf831b052012-02-17 16:20:33 -08003222 if (ret != 0)
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003223 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003224
3225 val &= params->mask;
3226
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003227 switch (component->val_bytes) {
Mark Brownf831b052012-02-17 16:20:33 -08003228 case 1:
3229 ((u8 *)data)[0] &= ~params->mask;
3230 ((u8 *)data)[0] |= val;
3231 break;
3232 case 2:
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003233 mask = ~params->mask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003234 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003235 &mask, &mask);
3236 if (ret != 0)
3237 goto out;
3238
3239 ((u16 *)data)[0] &= mask;
3240
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003241 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003242 &val, &val);
3243 if (ret != 0)
3244 goto out;
3245
3246 ((u16 *)data)[0] |= val;
Mark Brownf831b052012-02-17 16:20:33 -08003247 break;
3248 case 4:
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003249 mask = ~params->mask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003250 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003251 &mask, &mask);
3252 if (ret != 0)
3253 goto out;
3254
3255 ((u32 *)data)[0] &= mask;
3256
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003257 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003258 &val, &val);
3259 if (ret != 0)
3260 goto out;
3261
3262 ((u32 *)data)[0] |= val;
Mark Brownf831b052012-02-17 16:20:33 -08003263 break;
3264 default:
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003265 ret = -EINVAL;
3266 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003267 }
3268 }
3269
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003270 ret = regmap_raw_write(component->regmap, params->base,
Mark Brownf831b052012-02-17 16:20:33 -08003271 data, len);
3272
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003273out:
Mark Brownb5a8fe42013-01-20 21:42:22 +09003274 kfree(data);
Mark Brown71d08512011-10-10 18:31:26 +01003275
3276 return ret;
3277}
3278EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
3279
Vinod Kould9881202014-05-02 10:58:11 +05303280int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
3281 struct snd_ctl_elem_info *ucontrol)
3282{
3283 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
3284
3285 ucontrol->type = SNDRV_CTL_ELEM_TYPE_BYTES;
3286 ucontrol->count = params->max;
3287
3288 return 0;
3289}
3290EXPORT_SYMBOL_GPL(snd_soc_bytes_info_ext);
3291
Omair Mohammed Abdullah7523a272014-07-15 21:34:48 +05303292int snd_soc_bytes_tlv_callback(struct snd_kcontrol *kcontrol, int op_flag,
3293 unsigned int size, unsigned int __user *tlv)
3294{
3295 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
3296 unsigned int count = size < params->max ? size : params->max;
3297 int ret = -ENXIO;
3298
3299 switch (op_flag) {
3300 case SNDRV_CTL_TLV_OP_READ:
3301 if (params->get)
3302 ret = params->get(tlv, count);
3303 break;
3304 case SNDRV_CTL_TLV_OP_WRITE:
3305 if (params->put)
3306 ret = params->put(tlv, count);
3307 break;
3308 }
3309 return ret;
3310}
3311EXPORT_SYMBOL_GPL(snd_soc_bytes_tlv_callback);
3312
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003313/**
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003314 * snd_soc_info_xr_sx - signed multi register info callback
3315 * @kcontrol: mreg control
3316 * @uinfo: control element information
3317 *
3318 * Callback to provide information of a control that can
3319 * span multiple codec registers which together
3320 * forms a single signed value in a MSB/LSB manner.
3321 *
3322 * Returns 0 for success.
3323 */
3324int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
3325 struct snd_ctl_elem_info *uinfo)
3326{
3327 struct soc_mreg_control *mc =
3328 (struct soc_mreg_control *)kcontrol->private_value;
3329 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3330 uinfo->count = 1;
3331 uinfo->value.integer.min = mc->min;
3332 uinfo->value.integer.max = mc->max;
3333
3334 return 0;
3335}
3336EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
3337
3338/**
3339 * snd_soc_get_xr_sx - signed multi register get callback
3340 * @kcontrol: mreg control
3341 * @ucontrol: control element information
3342 *
3343 * Callback to get the value of a control that can span
3344 * multiple codec registers which together forms a single
3345 * signed value in a MSB/LSB manner. The control supports
3346 * specifying total no of bits used to allow for bitfields
3347 * across the multiple codec registers.
3348 *
3349 * Returns 0 for success.
3350 */
3351int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
3352 struct snd_ctl_elem_value *ucontrol)
3353{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003354 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003355 struct soc_mreg_control *mc =
3356 (struct soc_mreg_control *)kcontrol->private_value;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003357 unsigned int regbase = mc->regbase;
3358 unsigned int regcount = mc->regcount;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003359 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003360 unsigned int regwmask = (1<<regwshift)-1;
3361 unsigned int invert = mc->invert;
3362 unsigned long mask = (1UL<<mc->nbits)-1;
3363 long min = mc->min;
3364 long max = mc->max;
3365 long val = 0;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003366 unsigned int regval;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003367 unsigned int i;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003368 int ret;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003369
3370 for (i = 0; i < regcount; i++) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003371 ret = snd_soc_component_read(component, regbase+i, &regval);
3372 if (ret)
3373 return ret;
3374 val |= (regval & regwmask) << (regwshift*(regcount-i-1));
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003375 }
3376 val &= mask;
3377 if (min < 0 && val > max)
3378 val |= ~mask;
3379 if (invert)
3380 val = max - val;
3381 ucontrol->value.integer.value[0] = val;
3382
3383 return 0;
3384}
3385EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
3386
3387/**
3388 * snd_soc_put_xr_sx - signed multi register get callback
3389 * @kcontrol: mreg control
3390 * @ucontrol: control element information
3391 *
3392 * Callback to set the value of a control that can span
3393 * multiple codec registers which together forms a single
3394 * signed value in a MSB/LSB manner. The control supports
3395 * specifying total no of bits used to allow for bitfields
3396 * across the multiple codec registers.
3397 *
3398 * Returns 0 for success.
3399 */
3400int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
3401 struct snd_ctl_elem_value *ucontrol)
3402{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003403 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003404 struct soc_mreg_control *mc =
3405 (struct soc_mreg_control *)kcontrol->private_value;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003406 unsigned int regbase = mc->regbase;
3407 unsigned int regcount = mc->regcount;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003408 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003409 unsigned int regwmask = (1<<regwshift)-1;
3410 unsigned int invert = mc->invert;
3411 unsigned long mask = (1UL<<mc->nbits)-1;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003412 long max = mc->max;
3413 long val = ucontrol->value.integer.value[0];
3414 unsigned int i, regval, regmask;
3415 int err;
3416
3417 if (invert)
3418 val = max - val;
3419 val &= mask;
3420 for (i = 0; i < regcount; i++) {
3421 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3422 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003423 err = snd_soc_component_update_bits(component, regbase+i,
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003424 regmask, regval);
3425 if (err < 0)
3426 return err;
3427 }
3428
3429 return 0;
3430}
3431EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3432
3433/**
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003434 * snd_soc_get_strobe - strobe get callback
3435 * @kcontrol: mixer control
3436 * @ucontrol: control element information
3437 *
3438 * Callback get the value of a strobe mixer control.
3439 *
3440 * Returns 0 for success.
3441 */
3442int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
3443 struct snd_ctl_elem_value *ucontrol)
3444{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003445 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003446 struct soc_mixer_control *mc =
3447 (struct soc_mixer_control *)kcontrol->private_value;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003448 unsigned int reg = mc->reg;
3449 unsigned int shift = mc->shift;
3450 unsigned int mask = 1 << shift;
3451 unsigned int invert = mc->invert != 0;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003452 unsigned int val;
3453 int ret;
3454
3455 ret = snd_soc_component_read(component, reg, &val);
3456 if (ret)
3457 return ret;
3458
3459 val &= mask;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003460
3461 if (shift != 0 && val != 0)
3462 val = val >> shift;
3463 ucontrol->value.enumerated.item[0] = val ^ invert;
3464
3465 return 0;
3466}
3467EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3468
3469/**
3470 * snd_soc_put_strobe - strobe put callback
3471 * @kcontrol: mixer control
3472 * @ucontrol: control element information
3473 *
3474 * Callback strobe a register bit to high then low (or the inverse)
3475 * in one pass of a single mixer enum control.
3476 *
3477 * Returns 1 for success.
3478 */
3479int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3480 struct snd_ctl_elem_value *ucontrol)
3481{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003482 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003483 struct soc_mixer_control *mc =
3484 (struct soc_mixer_control *)kcontrol->private_value;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003485 unsigned int reg = mc->reg;
3486 unsigned int shift = mc->shift;
3487 unsigned int mask = 1 << shift;
3488 unsigned int invert = mc->invert != 0;
3489 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3490 unsigned int val1 = (strobe ^ invert) ? mask : 0;
3491 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3492 int err;
3493
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003494 err = snd_soc_component_update_bits(component, reg, mask, val1);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003495 if (err < 0)
3496 return err;
3497
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003498 return snd_soc_component_update_bits(component, reg, mask, val2);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003499}
3500EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3501
3502/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003503 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3504 * @dai: DAI
3505 * @clk_id: DAI specific clock ID
3506 * @freq: new clock frequency in Hz
3507 * @dir: new clock direction - input/output.
3508 *
3509 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3510 */
3511int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3512 unsigned int freq, int dir)
3513{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003514 if (dai->driver && dai->driver->ops->set_sysclk)
3515 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003516 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003517 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00003518 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003519 else
Mark Brown1104a9c2014-01-15 19:04:19 +00003520 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003521}
3522EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3523
3524/**
Mark Brownec4ee522011-03-07 20:58:11 +00003525 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3526 * @codec: CODEC
3527 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01003528 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00003529 * @freq: new clock frequency in Hz
3530 * @dir: new clock direction - input/output.
3531 *
3532 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3533 */
3534int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01003535 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00003536{
3537 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003538 return codec->driver->set_sysclk(codec, clk_id, source,
3539 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003540 else
Mark Brown1104a9c2014-01-15 19:04:19 +00003541 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00003542}
3543EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3544
3545/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003546 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3547 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003548 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003549 * @div: new clock divisor.
3550 *
3551 * Configures the clock dividers. This is used to derive the best DAI bit and
3552 * frame clocks from the system or master clock. It's best to set the DAI bit
3553 * and frame clocks as low as possible to save system power.
3554 */
3555int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3556 int div_id, int div)
3557{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003558 if (dai->driver && dai->driver->ops->set_clkdiv)
3559 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003560 else
3561 return -EINVAL;
3562}
3563EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3564
3565/**
3566 * snd_soc_dai_set_pll - configure DAI PLL.
3567 * @dai: DAI
3568 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003569 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003570 * @freq_in: PLL input clock frequency in Hz
3571 * @freq_out: requested PLL output clock frequency in Hz
3572 *
3573 * Configures and enables PLL to generate output clock based on input clock.
3574 */
Mark Brown85488032009-09-05 18:52:16 +01003575int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3576 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003577{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003578 if (dai->driver && dai->driver->ops->set_pll)
3579 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003580 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003581 else if (dai->codec && dai->codec->driver->set_pll)
3582 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3583 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003584 else
3585 return -EINVAL;
3586}
3587EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3588
Mark Brownec4ee522011-03-07 20:58:11 +00003589/*
3590 * snd_soc_codec_set_pll - configure codec PLL.
3591 * @codec: CODEC
3592 * @pll_id: DAI specific PLL ID
3593 * @source: DAI specific source for the PLL
3594 * @freq_in: PLL input clock frequency in Hz
3595 * @freq_out: requested PLL output clock frequency in Hz
3596 *
3597 * Configures and enables PLL to generate output clock based on input clock.
3598 */
3599int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3600 unsigned int freq_in, unsigned int freq_out)
3601{
3602 if (codec->driver->set_pll)
3603 return codec->driver->set_pll(codec, pll_id, source,
3604 freq_in, freq_out);
3605 else
3606 return -EINVAL;
3607}
3608EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3609
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003610/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01003611 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
3612 * @dai: DAI
3613 * @ratio Ratio of BCLK to Sample rate.
3614 *
3615 * Configures the DAI for a preset BCLK to sample rate ratio.
3616 */
3617int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
3618{
3619 if (dai->driver && dai->driver->ops->set_bclk_ratio)
3620 return dai->driver->ops->set_bclk_ratio(dai, ratio);
3621 else
3622 return -EINVAL;
3623}
3624EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
3625
3626/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003627 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3628 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003629 * @fmt: SND_SOC_DAIFMT_ format value.
3630 *
3631 * Configures the DAI hardware format and clocking.
3632 */
3633int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3634{
Shawn Guo5e4ba562012-03-09 00:59:40 +08003635 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003636 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08003637 if (dai->driver->ops->set_fmt == NULL)
3638 return -ENOTSUPP;
3639 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003640}
3641EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3642
3643/**
Xiubo Lie5c21512014-03-21 14:17:12 +08003644 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08003645 * @slots: Number of slots in use.
3646 * @tx_mask: bitmask representing active TX slots.
3647 * @rx_mask: bitmask representing active RX slots.
3648 *
3649 * Generates the TDM tx and rx slot default masks for DAI.
3650 */
Xiubo Lie5c21512014-03-21 14:17:12 +08003651static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08003652 unsigned int *tx_mask,
3653 unsigned int *rx_mask)
3654{
3655 if (*tx_mask || *rx_mask)
3656 return 0;
3657
3658 if (!slots)
3659 return -EINVAL;
3660
3661 *tx_mask = (1 << slots) - 1;
3662 *rx_mask = (1 << slots) - 1;
3663
3664 return 0;
3665}
3666
3667/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003668 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3669 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003670 * @tx_mask: bitmask representing active TX slots.
3671 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003672 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003673 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003674 *
3675 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3676 * specific.
3677 */
3678int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003679 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003680{
Xiubo Lie5c21512014-03-21 14:17:12 +08003681 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
3682 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08003683 &tx_mask, &rx_mask);
3684 else
Xiubo Lie5c21512014-03-21 14:17:12 +08003685 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08003686
Benoit Cousson88bd8702014-07-08 23:19:34 +02003687 dai->tx_mask = tx_mask;
3688 dai->rx_mask = rx_mask;
3689
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003690 if (dai->driver && dai->driver->ops->set_tdm_slot)
3691 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003692 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003693 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08003694 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003695}
3696EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3697
3698/**
Barry Song472df3c2009-09-12 01:16:29 +08003699 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3700 * @dai: DAI
3701 * @tx_num: how many TX channels
3702 * @tx_slot: pointer to an array which imply the TX slot number channel
3703 * 0~num-1 uses
3704 * @rx_num: how many RX channels
3705 * @rx_slot: pointer to an array which imply the RX slot number channel
3706 * 0~num-1 uses
3707 *
3708 * configure the relationship between channel number and TDM slot number.
3709 */
3710int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3711 unsigned int tx_num, unsigned int *tx_slot,
3712 unsigned int rx_num, unsigned int *rx_slot)
3713{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003714 if (dai->driver && dai->driver->ops->set_channel_map)
3715 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003716 rx_num, rx_slot);
3717 else
3718 return -EINVAL;
3719}
3720EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3721
3722/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003723 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3724 * @dai: DAI
3725 * @tristate: tristate enable
3726 *
3727 * Tristates the DAI so that others can use it.
3728 */
3729int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3730{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003731 if (dai->driver && dai->driver->ops->set_tristate)
3732 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003733 else
3734 return -EINVAL;
3735}
3736EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3737
3738/**
3739 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3740 * @dai: DAI
3741 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00003742 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003743 *
3744 * Mutes the DAI DAC.
3745 */
Mark Brownda183962013-02-06 15:44:07 +00003746int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
3747 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003748{
Mark Brownda183962013-02-06 15:44:07 +00003749 if (!dai->driver)
3750 return -ENOTSUPP;
3751
3752 if (dai->driver->ops->mute_stream)
3753 return dai->driver->ops->mute_stream(dai, mute, direction);
3754 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
3755 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003756 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003757 else
Mark Brown04570c62012-04-13 19:16:03 +01003758 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003759}
3760EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3761
Benoit Cousson88bd8702014-07-08 23:19:34 +02003762static int snd_soc_init_multicodec(struct snd_soc_card *card,
3763 struct snd_soc_dai_link *dai_link)
3764{
3765 /* Legacy codec/codec_dai link is a single entry in multicodec */
3766 if (dai_link->codec_name || dai_link->codec_of_node ||
3767 dai_link->codec_dai_name) {
3768 dai_link->num_codecs = 1;
3769
3770 dai_link->codecs = devm_kzalloc(card->dev,
3771 sizeof(struct snd_soc_dai_link_component),
3772 GFP_KERNEL);
3773 if (!dai_link->codecs)
3774 return -ENOMEM;
3775
3776 dai_link->codecs[0].name = dai_link->codec_name;
3777 dai_link->codecs[0].of_node = dai_link->codec_of_node;
3778 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
3779 }
3780
3781 if (!dai_link->codecs) {
3782 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
3783 return -EINVAL;
3784 }
3785
3786 return 0;
3787}
3788
Mark Brownc5af3a22008-11-28 13:29:45 +00003789/**
3790 * snd_soc_register_card - Register a card with the ASoC core
3791 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003792 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003793 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003794 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303795int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003796{
Benoit Cousson88bd8702014-07-08 23:19:34 +02003797 int i, j, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003798
Mark Brownc5af3a22008-11-28 13:29:45 +00003799 if (!card->name || !card->dev)
3800 return -EINVAL;
3801
Stephen Warren5a504962011-12-21 10:40:59 -07003802 for (i = 0; i < card->num_links; i++) {
3803 struct snd_soc_dai_link *link = &card->dai_link[i];
3804
Benoit Cousson88bd8702014-07-08 23:19:34 +02003805 ret = snd_soc_init_multicodec(card, link);
3806 if (ret) {
3807 dev_err(card->dev, "ASoC: failed to init multicodec\n");
3808 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07003809 }
Benoit Cousson88bd8702014-07-08 23:19:34 +02003810
3811 for (j = 0; j < link->num_codecs; j++) {
3812 /*
3813 * Codec must be specified by 1 of name or OF node,
3814 * not both or neither.
3815 */
3816 if (!!link->codecs[j].name ==
3817 !!link->codecs[j].of_node) {
3818 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
3819 link->name);
3820 return -EINVAL;
3821 }
3822 /* Codec DAI name must be specified */
3823 if (!link->codecs[j].dai_name) {
3824 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
3825 link->name);
3826 return -EINVAL;
3827 }
Stephen Warrenbc926572012-05-25 18:22:11 -06003828 }
Stephen Warren5a504962011-12-21 10:40:59 -07003829
3830 /*
3831 * Platform may be specified by either name or OF node, but
3832 * can be left unspecified, and a dummy platform will be used.
3833 */
3834 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003835 dev_err(card->dev,
3836 "ASoC: Both platform name/of_node are set for %s\n",
3837 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003838 return -EINVAL;
3839 }
3840
3841 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06003842 * CPU device may be specified by either name or OF node, but
3843 * can be left unspecified, and will be matched based on DAI
3844 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07003845 */
Stephen Warrenbc926572012-05-25 18:22:11 -06003846 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003847 dev_err(card->dev,
3848 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3849 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003850 return -EINVAL;
3851 }
3852 /*
3853 * At least one of CPU DAI name or CPU device name/node must be
3854 * specified
3855 */
3856 if (!link->cpu_dai_name &&
3857 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003858 dev_err(card->dev,
3859 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3860 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003861 return -EINVAL;
3862 }
3863 }
3864
Mark Browned77cc12011-05-03 18:25:34 +01003865 dev_set_drvdata(card->dev, card);
3866
Stephen Warren111c6412011-01-28 14:26:35 -07003867 snd_soc_initialize_card_lists(card);
3868
Vinod Koul150dd2f2011-01-13 22:48:32 +05303869 soc_init_card_debugfs(card);
3870
Mark Brown181a6892012-03-14 20:18:49 +00003871 card->rtd = devm_kzalloc(card->dev,
3872 sizeof(struct snd_soc_pcm_runtime) *
3873 (card->num_links + card->num_aux_devs),
3874 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003875 if (card->rtd == NULL)
3876 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01003877 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003878 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003879
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02003880 for (i = 0; i < card->num_links; i++) {
3881 card->rtd[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003882 card->rtd[i].dai_link = &card->dai_link[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02003883 card->rtd[i].codec_dais = devm_kzalloc(card->dev,
3884 sizeof(struct snd_soc_dai *) *
3885 (card->rtd[i].dai_link->num_codecs),
3886 GFP_KERNEL);
3887 if (card->rtd[i].codec_dais == NULL)
3888 return -ENOMEM;
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02003889 }
3890
3891 for (i = 0; i < card->num_aux_devs; i++)
3892 card->rtd_aux[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003893
Mark Browndb432b42011-10-03 21:06:40 +01003894 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00003895 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003896 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003897 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003898
Mark Brownb19e6e72012-03-14 21:18:39 +00003899 ret = snd_soc_instantiate_card(card);
3900 if (ret != 0)
3901 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003902
Nicolin Chen988e8cc2013-11-04 14:57:31 +08003903 /* deactivate pins to sleep state */
3904 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02003905 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
3906 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
3907 int j;
3908
3909 for (j = 0; j < rtd->num_codecs; j++) {
3910 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
3911 if (!codec_dai->active)
3912 pinctrl_pm_select_sleep_state(codec_dai->dev);
3913 }
3914
Nicolin Chen988e8cc2013-11-04 14:57:31 +08003915 if (!cpu_dai->active)
3916 pinctrl_pm_select_sleep_state(cpu_dai->dev);
3917 }
3918
Mark Brownb19e6e72012-03-14 21:18:39 +00003919 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00003920}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303921EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003922
3923/**
3924 * snd_soc_unregister_card - Unregister a card with the ASoC core
3925 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003926 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003927 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003928 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303929int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003930{
Vinod Koulb0e26482011-01-13 22:48:02 +05303931 if (card->instantiated)
3932 soc_cleanup_card_resources(card);
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003933 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00003934
3935 return 0;
3936}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303937EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003938
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003939/*
3940 * Simplify DAI link configuration by removing ".-1" from device names
3941 * and sanitizing names.
3942 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003943static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003944{
3945 char *found, name[NAME_SIZE];
3946 int id1, id2;
3947
3948 if (dev_name(dev) == NULL)
3949 return NULL;
3950
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003951 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003952
3953 /* are we a "%s.%d" name (platform and SPI components) */
3954 found = strstr(name, dev->driver->name);
3955 if (found) {
3956 /* get ID */
3957 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3958
3959 /* discard ID from name if ID == -1 */
3960 if (*id == -1)
3961 found[strlen(dev->driver->name)] = '\0';
3962 }
3963
3964 } else {
3965 /* I2C component devices are named "bus-addr" */
3966 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3967 char tmp[NAME_SIZE];
3968
3969 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003970 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003971
3972 /* sanitize component name for DAI link creation */
3973 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003974 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003975 } else
3976 *id = 0;
3977 }
3978
3979 return kstrdup(name, GFP_KERNEL);
3980}
3981
3982/*
3983 * Simplify DAI link naming for single devices with multiple DAIs by removing
3984 * any ".-1" and using the DAI name (instead of device name).
3985 */
3986static inline char *fmt_multiple_name(struct device *dev,
3987 struct snd_soc_dai_driver *dai_drv)
3988{
3989 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003990 dev_err(dev,
3991 "ASoC: error - multiple DAI %s registered with no name\n",
3992 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003993 return NULL;
3994 }
3995
3996 return kstrdup(dai_drv->name, GFP_KERNEL);
3997}
3998
Mark Brown91151712008-11-30 23:31:24 +00003999/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004000 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00004001 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004002 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00004003 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004004static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00004005{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01004006 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00004007
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01004008 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004009 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
4010 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01004011 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004012 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004013 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004014 }
Mark Brown91151712008-11-30 23:31:24 +00004015}
Mark Brown91151712008-11-30 23:31:24 +00004016
4017/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004018 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00004019 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01004020 * @component: The component the DAIs are registered for
4021 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00004022 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004023 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
4024 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00004025 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01004026static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004027 struct snd_soc_dai_driver *dai_drv, size_t count,
4028 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00004029{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01004030 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004031 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004032 unsigned int i;
4033 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004034
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004035 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00004036
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004037 component->dai_drv = dai_drv;
4038 component->num_dai = count;
4039
Mark Brown91151712008-11-30 23:31:24 +00004040 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004041
4042 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08004043 if (dai == NULL) {
4044 ret = -ENOMEM;
4045 goto err;
4046 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004047
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004048 /*
4049 * Back in the old days when we still had component-less DAIs,
4050 * instead of having a static name, component-less DAIs would
4051 * inherit the name of the parent device so it is possible to
4052 * register multiple instances of the DAI. We still need to keep
4053 * the same naming style even though those DAIs are not
4054 * component-less anymore.
4055 */
4056 if (count == 1 && legacy_dai_naming) {
4057 dai->name = fmt_single_name(dev, &dai->id);
4058 } else {
4059 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
4060 if (dai_drv[i].id)
4061 dai->id = dai_drv[i].id;
4062 else
4063 dai->id = i;
4064 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004065 if (dai->name == NULL) {
4066 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004067 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00004068 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004069 }
4070
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01004071 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004072 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004073 dai->driver = &dai_drv[i];
4074 if (!dai->driver->ops)
4075 dai->driver->ops = &null_dai_ops;
4076
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01004077 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01004078
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004079 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00004080 }
4081
4082 return 0;
4083
4084err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004085 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00004086
4087 return ret;
4088}
Mark Brown91151712008-11-30 23:31:24 +00004089
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004090static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
4091 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004092{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004093 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004094
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004095 component->driver->seq_notifier(component, type, subseq);
4096}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004097
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004098static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
4099 int event)
4100{
4101 struct snd_soc_component *component = dapm->component;
4102
4103 return component->driver->stream_event(component, event);
4104}
4105
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004106static int snd_soc_component_initialize(struct snd_soc_component *component,
4107 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004108{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004109 struct snd_soc_dapm_context *dapm;
4110
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004111 component->name = fmt_single_name(dev, &component->id);
4112 if (!component->name) {
4113 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004114 return -ENOMEM;
4115 }
4116
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004117 component->dev = dev;
4118 component->driver = driver;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004119
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004120 if (!component->dapm_ptr)
4121 component->dapm_ptr = &component->dapm;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004122
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004123 dapm = component->dapm_ptr;
4124 dapm->dev = dev;
4125 dapm->component = component;
4126 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004127 if (driver->seq_notifier)
4128 dapm->seq_notifier = snd_soc_component_seq_notifier;
4129 if (driver->stream_event)
4130 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004131
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004132 INIT_LIST_HEAD(&component->dai_list);
4133 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004134
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004135 return 0;
4136}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004137
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004138static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
4139{
4140 list_add(&component->list, &component_list);
4141}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004142
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004143static void snd_soc_component_add(struct snd_soc_component *component)
4144{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004145 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004146 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004147 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004148}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004149
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004150static void snd_soc_component_cleanup(struct snd_soc_component *component)
4151{
4152 snd_soc_unregister_dais(component);
4153 kfree(component->name);
4154}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004155
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004156static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
4157{
4158 list_del(&component->list);
4159}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004160
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004161static void snd_soc_component_del(struct snd_soc_component *component)
4162{
4163 mutex_lock(&client_mutex);
4164 snd_soc_component_del_unlocked(component);
4165 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004166}
4167
4168int snd_soc_register_component(struct device *dev,
4169 const struct snd_soc_component_driver *cmpnt_drv,
4170 struct snd_soc_dai_driver *dai_drv,
4171 int num_dai)
4172{
4173 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004174 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004175
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004176 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004177 if (!cmpnt) {
4178 dev_err(dev, "ASoC: Failed to allocate memory\n");
4179 return -ENOMEM;
4180 }
4181
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004182 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
4183 if (ret)
4184 goto err_free;
4185
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004186 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01004187 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004188
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004189 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
4190 if (ret < 0) {
4191 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4192 goto err_cleanup;
4193 }
4194
4195 snd_soc_component_add(cmpnt);
4196
4197 return 0;
4198
4199err_cleanup:
4200 snd_soc_component_cleanup(cmpnt);
4201err_free:
4202 kfree(cmpnt);
4203 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004204}
4205EXPORT_SYMBOL_GPL(snd_soc_register_component);
4206
4207/**
4208 * snd_soc_unregister_component - Unregister a component from the ASoC core
4209 *
4210 */
4211void snd_soc_unregister_component(struct device *dev)
4212{
4213 struct snd_soc_component *cmpnt;
4214
4215 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01004216 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004217 goto found;
4218 }
4219 return;
4220
4221found:
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004222 snd_soc_component_del(cmpnt);
4223 snd_soc_component_cleanup(cmpnt);
4224 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004225}
4226EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
4227
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004228static int snd_soc_platform_drv_write(struct snd_soc_component *component,
4229 unsigned int reg, unsigned int val)
4230{
4231 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
4232
4233 return platform->driver->write(platform, reg, val);
4234}
4235
4236static int snd_soc_platform_drv_read(struct snd_soc_component *component,
4237 unsigned int reg, unsigned int *val)
4238{
4239 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
4240
4241 *val = platform->driver->read(platform, reg);
4242
4243 return 0;
4244}
4245
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004246/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004247 * snd_soc_add_platform - Add a platform to the ASoC core
4248 * @dev: The parent device for the platform
4249 * @platform: The platform to add
4250 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00004251 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004252int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01004253 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004254{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01004255 int ret;
4256
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004257 ret = snd_soc_component_initialize(&platform->component,
4258 &platform_drv->component_driver, dev);
4259 if (ret)
4260 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004261
4262 platform->dev = dev;
4263 platform->driver = platform_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004264 if (platform_drv->write)
4265 platform->component.write = snd_soc_platform_drv_write;
4266 if (platform_drv->read)
4267 platform->component.read = snd_soc_platform_drv_read;
Mark Brown12a48a8c2008-12-03 19:40:30 +00004268
4269 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004270 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004271 list_add(&platform->list, &platform_list);
4272 mutex_unlock(&client_mutex);
4273
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004274 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
4275 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004276
4277 return 0;
4278}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004279EXPORT_SYMBOL_GPL(snd_soc_add_platform);
4280
4281/**
4282 * snd_soc_register_platform - Register a platform with the ASoC core
4283 *
4284 * @platform: platform to register
4285 */
4286int snd_soc_register_platform(struct device *dev,
4287 const struct snd_soc_platform_driver *platform_drv)
4288{
4289 struct snd_soc_platform *platform;
4290 int ret;
4291
4292 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
4293
4294 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
4295 if (platform == NULL)
4296 return -ENOMEM;
4297
4298 ret = snd_soc_add_platform(dev, platform, platform_drv);
4299 if (ret)
4300 kfree(platform);
4301
4302 return ret;
4303}
Mark Brown12a48a8c2008-12-03 19:40:30 +00004304EXPORT_SYMBOL_GPL(snd_soc_register_platform);
4305
4306/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004307 * snd_soc_remove_platform - Remove a platform from the ASoC core
4308 * @platform: the platform to remove
4309 */
4310void snd_soc_remove_platform(struct snd_soc_platform *platform)
4311{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01004312
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004313 mutex_lock(&client_mutex);
4314 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004315 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004316 mutex_unlock(&client_mutex);
4317
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004318 snd_soc_component_cleanup(&platform->component);
4319
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004320 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004321 platform->component.name);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004322}
4323EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
4324
4325struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
4326{
4327 struct snd_soc_platform *platform;
4328
4329 list_for_each_entry(platform, &platform_list, list) {
4330 if (dev == platform->dev)
4331 return platform;
4332 }
4333
4334 return NULL;
4335}
4336EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
4337
4338/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00004339 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4340 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004341 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00004342 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004343void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004344{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004345 struct snd_soc_platform *platform;
4346
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004347 platform = snd_soc_lookup_platform(dev);
4348 if (!platform)
4349 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004350
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004351 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004352 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004353}
4354EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
4355
Mark Brown151ab222009-05-09 16:22:58 +01004356static u64 codec_format_map[] = {
4357 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
4358 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
4359 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
4360 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
4361 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
4362 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
4363 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4364 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4365 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
4366 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
4367 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
4368 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
4369 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
4370 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
4371 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4372 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
4373};
4374
4375/* Fix up the DAI formats for endianness: codecs don't actually see
4376 * the endianness of the data but we're using the CPU format
4377 * definitions which do need to include endianness so we ensure that
4378 * codec DAIs always have both big and little endian variants set.
4379 */
4380static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
4381{
4382 int i;
4383
4384 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
4385 if (stream->formats & codec_format_map[i])
4386 stream->formats |= codec_format_map[i];
4387}
4388
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004389static int snd_soc_codec_drv_write(struct snd_soc_component *component,
4390 unsigned int reg, unsigned int val)
4391{
4392 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
4393
4394 return codec->driver->write(codec, reg, val);
4395}
4396
4397static int snd_soc_codec_drv_read(struct snd_soc_component *component,
4398 unsigned int reg, unsigned int *val)
4399{
4400 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
4401
4402 *val = codec->driver->read(codec, reg);
4403
4404 return 0;
4405}
4406
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02004407static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
4408 enum snd_soc_bias_level level)
4409{
4410 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
4411
4412 return codec->driver->set_bias_level(codec, level);
4413}
4414
Mark Brown0d0cf002008-12-10 14:32:45 +00004415/**
4416 * snd_soc_register_codec - Register a codec with the ASoC core
4417 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004418 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00004419 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004420int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00004421 const struct snd_soc_codec_driver *codec_drv,
4422 struct snd_soc_dai_driver *dai_drv,
4423 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00004424{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004425 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004426 struct snd_soc_dai *dai;
Xiubo Lia39f75f2014-03-26 13:40:23 +08004427 struct regmap *regmap;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004428 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01004429
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004430 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00004431
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004432 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
4433 if (codec == NULL)
4434 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00004435
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004436 codec->component.dapm_ptr = &codec->dapm;
4437
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004438 ret = snd_soc_component_initialize(&codec->component,
4439 &codec_drv->component_driver, dev);
4440 if (ret)
4441 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01004442
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004443 if (codec_drv->write)
4444 codec->component.write = snd_soc_codec_drv_write;
4445 if (codec_drv->read)
4446 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004447 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004448 codec->dapm.codec = codec;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004449 if (codec_drv->seq_notifier)
4450 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02004451 if (codec_drv->set_bias_level)
4452 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004453 codec->dev = dev;
4454 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004455 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004456 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004457
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004458 if (!codec->component.write) {
Xiubo Lia39f75f2014-03-26 13:40:23 +08004459 if (codec_drv->get_regmap)
4460 regmap = codec_drv->get_regmap(dev);
4461 else
4462 regmap = dev_get_regmap(dev, NULL);
4463
4464 if (regmap) {
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004465 ret = snd_soc_component_init_io(&codec->component,
4466 regmap);
4467 if (ret) {
Xiubo Lia39f75f2014-03-26 13:40:23 +08004468 dev_err(codec->dev,
4469 "Failed to set cache I/O:%d\n",
4470 ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004471 goto err_cleanup;
Xiubo Lia39f75f2014-03-26 13:40:23 +08004472 }
4473 }
4474 }
4475
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004476 for (i = 0; i < num_dai; i++) {
4477 fixup_codec_formats(&dai_drv[i].playback);
4478 fixup_codec_formats(&dai_drv[i].capture);
4479 }
4480
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004481 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
4482 if (ret < 0) {
4483 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4484 goto err_cleanup;
4485 }
4486
4487 list_for_each_entry(dai, &codec->component.dai_list, list)
4488 dai->codec = codec;
4489
Mark Brown054880f2012-04-09 17:29:19 +01004490 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004491 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01004492 list_add(&codec->list, &codec_list);
4493 mutex_unlock(&client_mutex);
4494
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004495 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
4496 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00004497 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004498
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004499err_cleanup:
4500 snd_soc_component_cleanup(&codec->component);
4501err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004502 kfree(codec);
4503 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00004504}
4505EXPORT_SYMBOL_GPL(snd_soc_register_codec);
4506
4507/**
4508 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4509 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004510 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00004511 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004512void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00004513{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004514 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004515
4516 list_for_each_entry(codec, &codec_list, list) {
4517 if (dev == codec->dev)
4518 goto found;
4519 }
4520 return;
4521
4522found:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004523
Mark Brown0d0cf002008-12-10 14:32:45 +00004524 mutex_lock(&client_mutex);
4525 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004526 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00004527 mutex_unlock(&client_mutex);
4528
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004529 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
4530 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004531
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004532 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004533 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004534 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00004535}
4536EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
4537
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004538/* Retrieve a card's name from device tree */
4539int snd_soc_of_parse_card_name(struct snd_soc_card *card,
4540 const char *propname)
4541{
Tushar Behera7e07e7c2014-07-04 14:23:00 +05304542 struct device_node *np;
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004543 int ret;
4544
Tushar Behera7e07e7c2014-07-04 14:23:00 +05304545 if (!card->dev) {
4546 pr_err("card->dev is not set before calling %s\n", __func__);
4547 return -EINVAL;
4548 }
4549
4550 np = card->dev->of_node;
4551
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004552 ret = of_property_read_string_index(np, propname, 0, &card->name);
4553 /*
4554 * EINVAL means the property does not exist. This is fine providing
4555 * card->name was previously set, which is checked later in
4556 * snd_soc_register_card.
4557 */
4558 if (ret < 0 && ret != -EINVAL) {
4559 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004560 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004561 propname, ret);
4562 return ret;
4563 }
4564
4565 return 0;
4566}
4567EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
4568
Xiubo Li9a6d4862014-02-08 15:59:52 +08004569static const struct snd_soc_dapm_widget simple_widgets[] = {
4570 SND_SOC_DAPM_MIC("Microphone", NULL),
4571 SND_SOC_DAPM_LINE("Line", NULL),
4572 SND_SOC_DAPM_HP("Headphone", NULL),
4573 SND_SOC_DAPM_SPK("Speaker", NULL),
4574};
4575
4576int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
4577 const char *propname)
4578{
4579 struct device_node *np = card->dev->of_node;
4580 struct snd_soc_dapm_widget *widgets;
4581 const char *template, *wname;
4582 int i, j, num_widgets, ret;
4583
4584 num_widgets = of_property_count_strings(np, propname);
4585 if (num_widgets < 0) {
4586 dev_err(card->dev,
4587 "ASoC: Property '%s' does not exist\n", propname);
4588 return -EINVAL;
4589 }
4590 if (num_widgets & 1) {
4591 dev_err(card->dev,
4592 "ASoC: Property '%s' length is not even\n", propname);
4593 return -EINVAL;
4594 }
4595
4596 num_widgets /= 2;
4597 if (!num_widgets) {
4598 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
4599 propname);
4600 return -EINVAL;
4601 }
4602
4603 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
4604 GFP_KERNEL);
4605 if (!widgets) {
4606 dev_err(card->dev,
4607 "ASoC: Could not allocate memory for widgets\n");
4608 return -ENOMEM;
4609 }
4610
4611 for (i = 0; i < num_widgets; i++) {
4612 ret = of_property_read_string_index(np, propname,
4613 2 * i, &template);
4614 if (ret) {
4615 dev_err(card->dev,
4616 "ASoC: Property '%s' index %d read error:%d\n",
4617 propname, 2 * i, ret);
4618 return -EINVAL;
4619 }
4620
4621 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
4622 if (!strncmp(template, simple_widgets[j].name,
4623 strlen(simple_widgets[j].name))) {
4624 widgets[i] = simple_widgets[j];
4625 break;
4626 }
4627 }
4628
4629 if (j >= ARRAY_SIZE(simple_widgets)) {
4630 dev_err(card->dev,
4631 "ASoC: DAPM widget '%s' is not supported\n",
4632 template);
4633 return -EINVAL;
4634 }
4635
4636 ret = of_property_read_string_index(np, propname,
4637 (2 * i) + 1,
4638 &wname);
4639 if (ret) {
4640 dev_err(card->dev,
4641 "ASoC: Property '%s' index %d read error:%d\n",
4642 propname, (2 * i) + 1, ret);
4643 return -EINVAL;
4644 }
4645
4646 widgets[i].name = wname;
4647 }
4648
4649 card->dapm_widgets = widgets;
4650 card->num_dapm_widgets = num_widgets;
4651
4652 return 0;
4653}
4654EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
4655
Xiubo Li89c67852014-02-14 09:34:35 +08004656int snd_soc_of_parse_tdm_slot(struct device_node *np,
4657 unsigned int *slots,
4658 unsigned int *slot_width)
4659{
4660 u32 val;
4661 int ret;
4662
4663 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
4664 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
4665 if (ret)
4666 return ret;
4667
4668 if (slots)
4669 *slots = val;
4670 }
4671
4672 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
4673 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
4674 if (ret)
4675 return ret;
4676
4677 if (slot_width)
4678 *slot_width = val;
4679 }
4680
4681 return 0;
4682}
4683EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
4684
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004685int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
4686 const char *propname)
4687{
4688 struct device_node *np = card->dev->of_node;
4689 int num_routes;
4690 struct snd_soc_dapm_route *routes;
4691 int i, ret;
4692
4693 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08004694 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02004695 dev_err(card->dev,
4696 "ASoC: Property '%s' does not exist or its length is not even\n",
4697 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004698 return -EINVAL;
4699 }
4700 num_routes /= 2;
4701 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004702 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004703 propname);
4704 return -EINVAL;
4705 }
4706
4707 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
4708 GFP_KERNEL);
4709 if (!routes) {
4710 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004711 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004712 return -EINVAL;
4713 }
4714
4715 for (i = 0; i < num_routes; i++) {
4716 ret = of_property_read_string_index(np, propname,
4717 2 * i, &routes[i].sink);
4718 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09004719 dev_err(card->dev,
4720 "ASoC: Property '%s' index %d could not be read: %d\n",
4721 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004722 return -EINVAL;
4723 }
4724 ret = of_property_read_string_index(np, propname,
4725 (2 * i) + 1, &routes[i].source);
4726 if (ret) {
4727 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09004728 "ASoC: Property '%s' index %d could not be read: %d\n",
4729 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004730 return -EINVAL;
4731 }
4732 }
4733
4734 card->num_dapm_routes = num_routes;
4735 card->dapm_routes = routes;
4736
4737 return 0;
4738}
4739EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
4740
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004741unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02004742 const char *prefix,
4743 struct device_node **bitclkmaster,
4744 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004745{
4746 int ret, i;
4747 char prop[128];
4748 unsigned int format = 0;
4749 int bit, frame;
4750 const char *str;
4751 struct {
4752 char *name;
4753 unsigned int val;
4754 } of_fmt_table[] = {
4755 { "i2s", SND_SOC_DAIFMT_I2S },
4756 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
4757 { "left_j", SND_SOC_DAIFMT_LEFT_J },
4758 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
4759 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
4760 { "ac97", SND_SOC_DAIFMT_AC97 },
4761 { "pdm", SND_SOC_DAIFMT_PDM},
4762 { "msb", SND_SOC_DAIFMT_MSB },
4763 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004764 };
4765
4766 if (!prefix)
4767 prefix = "";
4768
4769 /*
4770 * check "[prefix]format = xxx"
4771 * SND_SOC_DAIFMT_FORMAT_MASK area
4772 */
4773 snprintf(prop, sizeof(prop), "%sformat", prefix);
4774 ret = of_property_read_string(np, prop, &str);
4775 if (ret == 0) {
4776 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
4777 if (strcmp(str, of_fmt_table[i].name) == 0) {
4778 format |= of_fmt_table[i].val;
4779 break;
4780 }
4781 }
4782 }
4783
4784 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004785 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004786 * SND_SOC_DAIFMT_CLOCK_MASK area
4787 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004788 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
4789 if (of_get_property(np, prop, NULL))
4790 format |= SND_SOC_DAIFMT_CONT;
4791 else
4792 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004793
4794 /*
4795 * check "[prefix]bitclock-inversion"
4796 * check "[prefix]frame-inversion"
4797 * SND_SOC_DAIFMT_INV_MASK area
4798 */
4799 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
4800 bit = !!of_get_property(np, prop, NULL);
4801
4802 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
4803 frame = !!of_get_property(np, prop, NULL);
4804
4805 switch ((bit << 4) + frame) {
4806 case 0x11:
4807 format |= SND_SOC_DAIFMT_IB_IF;
4808 break;
4809 case 0x10:
4810 format |= SND_SOC_DAIFMT_IB_NF;
4811 break;
4812 case 0x01:
4813 format |= SND_SOC_DAIFMT_NB_IF;
4814 break;
4815 default:
4816 /* SND_SOC_DAIFMT_NB_NF is default */
4817 break;
4818 }
4819
4820 /*
4821 * check "[prefix]bitclock-master"
4822 * check "[prefix]frame-master"
4823 * SND_SOC_DAIFMT_MASTER_MASK area
4824 */
4825 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4826 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02004827 if (bit && bitclkmaster)
4828 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004829
4830 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4831 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02004832 if (frame && framemaster)
4833 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004834
4835 switch ((bit << 4) + frame) {
4836 case 0x11:
4837 format |= SND_SOC_DAIFMT_CBM_CFM;
4838 break;
4839 case 0x10:
4840 format |= SND_SOC_DAIFMT_CBM_CFS;
4841 break;
4842 case 0x01:
4843 format |= SND_SOC_DAIFMT_CBS_CFM;
4844 break;
4845 default:
4846 format |= SND_SOC_DAIFMT_CBS_CFS;
4847 break;
4848 }
4849
4850 return format;
4851}
4852EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4853
Kuninori Morimotocb470082013-09-10 17:39:56 -07004854int snd_soc_of_get_dai_name(struct device_node *of_node,
4855 const char **dai_name)
4856{
4857 struct snd_soc_component *pos;
4858 struct of_phandle_args args;
4859 int ret;
4860
4861 ret = of_parse_phandle_with_args(of_node, "sound-dai",
4862 "#sound-dai-cells", 0, &args);
4863 if (ret)
4864 return ret;
4865
4866 ret = -EPROBE_DEFER;
4867
4868 mutex_lock(&client_mutex);
4869 list_for_each_entry(pos, &component_list, list) {
4870 if (pos->dev->of_node != args.np)
4871 continue;
4872
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004873 if (pos->driver->of_xlate_dai_name) {
4874 ret = pos->driver->of_xlate_dai_name(pos, &args, dai_name);
4875 } else {
4876 int id = -1;
4877
4878 switch (args.args_count) {
4879 case 0:
4880 id = 0; /* same as dai_drv[0] */
4881 break;
4882 case 1:
4883 id = args.args[0];
4884 break;
4885 default:
4886 /* not supported */
4887 break;
4888 }
4889
4890 if (id < 0 || id >= pos->num_dai) {
4891 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08004892 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004893 }
Xiubo Lie41975e2013-12-20 14:39:51 +08004894
4895 ret = 0;
4896
4897 *dai_name = pos->dai_drv[id].name;
4898 if (!*dai_name)
4899 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07004900 }
4901
Kuninori Morimotocb470082013-09-10 17:39:56 -07004902 break;
4903 }
4904 mutex_unlock(&client_mutex);
4905
4906 of_node_put(args.np);
4907
4908 return ret;
4909}
4910EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
4911
Takashi Iwaic9b3a402008-12-10 07:47:22 +01004912static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004913{
Mark Brown384c89e2008-12-03 17:34:03 +00004914#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004915 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
4916 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02004917 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00004918 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00004919 }
Mark Brownc3c5a192010-09-15 18:15:14 +01004920
Mark Brown8a9dab12011-01-10 22:25:21 +00004921 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01004922 &codec_list_fops))
4923 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4924
Mark Brown8a9dab12011-01-10 22:25:21 +00004925 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01004926 &dai_list_fops))
4927 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01004928
Mark Brown8a9dab12011-01-10 22:25:21 +00004929 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01004930 &platform_list_fops))
4931 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00004932#endif
4933
Mark Brownfb257892011-04-28 10:57:54 +01004934 snd_soc_util_init();
4935
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004936 return platform_driver_register(&soc_driver);
4937}
Mark Brown4abe8e12010-10-12 17:41:03 +01004938module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004939
Mark Brown7d8c16a2008-11-30 22:11:24 +00004940static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004941{
Mark Brownfb257892011-04-28 10:57:54 +01004942 snd_soc_util_exit();
4943
Mark Brown384c89e2008-12-03 17:34:03 +00004944#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004945 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00004946#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02004947 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004948}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004949module_exit(snd_soc_exit);
4950
4951/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004952MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004953MODULE_DESCRIPTION("ALSA SoC Core");
4954MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02004955MODULE_ALIAS("platform:soc-audio");