blob: d342ee2ce28bc40b78996c203ec07a5287f01189 [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
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001430/**
1431 * snd_soc_runtime_set_dai_fmt() - Change DAI link format for a ASoC runtime
1432 * @rtd: The runtime for which the DAI link format should be changed
1433 * @dai_fmt: The new DAI link format
1434 *
1435 * This function updates the DAI link format for all DAIs connected to the DAI
1436 * link for the specified runtime.
1437 *
1438 * Note: For setups with a static format set the dai_fmt field in the
1439 * corresponding snd_dai_link struct instead of using this function.
1440 *
1441 * Returns 0 on success, otherwise a negative error code.
1442 */
1443int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
1444 unsigned int dai_fmt)
1445{
1446 struct snd_soc_dai **codec_dais = rtd->codec_dais;
1447 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1448 unsigned int i;
1449 int ret;
1450
1451 for (i = 0; i < rtd->num_codecs; i++) {
1452 struct snd_soc_dai *codec_dai = codec_dais[i];
1453
1454 ret = snd_soc_dai_set_fmt(codec_dai, dai_fmt);
1455 if (ret != 0 && ret != -ENOTSUPP) {
1456 dev_warn(codec_dai->dev,
1457 "ASoC: Failed to set DAI format: %d\n", ret);
1458 return ret;
1459 }
1460 }
1461
1462 /* Flip the polarity for the "CPU" end of a CODEC<->CODEC link */
1463 if (cpu_dai->codec) {
1464 unsigned int inv_dai_fmt;
1465
1466 inv_dai_fmt = dai_fmt & ~SND_SOC_DAIFMT_MASTER_MASK;
1467 switch (dai_fmt & SND_SOC_DAIFMT_MASTER_MASK) {
1468 case SND_SOC_DAIFMT_CBM_CFM:
1469 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1470 break;
1471 case SND_SOC_DAIFMT_CBM_CFS:
1472 inv_dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1473 break;
1474 case SND_SOC_DAIFMT_CBS_CFM:
1475 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1476 break;
1477 case SND_SOC_DAIFMT_CBS_CFS:
1478 inv_dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1479 break;
1480 }
1481
1482 dai_fmt = inv_dai_fmt;
1483 }
1484
1485 ret = snd_soc_dai_set_fmt(cpu_dai, dai_fmt);
1486 if (ret != 0 && ret != -ENOTSUPP) {
1487 dev_warn(cpu_dai->dev,
1488 "ASoC: Failed to set DAI format: %d\n", ret);
1489 return ret;
1490 }
1491
1492 return 0;
1493}
Lars-Peter Clausenddaca252015-01-08 12:23:05 +01001494EXPORT_SYMBOL_GPL(snd_soc_runtime_set_dai_fmt);
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001495
Mark Brownb19e6e72012-03-14 21:18:39 +00001496static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001497{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001498 struct snd_soc_codec *codec;
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001499 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001500
Liam Girdwood01b9d992012-03-07 10:38:25 +00001501 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001502
Mark Brownb19e6e72012-03-14 21:18:39 +00001503 /* bind DAIs */
1504 for (i = 0; i < card->num_links; i++) {
1505 ret = soc_bind_dai_link(card, i);
1506 if (ret != 0)
1507 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001508 }
1509
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001510 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00001511 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001512 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00001513 if (ret != 0)
1514 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001515 }
1516
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001517 /* initialize the register cache for each available codec */
1518 list_for_each_entry(codec, &codec_list, list) {
1519 if (codec->cache_init)
1520 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001521 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001522 if (ret < 0)
1523 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001524 }
1525
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001526 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01001527 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001528 card->owner, 0, &card->snd_card);
1529 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001530 dev_err(card->dev,
1531 "ASoC: can't create sound card for card %s: %d\n",
1532 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001533 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001534 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001535
Mark Browne37a4972011-03-02 18:21:57 +00001536 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1537 card->dapm.dev = card->dev;
1538 card->dapm.card = card;
1539 list_add(&card->dapm.list, &card->dapm_list);
1540
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001541#ifdef CONFIG_DEBUG_FS
1542 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1543#endif
1544
Mark Brown88ee1c62011-02-02 10:43:26 +00001545#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001546 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001547 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001548#endif
Andy Green6ed25972008-06-13 16:24:05 +01001549
Mark Brown9a841eb2011-04-12 17:51:37 -07001550 if (card->dapm_widgets)
1551 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1552 card->num_dapm_widgets);
1553
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001554 /* initialise the sound card only once */
1555 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001556 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001557 if (ret < 0)
1558 goto card_probe_error;
1559 }
1560
Stephen Warren62ae68f2012-06-08 12:34:23 -06001561 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001562 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1563 order++) {
1564 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001565 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001566 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001567 dev_err(card->dev,
1568 "ASoC: failed to instantiate card %d\n",
1569 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001570 goto probe_dai_err;
1571 }
1572 }
1573 }
1574
1575 /* probe all DAI links on this card */
1576 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1577 order++) {
1578 for (i = 0; i < card->num_links; i++) {
1579 ret = soc_probe_link_dais(card, i, order);
1580 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001581 dev_err(card->dev,
1582 "ASoC: failed to instantiate card %d\n",
1583 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001584 goto probe_dai_err;
1585 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001586 }
1587 }
1588
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001589 for (i = 0; i < card->num_aux_devs; i++) {
1590 ret = soc_probe_aux_dev(card, i);
1591 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001592 dev_err(card->dev,
1593 "ASoC: failed to add auxiliary devices %d\n",
1594 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001595 goto probe_aux_dev_err;
1596 }
1597 }
1598
Mark Brown888df392012-02-16 19:37:51 -08001599 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00001600 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08001601
Mark Brownb7af1da2011-04-07 19:18:44 +09001602 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001603 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001604
Mark Brownb8ad29d2011-03-02 18:35:51 +00001605 if (card->dapm_routes)
1606 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1607 card->num_dapm_routes);
1608
Mark Brown75d9ac42011-09-27 16:41:01 +01001609 for (i = 0; i < card->num_links; i++) {
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001610 if (card->dai_link[i].dai_fmt)
1611 snd_soc_runtime_set_dai_fmt(&card->rtd[i],
1612 card->dai_link[i].dai_fmt);
Mark Brown75d9ac42011-09-27 16:41:01 +01001613 }
1614
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001615 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001616 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001617 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1618 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001619 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1620 "%s", card->driver_name ? card->driver_name : card->name);
1621 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1622 switch (card->snd_card->driver[i]) {
1623 case '_':
1624 case '-':
1625 case '\0':
1626 break;
1627 default:
1628 if (!isalnum(card->snd_card->driver[i]))
1629 card->snd_card->driver[i] = '_';
1630 break;
1631 }
1632 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001633
Mark Brown28e9ad92011-03-02 18:36:34 +00001634 if (card->late_probe) {
1635 ret = card->late_probe(card);
1636 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001637 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001638 card->name, ret);
1639 goto probe_aux_dev_err;
1640 }
1641 }
1642
Stephen Warren16332812011-11-23 12:42:04 -07001643 if (card->fully_routed)
Lars-Peter Clausen7df37882014-06-16 18:13:04 +02001644 snd_soc_dapm_auto_nc_pins(card);
Stephen Warren16332812011-11-23 12:42:04 -07001645
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001646 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001647
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001648 ret = snd_card_register(card->snd_card);
1649 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001650 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1651 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001652 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001653 }
1654
Mark Brown435c5e22008-12-04 15:32:53 +00001655 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001656 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001657 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001658
1659 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001660
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001661probe_aux_dev_err:
1662 for (i = 0; i < card->num_aux_devs; i++)
1663 soc_remove_aux_dev(card, i);
1664
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001665probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001666 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001667
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001668card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001669 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001670 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001671
1672 snd_card_free(card->snd_card);
1673
Mark Brownb19e6e72012-03-14 21:18:39 +00001674base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001675 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001676
Mark Brownb19e6e72012-03-14 21:18:39 +00001677 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001678}
1679
1680/* probes a new socdev */
1681static int soc_probe(struct platform_device *pdev)
1682{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001683 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001684
Vinod Koul70a7ca32011-01-14 19:22:48 +05301685 /*
1686 * no card, so machine driver should be registering card
1687 * we should not be here in that case so ret error
1688 */
1689 if (!card)
1690 return -EINVAL;
1691
Mark Brownfe4085e2012-03-02 13:07:41 +00001692 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001693 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001694 card->name);
1695
Mark Brown435c5e22008-12-04 15:32:53 +00001696 /* Bodge while we unpick instantiation */
1697 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001698
Mark Brown28d528c2012-08-09 18:45:23 +01001699 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001700}
1701
Vinod Koulb0e26482011-01-13 22:48:02 +05301702static int soc_cleanup_card_resources(struct snd_soc_card *card)
1703{
Vinod Koulb0e26482011-01-13 22:48:02 +05301704 int i;
1705
1706 /* make sure any delayed work runs */
1707 for (i = 0; i < card->num_rtd; i++) {
1708 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001709 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301710 }
1711
1712 /* remove auxiliary devices */
1713 for (i = 0; i < card->num_aux_devs; i++)
1714 soc_remove_aux_dev(card, i);
1715
1716 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001717 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301718
1719 soc_cleanup_card_debugfs(card);
1720
1721 /* remove the card */
1722 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001723 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301724
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001725 snd_soc_dapm_free(&card->dapm);
1726
Vinod Koulb0e26482011-01-13 22:48:02 +05301727 snd_card_free(card->snd_card);
1728 return 0;
1729
1730}
1731
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001732/* removes a socdev */
1733static int soc_remove(struct platform_device *pdev)
1734{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001735 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001736
Mark Brownc5af3a22008-11-28 13:29:45 +00001737 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001738 return 0;
1739}
1740
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001741int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001742{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001743 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001744 int i;
Mark Brown51737472009-06-22 13:16:51 +01001745
1746 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001747 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001748
1749 /* Flush out pmdown_time work - we actually do want to run it
1750 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001751 for (i = 0; i < card->num_rtd; i++) {
1752 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001753 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001754 }
Mark Brown51737472009-06-22 13:16:51 +01001755
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001756 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001757
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001758 /* deactivate pins to sleep state */
1759 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001760 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1761 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1762 int j;
1763
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001764 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001765 for (j = 0; j < rtd->num_codecs; j++) {
1766 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
1767 pinctrl_pm_select_sleep_state(codec_dai->dev);
1768 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001769 }
1770
Mark Brown416356f2009-06-30 19:05:15 +01001771 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001772}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001773EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001774
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001775const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301776 .suspend = snd_soc_suspend,
1777 .resume = snd_soc_resume,
1778 .freeze = snd_soc_suspend,
1779 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001780 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301781 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001782};
Stephen Warrendeb26072011-04-05 19:35:30 -06001783EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001784
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001785/* ASoC platform driver */
1786static struct platform_driver soc_driver = {
1787 .driver = {
1788 .name = "soc-audio",
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001789 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001790 },
1791 .probe = soc_probe,
1792 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001793};
1794
Mark Brown096e49d2009-07-05 15:12:22 +01001795/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001796 * snd_soc_cnew - create new control
1797 * @_template: control template
1798 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001799 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001800 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001801 *
1802 * Create a new mixer control from a template control.
1803 *
1804 * Returns 0 for success, else error.
1805 */
1806struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08001807 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00001808 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001809{
1810 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001811 struct snd_kcontrol *kcontrol;
1812 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001813
1814 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001815 template.index = 0;
1816
Mark Brownefb7ac32011-03-08 17:23:24 +00001817 if (!long_name)
1818 long_name = template.name;
1819
1820 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02001821 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00001822 if (!name)
1823 return NULL;
1824
Mark Brownefb7ac32011-03-08 17:23:24 +00001825 template.name = name;
1826 } else {
1827 template.name = long_name;
1828 }
1829
1830 kcontrol = snd_ctl_new1(&template, data);
1831
1832 kfree(name);
1833
1834 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001835}
1836EXPORT_SYMBOL_GPL(snd_soc_cnew);
1837
Liam Girdwood022658b2012-02-03 17:43:09 +00001838static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
1839 const struct snd_kcontrol_new *controls, int num_controls,
1840 const char *prefix, void *data)
1841{
1842 int err, i;
1843
1844 for (i = 0; i < num_controls; i++) {
1845 const struct snd_kcontrol_new *control = &controls[i];
1846 err = snd_ctl_add(card, snd_soc_cnew(control, data,
1847 control->name, prefix));
1848 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001849 dev_err(dev, "ASoC: Failed to add %s: %d\n",
1850 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00001851 return err;
1852 }
1853 }
1854
1855 return 0;
1856}
1857
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01001858struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
1859 const char *name)
1860{
1861 struct snd_card *card = soc_card->snd_card;
1862 struct snd_kcontrol *kctl;
1863
1864 if (unlikely(!name))
1865 return NULL;
1866
1867 list_for_each_entry(kctl, &card->controls, list)
1868 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
1869 return kctl;
1870 return NULL;
1871}
1872EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
1873
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001874/**
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001875 * snd_soc_add_component_controls - Add an array of controls to a component.
1876 *
1877 * @component: Component to add controls to
1878 * @controls: Array of controls to add
1879 * @num_controls: Number of elements in the array
1880 *
1881 * Return: 0 for success, else error.
1882 */
1883int snd_soc_add_component_controls(struct snd_soc_component *component,
1884 const struct snd_kcontrol_new *controls, unsigned int num_controls)
1885{
1886 struct snd_card *card = component->card->snd_card;
1887
1888 return snd_soc_add_controls(card, component->dev, controls,
1889 num_controls, component->name_prefix, component);
1890}
1891EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
1892
1893/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001894 * snd_soc_add_codec_controls - add an array of controls to a codec.
1895 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00001896 * duplicating this code.
1897 *
1898 * @codec: codec to add controls to
1899 * @controls: array of controls to add
1900 * @num_controls: number of elements in the array
1901 *
1902 * Return 0 for success, else error.
1903 */
Liam Girdwood022658b2012-02-03 17:43:09 +00001904int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001905 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Ian Molton3e8e1952009-01-09 00:23:21 +00001906{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001907 return snd_soc_add_component_controls(&codec->component, controls,
1908 num_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001909}
Liam Girdwood022658b2012-02-03 17:43:09 +00001910EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001911
1912/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001913 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00001914 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001915 *
1916 * @platform: platform to add controls to
1917 * @controls: array of controls to add
1918 * @num_controls: number of elements in the array
1919 *
1920 * Return 0 for success, else error.
1921 */
1922int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001923 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001924{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001925 return snd_soc_add_component_controls(&platform->component, controls,
1926 num_controls);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001927}
1928EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
1929
1930/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001931 * snd_soc_add_card_controls - add an array of controls to a SoC card.
1932 * Convenience function to add a list of controls.
1933 *
1934 * @soc_card: SoC card to add controls to
1935 * @controls: array of controls to add
1936 * @num_controls: number of elements in the array
1937 *
1938 * Return 0 for success, else error.
1939 */
1940int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
1941 const struct snd_kcontrol_new *controls, int num_controls)
1942{
1943 struct snd_card *card = soc_card->snd_card;
1944
1945 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
1946 NULL, soc_card);
1947}
1948EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
1949
1950/**
1951 * snd_soc_add_dai_controls - add an array of controls to a DAI.
1952 * Convienience function to add a list of controls.
1953 *
1954 * @dai: DAI to add controls to
1955 * @controls: array of controls to add
1956 * @num_controls: number of elements in the array
1957 *
1958 * Return 0 for success, else error.
1959 */
1960int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
1961 const struct snd_kcontrol_new *controls, int num_controls)
1962{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001963 struct snd_card *card = dai->component->card->snd_card;
Liam Girdwood022658b2012-02-03 17:43:09 +00001964
1965 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
1966 NULL, dai);
1967}
1968EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
1969
1970/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001971 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
1972 * @dai: DAI
1973 * @clk_id: DAI specific clock ID
1974 * @freq: new clock frequency in Hz
1975 * @dir: new clock direction - input/output.
1976 *
1977 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
1978 */
1979int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
1980 unsigned int freq, int dir)
1981{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001982 if (dai->driver && dai->driver->ops->set_sysclk)
1983 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00001984 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01001985 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00001986 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001987 else
Mark Brown1104a9c2014-01-15 19:04:19 +00001988 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001989}
1990EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
1991
1992/**
Mark Brownec4ee522011-03-07 20:58:11 +00001993 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
1994 * @codec: CODEC
1995 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01001996 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00001997 * @freq: new clock frequency in Hz
1998 * @dir: new clock direction - input/output.
1999 *
2000 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2001 */
2002int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01002003 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00002004{
2005 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002006 return codec->driver->set_sysclk(codec, clk_id, source,
2007 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002008 else
Mark Brown1104a9c2014-01-15 19:04:19 +00002009 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00002010}
2011EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2012
2013/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002014 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2015 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002016 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002017 * @div: new clock divisor.
2018 *
2019 * Configures the clock dividers. This is used to derive the best DAI bit and
2020 * frame clocks from the system or master clock. It's best to set the DAI bit
2021 * and frame clocks as low as possible to save system power.
2022 */
2023int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2024 int div_id, int div)
2025{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002026 if (dai->driver && dai->driver->ops->set_clkdiv)
2027 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002028 else
2029 return -EINVAL;
2030}
2031EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2032
2033/**
2034 * snd_soc_dai_set_pll - configure DAI PLL.
2035 * @dai: DAI
2036 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002037 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002038 * @freq_in: PLL input clock frequency in Hz
2039 * @freq_out: requested PLL output clock frequency in Hz
2040 *
2041 * Configures and enables PLL to generate output clock based on input clock.
2042 */
Mark Brown85488032009-09-05 18:52:16 +01002043int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2044 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002045{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002046 if (dai->driver && dai->driver->ops->set_pll)
2047 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002048 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002049 else if (dai->codec && dai->codec->driver->set_pll)
2050 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2051 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002052 else
2053 return -EINVAL;
2054}
2055EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2056
Mark Brownec4ee522011-03-07 20:58:11 +00002057/*
2058 * snd_soc_codec_set_pll - configure codec PLL.
2059 * @codec: CODEC
2060 * @pll_id: DAI specific PLL ID
2061 * @source: DAI specific source for the PLL
2062 * @freq_in: PLL input clock frequency in Hz
2063 * @freq_out: requested PLL output clock frequency in Hz
2064 *
2065 * Configures and enables PLL to generate output clock based on input clock.
2066 */
2067int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2068 unsigned int freq_in, unsigned int freq_out)
2069{
2070 if (codec->driver->set_pll)
2071 return codec->driver->set_pll(codec, pll_id, source,
2072 freq_in, freq_out);
2073 else
2074 return -EINVAL;
2075}
2076EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2077
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002078/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01002079 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2080 * @dai: DAI
2081 * @ratio Ratio of BCLK to Sample rate.
2082 *
2083 * Configures the DAI for a preset BCLK to sample rate ratio.
2084 */
2085int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2086{
2087 if (dai->driver && dai->driver->ops->set_bclk_ratio)
2088 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2089 else
2090 return -EINVAL;
2091}
2092EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2093
2094/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002095 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2096 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002097 * @fmt: SND_SOC_DAIFMT_ format value.
2098 *
2099 * Configures the DAI hardware format and clocking.
2100 */
2101int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2102{
Shawn Guo5e4ba562012-03-09 00:59:40 +08002103 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002104 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08002105 if (dai->driver->ops->set_fmt == NULL)
2106 return -ENOTSUPP;
2107 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002108}
2109EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2110
2111/**
Xiubo Lie5c21512014-03-21 14:17:12 +08002112 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08002113 * @slots: Number of slots in use.
2114 * @tx_mask: bitmask representing active TX slots.
2115 * @rx_mask: bitmask representing active RX slots.
2116 *
2117 * Generates the TDM tx and rx slot default masks for DAI.
2118 */
Xiubo Lie5c21512014-03-21 14:17:12 +08002119static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002120 unsigned int *tx_mask,
2121 unsigned int *rx_mask)
2122{
2123 if (*tx_mask || *rx_mask)
2124 return 0;
2125
2126 if (!slots)
2127 return -EINVAL;
2128
2129 *tx_mask = (1 << slots) - 1;
2130 *rx_mask = (1 << slots) - 1;
2131
2132 return 0;
2133}
2134
2135/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002136 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2137 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002138 * @tx_mask: bitmask representing active TX slots.
2139 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002140 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002141 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002142 *
2143 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2144 * specific.
2145 */
2146int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002147 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002148{
Xiubo Lie5c21512014-03-21 14:17:12 +08002149 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
2150 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002151 &tx_mask, &rx_mask);
2152 else
Xiubo Lie5c21512014-03-21 14:17:12 +08002153 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08002154
Benoit Cousson88bd8702014-07-08 23:19:34 +02002155 dai->tx_mask = tx_mask;
2156 dai->rx_mask = rx_mask;
2157
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002158 if (dai->driver && dai->driver->ops->set_tdm_slot)
2159 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002160 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002161 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08002162 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002163}
2164EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2165
2166/**
Barry Song472df3c2009-09-12 01:16:29 +08002167 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2168 * @dai: DAI
2169 * @tx_num: how many TX channels
2170 * @tx_slot: pointer to an array which imply the TX slot number channel
2171 * 0~num-1 uses
2172 * @rx_num: how many RX channels
2173 * @rx_slot: pointer to an array which imply the RX slot number channel
2174 * 0~num-1 uses
2175 *
2176 * configure the relationship between channel number and TDM slot number.
2177 */
2178int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2179 unsigned int tx_num, unsigned int *tx_slot,
2180 unsigned int rx_num, unsigned int *rx_slot)
2181{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002182 if (dai->driver && dai->driver->ops->set_channel_map)
2183 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002184 rx_num, rx_slot);
2185 else
2186 return -EINVAL;
2187}
2188EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2189
2190/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002191 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2192 * @dai: DAI
2193 * @tristate: tristate enable
2194 *
2195 * Tristates the DAI so that others can use it.
2196 */
2197int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2198{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002199 if (dai->driver && dai->driver->ops->set_tristate)
2200 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002201 else
2202 return -EINVAL;
2203}
2204EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2205
2206/**
2207 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2208 * @dai: DAI
2209 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00002210 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002211 *
2212 * Mutes the DAI DAC.
2213 */
Mark Brownda183962013-02-06 15:44:07 +00002214int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2215 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002216{
Mark Brownda183962013-02-06 15:44:07 +00002217 if (!dai->driver)
2218 return -ENOTSUPP;
2219
2220 if (dai->driver->ops->mute_stream)
2221 return dai->driver->ops->mute_stream(dai, mute, direction);
2222 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2223 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002224 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002225 else
Mark Brown04570c62012-04-13 19:16:03 +01002226 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002227}
2228EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2229
Benoit Cousson88bd8702014-07-08 23:19:34 +02002230static int snd_soc_init_multicodec(struct snd_soc_card *card,
2231 struct snd_soc_dai_link *dai_link)
2232{
2233 /* Legacy codec/codec_dai link is a single entry in multicodec */
2234 if (dai_link->codec_name || dai_link->codec_of_node ||
2235 dai_link->codec_dai_name) {
2236 dai_link->num_codecs = 1;
2237
2238 dai_link->codecs = devm_kzalloc(card->dev,
2239 sizeof(struct snd_soc_dai_link_component),
2240 GFP_KERNEL);
2241 if (!dai_link->codecs)
2242 return -ENOMEM;
2243
2244 dai_link->codecs[0].name = dai_link->codec_name;
2245 dai_link->codecs[0].of_node = dai_link->codec_of_node;
2246 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
2247 }
2248
2249 if (!dai_link->codecs) {
2250 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
2251 return -EINVAL;
2252 }
2253
2254 return 0;
2255}
2256
Mark Brownc5af3a22008-11-28 13:29:45 +00002257/**
2258 * snd_soc_register_card - Register a card with the ASoC core
2259 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002260 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002261 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002262 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302263int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002264{
Benoit Cousson88bd8702014-07-08 23:19:34 +02002265 int i, j, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002266
Mark Brownc5af3a22008-11-28 13:29:45 +00002267 if (!card->name || !card->dev)
2268 return -EINVAL;
2269
Stephen Warren5a504962011-12-21 10:40:59 -07002270 for (i = 0; i < card->num_links; i++) {
2271 struct snd_soc_dai_link *link = &card->dai_link[i];
2272
Benoit Cousson88bd8702014-07-08 23:19:34 +02002273 ret = snd_soc_init_multicodec(card, link);
2274 if (ret) {
2275 dev_err(card->dev, "ASoC: failed to init multicodec\n");
2276 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07002277 }
Benoit Cousson88bd8702014-07-08 23:19:34 +02002278
2279 for (j = 0; j < link->num_codecs; j++) {
2280 /*
2281 * Codec must be specified by 1 of name or OF node,
2282 * not both or neither.
2283 */
2284 if (!!link->codecs[j].name ==
2285 !!link->codecs[j].of_node) {
2286 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
2287 link->name);
2288 return -EINVAL;
2289 }
2290 /* Codec DAI name must be specified */
2291 if (!link->codecs[j].dai_name) {
2292 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
2293 link->name);
2294 return -EINVAL;
2295 }
Stephen Warrenbc926572012-05-25 18:22:11 -06002296 }
Stephen Warren5a504962011-12-21 10:40:59 -07002297
2298 /*
2299 * Platform may be specified by either name or OF node, but
2300 * can be left unspecified, and a dummy platform will be used.
2301 */
2302 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002303 dev_err(card->dev,
2304 "ASoC: Both platform name/of_node are set for %s\n",
2305 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002306 return -EINVAL;
2307 }
2308
2309 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06002310 * CPU device may be specified by either name or OF node, but
2311 * can be left unspecified, and will be matched based on DAI
2312 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07002313 */
Stephen Warrenbc926572012-05-25 18:22:11 -06002314 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002315 dev_err(card->dev,
2316 "ASoC: Neither/both cpu name/of_node are set for %s\n",
2317 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06002318 return -EINVAL;
2319 }
2320 /*
2321 * At least one of CPU DAI name or CPU device name/node must be
2322 * specified
2323 */
2324 if (!link->cpu_dai_name &&
2325 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002326 dev_err(card->dev,
2327 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
2328 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002329 return -EINVAL;
2330 }
2331 }
2332
Mark Browned77cc12011-05-03 18:25:34 +01002333 dev_set_drvdata(card->dev, card);
2334
Stephen Warren111c6412011-01-28 14:26:35 -07002335 snd_soc_initialize_card_lists(card);
2336
Vinod Koul150dd2f2011-01-13 22:48:32 +05302337 soc_init_card_debugfs(card);
2338
Mark Brown181a6892012-03-14 20:18:49 +00002339 card->rtd = devm_kzalloc(card->dev,
2340 sizeof(struct snd_soc_pcm_runtime) *
2341 (card->num_links + card->num_aux_devs),
2342 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002343 if (card->rtd == NULL)
2344 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01002345 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002346 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002347
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002348 for (i = 0; i < card->num_links; i++) {
2349 card->rtd[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002350 card->rtd[i].dai_link = &card->dai_link[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02002351 card->rtd[i].codec_dais = devm_kzalloc(card->dev,
2352 sizeof(struct snd_soc_dai *) *
2353 (card->rtd[i].dai_link->num_codecs),
2354 GFP_KERNEL);
2355 if (card->rtd[i].codec_dais == NULL)
2356 return -ENOMEM;
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002357 }
2358
2359 for (i = 0; i < card->num_aux_devs; i++)
2360 card->rtd_aux[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002361
Mark Browndb432b42011-10-03 21:06:40 +01002362 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00002363 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002364 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002365 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002366
Mark Brownb19e6e72012-03-14 21:18:39 +00002367 ret = snd_soc_instantiate_card(card);
2368 if (ret != 0)
2369 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002370
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002371 /* deactivate pins to sleep state */
2372 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002373 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2374 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2375 int j;
2376
2377 for (j = 0; j < rtd->num_codecs; j++) {
2378 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2379 if (!codec_dai->active)
2380 pinctrl_pm_select_sleep_state(codec_dai->dev);
2381 }
2382
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002383 if (!cpu_dai->active)
2384 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2385 }
2386
Mark Brownb19e6e72012-03-14 21:18:39 +00002387 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00002388}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302389EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002390
2391/**
2392 * snd_soc_unregister_card - Unregister a card with the ASoC core
2393 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002394 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002395 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002396 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302397int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002398{
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002399 if (card->instantiated) {
2400 card->instantiated = false;
Lars-Peter Clausen1c325f72014-09-04 19:44:05 +02002401 snd_soc_dapm_shutdown(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302402 soc_cleanup_card_resources(card);
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002403 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002404 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00002405
2406 return 0;
2407}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302408EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002409
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002410/*
2411 * Simplify DAI link configuration by removing ".-1" from device names
2412 * and sanitizing names.
2413 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002414static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002415{
2416 char *found, name[NAME_SIZE];
2417 int id1, id2;
2418
2419 if (dev_name(dev) == NULL)
2420 return NULL;
2421
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002422 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002423
2424 /* are we a "%s.%d" name (platform and SPI components) */
2425 found = strstr(name, dev->driver->name);
2426 if (found) {
2427 /* get ID */
2428 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2429
2430 /* discard ID from name if ID == -1 */
2431 if (*id == -1)
2432 found[strlen(dev->driver->name)] = '\0';
2433 }
2434
2435 } else {
2436 /* I2C component devices are named "bus-addr" */
2437 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2438 char tmp[NAME_SIZE];
2439
2440 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002441 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002442
2443 /* sanitize component name for DAI link creation */
2444 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002445 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002446 } else
2447 *id = 0;
2448 }
2449
2450 return kstrdup(name, GFP_KERNEL);
2451}
2452
2453/*
2454 * Simplify DAI link naming for single devices with multiple DAIs by removing
2455 * any ".-1" and using the DAI name (instead of device name).
2456 */
2457static inline char *fmt_multiple_name(struct device *dev,
2458 struct snd_soc_dai_driver *dai_drv)
2459{
2460 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002461 dev_err(dev,
2462 "ASoC: error - multiple DAI %s registered with no name\n",
2463 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002464 return NULL;
2465 }
2466
2467 return kstrdup(dai_drv->name, GFP_KERNEL);
2468}
2469
Mark Brown91151712008-11-30 23:31:24 +00002470/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002471 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002472 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002473 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00002474 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002475static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00002476{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002477 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00002478
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002479 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002480 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2481 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002482 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002483 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002484 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002485 }
Mark Brown91151712008-11-30 23:31:24 +00002486}
Mark Brown91151712008-11-30 23:31:24 +00002487
2488/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002489 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002490 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002491 * @component: The component the DAIs are registered for
2492 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00002493 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002494 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
2495 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00002496 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002497static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002498 struct snd_soc_dai_driver *dai_drv, size_t count,
2499 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00002500{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002501 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002502 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002503 unsigned int i;
2504 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002505
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002506 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00002507
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002508 component->dai_drv = dai_drv;
2509 component->num_dai = count;
2510
Mark Brown91151712008-11-30 23:31:24 +00002511 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002512
2513 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08002514 if (dai == NULL) {
2515 ret = -ENOMEM;
2516 goto err;
2517 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002518
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002519 /*
2520 * Back in the old days when we still had component-less DAIs,
2521 * instead of having a static name, component-less DAIs would
2522 * inherit the name of the parent device so it is possible to
2523 * register multiple instances of the DAI. We still need to keep
2524 * the same naming style even though those DAIs are not
2525 * component-less anymore.
2526 */
2527 if (count == 1 && legacy_dai_naming) {
2528 dai->name = fmt_single_name(dev, &dai->id);
2529 } else {
2530 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
2531 if (dai_drv[i].id)
2532 dai->id = dai_drv[i].id;
2533 else
2534 dai->id = i;
2535 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002536 if (dai->name == NULL) {
2537 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002538 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00002539 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002540 }
2541
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002542 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002543 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002544 dai->driver = &dai_drv[i];
2545 if (!dai->driver->ops)
2546 dai->driver->ops = &null_dai_ops;
2547
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01002548 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01002549
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002550 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00002551 }
2552
2553 return 0;
2554
2555err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002556 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00002557
2558 return ret;
2559}
Mark Brown91151712008-11-30 23:31:24 +00002560
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002561static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
2562 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002563{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002564 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002565
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002566 component->driver->seq_notifier(component, type, subseq);
2567}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002568
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002569static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
2570 int event)
2571{
2572 struct snd_soc_component *component = dapm->component;
2573
2574 return component->driver->stream_event(component, event);
2575}
2576
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002577static int snd_soc_component_initialize(struct snd_soc_component *component,
2578 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002579{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002580 struct snd_soc_dapm_context *dapm;
2581
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002582 component->name = fmt_single_name(dev, &component->id);
2583 if (!component->name) {
2584 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002585 return -ENOMEM;
2586 }
2587
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002588 component->dev = dev;
2589 component->driver = driver;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002590 component->probe = component->driver->probe;
2591 component->remove = component->driver->remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002592
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002593 if (!component->dapm_ptr)
2594 component->dapm_ptr = &component->dapm;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002595
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002596 dapm = component->dapm_ptr;
2597 dapm->dev = dev;
2598 dapm->component = component;
2599 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02002600 dapm->idle_bias_off = true;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002601 if (driver->seq_notifier)
2602 dapm->seq_notifier = snd_soc_component_seq_notifier;
2603 if (driver->stream_event)
2604 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002605
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002606 component->controls = driver->controls;
2607 component->num_controls = driver->num_controls;
2608 component->dapm_widgets = driver->dapm_widgets;
2609 component->num_dapm_widgets = driver->num_dapm_widgets;
2610 component->dapm_routes = driver->dapm_routes;
2611 component->num_dapm_routes = driver->num_dapm_routes;
2612
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002613 INIT_LIST_HEAD(&component->dai_list);
2614 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002615
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002616 return 0;
2617}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002618
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002619static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002620{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002621 int val_bytes = regmap_get_val_bytes(component->regmap);
2622
2623 /* Errors are legitimate for non-integer byte multiples */
2624 if (val_bytes > 0)
2625 component->val_bytes = val_bytes;
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002626}
2627
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002628#ifdef CONFIG_REGMAP
2629
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002630/**
2631 * snd_soc_component_init_regmap() - Initialize regmap instance for the component
2632 * @component: The component for which to initialize the regmap instance
2633 * @regmap: The regmap instance that should be used by the component
2634 *
2635 * This function allows deferred assignment of the regmap instance that is
2636 * associated with the component. Only use this if the regmap instance is not
2637 * yet ready when the component is registered. The function must also be called
2638 * before the first IO attempt of the component.
2639 */
2640void snd_soc_component_init_regmap(struct snd_soc_component *component,
2641 struct regmap *regmap)
2642{
2643 component->regmap = regmap;
2644 snd_soc_component_setup_regmap(component);
2645}
2646EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
2647
2648/**
2649 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the component
2650 * @component: The component for which to de-initialize the regmap instance
2651 *
2652 * Calls regmap_exit() on the regmap instance associated to the component and
2653 * removes the regmap instance from the component.
2654 *
2655 * This function should only be used if snd_soc_component_init_regmap() was used
2656 * to initialize the regmap instance.
2657 */
2658void snd_soc_component_exit_regmap(struct snd_soc_component *component)
2659{
2660 regmap_exit(component->regmap);
2661 component->regmap = NULL;
2662}
2663EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
2664
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002665#endif
2666
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002667static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
2668{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002669 if (!component->write && !component->read) {
2670 if (!component->regmap)
2671 component->regmap = dev_get_regmap(component->dev, NULL);
2672 if (component->regmap)
2673 snd_soc_component_setup_regmap(component);
2674 }
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002675
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002676 list_add(&component->list, &component_list);
2677}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002678
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002679static void snd_soc_component_add(struct snd_soc_component *component)
2680{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002681 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002682 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002683 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002684}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002685
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002686static void snd_soc_component_cleanup(struct snd_soc_component *component)
2687{
2688 snd_soc_unregister_dais(component);
2689 kfree(component->name);
2690}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002691
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002692static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
2693{
2694 list_del(&component->list);
2695}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002696
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002697static void snd_soc_component_del(struct snd_soc_component *component)
2698{
2699 mutex_lock(&client_mutex);
2700 snd_soc_component_del_unlocked(component);
2701 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002702}
2703
2704int snd_soc_register_component(struct device *dev,
2705 const struct snd_soc_component_driver *cmpnt_drv,
2706 struct snd_soc_dai_driver *dai_drv,
2707 int num_dai)
2708{
2709 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002710 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002711
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002712 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002713 if (!cmpnt) {
2714 dev_err(dev, "ASoC: Failed to allocate memory\n");
2715 return -ENOMEM;
2716 }
2717
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002718 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
2719 if (ret)
2720 goto err_free;
2721
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002722 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002723 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002724
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002725 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
2726 if (ret < 0) {
2727 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
2728 goto err_cleanup;
2729 }
2730
2731 snd_soc_component_add(cmpnt);
2732
2733 return 0;
2734
2735err_cleanup:
2736 snd_soc_component_cleanup(cmpnt);
2737err_free:
2738 kfree(cmpnt);
2739 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002740}
2741EXPORT_SYMBOL_GPL(snd_soc_register_component);
2742
2743/**
2744 * snd_soc_unregister_component - Unregister a component from the ASoC core
2745 *
2746 */
2747void snd_soc_unregister_component(struct device *dev)
2748{
2749 struct snd_soc_component *cmpnt;
2750
2751 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002752 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002753 goto found;
2754 }
2755 return;
2756
2757found:
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002758 snd_soc_component_del(cmpnt);
2759 snd_soc_component_cleanup(cmpnt);
2760 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002761}
2762EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
2763
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002764static int snd_soc_platform_drv_probe(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002765{
2766 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2767
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002768 return platform->driver->probe(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002769}
2770
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002771static void snd_soc_platform_drv_remove(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002772{
2773 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2774
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002775 platform->driver->remove(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002776}
2777
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002778/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002779 * snd_soc_add_platform - Add a platform to the ASoC core
2780 * @dev: The parent device for the platform
2781 * @platform: The platform to add
2782 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00002783 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002784int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01002785 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002786{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002787 int ret;
2788
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002789 ret = snd_soc_component_initialize(&platform->component,
2790 &platform_drv->component_driver, dev);
2791 if (ret)
2792 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002793
2794 platform->dev = dev;
2795 platform->driver = platform_drv;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002796
2797 if (platform_drv->probe)
2798 platform->component.probe = snd_soc_platform_drv_probe;
2799 if (platform_drv->remove)
2800 platform->component.remove = snd_soc_platform_drv_remove;
Mark Brown12a48a8c2008-12-03 19:40:30 +00002801
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02002802#ifdef CONFIG_DEBUG_FS
2803 platform->component.debugfs_prefix = "platform";
2804#endif
Mark Brown12a48a8c2008-12-03 19:40:30 +00002805
2806 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002807 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002808 list_add(&platform->list, &platform_list);
2809 mutex_unlock(&client_mutex);
2810
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002811 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
2812 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002813
2814 return 0;
2815}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002816EXPORT_SYMBOL_GPL(snd_soc_add_platform);
2817
2818/**
2819 * snd_soc_register_platform - Register a platform with the ASoC core
2820 *
2821 * @platform: platform to register
2822 */
2823int snd_soc_register_platform(struct device *dev,
2824 const struct snd_soc_platform_driver *platform_drv)
2825{
2826 struct snd_soc_platform *platform;
2827 int ret;
2828
2829 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
2830
2831 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
2832 if (platform == NULL)
2833 return -ENOMEM;
2834
2835 ret = snd_soc_add_platform(dev, platform, platform_drv);
2836 if (ret)
2837 kfree(platform);
2838
2839 return ret;
2840}
Mark Brown12a48a8c2008-12-03 19:40:30 +00002841EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2842
2843/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002844 * snd_soc_remove_platform - Remove a platform from the ASoC core
2845 * @platform: the platform to remove
2846 */
2847void snd_soc_remove_platform(struct snd_soc_platform *platform)
2848{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002849
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002850 mutex_lock(&client_mutex);
2851 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002852 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002853 mutex_unlock(&client_mutex);
2854
2855 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002856 platform->component.name);
Daniel Mackdecc27b2014-10-07 13:41:23 +02002857
2858 snd_soc_component_cleanup(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002859}
2860EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
2861
2862struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
2863{
2864 struct snd_soc_platform *platform;
2865
2866 list_for_each_entry(platform, &platform_list, list) {
2867 if (dev == platform->dev)
2868 return platform;
2869 }
2870
2871 return NULL;
2872}
2873EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
2874
2875/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00002876 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2877 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002878 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002879 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002880void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002881{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002882 struct snd_soc_platform *platform;
2883
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002884 platform = snd_soc_lookup_platform(dev);
2885 if (!platform)
2886 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002887
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002888 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002889 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002890}
2891EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2892
Mark Brown151ab222009-05-09 16:22:58 +01002893static u64 codec_format_map[] = {
2894 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2895 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2896 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2897 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2898 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2899 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2900 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2901 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2902 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2903 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2904 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2905 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2906 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2907 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2908 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2909 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2910};
2911
2912/* Fix up the DAI formats for endianness: codecs don't actually see
2913 * the endianness of the data but we're using the CPU format
2914 * definitions which do need to include endianness so we ensure that
2915 * codec DAIs always have both big and little endian variants set.
2916 */
2917static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2918{
2919 int i;
2920
2921 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2922 if (stream->formats & codec_format_map[i])
2923 stream->formats |= codec_format_map[i];
2924}
2925
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002926static int snd_soc_codec_drv_probe(struct snd_soc_component *component)
2927{
2928 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2929
2930 return codec->driver->probe(codec);
2931}
2932
2933static void snd_soc_codec_drv_remove(struct snd_soc_component *component)
2934{
2935 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2936
2937 codec->driver->remove(codec);
2938}
2939
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002940static int snd_soc_codec_drv_write(struct snd_soc_component *component,
2941 unsigned int reg, unsigned int val)
2942{
2943 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2944
2945 return codec->driver->write(codec, reg, val);
2946}
2947
2948static int snd_soc_codec_drv_read(struct snd_soc_component *component,
2949 unsigned int reg, unsigned int *val)
2950{
2951 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2952
2953 *val = codec->driver->read(codec, reg);
2954
2955 return 0;
2956}
2957
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02002958static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
2959 enum snd_soc_bias_level level)
2960{
2961 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
2962
2963 return codec->driver->set_bias_level(codec, level);
2964}
2965
Mark Brown0d0cf002008-12-10 14:32:45 +00002966/**
2967 * snd_soc_register_codec - Register a codec with the ASoC core
2968 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002969 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002970 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002971int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00002972 const struct snd_soc_codec_driver *codec_drv,
2973 struct snd_soc_dai_driver *dai_drv,
2974 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00002975{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002976 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002977 struct snd_soc_dai *dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002978 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01002979
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002980 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00002981
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002982 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
2983 if (codec == NULL)
2984 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00002985
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002986 codec->component.dapm_ptr = &codec->dapm;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002987 codec->component.codec = codec;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002988
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002989 ret = snd_soc_component_initialize(&codec->component,
2990 &codec_drv->component_driver, dev);
2991 if (ret)
2992 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01002993
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002994 if (codec_drv->controls) {
2995 codec->component.controls = codec_drv->controls;
2996 codec->component.num_controls = codec_drv->num_controls;
2997 }
2998 if (codec_drv->dapm_widgets) {
2999 codec->component.dapm_widgets = codec_drv->dapm_widgets;
3000 codec->component.num_dapm_widgets = codec_drv->num_dapm_widgets;
3001 }
3002 if (codec_drv->dapm_routes) {
3003 codec->component.dapm_routes = codec_drv->dapm_routes;
3004 codec->component.num_dapm_routes = codec_drv->num_dapm_routes;
3005 }
3006
3007 if (codec_drv->probe)
3008 codec->component.probe = snd_soc_codec_drv_probe;
3009 if (codec_drv->remove)
3010 codec->component.remove = snd_soc_codec_drv_remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003011 if (codec_drv->write)
3012 codec->component.write = snd_soc_codec_drv_write;
3013 if (codec_drv->read)
3014 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003015 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02003016 codec->dapm.idle_bias_off = codec_drv->idle_bias_off;
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02003017 codec->dapm.suspend_bias_off = codec_drv->suspend_bias_off;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003018 if (codec_drv->seq_notifier)
3019 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003020 if (codec_drv->set_bias_level)
3021 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003022 codec->dev = dev;
3023 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003024 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003025
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02003026#ifdef CONFIG_DEBUG_FS
3027 codec->component.init_debugfs = soc_init_codec_debugfs;
3028 codec->component.debugfs_prefix = "codec";
3029#endif
Xiubo Lia39f75f2014-03-26 13:40:23 +08003030
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003031 if (codec_drv->get_regmap)
3032 codec->component.regmap = codec_drv->get_regmap(dev);
Xiubo Lia39f75f2014-03-26 13:40:23 +08003033
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003034 for (i = 0; i < num_dai; i++) {
3035 fixup_codec_formats(&dai_drv[i].playback);
3036 fixup_codec_formats(&dai_drv[i].capture);
3037 }
3038
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003039 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
3040 if (ret < 0) {
3041 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
3042 goto err_cleanup;
3043 }
3044
3045 list_for_each_entry(dai, &codec->component.dai_list, list)
3046 dai->codec = codec;
3047
Mark Brown054880f2012-04-09 17:29:19 +01003048 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003049 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01003050 list_add(&codec->list, &codec_list);
3051 mutex_unlock(&client_mutex);
3052
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003053 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
3054 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003055 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003056
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003057err_cleanup:
3058 snd_soc_component_cleanup(&codec->component);
3059err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003060 kfree(codec);
3061 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003062}
3063EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3064
3065/**
3066 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3067 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003068 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003069 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003070void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003071{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003072 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003073
3074 list_for_each_entry(codec, &codec_list, list) {
3075 if (dev == codec->dev)
3076 goto found;
3077 }
3078 return;
3079
3080found:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003081
Mark Brown0d0cf002008-12-10 14:32:45 +00003082 mutex_lock(&client_mutex);
3083 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003084 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00003085 mutex_unlock(&client_mutex);
3086
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003087 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
3088 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003089
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003090 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003091 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003092 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003093}
3094EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3095
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003096/* Retrieve a card's name from device tree */
3097int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3098 const char *propname)
3099{
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303100 struct device_node *np;
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003101 int ret;
3102
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303103 if (!card->dev) {
3104 pr_err("card->dev is not set before calling %s\n", __func__);
3105 return -EINVAL;
3106 }
3107
3108 np = card->dev->of_node;
3109
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003110 ret = of_property_read_string_index(np, propname, 0, &card->name);
3111 /*
3112 * EINVAL means the property does not exist. This is fine providing
3113 * card->name was previously set, which is checked later in
3114 * snd_soc_register_card.
3115 */
3116 if (ret < 0 && ret != -EINVAL) {
3117 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003118 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003119 propname, ret);
3120 return ret;
3121 }
3122
3123 return 0;
3124}
3125EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3126
Xiubo Li9a6d4862014-02-08 15:59:52 +08003127static const struct snd_soc_dapm_widget simple_widgets[] = {
3128 SND_SOC_DAPM_MIC("Microphone", NULL),
3129 SND_SOC_DAPM_LINE("Line", NULL),
3130 SND_SOC_DAPM_HP("Headphone", NULL),
3131 SND_SOC_DAPM_SPK("Speaker", NULL),
3132};
3133
3134int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
3135 const char *propname)
3136{
3137 struct device_node *np = card->dev->of_node;
3138 struct snd_soc_dapm_widget *widgets;
3139 const char *template, *wname;
3140 int i, j, num_widgets, ret;
3141
3142 num_widgets = of_property_count_strings(np, propname);
3143 if (num_widgets < 0) {
3144 dev_err(card->dev,
3145 "ASoC: Property '%s' does not exist\n", propname);
3146 return -EINVAL;
3147 }
3148 if (num_widgets & 1) {
3149 dev_err(card->dev,
3150 "ASoC: Property '%s' length is not even\n", propname);
3151 return -EINVAL;
3152 }
3153
3154 num_widgets /= 2;
3155 if (!num_widgets) {
3156 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3157 propname);
3158 return -EINVAL;
3159 }
3160
3161 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3162 GFP_KERNEL);
3163 if (!widgets) {
3164 dev_err(card->dev,
3165 "ASoC: Could not allocate memory for widgets\n");
3166 return -ENOMEM;
3167 }
3168
3169 for (i = 0; i < num_widgets; i++) {
3170 ret = of_property_read_string_index(np, propname,
3171 2 * i, &template);
3172 if (ret) {
3173 dev_err(card->dev,
3174 "ASoC: Property '%s' index %d read error:%d\n",
3175 propname, 2 * i, ret);
3176 return -EINVAL;
3177 }
3178
3179 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3180 if (!strncmp(template, simple_widgets[j].name,
3181 strlen(simple_widgets[j].name))) {
3182 widgets[i] = simple_widgets[j];
3183 break;
3184 }
3185 }
3186
3187 if (j >= ARRAY_SIZE(simple_widgets)) {
3188 dev_err(card->dev,
3189 "ASoC: DAPM widget '%s' is not supported\n",
3190 template);
3191 return -EINVAL;
3192 }
3193
3194 ret = of_property_read_string_index(np, propname,
3195 (2 * i) + 1,
3196 &wname);
3197 if (ret) {
3198 dev_err(card->dev,
3199 "ASoC: Property '%s' index %d read error:%d\n",
3200 propname, (2 * i) + 1, ret);
3201 return -EINVAL;
3202 }
3203
3204 widgets[i].name = wname;
3205 }
3206
3207 card->dapm_widgets = widgets;
3208 card->num_dapm_widgets = num_widgets;
3209
3210 return 0;
3211}
3212EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
3213
Xiubo Li89c67852014-02-14 09:34:35 +08003214int snd_soc_of_parse_tdm_slot(struct device_node *np,
3215 unsigned int *slots,
3216 unsigned int *slot_width)
3217{
3218 u32 val;
3219 int ret;
3220
3221 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3222 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3223 if (ret)
3224 return ret;
3225
3226 if (slots)
3227 *slots = val;
3228 }
3229
3230 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3231 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3232 if (ret)
3233 return ret;
3234
3235 if (slot_width)
3236 *slot_width = val;
3237 }
3238
3239 return 0;
3240}
3241EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3242
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003243int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3244 const char *propname)
3245{
3246 struct device_node *np = card->dev->of_node;
Peter Rosinf8781db2014-11-27 22:02:42 +01003247 int num_routes, old_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003248 struct snd_soc_dapm_route *routes;
3249 int i, ret;
3250
3251 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08003252 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003253 dev_err(card->dev,
3254 "ASoC: Property '%s' does not exist or its length is not even\n",
3255 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003256 return -EINVAL;
3257 }
3258 num_routes /= 2;
3259 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003260 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003261 propname);
3262 return -EINVAL;
3263 }
3264
Peter Rosinf8781db2014-11-27 22:02:42 +01003265 old_routes = card->num_dapm_routes;
3266 routes = devm_kzalloc(card->dev,
3267 (old_routes + num_routes) * sizeof(*routes),
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003268 GFP_KERNEL);
3269 if (!routes) {
3270 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003271 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003272 return -EINVAL;
3273 }
3274
Peter Rosinf8781db2014-11-27 22:02:42 +01003275 memcpy(routes, card->dapm_routes, old_routes * sizeof(*routes));
3276
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003277 for (i = 0; i < num_routes; i++) {
3278 ret = of_property_read_string_index(np, propname,
Peter Rosinf8781db2014-11-27 22:02:42 +01003279 2 * i, &routes[old_routes + i].sink);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003280 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09003281 dev_err(card->dev,
3282 "ASoC: Property '%s' index %d could not be read: %d\n",
3283 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003284 return -EINVAL;
3285 }
3286 ret = of_property_read_string_index(np, propname,
Peter Rosinf8781db2014-11-27 22:02:42 +01003287 (2 * i) + 1, &routes[old_routes + i].source);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003288 if (ret) {
3289 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09003290 "ASoC: Property '%s' index %d could not be read: %d\n",
3291 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003292 return -EINVAL;
3293 }
3294 }
3295
Peter Rosinf8781db2014-11-27 22:02:42 +01003296 card->num_dapm_routes += num_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003297 card->dapm_routes = routes;
3298
3299 return 0;
3300}
3301EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3302
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003303unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02003304 const char *prefix,
3305 struct device_node **bitclkmaster,
3306 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003307{
3308 int ret, i;
3309 char prop[128];
3310 unsigned int format = 0;
3311 int bit, frame;
3312 const char *str;
3313 struct {
3314 char *name;
3315 unsigned int val;
3316 } of_fmt_table[] = {
3317 { "i2s", SND_SOC_DAIFMT_I2S },
3318 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
3319 { "left_j", SND_SOC_DAIFMT_LEFT_J },
3320 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
3321 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
3322 { "ac97", SND_SOC_DAIFMT_AC97 },
3323 { "pdm", SND_SOC_DAIFMT_PDM},
3324 { "msb", SND_SOC_DAIFMT_MSB },
3325 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003326 };
3327
3328 if (!prefix)
3329 prefix = "";
3330
3331 /*
3332 * check "[prefix]format = xxx"
3333 * SND_SOC_DAIFMT_FORMAT_MASK area
3334 */
3335 snprintf(prop, sizeof(prop), "%sformat", prefix);
3336 ret = of_property_read_string(np, prop, &str);
3337 if (ret == 0) {
3338 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3339 if (strcmp(str, of_fmt_table[i].name) == 0) {
3340 format |= of_fmt_table[i].val;
3341 break;
3342 }
3343 }
3344 }
3345
3346 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003347 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003348 * SND_SOC_DAIFMT_CLOCK_MASK area
3349 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003350 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
3351 if (of_get_property(np, prop, NULL))
3352 format |= SND_SOC_DAIFMT_CONT;
3353 else
3354 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003355
3356 /*
3357 * check "[prefix]bitclock-inversion"
3358 * check "[prefix]frame-inversion"
3359 * SND_SOC_DAIFMT_INV_MASK area
3360 */
3361 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3362 bit = !!of_get_property(np, prop, NULL);
3363
3364 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3365 frame = !!of_get_property(np, prop, NULL);
3366
3367 switch ((bit << 4) + frame) {
3368 case 0x11:
3369 format |= SND_SOC_DAIFMT_IB_IF;
3370 break;
3371 case 0x10:
3372 format |= SND_SOC_DAIFMT_IB_NF;
3373 break;
3374 case 0x01:
3375 format |= SND_SOC_DAIFMT_NB_IF;
3376 break;
3377 default:
3378 /* SND_SOC_DAIFMT_NB_NF is default */
3379 break;
3380 }
3381
3382 /*
3383 * check "[prefix]bitclock-master"
3384 * check "[prefix]frame-master"
3385 * SND_SOC_DAIFMT_MASTER_MASK area
3386 */
3387 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3388 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003389 if (bit && bitclkmaster)
3390 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003391
3392 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3393 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003394 if (frame && framemaster)
3395 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003396
3397 switch ((bit << 4) + frame) {
3398 case 0x11:
3399 format |= SND_SOC_DAIFMT_CBM_CFM;
3400 break;
3401 case 0x10:
3402 format |= SND_SOC_DAIFMT_CBM_CFS;
3403 break;
3404 case 0x01:
3405 format |= SND_SOC_DAIFMT_CBS_CFM;
3406 break;
3407 default:
3408 format |= SND_SOC_DAIFMT_CBS_CFS;
3409 break;
3410 }
3411
3412 return format;
3413}
3414EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3415
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003416static int snd_soc_get_dai_name(struct of_phandle_args *args,
3417 const char **dai_name)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003418{
3419 struct snd_soc_component *pos;
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003420 int ret = -EPROBE_DEFER;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003421
3422 mutex_lock(&client_mutex);
3423 list_for_each_entry(pos, &component_list, list) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003424 if (pos->dev->of_node != args->np)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003425 continue;
3426
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003427 if (pos->driver->of_xlate_dai_name) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003428 ret = pos->driver->of_xlate_dai_name(pos,
3429 args,
3430 dai_name);
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003431 } else {
3432 int id = -1;
3433
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003434 switch (args->args_count) {
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003435 case 0:
3436 id = 0; /* same as dai_drv[0] */
3437 break;
3438 case 1:
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003439 id = args->args[0];
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003440 break;
3441 default:
3442 /* not supported */
3443 break;
3444 }
3445
3446 if (id < 0 || id >= pos->num_dai) {
3447 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08003448 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003449 }
Xiubo Lie41975e2013-12-20 14:39:51 +08003450
3451 ret = 0;
3452
3453 *dai_name = pos->dai_drv[id].name;
3454 if (!*dai_name)
3455 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003456 }
3457
Kuninori Morimotocb470082013-09-10 17:39:56 -07003458 break;
3459 }
3460 mutex_unlock(&client_mutex);
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003461 return ret;
3462}
3463
3464int snd_soc_of_get_dai_name(struct device_node *of_node,
3465 const char **dai_name)
3466{
3467 struct of_phandle_args args;
3468 int ret;
3469
3470 ret = of_parse_phandle_with_args(of_node, "sound-dai",
3471 "#sound-dai-cells", 0, &args);
3472 if (ret)
3473 return ret;
3474
3475 ret = snd_soc_get_dai_name(&args, dai_name);
Kuninori Morimotocb470082013-09-10 17:39:56 -07003476
3477 of_node_put(args.np);
3478
3479 return ret;
3480}
3481EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3482
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003483/*
3484 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3485 * @dev: Card device
3486 * @of_node: Device node
3487 * @dai_link: DAI link
3488 *
3489 * Builds an array of CODEC DAI components from the DAI link property
3490 * 'sound-dai'.
3491 * The array is set in the DAI link and the number of DAIs is set accordingly.
3492 * The device nodes in the array (of_node) must be dereferenced by the caller.
3493 *
3494 * Returns 0 for success
3495 */
3496int snd_soc_of_get_dai_link_codecs(struct device *dev,
3497 struct device_node *of_node,
3498 struct snd_soc_dai_link *dai_link)
3499{
3500 struct of_phandle_args args;
3501 struct snd_soc_dai_link_component *component;
3502 char *name;
3503 int index, num_codecs, ret;
3504
3505 /* Count the number of CODECs */
3506 name = "sound-dai";
3507 num_codecs = of_count_phandle_with_args(of_node, name,
3508 "#sound-dai-cells");
3509 if (num_codecs <= 0) {
3510 if (num_codecs == -ENOENT)
3511 dev_err(dev, "No 'sound-dai' property\n");
3512 else
3513 dev_err(dev, "Bad phandle in 'sound-dai'\n");
3514 return num_codecs;
3515 }
3516 component = devm_kzalloc(dev,
3517 sizeof *component * num_codecs,
3518 GFP_KERNEL);
3519 if (!component)
3520 return -ENOMEM;
3521 dai_link->codecs = component;
3522 dai_link->num_codecs = num_codecs;
3523
3524 /* Parse the list */
3525 for (index = 0, component = dai_link->codecs;
3526 index < dai_link->num_codecs;
3527 index++, component++) {
3528 ret = of_parse_phandle_with_args(of_node, name,
3529 "#sound-dai-cells",
3530 index, &args);
3531 if (ret)
3532 goto err;
3533 component->of_node = args.np;
3534 ret = snd_soc_get_dai_name(&args, &component->dai_name);
3535 if (ret < 0)
3536 goto err;
3537 }
3538 return 0;
3539err:
3540 for (index = 0, component = dai_link->codecs;
3541 index < dai_link->num_codecs;
3542 index++, component++) {
3543 if (!component->of_node)
3544 break;
3545 of_node_put(component->of_node);
3546 component->of_node = NULL;
3547 }
3548 dai_link->codecs = NULL;
3549 dai_link->num_codecs = 0;
3550 return ret;
3551}
3552EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3553
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003554static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003555{
Mark Brown384c89e2008-12-03 17:34:03 +00003556#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003557 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3558 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02003559 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003560 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003561 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003562
Mark Brown8a9dab12011-01-10 22:25:21 +00003563 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003564 &codec_list_fops))
3565 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3566
Mark Brown8a9dab12011-01-10 22:25:21 +00003567 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003568 &dai_list_fops))
3569 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003570
Mark Brown8a9dab12011-01-10 22:25:21 +00003571 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003572 &platform_list_fops))
3573 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003574#endif
3575
Mark Brownfb257892011-04-28 10:57:54 +01003576 snd_soc_util_init();
3577
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003578 return platform_driver_register(&soc_driver);
3579}
Mark Brown4abe8e12010-10-12 17:41:03 +01003580module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003581
Mark Brown7d8c16a2008-11-30 22:11:24 +00003582static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003583{
Mark Brownfb257892011-04-28 10:57:54 +01003584 snd_soc_util_exit();
3585
Mark Brown384c89e2008-12-03 17:34:03 +00003586#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003587 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003588#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003589 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003590}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003591module_exit(snd_soc_exit);
3592
3593/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003594MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003595MODULE_DESCRIPTION("ALSA SoC Core");
3596MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003597MODULE_ALIAS("platform:soc-audio");