blob: 80b7cf5ef69abe0d215c0e628b45880ded700844 [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>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020037#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000038#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020039#include <sound/pcm.h>
40#include <sound/pcm_params.h>
41#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010042#include <sound/soc-dpcm.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020043#include <sound/initval.h>
44
Mark Browna8b1d342010-11-03 18:05:58 -040045#define CREATE_TRACE_POINTS
46#include <trace/events/asoc.h>
47
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000048#define NAME_SIZE 32
49
Mark Brown384c89e2008-12-03 17:34:03 +000050#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000051struct dentry *snd_soc_debugfs_root;
52EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000053#endif
54
Mark Brownc5af3a22008-11-28 13:29:45 +000055static DEFINE_MUTEX(client_mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +000056static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000057static LIST_HEAD(codec_list);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -070058static LIST_HEAD(component_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000059
Frank Mandarinodb2a4162006-10-06 18:31:09 +020060/*
61 * This is a timeout to do a DAPM powerdown after a stream is closed().
62 * It can be used to eliminate pops between different playback streams, e.g.
63 * between two audio tracks.
64 */
65static int pmdown_time = 5000;
66module_param(pmdown_time, int, 0);
67MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
68
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000069/* returns the minimum number of bytes needed to represent
70 * a particular given value */
71static int min_bytes_needed(unsigned long val)
72{
73 int c = 0;
74 int i;
75
76 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
77 if (val & (1UL << i))
78 break;
79 c = (sizeof val * 8) - c;
80 if (!c || (c % 8))
81 c = (c + 8) / 8;
82 else
83 c /= 8;
84 return c;
85}
86
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000087/* fill buf which is 'len' bytes with a formatted
88 * string of the form 'reg: value\n' */
89static int format_register_str(struct snd_soc_codec *codec,
90 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +000091{
Stephen Warren00b317a2011-04-01 14:50:44 -060092 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
93 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000094 int ret;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000095
96 /* +2 for ': ' and + 1 for '\n' */
97 if (wordsize + regsize + 2 + 1 != len)
98 return -EINVAL;
99
Takashi Iwaid6b6c2c2015-05-26 14:40:14 +0200100 sprintf(buf, "%.*x: ", wordsize, reg);
101 buf += wordsize + 2;
102
Mark Brown25032c12011-08-01 13:52:48 +0900103 ret = snd_soc_read(codec, reg);
Takashi Iwaid6b6c2c2015-05-26 14:40:14 +0200104 if (ret < 0)
105 memset(buf, 'X', regsize);
106 else
107 sprintf(buf, "%.*x", regsize, ret);
108 buf[regsize] = '\n';
109 /* no NUL-termination needed */
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000110 return 0;
111}
112
113/* codec register dump */
114static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
115 size_t count, loff_t pos)
116{
117 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000118 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000119 int len;
120 size_t total = 0;
121 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000122
Stephen Warren00b317a2011-04-01 14:50:44 -0600123 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
124 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000125
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000126 len = wordsize + regsize + 2 + 1;
127
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000128 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000129 return 0;
130
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000131 if (codec->driver->reg_cache_step)
132 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000133
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000134 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100135 /* only support larger than PAGE_SIZE bytes debugfs
136 * entries for the default case */
137 if (p >= pos) {
138 if (total + len >= count - 1)
139 break;
140 format_register_str(codec, i, buf + total, len);
141 total += len;
Mark Brown5164d742010-07-14 16:14:33 +0100142 }
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100143 p += len;
Mark Brown2624d5f2009-11-03 21:56:13 +0000144 }
145
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000146 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000147
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000148 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000149}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000150
Mark Brown2624d5f2009-11-03 21:56:13 +0000151static ssize_t codec_reg_show(struct device *dev,
152 struct device_attribute *attr, char *buf)
153{
Mark Brown36ae1a92012-01-06 17:12:45 -0800154 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000155
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000156 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000157}
158
159static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
160
Mark Browndbe21402010-02-12 11:37:24 +0000161static ssize_t pmdown_time_show(struct device *dev,
162 struct device_attribute *attr, char *buf)
163{
Mark Brown36ae1a92012-01-06 17:12:45 -0800164 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000165
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000166 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000167}
168
169static ssize_t pmdown_time_set(struct device *dev,
170 struct device_attribute *attr,
171 const char *buf, size_t count)
172{
Mark Brown36ae1a92012-01-06 17:12:45 -0800173 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700174 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000175
Jingoo Hanb785a492013-07-19 16:24:59 +0900176 ret = kstrtol(buf, 10, &rtd->pmdown_time);
Mark Brownc593b522010-10-27 20:11:17 -0700177 if (ret)
178 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000179
180 return count;
181}
182
183static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
184
Takashi Iwaid29697d2015-01-30 20:16:37 +0100185static struct attribute *soc_dev_attrs[] = {
186 &dev_attr_codec_reg.attr,
187 &dev_attr_pmdown_time.attr,
188 NULL
189};
190
191static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
192 struct attribute *attr, int idx)
193{
194 struct device *dev = kobj_to_dev(kobj);
195 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
196
197 if (attr == &dev_attr_pmdown_time.attr)
198 return attr->mode; /* always visible */
199 return rtd->codec ? attr->mode : 0; /* enabled only with codec */
200}
201
202static const struct attribute_group soc_dapm_dev_group = {
203 .attrs = soc_dapm_dev_attrs,
204 .is_visible = soc_dev_attr_is_visible,
205};
206
207static const struct attribute_group soc_dev_roup = {
208 .attrs = soc_dev_attrs,
209 .is_visible = soc_dev_attr_is_visible,
210};
211
212static const struct attribute_group *soc_dev_attr_groups[] = {
213 &soc_dapm_dev_group,
214 &soc_dev_roup,
215 NULL
216};
217
Mark Brown2624d5f2009-11-03 21:56:13 +0000218#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000219static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000220 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000221{
222 ssize_t ret;
223 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000224 char *buf;
225
226 if (*ppos < 0 || !count)
227 return -EINVAL;
228
229 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000230 if (!buf)
231 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000232
233 ret = soc_codec_reg_show(codec, buf, count, *ppos);
234 if (ret >= 0) {
235 if (copy_to_user(user_buf, buf, ret)) {
236 kfree(buf);
237 return -EFAULT;
238 }
239 *ppos += ret;
240 }
241
Mark Brown2624d5f2009-11-03 21:56:13 +0000242 kfree(buf);
243 return ret;
244}
245
246static ssize_t codec_reg_write_file(struct file *file,
247 const char __user *user_buf, size_t count, loff_t *ppos)
248{
249 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700250 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000251 char *start = buf;
252 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000253 struct snd_soc_codec *codec = file->private_data;
Jingoo Hanb785a492013-07-19 16:24:59 +0900254 int ret;
Mark Brown2624d5f2009-11-03 21:56:13 +0000255
256 buf_size = min(count, (sizeof(buf)-1));
257 if (copy_from_user(buf, user_buf, buf_size))
258 return -EFAULT;
259 buf[buf_size] = 0;
260
Mark Brown2624d5f2009-11-03 21:56:13 +0000261 while (*start == ' ')
262 start++;
263 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000264 while (*start == ' ')
265 start++;
Jingoo Hanb785a492013-07-19 16:24:59 +0900266 ret = kstrtoul(start, 16, &value);
267 if (ret)
268 return ret;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000269
270 /* Userspace has been fiddling around behind the kernel's back */
Rusty Russell373d4d02013-01-21 17:17:39 +1030271 add_taint(TAINT_USER, LOCKDEP_NOW_UNRELIABLE);
Mark Brown0d51a9c2011-01-06 16:04:57 +0000272
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000273 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000274 return buf_size;
275}
276
277static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700278 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000279 .read = codec_reg_read_file,
280 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200281 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000282};
283
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200284static void soc_init_component_debugfs(struct snd_soc_component *component)
Russell Kinge73f3de2014-06-26 15:22:50 +0100285{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200286 if (!component->card->debugfs_card_root)
287 return;
288
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200289 if (component->debugfs_prefix) {
290 char *name;
Russell Kinge73f3de2014-06-26 15:22:50 +0100291
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200292 name = kasprintf(GFP_KERNEL, "%s:%s",
293 component->debugfs_prefix, component->name);
294 if (name) {
295 component->debugfs_root = debugfs_create_dir(name,
296 component->card->debugfs_card_root);
297 kfree(name);
298 }
299 } else {
300 component->debugfs_root = debugfs_create_dir(component->name,
301 component->card->debugfs_card_root);
302 }
Russell Kinge73f3de2014-06-26 15:22:50 +0100303
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200304 if (!component->debugfs_root) {
305 dev_warn(component->dev,
306 "ASoC: Failed to create component debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000307 return;
308 }
309
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200310 snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component),
311 component->debugfs_root);
312
313 if (component->init_debugfs)
314 component->init_debugfs(component);
315}
316
317static void soc_cleanup_component_debugfs(struct snd_soc_component *component)
318{
319 debugfs_remove_recursive(component->debugfs_root);
320}
321
322static void soc_init_codec_debugfs(struct snd_soc_component *component)
323{
324 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
325
Mark Brown2624d5f2009-11-03 21:56:13 +0000326 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200327 codec->component.debugfs_root,
Mark Brown2624d5f2009-11-03 21:56:13 +0000328 codec, &codec_reg_fops);
329 if (!codec->debugfs_reg)
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200330 dev_warn(codec->dev,
331 "ASoC: Failed to create codec register debugfs file\n");
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000332}
333
Mark Brownc3c5a192010-09-15 18:15:14 +0100334static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
335 size_t count, loff_t *ppos)
336{
337 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100338 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100339 struct snd_soc_codec *codec;
340
341 if (!buf)
342 return -ENOMEM;
343
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100344 mutex_lock(&client_mutex);
345
Mark Brown2b194f9d2010-10-13 10:52:16 +0100346 list_for_each_entry(codec, &codec_list, list) {
347 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200348 codec->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100349 if (len >= 0)
350 ret += len;
351 if (ret > PAGE_SIZE) {
352 ret = PAGE_SIZE;
353 break;
354 }
355 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100356
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100357 mutex_unlock(&client_mutex);
358
Mark Brownc3c5a192010-09-15 18:15:14 +0100359 if (ret >= 0)
360 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
361
362 kfree(buf);
363
364 return ret;
365}
366
367static const struct file_operations codec_list_fops = {
368 .read = codec_list_read_file,
369 .llseek = default_llseek,/* read accesses f_pos */
370};
371
Mark Brownf3208782010-09-15 18:19:07 +0100372static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
373 size_t count, loff_t *ppos)
374{
375 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100376 ssize_t len, ret = 0;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100377 struct snd_soc_component *component;
Mark Brownf3208782010-09-15 18:19:07 +0100378 struct snd_soc_dai *dai;
379
380 if (!buf)
381 return -ENOMEM;
382
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100383 mutex_lock(&client_mutex);
384
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100385 list_for_each_entry(component, &component_list, list) {
386 list_for_each_entry(dai, &component->dai_list, list) {
387 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
388 dai->name);
389 if (len >= 0)
390 ret += len;
391 if (ret > PAGE_SIZE) {
392 ret = PAGE_SIZE;
393 break;
394 }
Mark Brown2b194f9d2010-10-13 10:52:16 +0100395 }
396 }
Mark Brownf3208782010-09-15 18:19:07 +0100397
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100398 mutex_unlock(&client_mutex);
399
Mark Brown2b194f9d2010-10-13 10:52:16 +0100400 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100401
402 kfree(buf);
403
404 return ret;
405}
406
407static const struct file_operations dai_list_fops = {
408 .read = dai_list_read_file,
409 .llseek = default_llseek,/* read accesses f_pos */
410};
411
Mark Brown19c7ac22010-09-15 18:22:40 +0100412static ssize_t platform_list_read_file(struct file *file,
413 char __user *user_buf,
414 size_t count, loff_t *ppos)
415{
416 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100417 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100418 struct snd_soc_platform *platform;
419
420 if (!buf)
421 return -ENOMEM;
422
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100423 mutex_lock(&client_mutex);
424
Mark Brown2b194f9d2010-10-13 10:52:16 +0100425 list_for_each_entry(platform, &platform_list, list) {
426 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200427 platform->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100428 if (len >= 0)
429 ret += len;
430 if (ret > PAGE_SIZE) {
431 ret = PAGE_SIZE;
432 break;
433 }
434 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100435
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100436 mutex_unlock(&client_mutex);
437
Mark Brown2b194f9d2010-10-13 10:52:16 +0100438 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100439
440 kfree(buf);
441
442 return ret;
443}
444
445static const struct file_operations platform_list_fops = {
446 .read = platform_list_read_file,
447 .llseek = default_llseek,/* read accesses f_pos */
448};
449
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200450static void soc_init_card_debugfs(struct snd_soc_card *card)
451{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200452 if (!snd_soc_debugfs_root)
453 return;
454
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200455 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000456 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200457 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200458 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100459 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200460 return;
461 }
462
463 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
464 card->debugfs_card_root,
465 &card->pop_time);
466 if (!card->debugfs_pop_time)
467 dev_warn(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000468 "ASoC: Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200469}
470
471static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
472{
473 debugfs_remove_recursive(card->debugfs_card_root);
474}
475
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200476
477static void snd_soc_debugfs_init(void)
478{
479 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
480 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
481 pr_warn("ASoC: Failed to create debugfs directory\n");
482 snd_soc_debugfs_root = NULL;
483 return;
484 }
485
486 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
487 &codec_list_fops))
488 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
489
490 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
491 &dai_list_fops))
492 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
493
494 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
495 &platform_list_fops))
496 pr_warn("ASoC: Failed to create platform list debugfs file\n");
497}
498
499static void snd_soc_debugfs_exit(void)
500{
501 debugfs_remove_recursive(snd_soc_debugfs_root);
502}
503
Mark Brown2624d5f2009-11-03 21:56:13 +0000504#else
505
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200506#define soc_init_codec_debugfs NULL
507
508static inline void soc_init_component_debugfs(
509 struct snd_soc_component *component)
Mark Brown2624d5f2009-11-03 21:56:13 +0000510{
511}
512
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200513static inline void soc_cleanup_component_debugfs(
514 struct snd_soc_component *component)
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000515{
516}
517
Axel Linb95fccb2010-11-09 17:06:44 +0800518static inline void soc_init_card_debugfs(struct snd_soc_card *card)
519{
520}
521
522static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
523{
524}
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200525
526static inline void snd_soc_debugfs_init(void)
527{
528}
529
530static inline void snd_soc_debugfs_exit(void)
531{
532}
533
Mark Brown2624d5f2009-11-03 21:56:13 +0000534#endif
535
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100536struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
537 const char *dai_link, int stream)
538{
539 int i;
540
541 for (i = 0; i < card->num_links; i++) {
542 if (card->rtd[i].dai_link->no_pcm &&
543 !strcmp(card->rtd[i].dai_link->name, dai_link))
544 return card->rtd[i].pcm->streams[stream].substream;
545 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000546 dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100547 return NULL;
548}
549EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
550
551struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
552 const char *dai_link)
553{
554 int i;
555
556 for (i = 0; i < card->num_links; i++) {
557 if (!strcmp(card->rtd[i].dai_link->name, dai_link))
558 return &card->rtd[i];
559 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000560 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100561 return NULL;
562}
563EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
564
Richard Fitzgerald9d58a072013-08-05 13:17:28 +0100565static void codec2codec_close_delayed_work(struct work_struct *work)
566{
567 /* Currently nothing to do for c2c links
568 * Since c2c links are internal nodes in the DAPM graph and
569 * don't interface with the outside world or application layer
570 * we don't have to do any special handling on close.
571 */
572}
573
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000574#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200575/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000576int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200577{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000578 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200579 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200580 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200581
Lars-Peter Clausenc5599b82014-08-19 15:51:30 +0200582 /* If the card is not initialized yet there is nothing to do */
583 if (!card->instantiated)
Daniel Macke3509ff2009-06-03 17:44:49 +0200584 return 0;
585
Andy Green6ed25972008-06-13 16:24:05 +0100586 /* Due to the resume being scheduled into a workqueue we could
587 * suspend before that's finished - wait for it to complete.
588 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000589 snd_power_lock(card->snd_card);
590 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
591 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100592
593 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000594 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100595
Mark Browna00f90f2010-12-02 16:24:24 +0000596 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000597 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100598
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000599 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100600 continue;
601
Benoit Cousson88bd8702014-07-08 23:19:34 +0200602 for (j = 0; j < card->rtd[i].num_codecs; j++) {
603 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
604 struct snd_soc_dai_driver *drv = dai->driver;
605
606 if (drv->ops->digital_mute && dai->playback_active)
607 drv->ops->digital_mute(dai, 1);
608 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200609 }
610
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100611 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000612 for (i = 0; i < card->num_rtd; i++) {
613 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100614 continue;
615
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000616 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100617 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100618
Mark Brown87506542008-11-18 20:50:34 +0000619 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000620 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200621
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000622 for (i = 0; i < card->num_rtd; i++) {
623 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100624
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000625 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100626 continue;
627
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100628 if (cpu_dai->driver->suspend && !cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000629 cpu_dai->driver->suspend(cpu_dai);
Mark Brown1547aba2010-05-07 21:11:40 +0100630 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200631
Lars-Peter Clausen37660b62015-03-30 21:04:50 +0200632 /* close any waiting streams */
633 for (i = 0; i < card->num_rtd; i++)
Tejun Heo43829732012-08-20 14:51:24 -0700634 flush_delayed_work(&card->rtd[i].delayed_work);
Mark Brown3efab7d2010-05-09 13:25:43 +0100635
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000636 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000637
638 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100639 continue;
640
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800641 snd_soc_dapm_stream_event(&card->rtd[i],
642 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800643 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000644
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800645 snd_soc_dapm_stream_event(&card->rtd[i],
646 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800647 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000648 }
649
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200650 /* Recheck all endpoints too, their state is affected by suspend */
651 dapm_mark_endpoints_dirty(card);
Mark Browne2d32ff2012-08-31 17:38:32 -0700652 snd_soc_dapm_sync(&card->dapm);
653
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000654 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200655 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000656 /* If there are paths active then the CODEC will be held with
657 * bias _ON and should not be suspended. */
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200658 if (!codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200659 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000660 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000661 /*
662 * If the CODEC is capable of idle
663 * bias off then being in STANDBY
664 * means it's doing something,
665 * otherwise fall through.
666 */
667 if (codec->dapm.idle_bias_off) {
668 dev_dbg(codec->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200669 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000670 break;
671 }
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200672
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000673 case SND_SOC_BIAS_OFF:
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200674 if (codec->driver->suspend)
675 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000676 codec->suspended = 1;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200677 if (codec->component.regmap)
678 regcache_mark_dirty(codec->component.regmap);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800679 /* deactivate pins to sleep state */
680 pinctrl_pm_select_sleep_state(codec->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000681 break;
682 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200683 dev_dbg(codec->dev,
684 "ASoC: CODEC is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000685 break;
686 }
687 }
688 }
689
690 for (i = 0; i < card->num_rtd; i++) {
691 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
692
693 if (card->rtd[i].dai_link->ignore_suspend)
694 continue;
695
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100696 if (cpu_dai->driver->suspend && cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000697 cpu_dai->driver->suspend(cpu_dai);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800698
699 /* deactivate pins to sleep state */
700 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200701 }
702
Mark Brown87506542008-11-18 20:50:34 +0000703 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000704 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200705
706 return 0;
707}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000708EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200709
Andy Green6ed25972008-06-13 16:24:05 +0100710/* deferred resume work, so resume can complete before we finished
711 * setting our codec back up, which can be very slow on I2C
712 */
713static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200714{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000715 struct snd_soc_card *card =
716 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200717 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200718 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200719
Andy Green6ed25972008-06-13 16:24:05 +0100720 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
721 * so userspace apps are blocked from touching us
722 */
723
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000724 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100725
Mark Brown99497882010-05-07 20:24:05 +0100726 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000727 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100728
Mark Brown87506542008-11-18 20:50:34 +0000729 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000730 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200731
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100732 /* resume control bus DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000733 for (i = 0; i < card->num_rtd; i++) {
734 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100735
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000736 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100737 continue;
738
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100739 if (cpu_dai->driver->resume && cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000740 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200741 }
742
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200743 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000744 /* If the CODEC was idle over suspend then it will have been
745 * left with bias OFF or STANDBY and suspended so we must now
746 * resume. Otherwise the suspend was suppressed.
747 */
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200748 if (codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200749 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000750 case SND_SOC_BIAS_STANDBY:
751 case SND_SOC_BIAS_OFF:
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200752 if (codec->driver->resume)
753 codec->driver->resume(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000754 codec->suspended = 0;
755 break;
756 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200757 dev_dbg(codec->dev,
758 "ASoC: CODEC was on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000759 break;
760 }
Mark Brown1547aba2010-05-07 21:11:40 +0100761 }
762 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200763
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000764 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100765
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000766 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100767 continue;
768
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800769 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000770 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800771 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000772
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800773 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000774 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800775 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200776 }
777
Mark Brown3ff3f642008-05-19 12:32:25 +0200778 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000779 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100780
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000781 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100782 continue;
783
Benoit Cousson88bd8702014-07-08 23:19:34 +0200784 for (j = 0; j < card->rtd[i].num_codecs; j++) {
785 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
786 struct snd_soc_dai_driver *drv = dai->driver;
787
788 if (drv->ops->digital_mute && dai->playback_active)
789 drv->ops->digital_mute(dai, 0);
790 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200791 }
792
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000793 for (i = 0; i < card->num_rtd; i++) {
794 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100795
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000796 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100797 continue;
798
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100799 if (cpu_dai->driver->resume && !cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000800 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200801 }
802
Mark Brown87506542008-11-18 20:50:34 +0000803 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000804 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200805
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000806 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100807
808 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000809 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Mark Browne2d32ff2012-08-31 17:38:32 -0700810
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200811 /* Recheck all endpoints too, their state is affected by suspend */
812 dapm_mark_endpoints_dirty(card);
Mark Browne2d32ff2012-08-31 17:38:32 -0700813 snd_soc_dapm_sync(&card->dapm);
Andy Green6ed25972008-06-13 16:24:05 +0100814}
815
816/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000817int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100818{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000819 struct snd_soc_card *card = dev_get_drvdata(dev);
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100820 bool bus_control = false;
821 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200822
Lars-Peter Clausenc5599b82014-08-19 15:51:30 +0200823 /* If the card is not initialized yet there is nothing to do */
824 if (!card->instantiated)
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800825 return 0;
826
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800827 /* activate pins from sleep state */
828 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200829 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
830 struct snd_soc_dai **codec_dais = rtd->codec_dais;
831 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
832 int j;
833
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800834 if (cpu_dai->active)
835 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200836
837 for (j = 0; j < rtd->num_codecs; j++) {
838 struct snd_soc_dai *codec_dai = codec_dais[j];
839 if (codec_dai->active)
840 pinctrl_pm_select_default_state(codec_dai->dev);
841 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800842 }
843
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100844 /*
845 * DAIs that also act as the control bus master might have other drivers
846 * hanging off them so need to resume immediately. Other drivers don't
847 * have that problem and may take a substantial amount of time to resume
Mark Brown64ab9ba2009-03-31 11:27:03 +0100848 * due to I/O costs and anti-pop so handle them out of line.
849 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000850 for (i = 0; i < card->num_rtd; i++) {
851 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100852 bus_control |= cpu_dai->driver->bus_control;
Stephen Warren82e14e82011-05-25 14:06:41 -0600853 }
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100854 if (bus_control) {
855 dev_dbg(dev, "ASoC: Resuming control bus master immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600856 soc_resume_deferred(&card->deferred_resume_work);
857 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000858 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600859 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000860 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100861 }
Andy Green6ed25972008-06-13 16:24:05 +0100862
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200863 return 0;
864}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000865EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200866#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000867#define snd_soc_suspend NULL
868#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200869#endif
870
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100871static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800872};
873
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200874static struct snd_soc_component *soc_find_component(
875 const struct device_node *of_node, const char *name)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100876{
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200877 struct snd_soc_component *component;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100878
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100879 lockdep_assert_held(&client_mutex);
880
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200881 list_for_each_entry(component, &component_list, list) {
882 if (of_node) {
883 if (component->dev->of_node == of_node)
884 return component;
885 } else if (strcmp(component->name, name) == 0) {
886 return component;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100887 }
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100888 }
889
890 return NULL;
891}
892
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200893static struct snd_soc_dai *snd_soc_find_dai(
894 const struct snd_soc_dai_link_component *dlc)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100895{
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200896 struct snd_soc_component *component;
897 struct snd_soc_dai *dai;
Jyri Sarha3e0aa8d2015-05-26 21:59:05 +0300898 struct device_node *component_of_node;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100899
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100900 lockdep_assert_held(&client_mutex);
901
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200902 /* Find CPU DAI from registered DAIs*/
903 list_for_each_entry(component, &component_list, list) {
Jyri Sarha3e0aa8d2015-05-26 21:59:05 +0300904 component_of_node = component->dev->of_node;
905 if (!component_of_node && component->dev->parent)
906 component_of_node = component->dev->parent->of_node;
907
908 if (dlc->of_node && component_of_node != dlc->of_node)
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200909 continue;
Lars-Peter Clausen1ffae362014-10-29 21:46:30 +0100910 if (dlc->name && strcmp(component->name, dlc->name))
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200911 continue;
912 list_for_each_entry(dai, &component->dai_list, list) {
913 if (dlc->dai_name && strcmp(dai->name, dlc->dai_name))
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100914 continue;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100915
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200916 return dai;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100917 }
918 }
919
920 return NULL;
921}
922
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000923static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200924{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000925 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
926 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Benoit Cousson88bd8702014-07-08 23:19:34 +0200927 struct snd_soc_dai_link_component *codecs = dai_link->codecs;
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200928 struct snd_soc_dai_link_component cpu_dai_component;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200929 struct snd_soc_dai **codec_dais = rtd->codec_dais;
Mark Brown435c5e22008-12-04 15:32:53 +0000930 struct snd_soc_platform *platform;
Mark Brown848dd8b2011-04-27 18:16:32 +0100931 const char *platform_name;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200932 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200933
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000934 dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000935
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200936 cpu_dai_component.name = dai_link->cpu_name;
937 cpu_dai_component.of_node = dai_link->cpu_of_node;
938 cpu_dai_component.dai_name = dai_link->cpu_dai_name;
939 rtd->cpu_dai = snd_soc_find_dai(&cpu_dai_component);
Mark Brownb19e6e72012-03-14 21:18:39 +0000940 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000941 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000942 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000943 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000944 }
945
Benoit Cousson88bd8702014-07-08 23:19:34 +0200946 rtd->num_codecs = dai_link->num_codecs;
947
948 /* Find CODEC from registered CODECs */
949 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200950 codec_dais[i] = snd_soc_find_dai(&codecs[i]);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200951 if (!codec_dais[i]) {
952 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
953 codecs[i].dai_name);
954 return -EPROBE_DEFER;
955 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000956 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100957
Benoit Cousson88bd8702014-07-08 23:19:34 +0200958 /* Single codec links expect codec and codec_dai in runtime data */
959 rtd->codec_dai = codec_dais[0];
960 rtd->codec = rtd->codec_dai->codec;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100961
Mark Brown848dd8b2011-04-27 18:16:32 +0100962 /* if there's no platform we match on the empty platform */
963 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700964 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100965 platform_name = "snd-soc-dummy";
966
Mark Brownb19e6e72012-03-14 21:18:39 +0000967 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000968 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700969 if (dai_link->platform_of_node) {
970 if (platform->dev->of_node !=
971 dai_link->platform_of_node)
972 continue;
973 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200974 if (strcmp(platform->component.name, platform_name))
Stephen Warren5a504962011-12-21 10:40:59 -0700975 continue;
976 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700977
978 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000979 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000980 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000981 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000982 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000983 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000984 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000985
986 card->num_rtd++;
987
988 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000989}
990
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200991static void soc_remove_component(struct snd_soc_component *component)
Stephen Warrend12cd192012-06-08 12:34:22 -0600992{
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +0200993 if (!component->probed)
994 return;
Stephen Warrend12cd192012-06-08 12:34:22 -0600995
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200996 /* This is a HACK and will be removed soon */
997 if (component->codec)
998 list_del(&component->codec->card_list);
Stephen Warrend12cd192012-06-08 12:34:22 -0600999
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001000 if (component->remove)
1001 component->remove(component);
Stephen Warrend12cd192012-06-08 12:34:22 -06001002
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001003 snd_soc_dapm_free(snd_soc_component_get_dapm(component));
Stephen Warrend12cd192012-06-08 12:34:22 -06001004
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001005 soc_cleanup_component_debugfs(component);
1006 component->probed = 0;
1007 module_put(component->dev->driver->owner);
Stephen Warrend12cd192012-06-08 12:34:22 -06001008}
1009
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001010static void soc_remove_dai(struct snd_soc_dai *dai, int order)
Jarkko Nikula589c3562010-12-06 16:27:07 +02001011{
1012 int err;
1013
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001014 if (dai && dai->probed &&
1015 dai->driver->remove_order == order) {
1016 if (dai->driver->remove) {
1017 err = dai->driver->remove(dai);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001018 if (err < 0)
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001019 dev_err(dai->dev,
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001020 "ASoC: failed to remove %s: %d\n",
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001021 dai->name, err);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001022 }
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001023 dai->probed = 0;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001024 }
1025}
1026
Stephen Warren62ae68f2012-06-08 12:34:23 -06001027static void soc_remove_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001028{
1029 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001030 int i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001031
1032 /* unregister the rtd device */
1033 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001034 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001035 rtd->dev_registered = 0;
1036 }
1037
1038 /* remove the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001039 for (i = 0; i < rtd->num_codecs; i++)
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001040 soc_remove_dai(rtd->codec_dais[i], order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001041
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001042 soc_remove_dai(rtd->cpu_dai, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001043}
1044
Stephen Warren62ae68f2012-06-08 12:34:23 -06001045static void soc_remove_link_components(struct snd_soc_card *card, int num,
1046 int order)
1047{
1048 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1049 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001050 struct snd_soc_platform *platform = rtd->platform;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001051 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001052 int i;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001053
1054 /* remove the platform */
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001055 if (platform && platform->component.driver->remove_order == order)
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001056 soc_remove_component(&platform->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001057
1058 /* remove the CODEC-side CODEC */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001059 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001060 component = rtd->codec_dais[i]->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001061 if (component->driver->remove_order == order)
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001062 soc_remove_component(component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001063 }
1064
1065 /* remove any CPU-side CODEC */
1066 if (cpu_dai) {
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001067 if (cpu_dai->component->driver->remove_order == order)
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001068 soc_remove_component(cpu_dai->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001069 }
1070}
1071
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001072static void soc_remove_dai_links(struct snd_soc_card *card)
1073{
Liam Girdwood0168bf02011-06-07 16:08:05 +01001074 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001075
Liam Girdwood0168bf02011-06-07 16:08:05 +01001076 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1077 order++) {
1078 for (dai = 0; dai < card->num_rtd; dai++)
Stephen Warren62ae68f2012-06-08 12:34:23 -06001079 soc_remove_link_dais(card, dai, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001080 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001081
1082 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1083 order++) {
1084 for (dai = 0; dai < card->num_rtd; dai++)
1085 soc_remove_link_components(card, dai, order);
1086 }
1087
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001088 card->num_rtd = 0;
1089}
1090
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001091static void soc_set_name_prefix(struct snd_soc_card *card,
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001092 struct snd_soc_component *component)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001093{
1094 int i;
1095
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001096 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001097 return;
1098
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001099 for (i = 0; i < card->num_configs; i++) {
1100 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001101 if (map->of_node && component->dev->of_node != map->of_node)
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001102 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001103 if (map->dev_name && strcmp(component->name, map->dev_name))
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001104 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001105 component->name_prefix = map->name_prefix;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001106 break;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001107 }
1108}
1109
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001110static int soc_probe_component(struct snd_soc_card *card,
1111 struct snd_soc_component *component)
Jarkko Nikula589c3562010-12-06 16:27:07 +02001112{
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001113 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
Mark Brown888df392012-02-16 19:37:51 -08001114 struct snd_soc_dai *dai;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001115 int ret;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001116
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001117 if (component->probed)
1118 return 0;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001119
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001120 component->card = card;
1121 dapm->card = card;
1122 soc_set_name_prefix(card, component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001123
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001124 if (!try_module_get(component->dev->driver->owner))
Jarkko Nikula70d29332011-01-27 16:24:22 +02001125 return -ENODEV;
1126
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001127 soc_init_component_debugfs(component);
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001128
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001129 if (component->dapm_widgets) {
1130 ret = snd_soc_dapm_new_controls(dapm, component->dapm_widgets,
1131 component->num_dapm_widgets);
Nariman Poushinb318ad52014-04-01 13:59:33 +01001132
1133 if (ret != 0) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001134 dev_err(component->dev,
Nariman Poushinb318ad52014-04-01 13:59:33 +01001135 "Failed to create new controls %d\n", ret);
1136 goto err_probe;
1137 }
1138 }
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001139
Lars-Peter Clausen06348142014-08-20 13:08:49 +02001140 list_for_each_entry(dai, &component->dai_list, list) {
1141 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
Nariman Poushin261edc72014-03-31 15:47:12 +01001142 if (ret != 0) {
Lars-Peter Clausen06348142014-08-20 13:08:49 +02001143 dev_err(component->dev,
Nariman Poushin261edc72014-03-31 15:47:12 +01001144 "Failed to create DAI widgets %d\n", ret);
1145 goto err_probe;
1146 }
1147 }
Mark Brown888df392012-02-16 19:37:51 -08001148
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001149 if (component->probe) {
1150 ret = component->probe(component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001151 if (ret < 0) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001152 dev_err(component->dev,
1153 "ASoC: failed to probe component %d\n", ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001154 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001155 }
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001156
1157 WARN(dapm->idle_bias_off &&
1158 dapm->bias_level != SND_SOC_BIAS_OFF,
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001159 "codec %s can not start from non-off bias with idle_bias_off==1\n",
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001160 component->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001161 }
1162
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001163 if (component->controls)
1164 snd_soc_add_component_controls(component, component->controls,
1165 component->num_controls);
1166 if (component->dapm_routes)
1167 snd_soc_dapm_add_routes(dapm, component->dapm_routes,
1168 component->num_dapm_routes);
Mark Brown89b95ac02011-03-07 16:38:44 +00001169
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001170 component->probed = 1;
1171 list_add(&dapm->list, &card->dapm_list);
1172
1173 /* This is a HACK and will be removed soon */
1174 if (component->codec)
1175 list_add(&component->codec->card_list, &card->codec_dev_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001176
Jarkko Nikula70d29332011-01-27 16:24:22 +02001177 return 0;
1178
1179err_probe:
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001180 soc_cleanup_component_debugfs(component);
1181 module_put(component->dev->driver->owner);
Liam Girdwood956245e2011-07-01 16:54:08 +01001182
1183 return ret;
1184}
1185
Mark Brown36ae1a92012-01-06 17:12:45 -08001186static void rtd_release(struct device *dev)
1187{
1188 kfree(dev);
1189}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001190
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001191static int soc_post_component_init(struct snd_soc_pcm_runtime *rtd,
1192 const char *name)
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001193{
Jarkko Nikula589c3562010-12-06 16:27:07 +02001194 int ret = 0;
1195
Jarkko Nikula589c3562010-12-06 16:27:07 +02001196 /* register the rtd device */
Mark Brown36ae1a92012-01-06 17:12:45 -08001197 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1198 if (!rtd->dev)
1199 return -ENOMEM;
1200 device_initialize(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001201 rtd->dev->parent = rtd->card->dev;
Mark Brown36ae1a92012-01-06 17:12:45 -08001202 rtd->dev->release = rtd_release;
Takashi Iwaid29697d2015-01-30 20:16:37 +01001203 rtd->dev->groups = soc_dev_attr_groups;
Lars-Peter Clausenf294afe2014-08-17 11:28:35 +02001204 dev_set_name(rtd->dev, "%s", name);
Mark Brown36ae1a92012-01-06 17:12:45 -08001205 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001206 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001207 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1208 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1209 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1210 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001211 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001212 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001213 /* calling put_device() here to free the rtd->dev */
1214 put_device(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001215 dev_err(rtd->card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001216 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001217 return ret;
1218 }
1219 rtd->dev_registered = 1;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001220 return 0;
1221}
1222
Stephen Warren62ae68f2012-06-08 12:34:23 -06001223static int soc_probe_link_components(struct snd_soc_card *card, int num,
1224 int order)
1225{
1226 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Stephen Warren62ae68f2012-06-08 12:34:23 -06001227 struct snd_soc_platform *platform = rtd->platform;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001228 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001229 int i, ret;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001230
1231 /* probe the CPU-side component, if it is a CODEC */
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001232 component = rtd->cpu_dai->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001233 if (component->driver->probe_order == order) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001234 ret = soc_probe_component(card, component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001235 if (ret < 0)
1236 return ret;
1237 }
1238
Benoit Cousson88bd8702014-07-08 23:19:34 +02001239 /* probe the CODEC-side components */
1240 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001241 component = rtd->codec_dais[i]->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001242 if (component->driver->probe_order == order) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001243 ret = soc_probe_component(card, component);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001244 if (ret < 0)
1245 return ret;
1246 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001247 }
1248
1249 /* probe the platform */
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001250 if (platform->component.driver->probe_order == order) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001251 ret = soc_probe_component(card, &platform->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001252 if (ret < 0)
1253 return ret;
1254 }
1255
1256 return 0;
1257}
1258
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001259static int soc_probe_dai(struct snd_soc_dai *dai, int order)
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001260{
1261 int ret;
1262
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001263 if (!dai->probed && dai->driver->probe_order == order) {
1264 if (dai->driver->probe) {
1265 ret = dai->driver->probe(dai);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001266 if (ret < 0) {
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001267 dev_err(dai->dev,
1268 "ASoC: failed to probe DAI %s: %d\n",
1269 dai->name, ret);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001270 return ret;
1271 }
1272 }
1273
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001274 dai->probed = 1;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001275 }
1276
1277 return 0;
1278}
1279
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001280static int soc_link_dai_widgets(struct snd_soc_card *card,
1281 struct snd_soc_dai_link *dai_link,
Benoit Cousson3f901a02014-07-01 09:47:54 +02001282 struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001283{
Benoit Cousson3f901a02014-07-01 09:47:54 +02001284 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1285 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001286 struct snd_soc_dapm_widget *play_w, *capture_w;
1287 int ret;
1288
Benoit Cousson88bd8702014-07-08 23:19:34 +02001289 if (rtd->num_codecs > 1)
1290 dev_warn(card->dev, "ASoC: Multiple codecs not supported yet\n");
1291
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001292 /* link the DAI widgets */
1293 play_w = codec_dai->playback_widget;
1294 capture_w = cpu_dai->capture_widget;
1295 if (play_w && capture_w) {
1296 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00001297 dai_link->num_params, capture_w,
1298 play_w);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001299 if (ret != 0) {
1300 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1301 play_w->name, capture_w->name, ret);
1302 return ret;
1303 }
1304 }
1305
1306 play_w = cpu_dai->playback_widget;
1307 capture_w = codec_dai->capture_widget;
1308 if (play_w && capture_w) {
1309 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00001310 dai_link->num_params, capture_w,
1311 play_w);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001312 if (ret != 0) {
1313 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1314 play_w->name, capture_w->name, ret);
1315 return ret;
1316 }
1317 }
1318
1319 return 0;
1320}
1321
Stephen Warren62ae68f2012-06-08 12:34:23 -06001322static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001323{
1324 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1325 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownc74184e2012-04-04 22:12:09 +01001326 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001327 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001328
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001329 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Liam Girdwood0168bf02011-06-07 16:08:05 +01001330 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001331
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001332 /* set default power off timeout */
1333 rtd->pmdown_time = pmdown_time;
1334
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001335 ret = soc_probe_dai(cpu_dai, order);
1336 if (ret)
1337 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001338
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001339 /* probe the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001340 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001341 ret = soc_probe_dai(rtd->codec_dais[i], order);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001342 if (ret)
1343 return ret;
1344 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001345
Liam Girdwood0168bf02011-06-07 16:08:05 +01001346 /* complete DAI probe during last probe */
1347 if (order != SND_SOC_COMP_ORDER_LAST)
1348 return 0;
1349
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001350 /* do machine specific initialization */
1351 if (dai_link->init) {
1352 ret = dai_link->init(rtd);
1353 if (ret < 0) {
1354 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1355 dai_link->name, ret);
1356 return ret;
1357 }
1358 }
1359
Kuninori Morimotoa5053a82015-04-10 09:47:00 +00001360 if (dai_link->dai_fmt)
1361 snd_soc_runtime_set_dai_fmt(rtd, dai_link->dai_fmt);
1362
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001363 ret = soc_post_component_init(rtd, dai_link->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001364 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001365 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001366
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001367#ifdef CONFIG_DEBUG_FS
1368 /* add DPCM sysfs entries */
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02001369 if (dai_link->dynamic)
1370 soc_dpcm_debugfs_add(rtd);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001371#endif
1372
Namarta Kohli1245b702012-08-16 17:10:41 +05301373 if (cpu_dai->driver->compress_dai) {
1374 /*create compress_device"*/
1375 ret = soc_new_compress(rtd, num);
Mark Brownc74184e2012-04-04 22:12:09 +01001376 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001377 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301378 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001379 return ret;
1380 }
1381 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301382
1383 if (!dai_link->params) {
1384 /* create the pcm */
1385 ret = soc_new_pcm(rtd, num);
1386 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001387 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301388 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001389 return ret;
1390 }
Namarta Kohli1245b702012-08-16 17:10:41 +05301391 } else {
Richard Fitzgerald9d58a072013-08-05 13:17:28 +01001392 INIT_DELAYED_WORK(&rtd->delayed_work,
1393 codec2codec_close_delayed_work);
1394
Namarta Kohli1245b702012-08-16 17:10:41 +05301395 /* link the DAI widgets */
Benoit Cousson3f901a02014-07-01 09:47:54 +02001396 ret = soc_link_dai_widgets(card, dai_link, rtd);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001397 if (ret)
1398 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01001399 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001400 }
1401
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001402 return 0;
1403}
1404
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001405static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
Mark Brownb19e6e72012-03-14 21:18:39 +00001406{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001407 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001408 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001409 const char *name = aux_dev->codec_name;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001410
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001411 rtd->component = soc_find_component(aux_dev->codec_of_node, name);
1412 if (!rtd->component) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001413 if (aux_dev->codec_of_node)
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001414 name = of_node_full_name(aux_dev->codec_of_node);
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001415
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001416 dev_err(card->dev, "ASoC: %s not registered\n", name);
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001417 return -EPROBE_DEFER;
1418 }
1419
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001420 /*
1421 * Some places still reference rtd->codec, so we have to keep that
1422 * initialized if the component is a CODEC. Once all those references
1423 * have been removed, this code can be removed as well.
1424 */
1425 rtd->codec = rtd->component->codec;
1426
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001427 return 0;
Mark Brownb19e6e72012-03-14 21:18:39 +00001428}
1429
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001430static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1431{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001432 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001433 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001434 int ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001435
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001436 ret = soc_probe_component(card, rtd->component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001437 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001438 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001439
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001440 /* do machine specific initialization */
1441 if (aux_dev->init) {
Lars-Peter Clausen57bf7722014-08-19 15:51:23 +02001442 ret = aux_dev->init(rtd->component);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001443 if (ret < 0) {
1444 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1445 aux_dev->name, ret);
1446 return ret;
1447 }
1448 }
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001449
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001450 return soc_post_component_init(rtd, aux_dev->name);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001451}
1452
1453static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1454{
1455 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001456 struct snd_soc_component *component = rtd->component;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001457
1458 /* unregister the rtd device */
1459 if (rtd->dev_registered) {
Chuansheng Liud3bf1562012-12-26 00:57:32 +08001460 device_unregister(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001461 rtd->dev_registered = 0;
1462 }
1463
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001464 if (component && component->probed)
1465 soc_remove_component(component);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001466}
1467
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001468static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001469{
1470 int ret;
1471
1472 if (codec->cache_init)
1473 return 0;
1474
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001475 ret = snd_soc_cache_init(codec);
1476 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001477 dev_err(codec->dev,
1478 "ASoC: Failed to set cache compression type: %d\n",
1479 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001480 return ret;
1481 }
1482 codec->cache_init = 1;
1483 return 0;
1484}
1485
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001486/**
1487 * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1488 * @rtd: The runtime for which the DAI link format should be changed
1489 * @dai_fmt: The new DAI link format
1490 *
1491 * This function updates the DAI link format for all DAIs connected to the DAI
1492 * link for the specified runtime.
1493 *
1494 * Note: For setups with a static format set the dai_fmt field in the
1495 * corresponding snd_dai_link struct instead of using this function.
1496 *
1497 * Returns 0 on success, otherwise a negative error code.
1498 */
1499int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
1500 unsigned int dai_fmt)
1501{
1502 struct snd_soc_dai **codec_dais = rtd->codec_dais;
1503 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1504 unsigned int i;
1505 int ret;
1506
1507 for (i = 0; i < rtd->num_codecs; i++) {
1508 struct snd_soc_dai *codec_dai = codec_dais[i];
1509
1510 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1511 if (ret != 0 && ret != -ENOTSUPP) {
1512 dev_warn(codec_dai->dev,
1513 "ASoC: Failed to set DAI format: %d\n", ret);
1514 return ret;
1515 }
1516 }
1517
1518 /* Flip the polarity for the "CPU" end of a CODEC<->CODEC link */
1519 if (cpu_dai->codec) {
1520 unsigned int inv_dai_fmt;
1521
1522 inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
1523 switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1524 case SND_SOC_DAIFMT_CBM_CFM:
1525 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1526 break;
1527 case SND_SOC_DAIFMT_CBM_CFS:
1528 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1529 break;
1530 case SND_SOC_DAIFMT_CBS_CFM:
1531 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1532 break;
1533 case SND_SOC_DAIFMT_CBS_CFS:
1534 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1535 break;
1536 }
1537
1538 dai_fmt = inv_dai_fmt;
1539 }
1540
1541 ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt);
1542 if (ret != 0 && ret != -ENOTSUPP) {
1543 dev_warn(cpu_dai->dev,
1544 "ASoC: Failed to set DAI format: %d\n", ret);
1545 return ret;
1546 }
1547
1548 return 0;
1549}
Lars-Peter Clausenddaca252015-01-08 12:23:05 +01001550EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt);
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001551
Mark Brownb19e6e72012-03-14 21:18:39 +00001552static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001553{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001554 struct snd_soc_codec *codec;
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001555 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001556
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01001557 mutex_lock(&client_mutex);
Liam Girdwood01b9d992012-03-07 10:38:25 +00001558 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001559
Mark Brownb19e6e72012-03-14 21:18:39 +00001560 /* bind DAIs */
1561 for (i = 0; i < card->num_links; i++) {
1562 ret = soc_bind_dai_link(card, i);
1563 if (ret != 0)
1564 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001565 }
1566
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001567 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00001568 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001569 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00001570 if (ret != 0)
1571 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001572 }
1573
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001574 /* initialize the register cache for each available codec */
1575 list_for_each_entry(codec, &codec_list, list) {
1576 if (codec->cache_init)
1577 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001578 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001579 if (ret < 0)
1580 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001581 }
1582
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001583 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01001584 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001585 card->owner, 0, &card->snd_card);
1586 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001587 dev_err(card->dev,
1588 "ASoC: can't create sound card for card %s: %d\n",
1589 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001590 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001591 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001592
Lars-Peter Clausen0757d832015-04-09 10:52:36 +02001593 soc_init_card_debugfs(card);
1594
Mark Browne37a4972011-03-02 18:21:57 +00001595 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1596 card->dapm.dev = card->dev;
1597 card->dapm.card = card;
1598 list_add(&card->dapm.list, &card->dapm_list);
1599
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001600#ifdef CONFIG_DEBUG_FS
1601 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1602#endif
1603
Mark Brown88ee1c62011-02-02 10:43:26 +00001604#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001605 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001606 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001607#endif
Andy Green6ed25972008-06-13 16:24:05 +01001608
Mark Brown9a841eb2011-04-12 17:51:37 -07001609 if (card->dapm_widgets)
1610 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1611 card->num_dapm_widgets);
1612
Nicolin Chenf23e8602015-02-14 17:22:49 -08001613 if (card->of_dapm_widgets)
1614 snd_soc_dapm_new_controls(&card->dapm, card->of_dapm_widgets,
1615 card->num_of_dapm_widgets);
1616
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001617 /* initialise the sound card only once */
1618 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001619 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001620 if (ret < 0)
1621 goto card_probe_error;
1622 }
1623
Stephen Warren62ae68f2012-06-08 12:34:23 -06001624 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001625 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1626 order++) {
1627 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001628 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001629 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001630 dev_err(card->dev,
1631 "ASoC: failed to instantiate card %d\n",
1632 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001633 goto probe_dai_err;
1634 }
1635 }
1636 }
1637
1638 /* probe all DAI links on this card */
1639 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1640 order++) {
1641 for (i = 0; i < card->num_links; i++) {
1642 ret = soc_probe_link_dais(card, i, order);
1643 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001644 dev_err(card->dev,
1645 "ASoC: failed to instantiate card %d\n",
1646 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001647 goto probe_dai_err;
1648 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001649 }
1650 }
1651
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001652 for (i = 0; i < card->num_aux_devs; i++) {
1653 ret = soc_probe_aux_dev(card, i);
1654 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001655 dev_err(card->dev,
1656 "ASoC: failed to add auxiliary devices %d\n",
1657 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001658 goto probe_aux_dev_err;
1659 }
1660 }
1661
Mark Brown888df392012-02-16 19:37:51 -08001662 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00001663 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08001664
Mark Brownb7af1da2011-04-07 19:18:44 +09001665 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001666 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001667
Mark Brownb8ad29d2011-03-02 18:35:51 +00001668 if (card->dapm_routes)
1669 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1670 card->num_dapm_routes);
1671
Nicolin Chenf23e8602015-02-14 17:22:49 -08001672 if (card->of_dapm_routes)
1673 snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes,
1674 card->num_of_dapm_routes);
Mark Brown75d9ac42011-09-27 16:41:01 +01001675
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001676 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001677 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001678 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1679 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001680 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1681 "%s", card->driver_name ? card->driver_name : card->name);
1682 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1683 switch (card->snd_card->driver[i]) {
1684 case '_':
1685 case '-':
1686 case '\0':
1687 break;
1688 default:
1689 if (!isalnum(card->snd_card->driver[i]))
1690 card->snd_card->driver[i] = '_';
1691 break;
1692 }
1693 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001694
Mark Brown28e9ad92011-03-02 18:36:34 +00001695 if (card->late_probe) {
1696 ret = card->late_probe(card);
1697 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001698 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001699 card->name, ret);
1700 goto probe_aux_dev_err;
1701 }
1702 }
1703
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001704 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001705
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001706 ret = snd_card_register(card->snd_card);
1707 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001708 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1709 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001710 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001711 }
1712
Mark Brown435c5e22008-12-04 15:32:53 +00001713 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001714 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001715 mutex_unlock(&card->mutex);
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01001716 mutex_unlock(&client_mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001717
1718 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001719
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001720probe_aux_dev_err:
1721 for (i = 0; i < card->num_aux_devs; i++)
1722 soc_remove_aux_dev(card, i);
1723
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001724probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001725 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001726
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001727card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001728 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001729 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001730
Lars-Peter Clausen0757d832015-04-09 10:52:36 +02001731 soc_cleanup_card_debugfs(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001732 snd_card_free(card->snd_card);
1733
Mark Brownb19e6e72012-03-14 21:18:39 +00001734base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001735 mutex_unlock(&card->mutex);
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01001736 mutex_unlock(&client_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001737
Mark Brownb19e6e72012-03-14 21:18:39 +00001738 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001739}
1740
1741/* probes a new socdev */
1742static int soc_probe(struct platform_device *pdev)
1743{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001744 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001745
Vinod Koul70a7ca32011-01-14 19:22:48 +05301746 /*
1747 * no card, so machine driver should be registering card
1748 * we should not be here in that case so ret error
1749 */
1750 if (!card)
1751 return -EINVAL;
1752
Mark Brownfe4085e2012-03-02 13:07:41 +00001753 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001754 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001755 card->name);
1756
Mark Brown435c5e22008-12-04 15:32:53 +00001757 /* Bodge while we unpick instantiation */
1758 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001759
Mark Brown28d528c2012-08-09 18:45:23 +01001760 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001761}
1762
Vinod Koulb0e26482011-01-13 22:48:02 +05301763static int soc_cleanup_card_resources(struct snd_soc_card *card)
1764{
Vinod Koulb0e26482011-01-13 22:48:02 +05301765 int i;
1766
1767 /* make sure any delayed work runs */
1768 for (i = 0; i < card->num_rtd; i++) {
1769 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001770 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301771 }
1772
1773 /* remove auxiliary devices */
1774 for (i = 0; i < card->num_aux_devs; i++)
1775 soc_remove_aux_dev(card, i);
1776
1777 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001778 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301779
1780 soc_cleanup_card_debugfs(card);
1781
1782 /* remove the card */
1783 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001784 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301785
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001786 snd_soc_dapm_free(&card->dapm);
1787
Vinod Koulb0e26482011-01-13 22:48:02 +05301788 snd_card_free(card->snd_card);
1789 return 0;
1790
1791}
1792
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001793/* removes a socdev */
1794static int soc_remove(struct platform_device *pdev)
1795{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001796 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001797
Mark Brownc5af3a22008-11-28 13:29:45 +00001798 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001799 return 0;
1800}
1801
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001802int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001803{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001804 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001805 int i;
Mark Brown51737472009-06-22 13:16:51 +01001806
1807 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001808 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001809
1810 /* Flush out pmdown_time work - we actually do want to run it
1811 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001812 for (i = 0; i < card->num_rtd; i++) {
1813 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001814 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001815 }
Mark Brown51737472009-06-22 13:16:51 +01001816
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001817 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001818
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001819 /* deactivate pins to sleep state */
1820 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001821 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1822 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1823 int j;
1824
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001825 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001826 for (j = 0; j < rtd->num_codecs; j++) {
1827 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
1828 pinctrl_pm_select_sleep_state(codec_dai->dev);
1829 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001830 }
1831
Mark Brown416356f2009-06-30 19:05:15 +01001832 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001833}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001834EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001835
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001836const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301837 .suspend = snd_soc_suspend,
1838 .resume = snd_soc_resume,
1839 .freeze = snd_soc_suspend,
1840 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001841 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301842 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001843};
Stephen Warrendeb26072011-04-05 19:35:30 -06001844EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001845
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001846/* ASoC platform driver */
1847static struct platform_driver soc_driver = {
1848 .driver = {
1849 .name = "soc-audio",
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001850 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001851 },
1852 .probe = soc_probe,
1853 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001854};
1855
Mark Brown096e49d2009-07-05 15:12:22 +01001856/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001857 * snd_soc_cnew - create new control
1858 * @_template: control template
1859 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001860 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001861 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001862 *
1863 * Create a new mixer control from a template control.
1864 *
1865 * Returns 0 for success, else error.
1866 */
1867struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08001868 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00001869 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001870{
1871 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001872 struct snd_kcontrol *kcontrol;
1873 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001874
1875 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001876 template.index = 0;
1877
Mark Brownefb7ac32011-03-08 17:23:24 +00001878 if (!long_name)
1879 long_name = template.name;
1880
1881 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02001882 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00001883 if (!name)
1884 return NULL;
1885
Mark Brownefb7ac32011-03-08 17:23:24 +00001886 template.name = name;
1887 } else {
1888 template.name = long_name;
1889 }
1890
1891 kcontrol = snd_ctl_new1(&template, data);
1892
1893 kfree(name);
1894
1895 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001896}
1897EXPORT_SYMBOL_GPL(snd_soc_cnew);
1898
Liam Girdwood022658b2012-02-03 17:43:09 +00001899static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
1900 const struct snd_kcontrol_new *controls, int num_controls,
1901 const char *prefix, void *data)
1902{
1903 int err, i;
1904
1905 for (i = 0; i < num_controls; i++) {
1906 const struct snd_kcontrol_new *control = &controls[i];
1907 err = snd_ctl_add(card, snd_soc_cnew(control, data,
1908 control->name, prefix));
1909 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001910 dev_err(dev, "ASoC: Failed to add %s: %d\n",
1911 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00001912 return err;
1913 }
1914 }
1915
1916 return 0;
1917}
1918
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01001919struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
1920 const char *name)
1921{
1922 struct snd_card *card = soc_card->snd_card;
1923 struct snd_kcontrol *kctl;
1924
1925 if (unlikely(!name))
1926 return NULL;
1927
1928 list_for_each_entry(kctl, &card->controls, list)
1929 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
1930 return kctl;
1931 return NULL;
1932}
1933EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
1934
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001935/**
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001936 * snd_soc_add_component_controls - Add an array of controls to a component.
1937 *
1938 * @component: Component to add controls to
1939 * @controls: Array of controls to add
1940 * @num_controls: Number of elements in the array
1941 *
1942 * Return: 0 for success, else error.
1943 */
1944int snd_soc_add_component_controls(struct snd_soc_component *component,
1945 const struct snd_kcontrol_new *controls, unsigned int num_controls)
1946{
1947 struct snd_card *card = component->card->snd_card;
1948
1949 return snd_soc_add_controls(card, component->dev, controls,
1950 num_controls, component->name_prefix, component);
1951}
1952EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
1953
1954/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001955 * snd_soc_add_codec_controls - add an array of controls to a codec.
1956 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00001957 * duplicating this code.
1958 *
1959 * @codec: codec to add controls to
1960 * @controls: array of controls to add
1961 * @num_controls: number of elements in the array
1962 *
1963 * Return 0 for success, else error.
1964 */
Liam Girdwood022658b2012-02-03 17:43:09 +00001965int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001966 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Ian Molton3e8e1952009-01-09 00:23:21 +00001967{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001968 return snd_soc_add_component_controls(&codec->component, controls,
1969 num_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001970}
Liam Girdwood022658b2012-02-03 17:43:09 +00001971EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001972
1973/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001974 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00001975 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001976 *
1977 * @platform: platform to add controls to
1978 * @controls: array of controls to add
1979 * @num_controls: number of elements in the array
1980 *
1981 * Return 0 for success, else error.
1982 */
1983int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001984 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001985{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001986 return snd_soc_add_component_controls(&platform->component, controls,
1987 num_controls);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001988}
1989EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
1990
1991/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001992 * snd_soc_add_card_controls - add an array of controls to a SoC card.
1993 * Convenience function to add a list of controls.
1994 *
1995 * @soc_card: SoC card to add controls to
1996 * @controls: array of controls to add
1997 * @num_controls: number of elements in the array
1998 *
1999 * Return 0 for success, else error.
2000 */
2001int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2002 const struct snd_kcontrol_new *controls, int num_controls)
2003{
2004 struct snd_card *card = soc_card->snd_card;
2005
2006 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2007 NULL, soc_card);
2008}
2009EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2010
2011/**
2012 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2013 * Convienience function to add a list of controls.
2014 *
2015 * @dai: DAI to add controls to
2016 * @controls: array of controls to add
2017 * @num_controls: number of elements in the array
2018 *
2019 * Return 0 for success, else error.
2020 */
2021int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2022 const struct snd_kcontrol_new *controls, int num_controls)
2023{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01002024 struct snd_card *card = dai->component->card->snd_card;
Liam Girdwood022658b2012-02-03 17:43:09 +00002025
2026 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2027 NULL, dai);
2028}
2029EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2030
2031/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002032 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2033 * @dai: DAI
2034 * @clk_id: DAI specific clock ID
2035 * @freq: new clock frequency in Hz
2036 * @dir: new clock direction - input/output.
2037 *
2038 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2039 */
2040int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2041 unsigned int freq, int dir)
2042{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002043 if (dai->driver && dai->driver->ops->set_sysclk)
2044 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002045 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002046 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00002047 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002048 else
Mark Brown1104a9c2014-01-15 19:04:19 +00002049 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002050}
2051EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2052
2053/**
Mark Brownec4ee522011-03-07 20:58:11 +00002054 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2055 * @codec: CODEC
2056 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01002057 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00002058 * @freq: new clock frequency in Hz
2059 * @dir: new clock direction - input/output.
2060 *
2061 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2062 */
2063int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01002064 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00002065{
2066 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002067 return codec->driver->set_sysclk(codec, clk_id, source,
2068 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002069 else
Mark Brown1104a9c2014-01-15 19:04:19 +00002070 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00002071}
2072EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2073
2074/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002075 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2076 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002077 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002078 * @div: new clock divisor.
2079 *
2080 * Configures the clock dividers. This is used to derive the best DAI bit and
2081 * frame clocks from the system or master clock. It's best to set the DAI bit
2082 * and frame clocks as low as possible to save system power.
2083 */
2084int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2085 int div_id, int div)
2086{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002087 if (dai->driver && dai->driver->ops->set_clkdiv)
2088 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002089 else
2090 return -EINVAL;
2091}
2092EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2093
2094/**
2095 * snd_soc_dai_set_pll - configure DAI PLL.
2096 * @dai: DAI
2097 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002098 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002099 * @freq_in: PLL input clock frequency in Hz
2100 * @freq_out: requested PLL output clock frequency in Hz
2101 *
2102 * Configures and enables PLL to generate output clock based on input clock.
2103 */
Mark Brown85488032009-09-05 18:52:16 +01002104int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2105 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002106{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002107 if (dai->driver && dai->driver->ops->set_pll)
2108 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002109 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002110 else if (dai->codec && dai->codec->driver->set_pll)
2111 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2112 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002113 else
2114 return -EINVAL;
2115}
2116EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2117
Mark Brownec4ee522011-03-07 20:58:11 +00002118/*
2119 * snd_soc_codec_set_pll - configure codec PLL.
2120 * @codec: CODEC
2121 * @pll_id: DAI specific PLL ID
2122 * @source: DAI specific source for the PLL
2123 * @freq_in: PLL input clock frequency in Hz
2124 * @freq_out: requested PLL output clock frequency in Hz
2125 *
2126 * Configures and enables PLL to generate output clock based on input clock.
2127 */
2128int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2129 unsigned int freq_in, unsigned int freq_out)
2130{
2131 if (codec->driver->set_pll)
2132 return codec->driver->set_pll(codec, pll_id, source,
2133 freq_in, freq_out);
2134 else
2135 return -EINVAL;
2136}
2137EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2138
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002139/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01002140 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2141 * @dai: DAI
2142 * @ratio Ratio of BCLK to Sample rate.
2143 *
2144 * Configures the DAI for a preset BCLK to sample rate ratio.
2145 */
2146int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2147{
2148 if (dai->driver && dai->driver->ops->set_bclk_ratio)
2149 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2150 else
2151 return -EINVAL;
2152}
2153EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2154
2155/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002156 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2157 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002158 * @fmt: SND_SOC_DAIFMT_ format value.
2159 *
2160 * Configures the DAI hardware format and clocking.
2161 */
2162int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2163{
Shawn Guo5e4ba562012-03-09 00:59:40 +08002164 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002165 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08002166 if (dai->driver->ops->set_fmt == NULL)
2167 return -ENOTSUPP;
2168 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002169}
2170EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2171
2172/**
Xiubo Lie5c21512014-03-21 14:17:12 +08002173 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08002174 * @slots: Number of slots in use.
2175 * @tx_mask: bitmask representing active TX slots.
2176 * @rx_mask: bitmask representing active RX slots.
2177 *
2178 * Generates the TDM tx and rx slot default masks for DAI.
2179 */
Xiubo Lie5c21512014-03-21 14:17:12 +08002180static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002181 unsigned int *tx_mask,
2182 unsigned int *rx_mask)
2183{
2184 if (*tx_mask || *rx_mask)
2185 return 0;
2186
2187 if (!slots)
2188 return -EINVAL;
2189
2190 *tx_mask = (1 << slots) - 1;
2191 *rx_mask = (1 << slots) - 1;
2192
2193 return 0;
2194}
2195
2196/**
Lars-Peter Clausene46c9362015-01-12 10:27:20 +01002197 * snd_soc_dai_set_tdm_slot() - Configures a DAI for TDM operation
2198 * @dai: The DAI to configure
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002199 * @tx_mask: bitmask representing active TX slots.
2200 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002201 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002202 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002203 *
Lars-Peter Clausene46c9362015-01-12 10:27:20 +01002204 * This function configures the specified DAI for TDM operation. @slot contains
2205 * the total number of slots of the TDM stream and @slot_with the width of each
2206 * slot in bit clock cycles. @tx_mask and @rx_mask are bitmasks specifying the
2207 * active slots of the TDM stream for the specified DAI, i.e. which slots the
2208 * DAI should write to or read from. If a bit is set the corresponding slot is
2209 * active, if a bit is cleared the corresponding slot is inactive. Bit 0 maps to
2210 * the first slot, bit 1 to the second slot and so on. The first active slot
2211 * maps to the first channel of the DAI, the second active slot to the second
2212 * channel and so on.
2213 *
2214 * TDM mode can be disabled by passing 0 for @slots. In this case @tx_mask,
2215 * @rx_mask and @slot_width will be ignored.
2216 *
2217 * Returns 0 on success, a negative error code otherwise.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002218 */
2219int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002220 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002221{
Xiubo Lie5c21512014-03-21 14:17:12 +08002222 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
2223 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002224 &tx_mask, &rx_mask);
2225 else
Xiubo Lie5c21512014-03-21 14:17:12 +08002226 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08002227
Benoit Cousson88bd8702014-07-08 23:19:34 +02002228 dai->tx_mask = tx_mask;
2229 dai->rx_mask = rx_mask;
2230
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002231 if (dai->driver && dai->driver->ops->set_tdm_slot)
2232 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002233 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002234 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08002235 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002236}
2237EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2238
2239/**
Barry Song472df3c2009-09-12 01:16:29 +08002240 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2241 * @dai: DAI
2242 * @tx_num: how many TX channels
2243 * @tx_slot: pointer to an array which imply the TX slot number channel
2244 * 0~num-1 uses
2245 * @rx_num: how many RX channels
2246 * @rx_slot: pointer to an array which imply the RX slot number channel
2247 * 0~num-1 uses
2248 *
2249 * configure the relationship between channel number and TDM slot number.
2250 */
2251int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2252 unsigned int tx_num, unsigned int *tx_slot,
2253 unsigned int rx_num, unsigned int *rx_slot)
2254{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002255 if (dai->driver && dai->driver->ops->set_channel_map)
2256 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002257 rx_num, rx_slot);
2258 else
2259 return -EINVAL;
2260}
2261EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2262
2263/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002264 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2265 * @dai: DAI
2266 * @tristate: tristate enable
2267 *
2268 * Tristates the DAI so that others can use it.
2269 */
2270int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2271{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002272 if (dai->driver && dai->driver->ops->set_tristate)
2273 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002274 else
2275 return -EINVAL;
2276}
2277EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2278
2279/**
2280 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2281 * @dai: DAI
2282 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00002283 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002284 *
2285 * Mutes the DAI DAC.
2286 */
Mark Brownda183962013-02-06 15:44:07 +00002287int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2288 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002289{
Mark Brownda183962013-02-06 15:44:07 +00002290 if (!dai->driver)
2291 return -ENOTSUPP;
2292
2293 if (dai->driver->ops->mute_stream)
2294 return dai->driver->ops->mute_stream(dai, mute, direction);
2295 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2296 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002297 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002298 else
Mark Brown04570c62012-04-13 19:16:03 +01002299 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002300}
2301EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2302
Benoit Cousson88bd8702014-07-08 23:19:34 +02002303static int snd_soc_init_multicodec(struct snd_soc_card *card,
2304 struct snd_soc_dai_link *dai_link)
2305{
2306 /* Legacy codec/codec_dai link is a single entry in multicodec */
2307 if (dai_link->codec_name || dai_link->codec_of_node ||
2308 dai_link->codec_dai_name) {
2309 dai_link->num_codecs = 1;
2310
2311 dai_link->codecs = devm_kzalloc(card->dev,
2312 sizeof(struct snd_soc_dai_link_component),
2313 GFP_KERNEL);
2314 if (!dai_link->codecs)
2315 return -ENOMEM;
2316
2317 dai_link->codecs[0].name = dai_link->codec_name;
2318 dai_link->codecs[0].of_node = dai_link->codec_of_node;
2319 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
2320 }
2321
2322 if (!dai_link->codecs) {
2323 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
2324 return -EINVAL;
2325 }
2326
2327 return 0;
2328}
2329
Mark Brownc5af3a22008-11-28 13:29:45 +00002330/**
2331 * snd_soc_register_card - Register a card with the ASoC core
2332 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002333 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002334 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002335 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302336int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002337{
Benoit Cousson88bd8702014-07-08 23:19:34 +02002338 int i, j, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002339
Mark Brownc5af3a22008-11-28 13:29:45 +00002340 if (!card->name || !card->dev)
2341 return -EINVAL;
2342
Stephen Warren5a504962011-12-21 10:40:59 -07002343 for (i = 0; i < card->num_links; i++) {
2344 struct snd_soc_dai_link *link = &card->dai_link[i];
2345
Benoit Cousson88bd8702014-07-08 23:19:34 +02002346 ret = snd_soc_init_multicodec(card, link);
2347 if (ret) {
2348 dev_err(card->dev, "ASoC: failed to init multicodec\n");
2349 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07002350 }
Benoit Cousson88bd8702014-07-08 23:19:34 +02002351
2352 for (j = 0; j < link->num_codecs; j++) {
2353 /*
2354 * Codec must be specified by 1 of name or OF node,
2355 * not both or neither.
2356 */
2357 if (!!link->codecs[j].name ==
2358 !!link->codecs[j].of_node) {
2359 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
2360 link->name);
2361 return -EINVAL;
2362 }
2363 /* Codec DAI name must be specified */
2364 if (!link->codecs[j].dai_name) {
2365 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
2366 link->name);
2367 return -EINVAL;
2368 }
Stephen Warrenbc926572012-05-25 18:22:11 -06002369 }
Stephen Warren5a504962011-12-21 10:40:59 -07002370
2371 /*
2372 * Platform may be specified by either name or OF node, but
2373 * can be left unspecified, and a dummy platform will be used.
2374 */
2375 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002376 dev_err(card->dev,
2377 "ASoC: Both platform name/of_node are set for %s\n",
2378 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002379 return -EINVAL;
2380 }
2381
2382 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06002383 * CPU device may be specified by either name or OF node, but
2384 * can be left unspecified, and will be matched based on DAI
2385 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07002386 */
Stephen Warrenbc926572012-05-25 18:22:11 -06002387 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002388 dev_err(card->dev,
2389 "ASoC: Neither/both cpu name/of_node are set for %s\n",
2390 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06002391 return -EINVAL;
2392 }
2393 /*
2394 * At least one of CPU DAI name or CPU device name/node must be
2395 * specified
2396 */
2397 if (!link->cpu_dai_name &&
2398 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002399 dev_err(card->dev,
2400 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
2401 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002402 return -EINVAL;
2403 }
2404 }
2405
Mark Browned77cc12011-05-03 18:25:34 +01002406 dev_set_drvdata(card->dev, card);
2407
Stephen Warren111c6412011-01-28 14:26:35 -07002408 snd_soc_initialize_card_lists(card);
2409
Mark Brown181a6892012-03-14 20:18:49 +00002410 card->rtd = devm_kzalloc(card->dev,
2411 sizeof(struct snd_soc_pcm_runtime) *
2412 (card->num_links + card->num_aux_devs),
2413 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002414 if (card->rtd == NULL)
2415 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01002416 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002417 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002418
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002419 for (i = 0; i < card->num_links; i++) {
2420 card->rtd[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002421 card->rtd[i].dai_link = &card->dai_link[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02002422 card->rtd[i].codec_dais = devm_kzalloc(card->dev,
2423 sizeof(struct snd_soc_dai *) *
2424 (card->rtd[i].dai_link->num_codecs),
2425 GFP_KERNEL);
2426 if (card->rtd[i].codec_dais == NULL)
2427 return -ENOMEM;
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002428 }
2429
2430 for (i = 0; i < card->num_aux_devs; i++)
2431 card->rtd_aux[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002432
Mark Browndb432b42011-10-03 21:06:40 +01002433 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00002434 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002435 mutex_init(&card->mutex);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002436 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002437
Mark Brownb19e6e72012-03-14 21:18:39 +00002438 ret = snd_soc_instantiate_card(card);
2439 if (ret != 0)
Kuninori Morimoto4e2576b2015-03-24 09:01:00 +00002440 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00002441
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002442 /* deactivate pins to sleep state */
2443 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002444 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2445 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2446 int j;
2447
2448 for (j = 0; j < rtd->num_codecs; j++) {
2449 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2450 if (!codec_dai->active)
2451 pinctrl_pm_select_sleep_state(codec_dai->dev);
2452 }
2453
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002454 if (!cpu_dai->active)
2455 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2456 }
2457
Mark Brownb19e6e72012-03-14 21:18:39 +00002458 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00002459}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302460EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002461
2462/**
2463 * snd_soc_unregister_card - Unregister a card with the ASoC core
2464 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002465 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002466 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002467 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302468int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002469{
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002470 if (card->instantiated) {
2471 card->instantiated = false;
Lars-Peter Clausen1c325f72014-09-04 19:44:05 +02002472 snd_soc_dapm_shutdown(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302473 soc_cleanup_card_resources(card);
Kuninori Morimoto8f6f9b22015-02-05 05:34:10 +00002474 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002475 }
Mark Brownc5af3a22008-11-28 13:29:45 +00002476
2477 return 0;
2478}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302479EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002480
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002481/*
2482 * Simplify DAI link configuration by removing ".-1" from device names
2483 * and sanitizing names.
2484 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002485static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002486{
2487 char *found, name[NAME_SIZE];
2488 int id1, id2;
2489
2490 if (dev_name(dev) == NULL)
2491 return NULL;
2492
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002493 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002494
2495 /* are we a "%s.%d" name (platform and SPI components) */
2496 found = strstr(name, dev->driver->name);
2497 if (found) {
2498 /* get ID */
2499 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2500
2501 /* discard ID from name if ID == -1 */
2502 if (*id == -1)
2503 found[strlen(dev->driver->name)] = '\0';
2504 }
2505
2506 } else {
2507 /* I2C component devices are named "bus-addr" */
2508 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2509 char tmp[NAME_SIZE];
2510
2511 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002512 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002513
2514 /* sanitize component name for DAI link creation */
2515 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002516 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002517 } else
2518 *id = 0;
2519 }
2520
2521 return kstrdup(name, GFP_KERNEL);
2522}
2523
2524/*
2525 * Simplify DAI link naming for single devices with multiple DAIs by removing
2526 * any ".-1" and using the DAI name (instead of device name).
2527 */
2528static inline char *fmt_multiple_name(struct device *dev,
2529 struct snd_soc_dai_driver *dai_drv)
2530{
2531 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002532 dev_err(dev,
2533 "ASoC: error - multiple DAI %s registered with no name\n",
2534 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002535 return NULL;
2536 }
2537
2538 return kstrdup(dai_drv->name, GFP_KERNEL);
2539}
2540
Mark Brown91151712008-11-30 23:31:24 +00002541/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002542 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002543 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002544 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00002545 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002546static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00002547{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002548 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00002549
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002550 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002551 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2552 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002553 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002554 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002555 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002556 }
Mark Brown91151712008-11-30 23:31:24 +00002557}
Mark Brown91151712008-11-30 23:31:24 +00002558
2559/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002560 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002561 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002562 * @component: The component the DAIs are registered for
2563 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00002564 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002565 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
2566 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00002567 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002568static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002569 struct snd_soc_dai_driver *dai_drv, size_t count,
2570 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00002571{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002572 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002573 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002574 unsigned int i;
2575 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002576
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002577 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00002578
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002579 component->dai_drv = dai_drv;
2580 component->num_dai = count;
2581
Mark Brown91151712008-11-30 23:31:24 +00002582 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002583
2584 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08002585 if (dai == NULL) {
2586 ret = -ENOMEM;
2587 goto err;
2588 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002589
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002590 /*
2591 * Back in the old days when we still had component-less DAIs,
2592 * instead of having a static name, component-less DAIs would
2593 * inherit the name of the parent device so it is possible to
2594 * register multiple instances of the DAI. We still need to keep
2595 * the same naming style even though those DAIs are not
2596 * component-less anymore.
2597 */
Srinivas Kandagatla9e498082015-05-15 10:38:27 +01002598 if (count == 1 && legacy_dai_naming &&
2599 (dai_drv[i].id == 0 || dai_drv[i].name == NULL)) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002600 dai->name = fmt_single_name(dev, &dai->id);
2601 } else {
2602 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
2603 if (dai_drv[i].id)
2604 dai->id = dai_drv[i].id;
2605 else
2606 dai->id = i;
2607 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002608 if (dai->name == NULL) {
2609 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002610 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00002611 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002612 }
2613
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002614 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002615 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002616 dai->driver = &dai_drv[i];
2617 if (!dai->driver->ops)
2618 dai->driver->ops = &null_dai_ops;
2619
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01002620 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01002621
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002622 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00002623 }
2624
2625 return 0;
2626
2627err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002628 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00002629
2630 return ret;
2631}
Mark Brown91151712008-11-30 23:31:24 +00002632
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002633static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
2634 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002635{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002636 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002637
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002638 component->driver->seq_notifier(component, type, subseq);
2639}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002640
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002641static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
2642 int event)
2643{
2644 struct snd_soc_component *component = dapm->component;
2645
2646 return component->driver->stream_event(component, event);
2647}
2648
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002649static int snd_soc_component_initialize(struct snd_soc_component *component,
2650 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002651{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002652 struct snd_soc_dapm_context *dapm;
2653
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002654 component->name = fmt_single_name(dev, &component->id);
2655 if (!component->name) {
2656 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002657 return -ENOMEM;
2658 }
2659
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002660 component->dev = dev;
2661 component->driver = driver;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002662 component->probe = component->driver->probe;
2663 component->remove = component->driver->remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002664
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002665 if (!component->dapm_ptr)
2666 component->dapm_ptr = &component->dapm;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002667
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002668 dapm = component->dapm_ptr;
2669 dapm->dev = dev;
2670 dapm->component = component;
2671 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02002672 dapm->idle_bias_off = true;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002673 if (driver->seq_notifier)
2674 dapm->seq_notifier = snd_soc_component_seq_notifier;
2675 if (driver->stream_event)
2676 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002677
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002678 component->controls = driver->controls;
2679 component->num_controls = driver->num_controls;
2680 component->dapm_widgets = driver->dapm_widgets;
2681 component->num_dapm_widgets = driver->num_dapm_widgets;
2682 component->dapm_routes = driver->dapm_routes;
2683 component->num_dapm_routes = driver->num_dapm_routes;
2684
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002685 INIT_LIST_HEAD(&component->dai_list);
2686 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002687
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002688 return 0;
2689}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002690
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002691static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002692{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002693 int val_bytes = regmap_get_val_bytes(component->regmap);
2694
2695 /* Errors are legitimate for non-integer byte multiples */
2696 if (val_bytes > 0)
2697 component->val_bytes = val_bytes;
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002698}
2699
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002700#ifdef CONFIG_REGMAP
2701
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002702/**
2703 * snd_soc_component_init_regmap() - Initialize regmap instance for the component
2704 * @component: The component for which to initialize the regmap instance
2705 * @regmap: The regmap instance that should be used by the component
2706 *
2707 * This function allows deferred assignment of the regmap instance that is
2708 * associated with the component. Only use this if the regmap instance is not
2709 * yet ready when the component is registered. The function must also be called
2710 * before the first IO attempt of the component.
2711 */
2712void snd_soc_component_init_regmap(struct snd_soc_component *component,
2713 struct regmap *regmap)
2714{
2715 component->regmap = regmap;
2716 snd_soc_component_setup_regmap(component);
2717}
2718EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
2719
2720/**
2721 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the component
2722 * @component: The component for which to de-initialize the regmap instance
2723 *
2724 * Calls regmap_exit() on the regmap instance associated to the component and
2725 * removes the regmap instance from the component.
2726 *
2727 * This function should only be used if snd_soc_component_init_regmap() was used
2728 * to initialize the regmap instance.
2729 */
2730void snd_soc_component_exit_regmap(struct snd_soc_component *component)
2731{
2732 regmap_exit(component->regmap);
2733 component->regmap = NULL;
2734}
2735EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
2736
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002737#endif
2738
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002739static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
2740{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002741 if (!component->write && !component->read) {
2742 if (!component->regmap)
2743 component->regmap = dev_get_regmap(component->dev, NULL);
2744 if (component->regmap)
2745 snd_soc_component_setup_regmap(component);
2746 }
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002747
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002748 list_add(&component->list, &component_list);
2749}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002750
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002751static void snd_soc_component_add(struct snd_soc_component *component)
2752{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002753 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002754 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002755 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002756}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002757
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002758static void snd_soc_component_cleanup(struct snd_soc_component *component)
2759{
2760 snd_soc_unregister_dais(component);
2761 kfree(component->name);
2762}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002763
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002764static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
2765{
2766 list_del(&component->list);
2767}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002768
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002769int snd_soc_register_component(struct device *dev,
2770 const struct snd_soc_component_driver *cmpnt_drv,
2771 struct snd_soc_dai_driver *dai_drv,
2772 int num_dai)
2773{
2774 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002775 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002776
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002777 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002778 if (!cmpnt) {
2779 dev_err(dev, "ASoC: Failed to allocate memory\n");
2780 return -ENOMEM;
2781 }
2782
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002783 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
2784 if (ret)
2785 goto err_free;
2786
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002787 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002788 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002789
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002790 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
2791 if (ret < 0) {
Masanari Iidaf42cf8d2015-02-24 23:11:26 +09002792 dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002793 goto err_cleanup;
2794 }
2795
2796 snd_soc_component_add(cmpnt);
2797
2798 return 0;
2799
2800err_cleanup:
2801 snd_soc_component_cleanup(cmpnt);
2802err_free:
2803 kfree(cmpnt);
2804 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002805}
2806EXPORT_SYMBOL_GPL(snd_soc_register_component);
2807
2808/**
2809 * snd_soc_unregister_component - Unregister a component from the ASoC core
2810 *
2811 */
2812void snd_soc_unregister_component(struct device *dev)
2813{
2814 struct snd_soc_component *cmpnt;
2815
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002816 mutex_lock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002817 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002818 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002819 goto found;
2820 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002821 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002822 return;
2823
2824found:
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002825 snd_soc_component_del_unlocked(cmpnt);
2826 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002827 snd_soc_component_cleanup(cmpnt);
2828 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002829}
2830EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
2831
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002832static int snd_soc_platform_drv_probe(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002833{
2834 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2835
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002836 return platform->driver->probe(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002837}
2838
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002839static void snd_soc_platform_drv_remove(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002840{
2841 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2842
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002843 platform->driver->remove(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002844}
2845
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002846/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002847 * snd_soc_add_platform - Add a platform to the ASoC core
2848 * @dev: The parent device for the platform
2849 * @platform: The platform to add
2850 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00002851 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002852int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01002853 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002854{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002855 int ret;
2856
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002857 ret = snd_soc_component_initialize(&platform->component,
2858 &platform_drv->component_driver, dev);
2859 if (ret)
2860 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002861
2862 platform->dev = dev;
2863 platform->driver = platform_drv;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002864
2865 if (platform_drv->probe)
2866 platform->component.probe = snd_soc_platform_drv_probe;
2867 if (platform_drv->remove)
2868 platform->component.remove = snd_soc_platform_drv_remove;
Mark Brown12a48a8c2008-12-03 19:40:30 +00002869
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02002870#ifdef CONFIG_DEBUG_FS
2871 platform->component.debugfs_prefix = "platform";
2872#endif
Mark Brown12a48a8c2008-12-03 19:40:30 +00002873
2874 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002875 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002876 list_add(&platform->list, &platform_list);
2877 mutex_unlock(&client_mutex);
2878
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002879 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
2880 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002881
2882 return 0;
2883}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002884EXPORT_SYMBOL_GPL(snd_soc_add_platform);
2885
2886/**
2887 * snd_soc_register_platform - Register a platform with the ASoC core
2888 *
2889 * @platform: platform to register
2890 */
2891int snd_soc_register_platform(struct device *dev,
2892 const struct snd_soc_platform_driver *platform_drv)
2893{
2894 struct snd_soc_platform *platform;
2895 int ret;
2896
2897 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
2898
2899 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
2900 if (platform == NULL)
2901 return -ENOMEM;
2902
2903 ret = snd_soc_add_platform(dev, platform, platform_drv);
2904 if (ret)
2905 kfree(platform);
2906
2907 return ret;
2908}
Mark Brown12a48a8c2008-12-03 19:40:30 +00002909EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2910
2911/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002912 * snd_soc_remove_platform - Remove a platform from the ASoC core
2913 * @platform: the platform to remove
2914 */
2915void snd_soc_remove_platform(struct snd_soc_platform *platform)
2916{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002917
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002918 mutex_lock(&client_mutex);
2919 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002920 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002921 mutex_unlock(&client_mutex);
2922
2923 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002924 platform->component.name);
Daniel Mackdecc27b2014-10-07 13:41:23 +02002925
2926 snd_soc_component_cleanup(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002927}
2928EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
2929
2930struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
2931{
2932 struct snd_soc_platform *platform;
2933
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002934 mutex_lock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002935 list_for_each_entry(platform, &platform_list, list) {
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002936 if (dev == platform->dev) {
2937 mutex_unlock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002938 return platform;
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002939 }
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002940 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002941 mutex_unlock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002942
2943 return NULL;
2944}
2945EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
2946
2947/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00002948 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2949 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002950 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002951 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002952void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002953{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002954 struct snd_soc_platform *platform;
2955
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002956 platform = snd_soc_lookup_platform(dev);
2957 if (!platform)
2958 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002959
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002960 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002961 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002962}
2963EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2964
Mark Brown151ab222009-05-09 16:22:58 +01002965static u64 codec_format_map[] = {
2966 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2967 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2968 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2969 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2970 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2971 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2972 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2973 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2974 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2975 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2976 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2977 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2978 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2979 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2980 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2981 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2982};
2983
2984/* Fix up the DAI formats for endianness: codecs don't actually see
2985 * the endianness of the data but we're using the CPU format
2986 * definitions which do need to include endianness so we ensure that
2987 * codec DAIs always have both big and little endian variants set.
2988 */
2989static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2990{
2991 int i;
2992
2993 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2994 if (stream->formats & codec_format_map[i])
2995 stream->formats |= codec_format_map[i];
2996}
2997
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002998static int snd_soc_codec_drv_probe(struct snd_soc_component *component)
2999{
3000 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3001
3002 return codec->driver->probe(codec);
3003}
3004
3005static void snd_soc_codec_drv_remove(struct snd_soc_component *component)
3006{
3007 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3008
3009 codec->driver->remove(codec);
3010}
3011
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003012static int snd_soc_codec_drv_write(struct snd_soc_component *component,
3013 unsigned int reg, unsigned int val)
3014{
3015 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3016
3017 return codec->driver->write(codec, reg, val);
3018}
3019
3020static int snd_soc_codec_drv_read(struct snd_soc_component *component,
3021 unsigned int reg, unsigned int *val)
3022{
3023 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3024
3025 *val = codec->driver->read(codec, reg);
3026
3027 return 0;
3028}
3029
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003030static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
3031 enum snd_soc_bias_level level)
3032{
3033 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
3034
3035 return codec->driver->set_bias_level(codec, level);
3036}
3037
Mark Brown0d0cf002008-12-10 14:32:45 +00003038/**
3039 * snd_soc_register_codec - Register a codec with the ASoC core
3040 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003041 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003042 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003043int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003044 const struct snd_soc_codec_driver *codec_drv,
3045 struct snd_soc_dai_driver *dai_drv,
3046 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003047{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003048 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003049 struct snd_soc_dai *dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003050 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003051
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003052 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003053
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003054 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3055 if (codec == NULL)
3056 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003057
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003058 codec->component.dapm_ptr = &codec->dapm;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003059 codec->component.codec = codec;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003060
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003061 ret = snd_soc_component_initialize(&codec->component,
3062 &codec_drv->component_driver, dev);
3063 if (ret)
3064 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01003065
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003066 if (codec_drv->controls) {
3067 codec->component.controls = codec_drv->controls;
3068 codec->component.num_controls = codec_drv->num_controls;
3069 }
3070 if (codec_drv->dapm_widgets) {
3071 codec->component.dapm_widgets = codec_drv->dapm_widgets;
3072 codec->component.num_dapm_widgets = codec_drv->num_dapm_widgets;
3073 }
3074 if (codec_drv->dapm_routes) {
3075 codec->component.dapm_routes = codec_drv->dapm_routes;
3076 codec->component.num_dapm_routes = codec_drv->num_dapm_routes;
3077 }
3078
3079 if (codec_drv->probe)
3080 codec->component.probe = snd_soc_codec_drv_probe;
3081 if (codec_drv->remove)
3082 codec->component.remove = snd_soc_codec_drv_remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003083 if (codec_drv->write)
3084 codec->component.write = snd_soc_codec_drv_write;
3085 if (codec_drv->read)
3086 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003087 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02003088 codec->dapm.idle_bias_off = codec_drv->idle_bias_off;
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02003089 codec->dapm.suspend_bias_off = codec_drv->suspend_bias_off;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003090 if (codec_drv->seq_notifier)
3091 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003092 if (codec_drv->set_bias_level)
3093 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003094 codec->dev = dev;
3095 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003096 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003097
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02003098#ifdef CONFIG_DEBUG_FS
3099 codec->component.init_debugfs = soc_init_codec_debugfs;
3100 codec->component.debugfs_prefix = "codec";
3101#endif
Xiubo Lia39f75f2014-03-26 13:40:23 +08003102
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003103 if (codec_drv->get_regmap)
3104 codec->component.regmap = codec_drv->get_regmap(dev);
Xiubo Lia39f75f2014-03-26 13:40:23 +08003105
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003106 for (i = 0; i < num_dai; i++) {
3107 fixup_codec_formats(&dai_drv[i].playback);
3108 fixup_codec_formats(&dai_drv[i].capture);
3109 }
3110
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003111 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
3112 if (ret < 0) {
Masanari Iidaf42cf8d2015-02-24 23:11:26 +09003113 dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003114 goto err_cleanup;
3115 }
3116
3117 list_for_each_entry(dai, &codec->component.dai_list, list)
3118 dai->codec = codec;
3119
Mark Brown054880f2012-04-09 17:29:19 +01003120 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003121 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01003122 list_add(&codec->list, &codec_list);
3123 mutex_unlock(&client_mutex);
3124
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003125 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
3126 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003127 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003128
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003129err_cleanup:
3130 snd_soc_component_cleanup(&codec->component);
3131err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003132 kfree(codec);
3133 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003134}
3135EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3136
3137/**
3138 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3139 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003140 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003141 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003142void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003143{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003144 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003145
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003146 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003147 list_for_each_entry(codec, &codec_list, list) {
3148 if (dev == codec->dev)
3149 goto found;
3150 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003151 mutex_unlock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003152 return;
3153
3154found:
Mark Brown0d0cf002008-12-10 14:32:45 +00003155 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003156 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00003157 mutex_unlock(&client_mutex);
3158
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003159 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
3160 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003161
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003162 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003163 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003164 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003165}
3166EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3167
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003168/* Retrieve a card's name from device tree */
3169int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3170 const char *propname)
3171{
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303172 struct device_node *np;
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003173 int ret;
3174
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303175 if (!card->dev) {
3176 pr_err("card->dev is not set before calling %s\n", __func__);
3177 return -EINVAL;
3178 }
3179
3180 np = card->dev->of_node;
3181
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003182 ret = of_property_read_string_index(np, propname, 0, &card->name);
3183 /*
3184 * EINVAL means the property does not exist. This is fine providing
3185 * card->name was previously set, which is checked later in
3186 * snd_soc_register_card.
3187 */
3188 if (ret < 0 && ret != -EINVAL) {
3189 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003190 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003191 propname, ret);
3192 return ret;
3193 }
3194
3195 return 0;
3196}
3197EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3198
Xiubo Li9a6d4862014-02-08 15:59:52 +08003199static const struct snd_soc_dapm_widget simple_widgets[] = {
3200 SND_SOC_DAPM_MIC("Microphone", NULL),
3201 SND_SOC_DAPM_LINE("Line", NULL),
3202 SND_SOC_DAPM_HP("Headphone", NULL),
3203 SND_SOC_DAPM_SPK("Speaker", NULL),
3204};
3205
3206int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
3207 const char *propname)
3208{
3209 struct device_node *np = card->dev->of_node;
3210 struct snd_soc_dapm_widget *widgets;
3211 const char *template, *wname;
3212 int i, j, num_widgets, ret;
3213
3214 num_widgets = of_property_count_strings(np, propname);
3215 if (num_widgets < 0) {
3216 dev_err(card->dev,
3217 "ASoC: Property '%s' does not exist\n", propname);
3218 return -EINVAL;
3219 }
3220 if (num_widgets & 1) {
3221 dev_err(card->dev,
3222 "ASoC: Property '%s' length is not even\n", propname);
3223 return -EINVAL;
3224 }
3225
3226 num_widgets /= 2;
3227 if (!num_widgets) {
3228 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3229 propname);
3230 return -EINVAL;
3231 }
3232
3233 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3234 GFP_KERNEL);
3235 if (!widgets) {
3236 dev_err(card->dev,
3237 "ASoC: Could not allocate memory for widgets\n");
3238 return -ENOMEM;
3239 }
3240
3241 for (i = 0; i < num_widgets; i++) {
3242 ret = of_property_read_string_index(np, propname,
3243 2 * i, &template);
3244 if (ret) {
3245 dev_err(card->dev,
3246 "ASoC: Property '%s' index %d read error:%d\n",
3247 propname, 2 * i, ret);
3248 return -EINVAL;
3249 }
3250
3251 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3252 if (!strncmp(template, simple_widgets[j].name,
3253 strlen(simple_widgets[j].name))) {
3254 widgets[i] = simple_widgets[j];
3255 break;
3256 }
3257 }
3258
3259 if (j >= ARRAY_SIZE(simple_widgets)) {
3260 dev_err(card->dev,
3261 "ASoC: DAPM widget '%s' is not supported\n",
3262 template);
3263 return -EINVAL;
3264 }
3265
3266 ret = of_property_read_string_index(np, propname,
3267 (2 * i) + 1,
3268 &wname);
3269 if (ret) {
3270 dev_err(card->dev,
3271 "ASoC: Property '%s' index %d read error:%d\n",
3272 propname, (2 * i) + 1, ret);
3273 return -EINVAL;
3274 }
3275
3276 widgets[i].name = wname;
3277 }
3278
Nicolin Chenf23e8602015-02-14 17:22:49 -08003279 card->of_dapm_widgets = widgets;
3280 card->num_of_dapm_widgets = num_widgets;
Xiubo Li9a6d4862014-02-08 15:59:52 +08003281
3282 return 0;
3283}
3284EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
3285
Xiubo Li89c67852014-02-14 09:34:35 +08003286int snd_soc_of_parse_tdm_slot(struct device_node *np,
3287 unsigned int *slots,
3288 unsigned int *slot_width)
3289{
3290 u32 val;
3291 int ret;
3292
3293 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3294 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3295 if (ret)
3296 return ret;
3297
3298 if (slots)
3299 *slots = val;
3300 }
3301
3302 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3303 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3304 if (ret)
3305 return ret;
3306
3307 if (slot_width)
3308 *slot_width = val;
3309 }
3310
3311 return 0;
3312}
3313EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3314
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003315int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3316 const char *propname)
3317{
3318 struct device_node *np = card->dev->of_node;
Mark Browne3b1e6a2014-12-18 11:46:38 +00003319 int num_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003320 struct snd_soc_dapm_route *routes;
3321 int i, ret;
3322
3323 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08003324 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003325 dev_err(card->dev,
3326 "ASoC: Property '%s' does not exist or its length is not even\n",
3327 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003328 return -EINVAL;
3329 }
3330 num_routes /= 2;
3331 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003332 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003333 propname);
3334 return -EINVAL;
3335 }
3336
Mark Browne3b1e6a2014-12-18 11:46:38 +00003337 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003338 GFP_KERNEL);
3339 if (!routes) {
3340 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003341 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003342 return -EINVAL;
3343 }
3344
3345 for (i = 0; i < num_routes; i++) {
3346 ret = of_property_read_string_index(np, propname,
Mark Browne3b1e6a2014-12-18 11:46:38 +00003347 2 * i, &routes[i].sink);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003348 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09003349 dev_err(card->dev,
3350 "ASoC: Property '%s' index %d could not be read: %d\n",
3351 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003352 return -EINVAL;
3353 }
3354 ret = of_property_read_string_index(np, propname,
Mark Browne3b1e6a2014-12-18 11:46:38 +00003355 (2 * i) + 1, &routes[i].source);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003356 if (ret) {
3357 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09003358 "ASoC: Property '%s' index %d could not be read: %d\n",
3359 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003360 return -EINVAL;
3361 }
3362 }
3363
Nicolin Chenf23e8602015-02-14 17:22:49 -08003364 card->num_of_dapm_routes = num_routes;
3365 card->of_dapm_routes = routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003366
3367 return 0;
3368}
3369EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3370
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003371unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02003372 const char *prefix,
3373 struct device_node **bitclkmaster,
3374 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003375{
3376 int ret, i;
3377 char prop[128];
3378 unsigned int format = 0;
3379 int bit, frame;
3380 const char *str;
3381 struct {
3382 char *name;
3383 unsigned int val;
3384 } of_fmt_table[] = {
3385 { "i2s", SND_SOC_DAIFMT_I2S },
3386 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
3387 { "left_j", SND_SOC_DAIFMT_LEFT_J },
3388 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
3389 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
3390 { "ac97", SND_SOC_DAIFMT_AC97 },
3391 { "pdm", SND_SOC_DAIFMT_PDM},
3392 { "msb", SND_SOC_DAIFMT_MSB },
3393 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003394 };
3395
3396 if (!prefix)
3397 prefix = "";
3398
3399 /*
3400 * check "[prefix]format = xxx"
3401 * SND_SOC_DAIFMT_FORMAT_MASK area
3402 */
3403 snprintf(prop, sizeof(prop), "%sformat", prefix);
3404 ret = of_property_read_string(np, prop, &str);
3405 if (ret == 0) {
3406 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3407 if (strcmp(str, of_fmt_table[i].name) == 0) {
3408 format |= of_fmt_table[i].val;
3409 break;
3410 }
3411 }
3412 }
3413
3414 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003415 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003416 * SND_SOC_DAIFMT_CLOCK_MASK area
3417 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003418 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
3419 if (of_get_property(np, prop, NULL))
3420 format |= SND_SOC_DAIFMT_CONT;
3421 else
3422 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003423
3424 /*
3425 * check "[prefix]bitclock-inversion"
3426 * check "[prefix]frame-inversion"
3427 * SND_SOC_DAIFMT_INV_MASK area
3428 */
3429 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3430 bit = !!of_get_property(np, prop, NULL);
3431
3432 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3433 frame = !!of_get_property(np, prop, NULL);
3434
3435 switch ((bit << 4) + frame) {
3436 case 0x11:
3437 format |= SND_SOC_DAIFMT_IB_IF;
3438 break;
3439 case 0x10:
3440 format |= SND_SOC_DAIFMT_IB_NF;
3441 break;
3442 case 0x01:
3443 format |= SND_SOC_DAIFMT_NB_IF;
3444 break;
3445 default:
3446 /* SND_SOC_DAIFMT_NB_NF is default */
3447 break;
3448 }
3449
3450 /*
3451 * check "[prefix]bitclock-master"
3452 * check "[prefix]frame-master"
3453 * SND_SOC_DAIFMT_MASTER_MASK area
3454 */
3455 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3456 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003457 if (bit && bitclkmaster)
3458 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003459
3460 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3461 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003462 if (frame && framemaster)
3463 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003464
3465 switch ((bit << 4) + frame) {
3466 case 0x11:
3467 format |= SND_SOC_DAIFMT_CBM_CFM;
3468 break;
3469 case 0x10:
3470 format |= SND_SOC_DAIFMT_CBM_CFS;
3471 break;
3472 case 0x01:
3473 format |= SND_SOC_DAIFMT_CBS_CFM;
3474 break;
3475 default:
3476 format |= SND_SOC_DAIFMT_CBS_CFS;
3477 break;
3478 }
3479
3480 return format;
3481}
3482EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3483
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003484static int snd_soc_get_dai_name(struct of_phandle_args *args,
3485 const char **dai_name)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003486{
3487 struct snd_soc_component *pos;
Jyri Sarha3e0aa8d2015-05-26 21:59:05 +03003488 struct device_node *component_of_node;
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003489 int ret = -EPROBE_DEFER;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003490
3491 mutex_lock(&client_mutex);
3492 list_for_each_entry(pos, &component_list, list) {
Jyri Sarha3e0aa8d2015-05-26 21:59:05 +03003493 component_of_node = pos->dev->of_node;
3494 if (!component_of_node && pos->dev->parent)
3495 component_of_node = pos->dev->parent->of_node;
3496
3497 if (component_of_node != args->np)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003498 continue;
3499
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003500 if (pos->driver->of_xlate_dai_name) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003501 ret = pos->driver->of_xlate_dai_name(pos,
3502 args,
3503 dai_name);
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003504 } else {
3505 int id = -1;
3506
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003507 switch (args->args_count) {
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003508 case 0:
3509 id = 0; /* same as dai_drv[0] */
3510 break;
3511 case 1:
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003512 id = args->args[0];
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003513 break;
3514 default:
3515 /* not supported */
3516 break;
3517 }
3518
3519 if (id < 0 || id >= pos->num_dai) {
3520 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08003521 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003522 }
Xiubo Lie41975e2013-12-20 14:39:51 +08003523
3524 ret = 0;
3525
3526 *dai_name = pos->dai_drv[id].name;
3527 if (!*dai_name)
3528 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003529 }
3530
Kuninori Morimotocb470082013-09-10 17:39:56 -07003531 break;
3532 }
3533 mutex_unlock(&client_mutex);
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003534 return ret;
3535}
3536
3537int snd_soc_of_get_dai_name(struct device_node *of_node,
3538 const char **dai_name)
3539{
3540 struct of_phandle_args args;
3541 int ret;
3542
3543 ret = of_parse_phandle_with_args(of_node, "sound-dai",
3544 "#sound-dai-cells", 0, &args);
3545 if (ret)
3546 return ret;
3547
3548 ret = snd_soc_get_dai_name(&args, dai_name);
Kuninori Morimotocb470082013-09-10 17:39:56 -07003549
3550 of_node_put(args.np);
3551
3552 return ret;
3553}
3554EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3555
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003556/*
3557 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3558 * @dev: Card device
3559 * @of_node: Device node
3560 * @dai_link: DAI link
3561 *
3562 * Builds an array of CODEC DAI components from the DAI link property
3563 * 'sound-dai'.
3564 * The array is set in the DAI link and the number of DAIs is set accordingly.
3565 * The device nodes in the array (of_node) must be dereferenced by the caller.
3566 *
3567 * Returns 0 for success
3568 */
3569int snd_soc_of_get_dai_link_codecs(struct device *dev,
3570 struct device_node *of_node,
3571 struct snd_soc_dai_link *dai_link)
3572{
3573 struct of_phandle_args args;
3574 struct snd_soc_dai_link_component *component;
3575 char *name;
3576 int index, num_codecs, ret;
3577
3578 /* Count the number of CODECs */
3579 name = "sound-dai";
3580 num_codecs = of_count_phandle_with_args(of_node, name,
3581 "#sound-dai-cells");
3582 if (num_codecs <= 0) {
3583 if (num_codecs == -ENOENT)
3584 dev_err(dev, "No 'sound-dai' property\n");
3585 else
3586 dev_err(dev, "Bad phandle in 'sound-dai'\n");
3587 return num_codecs;
3588 }
3589 component = devm_kzalloc(dev,
3590 sizeof *component * num_codecs,
3591 GFP_KERNEL);
3592 if (!component)
3593 return -ENOMEM;
3594 dai_link->codecs = component;
3595 dai_link->num_codecs = num_codecs;
3596
3597 /* Parse the list */
3598 for (index = 0, component = dai_link->codecs;
3599 index < dai_link->num_codecs;
3600 index++, component++) {
3601 ret = of_parse_phandle_with_args(of_node, name,
3602 "#sound-dai-cells",
3603 index, &args);
3604 if (ret)
3605 goto err;
3606 component->of_node = args.np;
3607 ret = snd_soc_get_dai_name(&args, &component->dai_name);
3608 if (ret < 0)
3609 goto err;
3610 }
3611 return 0;
3612err:
3613 for (index = 0, component = dai_link->codecs;
3614 index < dai_link->num_codecs;
3615 index++, component++) {
3616 if (!component->of_node)
3617 break;
3618 of_node_put(component->of_node);
3619 component->of_node = NULL;
3620 }
3621 dai_link->codecs = NULL;
3622 dai_link->num_codecs = 0;
3623 return ret;
3624}
3625EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3626
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003627static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003628{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02003629 snd_soc_debugfs_init();
Mark Brownfb257892011-04-28 10:57:54 +01003630 snd_soc_util_init();
3631
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003632 return platform_driver_register(&soc_driver);
3633}
Mark Brown4abe8e12010-10-12 17:41:03 +01003634module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003635
Mark Brown7d8c16a2008-11-30 22:11:24 +00003636static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003637{
Mark Brownfb257892011-04-28 10:57:54 +01003638 snd_soc_util_exit();
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02003639 snd_soc_debugfs_exit();
Mark Brownfb257892011-04-28 10:57:54 +01003640
Mark Brown384c89e2008-12-03 17:34:03 +00003641#ifdef CONFIG_DEBUG_FS
Mark Brown384c89e2008-12-03 17:34:03 +00003642#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003643 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003644}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003645module_exit(snd_soc_exit);
3646
3647/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003648MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003649MODULE_DESCRIPTION("ALSA SoC Core");
3650MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003651MODULE_ALIAS("platform:soc-audio");