blob: 95414a2cec1b6683b2f99c66deeb961e3b6cbe2a [file] [log] [blame]
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001/*
2 * soc-core.c -- ALSA SoC Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwood0664d882006-12-18 14:39:02 +01005 * Copyright 2005 Openedhand Ltd.
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00006 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
Liam Girdwood0664d882006-12-18 14:39:02 +01008 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01009 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +010010 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020012 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020018 * TODO:
19 * o Add hw rules to enforce rates, etc.
20 * o More testing with other codecs/machines.
21 * o Add more codecs and platforms to ensure good API coverage.
22 * o Support TDM on PCM and I2S
23 */
24
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/pm.h>
30#include <linux/bitops.h>
Troy Kisky12ef1932008-10-13 17:42:14 -070031#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020032#include <linux/platform_device.h>
Markus Pargmann741a5092013-08-19 17:05:55 +020033#include <linux/pinctrl/consumer.h>
Mark Brownf0e8ed82011-09-20 11:41:54 +010034#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Stephen Warrenbec4fa02011-12-12 15:55:34 -070036#include <linux/of.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020037#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000038#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020039#include <sound/pcm.h>
40#include <sound/pcm_params.h>
41#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010042#include <sound/soc-dpcm.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020043#include <sound/initval.h>
44
Mark Browna8b1d342010-11-03 18:05:58 -040045#define CREATE_TRACE_POINTS
46#include <trace/events/asoc.h>
47
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000048#define NAME_SIZE 32
49
Mark Brown384c89e2008-12-03 17:34:03 +000050#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000051struct dentry *snd_soc_debugfs_root;
52EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000053#endif
54
Mark Brownc5af3a22008-11-28 13:29:45 +000055static DEFINE_MUTEX(client_mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +000056static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000057static LIST_HEAD(codec_list);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -070058static LIST_HEAD(component_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000059
Frank Mandarinodb2a4162006-10-06 18:31:09 +020060/*
61 * This is a timeout to do a DAPM powerdown after a stream is closed().
62 * It can be used to eliminate pops between different playback streams, e.g.
63 * between two audio tracks.
64 */
65static int pmdown_time = 5000;
66module_param(pmdown_time, int, 0);
67MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
68
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000069/* returns the minimum number of bytes needed to represent
70 * a particular given value */
71static int min_bytes_needed(unsigned long val)
72{
73 int c = 0;
74 int i;
75
76 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
77 if (val & (1UL << i))
78 break;
79 c = (sizeof val * 8) - c;
80 if (!c || (c % 8))
81 c = (c + 8) / 8;
82 else
83 c /= 8;
84 return c;
85}
86
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000087/* fill buf which is 'len' bytes with a formatted
88 * string of the form 'reg: value\n' */
89static int format_register_str(struct snd_soc_codec *codec,
90 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +000091{
Stephen Warren00b317a2011-04-01 14:50:44 -060092 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
93 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000094 int ret;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000095
96 /* +2 for ': ' and + 1 for '\n' */
97 if (wordsize + regsize + 2 + 1 != len)
98 return -EINVAL;
99
Takashi Iwaid6b6c2c2015-05-26 14:40:14 +0200100 sprintf(buf, "%.*x: ", wordsize, reg);
101 buf += wordsize + 2;
102
Mark Brown25032c12011-08-01 13:52:48 +0900103 ret = snd_soc_read(codec, reg);
Takashi Iwaid6b6c2c2015-05-26 14:40:14 +0200104 if (ret < 0)
105 memset(buf, 'X', regsize);
106 else
107 sprintf(buf, "%.*x", regsize, ret);
108 buf[regsize] = '\n';
109 /* no NUL-termination needed */
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000110 return 0;
111}
112
113/* codec register dump */
114static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
115 size_t count, loff_t pos)
116{
117 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000118 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000119 int len;
120 size_t total = 0;
121 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000122
Stephen Warren00b317a2011-04-01 14:50:44 -0600123 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
124 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000125
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000126 len = wordsize + regsize + 2 + 1;
127
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000128 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000129 return 0;
130
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000131 if (codec->driver->reg_cache_step)
132 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000133
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000134 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100135 /* only support larger than PAGE_SIZE bytes debugfs
136 * entries for the default case */
137 if (p >= pos) {
138 if (total + len >= count - 1)
139 break;
140 format_register_str(codec, i, buf + total, len);
141 total += len;
Mark Brown5164d742010-07-14 16:14:33 +0100142 }
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100143 p += len;
Mark Brown2624d5f2009-11-03 21:56:13 +0000144 }
145
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000146 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000147
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000148 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000149}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000150
Mark Brown2624d5f2009-11-03 21:56:13 +0000151static ssize_t codec_reg_show(struct device *dev,
152 struct device_attribute *attr, char *buf)
153{
Mark Brown36ae1a92012-01-06 17:12:45 -0800154 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000155
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000156 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000157}
158
159static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
160
Mark Browndbe21402010-02-12 11:37:24 +0000161static ssize_t pmdown_time_show(struct device *dev,
162 struct device_attribute *attr, char *buf)
163{
Mark Brown36ae1a92012-01-06 17:12:45 -0800164 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000165
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000166 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000167}
168
169static ssize_t pmdown_time_set(struct device *dev,
170 struct device_attribute *attr,
171 const char *buf, size_t count)
172{
Mark Brown36ae1a92012-01-06 17:12:45 -0800173 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700174 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000175
Jingoo Hanb785a492013-07-19 16:24:59 +0900176 ret = kstrtol(buf, 10, &rtd->pmdown_time);
Mark Brownc593b522010-10-27 20:11:17 -0700177 if (ret)
178 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000179
180 return count;
181}
182
183static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
184
Takashi Iwaid29697d2015-01-30 20:16:37 +0100185static struct attribute *soc_dev_attrs[] = {
186 &dev_attr_codec_reg.attr,
187 &dev_attr_pmdown_time.attr,
188 NULL
189};
190
191static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
192 struct attribute *attr, int idx)
193{
194 struct device *dev = kobj_to_dev(kobj);
195 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
196
197 if (attr == &dev_attr_pmdown_time.attr)
198 return attr->mode; /* always visible */
199 return rtd->codec ? attr->mode : 0; /* enabled only with codec */
200}
201
202static const struct attribute_group soc_dapm_dev_group = {
203 .attrs = soc_dapm_dev_attrs,
204 .is_visible = soc_dev_attr_is_visible,
205};
206
207static const struct attribute_group soc_dev_roup = {
208 .attrs = soc_dev_attrs,
209 .is_visible = soc_dev_attr_is_visible,
210};
211
212static const struct attribute_group *soc_dev_attr_groups[] = {
213 &soc_dapm_dev_group,
214 &soc_dev_roup,
215 NULL
216};
217
Mark Brown2624d5f2009-11-03 21:56:13 +0000218#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000219static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000220 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000221{
222 ssize_t ret;
223 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000224 char *buf;
225
226 if (*ppos < 0 || !count)
227 return -EINVAL;
228
229 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000230 if (!buf)
231 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000232
233 ret = soc_codec_reg_show(codec, buf, count, *ppos);
234 if (ret >= 0) {
235 if (copy_to_user(user_buf, buf, ret)) {
236 kfree(buf);
237 return -EFAULT;
238 }
239 *ppos += ret;
240 }
241
Mark Brown2624d5f2009-11-03 21:56:13 +0000242 kfree(buf);
243 return ret;
244}
245
246static ssize_t codec_reg_write_file(struct file *file,
247 const char __user *user_buf, size_t count, loff_t *ppos)
248{
249 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700250 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000251 char *start = buf;
252 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000253 struct snd_soc_codec *codec = file->private_data;
Jingoo Hanb785a492013-07-19 16:24:59 +0900254 int ret;
Mark Brown2624d5f2009-11-03 21:56:13 +0000255
256 buf_size = min(count, (sizeof(buf)-1));
257 if (copy_from_user(buf, user_buf, buf_size))
258 return -EFAULT;
259 buf[buf_size] = 0;
260
Mark Brown2624d5f2009-11-03 21:56:13 +0000261 while (*start == ' ')
262 start++;
263 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000264 while (*start == ' ')
265 start++;
Jingoo Hanb785a492013-07-19 16:24:59 +0900266 ret = kstrtoul(start, 16, &value);
267 if (ret)
268 return ret;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000269
270 /* Userspace has been fiddling around behind the kernel's back */
Rusty Russell373d4d02013-01-21 17:17:39 +1030271 add_taint(TAINT_USER, LOCKDEP_NOW_UNRELIABLE);
Mark Brown0d51a9c2011-01-06 16:04:57 +0000272
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000273 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000274 return buf_size;
275}
276
277static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700278 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000279 .read = codec_reg_read_file,
280 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200281 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000282};
283
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200284static void soc_init_component_debugfs(struct snd_soc_component *component)
Russell Kinge73f3de2014-06-26 15:22:50 +0100285{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200286 if (!component->card->debugfs_card_root)
287 return;
288
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200289 if (component->debugfs_prefix) {
290 char *name;
Russell Kinge73f3de2014-06-26 15:22:50 +0100291
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200292 name = kasprintf(GFP_KERNEL, "%s:%s",
293 component->debugfs_prefix, component->name);
294 if (name) {
295 component->debugfs_root = debugfs_create_dir(name,
296 component->card->debugfs_card_root);
297 kfree(name);
298 }
299 } else {
300 component->debugfs_root = debugfs_create_dir(component->name,
301 component->card->debugfs_card_root);
302 }
Russell Kinge73f3de2014-06-26 15:22:50 +0100303
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200304 if (!component->debugfs_root) {
305 dev_warn(component->dev,
306 "ASoC: Failed to create component debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000307 return;
308 }
309
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200310 snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component),
311 component->debugfs_root);
312
313 if (component->init_debugfs)
314 component->init_debugfs(component);
315}
316
317static void soc_cleanup_component_debugfs(struct snd_soc_component *component)
318{
319 debugfs_remove_recursive(component->debugfs_root);
320}
321
322static void soc_init_codec_debugfs(struct snd_soc_component *component)
323{
324 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
325
Mark Brown2624d5f2009-11-03 21:56:13 +0000326 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200327 codec->component.debugfs_root,
Mark Brown2624d5f2009-11-03 21:56:13 +0000328 codec, &codec_reg_fops);
329 if (!codec->debugfs_reg)
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200330 dev_warn(codec->dev,
331 "ASoC: Failed to create codec register debugfs file\n");
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000332}
333
Mark Brownc3c5a192010-09-15 18:15:14 +0100334static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
335 size_t count, loff_t *ppos)
336{
337 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100338 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100339 struct snd_soc_codec *codec;
340
341 if (!buf)
342 return -ENOMEM;
343
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100344 mutex_lock(&client_mutex);
345
Mark Brown2b194f9d2010-10-13 10:52:16 +0100346 list_for_each_entry(codec, &codec_list, list) {
347 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200348 codec->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100349 if (len >= 0)
350 ret += len;
351 if (ret > PAGE_SIZE) {
352 ret = PAGE_SIZE;
353 break;
354 }
355 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100356
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100357 mutex_unlock(&client_mutex);
358
Mark Brownc3c5a192010-09-15 18:15:14 +0100359 if (ret >= 0)
360 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
361
362 kfree(buf);
363
364 return ret;
365}
366
367static const struct file_operations codec_list_fops = {
368 .read = codec_list_read_file,
369 .llseek = default_llseek,/* read accesses f_pos */
370};
371
Mark Brownf3208782010-09-15 18:19:07 +0100372static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
373 size_t count, loff_t *ppos)
374{
375 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100376 ssize_t len, ret = 0;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100377 struct snd_soc_component *component;
Mark Brownf3208782010-09-15 18:19:07 +0100378 struct snd_soc_dai *dai;
379
380 if (!buf)
381 return -ENOMEM;
382
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100383 mutex_lock(&client_mutex);
384
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100385 list_for_each_entry(component, &component_list, list) {
386 list_for_each_entry(dai, &component->dai_list, list) {
387 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
388 dai->name);
389 if (len >= 0)
390 ret += len;
391 if (ret > PAGE_SIZE) {
392 ret = PAGE_SIZE;
393 break;
394 }
Mark Brown2b194f9d2010-10-13 10:52:16 +0100395 }
396 }
Mark Brownf3208782010-09-15 18:19:07 +0100397
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100398 mutex_unlock(&client_mutex);
399
Mark Brown2b194f9d2010-10-13 10:52:16 +0100400 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100401
402 kfree(buf);
403
404 return ret;
405}
406
407static const struct file_operations dai_list_fops = {
408 .read = dai_list_read_file,
409 .llseek = default_llseek,/* read accesses f_pos */
410};
411
Mark Brown19c7ac22010-09-15 18:22:40 +0100412static ssize_t platform_list_read_file(struct file *file,
413 char __user *user_buf,
414 size_t count, loff_t *ppos)
415{
416 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100417 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100418 struct snd_soc_platform *platform;
419
420 if (!buf)
421 return -ENOMEM;
422
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100423 mutex_lock(&client_mutex);
424
Mark Brown2b194f9d2010-10-13 10:52:16 +0100425 list_for_each_entry(platform, &platform_list, list) {
426 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200427 platform->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100428 if (len >= 0)
429 ret += len;
430 if (ret > PAGE_SIZE) {
431 ret = PAGE_SIZE;
432 break;
433 }
434 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100435
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100436 mutex_unlock(&client_mutex);
437
Mark Brown2b194f9d2010-10-13 10:52:16 +0100438 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100439
440 kfree(buf);
441
442 return ret;
443}
444
445static const struct file_operations platform_list_fops = {
446 .read = platform_list_read_file,
447 .llseek = default_llseek,/* read accesses f_pos */
448};
449
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200450static void soc_init_card_debugfs(struct snd_soc_card *card)
451{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200452 if (!snd_soc_debugfs_root)
453 return;
454
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200455 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000456 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200457 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200458 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100459 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200460 return;
461 }
462
463 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
464 card->debugfs_card_root,
465 &card->pop_time);
466 if (!card->debugfs_pop_time)
467 dev_warn(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000468 "ASoC: Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200469}
470
471static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
472{
473 debugfs_remove_recursive(card->debugfs_card_root);
474}
475
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200476
477static void snd_soc_debugfs_init(void)
478{
479 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
480 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
481 pr_warn("ASoC: Failed to create debugfs directory\n");
482 snd_soc_debugfs_root = NULL;
483 return;
484 }
485
486 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
487 &codec_list_fops))
488 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
489
490 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
491 &dai_list_fops))
492 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
493
494 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
495 &platform_list_fops))
496 pr_warn("ASoC: Failed to create platform list debugfs file\n");
497}
498
499static void snd_soc_debugfs_exit(void)
500{
501 debugfs_remove_recursive(snd_soc_debugfs_root);
502}
503
Mark Brown2624d5f2009-11-03 21:56:13 +0000504#else
505
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200506#define soc_init_codec_debugfs NULL
507
508static inline void soc_init_component_debugfs(
509 struct snd_soc_component *component)
Mark Brown2624d5f2009-11-03 21:56:13 +0000510{
511}
512
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200513static inline void soc_cleanup_component_debugfs(
514 struct snd_soc_component *component)
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000515{
516}
517
Axel Linb95fccb2010-11-09 17:06:44 +0800518static inline void soc_init_card_debugfs(struct snd_soc_card *card)
519{
520}
521
522static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
523{
524}
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +0200525
526static inline void snd_soc_debugfs_init(void)
527{
528}
529
530static inline void snd_soc_debugfs_exit(void)
531{
532}
533
Mark Brown2624d5f2009-11-03 21:56:13 +0000534#endif
535
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100536struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
537 const char *dai_link, int stream)
538{
539 int i;
540
541 for (i = 0; i < card->num_links; i++) {
542 if (card->rtd[i].dai_link->no_pcm &&
543 !strcmp(card->rtd[i].dai_link->name, dai_link))
544 return card->rtd[i].pcm->streams[stream].substream;
545 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000546 dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100547 return NULL;
548}
549EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
550
551struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
552 const char *dai_link)
553{
554 int i;
555
556 for (i = 0; i < card->num_links; i++) {
557 if (!strcmp(card->rtd[i].dai_link->name, dai_link))
558 return &card->rtd[i];
559 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000560 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100561 return NULL;
562}
563EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
564
Richard Fitzgerald9d58a072013-08-05 13:17:28 +0100565static void codec2codec_close_delayed_work(struct work_struct *work)
566{
567 /* Currently nothing to do for c2c links
568 * Since c2c links are internal nodes in the DAPM graph and
569 * don't interface with the outside world or application layer
570 * we don't have to do any special handling on close.
571 */
572}
573
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000574#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200575/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000576int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200577{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000578 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200579 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200580 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200581
Lars-Peter Clausenc5599b82014-08-19 15:51:30 +0200582 /* If the card is not initialized yet there is nothing to do */
583 if (!card->instantiated)
Daniel Macke3509ff2009-06-03 17:44:49 +0200584 return 0;
585
Andy Green6ed25972008-06-13 16:24:05 +0100586 /* Due to the resume being scheduled into a workqueue we could
587 * suspend before that's finished - wait for it to complete.
588 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000589 snd_power_lock(card->snd_card);
590 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
591 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100592
593 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000594 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100595
Mark Browna00f90f2010-12-02 16:24:24 +0000596 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000597 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100598
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000599 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100600 continue;
601
Benoit Cousson88bd8702014-07-08 23:19:34 +0200602 for (j = 0; j < card->rtd[i].num_codecs; j++) {
603 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
604 struct snd_soc_dai_driver *drv = dai->driver;
605
606 if (drv->ops->digital_mute && dai->playback_active)
607 drv->ops->digital_mute(dai, 1);
608 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200609 }
610
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100611 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000612 for (i = 0; i < card->num_rtd; i++) {
613 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100614 continue;
615
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000616 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100617 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100618
Mark Brown87506542008-11-18 20:50:34 +0000619 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000620 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200621
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000622 for (i = 0; i < card->num_rtd; i++) {
623 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100624
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000625 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100626 continue;
627
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100628 if (cpu_dai->driver->suspend && !cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000629 cpu_dai->driver->suspend(cpu_dai);
Mark Brown1547aba2010-05-07 21:11:40 +0100630 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200631
Lars-Peter Clausen37660b62015-03-30 21:04:50 +0200632 /* close any waiting streams */
633 for (i = 0; i < card->num_rtd; i++)
Tejun Heo43829732012-08-20 14:51:24 -0700634 flush_delayed_work(&card->rtd[i].delayed_work);
Mark Brown3efab7d2010-05-09 13:25:43 +0100635
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000636 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000637
638 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100639 continue;
640
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800641 snd_soc_dapm_stream_event(&card->rtd[i],
642 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800643 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000644
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800645 snd_soc_dapm_stream_event(&card->rtd[i],
646 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800647 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000648 }
649
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200650 /* Recheck all endpoints too, their state is affected by suspend */
651 dapm_mark_endpoints_dirty(card);
Mark Browne2d32ff2012-08-31 17:38:32 -0700652 snd_soc_dapm_sync(&card->dapm);
653
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000654 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200655 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000656 /* If there are paths active then the CODEC will be held with
657 * bias _ON and should not be suspended. */
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200658 if (!codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200659 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000660 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000661 /*
662 * If the CODEC is capable of idle
663 * bias off then being in STANDBY
664 * means it's doing something,
665 * otherwise fall through.
666 */
667 if (codec->dapm.idle_bias_off) {
668 dev_dbg(codec->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200669 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000670 break;
671 }
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200672
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000673 case SND_SOC_BIAS_OFF:
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200674 if (codec->driver->suspend)
675 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000676 codec->suspended = 1;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200677 if (codec->component.regmap)
678 regcache_mark_dirty(codec->component.regmap);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800679 /* deactivate pins to sleep state */
680 pinctrl_pm_select_sleep_state(codec->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000681 break;
682 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200683 dev_dbg(codec->dev,
684 "ASoC: CODEC is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000685 break;
686 }
687 }
688 }
689
690 for (i = 0; i < card->num_rtd; i++) {
691 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
692
693 if (card->rtd[i].dai_link->ignore_suspend)
694 continue;
695
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100696 if (cpu_dai->driver->suspend && cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000697 cpu_dai->driver->suspend(cpu_dai);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800698
699 /* deactivate pins to sleep state */
700 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200701 }
702
Mark Brown87506542008-11-18 20:50:34 +0000703 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000704 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200705
706 return 0;
707}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000708EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200709
Andy Green6ed25972008-06-13 16:24:05 +0100710/* deferred resume work, so resume can complete before we finished
711 * setting our codec back up, which can be very slow on I2C
712 */
713static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200714{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000715 struct snd_soc_card *card =
716 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200717 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200718 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200719
Andy Green6ed25972008-06-13 16:24:05 +0100720 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
721 * so userspace apps are blocked from touching us
722 */
723
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000724 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100725
Mark Brown99497882010-05-07 20:24:05 +0100726 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000727 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100728
Mark Brown87506542008-11-18 20:50:34 +0000729 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000730 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200731
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100732 /* resume control bus DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000733 for (i = 0; i < card->num_rtd; i++) {
734 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100735
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000736 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100737 continue;
738
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100739 if (cpu_dai->driver->resume && cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000740 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200741 }
742
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200743 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000744 /* If the CODEC was idle over suspend then it will have been
745 * left with bias OFF or STANDBY and suspended so we must now
746 * resume. Otherwise the suspend was suppressed.
747 */
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200748 if (codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200749 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000750 case SND_SOC_BIAS_STANDBY:
751 case SND_SOC_BIAS_OFF:
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200752 if (codec->driver->resume)
753 codec->driver->resume(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000754 codec->suspended = 0;
755 break;
756 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200757 dev_dbg(codec->dev,
758 "ASoC: CODEC was on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000759 break;
760 }
Mark Brown1547aba2010-05-07 21:11:40 +0100761 }
762 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200763
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000764 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100765
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000766 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100767 continue;
768
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800769 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000770 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800771 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000772
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800773 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000774 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800775 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200776 }
777
Mark Brown3ff3f642008-05-19 12:32:25 +0200778 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000779 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100780
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000781 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100782 continue;
783
Benoit Cousson88bd8702014-07-08 23:19:34 +0200784 for (j = 0; j < card->rtd[i].num_codecs; j++) {
785 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
786 struct snd_soc_dai_driver *drv = dai->driver;
787
788 if (drv->ops->digital_mute && dai->playback_active)
789 drv->ops->digital_mute(dai, 0);
790 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200791 }
792
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000793 for (i = 0; i < card->num_rtd; i++) {
794 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100795
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000796 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100797 continue;
798
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100799 if (cpu_dai->driver->resume && !cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000800 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200801 }
802
Mark Brown87506542008-11-18 20:50:34 +0000803 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000804 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200805
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000806 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100807
808 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000809 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Mark Browne2d32ff2012-08-31 17:38:32 -0700810
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200811 /* Recheck all endpoints too, their state is affected by suspend */
812 dapm_mark_endpoints_dirty(card);
Mark Browne2d32ff2012-08-31 17:38:32 -0700813 snd_soc_dapm_sync(&card->dapm);
Andy Green6ed25972008-06-13 16:24:05 +0100814}
815
816/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000817int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100818{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000819 struct snd_soc_card *card = dev_get_drvdata(dev);
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100820 bool bus_control = false;
821 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200822
Lars-Peter Clausenc5599b82014-08-19 15:51:30 +0200823 /* If the card is not initialized yet there is nothing to do */
824 if (!card->instantiated)
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800825 return 0;
826
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800827 /* activate pins from sleep state */
828 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200829 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
830 struct snd_soc_dai **codec_dais = rtd->codec_dais;
831 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
832 int j;
833
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800834 if (cpu_dai->active)
835 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200836
837 for (j = 0; j < rtd->num_codecs; j++) {
838 struct snd_soc_dai *codec_dai = codec_dais[j];
839 if (codec_dai->active)
840 pinctrl_pm_select_default_state(codec_dai->dev);
841 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800842 }
843
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100844 /*
845 * DAIs that also act as the control bus master might have other drivers
846 * hanging off them so need to resume immediately. Other drivers don't
847 * have that problem and may take a substantial amount of time to resume
Mark Brown64ab9ba2009-03-31 11:27:03 +0100848 * due to I/O costs and anti-pop so handle them out of line.
849 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000850 for (i = 0; i < card->num_rtd; i++) {
851 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100852 bus_control |= cpu_dai->driver->bus_control;
Stephen Warren82e14e82011-05-25 14:06:41 -0600853 }
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100854 if (bus_control) {
855 dev_dbg(dev, "ASoC: Resuming control bus master immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600856 soc_resume_deferred(&card->deferred_resume_work);
857 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000858 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600859 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000860 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100861 }
Andy Green6ed25972008-06-13 16:24:05 +0100862
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200863 return 0;
864}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000865EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200866#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000867#define snd_soc_suspend NULL
868#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200869#endif
870
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100871static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800872};
873
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200874static struct snd_soc_component *soc_find_component(
875 const struct device_node *of_node, const char *name)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100876{
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200877 struct snd_soc_component *component;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100878
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100879 lockdep_assert_held(&client_mutex);
880
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200881 list_for_each_entry(component, &component_list, list) {
882 if (of_node) {
883 if (component->dev->of_node == of_node)
884 return component;
885 } else if (strcmp(component->name, name) == 0) {
886 return component;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100887 }
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100888 }
889
890 return NULL;
891}
892
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200893static struct snd_soc_dai *snd_soc_find_dai(
894 const struct snd_soc_dai_link_component *dlc)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100895{
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200896 struct snd_soc_component *component;
897 struct snd_soc_dai *dai;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100898
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +0100899 lockdep_assert_held(&client_mutex);
900
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200901 /* Find CPU DAI from registered DAIs*/
902 list_for_each_entry(component, &component_list, list) {
903 if (dlc->of_node && component->dev->of_node != dlc->of_node)
904 continue;
Lars-Peter Clausen1ffae362014-10-29 21:46:30 +0100905 if (dlc->name && strcmp(component->name, dlc->name))
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200906 continue;
907 list_for_each_entry(dai, &component->dai_list, list) {
908 if (dlc->dai_name && strcmp(dai->name, dlc->dai_name))
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100909 continue;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100910
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200911 return dai;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100912 }
913 }
914
915 return NULL;
916}
917
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000918static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200919{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000920 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
921 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Benoit Cousson88bd8702014-07-08 23:19:34 +0200922 struct snd_soc_dai_link_component *codecs = dai_link->codecs;
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200923 struct snd_soc_dai_link_component cpu_dai_component;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200924 struct snd_soc_dai **codec_dais = rtd->codec_dais;
Mark Brown435c5e22008-12-04 15:32:53 +0000925 struct snd_soc_platform *platform;
Mark Brown848dd8b2011-04-27 18:16:32 +0100926 const char *platform_name;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200927 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200928
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000929 dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000930
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200931 cpu_dai_component.name = dai_link->cpu_name;
932 cpu_dai_component.of_node = dai_link->cpu_of_node;
933 cpu_dai_component.dai_name = dai_link->cpu_dai_name;
934 rtd->cpu_dai = snd_soc_find_dai(&cpu_dai_component);
Mark Brownb19e6e72012-03-14 21:18:39 +0000935 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000936 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000937 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000938 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000939 }
940
Benoit Cousson88bd8702014-07-08 23:19:34 +0200941 rtd->num_codecs = dai_link->num_codecs;
942
943 /* Find CODEC from registered CODECs */
944 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200945 codec_dais[i] = snd_soc_find_dai(&codecs[i]);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200946 if (!codec_dais[i]) {
947 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
948 codecs[i].dai_name);
949 return -EPROBE_DEFER;
950 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000951 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100952
Benoit Cousson88bd8702014-07-08 23:19:34 +0200953 /* Single codec links expect codec and codec_dai in runtime data */
954 rtd->codec_dai = codec_dais[0];
955 rtd->codec = rtd->codec_dai->codec;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100956
Mark Brown848dd8b2011-04-27 18:16:32 +0100957 /* if there's no platform we match on the empty platform */
958 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700959 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100960 platform_name = "snd-soc-dummy";
961
Mark Brownb19e6e72012-03-14 21:18:39 +0000962 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000963 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700964 if (dai_link->platform_of_node) {
965 if (platform->dev->of_node !=
966 dai_link->platform_of_node)
967 continue;
968 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200969 if (strcmp(platform->component.name, platform_name))
Stephen Warren5a504962011-12-21 10:40:59 -0700970 continue;
971 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700972
973 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000974 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000975 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000976 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000977 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000978 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000979 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000980
981 card->num_rtd++;
982
983 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000984}
985
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200986static void soc_remove_component(struct snd_soc_component *component)
Stephen Warrend12cd192012-06-08 12:34:22 -0600987{
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +0200988 if (!component->probed)
989 return;
Stephen Warrend12cd192012-06-08 12:34:22 -0600990
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200991 /* This is a HACK and will be removed soon */
992 if (component->codec)
993 list_del(&component->codec->card_list);
Stephen Warrend12cd192012-06-08 12:34:22 -0600994
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200995 if (component->remove)
996 component->remove(component);
Stephen Warrend12cd192012-06-08 12:34:22 -0600997
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200998 snd_soc_dapm_free(snd_soc_component_get_dapm(component));
Stephen Warrend12cd192012-06-08 12:34:22 -0600999
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001000 soc_cleanup_component_debugfs(component);
1001 component->probed = 0;
1002 module_put(component->dev->driver->owner);
Stephen Warrend12cd192012-06-08 12:34:22 -06001003}
1004
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001005static void soc_remove_dai(struct snd_soc_dai *dai, int order)
Jarkko Nikula589c3562010-12-06 16:27:07 +02001006{
1007 int err;
1008
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001009 if (dai && dai->probed &&
1010 dai->driver->remove_order == order) {
1011 if (dai->driver->remove) {
1012 err = dai->driver->remove(dai);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001013 if (err < 0)
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001014 dev_err(dai->dev,
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001015 "ASoC: failed to remove %s: %d\n",
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001016 dai->name, err);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001017 }
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001018 dai->probed = 0;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001019 }
1020}
1021
Stephen Warren62ae68f2012-06-08 12:34:23 -06001022static void soc_remove_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001023{
1024 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001025 int i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001026
1027 /* unregister the rtd device */
1028 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001029 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001030 rtd->dev_registered = 0;
1031 }
1032
1033 /* remove the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001034 for (i = 0; i < rtd->num_codecs; i++)
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001035 soc_remove_dai(rtd->codec_dais[i], order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001036
Lars-Peter Clausene60cd142014-08-19 15:51:26 +02001037 soc_remove_dai(rtd->cpu_dai, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001038}
1039
Stephen Warren62ae68f2012-06-08 12:34:23 -06001040static void soc_remove_link_components(struct snd_soc_card *card, int num,
1041 int order)
1042{
1043 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1044 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001045 struct snd_soc_platform *platform = rtd->platform;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001046 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001047 int i;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001048
1049 /* remove the platform */
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001050 if (platform && platform->component.driver->remove_order == order)
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001051 soc_remove_component(&platform->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001052
1053 /* remove the CODEC-side CODEC */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001054 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001055 component = rtd->codec_dais[i]->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001056 if (component->driver->remove_order == order)
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001057 soc_remove_component(component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001058 }
1059
1060 /* remove any CPU-side CODEC */
1061 if (cpu_dai) {
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001062 if (cpu_dai->component->driver->remove_order == order)
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001063 soc_remove_component(cpu_dai->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001064 }
1065}
1066
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001067static void soc_remove_dai_links(struct snd_soc_card *card)
1068{
Liam Girdwood0168bf02011-06-07 16:08:05 +01001069 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001070
Liam Girdwood0168bf02011-06-07 16:08:05 +01001071 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1072 order++) {
1073 for (dai = 0; dai < card->num_rtd; dai++)
Stephen Warren62ae68f2012-06-08 12:34:23 -06001074 soc_remove_link_dais(card, dai, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001075 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001076
1077 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1078 order++) {
1079 for (dai = 0; dai < card->num_rtd; dai++)
1080 soc_remove_link_components(card, dai, order);
1081 }
1082
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001083 card->num_rtd = 0;
1084}
1085
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001086static void soc_set_name_prefix(struct snd_soc_card *card,
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001087 struct snd_soc_component *component)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001088{
1089 int i;
1090
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001091 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001092 return;
1093
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001094 for (i = 0; i < card->num_configs; i++) {
1095 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001096 if (map->of_node && component->dev->of_node != map->of_node)
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001097 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001098 if (map->dev_name && strcmp(component->name, map->dev_name))
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001099 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001100 component->name_prefix = map->name_prefix;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001101 break;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001102 }
1103}
1104
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001105static int soc_probe_component(struct snd_soc_card *card,
1106 struct snd_soc_component *component)
Jarkko Nikula589c3562010-12-06 16:27:07 +02001107{
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001108 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
Mark Brown888df392012-02-16 19:37:51 -08001109 struct snd_soc_dai *dai;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001110 int ret;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001111
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001112 if (component->probed)
1113 return 0;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001114
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001115 component->card = card;
1116 dapm->card = card;
1117 soc_set_name_prefix(card, component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001118
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001119 if (!try_module_get(component->dev->driver->owner))
Jarkko Nikula70d29332011-01-27 16:24:22 +02001120 return -ENODEV;
1121
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001122 soc_init_component_debugfs(component);
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001123
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001124 if (component->dapm_widgets) {
1125 ret = snd_soc_dapm_new_controls(dapm, component->dapm_widgets,
1126 component->num_dapm_widgets);
Nariman Poushinb318ad52014-04-01 13:59:33 +01001127
1128 if (ret != 0) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001129 dev_err(component->dev,
Nariman Poushinb318ad52014-04-01 13:59:33 +01001130 "Failed to create new controls %d\n", ret);
1131 goto err_probe;
1132 }
1133 }
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001134
Lars-Peter Clausen06348142014-08-20 13:08:49 +02001135 list_for_each_entry(dai, &component->dai_list, list) {
1136 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
Nariman Poushin261edc72014-03-31 15:47:12 +01001137 if (ret != 0) {
Lars-Peter Clausen06348142014-08-20 13:08:49 +02001138 dev_err(component->dev,
Nariman Poushin261edc72014-03-31 15:47:12 +01001139 "Failed to create DAI widgets %d\n", ret);
1140 goto err_probe;
1141 }
1142 }
Mark Brown888df392012-02-16 19:37:51 -08001143
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001144 if (component->probe) {
1145 ret = component->probe(component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001146 if (ret < 0) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001147 dev_err(component->dev,
1148 "ASoC: failed to probe component %d\n", ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001149 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001150 }
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001151
1152 WARN(dapm->idle_bias_off &&
1153 dapm->bias_level != SND_SOC_BIAS_OFF,
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001154 "codec %s can not start from non-off bias with idle_bias_off==1\n",
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001155 component->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001156 }
1157
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001158 if (component->controls)
1159 snd_soc_add_component_controls(component, component->controls,
1160 component->num_controls);
1161 if (component->dapm_routes)
1162 snd_soc_dapm_add_routes(dapm, component->dapm_routes,
1163 component->num_dapm_routes);
Mark Brown89b95ac02011-03-07 16:38:44 +00001164
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001165 component->probed = 1;
1166 list_add(&dapm->list, &card->dapm_list);
1167
1168 /* This is a HACK and will be removed soon */
1169 if (component->codec)
1170 list_add(&component->codec->card_list, &card->codec_dev_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001171
Jarkko Nikula70d29332011-01-27 16:24:22 +02001172 return 0;
1173
1174err_probe:
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001175 soc_cleanup_component_debugfs(component);
1176 module_put(component->dev->driver->owner);
Liam Girdwood956245e2011-07-01 16:54:08 +01001177
1178 return ret;
1179}
1180
Mark Brown36ae1a92012-01-06 17:12:45 -08001181static void rtd_release(struct device *dev)
1182{
1183 kfree(dev);
1184}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001185
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001186static int soc_post_component_init(struct snd_soc_pcm_runtime *rtd,
1187 const char *name)
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001188{
Jarkko Nikula589c3562010-12-06 16:27:07 +02001189 int ret = 0;
1190
Jarkko Nikula589c3562010-12-06 16:27:07 +02001191 /* register the rtd device */
Mark Brown36ae1a92012-01-06 17:12:45 -08001192 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1193 if (!rtd->dev)
1194 return -ENOMEM;
1195 device_initialize(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001196 rtd->dev->parent = rtd->card->dev;
Mark Brown36ae1a92012-01-06 17:12:45 -08001197 rtd->dev->release = rtd_release;
Takashi Iwaid29697d2015-01-30 20:16:37 +01001198 rtd->dev->groups = soc_dev_attr_groups;
Lars-Peter Clausenf294afe2014-08-17 11:28:35 +02001199 dev_set_name(rtd->dev, "%s", name);
Mark Brown36ae1a92012-01-06 17:12:45 -08001200 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001201 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001202 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1203 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1204 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1205 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001206 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001207 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001208 /* calling put_device() here to free the rtd->dev */
1209 put_device(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001210 dev_err(rtd->card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001211 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001212 return ret;
1213 }
1214 rtd->dev_registered = 1;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001215 return 0;
1216}
1217
Stephen Warren62ae68f2012-06-08 12:34:23 -06001218static int soc_probe_link_components(struct snd_soc_card *card, int num,
1219 int order)
1220{
1221 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Stephen Warren62ae68f2012-06-08 12:34:23 -06001222 struct snd_soc_platform *platform = rtd->platform;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001223 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001224 int i, ret;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001225
1226 /* probe the CPU-side component, if it is a CODEC */
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001227 component = rtd->cpu_dai->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001228 if (component->driver->probe_order == order) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001229 ret = soc_probe_component(card, component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001230 if (ret < 0)
1231 return ret;
1232 }
1233
Benoit Cousson88bd8702014-07-08 23:19:34 +02001234 /* probe the CODEC-side components */
1235 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001236 component = rtd->codec_dais[i]->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001237 if (component->driver->probe_order == order) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001238 ret = soc_probe_component(card, component);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001239 if (ret < 0)
1240 return ret;
1241 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001242 }
1243
1244 /* probe the platform */
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001245 if (platform->component.driver->probe_order == order) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001246 ret = soc_probe_component(card, &platform->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001247 if (ret < 0)
1248 return ret;
1249 }
1250
1251 return 0;
1252}
1253
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001254static int soc_probe_dai(struct snd_soc_dai *dai, int order)
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001255{
1256 int ret;
1257
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001258 if (!dai->probed && dai->driver->probe_order == order) {
1259 if (dai->driver->probe) {
1260 ret = dai->driver->probe(dai);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001261 if (ret < 0) {
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001262 dev_err(dai->dev,
1263 "ASoC: failed to probe DAI %s: %d\n",
1264 dai->name, ret);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001265 return ret;
1266 }
1267 }
1268
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001269 dai->probed = 1;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001270 }
1271
1272 return 0;
1273}
1274
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001275static int soc_link_dai_widgets(struct snd_soc_card *card,
1276 struct snd_soc_dai_link *dai_link,
Benoit Cousson3f901a02014-07-01 09:47:54 +02001277 struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001278{
Benoit Cousson3f901a02014-07-01 09:47:54 +02001279 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1280 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001281 struct snd_soc_dapm_widget *play_w, *capture_w;
1282 int ret;
1283
Benoit Cousson88bd8702014-07-08 23:19:34 +02001284 if (rtd->num_codecs > 1)
1285 dev_warn(card->dev, "ASoC: Multiple codecs not supported yet\n");
1286
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001287 /* link the DAI widgets */
1288 play_w = codec_dai->playback_widget;
1289 capture_w = cpu_dai->capture_widget;
1290 if (play_w && capture_w) {
1291 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00001292 dai_link->num_params, capture_w,
1293 play_w);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001294 if (ret != 0) {
1295 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1296 play_w->name, capture_w->name, ret);
1297 return ret;
1298 }
1299 }
1300
1301 play_w = cpu_dai->playback_widget;
1302 capture_w = codec_dai->capture_widget;
1303 if (play_w && capture_w) {
1304 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00001305 dai_link->num_params, capture_w,
1306 play_w);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001307 if (ret != 0) {
1308 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1309 play_w->name, capture_w->name, ret);
1310 return ret;
1311 }
1312 }
1313
1314 return 0;
1315}
1316
Stephen Warren62ae68f2012-06-08 12:34:23 -06001317static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001318{
1319 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1320 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownc74184e2012-04-04 22:12:09 +01001321 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001322 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001323
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001324 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Liam Girdwood0168bf02011-06-07 16:08:05 +01001325 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001326
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001327 /* set default power off timeout */
1328 rtd->pmdown_time = pmdown_time;
1329
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001330 ret = soc_probe_dai(cpu_dai, order);
1331 if (ret)
1332 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001333
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001334 /* probe the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001335 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001336 ret = soc_probe_dai(rtd->codec_dais[i], order);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001337 if (ret)
1338 return ret;
1339 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001340
Liam Girdwood0168bf02011-06-07 16:08:05 +01001341 /* complete DAI probe during last probe */
1342 if (order != SND_SOC_COMP_ORDER_LAST)
1343 return 0;
1344
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001345 /* do machine specific initialization */
1346 if (dai_link->init) {
1347 ret = dai_link->init(rtd);
1348 if (ret < 0) {
1349 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1350 dai_link->name, ret);
1351 return ret;
1352 }
1353 }
1354
Kuninori Morimotoa5053a82015-04-10 09:47:00 +00001355 if (dai_link->dai_fmt)
1356 snd_soc_runtime_set_dai_fmt(rtd, dai_link->dai_fmt);
1357
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001358 ret = soc_post_component_init(rtd, dai_link->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001359 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001360 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001361
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001362#ifdef CONFIG_DEBUG_FS
1363 /* add DPCM sysfs entries */
Lars-Peter Clausen2e55b902015-04-09 10:52:37 +02001364 if (dai_link->dynamic)
1365 soc_dpcm_debugfs_add(rtd);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001366#endif
1367
Namarta Kohli1245b702012-08-16 17:10:41 +05301368 if (cpu_dai->driver->compress_dai) {
1369 /*create compress_device"*/
1370 ret = soc_new_compress(rtd, num);
Mark Brownc74184e2012-04-04 22:12:09 +01001371 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001372 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301373 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001374 return ret;
1375 }
1376 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301377
1378 if (!dai_link->params) {
1379 /* create the pcm */
1380 ret = soc_new_pcm(rtd, num);
1381 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001382 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301383 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001384 return ret;
1385 }
Namarta Kohli1245b702012-08-16 17:10:41 +05301386 } else {
Richard Fitzgerald9d58a072013-08-05 13:17:28 +01001387 INIT_DELAYED_WORK(&rtd->delayed_work,
1388 codec2codec_close_delayed_work);
1389
Namarta Kohli1245b702012-08-16 17:10:41 +05301390 /* link the DAI widgets */
Benoit Cousson3f901a02014-07-01 09:47:54 +02001391 ret = soc_link_dai_widgets(card, dai_link, rtd);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001392 if (ret)
1393 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01001394 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001395 }
1396
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001397 return 0;
1398}
1399
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001400static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
Mark Brownb19e6e72012-03-14 21:18:39 +00001401{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001402 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001403 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001404 const char *name = aux_dev->codec_name;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001405
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001406 rtd->component = soc_find_component(aux_dev->codec_of_node, name);
1407 if (!rtd->component) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001408 if (aux_dev->codec_of_node)
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001409 name = of_node_full_name(aux_dev->codec_of_node);
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001410
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001411 dev_err(card->dev, "ASoC: %s not registered\n", name);
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001412 return -EPROBE_DEFER;
1413 }
1414
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001415 /*
1416 * Some places still reference rtd->codec, so we have to keep that
1417 * initialized if the component is a CODEC. Once all those references
1418 * have been removed, this code can be removed as well.
1419 */
1420 rtd->codec = rtd->component->codec;
1421
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001422 return 0;
Mark Brownb19e6e72012-03-14 21:18:39 +00001423}
1424
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001425static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1426{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001427 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001428 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001429 int ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001430
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001431 ret = soc_probe_component(card, rtd->component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001432 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001433 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001434
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001435 /* do machine specific initialization */
1436 if (aux_dev->init) {
Lars-Peter Clausen57bf7722014-08-19 15:51:23 +02001437 ret = aux_dev->init(rtd->component);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001438 if (ret < 0) {
1439 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1440 aux_dev->name, ret);
1441 return ret;
1442 }
1443 }
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001444
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001445 return soc_post_component_init(rtd, aux_dev->name);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001446}
1447
1448static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1449{
1450 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001451 struct snd_soc_component *component = rtd->component;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001452
1453 /* unregister the rtd device */
1454 if (rtd->dev_registered) {
Chuansheng Liud3bf1562012-12-26 00:57:32 +08001455 device_unregister(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001456 rtd->dev_registered = 0;
1457 }
1458
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001459 if (component && component->probed)
1460 soc_remove_component(component);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001461}
1462
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001463static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001464{
1465 int ret;
1466
1467 if (codec->cache_init)
1468 return 0;
1469
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001470 ret = snd_soc_cache_init(codec);
1471 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001472 dev_err(codec->dev,
1473 "ASoC: Failed to set cache compression type: %d\n",
1474 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001475 return ret;
1476 }
1477 codec->cache_init = 1;
1478 return 0;
1479}
1480
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001481/**
1482 * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1483 * @rtd: The runtime for which the DAI link format should be changed
1484 * @dai_fmt: The new DAI link format
1485 *
1486 * This function updates the DAI link format for all DAIs connected to the DAI
1487 * link for the specified runtime.
1488 *
1489 * Note: For setups with a static format set the dai_fmt field in the
1490 * corresponding snd_dai_link struct instead of using this function.
1491 *
1492 * Returns 0 on success, otherwise a negative error code.
1493 */
1494int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
1495 unsigned int dai_fmt)
1496{
1497 struct snd_soc_dai **codec_dais = rtd->codec_dais;
1498 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1499 unsigned int i;
1500 int ret;
1501
1502 for (i = 0; i < rtd->num_codecs; i++) {
1503 struct snd_soc_dai *codec_dai = codec_dais[i];
1504
1505 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1506 if (ret != 0 && ret != -ENOTSUPP) {
1507 dev_warn(codec_dai->dev,
1508 "ASoC: Failed to set DAI format: %d\n", ret);
1509 return ret;
1510 }
1511 }
1512
1513 /* Flip the polarity for the "CPU" end of a CODEC<->CODEC link */
1514 if (cpu_dai->codec) {
1515 unsigned int inv_dai_fmt;
1516
1517 inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
1518 switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1519 case SND_SOC_DAIFMT_CBM_CFM:
1520 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1521 break;
1522 case SND_SOC_DAIFMT_CBM_CFS:
1523 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1524 break;
1525 case SND_SOC_DAIFMT_CBS_CFM:
1526 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1527 break;
1528 case SND_SOC_DAIFMT_CBS_CFS:
1529 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1530 break;
1531 }
1532
1533 dai_fmt = inv_dai_fmt;
1534 }
1535
1536 ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt);
1537 if (ret != 0 && ret != -ENOTSUPP) {
1538 dev_warn(cpu_dai->dev,
1539 "ASoC: Failed to set DAI format: %d\n", ret);
1540 return ret;
1541 }
1542
1543 return 0;
1544}
Lars-Peter Clausenddaca252015-01-08 12:23:05 +01001545EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt);
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001546
Mark Brownb19e6e72012-03-14 21:18:39 +00001547static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001548{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001549 struct snd_soc_codec *codec;
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001550 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001551
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01001552 mutex_lock(&client_mutex);
Liam Girdwood01b9d992012-03-07 10:38:25 +00001553 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001554
Mark Brownb19e6e72012-03-14 21:18:39 +00001555 /* bind DAIs */
1556 for (i = 0; i < card->num_links; i++) {
1557 ret = soc_bind_dai_link(card, i);
1558 if (ret != 0)
1559 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001560 }
1561
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001562 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00001563 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001564 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00001565 if (ret != 0)
1566 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001567 }
1568
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001569 /* initialize the register cache for each available codec */
1570 list_for_each_entry(codec, &codec_list, list) {
1571 if (codec->cache_init)
1572 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001573 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001574 if (ret < 0)
1575 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001576 }
1577
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001578 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01001579 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001580 card->owner, 0, &card->snd_card);
1581 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001582 dev_err(card->dev,
1583 "ASoC: can't create sound card for card %s: %d\n",
1584 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001585 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001586 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001587
Lars-Peter Clausen0757d832015-04-09 10:52:36 +02001588 soc_init_card_debugfs(card);
1589
Mark Browne37a4972011-03-02 18:21:57 +00001590 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1591 card->dapm.dev = card->dev;
1592 card->dapm.card = card;
1593 list_add(&card->dapm.list, &card->dapm_list);
1594
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001595#ifdef CONFIG_DEBUG_FS
1596 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1597#endif
1598
Mark Brown88ee1c62011-02-02 10:43:26 +00001599#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001600 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001601 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001602#endif
Andy Green6ed25972008-06-13 16:24:05 +01001603
Mark Brown9a841eb2011-04-12 17:51:37 -07001604 if (card->dapm_widgets)
1605 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1606 card->num_dapm_widgets);
1607
Nicolin Chenf23e8602015-02-14 17:22:49 -08001608 if (card->of_dapm_widgets)
1609 snd_soc_dapm_new_controls(&card->dapm, card->of_dapm_widgets,
1610 card->num_of_dapm_widgets);
1611
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001612 /* initialise the sound card only once */
1613 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001614 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001615 if (ret < 0)
1616 goto card_probe_error;
1617 }
1618
Stephen Warren62ae68f2012-06-08 12:34:23 -06001619 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001620 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1621 order++) {
1622 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001623 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001624 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001625 dev_err(card->dev,
1626 "ASoC: failed to instantiate card %d\n",
1627 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001628 goto probe_dai_err;
1629 }
1630 }
1631 }
1632
1633 /* probe all DAI links on this card */
1634 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1635 order++) {
1636 for (i = 0; i < card->num_links; i++) {
1637 ret = soc_probe_link_dais(card, i, order);
1638 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001639 dev_err(card->dev,
1640 "ASoC: failed to instantiate card %d\n",
1641 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001642 goto probe_dai_err;
1643 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001644 }
1645 }
1646
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001647 for (i = 0; i < card->num_aux_devs; i++) {
1648 ret = soc_probe_aux_dev(card, i);
1649 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001650 dev_err(card->dev,
1651 "ASoC: failed to add auxiliary devices %d\n",
1652 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001653 goto probe_aux_dev_err;
1654 }
1655 }
1656
Mark Brown888df392012-02-16 19:37:51 -08001657 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00001658 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08001659
Mark Brownb7af1da2011-04-07 19:18:44 +09001660 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001661 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001662
Mark Brownb8ad29d2011-03-02 18:35:51 +00001663 if (card->dapm_routes)
1664 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1665 card->num_dapm_routes);
1666
Nicolin Chenf23e8602015-02-14 17:22:49 -08001667 if (card->of_dapm_routes)
1668 snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes,
1669 card->num_of_dapm_routes);
Mark Brown75d9ac42011-09-27 16:41:01 +01001670
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001671 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001672 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001673 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1674 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001675 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1676 "%s", card->driver_name ? card->driver_name : card->name);
1677 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1678 switch (card->snd_card->driver[i]) {
1679 case '_':
1680 case '-':
1681 case '\0':
1682 break;
1683 default:
1684 if (!isalnum(card->snd_card->driver[i]))
1685 card->snd_card->driver[i] = '_';
1686 break;
1687 }
1688 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001689
Mark Brown28e9ad92011-03-02 18:36:34 +00001690 if (card->late_probe) {
1691 ret = card->late_probe(card);
1692 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001693 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001694 card->name, ret);
1695 goto probe_aux_dev_err;
1696 }
1697 }
1698
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001699 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001700
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001701 ret = snd_card_register(card->snd_card);
1702 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001703 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1704 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001705 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001706 }
1707
Mark Brown435c5e22008-12-04 15:32:53 +00001708 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001709 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001710 mutex_unlock(&card->mutex);
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01001711 mutex_unlock(&client_mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001712
1713 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001714
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001715probe_aux_dev_err:
1716 for (i = 0; i < card->num_aux_devs; i++)
1717 soc_remove_aux_dev(card, i);
1718
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001719probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001720 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001721
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001722card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001723 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001724 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001725
Lars-Peter Clausen0757d832015-04-09 10:52:36 +02001726 soc_cleanup_card_debugfs(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001727 snd_card_free(card->snd_card);
1728
Mark Brownb19e6e72012-03-14 21:18:39 +00001729base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001730 mutex_unlock(&card->mutex);
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01001731 mutex_unlock(&client_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001732
Mark Brownb19e6e72012-03-14 21:18:39 +00001733 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001734}
1735
1736/* probes a new socdev */
1737static int soc_probe(struct platform_device *pdev)
1738{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001739 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001740
Vinod Koul70a7ca32011-01-14 19:22:48 +05301741 /*
1742 * no card, so machine driver should be registering card
1743 * we should not be here in that case so ret error
1744 */
1745 if (!card)
1746 return -EINVAL;
1747
Mark Brownfe4085e2012-03-02 13:07:41 +00001748 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001749 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001750 card->name);
1751
Mark Brown435c5e22008-12-04 15:32:53 +00001752 /* Bodge while we unpick instantiation */
1753 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001754
Mark Brown28d528c2012-08-09 18:45:23 +01001755 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001756}
1757
Vinod Koulb0e26482011-01-13 22:48:02 +05301758static int soc_cleanup_card_resources(struct snd_soc_card *card)
1759{
Vinod Koulb0e26482011-01-13 22:48:02 +05301760 int i;
1761
1762 /* make sure any delayed work runs */
1763 for (i = 0; i < card->num_rtd; i++) {
1764 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001765 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301766 }
1767
1768 /* remove auxiliary devices */
1769 for (i = 0; i < card->num_aux_devs; i++)
1770 soc_remove_aux_dev(card, i);
1771
1772 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001773 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301774
1775 soc_cleanup_card_debugfs(card);
1776
1777 /* remove the card */
1778 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001779 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301780
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001781 snd_soc_dapm_free(&card->dapm);
1782
Vinod Koulb0e26482011-01-13 22:48:02 +05301783 snd_card_free(card->snd_card);
1784 return 0;
1785
1786}
1787
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001788/* removes a socdev */
1789static int soc_remove(struct platform_device *pdev)
1790{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001791 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001792
Mark Brownc5af3a22008-11-28 13:29:45 +00001793 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001794 return 0;
1795}
1796
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001797int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001798{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001799 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001800 int i;
Mark Brown51737472009-06-22 13:16:51 +01001801
1802 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001803 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001804
1805 /* Flush out pmdown_time work - we actually do want to run it
1806 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001807 for (i = 0; i < card->num_rtd; i++) {
1808 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001809 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001810 }
Mark Brown51737472009-06-22 13:16:51 +01001811
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001812 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001813
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001814 /* deactivate pins to sleep state */
1815 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001816 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1817 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1818 int j;
1819
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001820 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001821 for (j = 0; j < rtd->num_codecs; j++) {
1822 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
1823 pinctrl_pm_select_sleep_state(codec_dai->dev);
1824 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001825 }
1826
Mark Brown416356f2009-06-30 19:05:15 +01001827 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001828}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001829EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001830
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001831const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301832 .suspend = snd_soc_suspend,
1833 .resume = snd_soc_resume,
1834 .freeze = snd_soc_suspend,
1835 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001836 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301837 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001838};
Stephen Warrendeb26072011-04-05 19:35:30 -06001839EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001840
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001841/* ASoC platform driver */
1842static struct platform_driver soc_driver = {
1843 .driver = {
1844 .name = "soc-audio",
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001845 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001846 },
1847 .probe = soc_probe,
1848 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001849};
1850
Mark Brown096e49d2009-07-05 15:12:22 +01001851/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001852 * snd_soc_cnew - create new control
1853 * @_template: control template
1854 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001855 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001856 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001857 *
1858 * Create a new mixer control from a template control.
1859 *
1860 * Returns 0 for success, else error.
1861 */
1862struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08001863 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00001864 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001865{
1866 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001867 struct snd_kcontrol *kcontrol;
1868 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001869
1870 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001871 template.index = 0;
1872
Mark Brownefb7ac32011-03-08 17:23:24 +00001873 if (!long_name)
1874 long_name = template.name;
1875
1876 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02001877 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00001878 if (!name)
1879 return NULL;
1880
Mark Brownefb7ac32011-03-08 17:23:24 +00001881 template.name = name;
1882 } else {
1883 template.name = long_name;
1884 }
1885
1886 kcontrol = snd_ctl_new1(&template, data);
1887
1888 kfree(name);
1889
1890 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001891}
1892EXPORT_SYMBOL_GPL(snd_soc_cnew);
1893
Liam Girdwood022658b2012-02-03 17:43:09 +00001894static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
1895 const struct snd_kcontrol_new *controls, int num_controls,
1896 const char *prefix, void *data)
1897{
1898 int err, i;
1899
1900 for (i = 0; i < num_controls; i++) {
1901 const struct snd_kcontrol_new *control = &controls[i];
1902 err = snd_ctl_add(card, snd_soc_cnew(control, data,
1903 control->name, prefix));
1904 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001905 dev_err(dev, "ASoC: Failed to add %s: %d\n",
1906 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00001907 return err;
1908 }
1909 }
1910
1911 return 0;
1912}
1913
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01001914struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
1915 const char *name)
1916{
1917 struct snd_card *card = soc_card->snd_card;
1918 struct snd_kcontrol *kctl;
1919
1920 if (unlikely(!name))
1921 return NULL;
1922
1923 list_for_each_entry(kctl, &card->controls, list)
1924 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
1925 return kctl;
1926 return NULL;
1927}
1928EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
1929
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001930/**
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001931 * snd_soc_add_component_controls - Add an array of controls to a component.
1932 *
1933 * @component: Component to add controls to
1934 * @controls: Array of controls to add
1935 * @num_controls: Number of elements in the array
1936 *
1937 * Return: 0 for success, else error.
1938 */
1939int snd_soc_add_component_controls(struct snd_soc_component *component,
1940 const struct snd_kcontrol_new *controls, unsigned int num_controls)
1941{
1942 struct snd_card *card = component->card->snd_card;
1943
1944 return snd_soc_add_controls(card, component->dev, controls,
1945 num_controls, component->name_prefix, component);
1946}
1947EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
1948
1949/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001950 * snd_soc_add_codec_controls - add an array of controls to a codec.
1951 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00001952 * duplicating this code.
1953 *
1954 * @codec: codec to add controls to
1955 * @controls: array of controls to add
1956 * @num_controls: number of elements in the array
1957 *
1958 * Return 0 for success, else error.
1959 */
Liam Girdwood022658b2012-02-03 17:43:09 +00001960int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001961 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Ian Molton3e8e1952009-01-09 00:23:21 +00001962{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001963 return snd_soc_add_component_controls(&codec->component, controls,
1964 num_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001965}
Liam Girdwood022658b2012-02-03 17:43:09 +00001966EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001967
1968/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001969 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00001970 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001971 *
1972 * @platform: platform to add controls to
1973 * @controls: array of controls to add
1974 * @num_controls: number of elements in the array
1975 *
1976 * Return 0 for success, else error.
1977 */
1978int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001979 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001980{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001981 return snd_soc_add_component_controls(&platform->component, controls,
1982 num_controls);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001983}
1984EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
1985
1986/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001987 * snd_soc_add_card_controls - add an array of controls to a SoC card.
1988 * Convenience function to add a list of controls.
1989 *
1990 * @soc_card: SoC card to add controls to
1991 * @controls: array of controls to add
1992 * @num_controls: number of elements in the array
1993 *
1994 * Return 0 for success, else error.
1995 */
1996int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
1997 const struct snd_kcontrol_new *controls, int num_controls)
1998{
1999 struct snd_card *card = soc_card->snd_card;
2000
2001 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2002 NULL, soc_card);
2003}
2004EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2005
2006/**
2007 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2008 * Convienience function to add a list of controls.
2009 *
2010 * @dai: DAI to add controls to
2011 * @controls: array of controls to add
2012 * @num_controls: number of elements in the array
2013 *
2014 * Return 0 for success, else error.
2015 */
2016int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2017 const struct snd_kcontrol_new *controls, int num_controls)
2018{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01002019 struct snd_card *card = dai->component->card->snd_card;
Liam Girdwood022658b2012-02-03 17:43:09 +00002020
2021 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2022 NULL, dai);
2023}
2024EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2025
2026/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002027 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2028 * @dai: DAI
2029 * @clk_id: DAI specific clock ID
2030 * @freq: new clock frequency in Hz
2031 * @dir: new clock direction - input/output.
2032 *
2033 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2034 */
2035int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2036 unsigned int freq, int dir)
2037{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002038 if (dai->driver && dai->driver->ops->set_sysclk)
2039 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002040 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002041 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00002042 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002043 else
Mark Brown1104a9c2014-01-15 19:04:19 +00002044 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002045}
2046EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2047
2048/**
Mark Brownec4ee522011-03-07 20:58:11 +00002049 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2050 * @codec: CODEC
2051 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01002052 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00002053 * @freq: new clock frequency in Hz
2054 * @dir: new clock direction - input/output.
2055 *
2056 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2057 */
2058int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01002059 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00002060{
2061 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002062 return codec->driver->set_sysclk(codec, clk_id, source,
2063 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002064 else
Mark Brown1104a9c2014-01-15 19:04:19 +00002065 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00002066}
2067EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2068
2069/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002070 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2071 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002072 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002073 * @div: new clock divisor.
2074 *
2075 * Configures the clock dividers. This is used to derive the best DAI bit and
2076 * frame clocks from the system or master clock. It's best to set the DAI bit
2077 * and frame clocks as low as possible to save system power.
2078 */
2079int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2080 int div_id, int div)
2081{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002082 if (dai->driver && dai->driver->ops->set_clkdiv)
2083 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002084 else
2085 return -EINVAL;
2086}
2087EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2088
2089/**
2090 * snd_soc_dai_set_pll - configure DAI PLL.
2091 * @dai: DAI
2092 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002093 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002094 * @freq_in: PLL input clock frequency in Hz
2095 * @freq_out: requested PLL output clock frequency in Hz
2096 *
2097 * Configures and enables PLL to generate output clock based on input clock.
2098 */
Mark Brown85488032009-09-05 18:52:16 +01002099int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2100 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002101{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002102 if (dai->driver && dai->driver->ops->set_pll)
2103 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002104 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002105 else if (dai->codec && dai->codec->driver->set_pll)
2106 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2107 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002108 else
2109 return -EINVAL;
2110}
2111EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2112
Mark Brownec4ee522011-03-07 20:58:11 +00002113/*
2114 * snd_soc_codec_set_pll - configure codec PLL.
2115 * @codec: CODEC
2116 * @pll_id: DAI specific PLL ID
2117 * @source: DAI specific source for the PLL
2118 * @freq_in: PLL input clock frequency in Hz
2119 * @freq_out: requested PLL output clock frequency in Hz
2120 *
2121 * Configures and enables PLL to generate output clock based on input clock.
2122 */
2123int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2124 unsigned int freq_in, unsigned int freq_out)
2125{
2126 if (codec->driver->set_pll)
2127 return codec->driver->set_pll(codec, pll_id, source,
2128 freq_in, freq_out);
2129 else
2130 return -EINVAL;
2131}
2132EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2133
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002134/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01002135 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2136 * @dai: DAI
2137 * @ratio Ratio of BCLK to Sample rate.
2138 *
2139 * Configures the DAI for a preset BCLK to sample rate ratio.
2140 */
2141int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2142{
2143 if (dai->driver && dai->driver->ops->set_bclk_ratio)
2144 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2145 else
2146 return -EINVAL;
2147}
2148EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2149
2150/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002151 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2152 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002153 * @fmt: SND_SOC_DAIFMT_ format value.
2154 *
2155 * Configures the DAI hardware format and clocking.
2156 */
2157int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2158{
Shawn Guo5e4ba562012-03-09 00:59:40 +08002159 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002160 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08002161 if (dai->driver->ops->set_fmt == NULL)
2162 return -ENOTSUPP;
2163 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002164}
2165EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2166
2167/**
Xiubo Lie5c21512014-03-21 14:17:12 +08002168 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08002169 * @slots: Number of slots in use.
2170 * @tx_mask: bitmask representing active TX slots.
2171 * @rx_mask: bitmask representing active RX slots.
2172 *
2173 * Generates the TDM tx and rx slot default masks for DAI.
2174 */
Xiubo Lie5c21512014-03-21 14:17:12 +08002175static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002176 unsigned int *tx_mask,
2177 unsigned int *rx_mask)
2178{
2179 if (*tx_mask || *rx_mask)
2180 return 0;
2181
2182 if (!slots)
2183 return -EINVAL;
2184
2185 *tx_mask = (1 << slots) - 1;
2186 *rx_mask = (1 << slots) - 1;
2187
2188 return 0;
2189}
2190
2191/**
Lars-Peter Clausene46c9362015-01-12 10:27:20 +01002192 * snd_soc_dai_set_tdm_slot() - Configures a DAI for TDM operation
2193 * @dai: The DAI to configure
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002194 * @tx_mask: bitmask representing active TX slots.
2195 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002196 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002197 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002198 *
Lars-Peter Clausene46c9362015-01-12 10:27:20 +01002199 * This function configures the specified DAI for TDM operation. @slot contains
2200 * the total number of slots of the TDM stream and @slot_with the width of each
2201 * slot in bit clock cycles. @tx_mask and @rx_mask are bitmasks specifying the
2202 * active slots of the TDM stream for the specified DAI, i.e. which slots the
2203 * DAI should write to or read from. If a bit is set the corresponding slot is
2204 * active, if a bit is cleared the corresponding slot is inactive. Bit 0 maps to
2205 * the first slot, bit 1 to the second slot and so on. The first active slot
2206 * maps to the first channel of the DAI, the second active slot to the second
2207 * channel and so on.
2208 *
2209 * TDM mode can be disabled by passing 0 for @slots. In this case @tx_mask,
2210 * @rx_mask and @slot_width will be ignored.
2211 *
2212 * Returns 0 on success, a negative error code otherwise.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002213 */
2214int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002215 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002216{
Xiubo Lie5c21512014-03-21 14:17:12 +08002217 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
2218 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002219 &tx_mask, &rx_mask);
2220 else
Xiubo Lie5c21512014-03-21 14:17:12 +08002221 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08002222
Benoit Cousson88bd8702014-07-08 23:19:34 +02002223 dai->tx_mask = tx_mask;
2224 dai->rx_mask = rx_mask;
2225
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002226 if (dai->driver && dai->driver->ops->set_tdm_slot)
2227 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002228 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002229 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08002230 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002231}
2232EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2233
2234/**
Barry Song472df3c2009-09-12 01:16:29 +08002235 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2236 * @dai: DAI
2237 * @tx_num: how many TX channels
2238 * @tx_slot: pointer to an array which imply the TX slot number channel
2239 * 0~num-1 uses
2240 * @rx_num: how many RX channels
2241 * @rx_slot: pointer to an array which imply the RX slot number channel
2242 * 0~num-1 uses
2243 *
2244 * configure the relationship between channel number and TDM slot number.
2245 */
2246int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2247 unsigned int tx_num, unsigned int *tx_slot,
2248 unsigned int rx_num, unsigned int *rx_slot)
2249{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002250 if (dai->driver && dai->driver->ops->set_channel_map)
2251 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002252 rx_num, rx_slot);
2253 else
2254 return -EINVAL;
2255}
2256EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2257
2258/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002259 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2260 * @dai: DAI
2261 * @tristate: tristate enable
2262 *
2263 * Tristates the DAI so that others can use it.
2264 */
2265int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2266{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002267 if (dai->driver && dai->driver->ops->set_tristate)
2268 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002269 else
2270 return -EINVAL;
2271}
2272EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2273
2274/**
2275 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2276 * @dai: DAI
2277 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00002278 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002279 *
2280 * Mutes the DAI DAC.
2281 */
Mark Brownda183962013-02-06 15:44:07 +00002282int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2283 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002284{
Mark Brownda183962013-02-06 15:44:07 +00002285 if (!dai->driver)
2286 return -ENOTSUPP;
2287
2288 if (dai->driver->ops->mute_stream)
2289 return dai->driver->ops->mute_stream(dai, mute, direction);
2290 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2291 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002292 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002293 else
Mark Brown04570c62012-04-13 19:16:03 +01002294 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002295}
2296EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2297
Benoit Cousson88bd8702014-07-08 23:19:34 +02002298static int snd_soc_init_multicodec(struct snd_soc_card *card,
2299 struct snd_soc_dai_link *dai_link)
2300{
2301 /* Legacy codec/codec_dai link is a single entry in multicodec */
2302 if (dai_link->codec_name || dai_link->codec_of_node ||
2303 dai_link->codec_dai_name) {
2304 dai_link->num_codecs = 1;
2305
2306 dai_link->codecs = devm_kzalloc(card->dev,
2307 sizeof(struct snd_soc_dai_link_component),
2308 GFP_KERNEL);
2309 if (!dai_link->codecs)
2310 return -ENOMEM;
2311
2312 dai_link->codecs[0].name = dai_link->codec_name;
2313 dai_link->codecs[0].of_node = dai_link->codec_of_node;
2314 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
2315 }
2316
2317 if (!dai_link->codecs) {
2318 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
2319 return -EINVAL;
2320 }
2321
2322 return 0;
2323}
2324
Mark Brownc5af3a22008-11-28 13:29:45 +00002325/**
2326 * snd_soc_register_card - Register a card with the ASoC core
2327 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002328 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002329 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002330 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302331int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002332{
Benoit Cousson88bd8702014-07-08 23:19:34 +02002333 int i, j, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002334
Mark Brownc5af3a22008-11-28 13:29:45 +00002335 if (!card->name || !card->dev)
2336 return -EINVAL;
2337
Stephen Warren5a504962011-12-21 10:40:59 -07002338 for (i = 0; i < card->num_links; i++) {
2339 struct snd_soc_dai_link *link = &card->dai_link[i];
2340
Benoit Cousson88bd8702014-07-08 23:19:34 +02002341 ret = snd_soc_init_multicodec(card, link);
2342 if (ret) {
2343 dev_err(card->dev, "ASoC: failed to init multicodec\n");
2344 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07002345 }
Benoit Cousson88bd8702014-07-08 23:19:34 +02002346
2347 for (j = 0; j < link->num_codecs; j++) {
2348 /*
2349 * Codec must be specified by 1 of name or OF node,
2350 * not both or neither.
2351 */
2352 if (!!link->codecs[j].name ==
2353 !!link->codecs[j].of_node) {
2354 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
2355 link->name);
2356 return -EINVAL;
2357 }
2358 /* Codec DAI name must be specified */
2359 if (!link->codecs[j].dai_name) {
2360 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
2361 link->name);
2362 return -EINVAL;
2363 }
Stephen Warrenbc926572012-05-25 18:22:11 -06002364 }
Stephen Warren5a504962011-12-21 10:40:59 -07002365
2366 /*
2367 * Platform may be specified by either name or OF node, but
2368 * can be left unspecified, and a dummy platform will be used.
2369 */
2370 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002371 dev_err(card->dev,
2372 "ASoC: Both platform name/of_node are set for %s\n",
2373 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002374 return -EINVAL;
2375 }
2376
2377 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06002378 * CPU device may be specified by either name or OF node, but
2379 * can be left unspecified, and will be matched based on DAI
2380 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07002381 */
Stephen Warrenbc926572012-05-25 18:22:11 -06002382 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002383 dev_err(card->dev,
2384 "ASoC: Neither/both cpu name/of_node are set for %s\n",
2385 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06002386 return -EINVAL;
2387 }
2388 /*
2389 * At least one of CPU DAI name or CPU device name/node must be
2390 * specified
2391 */
2392 if (!link->cpu_dai_name &&
2393 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002394 dev_err(card->dev,
2395 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
2396 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002397 return -EINVAL;
2398 }
2399 }
2400
Mark Browned77cc12011-05-03 18:25:34 +01002401 dev_set_drvdata(card->dev, card);
2402
Stephen Warren111c6412011-01-28 14:26:35 -07002403 snd_soc_initialize_card_lists(card);
2404
Mark Brown181a6892012-03-14 20:18:49 +00002405 card->rtd = devm_kzalloc(card->dev,
2406 sizeof(struct snd_soc_pcm_runtime) *
2407 (card->num_links + card->num_aux_devs),
2408 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002409 if (card->rtd == NULL)
2410 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01002411 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002412 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002413
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002414 for (i = 0; i < card->num_links; i++) {
2415 card->rtd[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002416 card->rtd[i].dai_link = &card->dai_link[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02002417 card->rtd[i].codec_dais = devm_kzalloc(card->dev,
2418 sizeof(struct snd_soc_dai *) *
2419 (card->rtd[i].dai_link->num_codecs),
2420 GFP_KERNEL);
2421 if (card->rtd[i].codec_dais == NULL)
2422 return -ENOMEM;
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002423 }
2424
2425 for (i = 0; i < card->num_aux_devs; i++)
2426 card->rtd_aux[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002427
Mark Browndb432b42011-10-03 21:06:40 +01002428 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00002429 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002430 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002431 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002432
Mark Brownb19e6e72012-03-14 21:18:39 +00002433 ret = snd_soc_instantiate_card(card);
2434 if (ret != 0)
Kuninori Morimoto4e2576b2015-03-24 09:01:00 +00002435 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00002436
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002437 /* deactivate pins to sleep state */
2438 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002439 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2440 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2441 int j;
2442
2443 for (j = 0; j < rtd->num_codecs; j++) {
2444 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2445 if (!codec_dai->active)
2446 pinctrl_pm_select_sleep_state(codec_dai->dev);
2447 }
2448
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002449 if (!cpu_dai->active)
2450 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2451 }
2452
Mark Brownb19e6e72012-03-14 21:18:39 +00002453 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00002454}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302455EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002456
2457/**
2458 * snd_soc_unregister_card - Unregister a card with the ASoC core
2459 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002460 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002461 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002462 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302463int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002464{
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002465 if (card->instantiated) {
2466 card->instantiated = false;
Lars-Peter Clausen1c325f72014-09-04 19:44:05 +02002467 snd_soc_dapm_shutdown(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302468 soc_cleanup_card_resources(card);
Kuninori Morimoto8f6f9b22015-02-05 05:34:10 +00002469 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002470 }
Mark Brownc5af3a22008-11-28 13:29:45 +00002471
2472 return 0;
2473}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302474EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002475
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002476/*
2477 * Simplify DAI link configuration by removing ".-1" from device names
2478 * and sanitizing names.
2479 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002480static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002481{
2482 char *found, name[NAME_SIZE];
2483 int id1, id2;
2484
2485 if (dev_name(dev) == NULL)
2486 return NULL;
2487
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002488 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002489
2490 /* are we a "%s.%d" name (platform and SPI components) */
2491 found = strstr(name, dev->driver->name);
2492 if (found) {
2493 /* get ID */
2494 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2495
2496 /* discard ID from name if ID == -1 */
2497 if (*id == -1)
2498 found[strlen(dev->driver->name)] = '\0';
2499 }
2500
2501 } else {
2502 /* I2C component devices are named "bus-addr" */
2503 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2504 char tmp[NAME_SIZE];
2505
2506 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002507 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002508
2509 /* sanitize component name for DAI link creation */
2510 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002511 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002512 } else
2513 *id = 0;
2514 }
2515
2516 return kstrdup(name, GFP_KERNEL);
2517}
2518
2519/*
2520 * Simplify DAI link naming for single devices with multiple DAIs by removing
2521 * any ".-1" and using the DAI name (instead of device name).
2522 */
2523static inline char *fmt_multiple_name(struct device *dev,
2524 struct snd_soc_dai_driver *dai_drv)
2525{
2526 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002527 dev_err(dev,
2528 "ASoC: error - multiple DAI %s registered with no name\n",
2529 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002530 return NULL;
2531 }
2532
2533 return kstrdup(dai_drv->name, GFP_KERNEL);
2534}
2535
Mark Brown91151712008-11-30 23:31:24 +00002536/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002537 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002538 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002539 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00002540 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002541static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00002542{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002543 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00002544
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002545 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002546 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2547 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002548 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002549 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002550 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002551 }
Mark Brown91151712008-11-30 23:31:24 +00002552}
Mark Brown91151712008-11-30 23:31:24 +00002553
2554/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002555 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002556 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002557 * @component: The component the DAIs are registered for
2558 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00002559 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002560 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
2561 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00002562 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002563static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002564 struct snd_soc_dai_driver *dai_drv, size_t count,
2565 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00002566{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002567 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002568 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002569 unsigned int i;
2570 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002571
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002572 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00002573
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002574 component->dai_drv = dai_drv;
2575 component->num_dai = count;
2576
Mark Brown91151712008-11-30 23:31:24 +00002577 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002578
2579 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08002580 if (dai == NULL) {
2581 ret = -ENOMEM;
2582 goto err;
2583 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002584
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002585 /*
2586 * Back in the old days when we still had component-less DAIs,
2587 * instead of having a static name, component-less DAIs would
2588 * inherit the name of the parent device so it is possible to
2589 * register multiple instances of the DAI. We still need to keep
2590 * the same naming style even though those DAIs are not
2591 * component-less anymore.
2592 */
Srinivas Kandagatla9e498082015-05-15 10:38:27 +01002593 if (count == 1 && legacy_dai_naming &&
2594 (dai_drv[i].id == 0 || dai_drv[i].name == NULL)) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002595 dai->name = fmt_single_name(dev, &dai->id);
2596 } else {
2597 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
2598 if (dai_drv[i].id)
2599 dai->id = dai_drv[i].id;
2600 else
2601 dai->id = i;
2602 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002603 if (dai->name == NULL) {
2604 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002605 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00002606 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002607 }
2608
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002609 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002610 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002611 dai->driver = &dai_drv[i];
2612 if (!dai->driver->ops)
2613 dai->driver->ops = &null_dai_ops;
2614
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01002615 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01002616
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002617 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00002618 }
2619
2620 return 0;
2621
2622err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002623 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00002624
2625 return ret;
2626}
Mark Brown91151712008-11-30 23:31:24 +00002627
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002628static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
2629 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002630{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002631 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002632
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002633 component->driver->seq_notifier(component, type, subseq);
2634}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002635
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002636static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
2637 int event)
2638{
2639 struct snd_soc_component *component = dapm->component;
2640
2641 return component->driver->stream_event(component, event);
2642}
2643
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002644static int snd_soc_component_initialize(struct snd_soc_component *component,
2645 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002646{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002647 struct snd_soc_dapm_context *dapm;
2648
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002649 component->name = fmt_single_name(dev, &component->id);
2650 if (!component->name) {
2651 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002652 return -ENOMEM;
2653 }
2654
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002655 component->dev = dev;
2656 component->driver = driver;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002657 component->probe = component->driver->probe;
2658 component->remove = component->driver->remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002659
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002660 if (!component->dapm_ptr)
2661 component->dapm_ptr = &component->dapm;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002662
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002663 dapm = component->dapm_ptr;
2664 dapm->dev = dev;
2665 dapm->component = component;
2666 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02002667 dapm->idle_bias_off = true;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002668 if (driver->seq_notifier)
2669 dapm->seq_notifier = snd_soc_component_seq_notifier;
2670 if (driver->stream_event)
2671 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002672
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002673 component->controls = driver->controls;
2674 component->num_controls = driver->num_controls;
2675 component->dapm_widgets = driver->dapm_widgets;
2676 component->num_dapm_widgets = driver->num_dapm_widgets;
2677 component->dapm_routes = driver->dapm_routes;
2678 component->num_dapm_routes = driver->num_dapm_routes;
2679
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002680 INIT_LIST_HEAD(&component->dai_list);
2681 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002682
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002683 return 0;
2684}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002685
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002686static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002687{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002688 int val_bytes = regmap_get_val_bytes(component->regmap);
2689
2690 /* Errors are legitimate for non-integer byte multiples */
2691 if (val_bytes > 0)
2692 component->val_bytes = val_bytes;
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002693}
2694
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002695#ifdef CONFIG_REGMAP
2696
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002697/**
2698 * snd_soc_component_init_regmap() - Initialize regmap instance for the component
2699 * @component: The component for which to initialize the regmap instance
2700 * @regmap: The regmap instance that should be used by the component
2701 *
2702 * This function allows deferred assignment of the regmap instance that is
2703 * associated with the component. Only use this if the regmap instance is not
2704 * yet ready when the component is registered. The function must also be called
2705 * before the first IO attempt of the component.
2706 */
2707void snd_soc_component_init_regmap(struct snd_soc_component *component,
2708 struct regmap *regmap)
2709{
2710 component->regmap = regmap;
2711 snd_soc_component_setup_regmap(component);
2712}
2713EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
2714
2715/**
2716 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the component
2717 * @component: The component for which to de-initialize the regmap instance
2718 *
2719 * Calls regmap_exit() on the regmap instance associated to the component and
2720 * removes the regmap instance from the component.
2721 *
2722 * This function should only be used if snd_soc_component_init_regmap() was used
2723 * to initialize the regmap instance.
2724 */
2725void snd_soc_component_exit_regmap(struct snd_soc_component *component)
2726{
2727 regmap_exit(component->regmap);
2728 component->regmap = NULL;
2729}
2730EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
2731
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002732#endif
2733
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002734static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
2735{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002736 if (!component->write && !component->read) {
2737 if (!component->regmap)
2738 component->regmap = dev_get_regmap(component->dev, NULL);
2739 if (component->regmap)
2740 snd_soc_component_setup_regmap(component);
2741 }
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002742
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002743 list_add(&component->list, &component_list);
2744}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002745
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002746static void snd_soc_component_add(struct snd_soc_component *component)
2747{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002748 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002749 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002750 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002751}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002752
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002753static void snd_soc_component_cleanup(struct snd_soc_component *component)
2754{
2755 snd_soc_unregister_dais(component);
2756 kfree(component->name);
2757}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002758
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002759static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
2760{
2761 list_del(&component->list);
2762}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002763
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002764int snd_soc_register_component(struct device *dev,
2765 const struct snd_soc_component_driver *cmpnt_drv,
2766 struct snd_soc_dai_driver *dai_drv,
2767 int num_dai)
2768{
2769 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002770 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002771
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002772 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002773 if (!cmpnt) {
2774 dev_err(dev, "ASoC: Failed to allocate memory\n");
2775 return -ENOMEM;
2776 }
2777
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002778 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
2779 if (ret)
2780 goto err_free;
2781
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002782 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002783 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002784
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002785 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
2786 if (ret < 0) {
Masanari Iidaf42cf8d2015-02-24 23:11:26 +09002787 dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002788 goto err_cleanup;
2789 }
2790
2791 snd_soc_component_add(cmpnt);
2792
2793 return 0;
2794
2795err_cleanup:
2796 snd_soc_component_cleanup(cmpnt);
2797err_free:
2798 kfree(cmpnt);
2799 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002800}
2801EXPORT_SYMBOL_GPL(snd_soc_register_component);
2802
2803/**
2804 * snd_soc_unregister_component - Unregister a component from the ASoC core
2805 *
2806 */
2807void snd_soc_unregister_component(struct device *dev)
2808{
2809 struct snd_soc_component *cmpnt;
2810
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002811 mutex_lock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002812 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002813 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002814 goto found;
2815 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002816 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002817 return;
2818
2819found:
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002820 snd_soc_component_del_unlocked(cmpnt);
2821 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002822 snd_soc_component_cleanup(cmpnt);
2823 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002824}
2825EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
2826
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002827static int snd_soc_platform_drv_probe(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002828{
2829 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2830
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002831 return platform->driver->probe(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002832}
2833
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002834static void snd_soc_platform_drv_remove(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002835{
2836 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2837
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002838 platform->driver->remove(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002839}
2840
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002841/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002842 * snd_soc_add_platform - Add a platform to the ASoC core
2843 * @dev: The parent device for the platform
2844 * @platform: The platform to add
2845 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00002846 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002847int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01002848 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002849{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002850 int ret;
2851
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002852 ret = snd_soc_component_initialize(&platform->component,
2853 &platform_drv->component_driver, dev);
2854 if (ret)
2855 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002856
2857 platform->dev = dev;
2858 platform->driver = platform_drv;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002859
2860 if (platform_drv->probe)
2861 platform->component.probe = snd_soc_platform_drv_probe;
2862 if (platform_drv->remove)
2863 platform->component.remove = snd_soc_platform_drv_remove;
Mark Brown12a48a8c2008-12-03 19:40:30 +00002864
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02002865#ifdef CONFIG_DEBUG_FS
2866 platform->component.debugfs_prefix = "platform";
2867#endif
Mark Brown12a48a8c2008-12-03 19:40:30 +00002868
2869 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002870 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002871 list_add(&platform->list, &platform_list);
2872 mutex_unlock(&client_mutex);
2873
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002874 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
2875 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002876
2877 return 0;
2878}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002879EXPORT_SYMBOL_GPL(snd_soc_add_platform);
2880
2881/**
2882 * snd_soc_register_platform - Register a platform with the ASoC core
2883 *
2884 * @platform: platform to register
2885 */
2886int snd_soc_register_platform(struct device *dev,
2887 const struct snd_soc_platform_driver *platform_drv)
2888{
2889 struct snd_soc_platform *platform;
2890 int ret;
2891
2892 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
2893
2894 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
2895 if (platform == NULL)
2896 return -ENOMEM;
2897
2898 ret = snd_soc_add_platform(dev, platform, platform_drv);
2899 if (ret)
2900 kfree(platform);
2901
2902 return ret;
2903}
Mark Brown12a48a8c2008-12-03 19:40:30 +00002904EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2905
2906/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002907 * snd_soc_remove_platform - Remove a platform from the ASoC core
2908 * @platform: the platform to remove
2909 */
2910void snd_soc_remove_platform(struct snd_soc_platform *platform)
2911{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002912
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002913 mutex_lock(&client_mutex);
2914 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002915 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002916 mutex_unlock(&client_mutex);
2917
2918 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002919 platform->component.name);
Daniel Mackdecc27b2014-10-07 13:41:23 +02002920
2921 snd_soc_component_cleanup(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002922}
2923EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
2924
2925struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
2926{
2927 struct snd_soc_platform *platform;
2928
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002929 mutex_lock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002930 list_for_each_entry(platform, &platform_list, list) {
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002931 if (dev == platform->dev) {
2932 mutex_unlock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002933 return platform;
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002934 }
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002935 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01002936 mutex_unlock(&client_mutex);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002937
2938 return NULL;
2939}
2940EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
2941
2942/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00002943 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2944 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002945 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002946 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002947void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002948{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002949 struct snd_soc_platform *platform;
2950
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002951 platform = snd_soc_lookup_platform(dev);
2952 if (!platform)
2953 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002954
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002955 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002956 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002957}
2958EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2959
Mark Brown151ab222009-05-09 16:22:58 +01002960static u64 codec_format_map[] = {
2961 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2962 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2963 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2964 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2965 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2966 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2967 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2968 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2969 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2970 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2971 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2972 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2973 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2974 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2975 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2976 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2977};
2978
2979/* Fix up the DAI formats for endianness: codecs don't actually see
2980 * the endianness of the data but we're using the CPU format
2981 * definitions which do need to include endianness so we ensure that
2982 * codec DAIs always have both big and little endian variants set.
2983 */
2984static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2985{
2986 int i;
2987
2988 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2989 if (stream->formats & codec_format_map[i])
2990 stream->formats |= codec_format_map[i];
2991}
2992
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002993static int snd_soc_codec_drv_probe(struct snd_soc_component *component)
2994{
2995 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2996
2997 return codec->driver->probe(codec);
2998}
2999
3000static void snd_soc_codec_drv_remove(struct snd_soc_component *component)
3001{
3002 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3003
3004 codec->driver->remove(codec);
3005}
3006
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003007static int snd_soc_codec_drv_write(struct snd_soc_component *component,
3008 unsigned int reg, unsigned int val)
3009{
3010 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3011
3012 return codec->driver->write(codec, reg, val);
3013}
3014
3015static int snd_soc_codec_drv_read(struct snd_soc_component *component,
3016 unsigned int reg, unsigned int *val)
3017{
3018 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
3019
3020 *val = codec->driver->read(codec, reg);
3021
3022 return 0;
3023}
3024
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003025static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
3026 enum snd_soc_bias_level level)
3027{
3028 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
3029
3030 return codec->driver->set_bias_level(codec, level);
3031}
3032
Mark Brown0d0cf002008-12-10 14:32:45 +00003033/**
3034 * snd_soc_register_codec - Register a codec with the ASoC core
3035 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003036 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003037 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003038int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003039 const struct snd_soc_codec_driver *codec_drv,
3040 struct snd_soc_dai_driver *dai_drv,
3041 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003042{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003043 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003044 struct snd_soc_dai *dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003045 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003046
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003047 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003048
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003049 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3050 if (codec == NULL)
3051 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003052
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003053 codec->component.dapm_ptr = &codec->dapm;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003054 codec->component.codec = codec;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003055
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003056 ret = snd_soc_component_initialize(&codec->component,
3057 &codec_drv->component_driver, dev);
3058 if (ret)
3059 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01003060
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02003061 if (codec_drv->controls) {
3062 codec->component.controls = codec_drv->controls;
3063 codec->component.num_controls = codec_drv->num_controls;
3064 }
3065 if (codec_drv->dapm_widgets) {
3066 codec->component.dapm_widgets = codec_drv->dapm_widgets;
3067 codec->component.num_dapm_widgets = codec_drv->num_dapm_widgets;
3068 }
3069 if (codec_drv->dapm_routes) {
3070 codec->component.dapm_routes = codec_drv->dapm_routes;
3071 codec->component.num_dapm_routes = codec_drv->num_dapm_routes;
3072 }
3073
3074 if (codec_drv->probe)
3075 codec->component.probe = snd_soc_codec_drv_probe;
3076 if (codec_drv->remove)
3077 codec->component.remove = snd_soc_codec_drv_remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003078 if (codec_drv->write)
3079 codec->component.write = snd_soc_codec_drv_write;
3080 if (codec_drv->read)
3081 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003082 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02003083 codec->dapm.idle_bias_off = codec_drv->idle_bias_off;
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02003084 codec->dapm.suspend_bias_off = codec_drv->suspend_bias_off;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003085 if (codec_drv->seq_notifier)
3086 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003087 if (codec_drv->set_bias_level)
3088 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003089 codec->dev = dev;
3090 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003091 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003092
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02003093#ifdef CONFIG_DEBUG_FS
3094 codec->component.init_debugfs = soc_init_codec_debugfs;
3095 codec->component.debugfs_prefix = "codec";
3096#endif
Xiubo Lia39f75f2014-03-26 13:40:23 +08003097
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003098 if (codec_drv->get_regmap)
3099 codec->component.regmap = codec_drv->get_regmap(dev);
Xiubo Lia39f75f2014-03-26 13:40:23 +08003100
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003101 for (i = 0; i < num_dai; i++) {
3102 fixup_codec_formats(&dai_drv[i].playback);
3103 fixup_codec_formats(&dai_drv[i].capture);
3104 }
3105
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003106 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
3107 if (ret < 0) {
Masanari Iidaf42cf8d2015-02-24 23:11:26 +09003108 dev_err(dev, "ASoC: Failed to register DAIs: %d\n", ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003109 goto err_cleanup;
3110 }
3111
3112 list_for_each_entry(dai, &codec->component.dai_list, list)
3113 dai->codec = codec;
3114
Mark Brown054880f2012-04-09 17:29:19 +01003115 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003116 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01003117 list_add(&codec->list, &codec_list);
3118 mutex_unlock(&client_mutex);
3119
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003120 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
3121 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003122 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003123
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003124err_cleanup:
3125 snd_soc_component_cleanup(&codec->component);
3126err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003127 kfree(codec);
3128 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003129}
3130EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3131
3132/**
3133 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3134 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003135 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003136 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003137void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003138{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003139 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003140
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003141 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003142 list_for_each_entry(codec, &codec_list, list) {
3143 if (dev == codec->dev)
3144 goto found;
3145 }
Lars-Peter Clausen34e81ab2015-03-07 19:34:03 +01003146 mutex_unlock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003147 return;
3148
3149found:
Mark Brown0d0cf002008-12-10 14:32:45 +00003150 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003151 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00003152 mutex_unlock(&client_mutex);
3153
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003154 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
3155 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003156
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003157 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003158 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003159 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003160}
3161EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3162
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003163/* Retrieve a card's name from device tree */
3164int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3165 const char *propname)
3166{
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303167 struct device_node *np;
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003168 int ret;
3169
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303170 if (!card->dev) {
3171 pr_err("card->dev is not set before calling %s\n", __func__);
3172 return -EINVAL;
3173 }
3174
3175 np = card->dev->of_node;
3176
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003177 ret = of_property_read_string_index(np, propname, 0, &card->name);
3178 /*
3179 * EINVAL means the property does not exist. This is fine providing
3180 * card->name was previously set, which is checked later in
3181 * snd_soc_register_card.
3182 */
3183 if (ret < 0 && ret != -EINVAL) {
3184 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003185 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003186 propname, ret);
3187 return ret;
3188 }
3189
3190 return 0;
3191}
3192EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3193
Xiubo Li9a6d4862014-02-08 15:59:52 +08003194static const struct snd_soc_dapm_widget simple_widgets[] = {
3195 SND_SOC_DAPM_MIC("Microphone", NULL),
3196 SND_SOC_DAPM_LINE("Line", NULL),
3197 SND_SOC_DAPM_HP("Headphone", NULL),
3198 SND_SOC_DAPM_SPK("Speaker", NULL),
3199};
3200
3201int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
3202 const char *propname)
3203{
3204 struct device_node *np = card->dev->of_node;
3205 struct snd_soc_dapm_widget *widgets;
3206 const char *template, *wname;
3207 int i, j, num_widgets, ret;
3208
3209 num_widgets = of_property_count_strings(np, propname);
3210 if (num_widgets < 0) {
3211 dev_err(card->dev,
3212 "ASoC: Property '%s' does not exist\n", propname);
3213 return -EINVAL;
3214 }
3215 if (num_widgets & 1) {
3216 dev_err(card->dev,
3217 "ASoC: Property '%s' length is not even\n", propname);
3218 return -EINVAL;
3219 }
3220
3221 num_widgets /= 2;
3222 if (!num_widgets) {
3223 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3224 propname);
3225 return -EINVAL;
3226 }
3227
3228 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3229 GFP_KERNEL);
3230 if (!widgets) {
3231 dev_err(card->dev,
3232 "ASoC: Could not allocate memory for widgets\n");
3233 return -ENOMEM;
3234 }
3235
3236 for (i = 0; i < num_widgets; i++) {
3237 ret = of_property_read_string_index(np, propname,
3238 2 * i, &template);
3239 if (ret) {
3240 dev_err(card->dev,
3241 "ASoC: Property '%s' index %d read error:%d\n",
3242 propname, 2 * i, ret);
3243 return -EINVAL;
3244 }
3245
3246 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3247 if (!strncmp(template, simple_widgets[j].name,
3248 strlen(simple_widgets[j].name))) {
3249 widgets[i] = simple_widgets[j];
3250 break;
3251 }
3252 }
3253
3254 if (j >= ARRAY_SIZE(simple_widgets)) {
3255 dev_err(card->dev,
3256 "ASoC: DAPM widget '%s' is not supported\n",
3257 template);
3258 return -EINVAL;
3259 }
3260
3261 ret = of_property_read_string_index(np, propname,
3262 (2 * i) + 1,
3263 &wname);
3264 if (ret) {
3265 dev_err(card->dev,
3266 "ASoC: Property '%s' index %d read error:%d\n",
3267 propname, (2 * i) + 1, ret);
3268 return -EINVAL;
3269 }
3270
3271 widgets[i].name = wname;
3272 }
3273
Nicolin Chenf23e8602015-02-14 17:22:49 -08003274 card->of_dapm_widgets = widgets;
3275 card->num_of_dapm_widgets = num_widgets;
Xiubo Li9a6d4862014-02-08 15:59:52 +08003276
3277 return 0;
3278}
3279EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
3280
Xiubo Li89c67852014-02-14 09:34:35 +08003281int snd_soc_of_parse_tdm_slot(struct device_node *np,
3282 unsigned int *slots,
3283 unsigned int *slot_width)
3284{
3285 u32 val;
3286 int ret;
3287
3288 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3289 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3290 if (ret)
3291 return ret;
3292
3293 if (slots)
3294 *slots = val;
3295 }
3296
3297 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3298 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3299 if (ret)
3300 return ret;
3301
3302 if (slot_width)
3303 *slot_width = val;
3304 }
3305
3306 return 0;
3307}
3308EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3309
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003310int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3311 const char *propname)
3312{
3313 struct device_node *np = card->dev->of_node;
Mark Browne3b1e6a2014-12-18 11:46:38 +00003314 int num_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003315 struct snd_soc_dapm_route *routes;
3316 int i, ret;
3317
3318 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08003319 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003320 dev_err(card->dev,
3321 "ASoC: Property '%s' does not exist or its length is not even\n",
3322 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003323 return -EINVAL;
3324 }
3325 num_routes /= 2;
3326 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003327 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003328 propname);
3329 return -EINVAL;
3330 }
3331
Mark Browne3b1e6a2014-12-18 11:46:38 +00003332 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003333 GFP_KERNEL);
3334 if (!routes) {
3335 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003336 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003337 return -EINVAL;
3338 }
3339
3340 for (i = 0; i < num_routes; i++) {
3341 ret = of_property_read_string_index(np, propname,
Mark Browne3b1e6a2014-12-18 11:46:38 +00003342 2 * i, &routes[i].sink);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003343 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09003344 dev_err(card->dev,
3345 "ASoC: Property '%s' index %d could not be read: %d\n",
3346 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003347 return -EINVAL;
3348 }
3349 ret = of_property_read_string_index(np, propname,
Mark Browne3b1e6a2014-12-18 11:46:38 +00003350 (2 * i) + 1, &routes[i].source);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003351 if (ret) {
3352 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09003353 "ASoC: Property '%s' index %d could not be read: %d\n",
3354 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003355 return -EINVAL;
3356 }
3357 }
3358
Nicolin Chenf23e8602015-02-14 17:22:49 -08003359 card->num_of_dapm_routes = num_routes;
3360 card->of_dapm_routes = routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003361
3362 return 0;
3363}
3364EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3365
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003366unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02003367 const char *prefix,
3368 struct device_node **bitclkmaster,
3369 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003370{
3371 int ret, i;
3372 char prop[128];
3373 unsigned int format = 0;
3374 int bit, frame;
3375 const char *str;
3376 struct {
3377 char *name;
3378 unsigned int val;
3379 } of_fmt_table[] = {
3380 { "i2s", SND_SOC_DAIFMT_I2S },
3381 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
3382 { "left_j", SND_SOC_DAIFMT_LEFT_J },
3383 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
3384 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
3385 { "ac97", SND_SOC_DAIFMT_AC97 },
3386 { "pdm", SND_SOC_DAIFMT_PDM},
3387 { "msb", SND_SOC_DAIFMT_MSB },
3388 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003389 };
3390
3391 if (!prefix)
3392 prefix = "";
3393
3394 /*
3395 * check "[prefix]format = xxx"
3396 * SND_SOC_DAIFMT_FORMAT_MASK area
3397 */
3398 snprintf(prop, sizeof(prop), "%sformat", prefix);
3399 ret = of_property_read_string(np, prop, &str);
3400 if (ret == 0) {
3401 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3402 if (strcmp(str, of_fmt_table[i].name) == 0) {
3403 format |= of_fmt_table[i].val;
3404 break;
3405 }
3406 }
3407 }
3408
3409 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003410 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003411 * SND_SOC_DAIFMT_CLOCK_MASK area
3412 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003413 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
3414 if (of_get_property(np, prop, NULL))
3415 format |= SND_SOC_DAIFMT_CONT;
3416 else
3417 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003418
3419 /*
3420 * check "[prefix]bitclock-inversion"
3421 * check "[prefix]frame-inversion"
3422 * SND_SOC_DAIFMT_INV_MASK area
3423 */
3424 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3425 bit = !!of_get_property(np, prop, NULL);
3426
3427 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3428 frame = !!of_get_property(np, prop, NULL);
3429
3430 switch ((bit << 4) + frame) {
3431 case 0x11:
3432 format |= SND_SOC_DAIFMT_IB_IF;
3433 break;
3434 case 0x10:
3435 format |= SND_SOC_DAIFMT_IB_NF;
3436 break;
3437 case 0x01:
3438 format |= SND_SOC_DAIFMT_NB_IF;
3439 break;
3440 default:
3441 /* SND_SOC_DAIFMT_NB_NF is default */
3442 break;
3443 }
3444
3445 /*
3446 * check "[prefix]bitclock-master"
3447 * check "[prefix]frame-master"
3448 * SND_SOC_DAIFMT_MASTER_MASK area
3449 */
3450 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3451 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003452 if (bit && bitclkmaster)
3453 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003454
3455 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3456 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003457 if (frame && framemaster)
3458 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003459
3460 switch ((bit << 4) + frame) {
3461 case 0x11:
3462 format |= SND_SOC_DAIFMT_CBM_CFM;
3463 break;
3464 case 0x10:
3465 format |= SND_SOC_DAIFMT_CBM_CFS;
3466 break;
3467 case 0x01:
3468 format |= SND_SOC_DAIFMT_CBS_CFM;
3469 break;
3470 default:
3471 format |= SND_SOC_DAIFMT_CBS_CFS;
3472 break;
3473 }
3474
3475 return format;
3476}
3477EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3478
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003479static int snd_soc_get_dai_name(struct of_phandle_args *args,
3480 const char **dai_name)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003481{
3482 struct snd_soc_component *pos;
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003483 int ret = -EPROBE_DEFER;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003484
3485 mutex_lock(&client_mutex);
3486 list_for_each_entry(pos, &component_list, list) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003487 if (pos->dev->of_node != args->np)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003488 continue;
3489
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003490 if (pos->driver->of_xlate_dai_name) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003491 ret = pos->driver->of_xlate_dai_name(pos,
3492 args,
3493 dai_name);
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003494 } else {
3495 int id = -1;
3496
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003497 switch (args->args_count) {
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003498 case 0:
3499 id = 0; /* same as dai_drv[0] */
3500 break;
3501 case 1:
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003502 id = args->args[0];
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003503 break;
3504 default:
3505 /* not supported */
3506 break;
3507 }
3508
3509 if (id < 0 || id >= pos->num_dai) {
3510 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08003511 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003512 }
Xiubo Lie41975e2013-12-20 14:39:51 +08003513
3514 ret = 0;
3515
3516 *dai_name = pos->dai_drv[id].name;
3517 if (!*dai_name)
3518 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003519 }
3520
Kuninori Morimotocb470082013-09-10 17:39:56 -07003521 break;
3522 }
3523 mutex_unlock(&client_mutex);
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003524 return ret;
3525}
3526
3527int snd_soc_of_get_dai_name(struct device_node *of_node,
3528 const char **dai_name)
3529{
3530 struct of_phandle_args args;
3531 int ret;
3532
3533 ret = of_parse_phandle_with_args(of_node, "sound-dai",
3534 "#sound-dai-cells", 0, &args);
3535 if (ret)
3536 return ret;
3537
3538 ret = snd_soc_get_dai_name(&args, dai_name);
Kuninori Morimotocb470082013-09-10 17:39:56 -07003539
3540 of_node_put(args.np);
3541
3542 return ret;
3543}
3544EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3545
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003546/*
3547 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3548 * @dev: Card device
3549 * @of_node: Device node
3550 * @dai_link: DAI link
3551 *
3552 * Builds an array of CODEC DAI components from the DAI link property
3553 * 'sound-dai'.
3554 * The array is set in the DAI link and the number of DAIs is set accordingly.
3555 * The device nodes in the array (of_node) must be dereferenced by the caller.
3556 *
3557 * Returns 0 for success
3558 */
3559int snd_soc_of_get_dai_link_codecs(struct device *dev,
3560 struct device_node *of_node,
3561 struct snd_soc_dai_link *dai_link)
3562{
3563 struct of_phandle_args args;
3564 struct snd_soc_dai_link_component *component;
3565 char *name;
3566 int index, num_codecs, ret;
3567
3568 /* Count the number of CODECs */
3569 name = "sound-dai";
3570 num_codecs = of_count_phandle_with_args(of_node, name,
3571 "#sound-dai-cells");
3572 if (num_codecs <= 0) {
3573 if (num_codecs == -ENOENT)
3574 dev_err(dev, "No 'sound-dai' property\n");
3575 else
3576 dev_err(dev, "Bad phandle in 'sound-dai'\n");
3577 return num_codecs;
3578 }
3579 component = devm_kzalloc(dev,
3580 sizeof *component * num_codecs,
3581 GFP_KERNEL);
3582 if (!component)
3583 return -ENOMEM;
3584 dai_link->codecs = component;
3585 dai_link->num_codecs = num_codecs;
3586
3587 /* Parse the list */
3588 for (index = 0, component = dai_link->codecs;
3589 index < dai_link->num_codecs;
3590 index++, component++) {
3591 ret = of_parse_phandle_with_args(of_node, name,
3592 "#sound-dai-cells",
3593 index, &args);
3594 if (ret)
3595 goto err;
3596 component->of_node = args.np;
3597 ret = snd_soc_get_dai_name(&args, &component->dai_name);
3598 if (ret < 0)
3599 goto err;
3600 }
3601 return 0;
3602err:
3603 for (index = 0, component = dai_link->codecs;
3604 index < dai_link->num_codecs;
3605 index++, component++) {
3606 if (!component->of_node)
3607 break;
3608 of_node_put(component->of_node);
3609 component->of_node = NULL;
3610 }
3611 dai_link->codecs = NULL;
3612 dai_link->num_codecs = 0;
3613 return ret;
3614}
3615EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3616
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003617static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003618{
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02003619 snd_soc_debugfs_init();
Mark Brownfb257892011-04-28 10:57:54 +01003620 snd_soc_util_init();
3621
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003622 return platform_driver_register(&soc_driver);
3623}
Mark Brown4abe8e12010-10-12 17:41:03 +01003624module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003625
Mark Brown7d8c16a2008-11-30 22:11:24 +00003626static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003627{
Mark Brownfb257892011-04-28 10:57:54 +01003628 snd_soc_util_exit();
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02003629 snd_soc_debugfs_exit();
Mark Brownfb257892011-04-28 10:57:54 +01003630
Mark Brown384c89e2008-12-03 17:34:03 +00003631#ifdef CONFIG_DEBUG_FS
Mark Brown384c89e2008-12-03 17:34:03 +00003632#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003633 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003634}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003635module_exit(snd_soc_exit);
3636
3637/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003638MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003639MODULE_DESCRIPTION("ALSA SoC Core");
3640MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003641MODULE_ALIAS("platform:soc-audio");