blob: d7595465cfbcc877211810e378028de194f541df [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;
95 char tmpbuf[len + 1];
96 char regbuf[regsize + 1];
97
98 /* since tmpbuf is allocated on the stack, warn the callers if they
99 * try to abuse this function */
100 WARN_ON(len > 63);
101
102 /* +2 for ': ' and + 1 for '\n' */
103 if (wordsize + regsize + 2 + 1 != len)
104 return -EINVAL;
105
Mark Brown25032c12011-08-01 13:52:48 +0900106 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000107 if (ret < 0) {
108 memset(regbuf, 'X', regsize);
109 regbuf[regsize] = '\0';
110 } else {
111 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
112 }
113
114 /* prepare the buffer */
115 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
116 /* copy it back to the caller without the '\0' */
117 memcpy(buf, tmpbuf, len);
118
119 return 0;
120}
121
122/* codec register dump */
123static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
124 size_t count, loff_t pos)
125{
126 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000127 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000128 int len;
129 size_t total = 0;
130 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000131
Stephen Warren00b317a2011-04-01 14:50:44 -0600132 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
133 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000134
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000135 len = wordsize + regsize + 2 + 1;
136
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000137 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000138 return 0;
139
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000140 if (codec->driver->reg_cache_step)
141 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000142
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000143 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100144 /* only support larger than PAGE_SIZE bytes debugfs
145 * entries for the default case */
146 if (p >= pos) {
147 if (total + len >= count - 1)
148 break;
149 format_register_str(codec, i, buf + total, len);
150 total += len;
Mark Brown5164d742010-07-14 16:14:33 +0100151 }
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100152 p += len;
Mark Brown2624d5f2009-11-03 21:56:13 +0000153 }
154
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000155 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000156
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000157 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000158}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000159
Mark Brown2624d5f2009-11-03 21:56:13 +0000160static ssize_t codec_reg_show(struct device *dev,
161 struct device_attribute *attr, char *buf)
162{
Mark Brown36ae1a92012-01-06 17:12:45 -0800163 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000164
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000165 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000166}
167
168static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
169
Mark Browndbe21402010-02-12 11:37:24 +0000170static ssize_t pmdown_time_show(struct device *dev,
171 struct device_attribute *attr, char *buf)
172{
Mark Brown36ae1a92012-01-06 17:12:45 -0800173 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000174
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000175 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000176}
177
178static ssize_t pmdown_time_set(struct device *dev,
179 struct device_attribute *attr,
180 const char *buf, size_t count)
181{
Mark Brown36ae1a92012-01-06 17:12:45 -0800182 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700183 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000184
Jingoo Hanb785a492013-07-19 16:24:59 +0900185 ret = kstrtol(buf, 10, &rtd->pmdown_time);
Mark Brownc593b522010-10-27 20:11:17 -0700186 if (ret)
187 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000188
189 return count;
190}
191
192static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
193
Mark Brown2624d5f2009-11-03 21:56:13 +0000194#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000195static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000196 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000197{
198 ssize_t ret;
199 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000200 char *buf;
201
202 if (*ppos < 0 || !count)
203 return -EINVAL;
204
205 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000206 if (!buf)
207 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000208
209 ret = soc_codec_reg_show(codec, buf, count, *ppos);
210 if (ret >= 0) {
211 if (copy_to_user(user_buf, buf, ret)) {
212 kfree(buf);
213 return -EFAULT;
214 }
215 *ppos += ret;
216 }
217
Mark Brown2624d5f2009-11-03 21:56:13 +0000218 kfree(buf);
219 return ret;
220}
221
222static ssize_t codec_reg_write_file(struct file *file,
223 const char __user *user_buf, size_t count, loff_t *ppos)
224{
225 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700226 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000227 char *start = buf;
228 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000229 struct snd_soc_codec *codec = file->private_data;
Jingoo Hanb785a492013-07-19 16:24:59 +0900230 int ret;
Mark Brown2624d5f2009-11-03 21:56:13 +0000231
232 buf_size = min(count, (sizeof(buf)-1));
233 if (copy_from_user(buf, user_buf, buf_size))
234 return -EFAULT;
235 buf[buf_size] = 0;
236
Mark Brown2624d5f2009-11-03 21:56:13 +0000237 while (*start == ' ')
238 start++;
239 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000240 while (*start == ' ')
241 start++;
Jingoo Hanb785a492013-07-19 16:24:59 +0900242 ret = kstrtoul(start, 16, &value);
243 if (ret)
244 return ret;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000245
246 /* Userspace has been fiddling around behind the kernel's back */
Rusty Russell373d4d02013-01-21 17:17:39 +1030247 add_taint(TAINT_USER, LOCKDEP_NOW_UNRELIABLE);
Mark Brown0d51a9c2011-01-06 16:04:57 +0000248
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000249 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000250 return buf_size;
251}
252
253static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700254 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000255 .read = codec_reg_read_file,
256 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200257 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000258};
259
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200260static void soc_init_component_debugfs(struct snd_soc_component *component)
Russell Kinge73f3de2014-06-26 15:22:50 +0100261{
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200262 if (component->debugfs_prefix) {
263 char *name;
Russell Kinge73f3de2014-06-26 15:22:50 +0100264
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200265 name = kasprintf(GFP_KERNEL, "%s:%s",
266 component->debugfs_prefix, component->name);
267 if (name) {
268 component->debugfs_root = debugfs_create_dir(name,
269 component->card->debugfs_card_root);
270 kfree(name);
271 }
272 } else {
273 component->debugfs_root = debugfs_create_dir(component->name,
274 component->card->debugfs_card_root);
275 }
Russell Kinge73f3de2014-06-26 15:22:50 +0100276
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200277 if (!component->debugfs_root) {
278 dev_warn(component->dev,
279 "ASoC: Failed to create component debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000280 return;
281 }
282
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200283 snd_soc_dapm_debugfs_init(snd_soc_component_get_dapm(component),
284 component->debugfs_root);
285
286 if (component->init_debugfs)
287 component->init_debugfs(component);
288}
289
290static void soc_cleanup_component_debugfs(struct snd_soc_component *component)
291{
292 debugfs_remove_recursive(component->debugfs_root);
293}
294
295static void soc_init_codec_debugfs(struct snd_soc_component *component)
296{
297 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
298
Mark Brown2624d5f2009-11-03 21:56:13 +0000299 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200300 codec->component.debugfs_root,
Mark Brown2624d5f2009-11-03 21:56:13 +0000301 codec, &codec_reg_fops);
302 if (!codec->debugfs_reg)
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200303 dev_warn(codec->dev,
304 "ASoC: Failed to create codec register debugfs file\n");
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000305}
306
Mark Brownc3c5a192010-09-15 18:15:14 +0100307static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
308 size_t count, loff_t *ppos)
309{
310 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100311 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100312 struct snd_soc_codec *codec;
313
314 if (!buf)
315 return -ENOMEM;
316
Mark Brown2b194f9d2010-10-13 10:52:16 +0100317 list_for_each_entry(codec, &codec_list, list) {
318 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200319 codec->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100320 if (len >= 0)
321 ret += len;
322 if (ret > PAGE_SIZE) {
323 ret = PAGE_SIZE;
324 break;
325 }
326 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100327
328 if (ret >= 0)
329 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
330
331 kfree(buf);
332
333 return ret;
334}
335
336static const struct file_operations codec_list_fops = {
337 .read = codec_list_read_file,
338 .llseek = default_llseek,/* read accesses f_pos */
339};
340
Mark Brownf3208782010-09-15 18:19:07 +0100341static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
342 size_t count, loff_t *ppos)
343{
344 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100345 ssize_t len, ret = 0;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100346 struct snd_soc_component *component;
Mark Brownf3208782010-09-15 18:19:07 +0100347 struct snd_soc_dai *dai;
348
349 if (!buf)
350 return -ENOMEM;
351
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100352 list_for_each_entry(component, &component_list, list) {
353 list_for_each_entry(dai, &component->dai_list, list) {
354 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
355 dai->name);
356 if (len >= 0)
357 ret += len;
358 if (ret > PAGE_SIZE) {
359 ret = PAGE_SIZE;
360 break;
361 }
Mark Brown2b194f9d2010-10-13 10:52:16 +0100362 }
363 }
Mark Brownf3208782010-09-15 18:19:07 +0100364
Mark Brown2b194f9d2010-10-13 10:52:16 +0100365 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100366
367 kfree(buf);
368
369 return ret;
370}
371
372static const struct file_operations dai_list_fops = {
373 .read = dai_list_read_file,
374 .llseek = default_llseek,/* read accesses f_pos */
375};
376
Mark Brown19c7ac22010-09-15 18:22:40 +0100377static ssize_t platform_list_read_file(struct file *file,
378 char __user *user_buf,
379 size_t count, loff_t *ppos)
380{
381 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100382 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100383 struct snd_soc_platform *platform;
384
385 if (!buf)
386 return -ENOMEM;
387
Mark Brown2b194f9d2010-10-13 10:52:16 +0100388 list_for_each_entry(platform, &platform_list, list) {
389 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200390 platform->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100391 if (len >= 0)
392 ret += len;
393 if (ret > PAGE_SIZE) {
394 ret = PAGE_SIZE;
395 break;
396 }
397 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100398
Mark Brown2b194f9d2010-10-13 10:52:16 +0100399 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100400
401 kfree(buf);
402
403 return ret;
404}
405
406static const struct file_operations platform_list_fops = {
407 .read = platform_list_read_file,
408 .llseek = default_llseek,/* read accesses f_pos */
409};
410
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200411static void soc_init_card_debugfs(struct snd_soc_card *card)
412{
413 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000414 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200415 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200416 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100417 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200418 return;
419 }
420
421 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
422 card->debugfs_card_root,
423 &card->pop_time);
424 if (!card->debugfs_pop_time)
425 dev_warn(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000426 "ASoC: Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200427}
428
429static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
430{
431 debugfs_remove_recursive(card->debugfs_card_root);
432}
433
Mark Brown2624d5f2009-11-03 21:56:13 +0000434#else
435
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200436#define soc_init_codec_debugfs NULL
437
438static inline void soc_init_component_debugfs(
439 struct snd_soc_component *component)
Mark Brown2624d5f2009-11-03 21:56:13 +0000440{
441}
442
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +0200443static inline void soc_cleanup_component_debugfs(
444 struct snd_soc_component *component)
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000445{
446}
447
Axel Linb95fccb2010-11-09 17:06:44 +0800448static inline void soc_init_card_debugfs(struct snd_soc_card *card)
449{
450}
451
452static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
453{
454}
Mark Brown2624d5f2009-11-03 21:56:13 +0000455#endif
456
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100457struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
458 const char *dai_link, int stream)
459{
460 int i;
461
462 for (i = 0; i < card->num_links; i++) {
463 if (card->rtd[i].dai_link->no_pcm &&
464 !strcmp(card->rtd[i].dai_link->name, dai_link))
465 return card->rtd[i].pcm->streams[stream].substream;
466 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000467 dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100468 return NULL;
469}
470EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
471
472struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
473 const char *dai_link)
474{
475 int i;
476
477 for (i = 0; i < card->num_links; i++) {
478 if (!strcmp(card->rtd[i].dai_link->name, dai_link))
479 return &card->rtd[i];
480 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000481 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100482 return NULL;
483}
484EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
485
Richard Fitzgerald9d58a072013-08-05 13:17:28 +0100486static void codec2codec_close_delayed_work(struct work_struct *work)
487{
488 /* Currently nothing to do for c2c links
489 * Since c2c links are internal nodes in the DAPM graph and
490 * don't interface with the outside world or application layer
491 * we don't have to do any special handling on close.
492 */
493}
494
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000495#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200496/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000497int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200498{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000499 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200500 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200501 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200502
Lars-Peter Clausenc5599b82014-08-19 15:51:30 +0200503 /* If the card is not initialized yet there is nothing to do */
504 if (!card->instantiated)
Daniel Macke3509ff2009-06-03 17:44:49 +0200505 return 0;
506
Andy Green6ed25972008-06-13 16:24:05 +0100507 /* Due to the resume being scheduled into a workqueue we could
508 * suspend before that's finished - wait for it to complete.
509 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000510 snd_power_lock(card->snd_card);
511 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
512 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100513
514 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000515 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100516
Mark Browna00f90f2010-12-02 16:24:24 +0000517 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000518 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100519
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000520 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100521 continue;
522
Benoit Cousson88bd8702014-07-08 23:19:34 +0200523 for (j = 0; j < card->rtd[i].num_codecs; j++) {
524 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
525 struct snd_soc_dai_driver *drv = dai->driver;
526
527 if (drv->ops->digital_mute && dai->playback_active)
528 drv->ops->digital_mute(dai, 1);
529 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200530 }
531
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100532 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000533 for (i = 0; i < card->num_rtd; i++) {
534 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100535 continue;
536
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000537 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100538 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100539
Mark Brown87506542008-11-18 20:50:34 +0000540 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000541 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200542
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000543 for (i = 0; i < card->num_rtd; i++) {
544 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100545
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000546 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100547 continue;
548
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100549 if (cpu_dai->driver->suspend && !cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000550 cpu_dai->driver->suspend(cpu_dai);
Mark Brown1547aba2010-05-07 21:11:40 +0100551 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200552
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000553 /* close any waiting streams and save state */
554 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200555 struct snd_soc_dai **codec_dais = card->rtd[i].codec_dais;
Tejun Heo43829732012-08-20 14:51:24 -0700556 flush_delayed_work(&card->rtd[i].delayed_work);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200557 for (j = 0; j < card->rtd[i].num_codecs; j++) {
558 codec_dais[j]->codec->dapm.suspend_bias_level =
559 codec_dais[j]->codec->dapm.bias_level;
560 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000561 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100562
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000563 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000564
565 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100566 continue;
567
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800568 snd_soc_dapm_stream_event(&card->rtd[i],
569 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800570 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000571
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800572 snd_soc_dapm_stream_event(&card->rtd[i],
573 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800574 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000575 }
576
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200577 /* Recheck all endpoints too, their state is affected by suspend */
578 dapm_mark_endpoints_dirty(card);
Mark Browne2d32ff2012-08-31 17:38:32 -0700579 snd_soc_dapm_sync(&card->dapm);
580
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000581 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200582 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000583 /* If there are paths active then the CODEC will be held with
584 * bias _ON and should not be suspended. */
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200585 if (!codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200586 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000587 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000588 /*
589 * If the CODEC is capable of idle
590 * bias off then being in STANDBY
591 * means it's doing something,
592 * otherwise fall through.
593 */
594 if (codec->dapm.idle_bias_off) {
595 dev_dbg(codec->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200596 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000597 break;
598 }
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200599
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600 case SND_SOC_BIAS_OFF:
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200601 if (codec->driver->suspend)
602 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000603 codec->suspended = 1;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200604 if (codec->component.regmap)
605 regcache_mark_dirty(codec->component.regmap);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800606 /* deactivate pins to sleep state */
607 pinctrl_pm_select_sleep_state(codec->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000608 break;
609 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200610 dev_dbg(codec->dev,
611 "ASoC: CODEC is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000612 break;
613 }
614 }
615 }
616
617 for (i = 0; i < card->num_rtd; i++) {
618 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
619
620 if (card->rtd[i].dai_link->ignore_suspend)
621 continue;
622
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100623 if (cpu_dai->driver->suspend && cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000624 cpu_dai->driver->suspend(cpu_dai);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800625
626 /* deactivate pins to sleep state */
627 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200628 }
629
Mark Brown87506542008-11-18 20:50:34 +0000630 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000631 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200632
633 return 0;
634}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000635EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200636
Andy Green6ed25972008-06-13 16:24:05 +0100637/* deferred resume work, so resume can complete before we finished
638 * setting our codec back up, which can be very slow on I2C
639 */
640static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200641{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000642 struct snd_soc_card *card =
643 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200644 struct snd_soc_codec *codec;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200645 int i, j;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200646
Andy Green6ed25972008-06-13 16:24:05 +0100647 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
648 * so userspace apps are blocked from touching us
649 */
650
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000651 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100652
Mark Brown99497882010-05-07 20:24:05 +0100653 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000654 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100655
Mark Brown87506542008-11-18 20:50:34 +0000656 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000657 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200658
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100659 /* resume control bus DAIs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000660 for (i = 0; i < card->num_rtd; i++) {
661 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100662
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000663 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100664 continue;
665
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100666 if (cpu_dai->driver->resume && cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000667 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200668 }
669
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200670 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000671 /* If the CODEC was idle over suspend then it will have been
672 * left with bias OFF or STANDBY and suspended so we must now
673 * resume. Otherwise the suspend was suppressed.
674 */
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200675 if (codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200676 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000677 case SND_SOC_BIAS_STANDBY:
678 case SND_SOC_BIAS_OFF:
Lars-Peter Clausena8093292014-09-04 19:44:07 +0200679 if (codec->driver->resume)
680 codec->driver->resume(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000681 codec->suspended = 0;
682 break;
683 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200684 dev_dbg(codec->dev,
685 "ASoC: CODEC was on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000686 break;
687 }
Mark Brown1547aba2010-05-07 21:11:40 +0100688 }
689 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200690
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000691 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100692
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000693 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100694 continue;
695
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800696 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000697 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800698 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000699
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800700 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000701 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800702 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200703 }
704
Mark Brown3ff3f642008-05-19 12:32:25 +0200705 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000706 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100707
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000708 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100709 continue;
710
Benoit Cousson88bd8702014-07-08 23:19:34 +0200711 for (j = 0; j < card->rtd[i].num_codecs; j++) {
712 struct snd_soc_dai *dai = card->rtd[i].codec_dais[j];
713 struct snd_soc_dai_driver *drv = dai->driver;
714
715 if (drv->ops->digital_mute && dai->playback_active)
716 drv->ops->digital_mute(dai, 0);
717 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200718 }
719
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000720 for (i = 0; i < card->num_rtd; i++) {
721 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100722
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000723 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100724 continue;
725
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100726 if (cpu_dai->driver->resume && !cpu_dai->driver->bus_control)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000727 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200728 }
729
Mark Brown87506542008-11-18 20:50:34 +0000730 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000731 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200732
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000733 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100734
735 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000736 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Mark Browne2d32ff2012-08-31 17:38:32 -0700737
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200738 /* Recheck all endpoints too, their state is affected by suspend */
739 dapm_mark_endpoints_dirty(card);
Mark Browne2d32ff2012-08-31 17:38:32 -0700740 snd_soc_dapm_sync(&card->dapm);
Andy Green6ed25972008-06-13 16:24:05 +0100741}
742
743/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000744int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100745{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000746 struct snd_soc_card *card = dev_get_drvdata(dev);
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100747 bool bus_control = false;
748 int i;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200749
Lars-Peter Clausenc5599b82014-08-19 15:51:30 +0200750 /* If the card is not initialized yet there is nothing to do */
751 if (!card->instantiated)
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800752 return 0;
753
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800754 /* activate pins from sleep state */
755 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +0200756 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
757 struct snd_soc_dai **codec_dais = rtd->codec_dais;
758 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
759 int j;
760
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800761 if (cpu_dai->active)
762 pinctrl_pm_select_default_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200763
764 for (j = 0; j < rtd->num_codecs; j++) {
765 struct snd_soc_dai *codec_dai = codec_dais[j];
766 if (codec_dai->active)
767 pinctrl_pm_select_default_state(codec_dai->dev);
768 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800769 }
770
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100771 /*
772 * DAIs that also act as the control bus master might have other drivers
773 * hanging off them so need to resume immediately. Other drivers don't
774 * have that problem and may take a substantial amount of time to resume
Mark Brown64ab9ba2009-03-31 11:27:03 +0100775 * due to I/O costs and anti-pop so handle them out of line.
776 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000777 for (i = 0; i < card->num_rtd; i++) {
778 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100779 bus_control |= cpu_dai->driver->bus_control;
Stephen Warren82e14e82011-05-25 14:06:41 -0600780 }
Lars-Peter Clausenbc263212014-11-10 22:41:52 +0100781 if (bus_control) {
782 dev_dbg(dev, "ASoC: Resuming control bus master immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600783 soc_resume_deferred(&card->deferred_resume_work);
784 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000785 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600786 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000787 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100788 }
Andy Green6ed25972008-06-13 16:24:05 +0100789
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200790 return 0;
791}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000792EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200793#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000794#define snd_soc_suspend NULL
795#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200796#endif
797
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100798static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800799};
800
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200801static struct snd_soc_component *soc_find_component(
802 const struct device_node *of_node, const char *name)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100803{
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200804 struct snd_soc_component *component;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100805
Lars-Peter Clausen65d93612014-08-19 15:51:22 +0200806 list_for_each_entry(component, &component_list, list) {
807 if (of_node) {
808 if (component->dev->of_node == of_node)
809 return component;
810 } else if (strcmp(component->name, name) == 0) {
811 return component;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100812 }
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100813 }
814
815 return NULL;
816}
817
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200818static struct snd_soc_dai *snd_soc_find_dai(
819 const struct snd_soc_dai_link_component *dlc)
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100820{
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200821 struct snd_soc_component *component;
822 struct snd_soc_dai *dai;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100823
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200824 /* Find CPU DAI from registered DAIs*/
825 list_for_each_entry(component, &component_list, list) {
826 if (dlc->of_node && component->dev->of_node != dlc->of_node)
827 continue;
Lars-Peter Clausen1ffae362014-10-29 21:46:30 +0100828 if (dlc->name && strcmp(component->name, dlc->name))
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200829 continue;
830 list_for_each_entry(dai, &component->dai_list, list) {
831 if (dlc->dai_name && strcmp(dai->name, dlc->dai_name))
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100832 continue;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100833
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200834 return dai;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100835 }
836 }
837
838 return NULL;
839}
840
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000841static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200842{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000843 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
844 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Benoit Cousson88bd8702014-07-08 23:19:34 +0200845 struct snd_soc_dai_link_component *codecs = dai_link->codecs;
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200846 struct snd_soc_dai_link_component cpu_dai_component;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200847 struct snd_soc_dai **codec_dais = rtd->codec_dais;
Mark Brown435c5e22008-12-04 15:32:53 +0000848 struct snd_soc_platform *platform;
Mark Brown848dd8b2011-04-27 18:16:32 +0100849 const char *platform_name;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200850 int i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200851
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000852 dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000853
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200854 cpu_dai_component.name = dai_link->cpu_name;
855 cpu_dai_component.of_node = dai_link->cpu_of_node;
856 cpu_dai_component.dai_name = dai_link->cpu_dai_name;
857 rtd->cpu_dai = snd_soc_find_dai(&cpu_dai_component);
Mark Brownb19e6e72012-03-14 21:18:39 +0000858 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000859 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000860 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000861 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000862 }
863
Benoit Cousson88bd8702014-07-08 23:19:34 +0200864 rtd->num_codecs = dai_link->num_codecs;
865
866 /* Find CODEC from registered CODECs */
867 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen14621c72014-08-19 15:51:27 +0200868 codec_dais[i] = snd_soc_find_dai(&codecs[i]);
Benoit Cousson88bd8702014-07-08 23:19:34 +0200869 if (!codec_dais[i]) {
870 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
871 codecs[i].dai_name);
872 return -EPROBE_DEFER;
873 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000874 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100875
Benoit Cousson88bd8702014-07-08 23:19:34 +0200876 /* Single codec links expect codec and codec_dai in runtime data */
877 rtd->codec_dai = codec_dais[0];
878 rtd->codec = rtd->codec_dai->codec;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100879
Mark Brown848dd8b2011-04-27 18:16:32 +0100880 /* if there's no platform we match on the empty platform */
881 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700882 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100883 platform_name = "snd-soc-dummy";
884
Mark Brownb19e6e72012-03-14 21:18:39 +0000885 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000886 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700887 if (dai_link->platform_of_node) {
888 if (platform->dev->of_node !=
889 dai_link->platform_of_node)
890 continue;
891 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200892 if (strcmp(platform->component.name, platform_name))
Stephen Warren5a504962011-12-21 10:40:59 -0700893 continue;
894 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700895
896 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000897 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000898 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000899 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000900 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000901 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000902 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000903
904 card->num_rtd++;
905
906 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000907}
908
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200909static void soc_remove_component(struct snd_soc_component *component)
Stephen Warrend12cd192012-06-08 12:34:22 -0600910{
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +0200911 if (!component->probed)
912 return;
Stephen Warrend12cd192012-06-08 12:34:22 -0600913
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200914 /* This is a HACK and will be removed soon */
915 if (component->codec)
916 list_del(&component->codec->card_list);
Stephen Warrend12cd192012-06-08 12:34:22 -0600917
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200918 if (component->remove)
919 component->remove(component);
Stephen Warrend12cd192012-06-08 12:34:22 -0600920
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200921 snd_soc_dapm_free(snd_soc_component_get_dapm(component));
Stephen Warrend12cd192012-06-08 12:34:22 -0600922
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200923 soc_cleanup_component_debugfs(component);
924 component->probed = 0;
925 module_put(component->dev->driver->owner);
Stephen Warrend12cd192012-06-08 12:34:22 -0600926}
927
Lars-Peter Clausene60cd142014-08-19 15:51:26 +0200928static void soc_remove_dai(struct snd_soc_dai *dai, int order)
Jarkko Nikula589c3562010-12-06 16:27:07 +0200929{
930 int err;
931
Lars-Peter Clausene60cd142014-08-19 15:51:26 +0200932 if (dai && dai->probed &&
933 dai->driver->remove_order == order) {
934 if (dai->driver->remove) {
935 err = dai->driver->remove(dai);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +0100936 if (err < 0)
Lars-Peter Clausene60cd142014-08-19 15:51:26 +0200937 dev_err(dai->dev,
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +0100938 "ASoC: failed to remove %s: %d\n",
Lars-Peter Clausene60cd142014-08-19 15:51:26 +0200939 dai->name, err);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +0100940 }
Lars-Peter Clausene60cd142014-08-19 15:51:26 +0200941 dai->probed = 0;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +0100942 }
943}
944
Stephen Warren62ae68f2012-06-08 12:34:23 -0600945static void soc_remove_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000946{
947 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Lars-Peter Clausene60cd142014-08-19 15:51:26 +0200948 int i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000949
950 /* unregister the rtd device */
951 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -0800952 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
953 device_remove_file(rtd->dev, &dev_attr_codec_reg);
954 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000955 rtd->dev_registered = 0;
956 }
957
958 /* remove the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +0200959 for (i = 0; i < rtd->num_codecs; i++)
Lars-Peter Clausene60cd142014-08-19 15:51:26 +0200960 soc_remove_dai(rtd->codec_dais[i], order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000961
Lars-Peter Clausene60cd142014-08-19 15:51:26 +0200962 soc_remove_dai(rtd->cpu_dai, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000963}
964
Stephen Warren62ae68f2012-06-08 12:34:23 -0600965static void soc_remove_link_components(struct snd_soc_card *card, int num,
966 int order)
967{
968 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
969 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Stephen Warren62ae68f2012-06-08 12:34:23 -0600970 struct snd_soc_platform *platform = rtd->platform;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +0200971 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +0200972 int i;
Stephen Warren62ae68f2012-06-08 12:34:23 -0600973
974 /* remove the platform */
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +0200975 if (platform && platform->component.driver->remove_order == order)
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +0200976 soc_remove_component(&platform->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -0600977
978 /* remove the CODEC-side CODEC */
Benoit Cousson88bd8702014-07-08 23:19:34 +0200979 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +0200980 component = rtd->codec_dais[i]->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +0200981 if (component->driver->remove_order == order)
Lars-Peter Clausen61aca562014-08-19 15:51:21 +0200982 soc_remove_component(component);
Stephen Warren62ae68f2012-06-08 12:34:23 -0600983 }
984
985 /* remove any CPU-side CODEC */
986 if (cpu_dai) {
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +0200987 if (cpu_dai->component->driver->remove_order == order)
Lars-Peter Clausen61aca562014-08-19 15:51:21 +0200988 soc_remove_component(cpu_dai->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -0600989 }
990}
991
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900992static void soc_remove_dai_links(struct snd_soc_card *card)
993{
Liam Girdwood0168bf02011-06-07 16:08:05 +0100994 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900995
Liam Girdwood0168bf02011-06-07 16:08:05 +0100996 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
997 order++) {
998 for (dai = 0; dai < card->num_rtd; dai++)
Stephen Warren62ae68f2012-06-08 12:34:23 -0600999 soc_remove_link_dais(card, dai, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001000 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001001
1002 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1003 order++) {
1004 for (dai = 0; dai < card->num_rtd; dai++)
1005 soc_remove_link_components(card, dai, order);
1006 }
1007
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001008 card->num_rtd = 0;
1009}
1010
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001011static void soc_set_name_prefix(struct snd_soc_card *card,
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001012 struct snd_soc_component *component)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001013{
1014 int i;
1015
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001016 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001017 return;
1018
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001019 for (i = 0; i < card->num_configs; i++) {
1020 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001021 if (map->of_node && component->dev->of_node != map->of_node)
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001022 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001023 if (map->dev_name && strcmp(component->name, map->dev_name))
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001024 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001025 component->name_prefix = map->name_prefix;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001026 break;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001027 }
1028}
1029
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001030static int soc_probe_component(struct snd_soc_card *card,
1031 struct snd_soc_component *component)
Jarkko Nikula589c3562010-12-06 16:27:07 +02001032{
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001033 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
Mark Brown888df392012-02-16 19:37:51 -08001034 struct snd_soc_dai *dai;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001035 int ret;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001036
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001037 if (component->probed)
1038 return 0;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001039
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001040 component->card = card;
1041 dapm->card = card;
1042 soc_set_name_prefix(card, component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001043
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001044 if (!try_module_get(component->dev->driver->owner))
Jarkko Nikula70d29332011-01-27 16:24:22 +02001045 return -ENODEV;
1046
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001047 soc_init_component_debugfs(component);
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001048
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001049 if (component->dapm_widgets) {
1050 ret = snd_soc_dapm_new_controls(dapm, component->dapm_widgets,
1051 component->num_dapm_widgets);
Nariman Poushinb318ad52014-04-01 13:59:33 +01001052
1053 if (ret != 0) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001054 dev_err(component->dev,
Nariman Poushinb318ad52014-04-01 13:59:33 +01001055 "Failed to create new controls %d\n", ret);
1056 goto err_probe;
1057 }
1058 }
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001059
Lars-Peter Clausen06348142014-08-20 13:08:49 +02001060 list_for_each_entry(dai, &component->dai_list, list) {
1061 ret = snd_soc_dapm_new_dai_widgets(dapm, dai);
Nariman Poushin261edc72014-03-31 15:47:12 +01001062 if (ret != 0) {
Lars-Peter Clausen06348142014-08-20 13:08:49 +02001063 dev_err(component->dev,
Nariman Poushin261edc72014-03-31 15:47:12 +01001064 "Failed to create DAI widgets %d\n", ret);
1065 goto err_probe;
1066 }
1067 }
Mark Brown888df392012-02-16 19:37:51 -08001068
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001069 if (component->probe) {
1070 ret = component->probe(component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001071 if (ret < 0) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001072 dev_err(component->dev,
1073 "ASoC: failed to probe component %d\n", ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001074 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001075 }
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001076
1077 WARN(dapm->idle_bias_off &&
1078 dapm->bias_level != SND_SOC_BIAS_OFF,
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001079 "codec %s can not start from non-off bias with idle_bias_off==1\n",
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001080 component->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001081 }
1082
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001083 if (component->controls)
1084 snd_soc_add_component_controls(component, component->controls,
1085 component->num_controls);
1086 if (component->dapm_routes)
1087 snd_soc_dapm_add_routes(dapm, component->dapm_routes,
1088 component->num_dapm_routes);
Mark Brown89b95ac02011-03-07 16:38:44 +00001089
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001090 component->probed = 1;
1091 list_add(&dapm->list, &card->dapm_list);
1092
1093 /* This is a HACK and will be removed soon */
1094 if (component->codec)
1095 list_add(&component->codec->card_list, &card->codec_dev_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001096
Jarkko Nikula70d29332011-01-27 16:24:22 +02001097 return 0;
1098
1099err_probe:
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001100 soc_cleanup_component_debugfs(component);
1101 module_put(component->dev->driver->owner);
Liam Girdwood956245e2011-07-01 16:54:08 +01001102
1103 return ret;
1104}
1105
Mark Brown36ae1a92012-01-06 17:12:45 -08001106static void rtd_release(struct device *dev)
1107{
1108 kfree(dev);
1109}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001110
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001111static int soc_post_component_init(struct snd_soc_pcm_runtime *rtd,
1112 const char *name)
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001113{
Jarkko Nikula589c3562010-12-06 16:27:07 +02001114 int ret = 0;
1115
Jarkko Nikula589c3562010-12-06 16:27:07 +02001116 /* register the rtd device */
Mark Brown36ae1a92012-01-06 17:12:45 -08001117 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1118 if (!rtd->dev)
1119 return -ENOMEM;
1120 device_initialize(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001121 rtd->dev->parent = rtd->card->dev;
Mark Brown36ae1a92012-01-06 17:12:45 -08001122 rtd->dev->release = rtd_release;
Lars-Peter Clausenf294afe2014-08-17 11:28:35 +02001123 dev_set_name(rtd->dev, "%s", name);
Mark Brown36ae1a92012-01-06 17:12:45 -08001124 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001125 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001126 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1127 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1128 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1129 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001130 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001131 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001132 /* calling put_device() here to free the rtd->dev */
1133 put_device(rtd->dev);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001134 dev_err(rtd->card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001135 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001136 return ret;
1137 }
1138 rtd->dev_registered = 1;
1139
Lars-Peter Clausen93c3ce72014-08-19 15:51:20 +02001140 if (rtd->codec) {
1141 /* add DAPM sysfs entries for this codec */
1142 ret = snd_soc_dapm_sys_add(rtd->dev);
1143 if (ret < 0)
1144 dev_err(rtd->dev,
1145 "ASoC: failed to add codec dapm sysfs entries: %d\n",
1146 ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001147
Lars-Peter Clausen93c3ce72014-08-19 15:51:20 +02001148 /* add codec sysfs entries */
1149 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
1150 if (ret < 0)
1151 dev_err(rtd->dev,
1152 "ASoC: failed to add codec sysfs files: %d\n",
1153 ret);
1154 }
Jarkko Nikula589c3562010-12-06 16:27:07 +02001155
1156 return 0;
1157}
1158
Stephen Warren62ae68f2012-06-08 12:34:23 -06001159static int soc_probe_link_components(struct snd_soc_card *card, int num,
1160 int order)
1161{
1162 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Stephen Warren62ae68f2012-06-08 12:34:23 -06001163 struct snd_soc_platform *platform = rtd->platform;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001164 struct snd_soc_component *component;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001165 int i, ret;
Stephen Warren62ae68f2012-06-08 12:34:23 -06001166
1167 /* probe the CPU-side component, if it is a CODEC */
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001168 component = rtd->cpu_dai->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001169 if (component->driver->probe_order == order) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001170 ret = soc_probe_component(card, component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001171 if (ret < 0)
1172 return ret;
1173 }
1174
Benoit Cousson88bd8702014-07-08 23:19:34 +02001175 /* probe the CODEC-side components */
1176 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02001177 component = rtd->codec_dais[i]->component;
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001178 if (component->driver->probe_order == order) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001179 ret = soc_probe_component(card, component);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001180 if (ret < 0)
1181 return ret;
1182 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001183 }
1184
1185 /* probe the platform */
Lars-Peter Clausen70090bb2014-08-19 15:51:24 +02001186 if (platform->component.driver->probe_order == order) {
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02001187 ret = soc_probe_component(card, &platform->component);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001188 if (ret < 0)
1189 return ret;
1190 }
1191
1192 return 0;
1193}
1194
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001195static int soc_probe_dai(struct snd_soc_dai *dai, int order)
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001196{
1197 int ret;
1198
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001199 if (!dai->probed && dai->driver->probe_order == order) {
1200 if (dai->driver->probe) {
1201 ret = dai->driver->probe(dai);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001202 if (ret < 0) {
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001203 dev_err(dai->dev,
1204 "ASoC: failed to probe DAI %s: %d\n",
1205 dai->name, ret);
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001206 return ret;
1207 }
1208 }
1209
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001210 dai->probed = 1;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001211 }
1212
1213 return 0;
1214}
1215
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001216static int soc_link_dai_widgets(struct snd_soc_card *card,
1217 struct snd_soc_dai_link *dai_link,
Benoit Cousson3f901a02014-07-01 09:47:54 +02001218 struct snd_soc_pcm_runtime *rtd)
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001219{
Benoit Cousson3f901a02014-07-01 09:47:54 +02001220 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1221 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001222 struct snd_soc_dapm_widget *play_w, *capture_w;
1223 int ret;
1224
Benoit Cousson88bd8702014-07-08 23:19:34 +02001225 if (rtd->num_codecs > 1)
1226 dev_warn(card->dev, "ASoC: Multiple codecs not supported yet\n");
1227
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001228 /* link the DAI widgets */
1229 play_w = codec_dai->playback_widget;
1230 capture_w = cpu_dai->capture_widget;
1231 if (play_w && capture_w) {
1232 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1233 capture_w, play_w);
1234 if (ret != 0) {
1235 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1236 play_w->name, capture_w->name, ret);
1237 return ret;
1238 }
1239 }
1240
1241 play_w = cpu_dai->playback_widget;
1242 capture_w = codec_dai->capture_widget;
1243 if (play_w && capture_w) {
1244 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1245 capture_w, play_w);
1246 if (ret != 0) {
1247 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1248 play_w->name, capture_w->name, ret);
1249 return ret;
1250 }
1251 }
1252
1253 return 0;
1254}
1255
Stephen Warren62ae68f2012-06-08 12:34:23 -06001256static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001257{
1258 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1259 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownc74184e2012-04-04 22:12:09 +01001260 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Benoit Cousson88bd8702014-07-08 23:19:34 +02001261 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001262
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001263 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Liam Girdwood0168bf02011-06-07 16:08:05 +01001264 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001265
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001266 /* set default power off timeout */
1267 rtd->pmdown_time = pmdown_time;
1268
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001269 ret = soc_probe_dai(cpu_dai, order);
1270 if (ret)
1271 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001272
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001273 /* probe the CODEC DAI */
Benoit Cousson88bd8702014-07-08 23:19:34 +02001274 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausen8e2be562014-11-04 11:30:59 +01001275 ret = soc_probe_dai(rtd->codec_dais[i], order);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001276 if (ret)
1277 return ret;
1278 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001279
Liam Girdwood0168bf02011-06-07 16:08:05 +01001280 /* complete DAI probe during last probe */
1281 if (order != SND_SOC_COMP_ORDER_LAST)
1282 return 0;
1283
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001284 /* do machine specific initialization */
1285 if (dai_link->init) {
1286 ret = dai_link->init(rtd);
1287 if (ret < 0) {
1288 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1289 dai_link->name, ret);
1290 return ret;
1291 }
1292 }
1293
1294 ret = soc_post_component_init(rtd, dai_link->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001295 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001296 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001297
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001298#ifdef CONFIG_DEBUG_FS
1299 /* add DPCM sysfs entries */
1300 if (dai_link->dynamic) {
1301 ret = soc_dpcm_debugfs_add(rtd);
1302 if (ret < 0) {
1303 dev_err(rtd->dev,
1304 "ASoC: failed to add dpcm sysfs entries: %d\n",
1305 ret);
1306 return ret;
1307 }
1308 }
1309#endif
1310
Mark Brown36ae1a92012-01-06 17:12:45 -08001311 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001312 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001313 dev_warn(rtd->dev, "ASoC: failed to add pmdown_time sysfs: %d\n",
1314 ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001315
Namarta Kohli1245b702012-08-16 17:10:41 +05301316 if (cpu_dai->driver->compress_dai) {
1317 /*create compress_device"*/
1318 ret = soc_new_compress(rtd, num);
Mark Brownc74184e2012-04-04 22:12:09 +01001319 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001320 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301321 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001322 return ret;
1323 }
1324 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301325
1326 if (!dai_link->params) {
1327 /* create the pcm */
1328 ret = soc_new_pcm(rtd, num);
1329 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001330 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301331 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001332 return ret;
1333 }
Namarta Kohli1245b702012-08-16 17:10:41 +05301334 } else {
Richard Fitzgerald9d58a072013-08-05 13:17:28 +01001335 INIT_DELAYED_WORK(&rtd->delayed_work,
1336 codec2codec_close_delayed_work);
1337
Namarta Kohli1245b702012-08-16 17:10:41 +05301338 /* link the DAI widgets */
Benoit Cousson3f901a02014-07-01 09:47:54 +02001339 ret = soc_link_dai_widgets(card, dai_link, rtd);
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001340 if (ret)
1341 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01001342 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001343 }
1344
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001345 return 0;
1346}
1347
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001348static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
Mark Brownb19e6e72012-03-14 21:18:39 +00001349{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001350 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001351 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001352 const char *name = aux_dev->codec_name;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001353
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001354 rtd->component = soc_find_component(aux_dev->codec_of_node, name);
1355 if (!rtd->component) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001356 if (aux_dev->codec_of_node)
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001357 name = of_node_full_name(aux_dev->codec_of_node);
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001358
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001359 dev_err(card->dev, "ASoC: %s not registered\n", name);
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001360 return -EPROBE_DEFER;
1361 }
1362
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001363 /*
1364 * Some places still reference rtd->codec, so we have to keep that
1365 * initialized if the component is a CODEC. Once all those references
1366 * have been removed, this code can be removed as well.
1367 */
1368 rtd->codec = rtd->component->codec;
1369
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001370 return 0;
Mark Brownb19e6e72012-03-14 21:18:39 +00001371}
1372
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001373static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1374{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001375 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001376 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001377 int ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001378
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001379 ret = soc_probe_component(card, rtd->component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001380 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001381 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001382
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001383 /* do machine specific initialization */
1384 if (aux_dev->init) {
Lars-Peter Clausen57bf7722014-08-19 15:51:23 +02001385 ret = aux_dev->init(rtd->component);
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001386 if (ret < 0) {
1387 dev_err(card->dev, "ASoC: failed to init %s: %d\n",
1388 aux_dev->name, ret);
1389 return ret;
1390 }
1391 }
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001392
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02001393 return soc_post_component_init(rtd, aux_dev->name);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001394}
1395
1396static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1397{
1398 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001399 struct snd_soc_component *component = rtd->component;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001400
1401 /* unregister the rtd device */
1402 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001403 device_remove_file(rtd->dev, &dev_attr_codec_reg);
Chuansheng Liud3bf1562012-12-26 00:57:32 +08001404 device_unregister(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001405 rtd->dev_registered = 0;
1406 }
1407
Lars-Peter Clausen65d93612014-08-19 15:51:22 +02001408 if (component && component->probed)
1409 soc_remove_component(component);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001410}
1411
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001412static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001413{
1414 int ret;
1415
1416 if (codec->cache_init)
1417 return 0;
1418
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001419 ret = snd_soc_cache_init(codec);
1420 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001421 dev_err(codec->dev,
1422 "ASoC: Failed to set cache compression type: %d\n",
1423 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001424 return ret;
1425 }
1426 codec->cache_init = 1;
1427 return 0;
1428}
1429
Mark Brownb19e6e72012-03-14 21:18:39 +00001430static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001431{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001432 struct snd_soc_codec *codec;
Mark Brown75d9ac42011-09-27 16:41:01 +01001433 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001434 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001435
Liam Girdwood01b9d992012-03-07 10:38:25 +00001436 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001437
Mark Brownb19e6e72012-03-14 21:18:39 +00001438 /* bind DAIs */
1439 for (i = 0; i < card->num_links; i++) {
1440 ret = soc_bind_dai_link(card, i);
1441 if (ret != 0)
1442 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001443 }
1444
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001445 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00001446 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001447 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00001448 if (ret != 0)
1449 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001450 }
1451
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001452 /* initialize the register cache for each available codec */
1453 list_for_each_entry(codec, &codec_list, list) {
1454 if (codec->cache_init)
1455 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001456 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001457 if (ret < 0)
1458 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001459 }
1460
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001461 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01001462 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001463 card->owner, 0, &card->snd_card);
1464 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001465 dev_err(card->dev,
1466 "ASoC: can't create sound card for card %s: %d\n",
1467 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001468 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001469 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001470
Mark Browne37a4972011-03-02 18:21:57 +00001471 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1472 card->dapm.dev = card->dev;
1473 card->dapm.card = card;
1474 list_add(&card->dapm.list, &card->dapm_list);
1475
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001476#ifdef CONFIG_DEBUG_FS
1477 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1478#endif
1479
Mark Brown88ee1c62011-02-02 10:43:26 +00001480#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001481 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001482 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001483#endif
Andy Green6ed25972008-06-13 16:24:05 +01001484
Mark Brown9a841eb2011-04-12 17:51:37 -07001485 if (card->dapm_widgets)
1486 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1487 card->num_dapm_widgets);
1488
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001489 /* initialise the sound card only once */
1490 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001491 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001492 if (ret < 0)
1493 goto card_probe_error;
1494 }
1495
Stephen Warren62ae68f2012-06-08 12:34:23 -06001496 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001497 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1498 order++) {
1499 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001500 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001501 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001502 dev_err(card->dev,
1503 "ASoC: failed to instantiate card %d\n",
1504 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001505 goto probe_dai_err;
1506 }
1507 }
1508 }
1509
1510 /* probe all DAI links on this card */
1511 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1512 order++) {
1513 for (i = 0; i < card->num_links; i++) {
1514 ret = soc_probe_link_dais(card, i, order);
1515 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001516 dev_err(card->dev,
1517 "ASoC: failed to instantiate card %d\n",
1518 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001519 goto probe_dai_err;
1520 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001521 }
1522 }
1523
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001524 for (i = 0; i < card->num_aux_devs; i++) {
1525 ret = soc_probe_aux_dev(card, i);
1526 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001527 dev_err(card->dev,
1528 "ASoC: failed to add auxiliary devices %d\n",
1529 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001530 goto probe_aux_dev_err;
1531 }
1532 }
1533
Mark Brown888df392012-02-16 19:37:51 -08001534 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00001535 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08001536
Mark Brownb7af1da2011-04-07 19:18:44 +09001537 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001538 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001539
Mark Brownb8ad29d2011-03-02 18:35:51 +00001540 if (card->dapm_routes)
1541 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1542 card->num_dapm_routes);
1543
Mark Brown75d9ac42011-09-27 16:41:01 +01001544 for (i = 0; i < card->num_links; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001545 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Mark Brown75d9ac42011-09-27 16:41:01 +01001546 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001547 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001548
Mark Brownf04209a2012-04-09 16:29:21 +01001549 if (dai_fmt) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001550 struct snd_soc_dai **codec_dais = rtd->codec_dais;
1551 int j;
1552
1553 for (j = 0; j < rtd->num_codecs; j++) {
1554 struct snd_soc_dai *codec_dai = codec_dais[j];
1555
1556 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1557 if (ret != 0 && ret != -ENOTSUPP)
1558 dev_warn(codec_dai->dev,
1559 "ASoC: Failed to set DAI format: %d\n",
1560 ret);
1561 }
Mark Brownf04209a2012-04-09 16:29:21 +01001562 }
1563
1564 /* If this is a regular CPU link there will be a platform */
Stephen Warrenfe33d4c2012-05-14 14:47:22 -06001565 if (dai_fmt &&
1566 (dai_link->platform_name || dai_link->platform_of_node)) {
Mark Brownf04209a2012-04-09 16:29:21 +01001567 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1568 dai_fmt);
1569 if (ret != 0 && ret != -ENOTSUPP)
1570 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001571 "ASoC: Failed to set DAI format: %d\n",
Mark Brownf04209a2012-04-09 16:29:21 +01001572 ret);
1573 } else if (dai_fmt) {
1574 /* Flip the polarity for the "CPU" end */
1575 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1576 switch (dai_link->dai_fmt &
1577 SND_SOC_DAIFMT_MASTER_MASK) {
1578 case SND_SOC_DAIFMT_CBM_CFM:
1579 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1580 break;
1581 case SND_SOC_DAIFMT_CBM_CFS:
1582 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1583 break;
1584 case SND_SOC_DAIFMT_CBS_CFM:
1585 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1586 break;
1587 case SND_SOC_DAIFMT_CBS_CFS:
1588 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1589 break;
1590 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001591
1592 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001593 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001594 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001595 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001596 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001597 ret);
1598 }
1599 }
1600
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001601 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001602 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001603 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1604 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001605 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1606 "%s", card->driver_name ? card->driver_name : card->name);
1607 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1608 switch (card->snd_card->driver[i]) {
1609 case '_':
1610 case '-':
1611 case '\0':
1612 break;
1613 default:
1614 if (!isalnum(card->snd_card->driver[i]))
1615 card->snd_card->driver[i] = '_';
1616 break;
1617 }
1618 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001619
Mark Brown28e9ad92011-03-02 18:36:34 +00001620 if (card->late_probe) {
1621 ret = card->late_probe(card);
1622 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001623 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001624 card->name, ret);
1625 goto probe_aux_dev_err;
1626 }
1627 }
1628
Stephen Warren16332812011-11-23 12:42:04 -07001629 if (card->fully_routed)
Lars-Peter Clausen7df37882014-06-16 18:13:04 +02001630 snd_soc_dapm_auto_nc_pins(card);
Stephen Warren16332812011-11-23 12:42:04 -07001631
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001632 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001633
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001634 ret = snd_card_register(card->snd_card);
1635 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001636 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1637 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001638 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001639 }
1640
Mark Brown435c5e22008-12-04 15:32:53 +00001641 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001642 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001643 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001644
1645 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001646
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001647probe_aux_dev_err:
1648 for (i = 0; i < card->num_aux_devs; i++)
1649 soc_remove_aux_dev(card, i);
1650
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001651probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001652 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001653
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001654card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001655 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001656 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001657
1658 snd_card_free(card->snd_card);
1659
Mark Brownb19e6e72012-03-14 21:18:39 +00001660base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001661 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001662
Mark Brownb19e6e72012-03-14 21:18:39 +00001663 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001664}
1665
1666/* probes a new socdev */
1667static int soc_probe(struct platform_device *pdev)
1668{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001669 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001670
Vinod Koul70a7ca32011-01-14 19:22:48 +05301671 /*
1672 * no card, so machine driver should be registering card
1673 * we should not be here in that case so ret error
1674 */
1675 if (!card)
1676 return -EINVAL;
1677
Mark Brownfe4085e2012-03-02 13:07:41 +00001678 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001679 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001680 card->name);
1681
Mark Brown435c5e22008-12-04 15:32:53 +00001682 /* Bodge while we unpick instantiation */
1683 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001684
Mark Brown28d528c2012-08-09 18:45:23 +01001685 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001686}
1687
Vinod Koulb0e26482011-01-13 22:48:02 +05301688static int soc_cleanup_card_resources(struct snd_soc_card *card)
1689{
Vinod Koulb0e26482011-01-13 22:48:02 +05301690 int i;
1691
1692 /* make sure any delayed work runs */
1693 for (i = 0; i < card->num_rtd; i++) {
1694 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001695 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301696 }
1697
1698 /* remove auxiliary devices */
1699 for (i = 0; i < card->num_aux_devs; i++)
1700 soc_remove_aux_dev(card, i);
1701
1702 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001703 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301704
1705 soc_cleanup_card_debugfs(card);
1706
1707 /* remove the card */
1708 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001709 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301710
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001711 snd_soc_dapm_free(&card->dapm);
1712
Vinod Koulb0e26482011-01-13 22:48:02 +05301713 snd_card_free(card->snd_card);
1714 return 0;
1715
1716}
1717
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001718/* removes a socdev */
1719static int soc_remove(struct platform_device *pdev)
1720{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001721 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001722
Mark Brownc5af3a22008-11-28 13:29:45 +00001723 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001724 return 0;
1725}
1726
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001727int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001728{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001729 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001730 int i;
Mark Brown51737472009-06-22 13:16:51 +01001731
1732 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001733 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001734
1735 /* Flush out pmdown_time work - we actually do want to run it
1736 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001737 for (i = 0; i < card->num_rtd; i++) {
1738 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001739 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001740 }
Mark Brown51737472009-06-22 13:16:51 +01001741
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001742 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001743
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001744 /* deactivate pins to sleep state */
1745 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001746 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1747 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1748 int j;
1749
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001750 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001751 for (j = 0; j < rtd->num_codecs; j++) {
1752 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
1753 pinctrl_pm_select_sleep_state(codec_dai->dev);
1754 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001755 }
1756
Mark Brown416356f2009-06-30 19:05:15 +01001757 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001758}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001759EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001760
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001761const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301762 .suspend = snd_soc_suspend,
1763 .resume = snd_soc_resume,
1764 .freeze = snd_soc_suspend,
1765 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001766 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301767 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001768};
Stephen Warrendeb26072011-04-05 19:35:30 -06001769EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001770
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001771/* ASoC platform driver */
1772static struct platform_driver soc_driver = {
1773 .driver = {
1774 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001775 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001776 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001777 },
1778 .probe = soc_probe,
1779 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001780};
1781
Mark Brown096e49d2009-07-05 15:12:22 +01001782/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001783 * snd_soc_cnew - create new control
1784 * @_template: control template
1785 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001786 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001787 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001788 *
1789 * Create a new mixer control from a template control.
1790 *
1791 * Returns 0 for success, else error.
1792 */
1793struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08001794 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00001795 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001796{
1797 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001798 struct snd_kcontrol *kcontrol;
1799 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001800
1801 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001802 template.index = 0;
1803
Mark Brownefb7ac32011-03-08 17:23:24 +00001804 if (!long_name)
1805 long_name = template.name;
1806
1807 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02001808 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00001809 if (!name)
1810 return NULL;
1811
Mark Brownefb7ac32011-03-08 17:23:24 +00001812 template.name = name;
1813 } else {
1814 template.name = long_name;
1815 }
1816
1817 kcontrol = snd_ctl_new1(&template, data);
1818
1819 kfree(name);
1820
1821 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001822}
1823EXPORT_SYMBOL_GPL(snd_soc_cnew);
1824
Liam Girdwood022658b2012-02-03 17:43:09 +00001825static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
1826 const struct snd_kcontrol_new *controls, int num_controls,
1827 const char *prefix, void *data)
1828{
1829 int err, i;
1830
1831 for (i = 0; i < num_controls; i++) {
1832 const struct snd_kcontrol_new *control = &controls[i];
1833 err = snd_ctl_add(card, snd_soc_cnew(control, data,
1834 control->name, prefix));
1835 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001836 dev_err(dev, "ASoC: Failed to add %s: %d\n",
1837 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00001838 return err;
1839 }
1840 }
1841
1842 return 0;
1843}
1844
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01001845struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
1846 const char *name)
1847{
1848 struct snd_card *card = soc_card->snd_card;
1849 struct snd_kcontrol *kctl;
1850
1851 if (unlikely(!name))
1852 return NULL;
1853
1854 list_for_each_entry(kctl, &card->controls, list)
1855 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
1856 return kctl;
1857 return NULL;
1858}
1859EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
1860
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001861/**
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001862 * snd_soc_add_component_controls - Add an array of controls to a component.
1863 *
1864 * @component: Component to add controls to
1865 * @controls: Array of controls to add
1866 * @num_controls: Number of elements in the array
1867 *
1868 * Return: 0 for success, else error.
1869 */
1870int snd_soc_add_component_controls(struct snd_soc_component *component,
1871 const struct snd_kcontrol_new *controls, unsigned int num_controls)
1872{
1873 struct snd_card *card = component->card->snd_card;
1874
1875 return snd_soc_add_controls(card, component->dev, controls,
1876 num_controls, component->name_prefix, component);
1877}
1878EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
1879
1880/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001881 * snd_soc_add_codec_controls - add an array of controls to a codec.
1882 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00001883 * duplicating this code.
1884 *
1885 * @codec: codec to add controls to
1886 * @controls: array of controls to add
1887 * @num_controls: number of elements in the array
1888 *
1889 * Return 0 for success, else error.
1890 */
Liam Girdwood022658b2012-02-03 17:43:09 +00001891int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001892 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Ian Molton3e8e1952009-01-09 00:23:21 +00001893{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001894 return snd_soc_add_component_controls(&codec->component, controls,
1895 num_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001896}
Liam Girdwood022658b2012-02-03 17:43:09 +00001897EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001898
1899/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001900 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00001901 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001902 *
1903 * @platform: platform to add controls to
1904 * @controls: array of controls to add
1905 * @num_controls: number of elements in the array
1906 *
1907 * Return 0 for success, else error.
1908 */
1909int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001910 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001911{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001912 return snd_soc_add_component_controls(&platform->component, controls,
1913 num_controls);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001914}
1915EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
1916
1917/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001918 * snd_soc_add_card_controls - add an array of controls to a SoC card.
1919 * Convenience function to add a list of controls.
1920 *
1921 * @soc_card: SoC card to add controls to
1922 * @controls: array of controls to add
1923 * @num_controls: number of elements in the array
1924 *
1925 * Return 0 for success, else error.
1926 */
1927int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
1928 const struct snd_kcontrol_new *controls, int num_controls)
1929{
1930 struct snd_card *card = soc_card->snd_card;
1931
1932 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
1933 NULL, soc_card);
1934}
1935EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
1936
1937/**
1938 * snd_soc_add_dai_controls - add an array of controls to a DAI.
1939 * Convienience function to add a list of controls.
1940 *
1941 * @dai: DAI to add controls to
1942 * @controls: array of controls to add
1943 * @num_controls: number of elements in the array
1944 *
1945 * Return 0 for success, else error.
1946 */
1947int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
1948 const struct snd_kcontrol_new *controls, int num_controls)
1949{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001950 struct snd_card *card = dai->component->card->snd_card;
Liam Girdwood022658b2012-02-03 17:43:09 +00001951
1952 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
1953 NULL, dai);
1954}
1955EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
1956
1957/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001958 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
1959 * @dai: DAI
1960 * @clk_id: DAI specific clock ID
1961 * @freq: new clock frequency in Hz
1962 * @dir: new clock direction - input/output.
1963 *
1964 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
1965 */
1966int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
1967 unsigned int freq, int dir)
1968{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001969 if (dai->driver && dai->driver->ops->set_sysclk)
1970 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00001971 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01001972 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00001973 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001974 else
Mark Brown1104a9c2014-01-15 19:04:19 +00001975 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001976}
1977EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
1978
1979/**
Mark Brownec4ee522011-03-07 20:58:11 +00001980 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
1981 * @codec: CODEC
1982 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01001983 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00001984 * @freq: new clock frequency in Hz
1985 * @dir: new clock direction - input/output.
1986 *
1987 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
1988 */
1989int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01001990 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00001991{
1992 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01001993 return codec->driver->set_sysclk(codec, clk_id, source,
1994 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00001995 else
Mark Brown1104a9c2014-01-15 19:04:19 +00001996 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00001997}
1998EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
1999
2000/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002001 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2002 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002003 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002004 * @div: new clock divisor.
2005 *
2006 * Configures the clock dividers. This is used to derive the best DAI bit and
2007 * frame clocks from the system or master clock. It's best to set the DAI bit
2008 * and frame clocks as low as possible to save system power.
2009 */
2010int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2011 int div_id, int div)
2012{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002013 if (dai->driver && dai->driver->ops->set_clkdiv)
2014 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002015 else
2016 return -EINVAL;
2017}
2018EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2019
2020/**
2021 * snd_soc_dai_set_pll - configure DAI PLL.
2022 * @dai: DAI
2023 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002024 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002025 * @freq_in: PLL input clock frequency in Hz
2026 * @freq_out: requested PLL output clock frequency in Hz
2027 *
2028 * Configures and enables PLL to generate output clock based on input clock.
2029 */
Mark Brown85488032009-09-05 18:52:16 +01002030int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2031 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002032{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002033 if (dai->driver && dai->driver->ops->set_pll)
2034 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002035 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002036 else if (dai->codec && dai->codec->driver->set_pll)
2037 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2038 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002039 else
2040 return -EINVAL;
2041}
2042EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2043
Mark Brownec4ee522011-03-07 20:58:11 +00002044/*
2045 * snd_soc_codec_set_pll - configure codec PLL.
2046 * @codec: CODEC
2047 * @pll_id: DAI specific PLL ID
2048 * @source: DAI specific source for the PLL
2049 * @freq_in: PLL input clock frequency in Hz
2050 * @freq_out: requested PLL output clock frequency in Hz
2051 *
2052 * Configures and enables PLL to generate output clock based on input clock.
2053 */
2054int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2055 unsigned int freq_in, unsigned int freq_out)
2056{
2057 if (codec->driver->set_pll)
2058 return codec->driver->set_pll(codec, pll_id, source,
2059 freq_in, freq_out);
2060 else
2061 return -EINVAL;
2062}
2063EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2064
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002065/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01002066 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2067 * @dai: DAI
2068 * @ratio Ratio of BCLK to Sample rate.
2069 *
2070 * Configures the DAI for a preset BCLK to sample rate ratio.
2071 */
2072int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2073{
2074 if (dai->driver && dai->driver->ops->set_bclk_ratio)
2075 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2076 else
2077 return -EINVAL;
2078}
2079EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2080
2081/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002082 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2083 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002084 * @fmt: SND_SOC_DAIFMT_ format value.
2085 *
2086 * Configures the DAI hardware format and clocking.
2087 */
2088int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2089{
Shawn Guo5e4ba562012-03-09 00:59:40 +08002090 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002091 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08002092 if (dai->driver->ops->set_fmt == NULL)
2093 return -ENOTSUPP;
2094 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002095}
2096EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2097
2098/**
Xiubo Lie5c21512014-03-21 14:17:12 +08002099 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08002100 * @slots: Number of slots in use.
2101 * @tx_mask: bitmask representing active TX slots.
2102 * @rx_mask: bitmask representing active RX slots.
2103 *
2104 * Generates the TDM tx and rx slot default masks for DAI.
2105 */
Xiubo Lie5c21512014-03-21 14:17:12 +08002106static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002107 unsigned int *tx_mask,
2108 unsigned int *rx_mask)
2109{
2110 if (*tx_mask || *rx_mask)
2111 return 0;
2112
2113 if (!slots)
2114 return -EINVAL;
2115
2116 *tx_mask = (1 << slots) - 1;
2117 *rx_mask = (1 << slots) - 1;
2118
2119 return 0;
2120}
2121
2122/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002123 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2124 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002125 * @tx_mask: bitmask representing active TX slots.
2126 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002127 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002128 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002129 *
2130 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2131 * specific.
2132 */
2133int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002134 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002135{
Xiubo Lie5c21512014-03-21 14:17:12 +08002136 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
2137 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002138 &tx_mask, &rx_mask);
2139 else
Xiubo Lie5c21512014-03-21 14:17:12 +08002140 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08002141
Benoit Cousson88bd8702014-07-08 23:19:34 +02002142 dai->tx_mask = tx_mask;
2143 dai->rx_mask = rx_mask;
2144
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002145 if (dai->driver && dai->driver->ops->set_tdm_slot)
2146 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002147 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002148 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08002149 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002150}
2151EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2152
2153/**
Barry Song472df3c2009-09-12 01:16:29 +08002154 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2155 * @dai: DAI
2156 * @tx_num: how many TX channels
2157 * @tx_slot: pointer to an array which imply the TX slot number channel
2158 * 0~num-1 uses
2159 * @rx_num: how many RX channels
2160 * @rx_slot: pointer to an array which imply the RX slot number channel
2161 * 0~num-1 uses
2162 *
2163 * configure the relationship between channel number and TDM slot number.
2164 */
2165int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2166 unsigned int tx_num, unsigned int *tx_slot,
2167 unsigned int rx_num, unsigned int *rx_slot)
2168{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002169 if (dai->driver && dai->driver->ops->set_channel_map)
2170 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002171 rx_num, rx_slot);
2172 else
2173 return -EINVAL;
2174}
2175EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2176
2177/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002178 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2179 * @dai: DAI
2180 * @tristate: tristate enable
2181 *
2182 * Tristates the DAI so that others can use it.
2183 */
2184int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2185{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002186 if (dai->driver && dai->driver->ops->set_tristate)
2187 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002188 else
2189 return -EINVAL;
2190}
2191EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2192
2193/**
2194 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2195 * @dai: DAI
2196 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00002197 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002198 *
2199 * Mutes the DAI DAC.
2200 */
Mark Brownda183962013-02-06 15:44:07 +00002201int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2202 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002203{
Mark Brownda183962013-02-06 15:44:07 +00002204 if (!dai->driver)
2205 return -ENOTSUPP;
2206
2207 if (dai->driver->ops->mute_stream)
2208 return dai->driver->ops->mute_stream(dai, mute, direction);
2209 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2210 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002211 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002212 else
Mark Brown04570c62012-04-13 19:16:03 +01002213 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002214}
2215EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2216
Benoit Cousson88bd8702014-07-08 23:19:34 +02002217static int snd_soc_init_multicodec(struct snd_soc_card *card,
2218 struct snd_soc_dai_link *dai_link)
2219{
2220 /* Legacy codec/codec_dai link is a single entry in multicodec */
2221 if (dai_link->codec_name || dai_link->codec_of_node ||
2222 dai_link->codec_dai_name) {
2223 dai_link->num_codecs = 1;
2224
2225 dai_link->codecs = devm_kzalloc(card->dev,
2226 sizeof(struct snd_soc_dai_link_component),
2227 GFP_KERNEL);
2228 if (!dai_link->codecs)
2229 return -ENOMEM;
2230
2231 dai_link->codecs[0].name = dai_link->codec_name;
2232 dai_link->codecs[0].of_node = dai_link->codec_of_node;
2233 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
2234 }
2235
2236 if (!dai_link->codecs) {
2237 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
2238 return -EINVAL;
2239 }
2240
2241 return 0;
2242}
2243
Mark Brownc5af3a22008-11-28 13:29:45 +00002244/**
2245 * snd_soc_register_card - Register a card with the ASoC core
2246 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002247 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002248 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002249 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302250int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002251{
Benoit Cousson88bd8702014-07-08 23:19:34 +02002252 int i, j, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002253
Mark Brownc5af3a22008-11-28 13:29:45 +00002254 if (!card->name || !card->dev)
2255 return -EINVAL;
2256
Stephen Warren5a504962011-12-21 10:40:59 -07002257 for (i = 0; i < card->num_links; i++) {
2258 struct snd_soc_dai_link *link = &card->dai_link[i];
2259
Benoit Cousson88bd8702014-07-08 23:19:34 +02002260 ret = snd_soc_init_multicodec(card, link);
2261 if (ret) {
2262 dev_err(card->dev, "ASoC: failed to init multicodec\n");
2263 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07002264 }
Benoit Cousson88bd8702014-07-08 23:19:34 +02002265
2266 for (j = 0; j < link->num_codecs; j++) {
2267 /*
2268 * Codec must be specified by 1 of name or OF node,
2269 * not both or neither.
2270 */
2271 if (!!link->codecs[j].name ==
2272 !!link->codecs[j].of_node) {
2273 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
2274 link->name);
2275 return -EINVAL;
2276 }
2277 /* Codec DAI name must be specified */
2278 if (!link->codecs[j].dai_name) {
2279 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
2280 link->name);
2281 return -EINVAL;
2282 }
Stephen Warrenbc926572012-05-25 18:22:11 -06002283 }
Stephen Warren5a504962011-12-21 10:40:59 -07002284
2285 /*
2286 * Platform may be specified by either name or OF node, but
2287 * can be left unspecified, and a dummy platform will be used.
2288 */
2289 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002290 dev_err(card->dev,
2291 "ASoC: Both platform name/of_node are set for %s\n",
2292 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002293 return -EINVAL;
2294 }
2295
2296 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06002297 * CPU device may be specified by either name or OF node, but
2298 * can be left unspecified, and will be matched based on DAI
2299 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07002300 */
Stephen Warrenbc926572012-05-25 18:22:11 -06002301 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002302 dev_err(card->dev,
2303 "ASoC: Neither/both cpu name/of_node are set for %s\n",
2304 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06002305 return -EINVAL;
2306 }
2307 /*
2308 * At least one of CPU DAI name or CPU device name/node must be
2309 * specified
2310 */
2311 if (!link->cpu_dai_name &&
2312 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002313 dev_err(card->dev,
2314 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
2315 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002316 return -EINVAL;
2317 }
2318 }
2319
Mark Browned77cc12011-05-03 18:25:34 +01002320 dev_set_drvdata(card->dev, card);
2321
Stephen Warren111c6412011-01-28 14:26:35 -07002322 snd_soc_initialize_card_lists(card);
2323
Vinod Koul150dd2f2011-01-13 22:48:32 +05302324 soc_init_card_debugfs(card);
2325
Mark Brown181a6892012-03-14 20:18:49 +00002326 card->rtd = devm_kzalloc(card->dev,
2327 sizeof(struct snd_soc_pcm_runtime) *
2328 (card->num_links + card->num_aux_devs),
2329 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002330 if (card->rtd == NULL)
2331 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01002332 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002333 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002334
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002335 for (i = 0; i < card->num_links; i++) {
2336 card->rtd[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002337 card->rtd[i].dai_link = &card->dai_link[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02002338 card->rtd[i].codec_dais = devm_kzalloc(card->dev,
2339 sizeof(struct snd_soc_dai *) *
2340 (card->rtd[i].dai_link->num_codecs),
2341 GFP_KERNEL);
2342 if (card->rtd[i].codec_dais == NULL)
2343 return -ENOMEM;
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002344 }
2345
2346 for (i = 0; i < card->num_aux_devs; i++)
2347 card->rtd_aux[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002348
Mark Browndb432b42011-10-03 21:06:40 +01002349 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00002350 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002351 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002352 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002353
Mark Brownb19e6e72012-03-14 21:18:39 +00002354 ret = snd_soc_instantiate_card(card);
2355 if (ret != 0)
2356 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002357
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002358 /* deactivate pins to sleep state */
2359 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002360 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2361 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2362 int j;
2363
2364 for (j = 0; j < rtd->num_codecs; j++) {
2365 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2366 if (!codec_dai->active)
2367 pinctrl_pm_select_sleep_state(codec_dai->dev);
2368 }
2369
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002370 if (!cpu_dai->active)
2371 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2372 }
2373
Mark Brownb19e6e72012-03-14 21:18:39 +00002374 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00002375}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302376EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002377
2378/**
2379 * snd_soc_unregister_card - Unregister a card with the ASoC core
2380 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002381 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002382 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002383 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302384int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002385{
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002386 if (card->instantiated) {
2387 card->instantiated = false;
Lars-Peter Clausen1c325f72014-09-04 19:44:05 +02002388 snd_soc_dapm_shutdown(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302389 soc_cleanup_card_resources(card);
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002390 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002391 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00002392
2393 return 0;
2394}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302395EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002396
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002397/*
2398 * Simplify DAI link configuration by removing ".-1" from device names
2399 * and sanitizing names.
2400 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002401static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002402{
2403 char *found, name[NAME_SIZE];
2404 int id1, id2;
2405
2406 if (dev_name(dev) == NULL)
2407 return NULL;
2408
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002409 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002410
2411 /* are we a "%s.%d" name (platform and SPI components) */
2412 found = strstr(name, dev->driver->name);
2413 if (found) {
2414 /* get ID */
2415 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2416
2417 /* discard ID from name if ID == -1 */
2418 if (*id == -1)
2419 found[strlen(dev->driver->name)] = '\0';
2420 }
2421
2422 } else {
2423 /* I2C component devices are named "bus-addr" */
2424 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2425 char tmp[NAME_SIZE];
2426
2427 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002428 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002429
2430 /* sanitize component name for DAI link creation */
2431 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002432 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002433 } else
2434 *id = 0;
2435 }
2436
2437 return kstrdup(name, GFP_KERNEL);
2438}
2439
2440/*
2441 * Simplify DAI link naming for single devices with multiple DAIs by removing
2442 * any ".-1" and using the DAI name (instead of device name).
2443 */
2444static inline char *fmt_multiple_name(struct device *dev,
2445 struct snd_soc_dai_driver *dai_drv)
2446{
2447 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002448 dev_err(dev,
2449 "ASoC: error - multiple DAI %s registered with no name\n",
2450 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002451 return NULL;
2452 }
2453
2454 return kstrdup(dai_drv->name, GFP_KERNEL);
2455}
2456
Mark Brown91151712008-11-30 23:31:24 +00002457/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002458 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002459 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002460 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00002461 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002462static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00002463{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002464 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00002465
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002466 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002467 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2468 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002469 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002470 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002471 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002472 }
Mark Brown91151712008-11-30 23:31:24 +00002473}
Mark Brown91151712008-11-30 23:31:24 +00002474
2475/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002476 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002477 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002478 * @component: The component the DAIs are registered for
2479 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00002480 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002481 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
2482 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00002483 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002484static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002485 struct snd_soc_dai_driver *dai_drv, size_t count,
2486 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00002487{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002488 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002489 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002490 unsigned int i;
2491 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002492
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002493 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00002494
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002495 component->dai_drv = dai_drv;
2496 component->num_dai = count;
2497
Mark Brown91151712008-11-30 23:31:24 +00002498 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002499
2500 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08002501 if (dai == NULL) {
2502 ret = -ENOMEM;
2503 goto err;
2504 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002505
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002506 /*
2507 * Back in the old days when we still had component-less DAIs,
2508 * instead of having a static name, component-less DAIs would
2509 * inherit the name of the parent device so it is possible to
2510 * register multiple instances of the DAI. We still need to keep
2511 * the same naming style even though those DAIs are not
2512 * component-less anymore.
2513 */
2514 if (count == 1 && legacy_dai_naming) {
2515 dai->name = fmt_single_name(dev, &dai->id);
2516 } else {
2517 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
2518 if (dai_drv[i].id)
2519 dai->id = dai_drv[i].id;
2520 else
2521 dai->id = i;
2522 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002523 if (dai->name == NULL) {
2524 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002525 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00002526 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002527 }
2528
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002529 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002530 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002531 dai->driver = &dai_drv[i];
2532 if (!dai->driver->ops)
2533 dai->driver->ops = &null_dai_ops;
2534
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01002535 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01002536
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002537 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00002538 }
2539
2540 return 0;
2541
2542err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002543 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00002544
2545 return ret;
2546}
Mark Brown91151712008-11-30 23:31:24 +00002547
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002548static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
2549 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002550{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002551 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002552
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002553 component->driver->seq_notifier(component, type, subseq);
2554}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002555
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002556static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
2557 int event)
2558{
2559 struct snd_soc_component *component = dapm->component;
2560
2561 return component->driver->stream_event(component, event);
2562}
2563
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002564static int snd_soc_component_initialize(struct snd_soc_component *component,
2565 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002566{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002567 struct snd_soc_dapm_context *dapm;
2568
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002569 component->name = fmt_single_name(dev, &component->id);
2570 if (!component->name) {
2571 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002572 return -ENOMEM;
2573 }
2574
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002575 component->dev = dev;
2576 component->driver = driver;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002577 component->probe = component->driver->probe;
2578 component->remove = component->driver->remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002579
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002580 if (!component->dapm_ptr)
2581 component->dapm_ptr = &component->dapm;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002582
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002583 dapm = component->dapm_ptr;
2584 dapm->dev = dev;
2585 dapm->component = component;
2586 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02002587 dapm->idle_bias_off = true;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002588 if (driver->seq_notifier)
2589 dapm->seq_notifier = snd_soc_component_seq_notifier;
2590 if (driver->stream_event)
2591 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002592
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002593 component->controls = driver->controls;
2594 component->num_controls = driver->num_controls;
2595 component->dapm_widgets = driver->dapm_widgets;
2596 component->num_dapm_widgets = driver->num_dapm_widgets;
2597 component->dapm_routes = driver->dapm_routes;
2598 component->num_dapm_routes = driver->num_dapm_routes;
2599
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002600 INIT_LIST_HEAD(&component->dai_list);
2601 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002602
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002603 return 0;
2604}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002605
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002606static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002607{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002608 int val_bytes = regmap_get_val_bytes(component->regmap);
2609
2610 /* Errors are legitimate for non-integer byte multiples */
2611 if (val_bytes > 0)
2612 component->val_bytes = val_bytes;
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002613}
2614
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002615#ifdef CONFIG_REGMAP
2616
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002617/**
2618 * snd_soc_component_init_regmap() - Initialize regmap instance for the component
2619 * @component: The component for which to initialize the regmap instance
2620 * @regmap: The regmap instance that should be used by the component
2621 *
2622 * This function allows deferred assignment of the regmap instance that is
2623 * associated with the component. Only use this if the regmap instance is not
2624 * yet ready when the component is registered. The function must also be called
2625 * before the first IO attempt of the component.
2626 */
2627void snd_soc_component_init_regmap(struct snd_soc_component *component,
2628 struct regmap *regmap)
2629{
2630 component->regmap = regmap;
2631 snd_soc_component_setup_regmap(component);
2632}
2633EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
2634
2635/**
2636 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the component
2637 * @component: The component for which to de-initialize the regmap instance
2638 *
2639 * Calls regmap_exit() on the regmap instance associated to the component and
2640 * removes the regmap instance from the component.
2641 *
2642 * This function should only be used if snd_soc_component_init_regmap() was used
2643 * to initialize the regmap instance.
2644 */
2645void snd_soc_component_exit_regmap(struct snd_soc_component *component)
2646{
2647 regmap_exit(component->regmap);
2648 component->regmap = NULL;
2649}
2650EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
2651
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002652#endif
2653
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002654static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
2655{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002656 if (!component->write && !component->read) {
2657 if (!component->regmap)
2658 component->regmap = dev_get_regmap(component->dev, NULL);
2659 if (component->regmap)
2660 snd_soc_component_setup_regmap(component);
2661 }
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002662
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002663 list_add(&component->list, &component_list);
2664}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002665
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002666static void snd_soc_component_add(struct snd_soc_component *component)
2667{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002668 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002669 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002670 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002671}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002672
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002673static void snd_soc_component_cleanup(struct snd_soc_component *component)
2674{
2675 snd_soc_unregister_dais(component);
2676 kfree(component->name);
2677}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002678
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002679static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
2680{
2681 list_del(&component->list);
2682}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002683
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002684static void snd_soc_component_del(struct snd_soc_component *component)
2685{
2686 mutex_lock(&client_mutex);
2687 snd_soc_component_del_unlocked(component);
2688 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002689}
2690
2691int snd_soc_register_component(struct device *dev,
2692 const struct snd_soc_component_driver *cmpnt_drv,
2693 struct snd_soc_dai_driver *dai_drv,
2694 int num_dai)
2695{
2696 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002697 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002698
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002699 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002700 if (!cmpnt) {
2701 dev_err(dev, "ASoC: Failed to allocate memory\n");
2702 return -ENOMEM;
2703 }
2704
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002705 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
2706 if (ret)
2707 goto err_free;
2708
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002709 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002710 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002711
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002712 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
2713 if (ret < 0) {
2714 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
2715 goto err_cleanup;
2716 }
2717
2718 snd_soc_component_add(cmpnt);
2719
2720 return 0;
2721
2722err_cleanup:
2723 snd_soc_component_cleanup(cmpnt);
2724err_free:
2725 kfree(cmpnt);
2726 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002727}
2728EXPORT_SYMBOL_GPL(snd_soc_register_component);
2729
2730/**
2731 * snd_soc_unregister_component - Unregister a component from the ASoC core
2732 *
2733 */
2734void snd_soc_unregister_component(struct device *dev)
2735{
2736 struct snd_soc_component *cmpnt;
2737
2738 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002739 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002740 goto found;
2741 }
2742 return;
2743
2744found:
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002745 snd_soc_component_del(cmpnt);
2746 snd_soc_component_cleanup(cmpnt);
2747 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002748}
2749EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
2750
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002751static int snd_soc_platform_drv_probe(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002752{
2753 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2754
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002755 return platform->driver->probe(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002756}
2757
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002758static void snd_soc_platform_drv_remove(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002759{
2760 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2761
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002762 platform->driver->remove(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002763}
2764
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002765/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002766 * snd_soc_add_platform - Add a platform to the ASoC core
2767 * @dev: The parent device for the platform
2768 * @platform: The platform to add
2769 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00002770 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002771int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57db82013-03-27 12:02:22 +01002772 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002773{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002774 int ret;
2775
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002776 ret = snd_soc_component_initialize(&platform->component,
2777 &platform_drv->component_driver, dev);
2778 if (ret)
2779 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002780
2781 platform->dev = dev;
2782 platform->driver = platform_drv;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002783
2784 if (platform_drv->probe)
2785 platform->component.probe = snd_soc_platform_drv_probe;
2786 if (platform_drv->remove)
2787 platform->component.remove = snd_soc_platform_drv_remove;
Mark Brown12a48a8c2008-12-03 19:40:30 +00002788
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02002789#ifdef CONFIG_DEBUG_FS
2790 platform->component.debugfs_prefix = "platform";
2791#endif
Mark Brown12a48a8c2008-12-03 19:40:30 +00002792
2793 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002794 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002795 list_add(&platform->list, &platform_list);
2796 mutex_unlock(&client_mutex);
2797
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002798 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
2799 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002800
2801 return 0;
2802}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002803EXPORT_SYMBOL_GPL(snd_soc_add_platform);
2804
2805/**
2806 * snd_soc_register_platform - Register a platform with the ASoC core
2807 *
2808 * @platform: platform to register
2809 */
2810int snd_soc_register_platform(struct device *dev,
2811 const struct snd_soc_platform_driver *platform_drv)
2812{
2813 struct snd_soc_platform *platform;
2814 int ret;
2815
2816 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
2817
2818 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
2819 if (platform == NULL)
2820 return -ENOMEM;
2821
2822 ret = snd_soc_add_platform(dev, platform, platform_drv);
2823 if (ret)
2824 kfree(platform);
2825
2826 return ret;
2827}
Mark Brown12a48a8c2008-12-03 19:40:30 +00002828EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2829
2830/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002831 * snd_soc_remove_platform - Remove a platform from the ASoC core
2832 * @platform: the platform to remove
2833 */
2834void snd_soc_remove_platform(struct snd_soc_platform *platform)
2835{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002836
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002837 mutex_lock(&client_mutex);
2838 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002839 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002840 mutex_unlock(&client_mutex);
2841
2842 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002843 platform->component.name);
Daniel Mackdecc27b2014-10-07 13:41:23 +02002844
2845 snd_soc_component_cleanup(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002846}
2847EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
2848
2849struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
2850{
2851 struct snd_soc_platform *platform;
2852
2853 list_for_each_entry(platform, &platform_list, list) {
2854 if (dev == platform->dev)
2855 return platform;
2856 }
2857
2858 return NULL;
2859}
2860EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
2861
2862/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00002863 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2864 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002865 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002866 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002867void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002868{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002869 struct snd_soc_platform *platform;
2870
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002871 platform = snd_soc_lookup_platform(dev);
2872 if (!platform)
2873 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002874
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002875 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002876 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002877}
2878EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2879
Mark Brown151ab222009-05-09 16:22:58 +01002880static u64 codec_format_map[] = {
2881 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2882 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2883 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2884 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2885 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2886 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2887 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2888 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2889 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2890 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2891 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2892 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2893 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2894 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2895 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2896 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2897};
2898
2899/* Fix up the DAI formats for endianness: codecs don't actually see
2900 * the endianness of the data but we're using the CPU format
2901 * definitions which do need to include endianness so we ensure that
2902 * codec DAIs always have both big and little endian variants set.
2903 */
2904static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2905{
2906 int i;
2907
2908 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2909 if (stream->formats & codec_format_map[i])
2910 stream->formats |= codec_format_map[i];
2911}
2912
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002913static int snd_soc_codec_drv_probe(struct snd_soc_component *component)
2914{
2915 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2916
2917 return codec->driver->probe(codec);
2918}
2919
2920static void snd_soc_codec_drv_remove(struct snd_soc_component *component)
2921{
2922 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2923
2924 codec->driver->remove(codec);
2925}
2926
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002927static int snd_soc_codec_drv_write(struct snd_soc_component *component,
2928 unsigned int reg, unsigned int val)
2929{
2930 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2931
2932 return codec->driver->write(codec, reg, val);
2933}
2934
2935static int snd_soc_codec_drv_read(struct snd_soc_component *component,
2936 unsigned int reg, unsigned int *val)
2937{
2938 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2939
2940 *val = codec->driver->read(codec, reg);
2941
2942 return 0;
2943}
2944
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02002945static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
2946 enum snd_soc_bias_level level)
2947{
2948 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
2949
2950 return codec->driver->set_bias_level(codec, level);
2951}
2952
Mark Brown0d0cf002008-12-10 14:32:45 +00002953/**
2954 * snd_soc_register_codec - Register a codec with the ASoC core
2955 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002956 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002957 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002958int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00002959 const struct snd_soc_codec_driver *codec_drv,
2960 struct snd_soc_dai_driver *dai_drv,
2961 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00002962{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002963 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002964 struct snd_soc_dai *dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002965 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01002966
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002967 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00002968
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002969 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
2970 if (codec == NULL)
2971 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00002972
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002973 codec->component.dapm_ptr = &codec->dapm;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002974 codec->component.codec = codec;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002975
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002976 ret = snd_soc_component_initialize(&codec->component,
2977 &codec_drv->component_driver, dev);
2978 if (ret)
2979 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01002980
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002981 if (codec_drv->controls) {
2982 codec->component.controls = codec_drv->controls;
2983 codec->component.num_controls = codec_drv->num_controls;
2984 }
2985 if (codec_drv->dapm_widgets) {
2986 codec->component.dapm_widgets = codec_drv->dapm_widgets;
2987 codec->component.num_dapm_widgets = codec_drv->num_dapm_widgets;
2988 }
2989 if (codec_drv->dapm_routes) {
2990 codec->component.dapm_routes = codec_drv->dapm_routes;
2991 codec->component.num_dapm_routes = codec_drv->num_dapm_routes;
2992 }
2993
2994 if (codec_drv->probe)
2995 codec->component.probe = snd_soc_codec_drv_probe;
2996 if (codec_drv->remove)
2997 codec->component.remove = snd_soc_codec_drv_remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002998 if (codec_drv->write)
2999 codec->component.write = snd_soc_codec_drv_write;
3000 if (codec_drv->read)
3001 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003002 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02003003 codec->dapm.idle_bias_off = codec_drv->idle_bias_off;
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02003004 codec->dapm.suspend_bias_off = codec_drv->suspend_bias_off;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003005 if (codec_drv->seq_notifier)
3006 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003007 if (codec_drv->set_bias_level)
3008 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003009 codec->dev = dev;
3010 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003011 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003012
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02003013#ifdef CONFIG_DEBUG_FS
3014 codec->component.init_debugfs = soc_init_codec_debugfs;
3015 codec->component.debugfs_prefix = "codec";
3016#endif
Xiubo Lia39f75f2014-03-26 13:40:23 +08003017
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003018 if (codec_drv->get_regmap)
3019 codec->component.regmap = codec_drv->get_regmap(dev);
Xiubo Lia39f75f2014-03-26 13:40:23 +08003020
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003021 for (i = 0; i < num_dai; i++) {
3022 fixup_codec_formats(&dai_drv[i].playback);
3023 fixup_codec_formats(&dai_drv[i].capture);
3024 }
3025
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003026 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
3027 if (ret < 0) {
3028 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
3029 goto err_cleanup;
3030 }
3031
3032 list_for_each_entry(dai, &codec->component.dai_list, list)
3033 dai->codec = codec;
3034
Mark Brown054880f2012-04-09 17:29:19 +01003035 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003036 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01003037 list_add(&codec->list, &codec_list);
3038 mutex_unlock(&client_mutex);
3039
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003040 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
3041 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003042 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003043
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003044err_cleanup:
3045 snd_soc_component_cleanup(&codec->component);
3046err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003047 kfree(codec);
3048 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003049}
3050EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3051
3052/**
3053 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3054 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003055 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003056 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003057void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003058{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003059 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003060
3061 list_for_each_entry(codec, &codec_list, list) {
3062 if (dev == codec->dev)
3063 goto found;
3064 }
3065 return;
3066
3067found:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003068
Mark Brown0d0cf002008-12-10 14:32:45 +00003069 mutex_lock(&client_mutex);
3070 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003071 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00003072 mutex_unlock(&client_mutex);
3073
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003074 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
3075 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003076
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003077 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003078 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003079 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003080}
3081EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3082
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003083/* Retrieve a card's name from device tree */
3084int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3085 const char *propname)
3086{
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303087 struct device_node *np;
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003088 int ret;
3089
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303090 if (!card->dev) {
3091 pr_err("card->dev is not set before calling %s\n", __func__);
3092 return -EINVAL;
3093 }
3094
3095 np = card->dev->of_node;
3096
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003097 ret = of_property_read_string_index(np, propname, 0, &card->name);
3098 /*
3099 * EINVAL means the property does not exist. This is fine providing
3100 * card->name was previously set, which is checked later in
3101 * snd_soc_register_card.
3102 */
3103 if (ret < 0 && ret != -EINVAL) {
3104 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003105 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003106 propname, ret);
3107 return ret;
3108 }
3109
3110 return 0;
3111}
3112EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3113
Xiubo Li9a6d4862014-02-08 15:59:52 +08003114static const struct snd_soc_dapm_widget simple_widgets[] = {
3115 SND_SOC_DAPM_MIC("Microphone", NULL),
3116 SND_SOC_DAPM_LINE("Line", NULL),
3117 SND_SOC_DAPM_HP("Headphone", NULL),
3118 SND_SOC_DAPM_SPK("Speaker", NULL),
3119};
3120
3121int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
3122 const char *propname)
3123{
3124 struct device_node *np = card->dev->of_node;
3125 struct snd_soc_dapm_widget *widgets;
3126 const char *template, *wname;
3127 int i, j, num_widgets, ret;
3128
3129 num_widgets = of_property_count_strings(np, propname);
3130 if (num_widgets < 0) {
3131 dev_err(card->dev,
3132 "ASoC: Property '%s' does not exist\n", propname);
3133 return -EINVAL;
3134 }
3135 if (num_widgets & 1) {
3136 dev_err(card->dev,
3137 "ASoC: Property '%s' length is not even\n", propname);
3138 return -EINVAL;
3139 }
3140
3141 num_widgets /= 2;
3142 if (!num_widgets) {
3143 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3144 propname);
3145 return -EINVAL;
3146 }
3147
3148 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3149 GFP_KERNEL);
3150 if (!widgets) {
3151 dev_err(card->dev,
3152 "ASoC: Could not allocate memory for widgets\n");
3153 return -ENOMEM;
3154 }
3155
3156 for (i = 0; i < num_widgets; i++) {
3157 ret = of_property_read_string_index(np, propname,
3158 2 * i, &template);
3159 if (ret) {
3160 dev_err(card->dev,
3161 "ASoC: Property '%s' index %d read error:%d\n",
3162 propname, 2 * i, ret);
3163 return -EINVAL;
3164 }
3165
3166 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3167 if (!strncmp(template, simple_widgets[j].name,
3168 strlen(simple_widgets[j].name))) {
3169 widgets[i] = simple_widgets[j];
3170 break;
3171 }
3172 }
3173
3174 if (j >= ARRAY_SIZE(simple_widgets)) {
3175 dev_err(card->dev,
3176 "ASoC: DAPM widget '%s' is not supported\n",
3177 template);
3178 return -EINVAL;
3179 }
3180
3181 ret = of_property_read_string_index(np, propname,
3182 (2 * i) + 1,
3183 &wname);
3184 if (ret) {
3185 dev_err(card->dev,
3186 "ASoC: Property '%s' index %d read error:%d\n",
3187 propname, (2 * i) + 1, ret);
3188 return -EINVAL;
3189 }
3190
3191 widgets[i].name = wname;
3192 }
3193
3194 card->dapm_widgets = widgets;
3195 card->num_dapm_widgets = num_widgets;
3196
3197 return 0;
3198}
3199EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
3200
Xiubo Li89c67852014-02-14 09:34:35 +08003201int snd_soc_of_parse_tdm_slot(struct device_node *np,
3202 unsigned int *slots,
3203 unsigned int *slot_width)
3204{
3205 u32 val;
3206 int ret;
3207
3208 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3209 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3210 if (ret)
3211 return ret;
3212
3213 if (slots)
3214 *slots = val;
3215 }
3216
3217 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3218 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3219 if (ret)
3220 return ret;
3221
3222 if (slot_width)
3223 *slot_width = val;
3224 }
3225
3226 return 0;
3227}
3228EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3229
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003230int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3231 const char *propname)
3232{
3233 struct device_node *np = card->dev->of_node;
Mark Browne3b1e6a2014-12-18 11:46:38 +00003234 int num_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003235 struct snd_soc_dapm_route *routes;
3236 int i, ret;
3237
3238 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08003239 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003240 dev_err(card->dev,
3241 "ASoC: Property '%s' does not exist or its length is not even\n",
3242 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003243 return -EINVAL;
3244 }
3245 num_routes /= 2;
3246 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003247 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003248 propname);
3249 return -EINVAL;
3250 }
3251
Mark Browne3b1e6a2014-12-18 11:46:38 +00003252 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003253 GFP_KERNEL);
3254 if (!routes) {
3255 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003256 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003257 return -EINVAL;
3258 }
3259
3260 for (i = 0; i < num_routes; i++) {
3261 ret = of_property_read_string_index(np, propname,
Mark Browne3b1e6a2014-12-18 11:46:38 +00003262 2 * i, &routes[i].sink);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003263 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09003264 dev_err(card->dev,
3265 "ASoC: Property '%s' index %d could not be read: %d\n",
3266 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003267 return -EINVAL;
3268 }
3269 ret = of_property_read_string_index(np, propname,
Mark Browne3b1e6a2014-12-18 11:46:38 +00003270 (2 * i) + 1, &routes[i].source);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003271 if (ret) {
3272 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09003273 "ASoC: Property '%s' index %d could not be read: %d\n",
3274 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003275 return -EINVAL;
3276 }
3277 }
3278
Mark Browne3b1e6a2014-12-18 11:46:38 +00003279 card->num_dapm_routes = num_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003280 card->dapm_routes = routes;
3281
3282 return 0;
3283}
3284EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3285
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003286unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02003287 const char *prefix,
3288 struct device_node **bitclkmaster,
3289 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003290{
3291 int ret, i;
3292 char prop[128];
3293 unsigned int format = 0;
3294 int bit, frame;
3295 const char *str;
3296 struct {
3297 char *name;
3298 unsigned int val;
3299 } of_fmt_table[] = {
3300 { "i2s", SND_SOC_DAIFMT_I2S },
3301 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
3302 { "left_j", SND_SOC_DAIFMT_LEFT_J },
3303 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
3304 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
3305 { "ac97", SND_SOC_DAIFMT_AC97 },
3306 { "pdm", SND_SOC_DAIFMT_PDM},
3307 { "msb", SND_SOC_DAIFMT_MSB },
3308 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003309 };
3310
3311 if (!prefix)
3312 prefix = "";
3313
3314 /*
3315 * check "[prefix]format = xxx"
3316 * SND_SOC_DAIFMT_FORMAT_MASK area
3317 */
3318 snprintf(prop, sizeof(prop), "%sformat", prefix);
3319 ret = of_property_read_string(np, prop, &str);
3320 if (ret == 0) {
3321 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3322 if (strcmp(str, of_fmt_table[i].name) == 0) {
3323 format |= of_fmt_table[i].val;
3324 break;
3325 }
3326 }
3327 }
3328
3329 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003330 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003331 * SND_SOC_DAIFMT_CLOCK_MASK area
3332 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003333 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
3334 if (of_get_property(np, prop, NULL))
3335 format |= SND_SOC_DAIFMT_CONT;
3336 else
3337 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003338
3339 /*
3340 * check "[prefix]bitclock-inversion"
3341 * check "[prefix]frame-inversion"
3342 * SND_SOC_DAIFMT_INV_MASK area
3343 */
3344 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3345 bit = !!of_get_property(np, prop, NULL);
3346
3347 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3348 frame = !!of_get_property(np, prop, NULL);
3349
3350 switch ((bit << 4) + frame) {
3351 case 0x11:
3352 format |= SND_SOC_DAIFMT_IB_IF;
3353 break;
3354 case 0x10:
3355 format |= SND_SOC_DAIFMT_IB_NF;
3356 break;
3357 case 0x01:
3358 format |= SND_SOC_DAIFMT_NB_IF;
3359 break;
3360 default:
3361 /* SND_SOC_DAIFMT_NB_NF is default */
3362 break;
3363 }
3364
3365 /*
3366 * check "[prefix]bitclock-master"
3367 * check "[prefix]frame-master"
3368 * SND_SOC_DAIFMT_MASTER_MASK area
3369 */
3370 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3371 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003372 if (bit && bitclkmaster)
3373 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003374
3375 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3376 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003377 if (frame && framemaster)
3378 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003379
3380 switch ((bit << 4) + frame) {
3381 case 0x11:
3382 format |= SND_SOC_DAIFMT_CBM_CFM;
3383 break;
3384 case 0x10:
3385 format |= SND_SOC_DAIFMT_CBM_CFS;
3386 break;
3387 case 0x01:
3388 format |= SND_SOC_DAIFMT_CBS_CFM;
3389 break;
3390 default:
3391 format |= SND_SOC_DAIFMT_CBS_CFS;
3392 break;
3393 }
3394
3395 return format;
3396}
3397EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3398
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003399static int snd_soc_get_dai_name(struct of_phandle_args *args,
3400 const char **dai_name)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003401{
3402 struct snd_soc_component *pos;
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003403 int ret = -EPROBE_DEFER;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003404
3405 mutex_lock(&client_mutex);
3406 list_for_each_entry(pos, &component_list, list) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003407 if (pos->dev->of_node != args->np)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003408 continue;
3409
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003410 if (pos->driver->of_xlate_dai_name) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003411 ret = pos->driver->of_xlate_dai_name(pos,
3412 args,
3413 dai_name);
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003414 } else {
3415 int id = -1;
3416
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003417 switch (args->args_count) {
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003418 case 0:
3419 id = 0; /* same as dai_drv[0] */
3420 break;
3421 case 1:
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003422 id = args->args[0];
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003423 break;
3424 default:
3425 /* not supported */
3426 break;
3427 }
3428
3429 if (id < 0 || id >= pos->num_dai) {
3430 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08003431 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003432 }
Xiubo Lie41975e2013-12-20 14:39:51 +08003433
3434 ret = 0;
3435
3436 *dai_name = pos->dai_drv[id].name;
3437 if (!*dai_name)
3438 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003439 }
3440
Kuninori Morimotocb470082013-09-10 17:39:56 -07003441 break;
3442 }
3443 mutex_unlock(&client_mutex);
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003444 return ret;
3445}
3446
3447int snd_soc_of_get_dai_name(struct device_node *of_node,
3448 const char **dai_name)
3449{
3450 struct of_phandle_args args;
3451 int ret;
3452
3453 ret = of_parse_phandle_with_args(of_node, "sound-dai",
3454 "#sound-dai-cells", 0, &args);
3455 if (ret)
3456 return ret;
3457
3458 ret = snd_soc_get_dai_name(&args, dai_name);
Kuninori Morimotocb470082013-09-10 17:39:56 -07003459
3460 of_node_put(args.np);
3461
3462 return ret;
3463}
3464EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3465
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003466/*
3467 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3468 * @dev: Card device
3469 * @of_node: Device node
3470 * @dai_link: DAI link
3471 *
3472 * Builds an array of CODEC DAI components from the DAI link property
3473 * 'sound-dai'.
3474 * The array is set in the DAI link and the number of DAIs is set accordingly.
3475 * The device nodes in the array (of_node) must be dereferenced by the caller.
3476 *
3477 * Returns 0 for success
3478 */
3479int snd_soc_of_get_dai_link_codecs(struct device *dev,
3480 struct device_node *of_node,
3481 struct snd_soc_dai_link *dai_link)
3482{
3483 struct of_phandle_args args;
3484 struct snd_soc_dai_link_component *component;
3485 char *name;
3486 int index, num_codecs, ret;
3487
3488 /* Count the number of CODECs */
3489 name = "sound-dai";
3490 num_codecs = of_count_phandle_with_args(of_node, name,
3491 "#sound-dai-cells");
3492 if (num_codecs <= 0) {
3493 if (num_codecs == -ENOENT)
3494 dev_err(dev, "No 'sound-dai' property\n");
3495 else
3496 dev_err(dev, "Bad phandle in 'sound-dai'\n");
3497 return num_codecs;
3498 }
3499 component = devm_kzalloc(dev,
3500 sizeof *component * num_codecs,
3501 GFP_KERNEL);
3502 if (!component)
3503 return -ENOMEM;
3504 dai_link->codecs = component;
3505 dai_link->num_codecs = num_codecs;
3506
3507 /* Parse the list */
3508 for (index = 0, component = dai_link->codecs;
3509 index < dai_link->num_codecs;
3510 index++, component++) {
3511 ret = of_parse_phandle_with_args(of_node, name,
3512 "#sound-dai-cells",
3513 index, &args);
3514 if (ret)
3515 goto err;
3516 component->of_node = args.np;
3517 ret = snd_soc_get_dai_name(&args, &component->dai_name);
3518 if (ret < 0)
3519 goto err;
3520 }
3521 return 0;
3522err:
3523 for (index = 0, component = dai_link->codecs;
3524 index < dai_link->num_codecs;
3525 index++, component++) {
3526 if (!component->of_node)
3527 break;
3528 of_node_put(component->of_node);
3529 component->of_node = NULL;
3530 }
3531 dai_link->codecs = NULL;
3532 dai_link->num_codecs = 0;
3533 return ret;
3534}
3535EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3536
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003537static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003538{
Mark Brown384c89e2008-12-03 17:34:03 +00003539#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003540 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3541 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02003542 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003543 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003544 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003545
Mark Brown8a9dab12011-01-10 22:25:21 +00003546 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003547 &codec_list_fops))
3548 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3549
Mark Brown8a9dab12011-01-10 22:25:21 +00003550 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003551 &dai_list_fops))
3552 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003553
Mark Brown8a9dab12011-01-10 22:25:21 +00003554 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003555 &platform_list_fops))
3556 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003557#endif
3558
Mark Brownfb257892011-04-28 10:57:54 +01003559 snd_soc_util_init();
3560
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003561 return platform_driver_register(&soc_driver);
3562}
Mark Brown4abe8e12010-10-12 17:41:03 +01003563module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003564
Mark Brown7d8c16a2008-11-30 22:11:24 +00003565static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003566{
Mark Brownfb257892011-04-28 10:57:54 +01003567 snd_soc_util_exit();
3568
Mark Brown384c89e2008-12-03 17:34:03 +00003569#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003570 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003571#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003572 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003573}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003574module_exit(snd_soc_exit);
3575
3576/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003577MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003578MODULE_DESCRIPTION("ALSA SoC Core");
3579MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003580MODULE_ALIAS("platform:soc-audio");