blob: a6f840beacb0769acccc4aa961bdbcc471142b32 [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>
Liam Girdwood345233d2017-01-14 16:13:02 +080037#include <linux/dmi.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020038#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000039#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040#include <sound/pcm.h>
41#include <sound/pcm_params.h>
42#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010043#include <sound/soc-dpcm.h>
Liam Girdwood8a978232015-05-29 19:06:14 +010044#include <sound/soc-topology.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020045#include <sound/initval.h>
46
Mark Browna8b1d342010-11-03 18:05:58 -040047#define CREATE_TRACE_POINTS
48#include <trace/events/asoc.h>
49
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000050#define NAME_SIZE 32
51
Mark Brown384c89e2008-12-03 17:34:03 +000052#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000053struct dentry *snd_soc_debugfs_root;
54EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000055#endif
56
Mark Brownc5af3a22008-11-28 13:29:45 +000057static DEFINE_MUTEX(client_mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +000058static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000059static LIST_HEAD(codec_list);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -070060static LIST_HEAD(component_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000061
Frank Mandarinodb2a4162006-10-06 18:31:09 +020062/*
63 * This is a timeout to do a DAPM powerdown after a stream is closed().
64 * It can be used to eliminate pops between different playback streams, e.g.
65 * between two audio tracks.
66 */
67static int pmdown_time = 5000;
68module_param(pmdown_time, int, 0);
69MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
70
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000071/* returns the minimum number of bytes needed to represent
72 * a particular given value */
73static int min_bytes_needed(unsigned long val)
74{
75 int c = 0;
76 int i;
77
78 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
79 if (val & (1UL << i))
80 break;
81 c = (sizeof val * 8) - c;
82 if (!c || (c % 8))
83 c = (c + 8) / 8;
84 else
85 c /= 8;
86 return c;
87}
88
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000089/* fill buf which is 'len' bytes with a formatted
90 * string of the form 'reg: value\n' */
91static int format_register_str(struct snd_soc_codec *codec,
92 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +000093{
Stephen Warren00b317a2011-04-01 14:50:44 -060094 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
95 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000096 int ret;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000097
98 /* +2 for ': ' and + 1 for '\n' */
99 if (wordsize + regsize + 2 + 1 != len)
100 return -EINVAL;
101
Takashi Iwaid6b6c2c2015-05-26 14:40:14 +0200102 sprintf(buf, "%.*x: ", wordsize, reg);
103 buf += wordsize + 2;
104
Mark Brown25032c12011-08-01 13:52:48 +0900105 ret = snd_soc_read(codec, reg);
Takashi Iwaid6b6c2c2015-05-26 14:40:14 +0200106 if (ret < 0)
107 memset(buf, 'X', regsize);
108 else
109 sprintf(buf, "%.*x", regsize, ret);
110 buf[regsize] = '\n';
111 /* no NUL-termination needed */
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000112 return 0;
113}
114
115/* codec register dump */
116static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
117 size_t count, loff_t pos)
118{
119 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000120 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000121 int len;
122 size_t total = 0;
123 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000124
Stephen Warren00b317a2011-04-01 14:50:44 -0600125 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
126 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000127
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000128 len = wordsize + regsize + 2 + 1;
129
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000130 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000131 return 0;
132
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000133 if (codec->driver->reg_cache_step)
134 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000135
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000136 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100137 /* only support larger than PAGE_SIZE bytes debugfs
138 * entries for the default case */
139 if (p >= pos) {
140 if (total + len >= count - 1)
141 break;
142 format_register_str(codec, i, buf + total, len);
143 total += len;
Mark Brown5164d742010-07-14 16:14:33 +0100144 }
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100145 p += len;
Mark Brown2624d5f2009-11-03 21:56:13 +0000146 }
147
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000148 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000149
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000150 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000151}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000152
Mark Brown2624d5f2009-11-03 21:56:13 +0000153static ssize_t codec_reg_show(struct device *dev,
154 struct device_attribute *attr, char *buf)
155{
Mark Brown36ae1a92012-01-06 17:12:45 -0800156 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000157
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000158 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000159}
160
161static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
162
Mark Browndbe21402010-02-12 11:37:24 +0000163static ssize_t pmdown_time_show(struct device *dev,
164 struct device_attribute *attr, char *buf)
165{
Mark Brown36ae1a92012-01-06 17:12:45 -0800166 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000167
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000168 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000169}
170
171static ssize_t pmdown_time_set(struct device *dev,
172 struct device_attribute *attr,
173 const char *buf, size_t count)
174{
Mark Brown36ae1a92012-01-06 17:12:45 -0800175 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700176 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000177
Jingoo Hanb785a492013-07-19 16:24:59 +0900178 ret = kstrtol(buf, 10, &rtd->pmdown_time);
Mark Brownc593b522010-10-27 20:11:17 -0700179 if (ret)
180 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000181
182 return count;
183}
184
185static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
186
Takashi Iwaid29697d2015-01-30 20:16:37 +0100187static struct attribute *soc_dev_attrs[] = {
188 &dev_attr_codec_reg.attr,
189 &dev_attr_pmdown_time.attr,
190 NULL
191};
192
193static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
194 struct attribute *attr, int idx)
195{
196 struct device *dev = kobj_to_dev(kobj);
197 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
198
199 if (attr == &dev_attr_pmdown_time.attr)
200 return attr->mode; /* always visible */
201 return rtd->codec ? attr->mode : 0; /* enabled only with codec */
202}
203
204static const struct attribute_group soc_dapm_dev_group = {
205 .attrs = soc_dapm_dev_attrs,
206 .is_visible = soc_dev_attr_is_visible,
207};
208
209static const struct attribute_group soc_dev_roup = {
210 .attrs = soc_dev_attrs,
211 .is_visible = soc_dev_attr_is_visible,
212};
213
214static const struct attribute_group *soc_dev_attr_groups[] = {
215 &soc_dapm_dev_group,
216 &soc_dev_roup,
217 NULL
218};
219
Mark Brown2624d5f2009-11-03 21:56:13 +0000220#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000221static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000222 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000223{
224 ssize_t ret;
225 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000226 char *buf;
227
228 if (*ppos < 0 || !count)
229 return -EINVAL;
230
231 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000232 if (!buf)
233 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000234
235 ret = soc_codec_reg_show(codec, buf, count, *ppos);
236 if (ret >= 0) {
237 if (copy_to_user(user_buf, buf, ret)) {
238 kfree(buf);
239 return -EFAULT;
240 }
241 *ppos += ret;
242 }
243
Mark Brown2624d5f2009-11-03 21:56:13 +0000244 kfree(buf);
245 return ret;
246}
247
248static ssize_t codec_reg_write_file(struct file *file,
249 const char __user *user_buf, size_t count, loff_t *ppos)
250{
251 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700252 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000253 char *start = buf;
254 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000255 struct snd_soc_codec *codec = file->private_data;
Jingoo Hanb785a492013-07-19 16:24:59 +0900256 int ret;
Mark Brown2624d5f2009-11-03 21:56:13 +0000257
258 buf_size = min(count, (sizeof(buf)-1));
259 if (copy_from_user(buf, user_buf, buf_size))
260 return -EFAULT;
261 buf[buf_size] = 0;
262
Mark Brown2624d5f2009-11-03 21:56:13 +0000263 while (*start == ' ')
264 start++;
265 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000266 while (*start == ' ')
267 start++;
Jingoo Hanb785a492013-07-19 16:24:59 +0900268 ret = kstrtoul(start, 16, &value);
269 if (ret)
270 return ret;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000271
272 /* Userspace has been fiddling around behind the kernel's back */
Rusty Russell373d4d02013-01-21 17:17:39 +1030273 add_taint(TAINT_USER, LOCKDEP_NOW_UNRELIABLE);
Mark Brown0d51a9c2011-01-06 16:04:57 +0000274
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000275 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000276 return buf_size;
277}
278
279static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700280 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000281 .read = codec_reg_read_file,
282 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200283 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000284};
285
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200286static void soc_init_component_debugfs(struct snd_soc_component *component)
Russell Kinge73f3de2014-06-26 15:22:50 +0100287{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200288 if (!component->card->debugfs_card_root)
289 return;
290
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200291 if (component->debugfs_prefix) {
292 char *name;
Russell Kinge73f3de2014-06-26 15:22:50 +0100293
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200294 name = kasprintf(GFP_KERNEL, "%s:%s",
295 component->debugfs_prefix, component->name);
296 if (name) {
297 component->debugfs_root = debugfs_create_dir(name,
298 component->card->debugfs_card_root);
299 kfree(name);
300 }
301 } else {
302 component->debugfs_root = debugfs_create_dir(component->name,
303 component->card->debugfs_card_root);
304 }
Russell Kinge73f3de2014-06-26 15:22:50 +0100305
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200306 if (!component->debugfs_root) {
307 dev_warn(component->dev,
308 "ASoC: Failed to create component debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000309 return;
310 }
311
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200312 snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component),
313 component->debugfs_root);
314
315 if (component->init_debugfs)
316 component->init_debugfs(component);
317}
318
319static void soc_cleanup_component_debugfs(struct snd_soc_component *component)
320{
321 debugfs_remove_recursive(component->debugfs_root);
322}
323
324static void soc_init_codec_debugfs(struct snd_soc_component *component)
325{
326 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
327
Mark Brown2624d5f2009-11-03 21:56:13 +0000328 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200329 codec->component.debugfs_root,
Mark Brown2624d5f2009-11-03 21:56:13 +0000330 codec, &codec_reg_fops);
331 if (!codec->debugfs_reg)
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200332 dev_warn(codec->dev,
333 "ASoC: Failed to create codec register debugfs file\n");
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000334}
335
Mark Brownc3c5a192010-09-15 18:15:14 +0100336static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
337 size_t count, loff_t *ppos)
338{
339 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100340 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100341 struct snd_soc_codec *codec;
342
343 if (!buf)
344 return -ENOMEM;
345
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100346 mutex_lock(&client_mutex);
347
Mark Brown2b194f9d2010-10-13 10:52:16 +0100348 list_for_each_entry(codec, &codec_list, list) {
349 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200350 codec->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100351 if (len >= 0)
352 ret += len;
353 if (ret > PAGE_SIZE) {
354 ret = PAGE_SIZE;
355 break;
356 }
357 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100358
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100359 mutex_unlock(&client_mutex);
360
Mark Brownc3c5a192010-09-15 18:15:14 +0100361 if (ret >= 0)
362 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
363
364 kfree(buf);
365
366 return ret;
367}
368
369static const struct file_operations codec_list_fops = {
370 .read = codec_list_read_file,
371 .llseek = default_llseek,/* read accesses f_pos */
372};
373
Mark Brownf3208782010-09-15 18:19:07 +0100374static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
375 size_t count, loff_t *ppos)
376{
377 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100378 ssize_t len, ret = 0;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100379 struct snd_soc_component *component;
Mark Brownf3208782010-09-15 18:19:07 +0100380 struct snd_soc_dai *dai;
381
382 if (!buf)
383 return -ENOMEM;
384
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100385 mutex_lock(&client_mutex);
386
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100387 list_for_each_entry(component, &component_list, list) {
388 list_for_each_entry(dai, &component->dai_list, list) {
389 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
390 dai->name);
391 if (len >= 0)
392 ret += len;
393 if (ret > PAGE_SIZE) {
394 ret = PAGE_SIZE;
395 break;
396 }
Mark Brown2b194f9d2010-10-13 10:52:16 +0100397 }
398 }
Mark Brownf3208782010-09-15 18:19:07 +0100399
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100400 mutex_unlock(&client_mutex);
401
Mark Brown2b194f9d2010-10-13 10:52:16 +0100402 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100403
404 kfree(buf);
405
406 return ret;
407}
408
409static const struct file_operations dai_list_fops = {
410 .read = dai_list_read_file,
411 .llseek = default_llseek,/* read accesses f_pos */
412};
413
Mark Brown19c7ac22010-09-15 18:22:40 +0100414static ssize_t platform_list_read_file(struct file *file,
415 char __user *user_buf,
416 size_t count, loff_t *ppos)
417{
418 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100419 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100420 struct snd_soc_platform *platform;
421
422 if (!buf)
423 return -ENOMEM;
424
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100425 mutex_lock(&client_mutex);
426
Mark Brown2b194f9d2010-10-13 10:52:16 +0100427 list_for_each_entry(platform, &platform_list, list) {
428 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200429 platform->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100430 if (len >= 0)
431 ret += len;
432 if (ret > PAGE_SIZE) {
433 ret = PAGE_SIZE;
434 break;
435 }
436 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100437
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100438 mutex_unlock(&client_mutex);
439
Mark Brown2b194f9d2010-10-13 10:52:16 +0100440 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100441
442 kfree(buf);
443
444 return ret;
445}
446
447static const struct file_operations platform_list_fops = {
448 .read = platform_list_read_file,
449 .llseek = default_llseek,/* read accesses f_pos */
450};
451
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200452static void soc_init_card_debugfs(struct snd_soc_card *card)
453{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200454 if (!snd_soc_debugfs_root)
455 return;
456
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200457 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000458 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200459 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200460 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100461 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200462 return;
463 }
464
465 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
466 card->debugfs_card_root,
467 &card->pop_time);
468 if (!card->debugfs_pop_time)
469 dev_warn(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000470 "ASoC: Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200471}
472
473static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
474{
475 debugfs_remove_recursive(card->debugfs_card_root);
476}
477
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200478
479static void snd_soc_debugfs_init(void)
480{
481 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
482 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
483 pr_warn("ASoC: Failed to create debugfs directory\n");
484 snd_soc_debugfs_root = NULL;
485 return;
486 }
487
488 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
489 &codec_list_fops))
490 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
491
492 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
493 &dai_list_fops))
494 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
495
496 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
497 &platform_list_fops))
498 pr_warn("ASoC: Failed to create platform list debugfs file\n");
499}
500
501static void snd_soc_debugfs_exit(void)
502{
503 debugfs_remove_recursive(snd_soc_debugfs_root);
504}
505
Mark Brown2624d5f2009-11-03 21:56:13 +0000506#else
507
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200508#define soc_init_codec_debugfs NULL
509
510static inline void soc_init_component_debugfs(
511 struct snd_soc_component *component)
Mark Brown2624d5f2009-11-03 21:56:13 +0000512{
513}
514
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200515static inline void soc_cleanup_component_debugfs(
516 struct snd_soc_component *component)
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000517{
518}
519
Axel Linb95fccb2010-11-09 17:06:44 +0800520static inline void soc_init_card_debugfs(struct snd_soc_card *card)
521{
522}
523
524static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
525{
526}
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200527
528static inline void snd_soc_debugfs_init(void)
529{
530}
531
532static inline void snd_soc_debugfs_exit(void)
533{
534}
535
Mark Brown2624d5f2009-11-03 21:56:13 +0000536#endif
537
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100538struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
539 const char *dai_link, int stream)
540{
Mengdong Lin1a497982015-11-18 02:34:11 -0500541 struct snd_soc_pcm_runtime *rtd;
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100542
Mengdong Lin1a497982015-11-18 02:34:11 -0500543 list_for_each_entry(rtd, &card->rtd_list, list) {
544 if (rtd->dai_link->no_pcm &&
545 !strcmp(rtd->dai_link->name, dai_link))
546 return rtd->pcm->streams[stream].substream;
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100547 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000548 dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100549 return NULL;
550}
551EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
552
Mengdong Lin1a497982015-11-18 02:34:11 -0500553static struct snd_soc_pcm_runtime *soc_new_pcm_runtime(
554 struct snd_soc_card *card, struct snd_soc_dai_link *dai_link)
555{
556 struct snd_soc_pcm_runtime *rtd;
557
558 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
559 if (!rtd)
560 return NULL;
561
562 rtd->card = card;
563 rtd->dai_link = dai_link;
564 rtd->codec_dais = kzalloc(sizeof(struct snd_soc_dai *) *
565 dai_link->num_codecs,
566 GFP_KERNEL);
567 if (!rtd->codec_dais) {
568 kfree(rtd);
569 return NULL;
570 }
571
572 return rtd;
573}
574
575static void soc_free_pcm_runtime(struct snd_soc_pcm_runtime *rtd)
576{
577 if (rtd && rtd->codec_dais)
578 kfree(rtd->codec_dais);
579 kfree(rtd);
580}
581
582static void soc_add_pcm_runtime(struct snd_soc_card *card,
583 struct snd_soc_pcm_runtime *rtd)
584{
585 list_add_tail(&rtd->list, &card->rtd_list);
586 rtd->num = card->num_rtd;
587 card->num_rtd++;
588}
589
590static void soc_remove_pcm_runtimes(struct snd_soc_card *card)
591{
592 struct snd_soc_pcm_runtime *rtd, *_rtd;
593
594 list_for_each_entry_safe(rtd, _rtd, &card->rtd_list, list) {
595 list_del(&rtd->list);
596 soc_free_pcm_runtime(rtd);
597 }
598
599 card->num_rtd = 0;
600}
601
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100602struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
603 const char *dai_link)
604{
Mengdong Lin1a497982015-11-18 02:34:11 -0500605 struct snd_soc_pcm_runtime *rtd;
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100606
Mengdong Lin1a497982015-11-18 02:34:11 -0500607 list_for_each_entry(rtd, &card->rtd_list, list) {
608 if (!strcmp(rtd->dai_link->name, dai_link))
609 return rtd;
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100610 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000611 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100612 return NULL;
613}
614EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
615
Richard Fitzgerald9d58a072013-08-05 13:17:28 +0100616static void codec2codec_close_delayed_work(struct work_struct *work)
617{
618 /* Currently nothing to do for c2c links
619 * Since c2c links are internal nodes in the DAPM graph and
620 * don't interface with the outside world or application layer
621 * we don't have to do any special handling on close.
622 */
623}
624
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000625#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200626/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000627int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200628{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000629 struct snd_soc_card *card = dev_get_drvdata(dev);
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000630 struct snd_soc_component *component;
Mengdong Lin1a497982015-11-18 02:34:11 -0500631 struct snd_soc_pcm_runtime *rtd;
632 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200633
Lars-Peter Clausenc5599b82014-08-19 15:51:30 +0200634 /* If the card is not initialized yet there is nothing to do */
635 if (!card->instantiated)
Daniel Macke3509ff2009-06-03 17:44:49 +0200636 return 0;
637
Andy Green6ed25972008-06-13 16:24:05 +0100638 /* Due to the resume being scheduled into a workqueue we could
639 * suspend before that's finished - wait for it to complete.
640 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000641 snd_power_lock(card->snd_card);
642 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
643 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100644
645 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000646 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100647
Mark Browna00f90f2010-12-02 16:24:24 +0000648 /* mute any active DACs */
Mengdong Lin1a497982015-11-18 02:34:11 -0500649 list_for_each_entry(rtd, &card->rtd_list, list) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100650
Mengdong Lin1a497982015-11-18 02:34:11 -0500651 if (rtd->dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100652 continue;
653
Mengdong Lin1a497982015-11-18 02:34:11 -0500654 for (i = 0; i < rtd->num_codecs; i++) {
655 struct snd_soc_dai *dai = rtd->codec_dais[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +0200656 struct snd_soc_dai_driver *drv = dai->driver;
657
658 if (drv->ops->digital_mute && dai->playback_active)
659 drv->ops->digital_mute(dai, 1);
660 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200661 }
662
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100663 /* suspend all pcms */
Mengdong Lin1a497982015-11-18 02:34:11 -0500664 list_for_each_entry(rtd, &card->rtd_list, list) {
665 if (rtd->dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100666 continue;
667
Mengdong Lin1a497982015-11-18 02:34:11 -0500668 snd_pcm_suspend_all(rtd->pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100669 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100670
Mark Brown87506542008-11-18 20:50:34 +0000671 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000672 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200673
Mengdong Lin1a497982015-11-18 02:34:11 -0500674 list_for_each_entry(rtd, &card->rtd_list, list) {
675 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100676
Mengdong Lin1a497982015-11-18 02:34:11 -0500677 if (rtd->dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100678 continue;
679
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100680 if (cpu_dai->driver->suspend && !cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000681 cpu_dai->driver->suspend(cpu_dai);
Mark Brown1547aba2010-05-07 21:11:40 +0100682 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200683
Lars-Peter Clausen37660b62015-03-30 21:04:50 +0200684 /* close any waiting streams */
Mengdong Lin1a497982015-11-18 02:34:11 -0500685 list_for_each_entry(rtd, &card->rtd_list, list)
686 flush_delayed_work(&rtd->delayed_work);
Mark Brown3efab7d2010-05-09 13:25:43 +0100687
Mengdong Lin1a497982015-11-18 02:34:11 -0500688 list_for_each_entry(rtd, &card->rtd_list, list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000689
Mengdong Lin1a497982015-11-18 02:34:11 -0500690 if (rtd->dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100691 continue;
692
Mengdong Lin1a497982015-11-18 02:34:11 -0500693 snd_soc_dapm_stream_event(rtd,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800694 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800695 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000696
Mengdong Lin1a497982015-11-18 02:34:11 -0500697 snd_soc_dapm_stream_event(rtd,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800698 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800699 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000700 }
701
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200702 /* Recheck all endpoints too, their state is affected by suspend */
703 dapm_mark_endpoints_dirty(card);
Mark Browne2d32ff2012-08-31 17:38:32 -0700704 snd_soc_dapm_sync(&card->dapm);
705
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000706 /* suspend all COMPONENTs */
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000707 list_for_each_entry(component, &card->component_dev_list, card_list) {
708 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000709
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000710 /* If there are paths active then the COMPONENT will be held with
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000711 * bias _ON and should not be suspended. */
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000712 if (!component->suspended) {
Lars-Peter Clausen48901402015-07-06 15:38:11 +0200713 switch (snd_soc_dapm_get_bias_level(dapm)) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000714 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000715 /*
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000716 * If the COMPONENT is capable of idle
Mark Brown125a25d2012-01-31 15:49:10 +0000717 * bias off then being in STANDBY
718 * means it's doing something,
719 * otherwise fall through.
720 */
Lars-Peter Clausen48901402015-07-06 15:38:11 +0200721 if (dapm->idle_bias_off) {
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000722 dev_dbg(component->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200723 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000724 break;
725 }
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200726
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000727 case SND_SOC_BIAS_OFF:
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000728 if (component->suspend)
729 component->suspend(component);
730 component->suspended = 1;
731 if (component->regmap)
732 regcache_mark_dirty(component->regmap);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800733 /* deactivate pins to sleep state */
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000734 pinctrl_pm_select_sleep_state(component->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000735 break;
736 default:
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000737 dev_dbg(component->dev,
738 "ASoC: COMPONENT is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000739 break;
740 }
741 }
742 }
743
Mengdong Lin1a497982015-11-18 02:34:11 -0500744 list_for_each_entry(rtd, &card->rtd_list, list) {
745 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000746
Mengdong Lin1a497982015-11-18 02:34:11 -0500747 if (rtd->dai_link->ignore_suspend)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000748 continue;
749
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100750 if (cpu_dai->driver->suspend && cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000751 cpu_dai->driver->suspend(cpu_dai);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800752
753 /* deactivate pins to sleep state */
754 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200755 }
756
Mark Brown87506542008-11-18 20:50:34 +0000757 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000758 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200759
760 return 0;
761}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000762EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200763
Andy Green6ed25972008-06-13 16:24:05 +0100764/* deferred resume work, so resume can complete before we finished
765 * setting our codec back up, which can be very slow on I2C
766 */
767static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200768{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000769 struct snd_soc_card *card =
770 container_of(work, struct snd_soc_card, deferred_resume_work);
Mengdong Lin1a497982015-11-18 02:34:11 -0500771 struct snd_soc_pcm_runtime *rtd;
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000772 struct snd_soc_component *component;
Mengdong Lin1a497982015-11-18 02:34:11 -0500773 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200774
Andy Green6ed25972008-06-13 16:24:05 +0100775 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
776 * so userspace apps are blocked from touching us
777 */
778
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000779 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100780
Mark Brown99497882010-05-07 20:24:05 +0100781 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000782 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100783
Mark Brown87506542008-11-18 20:50:34 +0000784 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000785 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200786
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100787 /* resume control bus DAIs */
Mengdong Lin1a497982015-11-18 02:34:11 -0500788 list_for_each_entry(rtd, &card->rtd_list, list) {
789 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100790
Mengdong Lin1a497982015-11-18 02:34:11 -0500791 if (rtd->dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100792 continue;
793
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100794 if (cpu_dai->driver->resume && cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000795 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200796 }
797
Kuninori Morimotod9fc4062016-11-30 06:22:36 +0000798 list_for_each_entry(component, &card->component_dev_list, card_list) {
Kuninori Morimoto9178feb2016-11-30 06:23:13 +0000799 if (component->suspended) {
800 if (component->resume)
801 component->resume(component);
802 component->suspended = 0;
Mark Brown1547aba2010-05-07 21:11:40 +0100803 }
804 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200805
Mengdong Lin1a497982015-11-18 02:34:11 -0500806 list_for_each_entry(rtd, &card->rtd_list, list) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100807
Mengdong Lin1a497982015-11-18 02:34:11 -0500808 if (rtd->dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100809 continue;
810
Mengdong Lin1a497982015-11-18 02:34:11 -0500811 snd_soc_dapm_stream_event(rtd,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000812 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800813 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000814
Mengdong Lin1a497982015-11-18 02:34:11 -0500815 snd_soc_dapm_stream_event(rtd,
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000816 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800817 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200818 }
819
Mark Brown3ff3f642008-05-19 12:32:25 +0200820 /* unmute any active DACs */
Mengdong Lin1a497982015-11-18 02:34:11 -0500821 list_for_each_entry(rtd, &card->rtd_list, list) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100822
Mengdong Lin1a497982015-11-18 02:34:11 -0500823 if (rtd->dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100824 continue;
825
Mengdong Lin1a497982015-11-18 02:34:11 -0500826 for (i = 0; i < rtd->num_codecs; i++) {
827 struct snd_soc_dai *dai = rtd->codec_dais[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +0200828 struct snd_soc_dai_driver *drv = dai->driver;
829
830 if (drv->ops->digital_mute && dai->playback_active)
831 drv->ops->digital_mute(dai, 0);
832 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200833 }
834
Mengdong Lin1a497982015-11-18 02:34:11 -0500835 list_for_each_entry(rtd, &card->rtd_list, list) {
836 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100837
Mengdong Lin1a497982015-11-18 02:34:11 -0500838 if (rtd->dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100839 continue;
840
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100841 if (cpu_dai->driver->resume && !cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000842 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200843 }
844
Mark Brown87506542008-11-18 20:50:34 +0000845 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000846 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200847
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000848 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100849
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200850 /* Recheck all endpoints too, their state is affected by suspend */
851 dapm_mark_endpoints_dirty(card);
Mark Browne2d32ff2012-08-31 17:38:32 -0700852 snd_soc_dapm_sync(&card->dapm);
Jeeja KP1a7aaa52015-11-23 21:22:31 +0530853
854 /* userspace can access us now we are back as we were before */
855 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +0100856}
857
858/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000859int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100860{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000861 struct snd_soc_card *card = dev_get_drvdata(dev);
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100862 bool bus_control = false;
Mengdong Lin1a497982015-11-18 02:34:11 -0500863 struct snd_soc_pcm_runtime *rtd;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200864
Lars-Peter Clausenc5599b82014-08-19 15:51:30 +0200865 /* If the card is not initialized yet there is nothing to do */
866 if (!card->instantiated)
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800867 return 0;
868
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800869 /* activate pins from sleep state */
Mengdong Lin1a497982015-11-18 02:34:11 -0500870 list_for_each_entry(rtd, &card->rtd_list, list) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200871 struct snd_soc_dai **codec_dais = rtd->codec_dais;
872 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
873 int j;
874
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800875 if (cpu_dai->active)
876 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200877
878 for (j = 0; j < rtd->num_codecs; j++) {
879 struct snd_soc_dai *codec_dai = codec_dais[j];
880 if (codec_dai->active)
881 pinctrl_pm_select_default_state(codec_dai->dev);
882 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800883 }
884
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100885 /*
886 * DAIs that also act as the control bus master might have other drivers
887 * hanging off them so need to resume immediately. Other drivers don't
888 * have that problem and may take a substantial amount of time to resume
Mark Brown64ab9ba2009-03-31 11:27:03 +0100889 * due to I/O costs and anti-pop so handle them out of line.
890 */
Mengdong Lin1a497982015-11-18 02:34:11 -0500891 list_for_each_entry(rtd, &card->rtd_list, list) {
892 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100893 bus_control |= cpu_dai->driver->bus_control;
Stephen Warren82e14e82011-05-25 14:06:41 -0600894 }
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100895 if (bus_control) {
896 dev_dbg(dev, "ASoC: Resuming control bus master immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600897 soc_resume_deferred(&card->deferred_resume_work);
898 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000899 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600900 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000901 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100902 }
Andy Green6ed25972008-06-13 16:24:05 +0100903
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200904 return 0;
905}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000906EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200907#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000908#define snd_soc_suspend NULL
909#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200910#endif
911
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100912static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800913};
914
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200915static struct snd_soc_component *soc_find_component(
916 const struct device_node *of_node, const char *name)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100917{
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200918 struct snd_soc_component *component;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100919
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100920 lockdep_assert_held(&client_mutex);
921
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200922 list_for_each_entry(component, &component_list, list) {
923 if (of_node) {
924 if (component->dev->of_node == of_node)
925 return component;
926 } else if (strcmp(component->name, name) == 0) {
927 return component;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100928 }
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100929 }
930
931 return NULL;
932}
933
Mengdong Linfbb88b52016-04-22 12:25:33 +0800934/**
935 * snd_soc_find_dai - Find a registered DAI
936 *
937 * @dlc: name of the DAI and optional component info to match
938 *
939 * This function will search all regsitered components and their DAIs to
940 * find the DAI of the same name. The component's of_node and name
941 * should also match if being specified.
942 *
943 * Return: pointer of DAI, or NULL if not found.
944 */
Mengdong Lin305e9022016-04-19 13:12:25 +0800945struct snd_soc_dai *snd_soc_find_dai(
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200946 const struct snd_soc_dai_link_component *dlc)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100947{
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200948 struct snd_soc_component *component;
949 struct snd_soc_dai *dai;
Jyri Sarha3e0aa8d2015-05-26 21:59:05 +0300950 struct device_node *component_of_node;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100951
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100952 lockdep_assert_held(&client_mutex);
953
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200954 /* Find CPU DAI from registered DAIs*/
955 list_for_each_entry(component, &component_list, list) {
Jyri Sarha3e0aa8d2015-05-26 21:59:05 +0300956 component_of_node = component->dev->of_node;
957 if (!component_of_node && component->dev->parent)
958 component_of_node = component->dev->parent->of_node;
959
960 if (dlc->of_node && component_of_node != dlc->of_node)
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200961 continue;
Lars-Peter Clausen1ffae362014-10-29 21:46:30 +0100962 if (dlc->name && strcmp(component->name, dlc->name))
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200963 continue;
964 list_for_each_entry(dai, &component->dai_list, list) {
965 if (dlc->dai_name && strcmp(dai->name, dlc->dai_name))
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100966 continue;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100967
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200968 return dai;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100969 }
970 }
971
972 return NULL;
973}
Mengdong Lin305e9022016-04-19 13:12:25 +0800974EXPORT_SYMBOL_GPL(snd_soc_find_dai);
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100975
Mengdong Lin17fb17552016-11-03 01:04:12 +0800976
977/**
978 * snd_soc_find_dai_link - Find a DAI link
979 *
980 * @card: soc card
981 * @id: DAI link ID to match
982 * @name: DAI link name to match, optional
Charles Keepax8abab352017-01-12 11:38:15 +0000983 * @stream_name: DAI link stream name to match, optional
Mengdong Lin17fb17552016-11-03 01:04:12 +0800984 *
985 * This function will search all existing DAI links of the soc card to
986 * find the link of the same ID. Since DAI links may not have their
987 * unique ID, so name and stream name should also match if being
988 * specified.
989 *
990 * Return: pointer of DAI link, or NULL if not found.
991 */
992struct snd_soc_dai_link *snd_soc_find_dai_link(struct snd_soc_card *card,
993 int id, const char *name,
994 const char *stream_name)
995{
996 struct snd_soc_dai_link *link, *_link;
997
998 lockdep_assert_held(&client_mutex);
999
1000 list_for_each_entry_safe(link, _link, &card->dai_link_list, list) {
1001 if (link->id != id)
1002 continue;
1003
1004 if (name && (!link->name || strcmp(name, link->name)))
1005 continue;
1006
1007 if (stream_name && (!link->stream_name
1008 || strcmp(stream_name, link->stream_name)))
1009 continue;
1010
1011 return link;
1012 }
1013
1014 return NULL;
1015}
1016EXPORT_SYMBOL_GPL(snd_soc_find_dai_link);
1017
Mengdong Lin49a5ba12015-12-02 14:11:40 +08001018static bool soc_is_dai_link_bound(struct snd_soc_card *card,
1019 struct snd_soc_dai_link *dai_link)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001020{
Mengdong Lin49a5ba12015-12-02 14:11:40 +08001021 struct snd_soc_pcm_runtime *rtd;
1022
1023 list_for_each_entry(rtd, &card->rtd_list, list) {
1024 if (rtd->dai_link == dai_link)
1025 return true;
1026 }
1027
1028 return false;
1029}
1030
Mengdong Lin6f2f1ff2015-11-23 11:03:52 -05001031static int soc_bind_dai_link(struct snd_soc_card *card,
1032 struct snd_soc_dai_link *dai_link)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001033{
Mengdong Lin1a497982015-11-18 02:34:11 -05001034 struct snd_soc_pcm_runtime *rtd;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001035 struct snd_soc_dai_link_component *codecs = dai_link->codecs;
Lars-Peter Clausen14621c72014-08-19 15:51:27 +02001036 struct snd_soc_dai_link_component cpu_dai_component;
Mengdong Lin1a497982015-11-18 02:34:11 -05001037 struct snd_soc_dai **codec_dais;
Mark Brown435c5e22008-12-04 15:32:53 +00001038 struct snd_soc_platform *platform;
Charles Keepax06859fc2016-11-07 13:03:17 +00001039 struct device_node *platform_of_node;
Mark Brown848dd8b2011-04-27 18:16:32 +01001040 const char *platform_name;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001041 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001042
Mengdong Lin6f2f1ff2015-11-23 11:03:52 -05001043 dev_dbg(card->dev, "ASoC: binding %s\n", dai_link->name);
Mark Brown63084192008-12-02 15:08:03 +00001044
Mengdong Lin49a5ba12015-12-02 14:11:40 +08001045 if (soc_is_dai_link_bound(card, dai_link)) {
1046 dev_dbg(card->dev, "ASoC: dai link %s already bound\n",
1047 dai_link->name);
1048 return 0;
1049 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001050
Sudip Mukherjee513cb312016-02-22 14:14:31 +05301051 rtd = soc_new_pcm_runtime(card, dai_link);
1052 if (!rtd)
1053 return -ENOMEM;
1054
Lars-Peter Clausen14621c72014-08-19 15:51:27 +02001055 cpu_dai_component.name = dai_link->cpu_name;
1056 cpu_dai_component.of_node = dai_link->cpu_of_node;
1057 cpu_dai_component.dai_name = dai_link->cpu_dai_name;
1058 rtd->cpu_dai = snd_soc_find_dai(&cpu_dai_component);
Mark Brownb19e6e72012-03-14 21:18:39 +00001059 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001060 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001061 dai_link->cpu_dai_name);
Mengdong Lin1a497982015-11-18 02:34:11 -05001062 goto _err_defer;
Mark Brownc5af3a22008-11-28 13:29:45 +00001063 }
1064
Benoit Cousson88bd8702014-07-08 23:19:34 +02001065 rtd->num_codecs = dai_link->num_codecs;
1066
1067 /* Find CODEC from registered CODECs */
Mengdong Lin1a497982015-11-18 02:34:11 -05001068 codec_dais = rtd->codec_dais;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001069 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen14621c72014-08-19 15:51:27 +02001070 codec_dais[i] = snd_soc_find_dai(&codecs[i]);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001071 if (!codec_dais[i]) {
1072 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
1073 codecs[i].dai_name);
Mengdong Lin1a497982015-11-18 02:34:11 -05001074 goto _err_defer;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001075 }
Mark Brownb19e6e72012-03-14 21:18:39 +00001076 }
Mark Brown848dd8b2011-04-27 18:16:32 +01001077
Benoit Cousson88bd8702014-07-08 23:19:34 +02001078 /* Single codec links expect codec and codec_dai in runtime data */
1079 rtd->codec_dai = codec_dais[0];
1080 rtd->codec = rtd->codec_dai->codec;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +01001081
Mark Brown848dd8b2011-04-27 18:16:32 +01001082 /* if there's no platform we match on the empty platform */
1083 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -07001084 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +01001085 platform_name = "snd-soc-dummy";
1086
Mark Brownb19e6e72012-03-14 21:18:39 +00001087 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001088 list_for_each_entry(platform, &platform_list, list) {
Charles Keepax06859fc2016-11-07 13:03:17 +00001089 platform_of_node = platform->dev->of_node;
1090 if (!platform_of_node && platform->dev->parent->of_node)
1091 platform_of_node = platform->dev->parent->of_node;
1092
Stephen Warren5a504962011-12-21 10:40:59 -07001093 if (dai_link->platform_of_node) {
Charles Keepax06859fc2016-11-07 13:03:17 +00001094 if (platform_of_node != dai_link->platform_of_node)
Stephen Warren5a504962011-12-21 10:40:59 -07001095 continue;
1096 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02001097 if (strcmp(platform->component.name, platform_name))
Stephen Warren5a504962011-12-21 10:40:59 -07001098 continue;
1099 }
Stephen Warren2610ab72011-12-07 13:58:27 -07001100
1101 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001102 }
Mark Brownb19e6e72012-03-14 21:18:39 +00001103 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001104 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001105 dai_link->platform_name);
Charles Keepax70fcad42016-08-11 14:39:00 +01001106 goto _err_defer;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001107 }
Mark Brownb19e6e72012-03-14 21:18:39 +00001108
Mengdong Lin1a497982015-11-18 02:34:11 -05001109 soc_add_pcm_runtime(card, rtd);
Mark Brownb19e6e72012-03-14 21:18:39 +00001110 return 0;
Mengdong Lin1a497982015-11-18 02:34:11 -05001111
1112_err_defer:
1113 soc_free_pcm_runtime(rtd);
1114 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001115}
1116
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001117static void soc_remove_component(struct snd_soc_component *component)
Stephen Warrend12cd192012-06-08 12:34:22 -06001118{
Lars-Peter Clausenabd31b32015-07-08 20:47:44 +02001119 if (!component->card)
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001120 return;
Stephen Warrend12cd192012-06-08 12:34:22 -06001121
Kuninori Morimotod9fc4062016-11-30 06:22:36 +00001122 list_del(&component->card_list);
Stephen Warrend12cd192012-06-08 12:34:22 -06001123
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001124 if (component->remove)
1125 component->remove(component);
Stephen Warrend12cd192012-06-08 12:34:22 -06001126
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001127 snd_soc_dapm_free(snd_soc_component_get_dapm(component));
Stephen Warrend12cd192012-06-08 12:34:22 -06001128
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001129 soc_cleanup_component_debugfs(component);
Lars-Peter Clausenabd31b32015-07-08 20:47:44 +02001130 component->card = NULL;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001131 module_put(component->dev->driver->owner);
Stephen Warrend12cd192012-06-08 12:34:22 -06001132}
1133
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001134static void soc_remove_dai(struct snd_soc_dai *dai, int order)
Jarkko Nikula589c3562010-12-06 16:27:07 +02001135{
1136 int err;
1137
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001138 if (dai && dai->probed &&
1139 dai->driver->remove_order == order) {
1140 if (dai->driver->remove) {
1141 err = dai->driver->remove(dai);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001142 if (err < 0)
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001143 dev_err(dai->dev,
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001144 "ASoC: failed to remove %s: %d\n",
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001145 dai->name, err);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001146 }
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001147 dai->probed = 0;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001148 }
1149}
1150
Mengdong Lin1a497982015-11-18 02:34:11 -05001151static void soc_remove_link_dais(struct snd_soc_card *card,
1152 struct snd_soc_pcm_runtime *rtd, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001153{
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001154 int i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001155
1156 /* unregister the rtd device */
1157 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001158 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001159 rtd->dev_registered = 0;
1160 }
1161
1162 /* remove the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001163 for (i = 0; i < rtd->num_codecs; i++)
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001164 soc_remove_dai(rtd->codec_dais[i], order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001165
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001166 soc_remove_dai(rtd->cpu_dai, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001167}
1168
Mengdong Lin1a497982015-11-18 02:34:11 -05001169static void soc_remove_link_components(struct snd_soc_card *card,
1170 struct snd_soc_pcm_runtime *rtd, int order)
Stephen Warren62ae68f2012-06-08 12:34:23 -06001171{
Stephen Warren62ae68f2012-06-08 12:34:23 -06001172 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001173 struct snd_soc_platform *platform = rtd->platform;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001174 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001175 int i;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001176
1177 /* remove the platform */
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001178 if (platform && platform->component.driver->remove_order == order)
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001179 soc_remove_component(&platform->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001180
1181 /* remove the CODEC-side CODEC */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001182 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001183 component = rtd->codec_dais[i]->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001184 if (component->driver->remove_order == order)
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001185 soc_remove_component(component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001186 }
1187
1188 /* remove any CPU-side CODEC */
1189 if (cpu_dai) {
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001190 if (cpu_dai->component->driver->remove_order == order)
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001191 soc_remove_component(cpu_dai->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001192 }
1193}
1194
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001195static void soc_remove_dai_links(struct snd_soc_card *card)
1196{
Mengdong Lin1a497982015-11-18 02:34:11 -05001197 int order;
1198 struct snd_soc_pcm_runtime *rtd;
Mengdong Linf8f80362015-12-02 14:11:22 +08001199 struct snd_soc_dai_link *link, *_link;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001200
Liam Girdwood0168bf02011-06-07 16:08:05 +01001201 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1202 order++) {
Mengdong Lin1a497982015-11-18 02:34:11 -05001203 list_for_each_entry(rtd, &card->rtd_list, list)
1204 soc_remove_link_dais(card, rtd, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001205 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001206
1207 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1208 order++) {
Mengdong Lin1a497982015-11-18 02:34:11 -05001209 list_for_each_entry(rtd, &card->rtd_list, list)
1210 soc_remove_link_components(card, rtd, order);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001211 }
1212
Mengdong Linf8f80362015-12-02 14:11:22 +08001213 list_for_each_entry_safe(link, _link, &card->dai_link_list, list) {
1214 if (link->dobj.type == SND_SOC_DOBJ_DAI_LINK)
1215 dev_warn(card->dev, "Topology forgot to remove link %s?\n",
1216 link->name);
1217
1218 list_del(&link->list);
1219 card->num_dai_links--;
1220 }
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001221}
1222
Mengdong Lin923c5e612015-11-23 11:01:49 -05001223static int snd_soc_init_multicodec(struct snd_soc_card *card,
1224 struct snd_soc_dai_link *dai_link)
1225{
1226 /* Legacy codec/codec_dai link is a single entry in multicodec */
1227 if (dai_link->codec_name || dai_link->codec_of_node ||
1228 dai_link->codec_dai_name) {
1229 dai_link->num_codecs = 1;
1230
1231 dai_link->codecs = devm_kzalloc(card->dev,
1232 sizeof(struct snd_soc_dai_link_component),
1233 GFP_KERNEL);
1234 if (!dai_link->codecs)
1235 return -ENOMEM;
1236
1237 dai_link->codecs[0].name = dai_link->codec_name;
1238 dai_link->codecs[0].of_node = dai_link->codec_of_node;
1239 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
1240 }
1241
1242 if (!dai_link->codecs) {
1243 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
1244 return -EINVAL;
1245 }
1246
1247 return 0;
1248}
1249
1250static int soc_init_dai_link(struct snd_soc_card *card,
1251 struct snd_soc_dai_link *link)
1252{
1253 int i, ret;
1254
1255 ret = snd_soc_init_multicodec(card, link);
1256 if (ret) {
1257 dev_err(card->dev, "ASoC: failed to init multicodec\n");
1258 return ret;
1259 }
1260
1261 for (i = 0; i < link->num_codecs; i++) {
1262 /*
1263 * Codec must be specified by 1 of name or OF node,
1264 * not both or neither.
1265 */
1266 if (!!link->codecs[i].name ==
1267 !!link->codecs[i].of_node) {
1268 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
1269 link->name);
1270 return -EINVAL;
1271 }
1272 /* Codec DAI name must be specified */
1273 if (!link->codecs[i].dai_name) {
1274 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
1275 link->name);
1276 return -EINVAL;
1277 }
1278 }
1279
1280 /*
1281 * Platform may be specified by either name or OF node, but
1282 * can be left unspecified, and a dummy platform will be used.
1283 */
1284 if (link->platform_name && link->platform_of_node) {
1285 dev_err(card->dev,
1286 "ASoC: Both platform name/of_node are set for %s\n",
1287 link->name);
1288 return -EINVAL;
1289 }
1290
1291 /*
1292 * CPU device may be specified by either name or OF node, but
1293 * can be left unspecified, and will be matched based on DAI
1294 * name alone..
1295 */
1296 if (link->cpu_name && link->cpu_of_node) {
1297 dev_err(card->dev,
1298 "ASoC: Neither/both cpu name/of_node are set for %s\n",
1299 link->name);
1300 return -EINVAL;
1301 }
1302 /*
1303 * At least one of CPU DAI name or CPU device name/node must be
1304 * specified
1305 */
1306 if (!link->cpu_dai_name &&
1307 !(link->cpu_name || link->cpu_of_node)) {
1308 dev_err(card->dev,
1309 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
1310 link->name);
1311 return -EINVAL;
1312 }
1313
1314 return 0;
1315}
1316
Mengdong Linf8f80362015-12-02 14:11:22 +08001317/**
1318 * snd_soc_add_dai_link - Add a DAI link dynamically
1319 * @card: The ASoC card to which the DAI link is added
1320 * @dai_link: The new DAI link to add
1321 *
1322 * This function adds a DAI link to the ASoC card's link list.
1323 *
1324 * Note: Topology can use this API to add DAI links when probing the
1325 * topology component. And machine drivers can still define static
1326 * DAI links in dai_link array.
1327 */
1328int snd_soc_add_dai_link(struct snd_soc_card *card,
1329 struct snd_soc_dai_link *dai_link)
1330{
1331 if (dai_link->dobj.type
1332 && dai_link->dobj.type != SND_SOC_DOBJ_DAI_LINK) {
1333 dev_err(card->dev, "Invalid dai link type %d\n",
1334 dai_link->dobj.type);
1335 return -EINVAL;
1336 }
1337
1338 lockdep_assert_held(&client_mutex);
Mengdong Lind6f220e2015-12-02 14:11:32 +08001339 /* Notify the machine driver for extra initialization
1340 * on the link created by topology.
1341 */
1342 if (dai_link->dobj.type && card->add_dai_link)
1343 card->add_dai_link(card, dai_link);
1344
Mengdong Linf8f80362015-12-02 14:11:22 +08001345 list_add_tail(&dai_link->list, &card->dai_link_list);
1346 card->num_dai_links++;
1347
1348 return 0;
1349}
1350EXPORT_SYMBOL_GPL(snd_soc_add_dai_link);
1351
1352/**
1353 * snd_soc_remove_dai_link - Remove a DAI link from the list
1354 * @card: The ASoC card that owns the link
1355 * @dai_link: The DAI link to remove
1356 *
1357 * This function removes a DAI link from the ASoC card's link list.
1358 *
1359 * For DAI links previously added by topology, topology should
1360 * remove them by using the dobj embedded in the link.
1361 */
1362void snd_soc_remove_dai_link(struct snd_soc_card *card,
1363 struct snd_soc_dai_link *dai_link)
1364{
1365 struct snd_soc_dai_link *link, *_link;
1366
1367 if (dai_link->dobj.type
1368 && dai_link->dobj.type != SND_SOC_DOBJ_DAI_LINK) {
1369 dev_err(card->dev, "Invalid dai link type %d\n",
1370 dai_link->dobj.type);
1371 return;
1372 }
1373
1374 lockdep_assert_held(&client_mutex);
Mengdong Lind6f220e2015-12-02 14:11:32 +08001375 /* Notify the machine driver for extra destruction
1376 * on the link created by topology.
1377 */
1378 if (dai_link->dobj.type && card->remove_dai_link)
1379 card->remove_dai_link(card, dai_link);
1380
Mengdong Linf8f80362015-12-02 14:11:22 +08001381 list_for_each_entry_safe(link, _link, &card->dai_link_list, list) {
1382 if (link == dai_link) {
1383 list_del(&link->list);
1384 card->num_dai_links--;
1385 return;
1386 }
1387 }
1388}
1389EXPORT_SYMBOL_GPL(snd_soc_remove_dai_link);
1390
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001391static void soc_set_name_prefix(struct snd_soc_card *card,
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001392 struct snd_soc_component *component)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001393{
1394 int i;
1395
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001396 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001397 return;
1398
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001399 for (i = 0; i < card->num_configs; i++) {
1400 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001401 if (map->of_node && component->dev->of_node != map->of_node)
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001402 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001403 if (map->dev_name && strcmp(component->name, map->dev_name))
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001404 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001405 component->name_prefix = map->name_prefix;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001406 break;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001407 }
1408}
1409
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001410static int soc_probe_component(struct snd_soc_card *card,
1411 struct snd_soc_component *component)
Jarkko Nikula589c3562010-12-06 16:27:07 +02001412{
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001413 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
Mark Brown888df392012-02-16 19:37:51 -08001414 struct snd_soc_dai *dai;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001415 int ret;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001416
Lars-Peter Clausen1b7c1232015-07-08 20:47:43 +02001417 if (!strcmp(component->name, "snd-soc-dummy"))
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001418 return 0;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001419
Lars-Peter Clausenabd31b32015-07-08 20:47:44 +02001420 if (component->card) {
Lars-Peter Clausen1b7c1232015-07-08 20:47:43 +02001421 if (component->card != card) {
1422 dev_err(component->dev,
1423 "Trying to bind component to card \"%s\" but is already bound to card \"%s\"\n",
1424 card->name, component->card->name);
1425 return -ENODEV;
1426 }
1427 return 0;
1428 }
1429
Lars-Peter Clausenabd31b32015-07-08 20:47:44 +02001430 if (!try_module_get(component->dev->driver->owner))
1431 return -ENODEV;
1432
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001433 component->card = card;
1434 dapm->card = card;
1435 soc_set_name_prefix(card, component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001436
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001437 soc_init_component_debugfs(component);
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001438
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001439 if (component->dapm_widgets) {
1440 ret = snd_soc_dapm_new_controls(dapm, component->dapm_widgets,
1441 component->num_dapm_widgets);
Nariman Poushinb318ad52014-04-01 13:59:33 +01001442
1443 if (ret != 0) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001444 dev_err(component->dev,
Nariman Poushinb318ad52014-04-01 13:59:33 +01001445 "Failed to create new controls %d\n", ret);
1446 goto err_probe;
1447 }
1448 }
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001449
Lars-Peter Clausen06348142014-08-20 13:08:49 +02001450 list_for_each_entry(dai, &component->dai_list, list) {
1451 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
Nariman Poushin261edc72014-03-31 15:47:12 +01001452 if (ret != 0) {
Lars-Peter Clausen06348142014-08-20 13:08:49 +02001453 dev_err(component->dev,
Nariman Poushin261edc72014-03-31 15:47:12 +01001454 "Failed to create DAI widgets %d\n", ret);
1455 goto err_probe;
1456 }
1457 }
Mark Brown888df392012-02-16 19:37:51 -08001458
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001459 if (component->probe) {
1460 ret = component->probe(component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001461 if (ret < 0) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001462 dev_err(component->dev,
1463 "ASoC: failed to probe component %d\n", ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001464 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001465 }
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001466
1467 WARN(dapm->idle_bias_off &&
1468 dapm->bias_level != SND_SOC_BIAS_OFF,
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001469 "codec %s can not start from non-off bias with idle_bias_off==1\n",
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001470 component->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001471 }
1472
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001473 /* machine specific init */
1474 if (component->init) {
1475 ret = component->init(component);
1476 if (ret < 0) {
1477 dev_err(component->dev,
1478 "Failed to do machine specific init %d\n", ret);
1479 goto err_probe;
1480 }
1481 }
1482
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001483 if (component->controls)
1484 snd_soc_add_component_controls(component, component->controls,
1485 component->num_controls);
1486 if (component->dapm_routes)
1487 snd_soc_dapm_add_routes(dapm, component->dapm_routes,
1488 component->num_dapm_routes);
Mark Brown89b95ac02011-03-07 16:38:44 +00001489
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001490 list_add(&dapm->list, &card->dapm_list);
Kuninori Morimotod9fc4062016-11-30 06:22:36 +00001491 list_add(&component->card_list, &card->component_dev_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001492
Jarkko Nikula70d29332011-01-27 16:24:22 +02001493 return 0;
1494
1495err_probe:
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001496 soc_cleanup_component_debugfs(component);
Lars-Peter Clausenabd31b32015-07-08 20:47:44 +02001497 component->card = NULL;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001498 module_put(component->dev->driver->owner);
Liam Girdwood956245e2011-07-01 16:54:08 +01001499
1500 return ret;
1501}
1502
Mark Brown36ae1a92012-01-06 17:12:45 -08001503static void rtd_release(struct device *dev)
1504{
1505 kfree(dev);
1506}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001507
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001508static int soc_post_component_init(struct snd_soc_pcm_runtime *rtd,
1509 const char *name)
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001510{
Jarkko Nikula589c3562010-12-06 16:27:07 +02001511 int ret = 0;
1512
Jarkko Nikula589c3562010-12-06 16:27:07 +02001513 /* register the rtd device */
Mark Brown36ae1a92012-01-06 17:12:45 -08001514 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1515 if (!rtd->dev)
1516 return -ENOMEM;
1517 device_initialize(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001518 rtd->dev->parent = rtd->card->dev;
Mark Brown36ae1a92012-01-06 17:12:45 -08001519 rtd->dev->release = rtd_release;
Takashi Iwaid29697d2015-01-30 20:16:37 +01001520 rtd->dev->groups = soc_dev_attr_groups;
Lars-Peter Clausenf294afe2014-08-17 11:28:35 +02001521 dev_set_name(rtd->dev, "%s", name);
Mark Brown36ae1a92012-01-06 17:12:45 -08001522 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001523 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001524 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1525 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1526 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1527 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001528 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001529 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001530 /* calling put_device() here to free the rtd->dev */
1531 put_device(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001532 dev_err(rtd->card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001533 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001534 return ret;
1535 }
1536 rtd->dev_registered = 1;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001537 return 0;
1538}
1539
Mengdong Lin1a497982015-11-18 02:34:11 -05001540static int soc_probe_link_components(struct snd_soc_card *card,
1541 struct snd_soc_pcm_runtime *rtd,
Stephen Warren62ae68f2012-06-08 12:34:23 -06001542 int order)
1543{
Stephen Warren62ae68f2012-06-08 12:34:23 -06001544 struct snd_soc_platform *platform = rtd->platform;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001545 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001546 int i, ret;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001547
1548 /* probe the CPU-side component, if it is a CODEC */
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001549 component = rtd->cpu_dai->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001550 if (component->driver->probe_order == order) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001551 ret = soc_probe_component(card, component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001552 if (ret < 0)
1553 return ret;
1554 }
1555
Benoit Cousson88bd8702014-07-08 23:19:34 +02001556 /* probe the CODEC-side components */
1557 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001558 component = rtd->codec_dais[i]->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001559 if (component->driver->probe_order == order) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001560 ret = soc_probe_component(card, component);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001561 if (ret < 0)
1562 return ret;
1563 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001564 }
1565
1566 /* probe the platform */
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001567 if (platform->component.driver->probe_order == order) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001568 ret = soc_probe_component(card, &platform->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001569 if (ret < 0)
1570 return ret;
1571 }
1572
1573 return 0;
1574}
1575
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001576static int soc_probe_dai(struct snd_soc_dai *dai, int order)
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001577{
1578 int ret;
1579
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001580 if (!dai->probed && dai->driver->probe_order == order) {
1581 if (dai->driver->probe) {
1582 ret = dai->driver->probe(dai);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001583 if (ret < 0) {
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001584 dev_err(dai->dev,
1585 "ASoC: failed to probe DAI %s: %d\n",
1586 dai->name, ret);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001587 return ret;
1588 }
1589 }
1590
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001591 dai->probed = 1;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001592 }
1593
1594 return 0;
1595}
1596
Arnaud Pouliquen25f7b702017-01-03 16:52:51 +01001597static int soc_link_dai_pcm_new(struct snd_soc_dai **dais, int num_dais,
1598 struct snd_soc_pcm_runtime *rtd)
1599{
1600 int i, ret = 0;
1601
1602 for (i = 0; i < num_dais; ++i) {
1603 struct snd_soc_dai_driver *drv = dais[i]->driver;
1604
1605 if (!rtd->dai_link->no_pcm && drv->pcm_new)
1606 ret = drv->pcm_new(rtd, dais[i]);
1607 if (ret < 0) {
1608 dev_err(dais[i]->dev,
1609 "ASoC: Failed to bind %s with pcm device\n",
1610 dais[i]->name);
1611 return ret;
1612 }
1613 }
1614
1615 return 0;
1616}
1617
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001618static int soc_link_dai_widgets(struct snd_soc_card *card,
1619 struct snd_soc_dai_link *dai_link,
Benoit Cousson3f901a02014-07-01 09:47:54 +02001620 struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001621{
Benoit Cousson3f901a02014-07-01 09:47:54 +02001622 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1623 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Vinod Koul3de7c422015-11-09 23:19:58 +05301624 struct snd_soc_dapm_widget *sink, *source;
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001625 int ret;
1626
Benoit Cousson88bd8702014-07-08 23:19:34 +02001627 if (rtd->num_codecs > 1)
1628 dev_warn(card->dev, "ASoC: Multiple codecs not supported yet\n");
1629
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001630 /* link the DAI widgets */
Vinod Koul3de7c422015-11-09 23:19:58 +05301631 sink = codec_dai->playback_widget;
1632 source = cpu_dai->capture_widget;
1633 if (sink && source) {
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001634 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
Vinod Koul3de7c422015-11-09 23:19:58 +05301635 dai_link->num_params,
1636 source, sink);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001637 if (ret != 0) {
1638 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
Vinod Koul3de7c422015-11-09 23:19:58 +05301639 sink->name, source->name, ret);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001640 return ret;
1641 }
1642 }
1643
Vinod Koul3de7c422015-11-09 23:19:58 +05301644 sink = cpu_dai->playback_widget;
1645 source = codec_dai->capture_widget;
1646 if (sink && source) {
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001647 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
Vinod Koul3de7c422015-11-09 23:19:58 +05301648 dai_link->num_params,
1649 source, sink);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001650 if (ret != 0) {
1651 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
Vinod Koul3de7c422015-11-09 23:19:58 +05301652 sink->name, source->name, ret);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001653 return ret;
1654 }
1655 }
1656
1657 return 0;
1658}
1659
Mengdong Lin1a497982015-11-18 02:34:11 -05001660static int soc_probe_link_dais(struct snd_soc_card *card,
1661 struct snd_soc_pcm_runtime *rtd, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001662{
Mengdong Lin1a497982015-11-18 02:34:11 -05001663 struct snd_soc_dai_link *dai_link = rtd->dai_link;
Mark Brownc74184e2012-04-04 22:12:09 +01001664 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001665 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001666
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001667 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Mengdong Lin1a497982015-11-18 02:34:11 -05001668 card->name, rtd->num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001669
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001670 /* set default power off timeout */
1671 rtd->pmdown_time = pmdown_time;
1672
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001673 ret = soc_probe_dai(cpu_dai, order);
1674 if (ret)
1675 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001676
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001677 /* probe the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001678 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001679 ret = soc_probe_dai(rtd->codec_dais[i], order);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001680 if (ret)
1681 return ret;
1682 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001683
Liam Girdwood0168bf02011-06-07 16:08:05 +01001684 /* complete DAI probe during last probe */
1685 if (order != SND_SOC_COMP_ORDER_LAST)
1686 return 0;
1687
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001688 /* do machine specific initialization */
1689 if (dai_link->init) {
1690 ret = dai_link->init(rtd);
1691 if (ret < 0) {
1692 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1693 dai_link->name, ret);
1694 return ret;
1695 }
1696 }
1697
Kuninori Morimotoa5053a82015-04-10 09:47:00 +00001698 if (dai_link->dai_fmt)
1699 snd_soc_runtime_set_dai_fmt(rtd, dai_link->dai_fmt);
1700
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001701 ret = soc_post_component_init(rtd, dai_link->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001702 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001703 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001704
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001705#ifdef CONFIG_DEBUG_FS
1706 /* add DPCM sysfs entries */
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02001707 if (dai_link->dynamic)
1708 soc_dpcm_debugfs_add(rtd);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001709#endif
1710
Jie Yang6f0c4222015-10-13 23:41:00 +08001711 if (cpu_dai->driver->compress_new) {
Namarta Kohli1245b702012-08-16 17:10:41 +05301712 /*create compress_device"*/
Mengdong Lin1a497982015-11-18 02:34:11 -05001713 ret = cpu_dai->driver->compress_new(rtd, rtd->num);
Mark Brownc74184e2012-04-04 22:12:09 +01001714 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001715 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301716 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001717 return ret;
1718 }
1719 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301720
1721 if (!dai_link->params) {
1722 /* create the pcm */
Mengdong Lin1a497982015-11-18 02:34:11 -05001723 ret = soc_new_pcm(rtd, rtd->num);
Namarta Kohli1245b702012-08-16 17:10:41 +05301724 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001725 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301726 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001727 return ret;
1728 }
Arnaud Pouliquen25f7b702017-01-03 16:52:51 +01001729 ret = soc_link_dai_pcm_new(&cpu_dai, 1, rtd);
1730 if (ret < 0)
1731 return ret;
1732 ret = soc_link_dai_pcm_new(rtd->codec_dais,
1733 rtd->num_codecs, rtd);
1734 if (ret < 0)
1735 return ret;
Namarta Kohli1245b702012-08-16 17:10:41 +05301736 } else {
Richard Fitzgerald9d58a072013-08-05 13:17:28 +01001737 INIT_DELAYED_WORK(&rtd->delayed_work,
1738 codec2codec_close_delayed_work);
1739
Namarta Kohli1245b702012-08-16 17:10:41 +05301740 /* link the DAI widgets */
Benoit Cousson3f901a02014-07-01 09:47:54 +02001741 ret = soc_link_dai_widgets(card, dai_link, rtd);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001742 if (ret)
1743 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01001744 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001745 }
1746
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001747 return 0;
1748}
1749
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001750static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
Mark Brownb19e6e72012-03-14 21:18:39 +00001751{
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001752 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001753 struct snd_soc_component *component;
1754 const char *name;
1755 struct device_node *codec_of_node;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001756
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001757 if (aux_dev->codec_of_node || aux_dev->codec_name) {
1758 /* codecs, usually analog devices */
1759 name = aux_dev->codec_name;
1760 codec_of_node = aux_dev->codec_of_node;
1761 component = soc_find_component(codec_of_node, name);
1762 if (!component) {
1763 if (codec_of_node)
1764 name = of_node_full_name(codec_of_node);
1765 goto err_defer;
1766 }
1767 } else if (aux_dev->name) {
1768 /* generic components */
1769 name = aux_dev->name;
1770 component = soc_find_component(NULL, name);
1771 if (!component)
1772 goto err_defer;
1773 } else {
1774 dev_err(card->dev, "ASoC: Invalid auxiliary device\n");
1775 return -EINVAL;
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001776 }
1777
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001778 component->init = aux_dev->init;
Sylwester Nawrockid2e3a132016-12-29 14:11:21 +01001779 list_add(&component->card_aux_list, &card->aux_comp_list);
Kuninori Morimoto1a653aa2016-11-30 06:22:55 +00001780
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001781 return 0;
1782
1783err_defer:
1784 dev_err(card->dev, "ASoC: %s not registered\n", name);
1785 return -EPROBE_DEFER;
1786}
1787
1788static int soc_probe_aux_devices(struct snd_soc_card *card)
1789{
Kuninori Morimoto991454e2017-03-24 00:13:00 +00001790 struct snd_soc_component *comp;
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001791 int order;
1792 int ret;
1793
1794 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1795 order++) {
Kuninori Morimoto991454e2017-03-24 00:13:00 +00001796 list_for_each_entry(comp, &card->aux_comp_list, card_aux_list) {
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001797 if (comp->driver->probe_order == order) {
1798 ret = soc_probe_component(card, comp);
1799 if (ret < 0) {
1800 dev_err(card->dev,
1801 "ASoC: failed to probe aux component %s %d\n",
1802 comp->name, ret);
1803 return ret;
1804 }
1805 }
1806 }
1807 }
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001808
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001809 return 0;
Mark Brownb19e6e72012-03-14 21:18:39 +00001810}
1811
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001812static void soc_remove_aux_devices(struct snd_soc_card *card)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001813{
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001814 struct snd_soc_component *comp, *_comp;
1815 int order;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001816
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001817 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1818 order++) {
1819 list_for_each_entry_safe(comp, _comp,
Kuninori Morimoto991454e2017-03-24 00:13:00 +00001820 &card->aux_comp_list, card_aux_list) {
Kuninori Morimoto1a653aa2016-11-30 06:22:55 +00001821
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001822 if (comp->driver->remove_order == order) {
1823 soc_remove_component(comp);
Kuninori Morimoto991454e2017-03-24 00:13:00 +00001824 /* remove it from the card's aux_comp_list */
1825 list_del(&comp->card_aux_list);
Mengdong Linf2ed6b02016-01-06 13:29:31 +08001826 }
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001827 }
1828 }
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001829}
1830
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001831static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001832{
1833 int ret;
1834
1835 if (codec->cache_init)
1836 return 0;
1837
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001838 ret = snd_soc_cache_init(codec);
1839 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001840 dev_err(codec->dev,
1841 "ASoC: Failed to set cache compression type: %d\n",
1842 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001843 return ret;
1844 }
1845 codec->cache_init = 1;
1846 return 0;
1847}
1848
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001849/**
1850 * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1851 * @rtd: The runtime for which the DAI link format should be changed
1852 * @dai_fmt: The new DAI link format
1853 *
1854 * This function updates the DAI link format for all DAIs connected to the DAI
1855 * link for the specified runtime.
1856 *
1857 * Note: For setups with a static format set the dai_fmt field in the
1858 * corresponding snd_dai_link struct instead of using this function.
1859 *
1860 * Returns 0 on success, otherwise a negative error code.
1861 */
1862int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
1863 unsigned int dai_fmt)
1864{
1865 struct snd_soc_dai **codec_dais = rtd->codec_dais;
1866 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1867 unsigned int i;
1868 int ret;
1869
1870 for (i = 0; i < rtd->num_codecs; i++) {
1871 struct snd_soc_dai *codec_dai = codec_dais[i];
1872
1873 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1874 if (ret != 0 && ret != -ENOTSUPP) {
1875 dev_warn(codec_dai->dev,
1876 "ASoC: Failed to set DAI format: %d\n", ret);
1877 return ret;
1878 }
1879 }
1880
1881 /* Flip the polarity for the "CPU" end of a CODEC<->CODEC link */
1882 if (cpu_dai->codec) {
1883 unsigned int inv_dai_fmt;
1884
1885 inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
1886 switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1887 case SND_SOC_DAIFMT_CBM_CFM:
1888 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1889 break;
1890 case SND_SOC_DAIFMT_CBM_CFS:
1891 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1892 break;
1893 case SND_SOC_DAIFMT_CBS_CFM:
1894 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1895 break;
1896 case SND_SOC_DAIFMT_CBS_CFS:
1897 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1898 break;
1899 }
1900
1901 dai_fmt = inv_dai_fmt;
1902 }
1903
1904 ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt);
1905 if (ret != 0 && ret != -ENOTSUPP) {
1906 dev_warn(cpu_dai->dev,
1907 "ASoC: Failed to set DAI format: %d\n", ret);
1908 return ret;
1909 }
1910
1911 return 0;
1912}
Lars-Peter Clausenddaca252015-01-08 12:23:05 +01001913EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt);
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001914
Liam Girdwood345233d2017-01-14 16:13:02 +08001915
1916/* Trim special characters, and replace '-' with '_' since '-' is used to
1917 * separate different DMI fields in the card long name. Only number and
1918 * alphabet characters and a few separator characters are kept.
1919 */
1920static void cleanup_dmi_name(char *name)
1921{
1922 int i, j = 0;
1923
1924 for (i = 0; name[i]; i++) {
1925 if (isalnum(name[i]) || (name[i] == '.')
1926 || (name[i] == '_'))
1927 name[j++] = name[i];
1928 else if (name[i] == '-')
1929 name[j++] = '_';
1930 }
1931
1932 name[j] = '\0';
1933}
1934
1935/**
1936 * snd_soc_set_dmi_name() - Register DMI names to card
1937 * @card: The card to register DMI names
1938 * @flavour: The flavour "differentiator" for the card amongst its peers.
1939 *
1940 * An Intel machine driver may be used by many different devices but are
1941 * difficult for userspace to differentiate, since machine drivers ususally
1942 * use their own name as the card short name and leave the card long name
1943 * blank. To differentiate such devices and fix bugs due to lack of
1944 * device-specific configurations, this function allows DMI info to be used
1945 * as the sound card long name, in the format of
1946 * "vendor-product-version-board"
1947 * (Character '-' is used to separate different DMI fields here).
1948 * This will help the user space to load the device-specific Use Case Manager
1949 * (UCM) configurations for the card.
1950 *
1951 * Possible card long names may be:
1952 * DellInc.-XPS139343-01-0310JH
1953 * ASUSTeKCOMPUTERINC.-T100TA-1.0-T100TA
1954 * Circuitco-MinnowboardMaxD0PLATFORM-D0-MinnowBoardMAX
1955 *
1956 * This function also supports flavoring the card longname to provide
1957 * the extra differentiation, like "vendor-product-version-board-flavor".
1958 *
1959 * We only keep number and alphabet characters and a few separator characters
1960 * in the card long name since UCM in the user space uses the card long names
1961 * as card configuration directory names and AudoConf cannot support special
1962 * charactors like SPACE.
1963 *
1964 * Returns 0 on success, otherwise a negative error code.
1965 */
1966int snd_soc_set_dmi_name(struct snd_soc_card *card, const char *flavour)
1967{
1968 const char *vendor, *product, *product_version, *board;
1969 size_t longname_buf_size = sizeof(card->snd_card->longname);
1970 size_t len;
1971
1972 if (card->long_name)
1973 return 0; /* long name already set by driver or from DMI */
1974
1975 /* make up dmi long name as: vendor.product.version.board */
1976 vendor = dmi_get_system_info(DMI_BOARD_VENDOR);
1977 if (!vendor) {
1978 dev_warn(card->dev, "ASoC: no DMI vendor name!\n");
1979 return 0;
1980 }
1981
1982 snprintf(card->dmi_longname, sizeof(card->snd_card->longname),
1983 "%s", vendor);
1984 cleanup_dmi_name(card->dmi_longname);
1985
1986 product = dmi_get_system_info(DMI_PRODUCT_NAME);
1987 if (product) {
1988 len = strlen(card->dmi_longname);
1989 snprintf(card->dmi_longname + len,
1990 longname_buf_size - len,
1991 "-%s", product);
1992
1993 len++; /* skip the separator "-" */
1994 if (len < longname_buf_size)
1995 cleanup_dmi_name(card->dmi_longname + len);
1996
1997 /* some vendors like Lenovo may only put a self-explanatory
1998 * name in the product version field
1999 */
2000 product_version = dmi_get_system_info(DMI_PRODUCT_VERSION);
2001 if (product_version) {
2002 len = strlen(card->dmi_longname);
2003 snprintf(card->dmi_longname + len,
2004 longname_buf_size - len,
2005 "-%s", product_version);
2006
2007 len++;
2008 if (len < longname_buf_size)
2009 cleanup_dmi_name(card->dmi_longname + len);
2010 }
2011 }
2012
2013 board = dmi_get_system_info(DMI_BOARD_NAME);
2014 if (board) {
2015 len = strlen(card->dmi_longname);
2016 snprintf(card->dmi_longname + len,
2017 longname_buf_size - len,
2018 "-%s", board);
2019
2020 len++;
2021 if (len < longname_buf_size)
2022 cleanup_dmi_name(card->dmi_longname + len);
2023 } else if (!product) {
2024 /* fall back to using legacy name */
2025 dev_warn(card->dev, "ASoC: no DMI board/product name!\n");
2026 return 0;
2027 }
2028
2029 /* Add flavour to dmi long name */
2030 if (flavour) {
2031 len = strlen(card->dmi_longname);
2032 snprintf(card->dmi_longname + len,
2033 longname_buf_size - len,
2034 "-%s", flavour);
2035
2036 len++;
2037 if (len < longname_buf_size)
2038 cleanup_dmi_name(card->dmi_longname + len);
2039 }
2040
2041 /* set the card long name */
2042 card->long_name = card->dmi_longname;
2043
2044 return 0;
2045}
2046EXPORT_SYMBOL_GPL(snd_soc_set_dmi_name);
2047
Mark Brownb19e6e72012-03-14 21:18:39 +00002048static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002049{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00002050 struct snd_soc_codec *codec;
Mengdong Lin1a497982015-11-18 02:34:11 -05002051 struct snd_soc_pcm_runtime *rtd;
Mengdong Lin61b00882015-12-02 14:11:48 +08002052 struct snd_soc_dai_link *dai_link;
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01002053 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002054
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002055 mutex_lock(&client_mutex);
Liam Girdwood01b9d992012-03-07 10:38:25 +00002056 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002057
Mark Brownb19e6e72012-03-14 21:18:39 +00002058 /* bind DAIs */
2059 for (i = 0; i < card->num_links; i++) {
Mengdong Lin6f2f1ff2015-11-23 11:03:52 -05002060 ret = soc_bind_dai_link(card, &card->dai_link[i]);
Mark Brownb19e6e72012-03-14 21:18:39 +00002061 if (ret != 0)
2062 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002063 }
2064
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02002065 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00002066 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02002067 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00002068 if (ret != 0)
2069 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002070 }
2071
Mengdong Linf8f80362015-12-02 14:11:22 +08002072 /* add predefined DAI links to the list */
2073 for (i = 0; i < card->num_links; i++)
2074 snd_soc_add_dai_link(card, card->dai_link+i);
2075
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00002076 /* initialize the register cache for each available codec */
2077 list_for_each_entry(codec, &codec_list, list) {
2078 if (codec->cache_init)
2079 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02002080 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00002081 if (ret < 0)
2082 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00002083 }
2084
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002085 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01002086 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002087 card->owner, 0, &card->snd_card);
2088 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002089 dev_err(card->dev,
2090 "ASoC: can't create sound card for card %s: %d\n",
2091 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00002092 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002093 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002094
Lars-Peter Clausen0757d832015-04-09 10:52:36 +02002095 soc_init_card_debugfs(card);
2096
Mark Browne37a4972011-03-02 18:21:57 +00002097 card->dapm.bias_level = SND_SOC_BIAS_OFF;
2098 card->dapm.dev = card->dev;
2099 card->dapm.card = card;
2100 list_add(&card->dapm.list, &card->dapm_list);
2101
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002102#ifdef CONFIG_DEBUG_FS
2103 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
2104#endif
2105
Mark Brown88ee1c62011-02-02 10:43:26 +00002106#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01002107 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00002108 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01002109#endif
Andy Green6ed25972008-06-13 16:24:05 +01002110
Mark Brown9a841eb2011-04-12 17:51:37 -07002111 if (card->dapm_widgets)
2112 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
2113 card->num_dapm_widgets);
2114
Nicolin Chenf23e8602015-02-14 17:22:49 -08002115 if (card->of_dapm_widgets)
2116 snd_soc_dapm_new_controls(&card->dapm, card->of_dapm_widgets,
2117 card->num_of_dapm_widgets);
2118
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002119 /* initialise the sound card only once */
2120 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00002121 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002122 if (ret < 0)
2123 goto card_probe_error;
2124 }
2125
Stephen Warren62ae68f2012-06-08 12:34:23 -06002126 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01002127 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
2128 order++) {
Mengdong Lin1a497982015-11-18 02:34:11 -05002129 list_for_each_entry(rtd, &card->rtd_list, list) {
2130 ret = soc_probe_link_components(card, rtd, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01002131 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002132 dev_err(card->dev,
2133 "ASoC: failed to instantiate card %d\n",
2134 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06002135 goto probe_dai_err;
2136 }
2137 }
2138 }
2139
Mengdong Linf2ed6b02016-01-06 13:29:31 +08002140 /* probe auxiliary components */
2141 ret = soc_probe_aux_devices(card);
2142 if (ret < 0)
2143 goto probe_dai_err;
2144
Mengdong Lin61b00882015-12-02 14:11:48 +08002145 /* Find new DAI links added during probing components and bind them.
2146 * Components with topology may bring new DAIs and DAI links.
2147 */
2148 list_for_each_entry(dai_link, &card->dai_link_list, list) {
2149 if (soc_is_dai_link_bound(card, dai_link))
2150 continue;
2151
2152 ret = soc_init_dai_link(card, dai_link);
2153 if (ret)
2154 goto probe_dai_err;
2155 ret = soc_bind_dai_link(card, dai_link);
2156 if (ret)
2157 goto probe_dai_err;
2158 }
2159
Stephen Warren62ae68f2012-06-08 12:34:23 -06002160 /* probe all DAI links on this card */
2161 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
2162 order++) {
Mengdong Lin1a497982015-11-18 02:34:11 -05002163 list_for_each_entry(rtd, &card->rtd_list, list) {
2164 ret = soc_probe_link_dais(card, rtd, order);
Stephen Warren62ae68f2012-06-08 12:34:23 -06002165 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002166 dev_err(card->dev,
2167 "ASoC: failed to instantiate card %d\n",
2168 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01002169 goto probe_dai_err;
2170 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002171 }
2172 }
2173
Mark Brown888df392012-02-16 19:37:51 -08002174 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00002175 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08002176
Mark Brownb7af1da2011-04-07 19:18:44 +09002177 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00002178 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09002179
Mark Brownb8ad29d2011-03-02 18:35:51 +00002180 if (card->dapm_routes)
2181 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
2182 card->num_dapm_routes);
2183
Nicolin Chenf23e8602015-02-14 17:22:49 -08002184 if (card->of_dapm_routes)
2185 snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes,
2186 card->num_of_dapm_routes);
Mark Brown75d9ac42011-09-27 16:41:01 +01002187
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002188 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002189 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01002190 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
2191 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01002192 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
2193 "%s", card->driver_name ? card->driver_name : card->name);
2194 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
2195 switch (card->snd_card->driver[i]) {
2196 case '_':
2197 case '-':
2198 case '\0':
2199 break;
2200 default:
2201 if (!isalnum(card->snd_card->driver[i]))
2202 card->snd_card->driver[i] = '_';
2203 break;
2204 }
2205 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002206
Mark Brown28e9ad92011-03-02 18:36:34 +00002207 if (card->late_probe) {
2208 ret = card->late_probe(card);
2209 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002210 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00002211 card->name, ret);
2212 goto probe_aux_dev_err;
2213 }
2214 }
2215
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02002216 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02002217
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002218 ret = snd_card_register(card->snd_card);
2219 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002220 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
2221 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08002222 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002223 }
2224
Mark Brown435c5e22008-12-04 15:32:53 +00002225 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01002226 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002227 mutex_unlock(&card->mutex);
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002228 mutex_unlock(&client_mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00002229
2230 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002231
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002232probe_aux_dev_err:
Mengdong Linf2ed6b02016-01-06 13:29:31 +08002233 soc_remove_aux_devices(card);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002234
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002235probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09002236 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00002237
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002238card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00002239 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002240 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002241
Lars-Peter Clausen22104382015-07-08 22:14:48 +02002242 snd_soc_dapm_free(&card->dapm);
Lars-Peter Clausen0757d832015-04-09 10:52:36 +02002243 soc_cleanup_card_debugfs(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002244 snd_card_free(card->snd_card);
2245
Mark Brownb19e6e72012-03-14 21:18:39 +00002246base_error:
Mengdong Lin1a497982015-11-18 02:34:11 -05002247 soc_remove_pcm_runtimes(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002248 mutex_unlock(&card->mutex);
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002249 mutex_unlock(&client_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002250
Mark Brownb19e6e72012-03-14 21:18:39 +00002251 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00002252}
2253
2254/* probes a new socdev */
2255static int soc_probe(struct platform_device *pdev)
2256{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002257 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00002258
Vinod Koul70a7ca32011-01-14 19:22:48 +05302259 /*
2260 * no card, so machine driver should be registering card
2261 * we should not be here in that case so ret error
2262 */
2263 if (!card)
2264 return -EINVAL;
2265
Mark Brownfe4085e2012-03-02 13:07:41 +00002266 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002267 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00002268 card->name);
2269
Mark Brown435c5e22008-12-04 15:32:53 +00002270 /* Bodge while we unpick instantiation */
2271 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002272
Mark Brown28d528c2012-08-09 18:45:23 +01002273 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002274}
2275
Vinod Koulb0e26482011-01-13 22:48:02 +05302276static int soc_cleanup_card_resources(struct snd_soc_card *card)
2277{
Mengdong Lin1a497982015-11-18 02:34:11 -05002278 struct snd_soc_pcm_runtime *rtd;
Vinod Koulb0e26482011-01-13 22:48:02 +05302279
2280 /* make sure any delayed work runs */
Mengdong Lin1a497982015-11-18 02:34:11 -05002281 list_for_each_entry(rtd, &card->rtd_list, list)
Tejun Heo43829732012-08-20 14:51:24 -07002282 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05302283
Vinod Koulb0e26482011-01-13 22:48:02 +05302284 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09002285 soc_remove_dai_links(card);
Mengdong Lin1a497982015-11-18 02:34:11 -05002286 soc_remove_pcm_runtimes(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302287
Mengdong Linf2ed6b02016-01-06 13:29:31 +08002288 /* remove auxiliary devices */
2289 soc_remove_aux_devices(card);
2290
Mark Brownd1e81422016-08-18 19:32:59 +01002291 snd_soc_dapm_free(&card->dapm);
Vinod Koulb0e26482011-01-13 22:48:02 +05302292 soc_cleanup_card_debugfs(card);
2293
2294 /* remove the card */
2295 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002296 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302297
Vinod Koulb0e26482011-01-13 22:48:02 +05302298 snd_card_free(card->snd_card);
2299 return 0;
2300
2301}
2302
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002303/* removes a socdev */
2304static int soc_remove(struct platform_device *pdev)
2305{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002306 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002307
Mark Brownc5af3a22008-11-28 13:29:45 +00002308 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002309 return 0;
2310}
2311
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002312int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01002313{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002314 struct snd_soc_card *card = dev_get_drvdata(dev);
Mengdong Lin1a497982015-11-18 02:34:11 -05002315 struct snd_soc_pcm_runtime *rtd;
Mark Brown51737472009-06-22 13:16:51 +01002316
2317 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01002318 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002319
2320 /* Flush out pmdown_time work - we actually do want to run it
2321 * now, we're shutting down so no imminent restart. */
Mengdong Lin1a497982015-11-18 02:34:11 -05002322 list_for_each_entry(rtd, &card->rtd_list, list)
Tejun Heo43829732012-08-20 14:51:24 -07002323 flush_delayed_work(&rtd->delayed_work);
Mark Brown51737472009-06-22 13:16:51 +01002324
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002325 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01002326
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002327 /* deactivate pins to sleep state */
Mengdong Lin1a497982015-11-18 02:34:11 -05002328 list_for_each_entry(rtd, &card->rtd_list, list) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002329 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Mengdong Lin1a497982015-11-18 02:34:11 -05002330 int i;
Benoit Cousson88bd8702014-07-08 23:19:34 +02002331
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002332 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Mengdong Lin1a497982015-11-18 02:34:11 -05002333 for (i = 0; i < rtd->num_codecs; i++) {
2334 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02002335 pinctrl_pm_select_sleep_state(codec_dai->dev);
2336 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002337 }
2338
Mark Brown416356f2009-06-30 19:05:15 +01002339 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002340}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002341EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01002342
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002343const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05302344 .suspend = snd_soc_suspend,
2345 .resume = snd_soc_resume,
2346 .freeze = snd_soc_suspend,
2347 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002348 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05302349 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01002350};
Stephen Warrendeb26072011-04-05 19:35:30 -06002351EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01002352
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002353/* ASoC platform driver */
2354static struct platform_driver soc_driver = {
2355 .driver = {
2356 .name = "soc-audio",
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002357 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002358 },
2359 .probe = soc_probe,
2360 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002361};
2362
Mark Brown096e49d2009-07-05 15:12:22 +01002363/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002364 * snd_soc_cnew - create new control
2365 * @_template: control template
2366 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002367 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002368 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002369 *
2370 * Create a new mixer control from a template control.
2371 *
2372 * Returns 0 for success, else error.
2373 */
2374struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002375 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002376 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002377{
2378 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002379 struct snd_kcontrol *kcontrol;
2380 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002381
2382 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002383 template.index = 0;
2384
Mark Brownefb7ac32011-03-08 17:23:24 +00002385 if (!long_name)
2386 long_name = template.name;
2387
2388 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02002389 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00002390 if (!name)
2391 return NULL;
2392
Mark Brownefb7ac32011-03-08 17:23:24 +00002393 template.name = name;
2394 } else {
2395 template.name = long_name;
2396 }
2397
2398 kcontrol = snd_ctl_new1(&template, data);
2399
2400 kfree(name);
2401
2402 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002403}
2404EXPORT_SYMBOL_GPL(snd_soc_cnew);
2405
Liam Girdwood022658b2012-02-03 17:43:09 +00002406static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2407 const struct snd_kcontrol_new *controls, int num_controls,
2408 const char *prefix, void *data)
2409{
2410 int err, i;
2411
2412 for (i = 0; i < num_controls; i++) {
2413 const struct snd_kcontrol_new *control = &controls[i];
2414 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2415 control->name, prefix));
2416 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002417 dev_err(dev, "ASoC: Failed to add %s: %d\n",
2418 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00002419 return err;
2420 }
2421 }
2422
2423 return 0;
2424}
2425
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01002426struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2427 const char *name)
2428{
2429 struct snd_card *card = soc_card->snd_card;
2430 struct snd_kcontrol *kctl;
2431
2432 if (unlikely(!name))
2433 return NULL;
2434
2435 list_for_each_entry(kctl, &card->controls, list)
2436 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2437 return kctl;
2438 return NULL;
2439}
2440EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2441
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002442/**
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002443 * snd_soc_add_component_controls - Add an array of controls to a component.
2444 *
2445 * @component: Component to add controls to
2446 * @controls: Array of controls to add
2447 * @num_controls: Number of elements in the array
2448 *
2449 * Return: 0 for success, else error.
2450 */
2451int snd_soc_add_component_controls(struct snd_soc_component *component,
2452 const struct snd_kcontrol_new *controls, unsigned int num_controls)
2453{
2454 struct snd_card *card = component->card->snd_card;
2455
2456 return snd_soc_add_controls(card, component->dev, controls,
2457 num_controls, component->name_prefix, component);
2458}
2459EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
2460
2461/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002462 * snd_soc_add_codec_controls - add an array of controls to a codec.
2463 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002464 * duplicating this code.
2465 *
2466 * @codec: codec to add controls to
2467 * @controls: array of controls to add
2468 * @num_controls: number of elements in the array
2469 *
2470 * Return 0 for success, else error.
2471 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002472int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002473 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Ian Molton3e8e1952009-01-09 00:23:21 +00002474{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002475 return snd_soc_add_component_controls(&codec->component, controls,
2476 num_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002477}
Liam Girdwood022658b2012-02-03 17:43:09 +00002478EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002479
2480/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002481 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002482 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002483 *
2484 * @platform: platform to add controls to
2485 * @controls: array of controls to add
2486 * @num_controls: number of elements in the array
2487 *
2488 * Return 0 for success, else error.
2489 */
2490int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002491 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002492{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02002493 return snd_soc_add_component_controls(&platform->component, controls,
2494 num_controls);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002495}
2496EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2497
2498/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002499 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2500 * Convenience function to add a list of controls.
2501 *
2502 * @soc_card: SoC card to add controls to
2503 * @controls: array of controls to add
2504 * @num_controls: number of elements in the array
2505 *
2506 * Return 0 for success, else error.
2507 */
2508int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2509 const struct snd_kcontrol_new *controls, int num_controls)
2510{
2511 struct snd_card *card = soc_card->snd_card;
2512
2513 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2514 NULL, soc_card);
2515}
2516EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2517
2518/**
2519 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2520 * Convienience function to add a list of controls.
2521 *
2522 * @dai: DAI to add controls to
2523 * @controls: array of controls to add
2524 * @num_controls: number of elements in the array
2525 *
2526 * Return 0 for success, else error.
2527 */
2528int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2529 const struct snd_kcontrol_new *controls, int num_controls)
2530{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01002531 struct snd_card *card = dai->component->card->snd_card;
Liam Girdwood022658b2012-02-03 17:43:09 +00002532
2533 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2534 NULL, dai);
2535}
2536EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2537
2538/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002539 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2540 * @dai: DAI
2541 * @clk_id: DAI specific clock ID
2542 * @freq: new clock frequency in Hz
2543 * @dir: new clock direction - input/output.
2544 *
2545 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2546 */
2547int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2548 unsigned int freq, int dir)
2549{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002550 if (dai->driver && dai->driver->ops->set_sysclk)
2551 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002552 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002553 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00002554 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002555 else
Mark Brown1104a9c2014-01-15 19:04:19 +00002556 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002557}
2558EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2559
2560/**
Mark Brownec4ee522011-03-07 20:58:11 +00002561 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2562 * @codec: CODEC
2563 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01002564 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00002565 * @freq: new clock frequency in Hz
2566 * @dir: new clock direction - input/output.
2567 *
2568 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2569 */
2570int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01002571 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00002572{
2573 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002574 return codec->driver->set_sysclk(codec, clk_id, source,
2575 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002576 else
Mark Brown1104a9c2014-01-15 19:04:19 +00002577 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00002578}
2579EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2580
2581/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002582 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2583 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002584 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002585 * @div: new clock divisor.
2586 *
2587 * Configures the clock dividers. This is used to derive the best DAI bit and
2588 * frame clocks from the system or master clock. It's best to set the DAI bit
2589 * and frame clocks as low as possible to save system power.
2590 */
2591int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2592 int div_id, int div)
2593{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002594 if (dai->driver && dai->driver->ops->set_clkdiv)
2595 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002596 else
2597 return -EINVAL;
2598}
2599EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2600
2601/**
2602 * snd_soc_dai_set_pll - configure DAI PLL.
2603 * @dai: DAI
2604 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002605 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002606 * @freq_in: PLL input clock frequency in Hz
2607 * @freq_out: requested PLL output clock frequency in Hz
2608 *
2609 * Configures and enables PLL to generate output clock based on input clock.
2610 */
Mark Brown85488032009-09-05 18:52:16 +01002611int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2612 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002613{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002614 if (dai->driver && dai->driver->ops->set_pll)
2615 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002616 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002617 else if (dai->codec && dai->codec->driver->set_pll)
2618 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2619 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002620 else
2621 return -EINVAL;
2622}
2623EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2624
Mark Brownec4ee522011-03-07 20:58:11 +00002625/*
2626 * snd_soc_codec_set_pll - configure codec PLL.
2627 * @codec: CODEC
2628 * @pll_id: DAI specific PLL ID
2629 * @source: DAI specific source for the PLL
2630 * @freq_in: PLL input clock frequency in Hz
2631 * @freq_out: requested PLL output clock frequency in Hz
2632 *
2633 * Configures and enables PLL to generate output clock based on input clock.
2634 */
2635int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2636 unsigned int freq_in, unsigned int freq_out)
2637{
2638 if (codec->driver->set_pll)
2639 return codec->driver->set_pll(codec, pll_id, source,
2640 freq_in, freq_out);
2641 else
2642 return -EINVAL;
2643}
2644EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2645
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002646/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01002647 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2648 * @dai: DAI
Masanari Iida231b86b2015-07-15 23:02:38 +09002649 * @ratio: Ratio of BCLK to Sample rate.
Liam Girdwoode54cf762013-09-16 13:01:46 +01002650 *
2651 * Configures the DAI for a preset BCLK to sample rate ratio.
2652 */
2653int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2654{
2655 if (dai->driver && dai->driver->ops->set_bclk_ratio)
2656 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2657 else
2658 return -EINVAL;
2659}
2660EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2661
2662/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002663 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2664 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002665 * @fmt: SND_SOC_DAIFMT_ format value.
2666 *
2667 * Configures the DAI hardware format and clocking.
2668 */
2669int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2670{
Shawn Guo5e4ba562012-03-09 00:59:40 +08002671 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002672 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08002673 if (dai->driver->ops->set_fmt == NULL)
2674 return -ENOTSUPP;
2675 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002676}
2677EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2678
2679/**
Xiubo Lie5c21512014-03-21 14:17:12 +08002680 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08002681 * @slots: Number of slots in use.
2682 * @tx_mask: bitmask representing active TX slots.
2683 * @rx_mask: bitmask representing active RX slots.
2684 *
2685 * Generates the TDM tx and rx slot default masks for DAI.
2686 */
Xiubo Lie5c21512014-03-21 14:17:12 +08002687static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002688 unsigned int *tx_mask,
2689 unsigned int *rx_mask)
2690{
2691 if (*tx_mask || *rx_mask)
2692 return 0;
2693
2694 if (!slots)
2695 return -EINVAL;
2696
2697 *tx_mask = (1 << slots) - 1;
2698 *rx_mask = (1 << slots) - 1;
2699
2700 return 0;
2701}
2702
2703/**
Lars-Peter Clausene46c9362015-01-12 10:27:20 +01002704 * snd_soc_dai_set_tdm_slot() - Configures a DAI for TDM operation
2705 * @dai: The DAI to configure
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002706 * @tx_mask: bitmask representing active TX slots.
2707 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002708 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002709 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002710 *
Lars-Peter Clausene46c9362015-01-12 10:27:20 +01002711 * This function configures the specified DAI for TDM operation. @slot contains
2712 * the total number of slots of the TDM stream and @slot_with the width of each
2713 * slot in bit clock cycles. @tx_mask and @rx_mask are bitmasks specifying the
2714 * active slots of the TDM stream for the specified DAI, i.e. which slots the
2715 * DAI should write to or read from. If a bit is set the corresponding slot is
2716 * active, if a bit is cleared the corresponding slot is inactive. Bit 0 maps to
2717 * the first slot, bit 1 to the second slot and so on. The first active slot
2718 * maps to the first channel of the DAI, the second active slot to the second
2719 * channel and so on.
2720 *
2721 * TDM mode can be disabled by passing 0 for @slots. In this case @tx_mask,
2722 * @rx_mask and @slot_width will be ignored.
2723 *
2724 * Returns 0 on success, a negative error code otherwise.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002725 */
2726int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002727 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002728{
Xiubo Lie5c21512014-03-21 14:17:12 +08002729 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
2730 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002731 &tx_mask, &rx_mask);
2732 else
Xiubo Lie5c21512014-03-21 14:17:12 +08002733 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08002734
Benoit Cousson88bd8702014-07-08 23:19:34 +02002735 dai->tx_mask = tx_mask;
2736 dai->rx_mask = rx_mask;
2737
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002738 if (dai->driver && dai->driver->ops->set_tdm_slot)
2739 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002740 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002741 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08002742 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002743}
2744EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2745
2746/**
Barry Song472df3c2009-09-12 01:16:29 +08002747 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2748 * @dai: DAI
2749 * @tx_num: how many TX channels
2750 * @tx_slot: pointer to an array which imply the TX slot number channel
2751 * 0~num-1 uses
2752 * @rx_num: how many RX channels
2753 * @rx_slot: pointer to an array which imply the RX slot number channel
2754 * 0~num-1 uses
2755 *
2756 * configure the relationship between channel number and TDM slot number.
2757 */
2758int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2759 unsigned int tx_num, unsigned int *tx_slot,
2760 unsigned int rx_num, unsigned int *rx_slot)
2761{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002762 if (dai->driver && dai->driver->ops->set_channel_map)
2763 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002764 rx_num, rx_slot);
2765 else
2766 return -EINVAL;
2767}
2768EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2769
2770/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002771 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2772 * @dai: DAI
2773 * @tristate: tristate enable
2774 *
2775 * Tristates the DAI so that others can use it.
2776 */
2777int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2778{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002779 if (dai->driver && dai->driver->ops->set_tristate)
2780 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002781 else
2782 return -EINVAL;
2783}
2784EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2785
2786/**
2787 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2788 * @dai: DAI
2789 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00002790 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002791 *
2792 * Mutes the DAI DAC.
2793 */
Mark Brownda183962013-02-06 15:44:07 +00002794int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2795 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002796{
Mark Brownda183962013-02-06 15:44:07 +00002797 if (!dai->driver)
2798 return -ENOTSUPP;
2799
2800 if (dai->driver->ops->mute_stream)
2801 return dai->driver->ops->mute_stream(dai, mute, direction);
2802 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2803 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002804 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002805 else
Mark Brown04570c62012-04-13 19:16:03 +01002806 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002807}
2808EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2809
Mark Brownc5af3a22008-11-28 13:29:45 +00002810/**
2811 * snd_soc_register_card - Register a card with the ASoC core
2812 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002813 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002814 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002815 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302816int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002817{
Mengdong Lin923c5e612015-11-23 11:01:49 -05002818 int i, ret;
Mengdong Lin1a497982015-11-18 02:34:11 -05002819 struct snd_soc_pcm_runtime *rtd;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002820
Mark Brownc5af3a22008-11-28 13:29:45 +00002821 if (!card->name || !card->dev)
2822 return -EINVAL;
2823
Stephen Warren5a504962011-12-21 10:40:59 -07002824 for (i = 0; i < card->num_links; i++) {
2825 struct snd_soc_dai_link *link = &card->dai_link[i];
2826
Mengdong Lin923c5e612015-11-23 11:01:49 -05002827 ret = soc_init_dai_link(card, link);
Benoit Cousson88bd8702014-07-08 23:19:34 +02002828 if (ret) {
Mengdong Lin923c5e612015-11-23 11:01:49 -05002829 dev_err(card->dev, "ASoC: failed to init link %s\n",
2830 link->name);
Benoit Cousson88bd8702014-07-08 23:19:34 +02002831 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07002832 }
Stephen Warren5a504962011-12-21 10:40:59 -07002833 }
2834
Mark Browned77cc12011-05-03 18:25:34 +01002835 dev_set_drvdata(card->dev, card);
2836
Stephen Warren111c6412011-01-28 14:26:35 -07002837 snd_soc_initialize_card_lists(card);
2838
Mengdong Linf8f80362015-12-02 14:11:22 +08002839 INIT_LIST_HEAD(&card->dai_link_list);
2840 card->num_dai_links = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002841
Mengdong Lin1a497982015-11-18 02:34:11 -05002842 INIT_LIST_HEAD(&card->rtd_list);
Mark Brown91151712008-11-30 23:31:24 +00002843 card->num_rtd = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002844
Mark Browndb432b42011-10-03 21:06:40 +01002845 INIT_LIST_HEAD(&card->dapm_dirty);
Liam Girdwood8a978232015-05-29 19:06:14 +01002846 INIT_LIST_HEAD(&card->dobj_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002847 card->instantiated = 0;
2848 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002849 mutex_init(&card->dapm_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002850
Mark Brownb19e6e72012-03-14 21:18:39 +00002851 ret = snd_soc_instantiate_card(card);
2852 if (ret != 0)
Kuninori Morimoto4e2576b2015-03-24 09:01:00 +00002853 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002854
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002855 /* deactivate pins to sleep state */
Mengdong Lin1a497982015-11-18 02:34:11 -05002856 list_for_each_entry(rtd, &card->rtd_list, list) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002857 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2858 int j;
2859
2860 for (j = 0; j < rtd->num_codecs; j++) {
2861 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2862 if (!codec_dai->active)
2863 pinctrl_pm_select_sleep_state(codec_dai->dev);
2864 }
2865
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002866 if (!cpu_dai->active)
2867 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2868 }
2869
Mark Brownb19e6e72012-03-14 21:18:39 +00002870 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002871}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302872EXPORT_SYMBOL_GPL(snd_soc_register_card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002873
2874/**
2875 * snd_soc_unregister_card - Unregister a card with the ASoC core
2876 *
2877 * @card: Card to unregister
2878 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002879 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302880int snd_soc_unregister_card(struct snd_soc_card *card)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002881{
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002882 if (card->instantiated) {
2883 card->instantiated = false;
Lars-Peter Clausen1c325f72014-09-04 19:44:05 +02002884 snd_soc_dapm_shutdown(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302885 soc_cleanup_card_resources(card);
Kuninori Morimoto8f6f9b22015-02-05 05:34:10 +00002886 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002887 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002888
2889 return 0;
2890}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302891EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002892
2893/*
2894 * Simplify DAI link configuration by removing ".-1" from device names
2895 * and sanitizing names.
2896 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002897static char *fmt_single_name(struct device *dev, int *id)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002898{
2899 char *found, name[NAME_SIZE];
2900 int id1, id2;
2901
2902 if (dev_name(dev) == NULL)
2903 return NULL;
2904
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002905 strlcpy(name, dev_name(dev), NAME_SIZE);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002906
2907 /* are we a "%s.%d" name (platform and SPI components) */
Mark Brownc5af3a22008-11-28 13:29:45 +00002908 found = strstr(name, dev->driver->name);
2909 if (found) {
2910 /* get ID */
2911 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2912
2913 /* discard ID from name if ID == -1 */
2914 if (*id == -1)
2915 found[strlen(dev->driver->name)] = '\0';
2916 }
2917
2918 } else {
2919 /* I2C component devices are named "bus-addr" */
2920 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2921 char tmp[NAME_SIZE];
2922
2923 /* create unique ID number from I2C addr and bus */
2924 *id = ((id1 & 0xffff) << 16) + id2;
2925
2926 /* sanitize component name for DAI link creation */
2927 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002928 strlcpy(name, tmp, NAME_SIZE);
Mark Brownc5af3a22008-11-28 13:29:45 +00002929 } else
2930 *id = 0;
2931 }
2932
2933 return kstrdup(name, GFP_KERNEL);
2934}
2935
2936/*
2937 * Simplify DAI link naming for single devices with multiple DAIs by removing
2938 * any ".-1" and using the DAI name (instead of device name).
2939 */
2940static inline char *fmt_multiple_name(struct device *dev,
2941 struct snd_soc_dai_driver *dai_drv)
2942{
2943 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002944 dev_err(dev,
2945 "ASoC: error - multiple DAI %s registered with no name\n",
2946 dev_name(dev));
Mark Brownc5af3a22008-11-28 13:29:45 +00002947 return NULL;
2948 }
2949
2950 return kstrdup(dai_drv->name, GFP_KERNEL);
2951}
2952
2953/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002954 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002955 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002956 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00002957 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002958static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00002959{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002960 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00002961
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002962 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002963 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2964 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002965 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002966 kfree(dai->name);
Mark Brown91151712008-11-30 23:31:24 +00002967 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00002968 }
Mark Brown91151712008-11-30 23:31:24 +00002969}
Mark Brown91151712008-11-30 23:31:24 +00002970
Mengdong Lin5e4fb372015-12-31 16:40:20 +08002971/* Create a DAI and add it to the component's DAI list */
2972static struct snd_soc_dai *soc_add_dai(struct snd_soc_component *component,
2973 struct snd_soc_dai_driver *dai_drv,
2974 bool legacy_dai_naming)
2975{
2976 struct device *dev = component->dev;
2977 struct snd_soc_dai *dai;
2978
2979 dev_dbg(dev, "ASoC: dynamically register DAI %s\n", dev_name(dev));
2980
2981 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
2982 if (dai == NULL)
2983 return NULL;
2984
2985 /*
2986 * Back in the old days when we still had component-less DAIs,
2987 * instead of having a static name, component-less DAIs would
2988 * inherit the name of the parent device so it is possible to
2989 * register multiple instances of the DAI. We still need to keep
2990 * the same naming style even though those DAIs are not
2991 * component-less anymore.
2992 */
2993 if (legacy_dai_naming &&
2994 (dai_drv->id == 0 || dai_drv->name == NULL)) {
2995 dai->name = fmt_single_name(dev, &dai->id);
2996 } else {
2997 dai->name = fmt_multiple_name(dev, dai_drv);
2998 if (dai_drv->id)
2999 dai->id = dai_drv->id;
3000 else
3001 dai->id = component->num_dai;
3002 }
3003 if (dai->name == NULL) {
3004 kfree(dai);
3005 return NULL;
3006 }
3007
3008 dai->component = component;
3009 dai->dev = dev;
3010 dai->driver = dai_drv;
3011 if (!dai->driver->ops)
3012 dai->driver->ops = &null_dai_ops;
3013
3014 list_add(&dai->list, &component->dai_list);
3015 component->num_dai++;
3016
3017 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
3018 return dai;
3019}
3020
Mark Brown91151712008-11-30 23:31:24 +00003021/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003022 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00003023 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003024 * @component: The component the DAIs are registered for
3025 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00003026 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003027 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
3028 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00003029 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003030static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003031 struct snd_soc_dai_driver *dai_drv, size_t count,
3032 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00003033{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003034 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003035 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003036 unsigned int i;
3037 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003038
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08003039 dev_dbg(dev, "ASoC: dai register %s #%zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003040
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003041 component->dai_drv = dai_drv;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003042
Mark Brown91151712008-11-30 23:31:24 +00003043 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003044
Mengdong Lin5e4fb372015-12-31 16:40:20 +08003045 dai = soc_add_dai(component, dai_drv + i,
3046 count == 1 && legacy_dai_naming);
Axel Linc46e0072010-11-03 15:04:45 +08003047 if (dai == NULL) {
3048 ret = -ENOMEM;
3049 goto err;
3050 }
Mark Brown91151712008-11-30 23:31:24 +00003051 }
3052
3053 return 0;
3054
3055err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003056 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00003057
3058 return ret;
3059}
Mark Brown91151712008-11-30 23:31:24 +00003060
Mengdong Lin68003e62015-12-31 16:40:43 +08003061/**
3062 * snd_soc_register_dai - Register a DAI dynamically & create its widgets
3063 *
3064 * @component: The component the DAIs are registered for
3065 * @dai_drv: DAI driver to use for the DAI
3066 *
3067 * Topology can use this API to register DAIs when probing a component.
3068 * These DAIs's widgets will be freed in the card cleanup and the DAIs
3069 * will be freed in the component cleanup.
3070 */
3071int snd_soc_register_dai(struct snd_soc_component *component,
3072 struct snd_soc_dai_driver *dai_drv)
3073{
3074 struct snd_soc_dapm_context *dapm =
3075 snd_soc_component_get_dapm(component);
3076 struct snd_soc_dai *dai;
3077 int ret;
3078
3079 if (dai_drv->dobj.type != SND_SOC_DOBJ_PCM) {
3080 dev_err(component->dev, "Invalid dai type %d\n",
3081 dai_drv->dobj.type);
3082 return -EINVAL;
3083 }
3084
3085 lockdep_assert_held(&client_mutex);
3086 dai = soc_add_dai(component, dai_drv, false);
3087 if (!dai)
3088 return -ENOMEM;
3089
3090 /* Create the DAI widgets here. After adding DAIs, topology may
3091 * also add routes that need these widgets as source or sink.
3092 */
3093 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
3094 if (ret != 0) {
3095 dev_err(component->dev,
3096 "Failed to create DAI widgets %d\n", ret);
3097 }
3098
3099 return ret;
3100}
3101EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3102
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003103static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
3104 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003105{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003106 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003107
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003108 component->driver->seq_notifier(component, type, subseq);
3109}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003110
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003111static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
3112 int event)
3113{
3114 struct snd_soc_component *component = dapm->component;
3115
3116 return component->driver->stream_event(component, event);
3117}
3118
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003119static int snd_soc_component_initialize(struct snd_soc_component *component,
3120 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003121{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003122 struct snd_soc_dapm_context *dapm;
3123
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003124 component->name = fmt_single_name(dev, &component->id);
3125 if (!component->name) {
3126 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003127 return -ENOMEM;
3128 }
3129
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003130 component->dev = dev;
3131 component->driver = driver;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02003132 component->probe = component->driver->probe;
3133 component->remove = component->driver->remove;
Kuninori Morimoto9178feb2016-11-30 06:23:13 +00003134 component->suspend = component->driver->suspend;
3135 component->resume = component->driver->resume;
Kuninori Morimoto99b04f4c2016-12-15 08:41:38 +00003136 component->pcm_new = component->driver->pcm_new;
Adrian Dinuec5a82d2017-02-25 13:23:00 +02003137 component->pcm_free = component->driver->pcm_free;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003138
Lars-Peter Clausen48901402015-07-06 15:38:11 +02003139 dapm = &component->dapm;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003140 dapm->dev = dev;
3141 dapm->component = component;
3142 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02003143 dapm->idle_bias_off = true;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003144 if (driver->seq_notifier)
3145 dapm->seq_notifier = snd_soc_component_seq_notifier;
3146 if (driver->stream_event)
3147 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003148
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02003149 component->controls = driver->controls;
3150 component->num_controls = driver->num_controls;
3151 component->dapm_widgets = driver->dapm_widgets;
3152 component->num_dapm_widgets = driver->num_dapm_widgets;
3153 component->dapm_routes = driver->dapm_routes;
3154 component->num_dapm_routes = driver->num_dapm_routes;
3155
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003156 INIT_LIST_HEAD(&component->dai_list);
3157 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003158
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003159 return 0;
3160}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003161
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01003162static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003163{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01003164 int val_bytes = regmap_get_val_bytes(component->regmap);
3165
3166 /* Errors are legitimate for non-integer byte multiples */
3167 if (val_bytes > 0)
3168 component->val_bytes = val_bytes;
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003169}
3170
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01003171#ifdef CONFIG_REGMAP
3172
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01003173/**
3174 * snd_soc_component_init_regmap() - Initialize regmap instance for the component
3175 * @component: The component for which to initialize the regmap instance
3176 * @regmap: The regmap instance that should be used by the component
3177 *
3178 * This function allows deferred assignment of the regmap instance that is
3179 * associated with the component. Only use this if the regmap instance is not
3180 * yet ready when the component is registered. The function must also be called
3181 * before the first IO attempt of the component.
3182 */
3183void snd_soc_component_init_regmap(struct snd_soc_component *component,
3184 struct regmap *regmap)
3185{
3186 component->regmap = regmap;
3187 snd_soc_component_setup_regmap(component);
3188}
3189EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
3190
3191/**
3192 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the component
3193 * @component: The component for which to de-initialize the regmap instance
3194 *
3195 * Calls regmap_exit() on the regmap instance associated to the component and
3196 * removes the regmap instance from the component.
3197 *
3198 * This function should only be used if snd_soc_component_init_regmap() was used
3199 * to initialize the regmap instance.
3200 */
3201void snd_soc_component_exit_regmap(struct snd_soc_component *component)
3202{
3203 regmap_exit(component->regmap);
3204 component->regmap = NULL;
3205}
3206EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
3207
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01003208#endif
3209
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003210static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
3211{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01003212 if (!component->write && !component->read) {
3213 if (!component->regmap)
3214 component->regmap = dev_get_regmap(component->dev, NULL);
3215 if (component->regmap)
3216 snd_soc_component_setup_regmap(component);
3217 }
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003218
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003219 list_add(&component->list, &component_list);
Liam Girdwood8a978232015-05-29 19:06:14 +01003220 INIT_LIST_HEAD(&component->dobj_list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003221}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003222
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003223static void snd_soc_component_add(struct snd_soc_component *component)
3224{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003225 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003226 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003227 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003228}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003229
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003230static void snd_soc_component_cleanup(struct snd_soc_component *component)
3231{
3232 snd_soc_unregister_dais(component);
3233 kfree(component->name);
3234}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003235
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003236static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
3237{
3238 list_del(&component->list);
3239}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003240
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003241int snd_soc_register_component(struct device *dev,
3242 const struct snd_soc_component_driver *cmpnt_drv,
3243 struct snd_soc_dai_driver *dai_drv,
3244 int num_dai)
3245{
3246 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003247 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003248
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003249 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003250 if (!cmpnt) {
3251 dev_err(dev, "ASoC: Failed to allocate memory\n");
3252 return -ENOMEM;
3253 }
3254
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003255 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
3256 if (ret)
3257 goto err_free;
3258
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003259 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01003260 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003261
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003262 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
3263 if (ret < 0) {
Masanari Iidaf42cf8d2015-02-24 23:11:26 +09003264 dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003265 goto err_cleanup;
3266 }
3267
3268 snd_soc_component_add(cmpnt);
3269
3270 return 0;
3271
3272err_cleanup:
3273 snd_soc_component_cleanup(cmpnt);
3274err_free:
3275 kfree(cmpnt);
3276 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003277}
3278EXPORT_SYMBOL_GPL(snd_soc_register_component);
3279
3280/**
3281 * snd_soc_unregister_component - Unregister a component from the ASoC core
3282 *
Jonathan Corbet628536e2015-08-25 01:14:48 -06003283 * @dev: The device to unregister
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003284 */
3285void snd_soc_unregister_component(struct device *dev)
3286{
3287 struct snd_soc_component *cmpnt;
3288
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003289 mutex_lock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003290 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01003291 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003292 goto found;
3293 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003294 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003295 return;
3296
3297found:
Liam Girdwood8a978232015-05-29 19:06:14 +01003298 snd_soc_tplg_component_remove(cmpnt, SND_SOC_TPLG_INDEX_ALL);
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003299 snd_soc_component_del_unlocked(cmpnt);
3300 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003301 snd_soc_component_cleanup(cmpnt);
3302 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003303}
3304EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
3305
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003306static int snd_soc_platform_drv_probe(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003307{
3308 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
3309
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003310 return platform->driver->probe(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003311}
3312
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003313static void snd_soc_platform_drv_remove(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003314{
3315 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
3316
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003317 platform->driver->remove(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003318}
3319
Kuninori Morimoto99b04f4c2016-12-15 08:41:38 +00003320static int snd_soc_platform_drv_pcm_new(struct snd_soc_pcm_runtime *rtd)
3321{
3322 struct snd_soc_platform *platform = rtd->platform;
3323
3324 return platform->driver->pcm_new(rtd);
3325}
3326
3327static void snd_soc_platform_drv_pcm_free(struct snd_pcm *pcm)
3328{
3329 struct snd_soc_pcm_runtime *rtd = pcm->private_data;
3330 struct snd_soc_platform *platform = rtd->platform;
3331
3332 platform->driver->pcm_free(pcm);
3333}
3334
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003335/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003336 * snd_soc_add_platform - Add a platform to the ASoC core
3337 * @dev: The parent device for the platform
3338 * @platform: The platform to add
Masanari Iida7d1442b2015-07-15 23:02:39 +09003339 * @platform_drv: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00003340 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003341int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57db82013-03-27 12:02:22 +01003342 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003343{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01003344 int ret;
3345
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003346 ret = snd_soc_component_initialize(&platform->component,
3347 &platform_drv->component_driver, dev);
3348 if (ret)
3349 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003350
3351 platform->dev = dev;
3352 platform->driver = platform_drv;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003353
3354 if (platform_drv->probe)
3355 platform->component.probe = snd_soc_platform_drv_probe;
3356 if (platform_drv->remove)
3357 platform->component.remove = snd_soc_platform_drv_remove;
Kuninori Morimoto99b04f4c2016-12-15 08:41:38 +00003358 if (platform_drv->pcm_new)
3359 platform->component.pcm_new = snd_soc_platform_drv_pcm_new;
3360 if (platform_drv->pcm_free)
3361 platform->component.pcm_free = snd_soc_platform_drv_pcm_free;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003362
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02003363#ifdef CONFIG_DEBUG_FS
3364 platform->component.debugfs_prefix = "platform";
3365#endif
Mark Brown12a48a8c2008-12-03 19:40:30 +00003366
3367 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003368 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003369 list_add(&platform->list, &platform_list);
3370 mutex_unlock(&client_mutex);
3371
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003372 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
3373 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003374
3375 return 0;
3376}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003377EXPORT_SYMBOL_GPL(snd_soc_add_platform);
3378
3379/**
3380 * snd_soc_register_platform - Register a platform with the ASoC core
3381 *
Jonathan Corbet628536e2015-08-25 01:14:48 -06003382 * @dev: The device for the platform
3383 * @platform_drv: The driver for the platform
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003384 */
3385int snd_soc_register_platform(struct device *dev,
3386 const struct snd_soc_platform_driver *platform_drv)
3387{
3388 struct snd_soc_platform *platform;
3389 int ret;
3390
3391 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
3392
3393 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3394 if (platform == NULL)
3395 return -ENOMEM;
3396
3397 ret = snd_soc_add_platform(dev, platform, platform_drv);
3398 if (ret)
3399 kfree(platform);
3400
3401 return ret;
3402}
Mark Brown12a48a8c2008-12-03 19:40:30 +00003403EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3404
3405/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003406 * snd_soc_remove_platform - Remove a platform from the ASoC core
3407 * @platform: the platform to remove
3408 */
3409void snd_soc_remove_platform(struct snd_soc_platform *platform)
3410{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01003411
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003412 mutex_lock(&client_mutex);
3413 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003414 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003415 mutex_unlock(&client_mutex);
3416
3417 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003418 platform->component.name);
Daniel Mackdecc27b2014-10-07 13:41:23 +02003419
3420 snd_soc_component_cleanup(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003421}
3422EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
3423
3424struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
3425{
3426 struct snd_soc_platform *platform;
3427
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003428 mutex_lock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003429 list_for_each_entry(platform, &platform_list, list) {
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003430 if (dev == platform->dev) {
3431 mutex_unlock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003432 return platform;
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003433 }
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003434 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003435 mutex_unlock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003436
3437 return NULL;
3438}
3439EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
3440
3441/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00003442 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3443 *
Jonathan Corbet628536e2015-08-25 01:14:48 -06003444 * @dev: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003445 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003446void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003447{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003448 struct snd_soc_platform *platform;
3449
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003450 platform = snd_soc_lookup_platform(dev);
3451 if (!platform)
3452 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003453
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02003454 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003455 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003456}
3457EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3458
Mark Brown151ab222009-05-09 16:22:58 +01003459static u64 codec_format_map[] = {
3460 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3461 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3462 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3463 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3464 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3465 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3466 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3467 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3468 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3469 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3470 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3471 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3472 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3473 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3474 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3475 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3476};
3477
3478/* Fix up the DAI formats for endianness: codecs don't actually see
3479 * the endianness of the data but we're using the CPU format
3480 * definitions which do need to include endianness so we ensure that
3481 * codec DAIs always have both big and little endian variants set.
3482 */
3483static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3484{
3485 int i;
3486
3487 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3488 if (stream->formats & codec_format_map[i])
3489 stream->formats |= codec_format_map[i];
3490}
3491
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003492static int snd_soc_codec_drv_probe(struct snd_soc_component *component)
3493{
3494 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3495
3496 return codec->driver->probe(codec);
3497}
3498
3499static void snd_soc_codec_drv_remove(struct snd_soc_component *component)
3500{
3501 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3502
3503 codec->driver->remove(codec);
3504}
3505
Kuninori Morimoto9178feb2016-11-30 06:23:13 +00003506static int snd_soc_codec_drv_suspend(struct snd_soc_component *component)
3507{
3508 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3509
3510 return codec->driver->suspend(codec);
3511}
3512
3513static int snd_soc_codec_drv_resume(struct snd_soc_component *component)
3514{
3515 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3516
3517 return codec->driver->resume(codec);
3518}
3519
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003520static int snd_soc_codec_drv_write(struct snd_soc_component *component,
3521 unsigned int reg, unsigned int val)
3522{
3523 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3524
3525 return codec->driver->write(codec, reg, val);
3526}
3527
3528static int snd_soc_codec_drv_read(struct snd_soc_component *component,
3529 unsigned int reg, unsigned int *val)
3530{
3531 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3532
3533 *val = codec->driver->read(codec, reg);
3534
3535 return 0;
3536}
3537
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003538static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
3539 enum snd_soc_bias_level level)
3540{
3541 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
3542
3543 return codec->driver->set_bias_level(codec, level);
3544}
3545
Mark Brown0d0cf002008-12-10 14:32:45 +00003546/**
3547 * snd_soc_register_codec - Register a codec with the ASoC core
3548 *
Jonathan Corbet628536e2015-08-25 01:14:48 -06003549 * @dev: The parent device for this codec
3550 * @codec_drv: Codec driver
3551 * @dai_drv: The associated DAI driver
3552 * @num_dai: Number of DAIs
Mark Brown0d0cf002008-12-10 14:32:45 +00003553 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003554int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003555 const struct snd_soc_codec_driver *codec_drv,
3556 struct snd_soc_dai_driver *dai_drv,
3557 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003558{
Lars-Peter Clausen48901402015-07-06 15:38:11 +02003559 struct snd_soc_dapm_context *dapm;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003560 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003561 struct snd_soc_dai *dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003562 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003563
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003564 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003565
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003566 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3567 if (codec == NULL)
3568 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003569
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003570 codec->component.codec = codec;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003571
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003572 ret = snd_soc_component_initialize(&codec->component,
3573 &codec_drv->component_driver, dev);
3574 if (ret)
3575 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01003576
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003577 if (codec_drv->probe)
3578 codec->component.probe = snd_soc_codec_drv_probe;
3579 if (codec_drv->remove)
3580 codec->component.remove = snd_soc_codec_drv_remove;
Kuninori Morimoto9178feb2016-11-30 06:23:13 +00003581 if (codec_drv->suspend)
3582 codec->component.suspend = snd_soc_codec_drv_suspend;
3583 if (codec_drv->resume)
3584 codec->component.resume = snd_soc_codec_drv_resume;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003585 if (codec_drv->write)
3586 codec->component.write = snd_soc_codec_drv_write;
3587 if (codec_drv->read)
3588 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003589 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Lars-Peter Clausen48901402015-07-06 15:38:11 +02003590
3591 dapm = snd_soc_codec_get_dapm(codec);
3592 dapm->idle_bias_off = codec_drv->idle_bias_off;
3593 dapm->suspend_bias_off = codec_drv->suspend_bias_off;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003594 if (codec_drv->seq_notifier)
Lars-Peter Clausen48901402015-07-06 15:38:11 +02003595 dapm->seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003596 if (codec_drv->set_bias_level)
Lars-Peter Clausen48901402015-07-06 15:38:11 +02003597 dapm->set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003598 codec->dev = dev;
3599 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003600 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003601
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02003602#ifdef CONFIG_DEBUG_FS
3603 codec->component.init_debugfs = soc_init_codec_debugfs;
3604 codec->component.debugfs_prefix = "codec";
3605#endif
Xiubo Lia39f75f2014-03-26 13:40:23 +08003606
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003607 if (codec_drv->get_regmap)
3608 codec->component.regmap = codec_drv->get_regmap(dev);
Xiubo Lia39f75f2014-03-26 13:40:23 +08003609
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003610 for (i = 0; i < num_dai; i++) {
3611 fixup_codec_formats(&dai_drv[i].playback);
3612 fixup_codec_formats(&dai_drv[i].capture);
3613 }
3614
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003615 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
3616 if (ret < 0) {
Masanari Iidaf42cf8d2015-02-24 23:11:26 +09003617 dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003618 goto err_cleanup;
3619 }
3620
3621 list_for_each_entry(dai, &codec->component.dai_list, list)
3622 dai->codec = codec;
3623
Mark Brown054880f2012-04-09 17:29:19 +01003624 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003625 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01003626 list_add(&codec->list, &codec_list);
3627 mutex_unlock(&client_mutex);
3628
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003629 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
3630 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003631 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003632
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003633err_cleanup:
3634 snd_soc_component_cleanup(&codec->component);
3635err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003636 kfree(codec);
3637 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003638}
3639EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3640
3641/**
3642 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3643 *
Jonathan Corbet628536e2015-08-25 01:14:48 -06003644 * @dev: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003645 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003646void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003647{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003648 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003649
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003650 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003651 list_for_each_entry(codec, &codec_list, list) {
3652 if (dev == codec->dev)
3653 goto found;
3654 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003655 mutex_unlock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003656 return;
3657
3658found:
Mark Brown0d0cf002008-12-10 14:32:45 +00003659 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003660 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00003661 mutex_unlock(&client_mutex);
3662
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003663 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
3664 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003665
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003666 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003667 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003668 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003669}
3670EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3671
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003672/* Retrieve a card's name from device tree */
Kuninori Morimotob07609ce2017-01-27 06:37:51 +00003673int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3674 const char *propname)
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003675{
Kuninori Morimotob07609ce2017-01-27 06:37:51 +00003676 struct device_node *np;
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003677 int ret;
3678
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303679 if (!card->dev) {
3680 pr_err("card->dev is not set before calling %s\n", __func__);
3681 return -EINVAL;
3682 }
3683
Kuninori Morimotob07609ce2017-01-27 06:37:51 +00003684 np = card->dev->of_node;
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303685
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003686 ret = of_property_read_string_index(np, propname, 0, &card->name);
3687 /*
3688 * EINVAL means the property does not exist. This is fine providing
3689 * card->name was previously set, which is checked later in
3690 * snd_soc_register_card.
3691 */
3692 if (ret < 0 && ret != -EINVAL) {
3693 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003694 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003695 propname, ret);
3696 return ret;
3697 }
3698
3699 return 0;
3700}
Kuninori Morimotob07609ce2017-01-27 06:37:51 +00003701EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003702
Xiubo Li9a6d4862014-02-08 15:59:52 +08003703static const struct snd_soc_dapm_widget simple_widgets[] = {
3704 SND_SOC_DAPM_MIC("Microphone", NULL),
3705 SND_SOC_DAPM_LINE("Line", NULL),
3706 SND_SOC_DAPM_HP("Headphone", NULL),
3707 SND_SOC_DAPM_SPK("Speaker", NULL),
3708};
3709
Kuninori Morimoto21efde52017-01-27 06:37:34 +00003710int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
Xiubo Li9a6d4862014-02-08 15:59:52 +08003711 const char *propname)
3712{
Kuninori Morimoto21efde52017-01-27 06:37:34 +00003713 struct device_node *np = card->dev->of_node;
Xiubo Li9a6d4862014-02-08 15:59:52 +08003714 struct snd_soc_dapm_widget *widgets;
3715 const char *template, *wname;
3716 int i, j, num_widgets, ret;
3717
3718 num_widgets = of_property_count_strings(np, propname);
3719 if (num_widgets < 0) {
3720 dev_err(card->dev,
3721 "ASoC: Property '%s' does not exist\n", propname);
3722 return -EINVAL;
3723 }
3724 if (num_widgets & 1) {
3725 dev_err(card->dev,
3726 "ASoC: Property '%s' length is not even\n", propname);
3727 return -EINVAL;
3728 }
3729
3730 num_widgets /= 2;
3731 if (!num_widgets) {
3732 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3733 propname);
3734 return -EINVAL;
3735 }
3736
3737 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3738 GFP_KERNEL);
3739 if (!widgets) {
3740 dev_err(card->dev,
3741 "ASoC: Could not allocate memory for widgets\n");
3742 return -ENOMEM;
3743 }
3744
3745 for (i = 0; i < num_widgets; i++) {
3746 ret = of_property_read_string_index(np, propname,
3747 2 * i, &template);
3748 if (ret) {
3749 dev_err(card->dev,
3750 "ASoC: Property '%s' index %d read error:%d\n",
3751 propname, 2 * i, ret);
3752 return -EINVAL;
3753 }
3754
3755 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3756 if (!strncmp(template, simple_widgets[j].name,
3757 strlen(simple_widgets[j].name))) {
3758 widgets[i] = simple_widgets[j];
3759 break;
3760 }
3761 }
3762
3763 if (j >= ARRAY_SIZE(simple_widgets)) {
3764 dev_err(card->dev,
3765 "ASoC: DAPM widget '%s' is not supported\n",
3766 template);
3767 return -EINVAL;
3768 }
3769
3770 ret = of_property_read_string_index(np, propname,
3771 (2 * i) + 1,
3772 &wname);
3773 if (ret) {
3774 dev_err(card->dev,
3775 "ASoC: Property '%s' index %d read error:%d\n",
3776 propname, (2 * i) + 1, ret);
3777 return -EINVAL;
3778 }
3779
3780 widgets[i].name = wname;
3781 }
3782
Nicolin Chenf23e8602015-02-14 17:22:49 -08003783 card->of_dapm_widgets = widgets;
3784 card->num_of_dapm_widgets = num_widgets;
Xiubo Li9a6d4862014-02-08 15:59:52 +08003785
3786 return 0;
3787}
Kuninori Morimoto21efde52017-01-27 06:37:34 +00003788EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
Xiubo Li9a6d4862014-02-08 15:59:52 +08003789
Jyri Sarha61310842015-09-09 21:27:43 +03003790static int snd_soc_of_get_slot_mask(struct device_node *np,
3791 const char *prop_name,
3792 unsigned int *mask)
3793{
3794 u32 val;
Jyri Sarha6c84e5912015-09-17 13:13:38 +03003795 const __be32 *of_slot_mask = of_get_property(np, prop_name, &val);
Jyri Sarha61310842015-09-09 21:27:43 +03003796 int i;
3797
3798 if (!of_slot_mask)
3799 return 0;
3800 val /= sizeof(u32);
3801 for (i = 0; i < val; i++)
3802 if (be32_to_cpup(&of_slot_mask[i]))
3803 *mask |= (1 << i);
3804
3805 return val;
3806}
3807
Xiubo Li89c67852014-02-14 09:34:35 +08003808int snd_soc_of_parse_tdm_slot(struct device_node *np,
Jyri Sarha61310842015-09-09 21:27:43 +03003809 unsigned int *tx_mask,
3810 unsigned int *rx_mask,
Xiubo Li89c67852014-02-14 09:34:35 +08003811 unsigned int *slots,
3812 unsigned int *slot_width)
3813{
3814 u32 val;
3815 int ret;
3816
Jyri Sarha61310842015-09-09 21:27:43 +03003817 if (tx_mask)
3818 snd_soc_of_get_slot_mask(np, "dai-tdm-slot-tx-mask", tx_mask);
3819 if (rx_mask)
3820 snd_soc_of_get_slot_mask(np, "dai-tdm-slot-rx-mask", rx_mask);
3821
Xiubo Li89c67852014-02-14 09:34:35 +08003822 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3823 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3824 if (ret)
3825 return ret;
3826
3827 if (slots)
3828 *slots = val;
3829 }
3830
3831 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3832 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3833 if (ret)
3834 return ret;
3835
3836 if (slot_width)
3837 *slot_width = val;
3838 }
3839
3840 return 0;
3841}
3842EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3843
Kuninori Morimoto440a3002017-01-27 06:37:16 +00003844void snd_soc_of_parse_audio_prefix(struct snd_soc_card *card,
Kuninori Morimoto5e3cdaa2015-07-15 07:07:42 +00003845 struct snd_soc_codec_conf *codec_conf,
3846 struct device_node *of_node,
3847 const char *propname)
3848{
Kuninori Morimoto440a3002017-01-27 06:37:16 +00003849 struct device_node *np = card->dev->of_node;
Kuninori Morimoto5e3cdaa2015-07-15 07:07:42 +00003850 const char *str;
3851 int ret;
3852
3853 ret = of_property_read_string(np, propname, &str);
3854 if (ret < 0) {
3855 /* no prefix is not error */
3856 return;
3857 }
3858
3859 codec_conf->of_node = of_node;
3860 codec_conf->name_prefix = str;
3861}
Kuninori Morimoto440a3002017-01-27 06:37:16 +00003862EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_prefix);
Kuninori Morimoto5e3cdaa2015-07-15 07:07:42 +00003863
Kuninori Morimoto2bc644a2017-01-27 06:36:50 +00003864int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003865 const char *propname)
3866{
Kuninori Morimoto2bc644a2017-01-27 06:36:50 +00003867 struct device_node *np = card->dev->of_node;
Mark Browne3b1e6a2014-12-18 11:46:38 +00003868 int num_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003869 struct snd_soc_dapm_route *routes;
3870 int i, ret;
3871
3872 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08003873 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003874 dev_err(card->dev,
3875 "ASoC: Property '%s' does not exist or its length is not even\n",
3876 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003877 return -EINVAL;
3878 }
3879 num_routes /= 2;
3880 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003881 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003882 propname);
3883 return -EINVAL;
3884 }
3885
Mark Browne3b1e6a2014-12-18 11:46:38 +00003886 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003887 GFP_KERNEL);
3888 if (!routes) {
3889 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003890 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003891 return -EINVAL;
3892 }
3893
3894 for (i = 0; i < num_routes; i++) {
3895 ret = of_property_read_string_index(np, propname,
Mark Browne3b1e6a2014-12-18 11:46:38 +00003896 2 * i, &routes[i].sink);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003897 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09003898 dev_err(card->dev,
3899 "ASoC: Property '%s' index %d could not be read: %d\n",
3900 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003901 return -EINVAL;
3902 }
3903 ret = of_property_read_string_index(np, propname,
Mark Browne3b1e6a2014-12-18 11:46:38 +00003904 (2 * i) + 1, &routes[i].source);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003905 if (ret) {
3906 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09003907 "ASoC: Property '%s' index %d could not be read: %d\n",
3908 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003909 return -EINVAL;
3910 }
3911 }
3912
Nicolin Chenf23e8602015-02-14 17:22:49 -08003913 card->num_of_dapm_routes = num_routes;
3914 card->of_dapm_routes = routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003915
3916 return 0;
3917}
Kuninori Morimoto2bc644a2017-01-27 06:36:50 +00003918EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003919
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003920unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02003921 const char *prefix,
3922 struct device_node **bitclkmaster,
3923 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003924{
3925 int ret, i;
3926 char prop[128];
3927 unsigned int format = 0;
3928 int bit, frame;
3929 const char *str;
3930 struct {
3931 char *name;
3932 unsigned int val;
3933 } of_fmt_table[] = {
3934 { "i2s", SND_SOC_DAIFMT_I2S },
3935 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
3936 { "left_j", SND_SOC_DAIFMT_LEFT_J },
3937 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
3938 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
3939 { "ac97", SND_SOC_DAIFMT_AC97 },
3940 { "pdm", SND_SOC_DAIFMT_PDM},
3941 { "msb", SND_SOC_DAIFMT_MSB },
3942 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003943 };
3944
3945 if (!prefix)
3946 prefix = "";
3947
3948 /*
3949 * check "[prefix]format = xxx"
3950 * SND_SOC_DAIFMT_FORMAT_MASK area
3951 */
3952 snprintf(prop, sizeof(prop), "%sformat", prefix);
3953 ret = of_property_read_string(np, prop, &str);
3954 if (ret == 0) {
3955 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3956 if (strcmp(str, of_fmt_table[i].name) == 0) {
3957 format |= of_fmt_table[i].val;
3958 break;
3959 }
3960 }
3961 }
3962
3963 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003964 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003965 * SND_SOC_DAIFMT_CLOCK_MASK area
3966 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003967 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
Julia Lawall51930292016-08-05 10:56:51 +02003968 if (of_property_read_bool(np, prop))
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003969 format |= SND_SOC_DAIFMT_CONT;
3970 else
3971 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003972
3973 /*
3974 * check "[prefix]bitclock-inversion"
3975 * check "[prefix]frame-inversion"
3976 * SND_SOC_DAIFMT_INV_MASK area
3977 */
3978 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3979 bit = !!of_get_property(np, prop, NULL);
3980
3981 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3982 frame = !!of_get_property(np, prop, NULL);
3983
3984 switch ((bit << 4) + frame) {
3985 case 0x11:
3986 format |= SND_SOC_DAIFMT_IB_IF;
3987 break;
3988 case 0x10:
3989 format |= SND_SOC_DAIFMT_IB_NF;
3990 break;
3991 case 0x01:
3992 format |= SND_SOC_DAIFMT_NB_IF;
3993 break;
3994 default:
3995 /* SND_SOC_DAIFMT_NB_NF is default */
3996 break;
3997 }
3998
3999 /*
4000 * check "[prefix]bitclock-master"
4001 * check "[prefix]frame-master"
4002 * SND_SOC_DAIFMT_MASTER_MASK area
4003 */
4004 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4005 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02004006 if (bit && bitclkmaster)
4007 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004008
4009 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4010 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02004011 if (frame && framemaster)
4012 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004013
4014 switch ((bit << 4) + frame) {
4015 case 0x11:
4016 format |= SND_SOC_DAIFMT_CBM_CFM;
4017 break;
4018 case 0x10:
4019 format |= SND_SOC_DAIFMT_CBM_CFS;
4020 break;
4021 case 0x01:
4022 format |= SND_SOC_DAIFMT_CBS_CFM;
4023 break;
4024 default:
4025 format |= SND_SOC_DAIFMT_CBS_CFS;
4026 break;
4027 }
4028
4029 return format;
4030}
4031EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4032
Kuninori Morimoto1ad8ec52016-11-11 01:19:28 +00004033int snd_soc_get_dai_name(struct of_phandle_args *args,
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01004034 const char **dai_name)
Kuninori Morimotocb470082013-09-10 17:39:56 -07004035{
4036 struct snd_soc_component *pos;
Jyri Sarha3e0aa8d2015-05-26 21:59:05 +03004037 struct device_node *component_of_node;
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01004038 int ret = -EPROBE_DEFER;
Kuninori Morimotocb470082013-09-10 17:39:56 -07004039
4040 mutex_lock(&client_mutex);
4041 list_for_each_entry(pos, &component_list, list) {
Jyri Sarha3e0aa8d2015-05-26 21:59:05 +03004042 component_of_node = pos->dev->of_node;
4043 if (!component_of_node && pos->dev->parent)
4044 component_of_node = pos->dev->parent->of_node;
4045
4046 if (component_of_node != args->np)
Kuninori Morimotocb470082013-09-10 17:39:56 -07004047 continue;
4048
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004049 if (pos->driver->of_xlate_dai_name) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01004050 ret = pos->driver->of_xlate_dai_name(pos,
4051 args,
4052 dai_name);
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004053 } else {
4054 int id = -1;
4055
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01004056 switch (args->args_count) {
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004057 case 0:
4058 id = 0; /* same as dai_drv[0] */
4059 break;
4060 case 1:
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01004061 id = args->args[0];
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004062 break;
4063 default:
4064 /* not supported */
4065 break;
4066 }
4067
4068 if (id < 0 || id >= pos->num_dai) {
4069 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08004070 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004071 }
Xiubo Lie41975e2013-12-20 14:39:51 +08004072
4073 ret = 0;
4074
4075 *dai_name = pos->dai_drv[id].name;
4076 if (!*dai_name)
4077 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07004078 }
4079
Kuninori Morimotocb470082013-09-10 17:39:56 -07004080 break;
4081 }
4082 mutex_unlock(&client_mutex);
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01004083 return ret;
4084}
Kuninori Morimoto1ad8ec52016-11-11 01:19:28 +00004085EXPORT_SYMBOL_GPL(snd_soc_get_dai_name);
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01004086
4087int snd_soc_of_get_dai_name(struct device_node *of_node,
4088 const char **dai_name)
4089{
4090 struct of_phandle_args args;
4091 int ret;
4092
4093 ret = of_parse_phandle_with_args(of_node, "sound-dai",
4094 "#sound-dai-cells", 0, &args);
4095 if (ret)
4096 return ret;
4097
4098 ret = snd_soc_get_dai_name(&args, dai_name);
Kuninori Morimotocb470082013-09-10 17:39:56 -07004099
4100 of_node_put(args.np);
4101
4102 return ret;
4103}
4104EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
4105
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01004106/*
4107 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
4108 * @dev: Card device
4109 * @of_node: Device node
4110 * @dai_link: DAI link
4111 *
4112 * Builds an array of CODEC DAI components from the DAI link property
4113 * 'sound-dai'.
4114 * The array is set in the DAI link and the number of DAIs is set accordingly.
4115 * The device nodes in the array (of_node) must be dereferenced by the caller.
4116 *
4117 * Returns 0 for success
4118 */
4119int snd_soc_of_get_dai_link_codecs(struct device *dev,
4120 struct device_node *of_node,
4121 struct snd_soc_dai_link *dai_link)
4122{
4123 struct of_phandle_args args;
4124 struct snd_soc_dai_link_component *component;
4125 char *name;
4126 int index, num_codecs, ret;
4127
4128 /* Count the number of CODECs */
4129 name = "sound-dai";
4130 num_codecs = of_count_phandle_with_args(of_node, name,
4131 "#sound-dai-cells");
4132 if (num_codecs <= 0) {
4133 if (num_codecs == -ENOENT)
4134 dev_err(dev, "No 'sound-dai' property\n");
4135 else
4136 dev_err(dev, "Bad phandle in 'sound-dai'\n");
4137 return num_codecs;
4138 }
4139 component = devm_kzalloc(dev,
4140 sizeof *component * num_codecs,
4141 GFP_KERNEL);
4142 if (!component)
4143 return -ENOMEM;
4144 dai_link->codecs = component;
4145 dai_link->num_codecs = num_codecs;
4146
4147 /* Parse the list */
4148 for (index = 0, component = dai_link->codecs;
4149 index < dai_link->num_codecs;
4150 index++, component++) {
4151 ret = of_parse_phandle_with_args(of_node, name,
4152 "#sound-dai-cells",
4153 index, &args);
4154 if (ret)
4155 goto err;
4156 component->of_node = args.np;
4157 ret = snd_soc_get_dai_name(&args, &component->dai_name);
4158 if (ret < 0)
4159 goto err;
4160 }
4161 return 0;
4162err:
4163 for (index = 0, component = dai_link->codecs;
4164 index < dai_link->num_codecs;
4165 index++, component++) {
4166 if (!component->of_node)
4167 break;
4168 of_node_put(component->of_node);
4169 component->of_node = NULL;
4170 }
4171 dai_link->codecs = NULL;
4172 dai_link->num_codecs = 0;
4173 return ret;
4174}
4175EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
4176
Takashi Iwaic9b3a402008-12-10 07:47:22 +01004177static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004178{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02004179 snd_soc_debugfs_init();
Mark Brownfb257892011-04-28 10:57:54 +01004180 snd_soc_util_init();
4181
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004182 return platform_driver_register(&soc_driver);
4183}
Mark Brown4abe8e12010-10-12 17:41:03 +01004184module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004185
Mark Brown7d8c16a2008-11-30 22:11:24 +00004186static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004187{
Mark Brownfb257892011-04-28 10:57:54 +01004188 snd_soc_util_exit();
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02004189 snd_soc_debugfs_exit();
Mark Brownfb257892011-04-28 10:57:54 +01004190
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004191 platform_driver_unregister(&soc_driver);
4192}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004193module_exit(snd_soc_exit);
4194
4195/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004196MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004197MODULE_DESCRIPTION("ALSA SoC Core");
4198MODULE_LICENSE("GPL");
4199MODULE_ALIAS("platform:soc-audio");