blob: 6e47610f73a09ad367cc6a94ef7b9dd64fc45bad [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{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200295 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
296
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{
328 struct dentry *debugfs_card_root = platform->card->debugfs_card_root;
329
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;
Mark Brown4ac5c612009-04-01 19:35:01 +0100549 codec->ac97->dev.parent = codec->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 Clausenf4333202014-06-16 18:13:02 +0200553 codec->card->snd_card->number, 0, codec->component.name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200554 err = device_register(&codec->ac97->dev);
555 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000556 dev_err(codec->dev, "ASoC: Can't register ac97 bus\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200557 codec->ac97->dev.bus = NULL;
558 return err;
559 }
560 return 0;
561}
562#endif
563
Richard Fitzgerald9d58a072013-08-05 13:17:28 +0100564static void codec2codec_close_delayed_work(struct work_struct *work)
565{
566 /* Currently nothing to do for c2c links
567 * Since c2c links are internal nodes in the DAPM graph and
568 * don't interface with the outside world or application layer
569 * we don't have to do any special handling on close.
570 */
571}
572
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000573#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200574/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000575int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200576{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000577 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200578 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200579 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200580
Daniel Macke3509ff2009-06-03 17:44:49 +0200581 /* If the initialization of this soc device failed, there is no codec
582 * associated with it. Just bail out in this case.
583 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000584 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200585 return 0;
586
Andy Green6ed25972008-06-13 16:24:05 +0100587 /* Due to the resume being scheduled into a workqueue we could
588 * suspend before that's finished - wait for it to complete.
589 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000590 snd_power_lock(card->snd_card);
591 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
592 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100593
594 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000595 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100596
Mark Browna00f90f2010-12-02 16:24:24 +0000597 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000598 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100599
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100601 continue;
602
Benoit Cousson88bd8702014-07-08 23:19:34 +0200603 for (j = 0; j < card->rtd[i].num_codecs; j++) {
604 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
605 struct snd_soc_dai_driver *drv = dai->driver;
606
607 if (drv->ops->digital_mute && dai->playback_active)
608 drv->ops->digital_mute(dai, 1);
609 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200610 }
611
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100612 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000613 for (i = 0; i < card->num_rtd; i++) {
614 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100615 continue;
616
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000617 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100618 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100619
Mark Brown87506542008-11-18 20:50:34 +0000620 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000621 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200622
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000623 for (i = 0; i < card->num_rtd; i++) {
624 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
625 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100626
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000627 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100628 continue;
629
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000630 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
631 cpu_dai->driver->suspend(cpu_dai);
632 if (platform->driver->suspend && !platform->suspended) {
633 platform->driver->suspend(cpu_dai);
634 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100635 }
636 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200637
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000638 /* close any waiting streams and save state */
639 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200640 struct snd_soc_dai **codec_dais = card->rtd[i].codec_dais;
Tejun Heo43829732012-08-20 14:51:24 -0700641 flush_delayed_work(&card->rtd[i].delayed_work);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200642 for (j = 0; j < card->rtd[i].num_codecs; j++) {
643 codec_dais[j]->codec->dapm.suspend_bias_level =
644 codec_dais[j]->codec->dapm.bias_level;
645 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000646 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100647
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000648 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000649
650 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100651 continue;
652
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800653 snd_soc_dapm_stream_event(&card->rtd[i],
654 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800655 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000656
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800657 snd_soc_dapm_stream_event(&card->rtd[i],
658 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800659 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000660 }
661
Mark Browne2d32ff2012-08-31 17:38:32 -0700662 /* Recheck all analogue paths too */
663 dapm_mark_io_dirty(&card->dapm);
664 snd_soc_dapm_sync(&card->dapm);
665
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000666 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200667 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000668 /* If there are paths active then the CODEC will be held with
669 * bias _ON and should not be suspended. */
670 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200671 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000672 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000673 /*
674 * If the CODEC is capable of idle
675 * bias off then being in STANDBY
676 * means it's doing something,
677 * otherwise fall through.
678 */
679 if (codec->dapm.idle_bias_off) {
680 dev_dbg(codec->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200681 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000682 break;
683 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000684 case SND_SOC_BIAS_OFF:
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100685 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000686 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900687 codec->cache_sync = 1;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200688 if (codec->component.regmap)
689 regcache_mark_dirty(codec->component.regmap);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800690 /* deactivate pins to sleep state */
691 pinctrl_pm_select_sleep_state(codec->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000692 break;
693 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200694 dev_dbg(codec->dev,
695 "ASoC: CODEC is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000696 break;
697 }
698 }
699 }
700
701 for (i = 0; i < card->num_rtd; i++) {
702 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
703
704 if (card->rtd[i].dai_link->ignore_suspend)
705 continue;
706
707 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
708 cpu_dai->driver->suspend(cpu_dai);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800709
710 /* deactivate pins to sleep state */
711 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200712 }
713
Mark Brown87506542008-11-18 20:50:34 +0000714 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000715 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200716
717 return 0;
718}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000719EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200720
Andy Green6ed25972008-06-13 16:24:05 +0100721/* deferred resume work, so resume can complete before we finished
722 * setting our codec back up, which can be very slow on I2C
723 */
724static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200725{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000726 struct snd_soc_card *card =
727 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200728 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200729 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200730
Andy Green6ed25972008-06-13 16:24:05 +0100731 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
732 * so userspace apps are blocked from touching us
733 */
734
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000735 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100736
Mark Brown99497882010-05-07 20:24:05 +0100737 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000738 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100739
Mark Brown87506542008-11-18 20:50:34 +0000740 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000741 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200742
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000743 /* resume AC97 DAIs */
744 for (i = 0; i < card->num_rtd; i++) {
745 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100746
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000747 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100748 continue;
749
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000750 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
751 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200752 }
753
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200754 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000755 /* If the CODEC was idle over suspend then it will have been
756 * left with bias OFF or STANDBY and suspended so we must now
757 * resume. Otherwise the suspend was suppressed.
758 */
759 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200760 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000761 case SND_SOC_BIAS_STANDBY:
762 case SND_SOC_BIAS_OFF:
763 codec->driver->resume(codec);
764 codec->suspended = 0;
765 break;
766 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200767 dev_dbg(codec->dev,
768 "ASoC: CODEC was on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000769 break;
770 }
Mark Brown1547aba2010-05-07 21:11:40 +0100771 }
772 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200773
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000774 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100775
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000776 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100777 continue;
778
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800779 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000780 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800781 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000782
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800783 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000784 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800785 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200786 }
787
Mark Brown3ff3f642008-05-19 12:32:25 +0200788 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000789 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100790
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000791 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100792 continue;
793
Benoit Cousson88bd8702014-07-08 23:19:34 +0200794 for (j = 0; j < card->rtd[i].num_codecs; j++) {
795 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
796 struct snd_soc_dai_driver *drv = dai->driver;
797
798 if (drv->ops->digital_mute && dai->playback_active)
799 drv->ops->digital_mute(dai, 0);
800 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200801 }
802
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000803 for (i = 0; i < card->num_rtd; i++) {
804 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
805 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100806
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000807 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100808 continue;
809
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000810 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
811 cpu_dai->driver->resume(cpu_dai);
812 if (platform->driver->resume && platform->suspended) {
813 platform->driver->resume(cpu_dai);
814 platform->suspended = 0;
815 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200816 }
817
Mark Brown87506542008-11-18 20:50:34 +0000818 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000819 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200820
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000821 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100822
823 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000824 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Mark Browne2d32ff2012-08-31 17:38:32 -0700825
826 /* Recheck all analogue paths too */
827 dapm_mark_io_dirty(&card->dapm);
828 snd_soc_dapm_sync(&card->dapm);
Andy Green6ed25972008-06-13 16:24:05 +0100829}
830
831/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000832int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100833{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000834 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600835 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200836
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800837 /* If the initialization of this soc device failed, there is no codec
838 * associated with it. Just bail out in this case.
839 */
840 if (list_empty(&card->codec_dev_list))
841 return 0;
842
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800843 /* activate pins from sleep state */
844 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200845 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
846 struct snd_soc_dai **codec_dais = rtd->codec_dais;
847 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
848 int j;
849
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800850 if (cpu_dai->active)
851 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200852
853 for (j = 0; j < rtd->num_codecs; j++) {
854 struct snd_soc_dai *codec_dai = codec_dais[j];
855 if (codec_dai->active)
856 pinctrl_pm_select_default_state(codec_dai->dev);
857 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800858 }
859
Mark Brown64ab9ba2009-03-31 11:27:03 +0100860 /* AC97 devices might have other drivers hanging off them so
861 * need to resume immediately. Other drivers don't have that
862 * problem and may take a substantial amount of time to resume
863 * due to I/O costs and anti-pop so handle them out of line.
864 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000865 for (i = 0; i < card->num_rtd; i++) {
866 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600867 ac97_control |= cpu_dai->driver->ac97_control;
868 }
869 if (ac97_control) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000870 dev_dbg(dev, "ASoC: Resuming AC97 immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600871 soc_resume_deferred(&card->deferred_resume_work);
872 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000873 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600874 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000875 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100876 }
Andy Green6ed25972008-06-13 16:24:05 +0100877
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200878 return 0;
879}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000880EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200881#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000882#define snd_soc_suspend NULL
883#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200884#endif
885
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100886static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800887};
888
Benoit Cousson88bd8702014-07-08 23:19:34 +0200889static struct snd_soc_codec *soc_find_codec(
890 const struct device_node *codec_of_node,
891 const char *codec_name)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100892{
893 struct snd_soc_codec *codec;
894
895 list_for_each_entry(codec, &codec_list, list) {
896 if (codec_of_node) {
897 if (codec->dev->of_node != codec_of_node)
898 continue;
899 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200900 if (strcmp(codec->component.name, codec_name))
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100901 continue;
902 }
903
904 return codec;
905 }
906
907 return NULL;
908}
909
910static struct snd_soc_dai *soc_find_codec_dai(struct snd_soc_codec *codec,
911 const char *codec_dai_name)
912{
913 struct snd_soc_dai *codec_dai;
914
915 list_for_each_entry(codec_dai, &codec->component.dai_list, list) {
916 if (!strcmp(codec_dai->name, codec_dai_name)) {
917 return codec_dai;
918 }
919 }
920
921 return NULL;
922}
923
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000924static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200925{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000926 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
927 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100928 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200929 struct snd_soc_dai_link_component *codecs = dai_link->codecs;
930 struct snd_soc_dai **codec_dais = rtd->codec_dais;
Mark Brown435c5e22008-12-04 15:32:53 +0000931 struct snd_soc_platform *platform;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100932 struct snd_soc_dai *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100933 const char *platform_name;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200934 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200935
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000936 dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000937
Mark Brownb19e6e72012-03-14 21:18:39 +0000938 /* Find CPU DAI from registered DAIs*/
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100939 list_for_each_entry(component, &component_list, list) {
Stephen Warrenbc926572012-05-25 18:22:11 -0600940 if (dai_link->cpu_of_node &&
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100941 component->dev->of_node != dai_link->cpu_of_node)
Stephen Warrenbc926572012-05-25 18:22:11 -0600942 continue;
943 if (dai_link->cpu_name &&
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100944 strcmp(dev_name(component->dev), dai_link->cpu_name))
Stephen Warrenbc926572012-05-25 18:22:11 -0600945 continue;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100946 list_for_each_entry(cpu_dai, &component->dai_list, list) {
947 if (dai_link->cpu_dai_name &&
948 strcmp(cpu_dai->name, dai_link->cpu_dai_name))
949 continue;
Stephen Warren2610ab72011-12-07 13:58:27 -0700950
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100951 rtd->cpu_dai = cpu_dai;
952 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000953 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000954
955 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000956 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000957 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000958 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000959 }
960
Benoit Cousson88bd8702014-07-08 23:19:34 +0200961 rtd->num_codecs = dai_link->num_codecs;
962
963 /* Find CODEC from registered CODECs */
964 for (i = 0; i < rtd->num_codecs; i++) {
965 struct snd_soc_codec *codec;
966 codec = soc_find_codec(codecs[i].of_node, codecs[i].name);
967 if (!codec) {
968 dev_err(card->dev, "ASoC: CODEC %s not registered\n",
969 codecs[i].name);
970 return -EPROBE_DEFER;
971 }
972
973 codec_dais[i] = soc_find_codec_dai(codec, codecs[i].dai_name);
974 if (!codec_dais[i]) {
975 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
976 codecs[i].dai_name);
977 return -EPROBE_DEFER;
978 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000979 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100980
Benoit Cousson88bd8702014-07-08 23:19:34 +0200981 /* Single codec links expect codec and codec_dai in runtime data */
982 rtd->codec_dai = codec_dais[0];
983 rtd->codec = rtd->codec_dai->codec;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100984
Mark Brown848dd8b2011-04-27 18:16:32 +0100985 /* if there's no platform we match on the empty platform */
986 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700987 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100988 platform_name = "snd-soc-dummy";
989
Mark Brownb19e6e72012-03-14 21:18:39 +0000990 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000991 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700992 if (dai_link->platform_of_node) {
993 if (platform->dev->of_node !=
994 dai_link->platform_of_node)
995 continue;
996 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200997 if (strcmp(platform->component.name, platform_name))
Stephen Warren5a504962011-12-21 10:40:59 -0700998 continue;
999 }
Stephen Warren2610ab72011-12-07 13:58:27 -07001000
1001 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001002 }
Mark Brownb19e6e72012-03-14 21:18:39 +00001003 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001004 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001005 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +00001006 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001007 }
Mark Brownb19e6e72012-03-14 21:18:39 +00001008
1009 card->num_rtd++;
1010
1011 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001012}
1013
Stephen Warrend12cd192012-06-08 12:34:22 -06001014static int soc_remove_platform(struct snd_soc_platform *platform)
1015{
1016 int ret;
1017
1018 if (platform->driver->remove) {
1019 ret = platform->driver->remove(platform);
1020 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001021 dev_err(platform->dev, "ASoC: failed to remove %d\n",
1022 ret);
Stephen Warrend12cd192012-06-08 12:34:22 -06001023 }
1024
1025 /* Make sure all DAPM widgets are freed */
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001026 snd_soc_dapm_free(&platform->component.dapm);
Stephen Warrend12cd192012-06-08 12:34:22 -06001027
1028 soc_cleanup_platform_debugfs(platform);
1029 platform->probed = 0;
1030 list_del(&platform->card_list);
1031 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
1183 codec->card = card;
1184 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
1259 platform->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;
1300 list_add(&platform->card_list, &card->platform_dev_list);
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001301 list_add(&platform->component.dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001302
1303 return 0;
1304
1305err_probe:
Liam Girdwood02db1102012-03-02 16:13:44 +00001306 soc_cleanup_platform_debugfs(platform);
Liam Girdwood956245e2011-07-01 16:54:08 +01001307 module_put(platform->dev->driver->owner);
1308
1309 return ret;
1310}
1311
Mark Brown36ae1a92012-01-06 17:12:45 -08001312static void rtd_release(struct device *dev)
1313{
1314 kfree(dev);
1315}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001316
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001317static int soc_post_component_init(struct snd_soc_pcm_runtime *rtd,
1318 const char *name)
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001319{
Jarkko Nikula589c3562010-12-06 16:27:07 +02001320 int ret = 0;
1321
Jarkko Nikula589c3562010-12-06 16:27:07 +02001322 /* register the rtd device */
Mark Brown36ae1a92012-01-06 17:12:45 -08001323 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1324 if (!rtd->dev)
1325 return -ENOMEM;
1326 device_initialize(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001327 rtd->dev->parent = rtd->card->dev;
Mark Brown36ae1a92012-01-06 17:12:45 -08001328 rtd->dev->release = rtd_release;
1329 rtd->dev->init_name = name;
1330 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001331 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001332 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1333 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1334 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1335 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001336 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001337 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001338 /* calling put_device() here to free the rtd->dev */
1339 put_device(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001340 dev_err(rtd->card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001341 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001342 return ret;
1343 }
1344 rtd->dev_registered = 1;
1345
1346 /* add DAPM sysfs entries for this codec */
Mark Brown36ae1a92012-01-06 17:12:45 -08001347 ret = snd_soc_dapm_sys_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001348 if (ret < 0)
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001349 dev_err(rtd->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001350 "ASoC: failed to add codec dapm sysfs entries: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001351
1352 /* add codec sysfs entries */
Mark Brown36ae1a92012-01-06 17:12:45 -08001353 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001354 if (ret < 0)
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001355 dev_err(rtd->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001356 "ASoC: failed to add codec sysfs files: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001357
1358 return 0;
1359}
1360
Stephen Warren62ae68f2012-06-08 12:34:23 -06001361static int soc_probe_link_components(struct snd_soc_card *card, int num,
1362 int order)
1363{
1364 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1365 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001366 struct snd_soc_platform *platform = rtd->platform;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001367 int i, ret;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001368
1369 /* probe the CPU-side component, if it is a CODEC */
1370 if (cpu_dai->codec &&
1371 !cpu_dai->codec->probed &&
1372 cpu_dai->codec->driver->probe_order == order) {
1373 ret = soc_probe_codec(card, cpu_dai->codec);
1374 if (ret < 0)
1375 return ret;
1376 }
1377
Benoit Cousson88bd8702014-07-08 23:19:34 +02001378 /* probe the CODEC-side components */
1379 for (i = 0; i < rtd->num_codecs; i++) {
1380 if (!rtd->codec_dais[i]->codec->probed &&
1381 rtd->codec_dais[i]->codec->driver->probe_order == order) {
1382 ret = soc_probe_codec(card, rtd->codec_dais[i]->codec);
1383 if (ret < 0)
1384 return ret;
1385 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001386 }
1387
1388 /* probe the platform */
1389 if (!platform->probed &&
1390 platform->driver->probe_order == order) {
1391 ret = soc_probe_platform(card, platform);
1392 if (ret < 0)
1393 return ret;
1394 }
1395
1396 return 0;
1397}
1398
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001399static int soc_probe_codec_dai(struct snd_soc_card *card,
1400 struct snd_soc_dai *codec_dai,
1401 int order)
1402{
1403 int ret;
1404
1405 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
1406 if (codec_dai->driver->probe) {
1407 ret = codec_dai->driver->probe(codec_dai);
1408 if (ret < 0) {
1409 dev_err(codec_dai->dev,
1410 "ASoC: failed to probe CODEC DAI %s: %d\n",
1411 codec_dai->name, ret);
1412 return ret;
1413 }
1414 }
1415
1416 /* mark codec_dai as probed and add to card dai list */
1417 codec_dai->probed = 1;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001418 }
1419
1420 return 0;
1421}
1422
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001423static int soc_link_dai_widgets(struct snd_soc_card *card,
1424 struct snd_soc_dai_link *dai_link,
Benoit Cousson3f901a02014-07-01 09:47:54 +02001425 struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001426{
Benoit Cousson3f901a02014-07-01 09:47:54 +02001427 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1428 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001429 struct snd_soc_dapm_widget *play_w, *capture_w;
1430 int ret;
1431
Benoit Cousson88bd8702014-07-08 23:19:34 +02001432 if (rtd->num_codecs > 1)
1433 dev_warn(card->dev, "ASoC: Multiple codecs not supported yet\n");
1434
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001435 /* link the DAI widgets */
1436 play_w = codec_dai->playback_widget;
1437 capture_w = cpu_dai->capture_widget;
1438 if (play_w && capture_w) {
1439 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1440 capture_w, play_w);
1441 if (ret != 0) {
1442 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1443 play_w->name, capture_w->name, ret);
1444 return ret;
1445 }
1446 }
1447
1448 play_w = cpu_dai->playback_widget;
1449 capture_w = codec_dai->capture_widget;
1450 if (play_w && capture_w) {
1451 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1452 capture_w, play_w);
1453 if (ret != 0) {
1454 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1455 play_w->name, capture_w->name, ret);
1456 return ret;
1457 }
1458 }
1459
1460 return 0;
1461}
1462
Stephen Warren62ae68f2012-06-08 12:34:23 -06001463static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001464{
1465 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1466 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001467 struct snd_soc_platform *platform = rtd->platform;
Mark Brownc74184e2012-04-04 22:12:09 +01001468 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001469 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001470
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001471 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Liam Girdwood0168bf02011-06-07 16:08:05 +01001472 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001473
1474 /* config components */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001475 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001476 cpu_dai->card = card;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001477 for (i = 0; i < rtd->num_codecs; i++)
1478 rtd->codec_dais[i]->card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001479
1480 /* set default power off timeout */
1481 rtd->pmdown_time = pmdown_time;
1482
1483 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001484 if (!cpu_dai->probed &&
1485 cpu_dai->driver->probe_order == order) {
Stephen Warrena9db7db2012-06-08 12:34:20 -06001486 if (!cpu_dai->codec) {
Stephen Warrena9db7db2012-06-08 12:34:20 -06001487 if (!try_module_get(cpu_dai->dev->driver->owner))
1488 return -ENODEV;
Stephen Warrena9db7db2012-06-08 12:34:20 -06001489 }
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001490
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001491 if (cpu_dai->driver->probe) {
1492 ret = cpu_dai->driver->probe(cpu_dai);
1493 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001494 dev_err(cpu_dai->dev,
1495 "ASoC: failed to probe CPU DAI %s: %d\n",
1496 cpu_dai->name, ret);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001497 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001498 return ret;
1499 }
1500 }
1501 cpu_dai->probed = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001502 }
1503
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001504 /* probe the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001505 for (i = 0; i < rtd->num_codecs; i++) {
1506 ret = soc_probe_codec_dai(card, rtd->codec_dais[i], order);
1507 if (ret)
1508 return ret;
1509 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001510
Liam Girdwood0168bf02011-06-07 16:08:05 +01001511 /* complete DAI probe during last probe */
1512 if (order != SND_SOC_COMP_ORDER_LAST)
1513 return 0;
1514
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001515 /* do machine specific initialization */
1516 if (dai_link->init) {
1517 ret = dai_link->init(rtd);
1518 if (ret < 0) {
1519 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1520 dai_link->name, ret);
1521 return ret;
1522 }
1523 }
1524
1525 ret = soc_post_component_init(rtd, dai_link->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001526 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001527 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001528
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001529#ifdef CONFIG_DEBUG_FS
1530 /* add DPCM sysfs entries */
1531 if (dai_link->dynamic) {
1532 ret = soc_dpcm_debugfs_add(rtd);
1533 if (ret < 0) {
1534 dev_err(rtd->dev,
1535 "ASoC: failed to add dpcm sysfs entries: %d\n",
1536 ret);
1537 return ret;
1538 }
1539 }
1540#endif
1541
Mark Brown36ae1a92012-01-06 17:12:45 -08001542 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001543 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001544 dev_warn(rtd->dev, "ASoC: failed to add pmdown_time sysfs: %d\n",
1545 ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001546
Namarta Kohli1245b702012-08-16 17:10:41 +05301547 if (cpu_dai->driver->compress_dai) {
1548 /*create compress_device"*/
1549 ret = soc_new_compress(rtd, num);
Mark Brownc74184e2012-04-04 22:12:09 +01001550 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001551 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301552 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001553 return ret;
1554 }
1555 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301556
1557 if (!dai_link->params) {
1558 /* create the pcm */
1559 ret = soc_new_pcm(rtd, num);
1560 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001561 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301562 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001563 return ret;
1564 }
Namarta Kohli1245b702012-08-16 17:10:41 +05301565 } else {
Richard Fitzgerald9d58a072013-08-05 13:17:28 +01001566 INIT_DELAYED_WORK(&rtd->delayed_work,
1567 codec2codec_close_delayed_work);
1568
Namarta Kohli1245b702012-08-16 17:10:41 +05301569 /* link the DAI widgets */
Benoit Cousson3f901a02014-07-01 09:47:54 +02001570 ret = soc_link_dai_widgets(card, dai_link, rtd);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001571 if (ret)
1572 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01001573 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001574 }
1575
1576 /* add platform data for AC97 devices */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001577 for (i = 0; i < rtd->num_codecs; i++) {
1578 if (rtd->codec_dais[i]->driver->ac97_control)
1579 snd_ac97_dev_add_pdata(rtd->codec_dais[i]->codec->ac97,
1580 rtd->cpu_dai->ac97_pdata);
1581 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001582
1583 return 0;
1584}
1585
1586#ifdef CONFIG_SND_SOC_AC97_BUS
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001587static int soc_register_ac97_codec(struct snd_soc_codec *codec,
1588 struct snd_soc_dai *codec_dai)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001589{
1590 int ret;
1591
1592 /* Only instantiate AC97 if not already done by the adaptor
1593 * for the generic AC97 subsystem.
1594 */
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001595 if (codec_dai->driver->ac97_control && !codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001596 /*
1597 * It is possible that the AC97 device is already registered to
1598 * the device subsystem. This happens when the device is created
1599 * via snd_ac97_mixer(). Currently only SoC codec that does so
1600 * is the generic AC97 glue but others migh emerge.
1601 *
1602 * In those cases we don't try to register the device again.
1603 */
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001604 if (!codec->ac97_created)
Mika Westerberg0562f782010-10-13 11:30:32 +03001605 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001606
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001607 ret = soc_ac97_dev_register(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001608 if (ret < 0) {
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001609 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001610 "ASoC: AC97 device register failed: %d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001611 return ret;
1612 }
1613
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001614 codec->ac97_registered = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001615 }
1616 return 0;
1617}
1618
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001619static void soc_unregister_ac97_codec(struct snd_soc_codec *codec)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001620{
1621 if (codec->ac97_registered) {
1622 soc_ac97_dev_unregister(codec);
1623 codec->ac97_registered = 0;
1624 }
1625}
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001626
Benoit Cousson88bd8702014-07-08 23:19:34 +02001627static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1628{
1629 int i, ret;
1630
1631 for (i = 0; i < rtd->num_codecs; i++) {
1632 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
1633
1634 ret = soc_register_ac97_codec(codec_dai->codec, codec_dai);
1635 if (ret) {
1636 while (--i >= 0)
1637 soc_unregister_ac97_codec(codec_dai->codec);
1638 return ret;
1639 }
1640 }
1641
1642 return 0;
1643}
1644
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001645static void soc_unregister_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1646{
Benoit Cousson88bd8702014-07-08 23:19:34 +02001647 int i;
1648
1649 for (i = 0; i < rtd->num_codecs; i++)
1650 soc_unregister_ac97_codec(rtd->codec_dais[i]->codec);
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001651}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001652#endif
1653
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001654static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
Mark Brownb19e6e72012-03-14 21:18:39 +00001655{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001656 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001657 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1658 const char *codecname = aux_dev->codec_name;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001659
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001660 rtd->codec = soc_find_codec(aux_dev->codec_of_node, codecname);
1661 if (!rtd->codec) {
1662 if (aux_dev->codec_of_node)
1663 codecname = of_node_full_name(aux_dev->codec_of_node);
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001664
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001665 dev_err(card->dev, "ASoC: %s not registered\n", codecname);
1666 return -EPROBE_DEFER;
1667 }
1668
1669 return 0;
Mark Brownb19e6e72012-03-14 21:18:39 +00001670}
1671
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001672static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1673{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001674 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001675 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001676 int ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001677
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001678 if (rtd->codec->probed) {
1679 dev_err(rtd->codec->dev, "ASoC: codec already probed\n");
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001680 return -EBUSY;
1681 }
1682
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001683 ret = soc_probe_codec(card, rtd->codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001684 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001685 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001686
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001687 /* do machine specific initialization */
1688 if (aux_dev->init) {
1689 ret = aux_dev->init(&rtd->codec->dapm);
1690 if (ret < 0) {
1691 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1692 aux_dev->name, ret);
1693 return ret;
1694 }
1695 }
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001696
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001697 return soc_post_component_init(rtd, aux_dev->name);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001698}
1699
1700static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1701{
1702 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1703 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001704
1705 /* unregister the rtd device */
1706 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001707 device_remove_file(rtd->dev, &dev_attr_codec_reg);
Chuansheng Liud3bf1562012-12-26 00:57:32 +08001708 device_unregister(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001709 rtd->dev_registered = 0;
1710 }
1711
Jarkko Nikula589c3562010-12-06 16:27:07 +02001712 if (codec && codec->probed)
1713 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001714}
1715
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001716static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001717{
1718 int ret;
1719
1720 if (codec->cache_init)
1721 return 0;
1722
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001723 ret = snd_soc_cache_init(codec);
1724 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001725 dev_err(codec->dev,
1726 "ASoC: Failed to set cache compression type: %d\n",
1727 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001728 return ret;
1729 }
1730 codec->cache_init = 1;
1731 return 0;
1732}
1733
Mark Brownb19e6e72012-03-14 21:18:39 +00001734static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001735{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001736 struct snd_soc_codec *codec;
Mark Brown75d9ac42011-09-27 16:41:01 +01001737 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001738 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001739
Liam Girdwood01b9d992012-03-07 10:38:25 +00001740 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001741
Mark Brownb19e6e72012-03-14 21:18:39 +00001742 /* bind DAIs */
1743 for (i = 0; i < card->num_links; i++) {
1744 ret = soc_bind_dai_link(card, i);
1745 if (ret != 0)
1746 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001747 }
1748
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001749 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00001750 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001751 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00001752 if (ret != 0)
1753 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001754 }
1755
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001756 /* initialize the register cache for each available codec */
1757 list_for_each_entry(codec, &codec_list, list) {
1758 if (codec->cache_init)
1759 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001760 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001761 if (ret < 0)
1762 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001763 }
1764
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001765 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01001766 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001767 card->owner, 0, &card->snd_card);
1768 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001769 dev_err(card->dev,
1770 "ASoC: can't create sound card for card %s: %d\n",
1771 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001772 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001773 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001774
Mark Browne37a4972011-03-02 18:21:57 +00001775 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1776 card->dapm.dev = card->dev;
1777 card->dapm.card = card;
1778 list_add(&card->dapm.list, &card->dapm_list);
1779
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001780#ifdef CONFIG_DEBUG_FS
1781 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1782#endif
1783
Mark Brown88ee1c62011-02-02 10:43:26 +00001784#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001785 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001786 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001787#endif
Andy Green6ed25972008-06-13 16:24:05 +01001788
Mark Brown9a841eb2011-04-12 17:51:37 -07001789 if (card->dapm_widgets)
1790 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1791 card->num_dapm_widgets);
1792
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001793 /* initialise the sound card only once */
1794 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001795 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001796 if (ret < 0)
1797 goto card_probe_error;
1798 }
1799
Stephen Warren62ae68f2012-06-08 12:34:23 -06001800 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001801 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1802 order++) {
1803 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001804 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001805 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001806 dev_err(card->dev,
1807 "ASoC: failed to instantiate card %d\n",
1808 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001809 goto probe_dai_err;
1810 }
1811 }
1812 }
1813
1814 /* probe all DAI links on this card */
1815 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1816 order++) {
1817 for (i = 0; i < card->num_links; i++) {
1818 ret = soc_probe_link_dais(card, i, order);
1819 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001820 dev_err(card->dev,
1821 "ASoC: failed to instantiate card %d\n",
1822 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001823 goto probe_dai_err;
1824 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001825 }
1826 }
1827
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001828 for (i = 0; i < card->num_aux_devs; i++) {
1829 ret = soc_probe_aux_dev(card, i);
1830 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001831 dev_err(card->dev,
1832 "ASoC: failed to add auxiliary devices %d\n",
1833 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001834 goto probe_aux_dev_err;
1835 }
1836 }
1837
Mark Brown888df392012-02-16 19:37:51 -08001838 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00001839 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08001840
Mark Brownb7af1da2011-04-07 19:18:44 +09001841 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001842 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001843
Mark Brownb8ad29d2011-03-02 18:35:51 +00001844 if (card->dapm_routes)
1845 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1846 card->num_dapm_routes);
1847
Mark Brown75d9ac42011-09-27 16:41:01 +01001848 for (i = 0; i < card->num_links; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001849 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Mark Brown75d9ac42011-09-27 16:41:01 +01001850 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001851 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001852
Mark Brownf04209a2012-04-09 16:29:21 +01001853 if (dai_fmt) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001854 struct snd_soc_dai **codec_dais = rtd->codec_dais;
1855 int j;
1856
1857 for (j = 0; j < rtd->num_codecs; j++) {
1858 struct snd_soc_dai *codec_dai = codec_dais[j];
1859
1860 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1861 if (ret != 0 && ret != -ENOTSUPP)
1862 dev_warn(codec_dai->dev,
1863 "ASoC: Failed to set DAI format: %d\n",
1864 ret);
1865 }
Mark Brownf04209a2012-04-09 16:29:21 +01001866 }
1867
1868 /* If this is a regular CPU link there will be a platform */
Stephen Warrenfe33d4c2012-05-14 14:47:22 -06001869 if (dai_fmt &&
1870 (dai_link->platform_name || dai_link->platform_of_node)) {
Mark Brownf04209a2012-04-09 16:29:21 +01001871 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1872 dai_fmt);
1873 if (ret != 0 && ret != -ENOTSUPP)
1874 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001875 "ASoC: Failed to set DAI format: %d\n",
Mark Brownf04209a2012-04-09 16:29:21 +01001876 ret);
1877 } else if (dai_fmt) {
1878 /* Flip the polarity for the "CPU" end */
1879 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1880 switch (dai_link->dai_fmt &
1881 SND_SOC_DAIFMT_MASTER_MASK) {
1882 case SND_SOC_DAIFMT_CBM_CFM:
1883 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1884 break;
1885 case SND_SOC_DAIFMT_CBM_CFS:
1886 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1887 break;
1888 case SND_SOC_DAIFMT_CBS_CFM:
1889 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1890 break;
1891 case SND_SOC_DAIFMT_CBS_CFS:
1892 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1893 break;
1894 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001895
1896 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001897 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001898 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001899 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001900 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001901 ret);
1902 }
1903 }
1904
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001905 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001906 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001907 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1908 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001909 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1910 "%s", card->driver_name ? card->driver_name : card->name);
1911 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1912 switch (card->snd_card->driver[i]) {
1913 case '_':
1914 case '-':
1915 case '\0':
1916 break;
1917 default:
1918 if (!isalnum(card->snd_card->driver[i]))
1919 card->snd_card->driver[i] = '_';
1920 break;
1921 }
1922 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001923
Mark Brown28e9ad92011-03-02 18:36:34 +00001924 if (card->late_probe) {
1925 ret = card->late_probe(card);
1926 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001927 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001928 card->name, ret);
1929 goto probe_aux_dev_err;
1930 }
1931 }
1932
Stephen Warren16332812011-11-23 12:42:04 -07001933 if (card->fully_routed)
Lars-Peter Clausen7df37882014-06-16 18:13:04 +02001934 snd_soc_dapm_auto_nc_pins(card);
Stephen Warren16332812011-11-23 12:42:04 -07001935
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001936 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001937
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001938 ret = snd_card_register(card->snd_card);
1939 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001940 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1941 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001942 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001943 }
1944
1945#ifdef CONFIG_SND_SOC_AC97_BUS
1946 /* register any AC97 codecs */
1947 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001948 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1949 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001950 dev_err(card->dev,
1951 "ASoC: failed to register AC97: %d\n", ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001952 while (--i >= 0)
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001953 soc_unregister_ac97_dai_link(&card->rtd[i]);
Axel Lin6b3ed782010-12-07 16:12:29 +08001954 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001955 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001956 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001957#endif
1958
Mark Brown435c5e22008-12-04 15:32:53 +00001959 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001960 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001961 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001962
1963 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001964
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001965probe_aux_dev_err:
1966 for (i = 0; i < card->num_aux_devs; i++)
1967 soc_remove_aux_dev(card, i);
1968
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001969probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001970 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001971
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001972card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001973 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001974 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001975
1976 snd_card_free(card->snd_card);
1977
Mark Brownb19e6e72012-03-14 21:18:39 +00001978base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001979 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001980
Mark Brownb19e6e72012-03-14 21:18:39 +00001981 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001982}
1983
1984/* probes a new socdev */
1985static int soc_probe(struct platform_device *pdev)
1986{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001987 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001988
Vinod Koul70a7ca32011-01-14 19:22:48 +05301989 /*
1990 * no card, so machine driver should be registering card
1991 * we should not be here in that case so ret error
1992 */
1993 if (!card)
1994 return -EINVAL;
1995
Mark Brownfe4085e2012-03-02 13:07:41 +00001996 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001997 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001998 card->name);
1999
Mark Brown435c5e22008-12-04 15:32:53 +00002000 /* Bodge while we unpick instantiation */
2001 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002002
Mark Brown28d528c2012-08-09 18:45:23 +01002003 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002004}
2005
Vinod Koulb0e26482011-01-13 22:48:02 +05302006static int soc_cleanup_card_resources(struct snd_soc_card *card)
2007{
Vinod Koulb0e26482011-01-13 22:48:02 +05302008 int i;
2009
2010 /* make sure any delayed work runs */
2011 for (i = 0; i < card->num_rtd; i++) {
2012 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07002013 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05302014 }
2015
2016 /* remove auxiliary devices */
2017 for (i = 0; i < card->num_aux_devs; i++)
2018 soc_remove_aux_dev(card, i);
2019
2020 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09002021 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302022
2023 soc_cleanup_card_debugfs(card);
2024
2025 /* remove the card */
2026 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002027 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302028
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02002029 snd_soc_dapm_free(&card->dapm);
2030
Vinod Koulb0e26482011-01-13 22:48:02 +05302031 snd_card_free(card->snd_card);
2032 return 0;
2033
2034}
2035
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002036/* removes a socdev */
2037static int soc_remove(struct platform_device *pdev)
2038{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002039 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002040
Mark Brownc5af3a22008-11-28 13:29:45 +00002041 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002042 return 0;
2043}
2044
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002045int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01002046{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002047 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002048 int i;
Mark Brown51737472009-06-22 13:16:51 +01002049
2050 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01002051 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002052
2053 /* Flush out pmdown_time work - we actually do want to run it
2054 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002055 for (i = 0; i < card->num_rtd; i++) {
2056 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07002057 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002058 }
Mark Brown51737472009-06-22 13:16:51 +01002059
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002060 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01002061
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002062 /* deactivate pins to sleep state */
2063 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002064 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2065 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2066 int j;
2067
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002068 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +02002069 for (j = 0; j < rtd->num_codecs; j++) {
2070 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2071 pinctrl_pm_select_sleep_state(codec_dai->dev);
2072 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002073 }
2074
Mark Brown416356f2009-06-30 19:05:15 +01002075 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002076}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002077EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01002078
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002079const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05302080 .suspend = snd_soc_suspend,
2081 .resume = snd_soc_resume,
2082 .freeze = snd_soc_suspend,
2083 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002084 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05302085 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01002086};
Stephen Warrendeb26072011-04-05 19:35:30 -06002087EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01002088
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002089/* ASoC platform driver */
2090static struct platform_driver soc_driver = {
2091 .driver = {
2092 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02002093 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002094 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002095 },
2096 .probe = soc_probe,
2097 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002098};
2099
Mark Brown096e49d2009-07-05 15:12:22 +01002100/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002101 * snd_soc_new_ac97_codec - initailise AC97 device
2102 * @codec: audio codec
2103 * @ops: AC97 bus operations
2104 * @num: AC97 codec number
2105 *
2106 * Initialises AC97 codec resources for use by ad-hoc devices only.
2107 */
2108int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2109 struct snd_ac97_bus_ops *ops, int num)
2110{
2111 mutex_lock(&codec->mutex);
2112
2113 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2114 if (codec->ac97 == NULL) {
2115 mutex_unlock(&codec->mutex);
2116 return -ENOMEM;
2117 }
2118
2119 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2120 if (codec->ac97->bus == NULL) {
2121 kfree(codec->ac97);
2122 codec->ac97 = NULL;
2123 mutex_unlock(&codec->mutex);
2124 return -ENOMEM;
2125 }
2126
2127 codec->ac97->bus->ops = ops;
2128 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002129
2130 /*
2131 * Mark the AC97 device to be created by us. This way we ensure that the
2132 * device will be registered with the device subsystem later on.
2133 */
2134 codec->ac97_created = 1;
2135
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002136 mutex_unlock(&codec->mutex);
2137 return 0;
2138}
2139EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2140
Markus Pargmann741a5092013-08-19 17:05:55 +02002141static struct snd_ac97_reset_cfg snd_ac97_rst_cfg;
2142
2143static void snd_soc_ac97_warm_reset(struct snd_ac97 *ac97)
2144{
2145 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2146
2147 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_warm_reset);
2148
2149 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 1);
2150
2151 udelay(10);
2152
2153 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2154
2155 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2156 msleep(2);
2157}
2158
2159static void snd_soc_ac97_reset(struct snd_ac97 *ac97)
2160{
2161 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2162
2163 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_reset);
2164
2165 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2166 gpio_direction_output(snd_ac97_rst_cfg.gpio_sdata, 0);
2167 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 0);
2168
2169 udelay(10);
2170
2171 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 1);
2172
2173 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2174 msleep(2);
2175}
2176
2177static int snd_soc_ac97_parse_pinctl(struct device *dev,
2178 struct snd_ac97_reset_cfg *cfg)
2179{
2180 struct pinctrl *p;
2181 struct pinctrl_state *state;
2182 int gpio;
2183 int ret;
2184
2185 p = devm_pinctrl_get(dev);
2186 if (IS_ERR(p)) {
2187 dev_err(dev, "Failed to get pinctrl\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002188 return PTR_ERR(p);
Markus Pargmann741a5092013-08-19 17:05:55 +02002189 }
2190 cfg->pctl = p;
2191
2192 state = pinctrl_lookup_state(p, "ac97-reset");
2193 if (IS_ERR(state)) {
2194 dev_err(dev, "Can't find pinctrl state ac97-reset\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002195 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002196 }
2197 cfg->pstate_reset = state;
2198
2199 state = pinctrl_lookup_state(p, "ac97-warm-reset");
2200 if (IS_ERR(state)) {
2201 dev_err(dev, "Can't find pinctrl state ac97-warm-reset\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002202 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002203 }
2204 cfg->pstate_warm_reset = state;
2205
2206 state = pinctrl_lookup_state(p, "ac97-running");
2207 if (IS_ERR(state)) {
2208 dev_err(dev, "Can't find pinctrl state ac97-running\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002209 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002210 }
2211 cfg->pstate_run = state;
2212
2213 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 0);
2214 if (gpio < 0) {
2215 dev_err(dev, "Can't find ac97-sync gpio\n");
2216 return gpio;
2217 }
2218 ret = devm_gpio_request(dev, gpio, "AC97 link sync");
2219 if (ret) {
2220 dev_err(dev, "Failed requesting ac97-sync gpio\n");
2221 return ret;
2222 }
2223 cfg->gpio_sync = gpio;
2224
2225 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 1);
2226 if (gpio < 0) {
2227 dev_err(dev, "Can't find ac97-sdata gpio %d\n", gpio);
2228 return gpio;
2229 }
2230 ret = devm_gpio_request(dev, gpio, "AC97 link sdata");
2231 if (ret) {
2232 dev_err(dev, "Failed requesting ac97-sdata gpio\n");
2233 return ret;
2234 }
2235 cfg->gpio_sdata = gpio;
2236
2237 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 2);
2238 if (gpio < 0) {
2239 dev_err(dev, "Can't find ac97-reset gpio\n");
2240 return gpio;
2241 }
2242 ret = devm_gpio_request(dev, gpio, "AC97 link reset");
2243 if (ret) {
2244 dev_err(dev, "Failed requesting ac97-reset gpio\n");
2245 return ret;
2246 }
2247 cfg->gpio_reset = gpio;
2248
2249 return 0;
2250}
2251
Mark Brownb047e1c2013-06-26 12:45:59 +01002252struct snd_ac97_bus_ops *soc_ac97_ops;
Kevin Hilmanf74b5e22013-06-28 11:17:49 -07002253EXPORT_SYMBOL_GPL(soc_ac97_ops);
Mark Brownb047e1c2013-06-26 12:45:59 +01002254
2255int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
2256{
2257 if (ops == soc_ac97_ops)
2258 return 0;
2259
2260 if (soc_ac97_ops && ops)
2261 return -EBUSY;
2262
2263 soc_ac97_ops = ops;
2264
2265 return 0;
2266}
2267EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops);
2268
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002269/**
Markus Pargmann741a5092013-08-19 17:05:55 +02002270 * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
2271 *
2272 * This function sets the reset and warm_reset properties of ops and parses
2273 * the device node of pdev to get pinctrl states and gpio numbers to use.
2274 */
2275int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
2276 struct platform_device *pdev)
2277{
2278 struct device *dev = &pdev->dev;
2279 struct snd_ac97_reset_cfg cfg;
2280 int ret;
2281
2282 ret = snd_soc_ac97_parse_pinctl(dev, &cfg);
2283 if (ret)
2284 return ret;
2285
2286 ret = snd_soc_set_ac97_ops(ops);
2287 if (ret)
2288 return ret;
2289
2290 ops->warm_reset = snd_soc_ac97_warm_reset;
2291 ops->reset = snd_soc_ac97_reset;
2292
2293 snd_ac97_rst_cfg = cfg;
2294 return 0;
2295}
2296EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset);
2297
2298/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002299 * snd_soc_free_ac97_codec - free AC97 codec device
2300 * @codec: audio codec
2301 *
2302 * Frees AC97 codec device resources.
2303 */
2304void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2305{
2306 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002307#ifdef CONFIG_SND_SOC_AC97_BUS
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01002308 soc_unregister_ac97_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002309#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002310 kfree(codec->ac97->bus);
2311 kfree(codec->ac97);
2312 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002313 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002314 mutex_unlock(&codec->mutex);
2315}
2316EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2317
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002318/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002319 * snd_soc_cnew - create new control
2320 * @_template: control template
2321 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002322 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002323 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002324 *
2325 * Create a new mixer control from a template control.
2326 *
2327 * Returns 0 for success, else error.
2328 */
2329struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002330 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002331 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002332{
2333 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002334 struct snd_kcontrol *kcontrol;
2335 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002336
2337 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002338 template.index = 0;
2339
Mark Brownefb7ac32011-03-08 17:23:24 +00002340 if (!long_name)
2341 long_name = template.name;
2342
2343 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02002344 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00002345 if (!name)
2346 return NULL;
2347
Mark Brownefb7ac32011-03-08 17:23:24 +00002348 template.name = name;
2349 } else {
2350 template.name = long_name;
2351 }
2352
2353 kcontrol = snd_ctl_new1(&template, data);
2354
2355 kfree(name);
2356
2357 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002358}
2359EXPORT_SYMBOL_GPL(snd_soc_cnew);
2360
Liam Girdwood022658b2012-02-03 17:43:09 +00002361static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2362 const struct snd_kcontrol_new *controls, int num_controls,
2363 const char *prefix, void *data)
2364{
2365 int err, i;
2366
2367 for (i = 0; i < num_controls; i++) {
2368 const struct snd_kcontrol_new *control = &controls[i];
2369 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2370 control->name, prefix));
2371 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002372 dev_err(dev, "ASoC: Failed to add %s: %d\n",
2373 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00002374 return err;
2375 }
2376 }
2377
2378 return 0;
2379}
2380
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01002381struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2382 const char *name)
2383{
2384 struct snd_card *card = soc_card->snd_card;
2385 struct snd_kcontrol *kctl;
2386
2387 if (unlikely(!name))
2388 return NULL;
2389
2390 list_for_each_entry(kctl, &card->controls, list)
2391 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2392 return kctl;
2393 return NULL;
2394}
2395EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2396
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002397/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002398 * snd_soc_add_codec_controls - add an array of controls to a codec.
2399 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002400 * duplicating this code.
2401 *
2402 * @codec: codec to add controls to
2403 * @controls: array of controls to add
2404 * @num_controls: number of elements in the array
2405 *
2406 * Return 0 for success, else error.
2407 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002408int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Ian Molton3e8e1952009-01-09 00:23:21 +00002409 const struct snd_kcontrol_new *controls, int num_controls)
2410{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002411 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002412
Liam Girdwood022658b2012-02-03 17:43:09 +00002413 return snd_soc_add_controls(card, codec->dev, controls, num_controls,
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002414 codec->component.name_prefix, &codec->component);
Ian Molton3e8e1952009-01-09 00:23:21 +00002415}
Liam Girdwood022658b2012-02-03 17:43:09 +00002416EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002417
2418/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002419 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002420 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002421 *
2422 * @platform: platform to add controls to
2423 * @controls: array of controls to add
2424 * @num_controls: number of elements in the array
2425 *
2426 * Return 0 for success, else error.
2427 */
2428int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2429 const struct snd_kcontrol_new *controls, int num_controls)
2430{
2431 struct snd_card *card = platform->card->snd_card;
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002432
Liam Girdwood022658b2012-02-03 17:43:09 +00002433 return snd_soc_add_controls(card, platform->dev, controls, num_controls,
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002434 NULL, &platform->component);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002435}
2436EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2437
2438/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002439 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2440 * Convenience function to add a list of controls.
2441 *
2442 * @soc_card: SoC card to add controls to
2443 * @controls: array of controls to add
2444 * @num_controls: number of elements in the array
2445 *
2446 * Return 0 for success, else error.
2447 */
2448int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2449 const struct snd_kcontrol_new *controls, int num_controls)
2450{
2451 struct snd_card *card = soc_card->snd_card;
2452
2453 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2454 NULL, soc_card);
2455}
2456EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2457
2458/**
2459 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2460 * Convienience function to add a list of controls.
2461 *
2462 * @dai: DAI to add controls to
2463 * @controls: array of controls to add
2464 * @num_controls: number of elements in the array
2465 *
2466 * Return 0 for success, else error.
2467 */
2468int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2469 const struct snd_kcontrol_new *controls, int num_controls)
2470{
2471 struct snd_card *card = dai->card->snd_card;
2472
2473 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2474 NULL, dai);
2475}
2476EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2477
2478/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002479 * snd_soc_info_enum_double - enumerated double mixer info callback
2480 * @kcontrol: mixer control
2481 * @uinfo: control element information
2482 *
2483 * Callback to provide information about a double enumerated
2484 * mixer control.
2485 *
2486 * Returns 0 for success.
2487 */
2488int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2489 struct snd_ctl_elem_info *uinfo)
2490{
2491 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2492
2493 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2494 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Takashi Iwai9a8d38d2014-02-18 08:11:42 +01002495 uinfo->value.enumerated.items = e->items;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002496
Takashi Iwai9a8d38d2014-02-18 08:11:42 +01002497 if (uinfo->value.enumerated.item >= e->items)
2498 uinfo->value.enumerated.item = e->items - 1;
Takashi Iwaia19685c2013-10-28 14:21:46 +01002499 strlcpy(uinfo->value.enumerated.name,
2500 e->texts[uinfo->value.enumerated.item],
2501 sizeof(uinfo->value.enumerated.name));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002502 return 0;
2503}
2504EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2505
2506/**
2507 * snd_soc_get_enum_double - enumerated double mixer get callback
2508 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002509 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002510 *
2511 * Callback to get the value of a double enumerated mixer.
2512 *
2513 * Returns 0 for success.
2514 */
2515int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2516 struct snd_ctl_elem_value *ucontrol)
2517{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002518 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002519 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002520 unsigned int val, item;
2521 unsigned int reg_val;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002522 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002523
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002524 ret = snd_soc_component_read(component, e->reg, &reg_val);
2525 if (ret)
2526 return ret;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002527 val = (reg_val >> e->shift_l) & e->mask;
2528 item = snd_soc_enum_val_to_item(e, val);
2529 ucontrol->value.enumerated.item[0] = item;
2530 if (e->shift_l != e->shift_r) {
2531 val = (reg_val >> e->shift_l) & e->mask;
2532 item = snd_soc_enum_val_to_item(e, val);
2533 ucontrol->value.enumerated.item[1] = item;
2534 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002535
2536 return 0;
2537}
2538EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2539
2540/**
2541 * snd_soc_put_enum_double - enumerated double mixer put callback
2542 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002543 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002544 *
2545 * Callback to set the value of a double enumerated mixer.
2546 *
2547 * Returns 0 for success.
2548 */
2549int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2550 struct snd_ctl_elem_value *ucontrol)
2551{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002552 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002553 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002554 unsigned int *item = ucontrol->value.enumerated.item;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002555 unsigned int val;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002556 unsigned int mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002557
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002558 if (item[0] >= e->items)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002559 return -EINVAL;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002560 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002561 mask = e->mask << e->shift_l;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002562 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002563 if (item[1] >= e->items)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002564 return -EINVAL;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002565 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002566 mask |= e->mask << e->shift_r;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002567 }
2568
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002569 return snd_soc_component_update_bits(component, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002570}
2571EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2572
2573/**
Markus Pargmannf227b882014-01-16 16:02:10 +01002574 * snd_soc_read_signed - Read a codec register and interprete as signed value
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002575 * @component: component
Markus Pargmannf227b882014-01-16 16:02:10 +01002576 * @reg: Register to read
2577 * @mask: Mask to use after shifting the register value
2578 * @shift: Right shift of register value
2579 * @sign_bit: Bit that describes if a number is negative or not.
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002580 * @signed_val: Pointer to where the read value should be stored
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002581 *
Markus Pargmannf227b882014-01-16 16:02:10 +01002582 * This functions reads a codec register. The register value is shifted right
2583 * by 'shift' bits and masked with the given 'mask'. Afterwards it translates
2584 * the given registervalue into a signed integer if sign_bit is non-zero.
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002585 *
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002586 * Returns 0 on sucess, otherwise an error value
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002587 */
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002588static int snd_soc_read_signed(struct snd_soc_component *component,
2589 unsigned int reg, unsigned int mask, unsigned int shift,
2590 unsigned int sign_bit, int *signed_val)
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002591{
Markus Pargmannf227b882014-01-16 16:02:10 +01002592 int ret;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002593 unsigned int val;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002594
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002595 ret = snd_soc_component_read(component, reg, &val);
2596 if (ret < 0)
2597 return ret;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002598
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002599 val = (val >> shift) & mask;
2600
2601 if (!sign_bit) {
2602 *signed_val = val;
2603 return 0;
2604 }
Markus Pargmannf227b882014-01-16 16:02:10 +01002605
2606 /* non-negative number */
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002607 if (!(val & BIT(sign_bit))) {
2608 *signed_val = val;
2609 return 0;
2610 }
Markus Pargmannf227b882014-01-16 16:02:10 +01002611
2612 ret = val;
2613
2614 /*
2615 * The register most probably does not contain a full-sized int.
2616 * Instead we have an arbitrary number of bits in a signed
2617 * representation which has to be translated into a full-sized int.
2618 * This is done by filling up all bits above the sign-bit.
2619 */
2620 ret |= ~((int)(BIT(sign_bit) - 1));
2621
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002622 *signed_val = ret;
2623
2624 return 0;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002625}
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002626
2627/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002628 * snd_soc_info_volsw - single mixer info callback
2629 * @kcontrol: mixer control
2630 * @uinfo: control element information
2631 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002632 * Callback to provide information about a single mixer control, or a double
2633 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002634 *
2635 * Returns 0 for success.
2636 */
2637int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2638 struct snd_ctl_elem_info *uinfo)
2639{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002640 struct soc_mixer_control *mc =
2641 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002642 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002643
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002644 if (!mc->platform_max)
2645 mc->platform_max = mc->max;
2646 platform_max = mc->platform_max;
2647
2648 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002649 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2650 else
2651 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2652
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002653 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002654 uinfo->value.integer.min = 0;
Markus Pargmannf227b882014-01-16 16:02:10 +01002655 uinfo->value.integer.max = platform_max - mc->min;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002656 return 0;
2657}
2658EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2659
2660/**
2661 * snd_soc_get_volsw - single mixer get callback
2662 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002663 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002664 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002665 * Callback to get the value of a single mixer control, or a double mixer
2666 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002667 *
2668 * Returns 0 for success.
2669 */
2670int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2671 struct snd_ctl_elem_value *ucontrol)
2672{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002673 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl4eaa9812008-07-29 11:42:26 +01002674 struct soc_mixer_control *mc =
2675 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002676 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002677 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002678 unsigned int shift = mc->shift;
2679 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002680 int max = mc->max;
Markus Pargmannf227b882014-01-16 16:02:10 +01002681 int min = mc->min;
2682 int sign_bit = mc->sign_bit;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002683 unsigned int mask = (1 << fls(max)) - 1;
2684 unsigned int invert = mc->invert;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002685 int val;
2686 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002687
Markus Pargmannf227b882014-01-16 16:02:10 +01002688 if (sign_bit)
2689 mask = BIT(sign_bit + 1) - 1;
2690
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002691 ret = snd_soc_read_signed(component, reg, mask, shift, sign_bit, &val);
2692 if (ret)
2693 return ret;
2694
2695 ucontrol->value.integer.value[0] = val - min;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002696 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002697 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002698 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002699
2700 if (snd_soc_volsw_is_stereo(mc)) {
2701 if (reg == reg2)
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002702 ret = snd_soc_read_signed(component, reg, mask, rshift,
2703 sign_bit, &val);
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002704 else
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002705 ret = snd_soc_read_signed(component, reg2, mask, shift,
2706 sign_bit, &val);
2707 if (ret)
2708 return ret;
2709
2710 ucontrol->value.integer.value[1] = val - min;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002711 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002712 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002713 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002714 }
2715
2716 return 0;
2717}
2718EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2719
2720/**
2721 * snd_soc_put_volsw - single mixer put callback
2722 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002723 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002724 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002725 * Callback to set the value of a single mixer control, or a double mixer
2726 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002727 *
2728 * Returns 0 for success.
2729 */
2730int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2731 struct snd_ctl_elem_value *ucontrol)
2732{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002733 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl4eaa9812008-07-29 11:42:26 +01002734 struct soc_mixer_control *mc =
2735 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002736 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002737 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002738 unsigned int shift = mc->shift;
2739 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002740 int max = mc->max;
Markus Pargmannf227b882014-01-16 16:02:10 +01002741 int min = mc->min;
2742 unsigned int sign_bit = mc->sign_bit;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002743 unsigned int mask = (1 << fls(max)) - 1;
2744 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002745 int err;
Nenghua Cao939d9f12014-03-03 19:08:23 +08002746 bool type_2r = false;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002747 unsigned int val2 = 0;
2748 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002749
Markus Pargmannf227b882014-01-16 16:02:10 +01002750 if (sign_bit)
2751 mask = BIT(sign_bit + 1) - 1;
2752
2753 val = ((ucontrol->value.integer.value[0] + min) & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002754 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002755 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002756 val_mask = mask << shift;
2757 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002758 if (snd_soc_volsw_is_stereo(mc)) {
Markus Pargmannf227b882014-01-16 16:02:10 +01002759 val2 = ((ucontrol->value.integer.value[1] + min) & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002760 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002761 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002762 if (reg == reg2) {
2763 val_mask |= mask << rshift;
2764 val |= val2 << rshift;
2765 } else {
2766 val2 = val2 << shift;
Nenghua Cao939d9f12014-03-03 19:08:23 +08002767 type_2r = true;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002768 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002769 }
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002770 err = snd_soc_component_update_bits(component, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002771 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002772 return err;
2773
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002774 if (type_2r)
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002775 err = snd_soc_component_update_bits(component, reg2, val_mask,
2776 val2);
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002777
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002778 return err;
2779}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002780EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002781
Mark Browne13ac2e2008-05-28 17:58:05 +01002782/**
Brian Austin1d99f242012-03-30 10:43:55 -05002783 * snd_soc_get_volsw_sx - single mixer get callback
2784 * @kcontrol: mixer control
2785 * @ucontrol: control element information
2786 *
2787 * Callback to get the value of a single mixer control, or a double mixer
2788 * control that spans 2 registers.
2789 *
2790 * Returns 0 for success.
2791 */
2792int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2793 struct snd_ctl_elem_value *ucontrol)
2794{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002795 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Brian Austin1d99f242012-03-30 10:43:55 -05002796 struct soc_mixer_control *mc =
2797 (struct soc_mixer_control *)kcontrol->private_value;
Brian Austin1d99f242012-03-30 10:43:55 -05002798 unsigned int reg = mc->reg;
2799 unsigned int reg2 = mc->rreg;
2800 unsigned int shift = mc->shift;
2801 unsigned int rshift = mc->rshift;
2802 int max = mc->max;
2803 int min = mc->min;
2804 int mask = (1 << (fls(min + max) - 1)) - 1;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002805 unsigned int val;
2806 int ret;
Brian Austin1d99f242012-03-30 10:43:55 -05002807
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002808 ret = snd_soc_component_read(component, reg, &val);
2809 if (ret < 0)
2810 return ret;
Brian Austin1d99f242012-03-30 10:43:55 -05002811
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002812 ucontrol->value.integer.value[0] = ((val >> shift) - min) & mask;
2813
2814 if (snd_soc_volsw_is_stereo(mc)) {
2815 ret = snd_soc_component_read(component, reg2, &val);
2816 if (ret < 0)
2817 return ret;
2818
2819 val = ((val >> rshift) - min) & mask;
2820 ucontrol->value.integer.value[1] = val;
2821 }
Brian Austin1d99f242012-03-30 10:43:55 -05002822
2823 return 0;
2824}
2825EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2826
2827/**
2828 * snd_soc_put_volsw_sx - double mixer set callback
2829 * @kcontrol: mixer control
2830 * @uinfo: control element information
2831 *
2832 * Callback to set the value of a double mixer control that spans 2 registers.
2833 *
2834 * Returns 0 for success.
2835 */
2836int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2837 struct snd_ctl_elem_value *ucontrol)
2838{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002839 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Brian Austin1d99f242012-03-30 10:43:55 -05002840 struct soc_mixer_control *mc =
2841 (struct soc_mixer_control *)kcontrol->private_value;
2842
2843 unsigned int reg = mc->reg;
2844 unsigned int reg2 = mc->rreg;
2845 unsigned int shift = mc->shift;
2846 unsigned int rshift = mc->rshift;
2847 int max = mc->max;
2848 int min = mc->min;
2849 int mask = (1 << (fls(min + max) - 1)) - 1;
Brian Austin27f1d752012-04-03 11:33:50 -05002850 int err = 0;
Bard Liao1a390192014-04-08 11:18:10 +08002851 unsigned int val, val_mask, val2 = 0;
Brian Austin1d99f242012-03-30 10:43:55 -05002852
2853 val_mask = mask << shift;
2854 val = (ucontrol->value.integer.value[0] + min) & mask;
2855 val = val << shift;
2856
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002857 err = snd_soc_component_update_bits(component, reg, val_mask, val);
Mukund Navadad0558522012-11-09 11:53:40 +05302858 if (err < 0)
2859 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002860
2861 if (snd_soc_volsw_is_stereo(mc)) {
2862 val_mask = mask << rshift;
2863 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2864 val2 = val2 << rshift;
2865
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002866 err = snd_soc_component_update_bits(component, reg2, val_mask,
2867 val2);
Brian Austin1d99f242012-03-30 10:43:55 -05002868 }
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002869 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002870}
2871EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2872
2873/**
Mark Browne13ac2e2008-05-28 17:58:05 +01002874 * snd_soc_info_volsw_s8 - signed mixer info callback
2875 * @kcontrol: mixer control
2876 * @uinfo: control element information
2877 *
2878 * Callback to provide information about a signed mixer control.
2879 *
2880 * Returns 0 for success.
2881 */
2882int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2883 struct snd_ctl_elem_info *uinfo)
2884{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002885 struct soc_mixer_control *mc =
2886 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002887 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002888 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002889
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002890 if (!mc->platform_max)
2891 mc->platform_max = mc->max;
2892 platform_max = mc->platform_max;
2893
Mark Browne13ac2e2008-05-28 17:58:05 +01002894 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2895 uinfo->count = 2;
2896 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002897 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002898 return 0;
2899}
2900EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2901
2902/**
2903 * snd_soc_get_volsw_s8 - signed mixer get callback
2904 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002905 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002906 *
2907 * Callback to get the value of a signed mixer control.
2908 *
2909 * Returns 0 for success.
2910 */
2911int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2912 struct snd_ctl_elem_value *ucontrol)
2913{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002914 struct soc_mixer_control *mc =
2915 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002916 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002917 unsigned int reg = mc->reg;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002918 unsigned int val;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002919 int min = mc->min;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002920 int ret;
2921
2922 ret = snd_soc_component_read(component, reg, &val);
2923 if (ret)
2924 return ret;
Mark Browne13ac2e2008-05-28 17:58:05 +01002925
2926 ucontrol->value.integer.value[0] =
2927 ((signed char)(val & 0xff))-min;
2928 ucontrol->value.integer.value[1] =
2929 ((signed char)((val >> 8) & 0xff))-min;
2930 return 0;
2931}
2932EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2933
2934/**
2935 * snd_soc_put_volsw_sgn - signed mixer put callback
2936 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002937 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002938 *
2939 * Callback to set the value of a signed mixer control.
2940 *
2941 * Returns 0 for success.
2942 */
2943int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2944 struct snd_ctl_elem_value *ucontrol)
2945{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002946 struct soc_mixer_control *mc =
2947 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002948 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002949 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002950 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002951 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002952
2953 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2954 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2955
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002956 return snd_soc_component_update_bits(component, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002957}
2958EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2959
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002960/**
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002961 * snd_soc_info_volsw_range - single mixer info callback with range.
2962 * @kcontrol: mixer control
2963 * @uinfo: control element information
2964 *
2965 * Callback to provide information, within a range, about a single
2966 * mixer control.
2967 *
2968 * returns 0 for success.
2969 */
2970int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
2971 struct snd_ctl_elem_info *uinfo)
2972{
2973 struct soc_mixer_control *mc =
2974 (struct soc_mixer_control *)kcontrol->private_value;
2975 int platform_max;
2976 int min = mc->min;
2977
2978 if (!mc->platform_max)
2979 mc->platform_max = mc->max;
2980 platform_max = mc->platform_max;
2981
2982 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Mark Brown9bde4f02012-12-19 16:05:00 +00002983 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002984 uinfo->value.integer.min = 0;
2985 uinfo->value.integer.max = platform_max - min;
2986
2987 return 0;
2988}
2989EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
2990
2991/**
2992 * snd_soc_put_volsw_range - single mixer put value callback with range.
2993 * @kcontrol: mixer control
2994 * @ucontrol: control element information
2995 *
2996 * Callback to set the value, within a range, for a single mixer control.
2997 *
2998 * Returns 0 for success.
2999 */
3000int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
3001 struct snd_ctl_elem_value *ucontrol)
3002{
3003 struct soc_mixer_control *mc =
3004 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003005 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003006 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003007 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003008 unsigned int shift = mc->shift;
3009 int min = mc->min;
3010 int max = mc->max;
3011 unsigned int mask = (1 << fls(max)) - 1;
3012 unsigned int invert = mc->invert;
3013 unsigned int val, val_mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00003014 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003015
3016 val = ((ucontrol->value.integer.value[0] + min) & mask);
3017 if (invert)
3018 val = max - val;
3019 val_mask = mask << shift;
3020 val = val << shift;
3021
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003022 ret = snd_soc_component_update_bits(component, reg, val_mask, val);
Joonyoung Shim0eaa6cc2013-03-26 14:41:05 +09003023 if (ret < 0)
Mark Brown9bde4f02012-12-19 16:05:00 +00003024 return ret;
3025
3026 if (snd_soc_volsw_is_stereo(mc)) {
3027 val = ((ucontrol->value.integer.value[1] + min) & mask);
3028 if (invert)
3029 val = max - val;
3030 val_mask = mask << shift;
3031 val = val << shift;
3032
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003033 ret = snd_soc_component_update_bits(component, rreg, val_mask,
3034 val);
Mark Brown9bde4f02012-12-19 16:05:00 +00003035 }
3036
3037 return ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003038}
3039EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
3040
3041/**
3042 * snd_soc_get_volsw_range - single mixer get callback with range
3043 * @kcontrol: mixer control
3044 * @ucontrol: control element information
3045 *
3046 * Callback to get the value, within a range, of a single mixer control.
3047 *
3048 * Returns 0 for success.
3049 */
3050int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
3051 struct snd_ctl_elem_value *ucontrol)
3052{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003053 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003054 struct soc_mixer_control *mc =
3055 (struct soc_mixer_control *)kcontrol->private_value;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003056 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003057 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003058 unsigned int shift = mc->shift;
3059 int min = mc->min;
3060 int max = mc->max;
3061 unsigned int mask = (1 << fls(max)) - 1;
3062 unsigned int invert = mc->invert;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003063 unsigned int val;
3064 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003065
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003066 ret = snd_soc_component_read(component, reg, &val);
3067 if (ret)
3068 return ret;
3069
3070 ucontrol->value.integer.value[0] = (val >> shift) & mask;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003071 if (invert)
3072 ucontrol->value.integer.value[0] =
3073 max - ucontrol->value.integer.value[0];
3074 ucontrol->value.integer.value[0] =
3075 ucontrol->value.integer.value[0] - min;
3076
Mark Brown9bde4f02012-12-19 16:05:00 +00003077 if (snd_soc_volsw_is_stereo(mc)) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003078 ret = snd_soc_component_read(component, rreg, &val);
3079 if (ret)
3080 return ret;
3081
3082 ucontrol->value.integer.value[1] = (val >> shift) & mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00003083 if (invert)
3084 ucontrol->value.integer.value[1] =
3085 max - ucontrol->value.integer.value[1];
3086 ucontrol->value.integer.value[1] =
3087 ucontrol->value.integer.value[1] - min;
3088 }
3089
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003090 return 0;
3091}
3092EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
3093
3094/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003095 * snd_soc_limit_volume - Set new limit to an existing volume control.
3096 *
3097 * @codec: where to look for the control
3098 * @name: Name of the control
3099 * @max: new maximum limit
3100 *
3101 * Return 0 for success, else error.
3102 */
3103int snd_soc_limit_volume(struct snd_soc_codec *codec,
3104 const char *name, int max)
3105{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003106 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003107 struct snd_kcontrol *kctl;
3108 struct soc_mixer_control *mc;
3109 int found = 0;
3110 int ret = -EINVAL;
3111
3112 /* Sanity check for name and max */
3113 if (unlikely(!name || max <= 0))
3114 return -EINVAL;
3115
3116 list_for_each_entry(kctl, &card->controls, list) {
3117 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3118 found = 1;
3119 break;
3120 }
3121 }
3122 if (found) {
3123 mc = (struct soc_mixer_control *)kctl->private_value;
3124 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03003125 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003126 ret = 0;
3127 }
3128 }
3129 return ret;
3130}
3131EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3132
Mark Brown71d08512011-10-10 18:31:26 +01003133int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
3134 struct snd_ctl_elem_info *uinfo)
3135{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003136 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003137 struct soc_bytes *params = (void *)kcontrol->private_value;
3138
3139 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003140 uinfo->count = params->num_regs * component->val_bytes;
Mark Brown71d08512011-10-10 18:31:26 +01003141
3142 return 0;
3143}
3144EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
3145
3146int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
3147 struct snd_ctl_elem_value *ucontrol)
3148{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003149 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003150 struct soc_bytes *params = (void *)kcontrol->private_value;
Mark Brown71d08512011-10-10 18:31:26 +01003151 int ret;
3152
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003153 if (component->regmap)
3154 ret = regmap_raw_read(component->regmap, params->base,
Mark Brown71d08512011-10-10 18:31:26 +01003155 ucontrol->value.bytes.data,
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003156 params->num_regs * component->val_bytes);
Mark Brown71d08512011-10-10 18:31:26 +01003157 else
3158 ret = -EINVAL;
3159
Mark Brownf831b052012-02-17 16:20:33 -08003160 /* Hide any masked bytes to ensure consistent data reporting */
3161 if (ret == 0 && params->mask) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003162 switch (component->val_bytes) {
Mark Brownf831b052012-02-17 16:20:33 -08003163 case 1:
3164 ucontrol->value.bytes.data[0] &= ~params->mask;
3165 break;
3166 case 2:
3167 ((u16 *)(&ucontrol->value.bytes.data))[0]
Charles Keepax8f1ec932013-11-29 13:33:11 +00003168 &= cpu_to_be16(~params->mask);
Mark Brownf831b052012-02-17 16:20:33 -08003169 break;
3170 case 4:
3171 ((u32 *)(&ucontrol->value.bytes.data))[0]
Charles Keepax8f1ec932013-11-29 13:33:11 +00003172 &= cpu_to_be32(~params->mask);
Mark Brownf831b052012-02-17 16:20:33 -08003173 break;
3174 default:
3175 return -EINVAL;
3176 }
3177 }
3178
Mark Brown71d08512011-10-10 18:31:26 +01003179 return ret;
3180}
3181EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
3182
3183int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
3184 struct snd_ctl_elem_value *ucontrol)
3185{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003186 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003187 struct soc_bytes *params = (void *)kcontrol->private_value;
Mark Brownf831b052012-02-17 16:20:33 -08003188 int ret, len;
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003189 unsigned int val, mask;
Mark Brownf831b052012-02-17 16:20:33 -08003190 void *data;
Mark Brown71d08512011-10-10 18:31:26 +01003191
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003192 if (!component->regmap)
Mark Brownf831b052012-02-17 16:20:33 -08003193 return -EINVAL;
3194
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003195 len = params->num_regs * component->val_bytes;
Mark Brownf831b052012-02-17 16:20:33 -08003196
Mark Brownb5a8fe42013-01-20 21:42:22 +09003197 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
3198 if (!data)
3199 return -ENOMEM;
3200
Mark Brownf831b052012-02-17 16:20:33 -08003201 /*
3202 * If we've got a mask then we need to preserve the register
3203 * bits. We shouldn't modify the incoming data so take a
3204 * copy.
3205 */
3206 if (params->mask) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003207 ret = regmap_read(component->regmap, params->base, &val);
Mark Brownf831b052012-02-17 16:20:33 -08003208 if (ret != 0)
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003209 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003210
3211 val &= params->mask;
3212
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003213 switch (component->val_bytes) {
Mark Brownf831b052012-02-17 16:20:33 -08003214 case 1:
3215 ((u8 *)data)[0] &= ~params->mask;
3216 ((u8 *)data)[0] |= val;
3217 break;
3218 case 2:
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003219 mask = ~params->mask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003220 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003221 &mask, &mask);
3222 if (ret != 0)
3223 goto out;
3224
3225 ((u16 *)data)[0] &= mask;
3226
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003227 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003228 &val, &val);
3229 if (ret != 0)
3230 goto out;
3231
3232 ((u16 *)data)[0] |= val;
Mark Brownf831b052012-02-17 16:20:33 -08003233 break;
3234 case 4:
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003235 mask = ~params->mask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003236 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003237 &mask, &mask);
3238 if (ret != 0)
3239 goto out;
3240
3241 ((u32 *)data)[0] &= mask;
3242
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003243 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003244 &val, &val);
3245 if (ret != 0)
3246 goto out;
3247
3248 ((u32 *)data)[0] |= val;
Mark Brownf831b052012-02-17 16:20:33 -08003249 break;
3250 default:
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003251 ret = -EINVAL;
3252 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003253 }
3254 }
3255
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003256 ret = regmap_raw_write(component->regmap, params->base,
Mark Brownf831b052012-02-17 16:20:33 -08003257 data, len);
3258
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003259out:
Mark Brownb5a8fe42013-01-20 21:42:22 +09003260 kfree(data);
Mark Brown71d08512011-10-10 18:31:26 +01003261
3262 return ret;
3263}
3264EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
3265
Vinod Kould9881202014-05-02 10:58:11 +05303266int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
3267 struct snd_ctl_elem_info *ucontrol)
3268{
3269 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
3270
3271 ucontrol->type = SNDRV_CTL_ELEM_TYPE_BYTES;
3272 ucontrol->count = params->max;
3273
3274 return 0;
3275}
3276EXPORT_SYMBOL_GPL(snd_soc_bytes_info_ext);
3277
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003278/**
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003279 * snd_soc_info_xr_sx - signed multi register info callback
3280 * @kcontrol: mreg control
3281 * @uinfo: control element information
3282 *
3283 * Callback to provide information of a control that can
3284 * span multiple codec registers which together
3285 * forms a single signed value in a MSB/LSB manner.
3286 *
3287 * Returns 0 for success.
3288 */
3289int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
3290 struct snd_ctl_elem_info *uinfo)
3291{
3292 struct soc_mreg_control *mc =
3293 (struct soc_mreg_control *)kcontrol->private_value;
3294 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3295 uinfo->count = 1;
3296 uinfo->value.integer.min = mc->min;
3297 uinfo->value.integer.max = mc->max;
3298
3299 return 0;
3300}
3301EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
3302
3303/**
3304 * snd_soc_get_xr_sx - signed multi register get callback
3305 * @kcontrol: mreg control
3306 * @ucontrol: control element information
3307 *
3308 * Callback to get the value of a control that can span
3309 * multiple codec registers which together forms a single
3310 * signed value in a MSB/LSB manner. The control supports
3311 * specifying total no of bits used to allow for bitfields
3312 * across the multiple codec registers.
3313 *
3314 * Returns 0 for success.
3315 */
3316int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
3317 struct snd_ctl_elem_value *ucontrol)
3318{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003319 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003320 struct soc_mreg_control *mc =
3321 (struct soc_mreg_control *)kcontrol->private_value;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003322 unsigned int regbase = mc->regbase;
3323 unsigned int regcount = mc->regcount;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003324 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003325 unsigned int regwmask = (1<<regwshift)-1;
3326 unsigned int invert = mc->invert;
3327 unsigned long mask = (1UL<<mc->nbits)-1;
3328 long min = mc->min;
3329 long max = mc->max;
3330 long val = 0;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003331 unsigned int regval;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003332 unsigned int i;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003333 int ret;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003334
3335 for (i = 0; i < regcount; i++) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003336 ret = snd_soc_component_read(component, regbase+i, &regval);
3337 if (ret)
3338 return ret;
3339 val |= (regval & regwmask) << (regwshift*(regcount-i-1));
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003340 }
3341 val &= mask;
3342 if (min < 0 && val > max)
3343 val |= ~mask;
3344 if (invert)
3345 val = max - val;
3346 ucontrol->value.integer.value[0] = val;
3347
3348 return 0;
3349}
3350EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
3351
3352/**
3353 * snd_soc_put_xr_sx - signed multi register get callback
3354 * @kcontrol: mreg control
3355 * @ucontrol: control element information
3356 *
3357 * Callback to set the value of a control that can span
3358 * multiple codec registers which together forms a single
3359 * signed value in a MSB/LSB manner. The control supports
3360 * specifying total no of bits used to allow for bitfields
3361 * across the multiple codec registers.
3362 *
3363 * Returns 0 for success.
3364 */
3365int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
3366 struct snd_ctl_elem_value *ucontrol)
3367{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003368 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003369 struct soc_mreg_control *mc =
3370 (struct soc_mreg_control *)kcontrol->private_value;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003371 unsigned int regbase = mc->regbase;
3372 unsigned int regcount = mc->regcount;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003373 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003374 unsigned int regwmask = (1<<regwshift)-1;
3375 unsigned int invert = mc->invert;
3376 unsigned long mask = (1UL<<mc->nbits)-1;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003377 long max = mc->max;
3378 long val = ucontrol->value.integer.value[0];
3379 unsigned int i, regval, regmask;
3380 int err;
3381
3382 if (invert)
3383 val = max - val;
3384 val &= mask;
3385 for (i = 0; i < regcount; i++) {
3386 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3387 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003388 err = snd_soc_component_update_bits(component, regbase+i,
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003389 regmask, regval);
3390 if (err < 0)
3391 return err;
3392 }
3393
3394 return 0;
3395}
3396EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3397
3398/**
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003399 * snd_soc_get_strobe - strobe get callback
3400 * @kcontrol: mixer control
3401 * @ucontrol: control element information
3402 *
3403 * Callback get the value of a strobe mixer control.
3404 *
3405 * Returns 0 for success.
3406 */
3407int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
3408 struct snd_ctl_elem_value *ucontrol)
3409{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003410 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003411 struct soc_mixer_control *mc =
3412 (struct soc_mixer_control *)kcontrol->private_value;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003413 unsigned int reg = mc->reg;
3414 unsigned int shift = mc->shift;
3415 unsigned int mask = 1 << shift;
3416 unsigned int invert = mc->invert != 0;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003417 unsigned int val;
3418 int ret;
3419
3420 ret = snd_soc_component_read(component, reg, &val);
3421 if (ret)
3422 return ret;
3423
3424 val &= mask;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003425
3426 if (shift != 0 && val != 0)
3427 val = val >> shift;
3428 ucontrol->value.enumerated.item[0] = val ^ invert;
3429
3430 return 0;
3431}
3432EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3433
3434/**
3435 * snd_soc_put_strobe - strobe put callback
3436 * @kcontrol: mixer control
3437 * @ucontrol: control element information
3438 *
3439 * Callback strobe a register bit to high then low (or the inverse)
3440 * in one pass of a single mixer enum control.
3441 *
3442 * Returns 1 for success.
3443 */
3444int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3445 struct snd_ctl_elem_value *ucontrol)
3446{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003447 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003448 struct soc_mixer_control *mc =
3449 (struct soc_mixer_control *)kcontrol->private_value;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003450 unsigned int reg = mc->reg;
3451 unsigned int shift = mc->shift;
3452 unsigned int mask = 1 << shift;
3453 unsigned int invert = mc->invert != 0;
3454 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3455 unsigned int val1 = (strobe ^ invert) ? mask : 0;
3456 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3457 int err;
3458
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003459 err = snd_soc_component_update_bits(component, reg, mask, val1);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003460 if (err < 0)
3461 return err;
3462
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003463 return snd_soc_component_update_bits(component, reg, mask, val2);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003464}
3465EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3466
3467/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003468 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3469 * @dai: DAI
3470 * @clk_id: DAI specific clock ID
3471 * @freq: new clock frequency in Hz
3472 * @dir: new clock direction - input/output.
3473 *
3474 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3475 */
3476int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3477 unsigned int freq, int dir)
3478{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003479 if (dai->driver && dai->driver->ops->set_sysclk)
3480 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003481 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003482 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00003483 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003484 else
Mark Brown1104a9c2014-01-15 19:04:19 +00003485 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003486}
3487EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3488
3489/**
Mark Brownec4ee522011-03-07 20:58:11 +00003490 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3491 * @codec: CODEC
3492 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01003493 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00003494 * @freq: new clock frequency in Hz
3495 * @dir: new clock direction - input/output.
3496 *
3497 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3498 */
3499int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01003500 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00003501{
3502 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003503 return codec->driver->set_sysclk(codec, clk_id, source,
3504 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003505 else
Mark Brown1104a9c2014-01-15 19:04:19 +00003506 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00003507}
3508EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3509
3510/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003511 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3512 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003513 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003514 * @div: new clock divisor.
3515 *
3516 * Configures the clock dividers. This is used to derive the best DAI bit and
3517 * frame clocks from the system or master clock. It's best to set the DAI bit
3518 * and frame clocks as low as possible to save system power.
3519 */
3520int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3521 int div_id, int div)
3522{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003523 if (dai->driver && dai->driver->ops->set_clkdiv)
3524 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003525 else
3526 return -EINVAL;
3527}
3528EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3529
3530/**
3531 * snd_soc_dai_set_pll - configure DAI PLL.
3532 * @dai: DAI
3533 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003534 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003535 * @freq_in: PLL input clock frequency in Hz
3536 * @freq_out: requested PLL output clock frequency in Hz
3537 *
3538 * Configures and enables PLL to generate output clock based on input clock.
3539 */
Mark Brown85488032009-09-05 18:52:16 +01003540int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3541 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003542{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003543 if (dai->driver && dai->driver->ops->set_pll)
3544 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003545 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003546 else if (dai->codec && dai->codec->driver->set_pll)
3547 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3548 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003549 else
3550 return -EINVAL;
3551}
3552EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3553
Mark Brownec4ee522011-03-07 20:58:11 +00003554/*
3555 * snd_soc_codec_set_pll - configure codec PLL.
3556 * @codec: CODEC
3557 * @pll_id: DAI specific PLL ID
3558 * @source: DAI specific source for the PLL
3559 * @freq_in: PLL input clock frequency in Hz
3560 * @freq_out: requested PLL output clock frequency in Hz
3561 *
3562 * Configures and enables PLL to generate output clock based on input clock.
3563 */
3564int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3565 unsigned int freq_in, unsigned int freq_out)
3566{
3567 if (codec->driver->set_pll)
3568 return codec->driver->set_pll(codec, pll_id, source,
3569 freq_in, freq_out);
3570 else
3571 return -EINVAL;
3572}
3573EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3574
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003575/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01003576 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
3577 * @dai: DAI
3578 * @ratio Ratio of BCLK to Sample rate.
3579 *
3580 * Configures the DAI for a preset BCLK to sample rate ratio.
3581 */
3582int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
3583{
3584 if (dai->driver && dai->driver->ops->set_bclk_ratio)
3585 return dai->driver->ops->set_bclk_ratio(dai, ratio);
3586 else
3587 return -EINVAL;
3588}
3589EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
3590
3591/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003592 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3593 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003594 * @fmt: SND_SOC_DAIFMT_ format value.
3595 *
3596 * Configures the DAI hardware format and clocking.
3597 */
3598int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3599{
Shawn Guo5e4ba562012-03-09 00:59:40 +08003600 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003601 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08003602 if (dai->driver->ops->set_fmt == NULL)
3603 return -ENOTSUPP;
3604 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003605}
3606EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3607
3608/**
Xiubo Lie5c21512014-03-21 14:17:12 +08003609 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08003610 * @slots: Number of slots in use.
3611 * @tx_mask: bitmask representing active TX slots.
3612 * @rx_mask: bitmask representing active RX slots.
3613 *
3614 * Generates the TDM tx and rx slot default masks for DAI.
3615 */
Xiubo Lie5c21512014-03-21 14:17:12 +08003616static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08003617 unsigned int *tx_mask,
3618 unsigned int *rx_mask)
3619{
3620 if (*tx_mask || *rx_mask)
3621 return 0;
3622
3623 if (!slots)
3624 return -EINVAL;
3625
3626 *tx_mask = (1 << slots) - 1;
3627 *rx_mask = (1 << slots) - 1;
3628
3629 return 0;
3630}
3631
3632/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003633 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3634 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003635 * @tx_mask: bitmask representing active TX slots.
3636 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003637 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003638 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003639 *
3640 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3641 * specific.
3642 */
3643int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003644 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003645{
Xiubo Lie5c21512014-03-21 14:17:12 +08003646 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
3647 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08003648 &tx_mask, &rx_mask);
3649 else
Xiubo Lie5c21512014-03-21 14:17:12 +08003650 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08003651
Benoit Cousson88bd8702014-07-08 23:19:34 +02003652 dai->tx_mask = tx_mask;
3653 dai->rx_mask = rx_mask;
3654
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003655 if (dai->driver && dai->driver->ops->set_tdm_slot)
3656 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003657 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003658 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08003659 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003660}
3661EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3662
3663/**
Barry Song472df3c2009-09-12 01:16:29 +08003664 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3665 * @dai: DAI
3666 * @tx_num: how many TX channels
3667 * @tx_slot: pointer to an array which imply the TX slot number channel
3668 * 0~num-1 uses
3669 * @rx_num: how many RX channels
3670 * @rx_slot: pointer to an array which imply the RX slot number channel
3671 * 0~num-1 uses
3672 *
3673 * configure the relationship between channel number and TDM slot number.
3674 */
3675int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3676 unsigned int tx_num, unsigned int *tx_slot,
3677 unsigned int rx_num, unsigned int *rx_slot)
3678{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003679 if (dai->driver && dai->driver->ops->set_channel_map)
3680 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003681 rx_num, rx_slot);
3682 else
3683 return -EINVAL;
3684}
3685EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3686
3687/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003688 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3689 * @dai: DAI
3690 * @tristate: tristate enable
3691 *
3692 * Tristates the DAI so that others can use it.
3693 */
3694int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3695{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003696 if (dai->driver && dai->driver->ops->set_tristate)
3697 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003698 else
3699 return -EINVAL;
3700}
3701EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3702
3703/**
3704 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3705 * @dai: DAI
3706 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00003707 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003708 *
3709 * Mutes the DAI DAC.
3710 */
Mark Brownda183962013-02-06 15:44:07 +00003711int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
3712 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003713{
Mark Brownda183962013-02-06 15:44:07 +00003714 if (!dai->driver)
3715 return -ENOTSUPP;
3716
3717 if (dai->driver->ops->mute_stream)
3718 return dai->driver->ops->mute_stream(dai, mute, direction);
3719 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
3720 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003721 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003722 else
Mark Brown04570c62012-04-13 19:16:03 +01003723 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003724}
3725EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3726
Benoit Cousson88bd8702014-07-08 23:19:34 +02003727static int snd_soc_init_multicodec(struct snd_soc_card *card,
3728 struct snd_soc_dai_link *dai_link)
3729{
3730 /* Legacy codec/codec_dai link is a single entry in multicodec */
3731 if (dai_link->codec_name || dai_link->codec_of_node ||
3732 dai_link->codec_dai_name) {
3733 dai_link->num_codecs = 1;
3734
3735 dai_link->codecs = devm_kzalloc(card->dev,
3736 sizeof(struct snd_soc_dai_link_component),
3737 GFP_KERNEL);
3738 if (!dai_link->codecs)
3739 return -ENOMEM;
3740
3741 dai_link->codecs[0].name = dai_link->codec_name;
3742 dai_link->codecs[0].of_node = dai_link->codec_of_node;
3743 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
3744 }
3745
3746 if (!dai_link->codecs) {
3747 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
3748 return -EINVAL;
3749 }
3750
3751 return 0;
3752}
3753
Mark Brownc5af3a22008-11-28 13:29:45 +00003754/**
3755 * snd_soc_register_card - Register a card with the ASoC core
3756 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003757 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003758 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003759 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303760int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003761{
Benoit Cousson88bd8702014-07-08 23:19:34 +02003762 int i, j, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003763
Mark Brownc5af3a22008-11-28 13:29:45 +00003764 if (!card->name || !card->dev)
3765 return -EINVAL;
3766
Stephen Warren5a504962011-12-21 10:40:59 -07003767 for (i = 0; i < card->num_links; i++) {
3768 struct snd_soc_dai_link *link = &card->dai_link[i];
3769
Benoit Cousson88bd8702014-07-08 23:19:34 +02003770 ret = snd_soc_init_multicodec(card, link);
3771 if (ret) {
3772 dev_err(card->dev, "ASoC: failed to init multicodec\n");
3773 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07003774 }
Benoit Cousson88bd8702014-07-08 23:19:34 +02003775
3776 for (j = 0; j < link->num_codecs; j++) {
3777 /*
3778 * Codec must be specified by 1 of name or OF node,
3779 * not both or neither.
3780 */
3781 if (!!link->codecs[j].name ==
3782 !!link->codecs[j].of_node) {
3783 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
3784 link->name);
3785 return -EINVAL;
3786 }
3787 /* Codec DAI name must be specified */
3788 if (!link->codecs[j].dai_name) {
3789 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
3790 link->name);
3791 return -EINVAL;
3792 }
Stephen Warrenbc926572012-05-25 18:22:11 -06003793 }
Stephen Warren5a504962011-12-21 10:40:59 -07003794
3795 /*
3796 * Platform may be specified by either name or OF node, but
3797 * can be left unspecified, and a dummy platform will be used.
3798 */
3799 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003800 dev_err(card->dev,
3801 "ASoC: Both platform name/of_node are set for %s\n",
3802 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003803 return -EINVAL;
3804 }
3805
3806 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06003807 * CPU device may be specified by either name or OF node, but
3808 * can be left unspecified, and will be matched based on DAI
3809 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07003810 */
Stephen Warrenbc926572012-05-25 18:22:11 -06003811 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003812 dev_err(card->dev,
3813 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3814 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003815 return -EINVAL;
3816 }
3817 /*
3818 * At least one of CPU DAI name or CPU device name/node must be
3819 * specified
3820 */
3821 if (!link->cpu_dai_name &&
3822 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003823 dev_err(card->dev,
3824 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3825 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003826 return -EINVAL;
3827 }
3828 }
3829
Mark Browned77cc12011-05-03 18:25:34 +01003830 dev_set_drvdata(card->dev, card);
3831
Stephen Warren111c6412011-01-28 14:26:35 -07003832 snd_soc_initialize_card_lists(card);
3833
Vinod Koul150dd2f2011-01-13 22:48:32 +05303834 soc_init_card_debugfs(card);
3835
Mark Brown181a6892012-03-14 20:18:49 +00003836 card->rtd = devm_kzalloc(card->dev,
3837 sizeof(struct snd_soc_pcm_runtime) *
3838 (card->num_links + card->num_aux_devs),
3839 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003840 if (card->rtd == NULL)
3841 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01003842 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003843 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003844
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02003845 for (i = 0; i < card->num_links; i++) {
3846 card->rtd[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003847 card->rtd[i].dai_link = &card->dai_link[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02003848 card->rtd[i].codec_dais = devm_kzalloc(card->dev,
3849 sizeof(struct snd_soc_dai *) *
3850 (card->rtd[i].dai_link->num_codecs),
3851 GFP_KERNEL);
3852 if (card->rtd[i].codec_dais == NULL)
3853 return -ENOMEM;
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02003854 }
3855
3856 for (i = 0; i < card->num_aux_devs; i++)
3857 card->rtd_aux[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003858
Mark Browndb432b42011-10-03 21:06:40 +01003859 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00003860 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003861 mutex_init(&card->mutex);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003862 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003863
Mark Brownb19e6e72012-03-14 21:18:39 +00003864 ret = snd_soc_instantiate_card(card);
3865 if (ret != 0)
3866 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003867
Nicolin Chen988e8cc2013-11-04 14:57:31 +08003868 /* deactivate pins to sleep state */
3869 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02003870 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
3871 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
3872 int j;
3873
3874 for (j = 0; j < rtd->num_codecs; j++) {
3875 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
3876 if (!codec_dai->active)
3877 pinctrl_pm_select_sleep_state(codec_dai->dev);
3878 }
3879
Nicolin Chen988e8cc2013-11-04 14:57:31 +08003880 if (!cpu_dai->active)
3881 pinctrl_pm_select_sleep_state(cpu_dai->dev);
3882 }
3883
Mark Brownb19e6e72012-03-14 21:18:39 +00003884 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00003885}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303886EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003887
3888/**
3889 * snd_soc_unregister_card - Unregister a card with the ASoC core
3890 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003891 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003892 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003893 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303894int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003895{
Vinod Koulb0e26482011-01-13 22:48:02 +05303896 if (card->instantiated)
3897 soc_cleanup_card_resources(card);
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003898 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00003899
3900 return 0;
3901}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303902EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003903
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003904/*
3905 * Simplify DAI link configuration by removing ".-1" from device names
3906 * and sanitizing names.
3907 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003908static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003909{
3910 char *found, name[NAME_SIZE];
3911 int id1, id2;
3912
3913 if (dev_name(dev) == NULL)
3914 return NULL;
3915
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003916 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003917
3918 /* are we a "%s.%d" name (platform and SPI components) */
3919 found = strstr(name, dev->driver->name);
3920 if (found) {
3921 /* get ID */
3922 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3923
3924 /* discard ID from name if ID == -1 */
3925 if (*id == -1)
3926 found[strlen(dev->driver->name)] = '\0';
3927 }
3928
3929 } else {
3930 /* I2C component devices are named "bus-addr" */
3931 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3932 char tmp[NAME_SIZE];
3933
3934 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003935 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003936
3937 /* sanitize component name for DAI link creation */
3938 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003939 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003940 } else
3941 *id = 0;
3942 }
3943
3944 return kstrdup(name, GFP_KERNEL);
3945}
3946
3947/*
3948 * Simplify DAI link naming for single devices with multiple DAIs by removing
3949 * any ".-1" and using the DAI name (instead of device name).
3950 */
3951static inline char *fmt_multiple_name(struct device *dev,
3952 struct snd_soc_dai_driver *dai_drv)
3953{
3954 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003955 dev_err(dev,
3956 "ASoC: error - multiple DAI %s registered with no name\n",
3957 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003958 return NULL;
3959 }
3960
3961 return kstrdup(dai_drv->name, GFP_KERNEL);
3962}
3963
Mark Brown91151712008-11-30 23:31:24 +00003964/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003965 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00003966 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003967 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00003968 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003969static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00003970{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01003971 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00003972
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01003973 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003974 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
3975 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01003976 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003977 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003978 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003979 }
Mark Brown91151712008-11-30 23:31:24 +00003980}
Mark Brown91151712008-11-30 23:31:24 +00003981
3982/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003983 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00003984 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003985 * @component: The component the DAIs are registered for
3986 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00003987 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003988 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
3989 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00003990 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003991static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003992 struct snd_soc_dai_driver *dai_drv, size_t count,
3993 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00003994{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003995 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003996 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003997 unsigned int i;
3998 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003999
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004000 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00004001
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004002 component->dai_drv = dai_drv;
4003 component->num_dai = count;
4004
Mark Brown91151712008-11-30 23:31:24 +00004005 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004006
4007 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08004008 if (dai == NULL) {
4009 ret = -ENOMEM;
4010 goto err;
4011 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004012
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004013 /*
4014 * Back in the old days when we still had component-less DAIs,
4015 * instead of having a static name, component-less DAIs would
4016 * inherit the name of the parent device so it is possible to
4017 * register multiple instances of the DAI. We still need to keep
4018 * the same naming style even though those DAIs are not
4019 * component-less anymore.
4020 */
4021 if (count == 1 && legacy_dai_naming) {
4022 dai->name = fmt_single_name(dev, &dai->id);
4023 } else {
4024 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
4025 if (dai_drv[i].id)
4026 dai->id = dai_drv[i].id;
4027 else
4028 dai->id = i;
4029 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004030 if (dai->name == NULL) {
4031 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004032 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00004033 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004034 }
4035
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01004036 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004037 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004038 dai->driver = &dai_drv[i];
4039 if (!dai->driver->ops)
4040 dai->driver->ops = &null_dai_ops;
4041
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01004042 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01004043
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004044 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00004045 }
4046
4047 return 0;
4048
4049err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01004050 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00004051
4052 return ret;
4053}
Mark Brown91151712008-11-30 23:31:24 +00004054
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004055static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
4056 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004057{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004058 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004059
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004060 component->driver->seq_notifier(component, type, subseq);
4061}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004062
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004063static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
4064 int event)
4065{
4066 struct snd_soc_component *component = dapm->component;
4067
4068 return component->driver->stream_event(component, event);
4069}
4070
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004071static int snd_soc_component_initialize(struct snd_soc_component *component,
4072 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004073{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004074 struct snd_soc_dapm_context *dapm;
4075
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004076 component->name = fmt_single_name(dev, &component->id);
4077 if (!component->name) {
4078 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004079 return -ENOMEM;
4080 }
4081
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004082 component->dev = dev;
4083 component->driver = driver;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004084
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004085 if (!component->dapm_ptr)
4086 component->dapm_ptr = &component->dapm;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004087
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004088 dapm = component->dapm_ptr;
4089 dapm->dev = dev;
4090 dapm->component = component;
4091 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004092 if (driver->seq_notifier)
4093 dapm->seq_notifier = snd_soc_component_seq_notifier;
4094 if (driver->stream_event)
4095 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004096
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004097 INIT_LIST_HEAD(&component->dai_list);
4098 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004099
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004100 return 0;
4101}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004102
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004103static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
4104{
4105 list_add(&component->list, &component_list);
4106}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004107
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004108static void snd_soc_component_add(struct snd_soc_component *component)
4109{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004110 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004111 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004112 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004113}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004114
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004115static void snd_soc_component_cleanup(struct snd_soc_component *component)
4116{
4117 snd_soc_unregister_dais(component);
4118 kfree(component->name);
4119}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004120
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004121static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
4122{
4123 list_del(&component->list);
4124}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004125
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004126static void snd_soc_component_del(struct snd_soc_component *component)
4127{
4128 mutex_lock(&client_mutex);
4129 snd_soc_component_del_unlocked(component);
4130 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004131}
4132
4133int snd_soc_register_component(struct device *dev,
4134 const struct snd_soc_component_driver *cmpnt_drv,
4135 struct snd_soc_dai_driver *dai_drv,
4136 int num_dai)
4137{
4138 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004139 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004140
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004141 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004142 if (!cmpnt) {
4143 dev_err(dev, "ASoC: Failed to allocate memory\n");
4144 return -ENOMEM;
4145 }
4146
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004147 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
4148 if (ret)
4149 goto err_free;
4150
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004151 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01004152 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004153
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004154 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
4155 if (ret < 0) {
4156 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4157 goto err_cleanup;
4158 }
4159
4160 snd_soc_component_add(cmpnt);
4161
4162 return 0;
4163
4164err_cleanup:
4165 snd_soc_component_cleanup(cmpnt);
4166err_free:
4167 kfree(cmpnt);
4168 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004169}
4170EXPORT_SYMBOL_GPL(snd_soc_register_component);
4171
4172/**
4173 * snd_soc_unregister_component - Unregister a component from the ASoC core
4174 *
4175 */
4176void snd_soc_unregister_component(struct device *dev)
4177{
4178 struct snd_soc_component *cmpnt;
4179
4180 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01004181 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004182 goto found;
4183 }
4184 return;
4185
4186found:
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004187 snd_soc_component_del(cmpnt);
4188 snd_soc_component_cleanup(cmpnt);
4189 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004190}
4191EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
4192
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004193static int snd_soc_platform_drv_write(struct snd_soc_component *component,
4194 unsigned int reg, unsigned int val)
4195{
4196 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
4197
4198 return platform->driver->write(platform, reg, val);
4199}
4200
4201static int snd_soc_platform_drv_read(struct snd_soc_component *component,
4202 unsigned int reg, unsigned int *val)
4203{
4204 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
4205
4206 *val = platform->driver->read(platform, reg);
4207
4208 return 0;
4209}
4210
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004211/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004212 * snd_soc_add_platform - Add a platform to the ASoC core
4213 * @dev: The parent device for the platform
4214 * @platform: The platform to add
4215 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00004216 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004217int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01004218 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004219{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01004220 int ret;
4221
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004222 ret = snd_soc_component_initialize(&platform->component,
4223 &platform_drv->component_driver, dev);
4224 if (ret)
4225 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004226
4227 platform->dev = dev;
4228 platform->driver = platform_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004229 if (platform_drv->write)
4230 platform->component.write = snd_soc_platform_drv_write;
4231 if (platform_drv->read)
4232 platform->component.read = snd_soc_platform_drv_read;
Mark Brown12a48a8c2008-12-03 19:40:30 +00004233
4234 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004235 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004236 list_add(&platform->list, &platform_list);
4237 mutex_unlock(&client_mutex);
4238
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004239 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
4240 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004241
4242 return 0;
4243}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004244EXPORT_SYMBOL_GPL(snd_soc_add_platform);
4245
4246/**
4247 * snd_soc_register_platform - Register a platform with the ASoC core
4248 *
4249 * @platform: platform to register
4250 */
4251int snd_soc_register_platform(struct device *dev,
4252 const struct snd_soc_platform_driver *platform_drv)
4253{
4254 struct snd_soc_platform *platform;
4255 int ret;
4256
4257 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
4258
4259 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
4260 if (platform == NULL)
4261 return -ENOMEM;
4262
4263 ret = snd_soc_add_platform(dev, platform, platform_drv);
4264 if (ret)
4265 kfree(platform);
4266
4267 return ret;
4268}
Mark Brown12a48a8c2008-12-03 19:40:30 +00004269EXPORT_SYMBOL_GPL(snd_soc_register_platform);
4270
4271/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004272 * snd_soc_remove_platform - Remove a platform from the ASoC core
4273 * @platform: the platform to remove
4274 */
4275void snd_soc_remove_platform(struct snd_soc_platform *platform)
4276{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01004277
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004278 mutex_lock(&client_mutex);
4279 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004280 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004281 mutex_unlock(&client_mutex);
4282
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004283 snd_soc_component_cleanup(&platform->component);
4284
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004285 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004286 platform->component.name);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004287}
4288EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
4289
4290struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
4291{
4292 struct snd_soc_platform *platform;
4293
4294 list_for_each_entry(platform, &platform_list, list) {
4295 if (dev == platform->dev)
4296 return platform;
4297 }
4298
4299 return NULL;
4300}
4301EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
4302
4303/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00004304 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4305 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004306 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00004307 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004308void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004309{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004310 struct snd_soc_platform *platform;
4311
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004312 platform = snd_soc_lookup_platform(dev);
4313 if (!platform)
4314 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004315
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004316 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004317 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004318}
4319EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
4320
Mark Brown151ab222009-05-09 16:22:58 +01004321static u64 codec_format_map[] = {
4322 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
4323 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
4324 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
4325 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
4326 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
4327 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
4328 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4329 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4330 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
4331 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
4332 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
4333 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
4334 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
4335 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
4336 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4337 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
4338};
4339
4340/* Fix up the DAI formats for endianness: codecs don't actually see
4341 * the endianness of the data but we're using the CPU format
4342 * definitions which do need to include endianness so we ensure that
4343 * codec DAIs always have both big and little endian variants set.
4344 */
4345static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
4346{
4347 int i;
4348
4349 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
4350 if (stream->formats & codec_format_map[i])
4351 stream->formats |= codec_format_map[i];
4352}
4353
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004354static int snd_soc_codec_drv_write(struct snd_soc_component *component,
4355 unsigned int reg, unsigned int val)
4356{
4357 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
4358
4359 return codec->driver->write(codec, reg, val);
4360}
4361
4362static int snd_soc_codec_drv_read(struct snd_soc_component *component,
4363 unsigned int reg, unsigned int *val)
4364{
4365 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
4366
4367 *val = codec->driver->read(codec, reg);
4368
4369 return 0;
4370}
4371
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02004372static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
4373 enum snd_soc_bias_level level)
4374{
4375 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
4376
4377 return codec->driver->set_bias_level(codec, level);
4378}
4379
Mark Brown0d0cf002008-12-10 14:32:45 +00004380/**
4381 * snd_soc_register_codec - Register a codec with the ASoC core
4382 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004383 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00004384 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004385int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00004386 const struct snd_soc_codec_driver *codec_drv,
4387 struct snd_soc_dai_driver *dai_drv,
4388 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00004389{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004390 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004391 struct snd_soc_dai *dai;
Xiubo Lia39f75f2014-03-26 13:40:23 +08004392 struct regmap *regmap;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004393 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01004394
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004395 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00004396
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004397 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
4398 if (codec == NULL)
4399 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00004400
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004401 codec->component.dapm_ptr = &codec->dapm;
4402
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004403 ret = snd_soc_component_initialize(&codec->component,
4404 &codec_drv->component_driver, dev);
4405 if (ret)
4406 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01004407
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004408 if (codec_drv->write)
4409 codec->component.write = snd_soc_codec_drv_write;
4410 if (codec_drv->read)
4411 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004412 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004413 codec->dapm.codec = codec;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004414 if (codec_drv->seq_notifier)
4415 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02004416 if (codec_drv->set_bias_level)
4417 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004418 codec->dev = dev;
4419 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004420 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004421 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004422
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004423 if (!codec->component.write) {
Xiubo Lia39f75f2014-03-26 13:40:23 +08004424 if (codec_drv->get_regmap)
4425 regmap = codec_drv->get_regmap(dev);
4426 else
4427 regmap = dev_get_regmap(dev, NULL);
4428
4429 if (regmap) {
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004430 ret = snd_soc_component_init_io(&codec->component,
4431 regmap);
4432 if (ret) {
Xiubo Lia39f75f2014-03-26 13:40:23 +08004433 dev_err(codec->dev,
4434 "Failed to set cache I/O:%d\n",
4435 ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004436 goto err_cleanup;
Xiubo Lia39f75f2014-03-26 13:40:23 +08004437 }
4438 }
4439 }
4440
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004441 for (i = 0; i < num_dai; i++) {
4442 fixup_codec_formats(&dai_drv[i].playback);
4443 fixup_codec_formats(&dai_drv[i].capture);
4444 }
4445
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004446 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
4447 if (ret < 0) {
4448 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4449 goto err_cleanup;
4450 }
4451
4452 list_for_each_entry(dai, &codec->component.dai_list, list)
4453 dai->codec = codec;
4454
Mark Brown054880f2012-04-09 17:29:19 +01004455 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004456 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01004457 list_add(&codec->list, &codec_list);
4458 mutex_unlock(&client_mutex);
4459
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004460 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
4461 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00004462 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004463
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004464err_cleanup:
4465 snd_soc_component_cleanup(&codec->component);
4466err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004467 kfree(codec);
4468 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00004469}
4470EXPORT_SYMBOL_GPL(snd_soc_register_codec);
4471
4472/**
4473 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4474 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004475 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00004476 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004477void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00004478{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004479 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004480
4481 list_for_each_entry(codec, &codec_list, list) {
4482 if (dev == codec->dev)
4483 goto found;
4484 }
4485 return;
4486
4487found:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004488
Mark Brown0d0cf002008-12-10 14:32:45 +00004489 mutex_lock(&client_mutex);
4490 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004491 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00004492 mutex_unlock(&client_mutex);
4493
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004494 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
4495 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004496
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004497 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004498 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004499 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00004500}
4501EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
4502
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004503/* Retrieve a card's name from device tree */
4504int snd_soc_of_parse_card_name(struct snd_soc_card *card,
4505 const char *propname)
4506{
4507 struct device_node *np = card->dev->of_node;
4508 int ret;
4509
4510 ret = of_property_read_string_index(np, propname, 0, &card->name);
4511 /*
4512 * EINVAL means the property does not exist. This is fine providing
4513 * card->name was previously set, which is checked later in
4514 * snd_soc_register_card.
4515 */
4516 if (ret < 0 && ret != -EINVAL) {
4517 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004518 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004519 propname, ret);
4520 return ret;
4521 }
4522
4523 return 0;
4524}
4525EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
4526
Xiubo Li9a6d4862014-02-08 15:59:52 +08004527static const struct snd_soc_dapm_widget simple_widgets[] = {
4528 SND_SOC_DAPM_MIC("Microphone", NULL),
4529 SND_SOC_DAPM_LINE("Line", NULL),
4530 SND_SOC_DAPM_HP("Headphone", NULL),
4531 SND_SOC_DAPM_SPK("Speaker", NULL),
4532};
4533
4534int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
4535 const char *propname)
4536{
4537 struct device_node *np = card->dev->of_node;
4538 struct snd_soc_dapm_widget *widgets;
4539 const char *template, *wname;
4540 int i, j, num_widgets, ret;
4541
4542 num_widgets = of_property_count_strings(np, propname);
4543 if (num_widgets < 0) {
4544 dev_err(card->dev,
4545 "ASoC: Property '%s' does not exist\n", propname);
4546 return -EINVAL;
4547 }
4548 if (num_widgets & 1) {
4549 dev_err(card->dev,
4550 "ASoC: Property '%s' length is not even\n", propname);
4551 return -EINVAL;
4552 }
4553
4554 num_widgets /= 2;
4555 if (!num_widgets) {
4556 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
4557 propname);
4558 return -EINVAL;
4559 }
4560
4561 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
4562 GFP_KERNEL);
4563 if (!widgets) {
4564 dev_err(card->dev,
4565 "ASoC: Could not allocate memory for widgets\n");
4566 return -ENOMEM;
4567 }
4568
4569 for (i = 0; i < num_widgets; i++) {
4570 ret = of_property_read_string_index(np, propname,
4571 2 * i, &template);
4572 if (ret) {
4573 dev_err(card->dev,
4574 "ASoC: Property '%s' index %d read error:%d\n",
4575 propname, 2 * i, ret);
4576 return -EINVAL;
4577 }
4578
4579 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
4580 if (!strncmp(template, simple_widgets[j].name,
4581 strlen(simple_widgets[j].name))) {
4582 widgets[i] = simple_widgets[j];
4583 break;
4584 }
4585 }
4586
4587 if (j >= ARRAY_SIZE(simple_widgets)) {
4588 dev_err(card->dev,
4589 "ASoC: DAPM widget '%s' is not supported\n",
4590 template);
4591 return -EINVAL;
4592 }
4593
4594 ret = of_property_read_string_index(np, propname,
4595 (2 * i) + 1,
4596 &wname);
4597 if (ret) {
4598 dev_err(card->dev,
4599 "ASoC: Property '%s' index %d read error:%d\n",
4600 propname, (2 * i) + 1, ret);
4601 return -EINVAL;
4602 }
4603
4604 widgets[i].name = wname;
4605 }
4606
4607 card->dapm_widgets = widgets;
4608 card->num_dapm_widgets = num_widgets;
4609
4610 return 0;
4611}
4612EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
4613
Xiubo Li89c67852014-02-14 09:34:35 +08004614int snd_soc_of_parse_tdm_slot(struct device_node *np,
4615 unsigned int *slots,
4616 unsigned int *slot_width)
4617{
4618 u32 val;
4619 int ret;
4620
4621 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
4622 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
4623 if (ret)
4624 return ret;
4625
4626 if (slots)
4627 *slots = val;
4628 }
4629
4630 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
4631 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
4632 if (ret)
4633 return ret;
4634
4635 if (slot_width)
4636 *slot_width = val;
4637 }
4638
4639 return 0;
4640}
4641EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
4642
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004643int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
4644 const char *propname)
4645{
4646 struct device_node *np = card->dev->of_node;
4647 int num_routes;
4648 struct snd_soc_dapm_route *routes;
4649 int i, ret;
4650
4651 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08004652 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02004653 dev_err(card->dev,
4654 "ASoC: Property '%s' does not exist or its length is not even\n",
4655 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004656 return -EINVAL;
4657 }
4658 num_routes /= 2;
4659 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004660 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004661 propname);
4662 return -EINVAL;
4663 }
4664
4665 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
4666 GFP_KERNEL);
4667 if (!routes) {
4668 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004669 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004670 return -EINVAL;
4671 }
4672
4673 for (i = 0; i < num_routes; i++) {
4674 ret = of_property_read_string_index(np, propname,
4675 2 * i, &routes[i].sink);
4676 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09004677 dev_err(card->dev,
4678 "ASoC: Property '%s' index %d could not be read: %d\n",
4679 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004680 return -EINVAL;
4681 }
4682 ret = of_property_read_string_index(np, propname,
4683 (2 * i) + 1, &routes[i].source);
4684 if (ret) {
4685 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09004686 "ASoC: Property '%s' index %d could not be read: %d\n",
4687 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004688 return -EINVAL;
4689 }
4690 }
4691
4692 card->num_dapm_routes = num_routes;
4693 card->dapm_routes = routes;
4694
4695 return 0;
4696}
4697EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
4698
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004699unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02004700 const char *prefix,
4701 struct device_node **bitclkmaster,
4702 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004703{
4704 int ret, i;
4705 char prop[128];
4706 unsigned int format = 0;
4707 int bit, frame;
4708 const char *str;
4709 struct {
4710 char *name;
4711 unsigned int val;
4712 } of_fmt_table[] = {
4713 { "i2s", SND_SOC_DAIFMT_I2S },
4714 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
4715 { "left_j", SND_SOC_DAIFMT_LEFT_J },
4716 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
4717 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
4718 { "ac97", SND_SOC_DAIFMT_AC97 },
4719 { "pdm", SND_SOC_DAIFMT_PDM},
4720 { "msb", SND_SOC_DAIFMT_MSB },
4721 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004722 };
4723
4724 if (!prefix)
4725 prefix = "";
4726
4727 /*
4728 * check "[prefix]format = xxx"
4729 * SND_SOC_DAIFMT_FORMAT_MASK area
4730 */
4731 snprintf(prop, sizeof(prop), "%sformat", prefix);
4732 ret = of_property_read_string(np, prop, &str);
4733 if (ret == 0) {
4734 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
4735 if (strcmp(str, of_fmt_table[i].name) == 0) {
4736 format |= of_fmt_table[i].val;
4737 break;
4738 }
4739 }
4740 }
4741
4742 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004743 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004744 * SND_SOC_DAIFMT_CLOCK_MASK area
4745 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004746 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
4747 if (of_get_property(np, prop, NULL))
4748 format |= SND_SOC_DAIFMT_CONT;
4749 else
4750 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004751
4752 /*
4753 * check "[prefix]bitclock-inversion"
4754 * check "[prefix]frame-inversion"
4755 * SND_SOC_DAIFMT_INV_MASK area
4756 */
4757 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
4758 bit = !!of_get_property(np, prop, NULL);
4759
4760 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
4761 frame = !!of_get_property(np, prop, NULL);
4762
4763 switch ((bit << 4) + frame) {
4764 case 0x11:
4765 format |= SND_SOC_DAIFMT_IB_IF;
4766 break;
4767 case 0x10:
4768 format |= SND_SOC_DAIFMT_IB_NF;
4769 break;
4770 case 0x01:
4771 format |= SND_SOC_DAIFMT_NB_IF;
4772 break;
4773 default:
4774 /* SND_SOC_DAIFMT_NB_NF is default */
4775 break;
4776 }
4777
4778 /*
4779 * check "[prefix]bitclock-master"
4780 * check "[prefix]frame-master"
4781 * SND_SOC_DAIFMT_MASTER_MASK area
4782 */
4783 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4784 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02004785 if (bit && bitclkmaster)
4786 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004787
4788 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4789 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02004790 if (frame && framemaster)
4791 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004792
4793 switch ((bit << 4) + frame) {
4794 case 0x11:
4795 format |= SND_SOC_DAIFMT_CBM_CFM;
4796 break;
4797 case 0x10:
4798 format |= SND_SOC_DAIFMT_CBM_CFS;
4799 break;
4800 case 0x01:
4801 format |= SND_SOC_DAIFMT_CBS_CFM;
4802 break;
4803 default:
4804 format |= SND_SOC_DAIFMT_CBS_CFS;
4805 break;
4806 }
4807
4808 return format;
4809}
4810EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4811
Kuninori Morimotocb470082013-09-10 17:39:56 -07004812int snd_soc_of_get_dai_name(struct device_node *of_node,
4813 const char **dai_name)
4814{
4815 struct snd_soc_component *pos;
4816 struct of_phandle_args args;
4817 int ret;
4818
4819 ret = of_parse_phandle_with_args(of_node, "sound-dai",
4820 "#sound-dai-cells", 0, &args);
4821 if (ret)
4822 return ret;
4823
4824 ret = -EPROBE_DEFER;
4825
4826 mutex_lock(&client_mutex);
4827 list_for_each_entry(pos, &component_list, list) {
4828 if (pos->dev->of_node != args.np)
4829 continue;
4830
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004831 if (pos->driver->of_xlate_dai_name) {
4832 ret = pos->driver->of_xlate_dai_name(pos, &args, dai_name);
4833 } else {
4834 int id = -1;
4835
4836 switch (args.args_count) {
4837 case 0:
4838 id = 0; /* same as dai_drv[0] */
4839 break;
4840 case 1:
4841 id = args.args[0];
4842 break;
4843 default:
4844 /* not supported */
4845 break;
4846 }
4847
4848 if (id < 0 || id >= pos->num_dai) {
4849 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08004850 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004851 }
Xiubo Lie41975e2013-12-20 14:39:51 +08004852
4853 ret = 0;
4854
4855 *dai_name = pos->dai_drv[id].name;
4856 if (!*dai_name)
4857 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07004858 }
4859
Kuninori Morimotocb470082013-09-10 17:39:56 -07004860 break;
4861 }
4862 mutex_unlock(&client_mutex);
4863
4864 of_node_put(args.np);
4865
4866 return ret;
4867}
4868EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
4869
Takashi Iwaic9b3a402008-12-10 07:47:22 +01004870static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004871{
Mark Brown384c89e2008-12-03 17:34:03 +00004872#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004873 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
4874 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02004875 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00004876 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00004877 }
Mark Brownc3c5a192010-09-15 18:15:14 +01004878
Mark Brown8a9dab12011-01-10 22:25:21 +00004879 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01004880 &codec_list_fops))
4881 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4882
Mark Brown8a9dab12011-01-10 22:25:21 +00004883 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01004884 &dai_list_fops))
4885 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01004886
Mark Brown8a9dab12011-01-10 22:25:21 +00004887 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01004888 &platform_list_fops))
4889 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00004890#endif
4891
Mark Brownfb257892011-04-28 10:57:54 +01004892 snd_soc_util_init();
4893
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004894 return platform_driver_register(&soc_driver);
4895}
Mark Brown4abe8e12010-10-12 17:41:03 +01004896module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004897
Mark Brown7d8c16a2008-11-30 22:11:24 +00004898static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004899{
Mark Brownfb257892011-04-28 10:57:54 +01004900 snd_soc_util_exit();
4901
Mark Brown384c89e2008-12-03 17:34:03 +00004902#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004903 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00004904#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02004905 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004906}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004907module_exit(snd_soc_exit);
4908
4909/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004910MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004911MODULE_DESCRIPTION("ALSA SoC Core");
4912MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02004913MODULE_ALIAS("platform:soc-audio");