blob: 985052b3fbed375dee764a64b63852998532d5e2 [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",
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001775 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001776 },
1777 .probe = soc_probe,
1778 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001779};
1780
Mark Brown096e49d2009-07-05 15:12:22 +01001781/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001782 * snd_soc_cnew - create new control
1783 * @_template: control template
1784 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001785 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001786 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001787 *
1788 * Create a new mixer control from a template control.
1789 *
1790 * Returns 0 for success, else error.
1791 */
1792struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08001793 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00001794 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001795{
1796 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001797 struct snd_kcontrol *kcontrol;
1798 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001799
1800 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001801 template.index = 0;
1802
Mark Brownefb7ac32011-03-08 17:23:24 +00001803 if (!long_name)
1804 long_name = template.name;
1805
1806 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02001807 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00001808 if (!name)
1809 return NULL;
1810
Mark Brownefb7ac32011-03-08 17:23:24 +00001811 template.name = name;
1812 } else {
1813 template.name = long_name;
1814 }
1815
1816 kcontrol = snd_ctl_new1(&template, data);
1817
1818 kfree(name);
1819
1820 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001821}
1822EXPORT_SYMBOL_GPL(snd_soc_cnew);
1823
Liam Girdwood022658b2012-02-03 17:43:09 +00001824static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
1825 const struct snd_kcontrol_new *controls, int num_controls,
1826 const char *prefix, void *data)
1827{
1828 int err, i;
1829
1830 for (i = 0; i < num_controls; i++) {
1831 const struct snd_kcontrol_new *control = &controls[i];
1832 err = snd_ctl_add(card, snd_soc_cnew(control, data,
1833 control->name, prefix));
1834 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001835 dev_err(dev, "ASoC: Failed to add %s: %d\n",
1836 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00001837 return err;
1838 }
1839 }
1840
1841 return 0;
1842}
1843
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01001844struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
1845 const char *name)
1846{
1847 struct snd_card *card = soc_card->snd_card;
1848 struct snd_kcontrol *kctl;
1849
1850 if (unlikely(!name))
1851 return NULL;
1852
1853 list_for_each_entry(kctl, &card->controls, list)
1854 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
1855 return kctl;
1856 return NULL;
1857}
1858EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
1859
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001860/**
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001861 * snd_soc_add_component_controls - Add an array of controls to a component.
1862 *
1863 * @component: Component to add controls to
1864 * @controls: Array of controls to add
1865 * @num_controls: Number of elements in the array
1866 *
1867 * Return: 0 for success, else error.
1868 */
1869int snd_soc_add_component_controls(struct snd_soc_component *component,
1870 const struct snd_kcontrol_new *controls, unsigned int num_controls)
1871{
1872 struct snd_card *card = component->card->snd_card;
1873
1874 return snd_soc_add_controls(card, component->dev, controls,
1875 num_controls, component->name_prefix, component);
1876}
1877EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
1878
1879/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001880 * snd_soc_add_codec_controls - add an array of controls to a codec.
1881 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00001882 * duplicating this code.
1883 *
1884 * @codec: codec to add controls to
1885 * @controls: array of controls to add
1886 * @num_controls: number of elements in the array
1887 *
1888 * Return 0 for success, else error.
1889 */
Liam Girdwood022658b2012-02-03 17:43:09 +00001890int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001891 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Ian Molton3e8e1952009-01-09 00:23:21 +00001892{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001893 return snd_soc_add_component_controls(&codec->component, controls,
1894 num_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001895}
Liam Girdwood022658b2012-02-03 17:43:09 +00001896EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001897
1898/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001899 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00001900 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001901 *
1902 * @platform: platform to add controls to
1903 * @controls: array of controls to add
1904 * @num_controls: number of elements in the array
1905 *
1906 * Return 0 for success, else error.
1907 */
1908int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001909 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001910{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001911 return snd_soc_add_component_controls(&platform->component, controls,
1912 num_controls);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001913}
1914EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
1915
1916/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001917 * snd_soc_add_card_controls - add an array of controls to a SoC card.
1918 * Convenience function to add a list of controls.
1919 *
1920 * @soc_card: SoC card to add controls to
1921 * @controls: array of controls to add
1922 * @num_controls: number of elements in the array
1923 *
1924 * Return 0 for success, else error.
1925 */
1926int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
1927 const struct snd_kcontrol_new *controls, int num_controls)
1928{
1929 struct snd_card *card = soc_card->snd_card;
1930
1931 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
1932 NULL, soc_card);
1933}
1934EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
1935
1936/**
1937 * snd_soc_add_dai_controls - add an array of controls to a DAI.
1938 * Convienience function to add a list of controls.
1939 *
1940 * @dai: DAI to add controls to
1941 * @controls: array of controls to add
1942 * @num_controls: number of elements in the array
1943 *
1944 * Return 0 for success, else error.
1945 */
1946int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
1947 const struct snd_kcontrol_new *controls, int num_controls)
1948{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001949 struct snd_card *card = dai->component->card->snd_card;
Liam Girdwood022658b2012-02-03 17:43:09 +00001950
1951 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
1952 NULL, dai);
1953}
1954EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
1955
1956/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001957 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
1958 * @dai: DAI
1959 * @clk_id: DAI specific clock ID
1960 * @freq: new clock frequency in Hz
1961 * @dir: new clock direction - input/output.
1962 *
1963 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
1964 */
1965int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
1966 unsigned int freq, int dir)
1967{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001968 if (dai->driver && dai->driver->ops->set_sysclk)
1969 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00001970 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01001971 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00001972 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001973 else
Mark Brown1104a9c2014-01-15 19:04:19 +00001974 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001975}
1976EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
1977
1978/**
Mark Brownec4ee522011-03-07 20:58:11 +00001979 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
1980 * @codec: CODEC
1981 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01001982 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00001983 * @freq: new clock frequency in Hz
1984 * @dir: new clock direction - input/output.
1985 *
1986 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
1987 */
1988int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01001989 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00001990{
1991 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01001992 return codec->driver->set_sysclk(codec, clk_id, source,
1993 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00001994 else
Mark Brown1104a9c2014-01-15 19:04:19 +00001995 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00001996}
1997EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
1998
1999/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002000 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2001 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002002 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002003 * @div: new clock divisor.
2004 *
2005 * Configures the clock dividers. This is used to derive the best DAI bit and
2006 * frame clocks from the system or master clock. It's best to set the DAI bit
2007 * and frame clocks as low as possible to save system power.
2008 */
2009int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2010 int div_id, int div)
2011{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002012 if (dai->driver && dai->driver->ops->set_clkdiv)
2013 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002014 else
2015 return -EINVAL;
2016}
2017EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2018
2019/**
2020 * snd_soc_dai_set_pll - configure DAI PLL.
2021 * @dai: DAI
2022 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002023 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002024 * @freq_in: PLL input clock frequency in Hz
2025 * @freq_out: requested PLL output clock frequency in Hz
2026 *
2027 * Configures and enables PLL to generate output clock based on input clock.
2028 */
Mark Brown85488032009-09-05 18:52:16 +01002029int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2030 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002031{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002032 if (dai->driver && dai->driver->ops->set_pll)
2033 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002034 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002035 else if (dai->codec && dai->codec->driver->set_pll)
2036 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2037 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002038 else
2039 return -EINVAL;
2040}
2041EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2042
Mark Brownec4ee522011-03-07 20:58:11 +00002043/*
2044 * snd_soc_codec_set_pll - configure codec PLL.
2045 * @codec: CODEC
2046 * @pll_id: DAI specific PLL ID
2047 * @source: DAI specific source for the PLL
2048 * @freq_in: PLL input clock frequency in Hz
2049 * @freq_out: requested PLL output clock frequency in Hz
2050 *
2051 * Configures and enables PLL to generate output clock based on input clock.
2052 */
2053int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2054 unsigned int freq_in, unsigned int freq_out)
2055{
2056 if (codec->driver->set_pll)
2057 return codec->driver->set_pll(codec, pll_id, source,
2058 freq_in, freq_out);
2059 else
2060 return -EINVAL;
2061}
2062EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2063
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002064/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01002065 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2066 * @dai: DAI
2067 * @ratio Ratio of BCLK to Sample rate.
2068 *
2069 * Configures the DAI for a preset BCLK to sample rate ratio.
2070 */
2071int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2072{
2073 if (dai->driver && dai->driver->ops->set_bclk_ratio)
2074 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2075 else
2076 return -EINVAL;
2077}
2078EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2079
2080/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002081 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2082 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002083 * @fmt: SND_SOC_DAIFMT_ format value.
2084 *
2085 * Configures the DAI hardware format and clocking.
2086 */
2087int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2088{
Shawn Guo5e4ba562012-03-09 00:59:40 +08002089 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002090 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08002091 if (dai->driver->ops->set_fmt == NULL)
2092 return -ENOTSUPP;
2093 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002094}
2095EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2096
2097/**
Xiubo Lie5c21512014-03-21 14:17:12 +08002098 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08002099 * @slots: Number of slots in use.
2100 * @tx_mask: bitmask representing active TX slots.
2101 * @rx_mask: bitmask representing active RX slots.
2102 *
2103 * Generates the TDM tx and rx slot default masks for DAI.
2104 */
Xiubo Lie5c21512014-03-21 14:17:12 +08002105static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002106 unsigned int *tx_mask,
2107 unsigned int *rx_mask)
2108{
2109 if (*tx_mask || *rx_mask)
2110 return 0;
2111
2112 if (!slots)
2113 return -EINVAL;
2114
2115 *tx_mask = (1 << slots) - 1;
2116 *rx_mask = (1 << slots) - 1;
2117
2118 return 0;
2119}
2120
2121/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002122 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2123 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002124 * @tx_mask: bitmask representing active TX slots.
2125 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002126 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002127 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002128 *
2129 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2130 * specific.
2131 */
2132int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002133 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002134{
Xiubo Lie5c21512014-03-21 14:17:12 +08002135 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
2136 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002137 &tx_mask, &rx_mask);
2138 else
Xiubo Lie5c21512014-03-21 14:17:12 +08002139 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08002140
Benoit Cousson88bd8702014-07-08 23:19:34 +02002141 dai->tx_mask = tx_mask;
2142 dai->rx_mask = rx_mask;
2143
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002144 if (dai->driver && dai->driver->ops->set_tdm_slot)
2145 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002146 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002147 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08002148 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002149}
2150EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2151
2152/**
Barry Song472df3c2009-09-12 01:16:29 +08002153 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2154 * @dai: DAI
2155 * @tx_num: how many TX channels
2156 * @tx_slot: pointer to an array which imply the TX slot number channel
2157 * 0~num-1 uses
2158 * @rx_num: how many RX channels
2159 * @rx_slot: pointer to an array which imply the RX slot number channel
2160 * 0~num-1 uses
2161 *
2162 * configure the relationship between channel number and TDM slot number.
2163 */
2164int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2165 unsigned int tx_num, unsigned int *tx_slot,
2166 unsigned int rx_num, unsigned int *rx_slot)
2167{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002168 if (dai->driver && dai->driver->ops->set_channel_map)
2169 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002170 rx_num, rx_slot);
2171 else
2172 return -EINVAL;
2173}
2174EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2175
2176/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002177 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2178 * @dai: DAI
2179 * @tristate: tristate enable
2180 *
2181 * Tristates the DAI so that others can use it.
2182 */
2183int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2184{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002185 if (dai->driver && dai->driver->ops->set_tristate)
2186 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002187 else
2188 return -EINVAL;
2189}
2190EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2191
2192/**
2193 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2194 * @dai: DAI
2195 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00002196 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002197 *
2198 * Mutes the DAI DAC.
2199 */
Mark Brownda183962013-02-06 15:44:07 +00002200int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2201 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002202{
Mark Brownda183962013-02-06 15:44:07 +00002203 if (!dai->driver)
2204 return -ENOTSUPP;
2205
2206 if (dai->driver->ops->mute_stream)
2207 return dai->driver->ops->mute_stream(dai, mute, direction);
2208 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2209 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002210 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002211 else
Mark Brown04570c62012-04-13 19:16:03 +01002212 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002213}
2214EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2215
Benoit Cousson88bd8702014-07-08 23:19:34 +02002216static int snd_soc_init_multicodec(struct snd_soc_card *card,
2217 struct snd_soc_dai_link *dai_link)
2218{
2219 /* Legacy codec/codec_dai link is a single entry in multicodec */
2220 if (dai_link->codec_name || dai_link->codec_of_node ||
2221 dai_link->codec_dai_name) {
2222 dai_link->num_codecs = 1;
2223
2224 dai_link->codecs = devm_kzalloc(card->dev,
2225 sizeof(struct snd_soc_dai_link_component),
2226 GFP_KERNEL);
2227 if (!dai_link->codecs)
2228 return -ENOMEM;
2229
2230 dai_link->codecs[0].name = dai_link->codec_name;
2231 dai_link->codecs[0].of_node = dai_link->codec_of_node;
2232 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
2233 }
2234
2235 if (!dai_link->codecs) {
2236 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
2237 return -EINVAL;
2238 }
2239
2240 return 0;
2241}
2242
Mark Brownc5af3a22008-11-28 13:29:45 +00002243/**
2244 * snd_soc_register_card - Register a card with the ASoC core
2245 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002246 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002247 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002248 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302249int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002250{
Benoit Cousson88bd8702014-07-08 23:19:34 +02002251 int i, j, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002252
Mark Brownc5af3a22008-11-28 13:29:45 +00002253 if (!card->name || !card->dev)
2254 return -EINVAL;
2255
Stephen Warren5a504962011-12-21 10:40:59 -07002256 for (i = 0; i < card->num_links; i++) {
2257 struct snd_soc_dai_link *link = &card->dai_link[i];
2258
Benoit Cousson88bd8702014-07-08 23:19:34 +02002259 ret = snd_soc_init_multicodec(card, link);
2260 if (ret) {
2261 dev_err(card->dev, "ASoC: failed to init multicodec\n");
2262 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07002263 }
Benoit Cousson88bd8702014-07-08 23:19:34 +02002264
2265 for (j = 0; j < link->num_codecs; j++) {
2266 /*
2267 * Codec must be specified by 1 of name or OF node,
2268 * not both or neither.
2269 */
2270 if (!!link->codecs[j].name ==
2271 !!link->codecs[j].of_node) {
2272 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
2273 link->name);
2274 return -EINVAL;
2275 }
2276 /* Codec DAI name must be specified */
2277 if (!link->codecs[j].dai_name) {
2278 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
2279 link->name);
2280 return -EINVAL;
2281 }
Stephen Warrenbc926572012-05-25 18:22:11 -06002282 }
Stephen Warren5a504962011-12-21 10:40:59 -07002283
2284 /*
2285 * Platform may be specified by either name or OF node, but
2286 * can be left unspecified, and a dummy platform will be used.
2287 */
2288 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002289 dev_err(card->dev,
2290 "ASoC: Both platform name/of_node are set for %s\n",
2291 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002292 return -EINVAL;
2293 }
2294
2295 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06002296 * CPU device may be specified by either name or OF node, but
2297 * can be left unspecified, and will be matched based on DAI
2298 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07002299 */
Stephen Warrenbc926572012-05-25 18:22:11 -06002300 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002301 dev_err(card->dev,
2302 "ASoC: Neither/both cpu name/of_node are set for %s\n",
2303 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06002304 return -EINVAL;
2305 }
2306 /*
2307 * At least one of CPU DAI name or CPU device name/node must be
2308 * specified
2309 */
2310 if (!link->cpu_dai_name &&
2311 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002312 dev_err(card->dev,
2313 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
2314 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002315 return -EINVAL;
2316 }
2317 }
2318
Mark Browned77cc12011-05-03 18:25:34 +01002319 dev_set_drvdata(card->dev, card);
2320
Stephen Warren111c6412011-01-28 14:26:35 -07002321 snd_soc_initialize_card_lists(card);
2322
Vinod Koul150dd2f2011-01-13 22:48:32 +05302323 soc_init_card_debugfs(card);
2324
Mark Brown181a6892012-03-14 20:18:49 +00002325 card->rtd = devm_kzalloc(card->dev,
2326 sizeof(struct snd_soc_pcm_runtime) *
2327 (card->num_links + card->num_aux_devs),
2328 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002329 if (card->rtd == NULL)
2330 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01002331 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002332 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002333
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002334 for (i = 0; i < card->num_links; i++) {
2335 card->rtd[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002336 card->rtd[i].dai_link = &card->dai_link[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02002337 card->rtd[i].codec_dais = devm_kzalloc(card->dev,
2338 sizeof(struct snd_soc_dai *) *
2339 (card->rtd[i].dai_link->num_codecs),
2340 GFP_KERNEL);
2341 if (card->rtd[i].codec_dais == NULL)
2342 return -ENOMEM;
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002343 }
2344
2345 for (i = 0; i < card->num_aux_devs; i++)
2346 card->rtd_aux[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002347
Mark Browndb432b42011-10-03 21:06:40 +01002348 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00002349 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002350 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002351 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002352
Mark Brownb19e6e72012-03-14 21:18:39 +00002353 ret = snd_soc_instantiate_card(card);
2354 if (ret != 0)
2355 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002356
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002357 /* deactivate pins to sleep state */
2358 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002359 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2360 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2361 int j;
2362
2363 for (j = 0; j < rtd->num_codecs; j++) {
2364 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2365 if (!codec_dai->active)
2366 pinctrl_pm_select_sleep_state(codec_dai->dev);
2367 }
2368
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002369 if (!cpu_dai->active)
2370 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2371 }
2372
Mark Brownb19e6e72012-03-14 21:18:39 +00002373 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00002374}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302375EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002376
2377/**
2378 * snd_soc_unregister_card - Unregister a card with the ASoC core
2379 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002380 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002381 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002382 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302383int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002384{
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002385 if (card->instantiated) {
2386 card->instantiated = false;
Lars-Peter Clausen1c325f72014-09-04 19:44:05 +02002387 snd_soc_dapm_shutdown(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302388 soc_cleanup_card_resources(card);
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002389 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002390 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00002391
2392 return 0;
2393}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302394EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002395
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002396/*
2397 * Simplify DAI link configuration by removing ".-1" from device names
2398 * and sanitizing names.
2399 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002400static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002401{
2402 char *found, name[NAME_SIZE];
2403 int id1, id2;
2404
2405 if (dev_name(dev) == NULL)
2406 return NULL;
2407
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002408 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002409
2410 /* are we a "%s.%d" name (platform and SPI components) */
2411 found = strstr(name, dev->driver->name);
2412 if (found) {
2413 /* get ID */
2414 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2415
2416 /* discard ID from name if ID == -1 */
2417 if (*id == -1)
2418 found[strlen(dev->driver->name)] = '\0';
2419 }
2420
2421 } else {
2422 /* I2C component devices are named "bus-addr" */
2423 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2424 char tmp[NAME_SIZE];
2425
2426 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002427 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002428
2429 /* sanitize component name for DAI link creation */
2430 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002431 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002432 } else
2433 *id = 0;
2434 }
2435
2436 return kstrdup(name, GFP_KERNEL);
2437}
2438
2439/*
2440 * Simplify DAI link naming for single devices with multiple DAIs by removing
2441 * any ".-1" and using the DAI name (instead of device name).
2442 */
2443static inline char *fmt_multiple_name(struct device *dev,
2444 struct snd_soc_dai_driver *dai_drv)
2445{
2446 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002447 dev_err(dev,
2448 "ASoC: error - multiple DAI %s registered with no name\n",
2449 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002450 return NULL;
2451 }
2452
2453 return kstrdup(dai_drv->name, GFP_KERNEL);
2454}
2455
Mark Brown91151712008-11-30 23:31:24 +00002456/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002457 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002458 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002459 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00002460 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002461static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00002462{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002463 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00002464
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002465 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002466 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2467 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002468 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002469 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002470 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002471 }
Mark Brown91151712008-11-30 23:31:24 +00002472}
Mark Brown91151712008-11-30 23:31:24 +00002473
2474/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002475 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002476 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002477 * @component: The component the DAIs are registered for
2478 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00002479 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002480 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
2481 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00002482 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002483static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002484 struct snd_soc_dai_driver *dai_drv, size_t count,
2485 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00002486{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002487 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002488 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002489 unsigned int i;
2490 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002491
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002492 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00002493
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002494 component->dai_drv = dai_drv;
2495 component->num_dai = count;
2496
Mark Brown91151712008-11-30 23:31:24 +00002497 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002498
2499 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08002500 if (dai == NULL) {
2501 ret = -ENOMEM;
2502 goto err;
2503 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002504
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002505 /*
2506 * Back in the old days when we still had component-less DAIs,
2507 * instead of having a static name, component-less DAIs would
2508 * inherit the name of the parent device so it is possible to
2509 * register multiple instances of the DAI. We still need to keep
2510 * the same naming style even though those DAIs are not
2511 * component-less anymore.
2512 */
2513 if (count == 1 && legacy_dai_naming) {
2514 dai->name = fmt_single_name(dev, &dai->id);
2515 } else {
2516 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
2517 if (dai_drv[i].id)
2518 dai->id = dai_drv[i].id;
2519 else
2520 dai->id = i;
2521 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002522 if (dai->name == NULL) {
2523 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002524 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00002525 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002526 }
2527
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002528 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002529 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002530 dai->driver = &dai_drv[i];
2531 if (!dai->driver->ops)
2532 dai->driver->ops = &null_dai_ops;
2533
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01002534 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01002535
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002536 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00002537 }
2538
2539 return 0;
2540
2541err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002542 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00002543
2544 return ret;
2545}
Mark Brown91151712008-11-30 23:31:24 +00002546
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002547static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
2548 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002549{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002550 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002551
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002552 component->driver->seq_notifier(component, type, subseq);
2553}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002554
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002555static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
2556 int event)
2557{
2558 struct snd_soc_component *component = dapm->component;
2559
2560 return component->driver->stream_event(component, event);
2561}
2562
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002563static int snd_soc_component_initialize(struct snd_soc_component *component,
2564 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002565{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002566 struct snd_soc_dapm_context *dapm;
2567
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002568 component->name = fmt_single_name(dev, &component->id);
2569 if (!component->name) {
2570 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002571 return -ENOMEM;
2572 }
2573
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002574 component->dev = dev;
2575 component->driver = driver;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002576 component->probe = component->driver->probe;
2577 component->remove = component->driver->remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002578
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002579 if (!component->dapm_ptr)
2580 component->dapm_ptr = &component->dapm;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002581
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002582 dapm = component->dapm_ptr;
2583 dapm->dev = dev;
2584 dapm->component = component;
2585 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02002586 dapm->idle_bias_off = true;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002587 if (driver->seq_notifier)
2588 dapm->seq_notifier = snd_soc_component_seq_notifier;
2589 if (driver->stream_event)
2590 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002591
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002592 component->controls = driver->controls;
2593 component->num_controls = driver->num_controls;
2594 component->dapm_widgets = driver->dapm_widgets;
2595 component->num_dapm_widgets = driver->num_dapm_widgets;
2596 component->dapm_routes = driver->dapm_routes;
2597 component->num_dapm_routes = driver->num_dapm_routes;
2598
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002599 INIT_LIST_HEAD(&component->dai_list);
2600 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002601
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002602 return 0;
2603}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002604
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002605static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002606{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002607 int val_bytes = regmap_get_val_bytes(component->regmap);
2608
2609 /* Errors are legitimate for non-integer byte multiples */
2610 if (val_bytes > 0)
2611 component->val_bytes = val_bytes;
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002612}
2613
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002614#ifdef CONFIG_REGMAP
2615
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002616/**
2617 * snd_soc_component_init_regmap() - Initialize regmap instance for the component
2618 * @component: The component for which to initialize the regmap instance
2619 * @regmap: The regmap instance that should be used by the component
2620 *
2621 * This function allows deferred assignment of the regmap instance that is
2622 * associated with the component. Only use this if the regmap instance is not
2623 * yet ready when the component is registered. The function must also be called
2624 * before the first IO attempt of the component.
2625 */
2626void snd_soc_component_init_regmap(struct snd_soc_component *component,
2627 struct regmap *regmap)
2628{
2629 component->regmap = regmap;
2630 snd_soc_component_setup_regmap(component);
2631}
2632EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
2633
2634/**
2635 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the component
2636 * @component: The component for which to de-initialize the regmap instance
2637 *
2638 * Calls regmap_exit() on the regmap instance associated to the component and
2639 * removes the regmap instance from the component.
2640 *
2641 * This function should only be used if snd_soc_component_init_regmap() was used
2642 * to initialize the regmap instance.
2643 */
2644void snd_soc_component_exit_regmap(struct snd_soc_component *component)
2645{
2646 regmap_exit(component->regmap);
2647 component->regmap = NULL;
2648}
2649EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
2650
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002651#endif
2652
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002653static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
2654{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002655 if (!component->write && !component->read) {
2656 if (!component->regmap)
2657 component->regmap = dev_get_regmap(component->dev, NULL);
2658 if (component->regmap)
2659 snd_soc_component_setup_regmap(component);
2660 }
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002661
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002662 list_add(&component->list, &component_list);
2663}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002664
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002665static void snd_soc_component_add(struct snd_soc_component *component)
2666{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002667 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002668 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002669 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002670}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002671
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002672static void snd_soc_component_cleanup(struct snd_soc_component *component)
2673{
2674 snd_soc_unregister_dais(component);
2675 kfree(component->name);
2676}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002677
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002678static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
2679{
2680 list_del(&component->list);
2681}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002682
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002683static void snd_soc_component_del(struct snd_soc_component *component)
2684{
2685 mutex_lock(&client_mutex);
2686 snd_soc_component_del_unlocked(component);
2687 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002688}
2689
2690int snd_soc_register_component(struct device *dev,
2691 const struct snd_soc_component_driver *cmpnt_drv,
2692 struct snd_soc_dai_driver *dai_drv,
2693 int num_dai)
2694{
2695 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002696 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002697
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002698 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002699 if (!cmpnt) {
2700 dev_err(dev, "ASoC: Failed to allocate memory\n");
2701 return -ENOMEM;
2702 }
2703
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002704 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
2705 if (ret)
2706 goto err_free;
2707
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002708 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002709 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002710
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002711 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
2712 if (ret < 0) {
2713 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
2714 goto err_cleanup;
2715 }
2716
2717 snd_soc_component_add(cmpnt);
2718
2719 return 0;
2720
2721err_cleanup:
2722 snd_soc_component_cleanup(cmpnt);
2723err_free:
2724 kfree(cmpnt);
2725 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002726}
2727EXPORT_SYMBOL_GPL(snd_soc_register_component);
2728
2729/**
2730 * snd_soc_unregister_component - Unregister a component from the ASoC core
2731 *
2732 */
2733void snd_soc_unregister_component(struct device *dev)
2734{
2735 struct snd_soc_component *cmpnt;
2736
2737 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002738 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002739 goto found;
2740 }
2741 return;
2742
2743found:
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002744 snd_soc_component_del(cmpnt);
2745 snd_soc_component_cleanup(cmpnt);
2746 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002747}
2748EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
2749
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002750static int snd_soc_platform_drv_probe(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002751{
2752 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2753
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002754 return platform->driver->probe(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002755}
2756
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002757static void snd_soc_platform_drv_remove(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002758{
2759 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2760
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002761 platform->driver->remove(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002762}
2763
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002764/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002765 * snd_soc_add_platform - Add a platform to the ASoC core
2766 * @dev: The parent device for the platform
2767 * @platform: The platform to add
2768 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00002769 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002770int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01002771 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002772{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002773 int ret;
2774
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002775 ret = snd_soc_component_initialize(&platform->component,
2776 &platform_drv->component_driver, dev);
2777 if (ret)
2778 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002779
2780 platform->dev = dev;
2781 platform->driver = platform_drv;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002782
2783 if (platform_drv->probe)
2784 platform->component.probe = snd_soc_platform_drv_probe;
2785 if (platform_drv->remove)
2786 platform->component.remove = snd_soc_platform_drv_remove;
Mark Brown12a48a8c2008-12-03 19:40:30 +00002787
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02002788#ifdef CONFIG_DEBUG_FS
2789 platform->component.debugfs_prefix = "platform";
2790#endif
Mark Brown12a48a8c2008-12-03 19:40:30 +00002791
2792 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002793 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002794 list_add(&platform->list, &platform_list);
2795 mutex_unlock(&client_mutex);
2796
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002797 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
2798 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002799
2800 return 0;
2801}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002802EXPORT_SYMBOL_GPL(snd_soc_add_platform);
2803
2804/**
2805 * snd_soc_register_platform - Register a platform with the ASoC core
2806 *
2807 * @platform: platform to register
2808 */
2809int snd_soc_register_platform(struct device *dev,
2810 const struct snd_soc_platform_driver *platform_drv)
2811{
2812 struct snd_soc_platform *platform;
2813 int ret;
2814
2815 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
2816
2817 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
2818 if (platform == NULL)
2819 return -ENOMEM;
2820
2821 ret = snd_soc_add_platform(dev, platform, platform_drv);
2822 if (ret)
2823 kfree(platform);
2824
2825 return ret;
2826}
Mark Brown12a48a8c2008-12-03 19:40:30 +00002827EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2828
2829/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002830 * snd_soc_remove_platform - Remove a platform from the ASoC core
2831 * @platform: the platform to remove
2832 */
2833void snd_soc_remove_platform(struct snd_soc_platform *platform)
2834{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002835
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002836 mutex_lock(&client_mutex);
2837 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002838 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002839 mutex_unlock(&client_mutex);
2840
2841 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002842 platform->component.name);
Daniel Mackdecc27b2014-10-07 13:41:23 +02002843
2844 snd_soc_component_cleanup(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002845}
2846EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
2847
2848struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
2849{
2850 struct snd_soc_platform *platform;
2851
2852 list_for_each_entry(platform, &platform_list, list) {
2853 if (dev == platform->dev)
2854 return platform;
2855 }
2856
2857 return NULL;
2858}
2859EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
2860
2861/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00002862 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2863 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002864 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002865 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002866void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002867{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002868 struct snd_soc_platform *platform;
2869
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002870 platform = snd_soc_lookup_platform(dev);
2871 if (!platform)
2872 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002873
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002874 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002875 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002876}
2877EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2878
Mark Brown151ab222009-05-09 16:22:58 +01002879static u64 codec_format_map[] = {
2880 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2881 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2882 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2883 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2884 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2885 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2886 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2887 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2888 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2889 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2890 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2891 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2892 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2893 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2894 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2895 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2896};
2897
2898/* Fix up the DAI formats for endianness: codecs don't actually see
2899 * the endianness of the data but we're using the CPU format
2900 * definitions which do need to include endianness so we ensure that
2901 * codec DAIs always have both big and little endian variants set.
2902 */
2903static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2904{
2905 int i;
2906
2907 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2908 if (stream->formats & codec_format_map[i])
2909 stream->formats |= codec_format_map[i];
2910}
2911
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002912static int snd_soc_codec_drv_probe(struct snd_soc_component *component)
2913{
2914 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2915
2916 return codec->driver->probe(codec);
2917}
2918
2919static void snd_soc_codec_drv_remove(struct snd_soc_component *component)
2920{
2921 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2922
2923 codec->driver->remove(codec);
2924}
2925
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002926static int snd_soc_codec_drv_write(struct snd_soc_component *component,
2927 unsigned int reg, unsigned int val)
2928{
2929 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2930
2931 return codec->driver->write(codec, reg, val);
2932}
2933
2934static int snd_soc_codec_drv_read(struct snd_soc_component *component,
2935 unsigned int reg, unsigned int *val)
2936{
2937 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2938
2939 *val = codec->driver->read(codec, reg);
2940
2941 return 0;
2942}
2943
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02002944static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
2945 enum snd_soc_bias_level level)
2946{
2947 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
2948
2949 return codec->driver->set_bias_level(codec, level);
2950}
2951
Mark Brown0d0cf002008-12-10 14:32:45 +00002952/**
2953 * snd_soc_register_codec - Register a codec with the ASoC core
2954 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002955 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002956 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002957int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00002958 const struct snd_soc_codec_driver *codec_drv,
2959 struct snd_soc_dai_driver *dai_drv,
2960 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00002961{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002962 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002963 struct snd_soc_dai *dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002964 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01002965
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002966 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00002967
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002968 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
2969 if (codec == NULL)
2970 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00002971
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002972 codec->component.dapm_ptr = &codec->dapm;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002973 codec->component.codec = codec;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002974
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002975 ret = snd_soc_component_initialize(&codec->component,
2976 &codec_drv->component_driver, dev);
2977 if (ret)
2978 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01002979
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002980 if (codec_drv->controls) {
2981 codec->component.controls = codec_drv->controls;
2982 codec->component.num_controls = codec_drv->num_controls;
2983 }
2984 if (codec_drv->dapm_widgets) {
2985 codec->component.dapm_widgets = codec_drv->dapm_widgets;
2986 codec->component.num_dapm_widgets = codec_drv->num_dapm_widgets;
2987 }
2988 if (codec_drv->dapm_routes) {
2989 codec->component.dapm_routes = codec_drv->dapm_routes;
2990 codec->component.num_dapm_routes = codec_drv->num_dapm_routes;
2991 }
2992
2993 if (codec_drv->probe)
2994 codec->component.probe = snd_soc_codec_drv_probe;
2995 if (codec_drv->remove)
2996 codec->component.remove = snd_soc_codec_drv_remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002997 if (codec_drv->write)
2998 codec->component.write = snd_soc_codec_drv_write;
2999 if (codec_drv->read)
3000 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003001 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02003002 codec->dapm.idle_bias_off = codec_drv->idle_bias_off;
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02003003 codec->dapm.suspend_bias_off = codec_drv->suspend_bias_off;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003004 if (codec_drv->seq_notifier)
3005 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003006 if (codec_drv->set_bias_level)
3007 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003008 codec->dev = dev;
3009 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003010 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003011
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02003012#ifdef CONFIG_DEBUG_FS
3013 codec->component.init_debugfs = soc_init_codec_debugfs;
3014 codec->component.debugfs_prefix = "codec";
3015#endif
Xiubo Lia39f75f2014-03-26 13:40:23 +08003016
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003017 if (codec_drv->get_regmap)
3018 codec->component.regmap = codec_drv->get_regmap(dev);
Xiubo Lia39f75f2014-03-26 13:40:23 +08003019
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003020 for (i = 0; i < num_dai; i++) {
3021 fixup_codec_formats(&dai_drv[i].playback);
3022 fixup_codec_formats(&dai_drv[i].capture);
3023 }
3024
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003025 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
3026 if (ret < 0) {
3027 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
3028 goto err_cleanup;
3029 }
3030
3031 list_for_each_entry(dai, &codec->component.dai_list, list)
3032 dai->codec = codec;
3033
Mark Brown054880f2012-04-09 17:29:19 +01003034 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003035 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01003036 list_add(&codec->list, &codec_list);
3037 mutex_unlock(&client_mutex);
3038
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003039 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
3040 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003041 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003042
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003043err_cleanup:
3044 snd_soc_component_cleanup(&codec->component);
3045err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003046 kfree(codec);
3047 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003048}
3049EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3050
3051/**
3052 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3053 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003054 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003055 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003056void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003057{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003058 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003059
3060 list_for_each_entry(codec, &codec_list, list) {
3061 if (dev == codec->dev)
3062 goto found;
3063 }
3064 return;
3065
3066found:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003067
Mark Brown0d0cf002008-12-10 14:32:45 +00003068 mutex_lock(&client_mutex);
3069 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003070 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00003071 mutex_unlock(&client_mutex);
3072
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003073 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
3074 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003075
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003076 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003077 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003078 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003079}
3080EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3081
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003082/* Retrieve a card's name from device tree */
3083int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3084 const char *propname)
3085{
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303086 struct device_node *np;
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003087 int ret;
3088
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303089 if (!card->dev) {
3090 pr_err("card->dev is not set before calling %s\n", __func__);
3091 return -EINVAL;
3092 }
3093
3094 np = card->dev->of_node;
3095
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003096 ret = of_property_read_string_index(np, propname, 0, &card->name);
3097 /*
3098 * EINVAL means the property does not exist. This is fine providing
3099 * card->name was previously set, which is checked later in
3100 * snd_soc_register_card.
3101 */
3102 if (ret < 0 && ret != -EINVAL) {
3103 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003104 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003105 propname, ret);
3106 return ret;
3107 }
3108
3109 return 0;
3110}
3111EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3112
Xiubo Li9a6d4862014-02-08 15:59:52 +08003113static const struct snd_soc_dapm_widget simple_widgets[] = {
3114 SND_SOC_DAPM_MIC("Microphone", NULL),
3115 SND_SOC_DAPM_LINE("Line", NULL),
3116 SND_SOC_DAPM_HP("Headphone", NULL),
3117 SND_SOC_DAPM_SPK("Speaker", NULL),
3118};
3119
3120int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
3121 const char *propname)
3122{
3123 struct device_node *np = card->dev->of_node;
3124 struct snd_soc_dapm_widget *widgets;
3125 const char *template, *wname;
3126 int i, j, num_widgets, ret;
3127
3128 num_widgets = of_property_count_strings(np, propname);
3129 if (num_widgets < 0) {
3130 dev_err(card->dev,
3131 "ASoC: Property '%s' does not exist\n", propname);
3132 return -EINVAL;
3133 }
3134 if (num_widgets & 1) {
3135 dev_err(card->dev,
3136 "ASoC: Property '%s' length is not even\n", propname);
3137 return -EINVAL;
3138 }
3139
3140 num_widgets /= 2;
3141 if (!num_widgets) {
3142 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3143 propname);
3144 return -EINVAL;
3145 }
3146
3147 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3148 GFP_KERNEL);
3149 if (!widgets) {
3150 dev_err(card->dev,
3151 "ASoC: Could not allocate memory for widgets\n");
3152 return -ENOMEM;
3153 }
3154
3155 for (i = 0; i < num_widgets; i++) {
3156 ret = of_property_read_string_index(np, propname,
3157 2 * i, &template);
3158 if (ret) {
3159 dev_err(card->dev,
3160 "ASoC: Property '%s' index %d read error:%d\n",
3161 propname, 2 * i, ret);
3162 return -EINVAL;
3163 }
3164
3165 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3166 if (!strncmp(template, simple_widgets[j].name,
3167 strlen(simple_widgets[j].name))) {
3168 widgets[i] = simple_widgets[j];
3169 break;
3170 }
3171 }
3172
3173 if (j >= ARRAY_SIZE(simple_widgets)) {
3174 dev_err(card->dev,
3175 "ASoC: DAPM widget '%s' is not supported\n",
3176 template);
3177 return -EINVAL;
3178 }
3179
3180 ret = of_property_read_string_index(np, propname,
3181 (2 * i) + 1,
3182 &wname);
3183 if (ret) {
3184 dev_err(card->dev,
3185 "ASoC: Property '%s' index %d read error:%d\n",
3186 propname, (2 * i) + 1, ret);
3187 return -EINVAL;
3188 }
3189
3190 widgets[i].name = wname;
3191 }
3192
3193 card->dapm_widgets = widgets;
3194 card->num_dapm_widgets = num_widgets;
3195
3196 return 0;
3197}
3198EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
3199
Xiubo Li89c67852014-02-14 09:34:35 +08003200int snd_soc_of_parse_tdm_slot(struct device_node *np,
3201 unsigned int *slots,
3202 unsigned int *slot_width)
3203{
3204 u32 val;
3205 int ret;
3206
3207 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3208 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3209 if (ret)
3210 return ret;
3211
3212 if (slots)
3213 *slots = val;
3214 }
3215
3216 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3217 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3218 if (ret)
3219 return ret;
3220
3221 if (slot_width)
3222 *slot_width = val;
3223 }
3224
3225 return 0;
3226}
3227EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3228
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003229int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3230 const char *propname)
3231{
3232 struct device_node *np = card->dev->of_node;
Peter Rosinf8781db2014-11-27 22:02:42 +01003233 int num_routes, old_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003234 struct snd_soc_dapm_route *routes;
3235 int i, ret;
3236
3237 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08003238 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003239 dev_err(card->dev,
3240 "ASoC: Property '%s' does not exist or its length is not even\n",
3241 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003242 return -EINVAL;
3243 }
3244 num_routes /= 2;
3245 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003246 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003247 propname);
3248 return -EINVAL;
3249 }
3250
Peter Rosinf8781db2014-11-27 22:02:42 +01003251 old_routes = card->num_dapm_routes;
3252 routes = devm_kzalloc(card->dev,
3253 (old_routes + num_routes) * sizeof(*routes),
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003254 GFP_KERNEL);
3255 if (!routes) {
3256 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003257 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003258 return -EINVAL;
3259 }
3260
Peter Rosinf8781db2014-11-27 22:02:42 +01003261 memcpy(routes, card->dapm_routes, old_routes * sizeof(*routes));
3262
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003263 for (i = 0; i < num_routes; i++) {
3264 ret = of_property_read_string_index(np, propname,
Peter Rosinf8781db2014-11-27 22:02:42 +01003265 2 * i, &routes[old_routes + i].sink);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003266 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09003267 dev_err(card->dev,
3268 "ASoC: Property '%s' index %d could not be read: %d\n",
3269 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003270 return -EINVAL;
3271 }
3272 ret = of_property_read_string_index(np, propname,
Peter Rosinf8781db2014-11-27 22:02:42 +01003273 (2 * i) + 1, &routes[old_routes + i].source);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003274 if (ret) {
3275 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09003276 "ASoC: Property '%s' index %d could not be read: %d\n",
3277 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003278 return -EINVAL;
3279 }
3280 }
3281
Peter Rosinf8781db2014-11-27 22:02:42 +01003282 card->num_dapm_routes += num_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003283 card->dapm_routes = routes;
3284
3285 return 0;
3286}
3287EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3288
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003289unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02003290 const char *prefix,
3291 struct device_node **bitclkmaster,
3292 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003293{
3294 int ret, i;
3295 char prop[128];
3296 unsigned int format = 0;
3297 int bit, frame;
3298 const char *str;
3299 struct {
3300 char *name;
3301 unsigned int val;
3302 } of_fmt_table[] = {
3303 { "i2s", SND_SOC_DAIFMT_I2S },
3304 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
3305 { "left_j", SND_SOC_DAIFMT_LEFT_J },
3306 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
3307 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
3308 { "ac97", SND_SOC_DAIFMT_AC97 },
3309 { "pdm", SND_SOC_DAIFMT_PDM},
3310 { "msb", SND_SOC_DAIFMT_MSB },
3311 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003312 };
3313
3314 if (!prefix)
3315 prefix = "";
3316
3317 /*
3318 * check "[prefix]format = xxx"
3319 * SND_SOC_DAIFMT_FORMAT_MASK area
3320 */
3321 snprintf(prop, sizeof(prop), "%sformat", prefix);
3322 ret = of_property_read_string(np, prop, &str);
3323 if (ret == 0) {
3324 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3325 if (strcmp(str, of_fmt_table[i].name) == 0) {
3326 format |= of_fmt_table[i].val;
3327 break;
3328 }
3329 }
3330 }
3331
3332 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003333 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003334 * SND_SOC_DAIFMT_CLOCK_MASK area
3335 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003336 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
3337 if (of_get_property(np, prop, NULL))
3338 format |= SND_SOC_DAIFMT_CONT;
3339 else
3340 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003341
3342 /*
3343 * check "[prefix]bitclock-inversion"
3344 * check "[prefix]frame-inversion"
3345 * SND_SOC_DAIFMT_INV_MASK area
3346 */
3347 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3348 bit = !!of_get_property(np, prop, NULL);
3349
3350 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3351 frame = !!of_get_property(np, prop, NULL);
3352
3353 switch ((bit << 4) + frame) {
3354 case 0x11:
3355 format |= SND_SOC_DAIFMT_IB_IF;
3356 break;
3357 case 0x10:
3358 format |= SND_SOC_DAIFMT_IB_NF;
3359 break;
3360 case 0x01:
3361 format |= SND_SOC_DAIFMT_NB_IF;
3362 break;
3363 default:
3364 /* SND_SOC_DAIFMT_NB_NF is default */
3365 break;
3366 }
3367
3368 /*
3369 * check "[prefix]bitclock-master"
3370 * check "[prefix]frame-master"
3371 * SND_SOC_DAIFMT_MASTER_MASK area
3372 */
3373 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3374 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003375 if (bit && bitclkmaster)
3376 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003377
3378 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3379 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003380 if (frame && framemaster)
3381 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003382
3383 switch ((bit << 4) + frame) {
3384 case 0x11:
3385 format |= SND_SOC_DAIFMT_CBM_CFM;
3386 break;
3387 case 0x10:
3388 format |= SND_SOC_DAIFMT_CBM_CFS;
3389 break;
3390 case 0x01:
3391 format |= SND_SOC_DAIFMT_CBS_CFM;
3392 break;
3393 default:
3394 format |= SND_SOC_DAIFMT_CBS_CFS;
3395 break;
3396 }
3397
3398 return format;
3399}
3400EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3401
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003402static int snd_soc_get_dai_name(struct of_phandle_args *args,
3403 const char **dai_name)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003404{
3405 struct snd_soc_component *pos;
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003406 int ret = -EPROBE_DEFER;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003407
3408 mutex_lock(&client_mutex);
3409 list_for_each_entry(pos, &component_list, list) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003410 if (pos->dev->of_node != args->np)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003411 continue;
3412
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003413 if (pos->driver->of_xlate_dai_name) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003414 ret = pos->driver->of_xlate_dai_name(pos,
3415 args,
3416 dai_name);
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003417 } else {
3418 int id = -1;
3419
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003420 switch (args->args_count) {
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003421 case 0:
3422 id = 0; /* same as dai_drv[0] */
3423 break;
3424 case 1:
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003425 id = args->args[0];
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003426 break;
3427 default:
3428 /* not supported */
3429 break;
3430 }
3431
3432 if (id < 0 || id >= pos->num_dai) {
3433 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08003434 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003435 }
Xiubo Lie41975e2013-12-20 14:39:51 +08003436
3437 ret = 0;
3438
3439 *dai_name = pos->dai_drv[id].name;
3440 if (!*dai_name)
3441 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003442 }
3443
Kuninori Morimotocb470082013-09-10 17:39:56 -07003444 break;
3445 }
3446 mutex_unlock(&client_mutex);
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003447 return ret;
3448}
3449
3450int snd_soc_of_get_dai_name(struct device_node *of_node,
3451 const char **dai_name)
3452{
3453 struct of_phandle_args args;
3454 int ret;
3455
3456 ret = of_parse_phandle_with_args(of_node, "sound-dai",
3457 "#sound-dai-cells", 0, &args);
3458 if (ret)
3459 return ret;
3460
3461 ret = snd_soc_get_dai_name(&args, dai_name);
Kuninori Morimotocb470082013-09-10 17:39:56 -07003462
3463 of_node_put(args.np);
3464
3465 return ret;
3466}
3467EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3468
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003469/*
3470 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3471 * @dev: Card device
3472 * @of_node: Device node
3473 * @dai_link: DAI link
3474 *
3475 * Builds an array of CODEC DAI components from the DAI link property
3476 * 'sound-dai'.
3477 * The array is set in the DAI link and the number of DAIs is set accordingly.
3478 * The device nodes in the array (of_node) must be dereferenced by the caller.
3479 *
3480 * Returns 0 for success
3481 */
3482int snd_soc_of_get_dai_link_codecs(struct device *dev,
3483 struct device_node *of_node,
3484 struct snd_soc_dai_link *dai_link)
3485{
3486 struct of_phandle_args args;
3487 struct snd_soc_dai_link_component *component;
3488 char *name;
3489 int index, num_codecs, ret;
3490
3491 /* Count the number of CODECs */
3492 name = "sound-dai";
3493 num_codecs = of_count_phandle_with_args(of_node, name,
3494 "#sound-dai-cells");
3495 if (num_codecs <= 0) {
3496 if (num_codecs == -ENOENT)
3497 dev_err(dev, "No 'sound-dai' property\n");
3498 else
3499 dev_err(dev, "Bad phandle in 'sound-dai'\n");
3500 return num_codecs;
3501 }
3502 component = devm_kzalloc(dev,
3503 sizeof *component * num_codecs,
3504 GFP_KERNEL);
3505 if (!component)
3506 return -ENOMEM;
3507 dai_link->codecs = component;
3508 dai_link->num_codecs = num_codecs;
3509
3510 /* Parse the list */
3511 for (index = 0, component = dai_link->codecs;
3512 index < dai_link->num_codecs;
3513 index++, component++) {
3514 ret = of_parse_phandle_with_args(of_node, name,
3515 "#sound-dai-cells",
3516 index, &args);
3517 if (ret)
3518 goto err;
3519 component->of_node = args.np;
3520 ret = snd_soc_get_dai_name(&args, &component->dai_name);
3521 if (ret < 0)
3522 goto err;
3523 }
3524 return 0;
3525err:
3526 for (index = 0, component = dai_link->codecs;
3527 index < dai_link->num_codecs;
3528 index++, component++) {
3529 if (!component->of_node)
3530 break;
3531 of_node_put(component->of_node);
3532 component->of_node = NULL;
3533 }
3534 dai_link->codecs = NULL;
3535 dai_link->num_codecs = 0;
3536 return ret;
3537}
3538EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3539
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003540static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003541{
Mark Brown384c89e2008-12-03 17:34:03 +00003542#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003543 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3544 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02003545 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003546 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003547 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003548
Mark Brown8a9dab12011-01-10 22:25:21 +00003549 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003550 &codec_list_fops))
3551 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3552
Mark Brown8a9dab12011-01-10 22:25:21 +00003553 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003554 &dai_list_fops))
3555 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003556
Mark Brown8a9dab12011-01-10 22:25:21 +00003557 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003558 &platform_list_fops))
3559 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003560#endif
3561
Mark Brownfb257892011-04-28 10:57:54 +01003562 snd_soc_util_init();
3563
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003564 return platform_driver_register(&soc_driver);
3565}
Mark Brown4abe8e12010-10-12 17:41:03 +01003566module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003567
Mark Brown7d8c16a2008-11-30 22:11:24 +00003568static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003569{
Mark Brownfb257892011-04-28 10:57:54 +01003570 snd_soc_util_exit();
3571
Mark Brown384c89e2008-12-03 17:34:03 +00003572#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003573 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003574#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003575 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003576}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003577module_exit(snd_soc_exit);
3578
3579/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003580MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003581MODULE_DESCRIPTION("ALSA SoC Core");
3582MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003583MODULE_ALIAS("platform:soc-audio");