blob: 80ea358d3ad70ad8222b9d14b0cba4f5a6226c6f [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}
1494
Mark Brownb19e6e72012-03-14 21:18:39 +00001495static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001496{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001497 struct snd_soc_codec *codec;
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001498 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001499
Liam Girdwood01b9d992012-03-07 10:38:25 +00001500 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001501
Mark Brownb19e6e72012-03-14 21:18:39 +00001502 /* bind DAIs */
1503 for (i = 0; i < card->num_links; i++) {
1504 ret = soc_bind_dai_link(card, i);
1505 if (ret != 0)
1506 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001507 }
1508
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001509 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00001510 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001511 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00001512 if (ret != 0)
1513 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001514 }
1515
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001516 /* initialize the register cache for each available codec */
1517 list_for_each_entry(codec, &codec_list, list) {
1518 if (codec->cache_init)
1519 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001520 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001521 if (ret < 0)
1522 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001523 }
1524
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001525 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01001526 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001527 card->owner, 0, &card->snd_card);
1528 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001529 dev_err(card->dev,
1530 "ASoC: can't create sound card for card %s: %d\n",
1531 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001532 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001533 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001534
Mark Browne37a4972011-03-02 18:21:57 +00001535 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1536 card->dapm.dev = card->dev;
1537 card->dapm.card = card;
1538 list_add(&card->dapm.list, &card->dapm_list);
1539
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001540#ifdef CONFIG_DEBUG_FS
1541 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1542#endif
1543
Mark Brown88ee1c62011-02-02 10:43:26 +00001544#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001545 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001546 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001547#endif
Andy Green6ed25972008-06-13 16:24:05 +01001548
Mark Brown9a841eb2011-04-12 17:51:37 -07001549 if (card->dapm_widgets)
1550 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1551 card->num_dapm_widgets);
1552
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001553 /* initialise the sound card only once */
1554 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001555 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001556 if (ret < 0)
1557 goto card_probe_error;
1558 }
1559
Stephen Warren62ae68f2012-06-08 12:34:23 -06001560 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001561 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1562 order++) {
1563 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001564 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001565 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001566 dev_err(card->dev,
1567 "ASoC: failed to instantiate card %d\n",
1568 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001569 goto probe_dai_err;
1570 }
1571 }
1572 }
1573
1574 /* probe all DAI links on this card */
1575 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1576 order++) {
1577 for (i = 0; i < card->num_links; i++) {
1578 ret = soc_probe_link_dais(card, i, order);
1579 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001580 dev_err(card->dev,
1581 "ASoC: failed to instantiate card %d\n",
1582 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001583 goto probe_dai_err;
1584 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001585 }
1586 }
1587
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001588 for (i = 0; i < card->num_aux_devs; i++) {
1589 ret = soc_probe_aux_dev(card, i);
1590 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001591 dev_err(card->dev,
1592 "ASoC: failed to add auxiliary devices %d\n",
1593 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001594 goto probe_aux_dev_err;
1595 }
1596 }
1597
Mark Brown888df392012-02-16 19:37:51 -08001598 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00001599 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08001600
Mark Brownb7af1da2011-04-07 19:18:44 +09001601 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001602 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001603
Mark Brownb8ad29d2011-03-02 18:35:51 +00001604 if (card->dapm_routes)
1605 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1606 card->num_dapm_routes);
1607
Mark Brown75d9ac42011-09-27 16:41:01 +01001608 for (i = 0; i < card->num_links; i++) {
Lars-Peter Clausence64c8b2015-01-06 15:17:20 +01001609 if (card->dai_link[i].dai_fmt)
1610 snd_soc_runtime_set_dai_fmt(&card->rtd[i],
1611 card->dai_link[i].dai_fmt);
Mark Brown75d9ac42011-09-27 16:41:01 +01001612 }
1613
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001614 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001615 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001616 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1617 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001618 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1619 "%s", card->driver_name ? card->driver_name : card->name);
1620 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1621 switch (card->snd_card->driver[i]) {
1622 case '_':
1623 case '-':
1624 case '\0':
1625 break;
1626 default:
1627 if (!isalnum(card->snd_card->driver[i]))
1628 card->snd_card->driver[i] = '_';
1629 break;
1630 }
1631 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001632
Mark Brown28e9ad92011-03-02 18:36:34 +00001633 if (card->late_probe) {
1634 ret = card->late_probe(card);
1635 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001636 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001637 card->name, ret);
1638 goto probe_aux_dev_err;
1639 }
1640 }
1641
Stephen Warren16332812011-11-23 12:42:04 -07001642 if (card->fully_routed)
Lars-Peter Clausen7df37882014-06-16 18:13:04 +02001643 snd_soc_dapm_auto_nc_pins(card);
Stephen Warren16332812011-11-23 12:42:04 -07001644
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001645 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001646
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001647 ret = snd_card_register(card->snd_card);
1648 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001649 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1650 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001651 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001652 }
1653
Mark Brown435c5e22008-12-04 15:32:53 +00001654 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001655 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001656 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001657
1658 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001659
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001660probe_aux_dev_err:
1661 for (i = 0; i < card->num_aux_devs; i++)
1662 soc_remove_aux_dev(card, i);
1663
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001664probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001665 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001666
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001667card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001668 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001669 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001670
1671 snd_card_free(card->snd_card);
1672
Mark Brownb19e6e72012-03-14 21:18:39 +00001673base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001674 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001675
Mark Brownb19e6e72012-03-14 21:18:39 +00001676 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001677}
1678
1679/* probes a new socdev */
1680static int soc_probe(struct platform_device *pdev)
1681{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001682 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001683
Vinod Koul70a7ca32011-01-14 19:22:48 +05301684 /*
1685 * no card, so machine driver should be registering card
1686 * we should not be here in that case so ret error
1687 */
1688 if (!card)
1689 return -EINVAL;
1690
Mark Brownfe4085e2012-03-02 13:07:41 +00001691 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001692 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001693 card->name);
1694
Mark Brown435c5e22008-12-04 15:32:53 +00001695 /* Bodge while we unpick instantiation */
1696 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001697
Mark Brown28d528c2012-08-09 18:45:23 +01001698 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001699}
1700
Vinod Koulb0e26482011-01-13 22:48:02 +05301701static int soc_cleanup_card_resources(struct snd_soc_card *card)
1702{
Vinod Koulb0e26482011-01-13 22:48:02 +05301703 int i;
1704
1705 /* make sure any delayed work runs */
1706 for (i = 0; i < card->num_rtd; i++) {
1707 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001708 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301709 }
1710
1711 /* remove auxiliary devices */
1712 for (i = 0; i < card->num_aux_devs; i++)
1713 soc_remove_aux_dev(card, i);
1714
1715 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001716 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301717
1718 soc_cleanup_card_debugfs(card);
1719
1720 /* remove the card */
1721 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001722 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301723
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001724 snd_soc_dapm_free(&card->dapm);
1725
Vinod Koulb0e26482011-01-13 22:48:02 +05301726 snd_card_free(card->snd_card);
1727 return 0;
1728
1729}
1730
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001731/* removes a socdev */
1732static int soc_remove(struct platform_device *pdev)
1733{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001734 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001735
Mark Brownc5af3a22008-11-28 13:29:45 +00001736 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001737 return 0;
1738}
1739
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001740int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001741{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001742 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001743 int i;
Mark Brown51737472009-06-22 13:16:51 +01001744
1745 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001746 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001747
1748 /* Flush out pmdown_time work - we actually do want to run it
1749 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001750 for (i = 0; i < card->num_rtd; i++) {
1751 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001752 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001753 }
Mark Brown51737472009-06-22 13:16:51 +01001754
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001755 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001756
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001757 /* deactivate pins to sleep state */
1758 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02001759 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1760 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1761 int j;
1762
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001763 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Benoit Cousson88bd8702014-07-08 23:19:34 +02001764 for (j = 0; j < rtd->num_codecs; j++) {
1765 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
1766 pinctrl_pm_select_sleep_state(codec_dai->dev);
1767 }
Nicolin Chen988e8cc2013-11-04 14:57:31 +08001768 }
1769
Mark Brown416356f2009-06-30 19:05:15 +01001770 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001771}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001772EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001773
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001774const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301775 .suspend = snd_soc_suspend,
1776 .resume = snd_soc_resume,
1777 .freeze = snd_soc_suspend,
1778 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001779 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301780 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001781};
Stephen Warrendeb26072011-04-05 19:35:30 -06001782EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001783
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001784/* ASoC platform driver */
1785static struct platform_driver soc_driver = {
1786 .driver = {
1787 .name = "soc-audio",
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001788 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001789 },
1790 .probe = soc_probe,
1791 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001792};
1793
Mark Brown096e49d2009-07-05 15:12:22 +01001794/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001795 * snd_soc_cnew - create new control
1796 * @_template: control template
1797 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001798 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001799 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001800 *
1801 * Create a new mixer control from a template control.
1802 *
1803 * Returns 0 for success, else error.
1804 */
1805struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08001806 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00001807 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001808{
1809 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001810 struct snd_kcontrol *kcontrol;
1811 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001812
1813 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001814 template.index = 0;
1815
Mark Brownefb7ac32011-03-08 17:23:24 +00001816 if (!long_name)
1817 long_name = template.name;
1818
1819 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02001820 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00001821 if (!name)
1822 return NULL;
1823
Mark Brownefb7ac32011-03-08 17:23:24 +00001824 template.name = name;
1825 } else {
1826 template.name = long_name;
1827 }
1828
1829 kcontrol = snd_ctl_new1(&template, data);
1830
1831 kfree(name);
1832
1833 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001834}
1835EXPORT_SYMBOL_GPL(snd_soc_cnew);
1836
Liam Girdwood022658b2012-02-03 17:43:09 +00001837static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
1838 const struct snd_kcontrol_new *controls, int num_controls,
1839 const char *prefix, void *data)
1840{
1841 int err, i;
1842
1843 for (i = 0; i < num_controls; i++) {
1844 const struct snd_kcontrol_new *control = &controls[i];
1845 err = snd_ctl_add(card, snd_soc_cnew(control, data,
1846 control->name, prefix));
1847 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001848 dev_err(dev, "ASoC: Failed to add %s: %d\n",
1849 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00001850 return err;
1851 }
1852 }
1853
1854 return 0;
1855}
1856
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01001857struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
1858 const char *name)
1859{
1860 struct snd_card *card = soc_card->snd_card;
1861 struct snd_kcontrol *kctl;
1862
1863 if (unlikely(!name))
1864 return NULL;
1865
1866 list_for_each_entry(kctl, &card->controls, list)
1867 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
1868 return kctl;
1869 return NULL;
1870}
1871EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
1872
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001873/**
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001874 * snd_soc_add_component_controls - Add an array of controls to a component.
1875 *
1876 * @component: Component to add controls to
1877 * @controls: Array of controls to add
1878 * @num_controls: Number of elements in the array
1879 *
1880 * Return: 0 for success, else error.
1881 */
1882int snd_soc_add_component_controls(struct snd_soc_component *component,
1883 const struct snd_kcontrol_new *controls, unsigned int num_controls)
1884{
1885 struct snd_card *card = component->card->snd_card;
1886
1887 return snd_soc_add_controls(card, component->dev, controls,
1888 num_controls, component->name_prefix, component);
1889}
1890EXPORT_SYMBOL_GPL(snd_soc_add_component_controls);
1891
1892/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001893 * snd_soc_add_codec_controls - add an array of controls to a codec.
1894 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00001895 * duplicating this code.
1896 *
1897 * @codec: codec to add controls to
1898 * @controls: array of controls to add
1899 * @num_controls: number of elements in the array
1900 *
1901 * Return 0 for success, else error.
1902 */
Liam Girdwood022658b2012-02-03 17:43:09 +00001903int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001904 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Ian Molton3e8e1952009-01-09 00:23:21 +00001905{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001906 return snd_soc_add_component_controls(&codec->component, controls,
1907 num_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001908}
Liam Girdwood022658b2012-02-03 17:43:09 +00001909EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00001910
1911/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001912 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00001913 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001914 *
1915 * @platform: platform to add controls to
1916 * @controls: array of controls to add
1917 * @num_controls: number of elements in the array
1918 *
1919 * Return 0 for success, else error.
1920 */
1921int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001922 const struct snd_kcontrol_new *controls, unsigned int num_controls)
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001923{
Lars-Peter Clausen0f2780a2014-07-17 22:01:08 +02001924 return snd_soc_add_component_controls(&platform->component, controls,
1925 num_controls);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01001926}
1927EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
1928
1929/**
Liam Girdwood022658b2012-02-03 17:43:09 +00001930 * snd_soc_add_card_controls - add an array of controls to a SoC card.
1931 * Convenience function to add a list of controls.
1932 *
1933 * @soc_card: SoC card to add controls to
1934 * @controls: array of controls to add
1935 * @num_controls: number of elements in the array
1936 *
1937 * Return 0 for success, else error.
1938 */
1939int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
1940 const struct snd_kcontrol_new *controls, int num_controls)
1941{
1942 struct snd_card *card = soc_card->snd_card;
1943
1944 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
1945 NULL, soc_card);
1946}
1947EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
1948
1949/**
1950 * snd_soc_add_dai_controls - add an array of controls to a DAI.
1951 * Convienience function to add a list of controls.
1952 *
1953 * @dai: DAI to add controls to
1954 * @controls: array of controls to add
1955 * @num_controls: number of elements in the array
1956 *
1957 * Return 0 for success, else error.
1958 */
1959int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
1960 const struct snd_kcontrol_new *controls, int num_controls)
1961{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001962 struct snd_card *card = dai->component->card->snd_card;
Liam Girdwood022658b2012-02-03 17:43:09 +00001963
1964 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
1965 NULL, dai);
1966}
1967EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
1968
1969/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001970 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
1971 * @dai: DAI
1972 * @clk_id: DAI specific clock ID
1973 * @freq: new clock frequency in Hz
1974 * @dir: new clock direction - input/output.
1975 *
1976 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
1977 */
1978int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
1979 unsigned int freq, int dir)
1980{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001981 if (dai->driver && dai->driver->ops->set_sysclk)
1982 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00001983 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01001984 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00001985 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001986 else
Mark Brown1104a9c2014-01-15 19:04:19 +00001987 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01001988}
1989EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
1990
1991/**
Mark Brownec4ee522011-03-07 20:58:11 +00001992 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
1993 * @codec: CODEC
1994 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01001995 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00001996 * @freq: new clock frequency in Hz
1997 * @dir: new clock direction - input/output.
1998 *
1999 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2000 */
2001int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01002002 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00002003{
2004 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002005 return codec->driver->set_sysclk(codec, clk_id, source,
2006 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002007 else
Mark Brown1104a9c2014-01-15 19:04:19 +00002008 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00002009}
2010EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2011
2012/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002013 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2014 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002015 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002016 * @div: new clock divisor.
2017 *
2018 * Configures the clock dividers. This is used to derive the best DAI bit and
2019 * frame clocks from the system or master clock. It's best to set the DAI bit
2020 * and frame clocks as low as possible to save system power.
2021 */
2022int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2023 int div_id, int div)
2024{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002025 if (dai->driver && dai->driver->ops->set_clkdiv)
2026 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002027 else
2028 return -EINVAL;
2029}
2030EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2031
2032/**
2033 * snd_soc_dai_set_pll - configure DAI PLL.
2034 * @dai: DAI
2035 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002036 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002037 * @freq_in: PLL input clock frequency in Hz
2038 * @freq_out: requested PLL output clock frequency in Hz
2039 *
2040 * Configures and enables PLL to generate output clock based on input clock.
2041 */
Mark Brown85488032009-09-05 18:52:16 +01002042int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2043 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002044{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002045 if (dai->driver && dai->driver->ops->set_pll)
2046 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002047 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002048 else if (dai->codec && dai->codec->driver->set_pll)
2049 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2050 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002051 else
2052 return -EINVAL;
2053}
2054EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2055
Mark Brownec4ee522011-03-07 20:58:11 +00002056/*
2057 * snd_soc_codec_set_pll - configure codec PLL.
2058 * @codec: CODEC
2059 * @pll_id: DAI specific PLL ID
2060 * @source: DAI specific source for the PLL
2061 * @freq_in: PLL input clock frequency in Hz
2062 * @freq_out: requested PLL output clock frequency in Hz
2063 *
2064 * Configures and enables PLL to generate output clock based on input clock.
2065 */
2066int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2067 unsigned int freq_in, unsigned int freq_out)
2068{
2069 if (codec->driver->set_pll)
2070 return codec->driver->set_pll(codec, pll_id, source,
2071 freq_in, freq_out);
2072 else
2073 return -EINVAL;
2074}
2075EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2076
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002077/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01002078 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
2079 * @dai: DAI
2080 * @ratio Ratio of BCLK to Sample rate.
2081 *
2082 * Configures the DAI for a preset BCLK to sample rate ratio.
2083 */
2084int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
2085{
2086 if (dai->driver && dai->driver->ops->set_bclk_ratio)
2087 return dai->driver->ops->set_bclk_ratio(dai, ratio);
2088 else
2089 return -EINVAL;
2090}
2091EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
2092
2093/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002094 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2095 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002096 * @fmt: SND_SOC_DAIFMT_ format value.
2097 *
2098 * Configures the DAI hardware format and clocking.
2099 */
2100int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2101{
Shawn Guo5e4ba562012-03-09 00:59:40 +08002102 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002103 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08002104 if (dai->driver->ops->set_fmt == NULL)
2105 return -ENOTSUPP;
2106 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002107}
2108EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2109
2110/**
Xiubo Lie5c21512014-03-21 14:17:12 +08002111 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08002112 * @slots: Number of slots in use.
2113 * @tx_mask: bitmask representing active TX slots.
2114 * @rx_mask: bitmask representing active RX slots.
2115 *
2116 * Generates the TDM tx and rx slot default masks for DAI.
2117 */
Xiubo Lie5c21512014-03-21 14:17:12 +08002118static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002119 unsigned int *tx_mask,
2120 unsigned int *rx_mask)
2121{
2122 if (*tx_mask || *rx_mask)
2123 return 0;
2124
2125 if (!slots)
2126 return -EINVAL;
2127
2128 *tx_mask = (1 << slots) - 1;
2129 *rx_mask = (1 << slots) - 1;
2130
2131 return 0;
2132}
2133
2134/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002135 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2136 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002137 * @tx_mask: bitmask representing active TX slots.
2138 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002139 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002140 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002141 *
2142 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2143 * specific.
2144 */
2145int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002146 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002147{
Xiubo Lie5c21512014-03-21 14:17:12 +08002148 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
2149 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08002150 &tx_mask, &rx_mask);
2151 else
Xiubo Lie5c21512014-03-21 14:17:12 +08002152 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08002153
Benoit Cousson88bd8702014-07-08 23:19:34 +02002154 dai->tx_mask = tx_mask;
2155 dai->rx_mask = rx_mask;
2156
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002157 if (dai->driver && dai->driver->ops->set_tdm_slot)
2158 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002159 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002160 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08002161 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002162}
2163EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2164
2165/**
Barry Song472df3c2009-09-12 01:16:29 +08002166 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2167 * @dai: DAI
2168 * @tx_num: how many TX channels
2169 * @tx_slot: pointer to an array which imply the TX slot number channel
2170 * 0~num-1 uses
2171 * @rx_num: how many RX channels
2172 * @rx_slot: pointer to an array which imply the RX slot number channel
2173 * 0~num-1 uses
2174 *
2175 * configure the relationship between channel number and TDM slot number.
2176 */
2177int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2178 unsigned int tx_num, unsigned int *tx_slot,
2179 unsigned int rx_num, unsigned int *rx_slot)
2180{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002181 if (dai->driver && dai->driver->ops->set_channel_map)
2182 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002183 rx_num, rx_slot);
2184 else
2185 return -EINVAL;
2186}
2187EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2188
2189/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002190 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2191 * @dai: DAI
2192 * @tristate: tristate enable
2193 *
2194 * Tristates the DAI so that others can use it.
2195 */
2196int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2197{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002198 if (dai->driver && dai->driver->ops->set_tristate)
2199 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002200 else
2201 return -EINVAL;
2202}
2203EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2204
2205/**
2206 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2207 * @dai: DAI
2208 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00002209 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002210 *
2211 * Mutes the DAI DAC.
2212 */
Mark Brownda183962013-02-06 15:44:07 +00002213int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
2214 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002215{
Mark Brownda183962013-02-06 15:44:07 +00002216 if (!dai->driver)
2217 return -ENOTSUPP;
2218
2219 if (dai->driver->ops->mute_stream)
2220 return dai->driver->ops->mute_stream(dai, mute, direction);
2221 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
2222 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002223 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002224 else
Mark Brown04570c62012-04-13 19:16:03 +01002225 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002226}
2227EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2228
Benoit Cousson88bd8702014-07-08 23:19:34 +02002229static int snd_soc_init_multicodec(struct snd_soc_card *card,
2230 struct snd_soc_dai_link *dai_link)
2231{
2232 /* Legacy codec/codec_dai link is a single entry in multicodec */
2233 if (dai_link->codec_name || dai_link->codec_of_node ||
2234 dai_link->codec_dai_name) {
2235 dai_link->num_codecs = 1;
2236
2237 dai_link->codecs = devm_kzalloc(card->dev,
2238 sizeof(struct snd_soc_dai_link_component),
2239 GFP_KERNEL);
2240 if (!dai_link->codecs)
2241 return -ENOMEM;
2242
2243 dai_link->codecs[0].name = dai_link->codec_name;
2244 dai_link->codecs[0].of_node = dai_link->codec_of_node;
2245 dai_link->codecs[0].dai_name = dai_link->codec_dai_name;
2246 }
2247
2248 if (!dai_link->codecs) {
2249 dev_err(card->dev, "ASoC: DAI link has no CODECs\n");
2250 return -EINVAL;
2251 }
2252
2253 return 0;
2254}
2255
Mark Brownc5af3a22008-11-28 13:29:45 +00002256/**
2257 * snd_soc_register_card - Register a card with the ASoC core
2258 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002259 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002260 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002261 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302262int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002263{
Benoit Cousson88bd8702014-07-08 23:19:34 +02002264 int i, j, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002265
Mark Brownc5af3a22008-11-28 13:29:45 +00002266 if (!card->name || !card->dev)
2267 return -EINVAL;
2268
Stephen Warren5a504962011-12-21 10:40:59 -07002269 for (i = 0; i < card->num_links; i++) {
2270 struct snd_soc_dai_link *link = &card->dai_link[i];
2271
Benoit Cousson88bd8702014-07-08 23:19:34 +02002272 ret = snd_soc_init_multicodec(card, link);
2273 if (ret) {
2274 dev_err(card->dev, "ASoC: failed to init multicodec\n");
2275 return ret;
Stephen Warren5a504962011-12-21 10:40:59 -07002276 }
Benoit Cousson88bd8702014-07-08 23:19:34 +02002277
2278 for (j = 0; j < link->num_codecs; j++) {
2279 /*
2280 * Codec must be specified by 1 of name or OF node,
2281 * not both or neither.
2282 */
2283 if (!!link->codecs[j].name ==
2284 !!link->codecs[j].of_node) {
2285 dev_err(card->dev, "ASoC: Neither/both codec name/of_node are set for %s\n",
2286 link->name);
2287 return -EINVAL;
2288 }
2289 /* Codec DAI name must be specified */
2290 if (!link->codecs[j].dai_name) {
2291 dev_err(card->dev, "ASoC: codec_dai_name not set for %s\n",
2292 link->name);
2293 return -EINVAL;
2294 }
Stephen Warrenbc926572012-05-25 18:22:11 -06002295 }
Stephen Warren5a504962011-12-21 10:40:59 -07002296
2297 /*
2298 * Platform may be specified by either name or OF node, but
2299 * can be left unspecified, and a dummy platform will be used.
2300 */
2301 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002302 dev_err(card->dev,
2303 "ASoC: Both platform name/of_node are set for %s\n",
2304 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002305 return -EINVAL;
2306 }
2307
2308 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06002309 * CPU device may be specified by either name or OF node, but
2310 * can be left unspecified, and will be matched based on DAI
2311 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07002312 */
Stephen Warrenbc926572012-05-25 18:22:11 -06002313 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002314 dev_err(card->dev,
2315 "ASoC: Neither/both cpu name/of_node are set for %s\n",
2316 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06002317 return -EINVAL;
2318 }
2319 /*
2320 * At least one of CPU DAI name or CPU device name/node must be
2321 * specified
2322 */
2323 if (!link->cpu_dai_name &&
2324 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002325 dev_err(card->dev,
2326 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
2327 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002328 return -EINVAL;
2329 }
2330 }
2331
Mark Browned77cc12011-05-03 18:25:34 +01002332 dev_set_drvdata(card->dev, card);
2333
Stephen Warren111c6412011-01-28 14:26:35 -07002334 snd_soc_initialize_card_lists(card);
2335
Vinod Koul150dd2f2011-01-13 22:48:32 +05302336 soc_init_card_debugfs(card);
2337
Mark Brown181a6892012-03-14 20:18:49 +00002338 card->rtd = devm_kzalloc(card->dev,
2339 sizeof(struct snd_soc_pcm_runtime) *
2340 (card->num_links + card->num_aux_devs),
2341 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002342 if (card->rtd == NULL)
2343 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01002344 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002345 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002346
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002347 for (i = 0; i < card->num_links; i++) {
2348 card->rtd[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002349 card->rtd[i].dai_link = &card->dai_link[i];
Benoit Cousson88bd8702014-07-08 23:19:34 +02002350 card->rtd[i].codec_dais = devm_kzalloc(card->dev,
2351 sizeof(struct snd_soc_dai *) *
2352 (card->rtd[i].dai_link->num_codecs),
2353 GFP_KERNEL);
2354 if (card->rtd[i].codec_dais == NULL)
2355 return -ENOMEM;
Lars-Peter Clausen5f3484a2014-07-01 22:13:48 +02002356 }
2357
2358 for (i = 0; i < card->num_aux_devs; i++)
2359 card->rtd_aux[i].card = card;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002360
Mark Browndb432b42011-10-03 21:06:40 +01002361 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00002362 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002363 mutex_init(&card->mutex);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002364 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002365
Mark Brownb19e6e72012-03-14 21:18:39 +00002366 ret = snd_soc_instantiate_card(card);
2367 if (ret != 0)
2368 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002369
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002370 /* deactivate pins to sleep state */
2371 for (i = 0; i < card->num_rtd; i++) {
Benoit Cousson88bd8702014-07-08 23:19:34 +02002372 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
2373 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
2374 int j;
2375
2376 for (j = 0; j < rtd->num_codecs; j++) {
2377 struct snd_soc_dai *codec_dai = rtd->codec_dais[j];
2378 if (!codec_dai->active)
2379 pinctrl_pm_select_sleep_state(codec_dai->dev);
2380 }
2381
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002382 if (!cpu_dai->active)
2383 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2384 }
2385
Mark Brownb19e6e72012-03-14 21:18:39 +00002386 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00002387}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302388EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002389
2390/**
2391 * snd_soc_unregister_card - Unregister a card with the ASoC core
2392 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002393 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002394 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002395 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302396int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002397{
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002398 if (card->instantiated) {
2399 card->instantiated = false;
Lars-Peter Clausen1c325f72014-09-04 19:44:05 +02002400 snd_soc_dapm_shutdown(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302401 soc_cleanup_card_resources(card);
Lars-Peter Clausen01e0df62014-09-04 19:44:04 +02002402 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002403 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00002404
2405 return 0;
2406}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302407EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002408
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002409/*
2410 * Simplify DAI link configuration by removing ".-1" from device names
2411 * and sanitizing names.
2412 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002413static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002414{
2415 char *found, name[NAME_SIZE];
2416 int id1, id2;
2417
2418 if (dev_name(dev) == NULL)
2419 return NULL;
2420
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002421 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002422
2423 /* are we a "%s.%d" name (platform and SPI components) */
2424 found = strstr(name, dev->driver->name);
2425 if (found) {
2426 /* get ID */
2427 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2428
2429 /* discard ID from name if ID == -1 */
2430 if (*id == -1)
2431 found[strlen(dev->driver->name)] = '\0';
2432 }
2433
2434 } else {
2435 /* I2C component devices are named "bus-addr" */
2436 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2437 char tmp[NAME_SIZE];
2438
2439 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002440 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002441
2442 /* sanitize component name for DAI link creation */
2443 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002444 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002445 } else
2446 *id = 0;
2447 }
2448
2449 return kstrdup(name, GFP_KERNEL);
2450}
2451
2452/*
2453 * Simplify DAI link naming for single devices with multiple DAIs by removing
2454 * any ".-1" and using the DAI name (instead of device name).
2455 */
2456static inline char *fmt_multiple_name(struct device *dev,
2457 struct snd_soc_dai_driver *dai_drv)
2458{
2459 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02002460 dev_err(dev,
2461 "ASoC: error - multiple DAI %s registered with no name\n",
2462 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002463 return NULL;
2464 }
2465
2466 return kstrdup(dai_drv->name, GFP_KERNEL);
2467}
2468
Mark Brown91151712008-11-30 23:31:24 +00002469/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002470 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002471 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002472 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00002473 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002474static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00002475{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002476 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00002477
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002478 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002479 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
2480 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01002481 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002482 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002483 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002484 }
Mark Brown91151712008-11-30 23:31:24 +00002485}
Mark Brown91151712008-11-30 23:31:24 +00002486
2487/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002488 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00002489 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002490 * @component: The component the DAIs are registered for
2491 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00002492 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002493 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
2494 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00002495 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002496static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002497 struct snd_soc_dai_driver *dai_drv, size_t count,
2498 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00002499{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002500 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002501 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002502 unsigned int i;
2503 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002504
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002505 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00002506
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002507 component->dai_drv = dai_drv;
2508 component->num_dai = count;
2509
Mark Brown91151712008-11-30 23:31:24 +00002510 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002511
2512 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08002513 if (dai == NULL) {
2514 ret = -ENOMEM;
2515 goto err;
2516 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002517
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002518 /*
2519 * Back in the old days when we still had component-less DAIs,
2520 * instead of having a static name, component-less DAIs would
2521 * inherit the name of the parent device so it is possible to
2522 * register multiple instances of the DAI. We still need to keep
2523 * the same naming style even though those DAIs are not
2524 * component-less anymore.
2525 */
2526 if (count == 1 && legacy_dai_naming) {
2527 dai->name = fmt_single_name(dev, &dai->id);
2528 } else {
2529 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
2530 if (dai_drv[i].id)
2531 dai->id = dai_drv[i].id;
2532 else
2533 dai->id = i;
2534 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002535 if (dai->name == NULL) {
2536 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002537 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00002538 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002539 }
2540
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01002541 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002542 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002543 dai->driver = &dai_drv[i];
2544 if (!dai->driver->ops)
2545 dai->driver->ops = &null_dai_ops;
2546
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01002547 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01002548
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002549 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00002550 }
2551
2552 return 0;
2553
2554err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01002555 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00002556
2557 return ret;
2558}
Mark Brown91151712008-11-30 23:31:24 +00002559
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002560static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
2561 enum snd_soc_dapm_type type, int subseq)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002562{
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002563 struct snd_soc_component *component = dapm->component;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002564
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002565 component->driver->seq_notifier(component, type, subseq);
2566}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002567
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002568static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
2569 int event)
2570{
2571 struct snd_soc_component *component = dapm->component;
2572
2573 return component->driver->stream_event(component, event);
2574}
2575
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002576static int snd_soc_component_initialize(struct snd_soc_component *component,
2577 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002578{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002579 struct snd_soc_dapm_context *dapm;
2580
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002581 component->name = fmt_single_name(dev, &component->id);
2582 if (!component->name) {
2583 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002584 return -ENOMEM;
2585 }
2586
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002587 component->dev = dev;
2588 component->driver = driver;
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002589 component->probe = component->driver->probe;
2590 component->remove = component->driver->remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002591
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002592 if (!component->dapm_ptr)
2593 component->dapm_ptr = &component->dapm;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002594
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002595 dapm = component->dapm_ptr;
2596 dapm->dev = dev;
2597 dapm->component = component;
2598 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02002599 dapm->idle_bias_off = true;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02002600 if (driver->seq_notifier)
2601 dapm->seq_notifier = snd_soc_component_seq_notifier;
2602 if (driver->stream_event)
2603 dapm->stream_event = snd_soc_component_stream_event;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002604
Lars-Peter Clausen61aca562014-08-19 15:51:21 +02002605 component->controls = driver->controls;
2606 component->num_controls = driver->num_controls;
2607 component->dapm_widgets = driver->dapm_widgets;
2608 component->num_dapm_widgets = driver->num_dapm_widgets;
2609 component->dapm_routes = driver->dapm_routes;
2610 component->num_dapm_routes = driver->num_dapm_routes;
2611
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002612 INIT_LIST_HEAD(&component->dai_list);
2613 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002614
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002615 return 0;
2616}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002617
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002618static void snd_soc_component_setup_regmap(struct snd_soc_component *component)
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002619{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002620 int val_bytes = regmap_get_val_bytes(component->regmap);
2621
2622 /* Errors are legitimate for non-integer byte multiples */
2623 if (val_bytes > 0)
2624 component->val_bytes = val_bytes;
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002625}
2626
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002627#ifdef CONFIG_REGMAP
2628
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002629/**
2630 * snd_soc_component_init_regmap() - Initialize regmap instance for the component
2631 * @component: The component for which to initialize the regmap instance
2632 * @regmap: The regmap instance that should be used by the component
2633 *
2634 * This function allows deferred assignment of the regmap instance that is
2635 * associated with the component. Only use this if the regmap instance is not
2636 * yet ready when the component is registered. The function must also be called
2637 * before the first IO attempt of the component.
2638 */
2639void snd_soc_component_init_regmap(struct snd_soc_component *component,
2640 struct regmap *regmap)
2641{
2642 component->regmap = regmap;
2643 snd_soc_component_setup_regmap(component);
2644}
2645EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);
2646
2647/**
2648 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the component
2649 * @component: The component for which to de-initialize the regmap instance
2650 *
2651 * Calls regmap_exit() on the regmap instance associated to the component and
2652 * removes the regmap instance from the component.
2653 *
2654 * This function should only be used if snd_soc_component_init_regmap() was used
2655 * to initialize the regmap instance.
2656 */
2657void snd_soc_component_exit_regmap(struct snd_soc_component *component)
2658{
2659 regmap_exit(component->regmap);
2660 component->regmap = NULL;
2661}
2662EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
2663
Lars-Peter Clausene874bf52014-11-25 21:41:03 +01002664#endif
2665
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002666static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
2667{
Lars-Peter Clausen20feb882014-11-18 19:45:52 +01002668 if (!component->write && !component->read) {
2669 if (!component->regmap)
2670 component->regmap = dev_get_regmap(component->dev, NULL);
2671 if (component->regmap)
2672 snd_soc_component_setup_regmap(component);
2673 }
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02002674
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002675 list_add(&component->list, &component_list);
2676}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002677
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002678static void snd_soc_component_add(struct snd_soc_component *component)
2679{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002680 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002681 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002682 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002683}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002684
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002685static void snd_soc_component_cleanup(struct snd_soc_component *component)
2686{
2687 snd_soc_unregister_dais(component);
2688 kfree(component->name);
2689}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002690
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002691static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
2692{
2693 list_del(&component->list);
2694}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002695
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002696static void snd_soc_component_del(struct snd_soc_component *component)
2697{
2698 mutex_lock(&client_mutex);
2699 snd_soc_component_del_unlocked(component);
2700 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002701}
2702
2703int snd_soc_register_component(struct device *dev,
2704 const struct snd_soc_component_driver *cmpnt_drv,
2705 struct snd_soc_dai_driver *dai_drv,
2706 int num_dai)
2707{
2708 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002709 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002710
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002711 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002712 if (!cmpnt) {
2713 dev_err(dev, "ASoC: Failed to allocate memory\n");
2714 return -ENOMEM;
2715 }
2716
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002717 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
2718 if (ret)
2719 goto err_free;
2720
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002721 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002722 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01002723
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002724 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
2725 if (ret < 0) {
2726 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
2727 goto err_cleanup;
2728 }
2729
2730 snd_soc_component_add(cmpnt);
2731
2732 return 0;
2733
2734err_cleanup:
2735 snd_soc_component_cleanup(cmpnt);
2736err_free:
2737 kfree(cmpnt);
2738 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002739}
2740EXPORT_SYMBOL_GPL(snd_soc_register_component);
2741
2742/**
2743 * snd_soc_unregister_component - Unregister a component from the ASoC core
2744 *
2745 */
2746void snd_soc_unregister_component(struct device *dev)
2747{
2748 struct snd_soc_component *cmpnt;
2749
2750 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01002751 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002752 goto found;
2753 }
2754 return;
2755
2756found:
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002757 snd_soc_component_del(cmpnt);
2758 snd_soc_component_cleanup(cmpnt);
2759 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002760}
2761EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
2762
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002763static int snd_soc_platform_drv_probe(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002764{
2765 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2766
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002767 return platform->driver->probe(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002768}
2769
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002770static void snd_soc_platform_drv_remove(struct snd_soc_component *component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002771{
2772 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
2773
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002774 platform->driver->remove(platform);
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002775}
2776
Kuninori Morimotod191bd82013-09-04 19:39:03 -07002777/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002778 * snd_soc_add_platform - Add a platform to the ASoC core
2779 * @dev: The parent device for the platform
2780 * @platform: The platform to add
2781 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00002782 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002783int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01002784 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002785{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002786 int ret;
2787
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002788 ret = snd_soc_component_initialize(&platform->component,
2789 &platform_drv->component_driver, dev);
2790 if (ret)
2791 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002792
2793 platform->dev = dev;
2794 platform->driver = platform_drv;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002795
2796 if (platform_drv->probe)
2797 platform->component.probe = snd_soc_platform_drv_probe;
2798 if (platform_drv->remove)
2799 platform->component.remove = snd_soc_platform_drv_remove;
Mark Brown12a48a8c2008-12-03 19:40:30 +00002800
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02002801#ifdef CONFIG_DEBUG_FS
2802 platform->component.debugfs_prefix = "platform";
2803#endif
Mark Brown12a48a8c2008-12-03 19:40:30 +00002804
2805 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002806 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002807 list_add(&platform->list, &platform_list);
2808 mutex_unlock(&client_mutex);
2809
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002810 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
2811 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002812
2813 return 0;
2814}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002815EXPORT_SYMBOL_GPL(snd_soc_add_platform);
2816
2817/**
2818 * snd_soc_register_platform - Register a platform with the ASoC core
2819 *
2820 * @platform: platform to register
2821 */
2822int snd_soc_register_platform(struct device *dev,
2823 const struct snd_soc_platform_driver *platform_drv)
2824{
2825 struct snd_soc_platform *platform;
2826 int ret;
2827
2828 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
2829
2830 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
2831 if (platform == NULL)
2832 return -ENOMEM;
2833
2834 ret = snd_soc_add_platform(dev, platform, platform_drv);
2835 if (ret)
2836 kfree(platform);
2837
2838 return ret;
2839}
Mark Brown12a48a8c2008-12-03 19:40:30 +00002840EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2841
2842/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002843 * snd_soc_remove_platform - Remove a platform from the ASoC core
2844 * @platform: the platform to remove
2845 */
2846void snd_soc_remove_platform(struct snd_soc_platform *platform)
2847{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01002848
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002849 mutex_lock(&client_mutex);
2850 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002851 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002852 mutex_unlock(&client_mutex);
2853
2854 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02002855 platform->component.name);
Daniel Mackdecc27b2014-10-07 13:41:23 +02002856
2857 snd_soc_component_cleanup(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002858}
2859EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
2860
2861struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
2862{
2863 struct snd_soc_platform *platform;
2864
2865 list_for_each_entry(platform, &platform_list, list) {
2866 if (dev == platform->dev)
2867 return platform;
2868 }
2869
2870 return NULL;
2871}
2872EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
2873
2874/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00002875 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2876 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002877 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002878 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002879void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00002880{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002881 struct snd_soc_platform *platform;
2882
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002883 platform = snd_soc_lookup_platform(dev);
2884 if (!platform)
2885 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002886
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02002887 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002888 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00002889}
2890EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2891
Mark Brown151ab222009-05-09 16:22:58 +01002892static u64 codec_format_map[] = {
2893 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2894 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2895 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2896 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2897 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2898 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2899 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2900 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2901 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2902 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2903 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2904 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2905 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2906 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2907 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2908 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2909};
2910
2911/* Fix up the DAI formats for endianness: codecs don't actually see
2912 * the endianness of the data but we're using the CPU format
2913 * definitions which do need to include endianness so we ensure that
2914 * codec DAIs always have both big and little endian variants set.
2915 */
2916static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2917{
2918 int i;
2919
2920 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2921 if (stream->formats & codec_format_map[i])
2922 stream->formats |= codec_format_map[i];
2923}
2924
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002925static int snd_soc_codec_drv_probe(struct snd_soc_component *component)
2926{
2927 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2928
2929 return codec->driver->probe(codec);
2930}
2931
2932static void snd_soc_codec_drv_remove(struct snd_soc_component *component)
2933{
2934 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2935
2936 codec->driver->remove(codec);
2937}
2938
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02002939static int snd_soc_codec_drv_write(struct snd_soc_component *component,
2940 unsigned int reg, unsigned int val)
2941{
2942 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2943
2944 return codec->driver->write(codec, reg, val);
2945}
2946
2947static int snd_soc_codec_drv_read(struct snd_soc_component *component,
2948 unsigned int reg, unsigned int *val)
2949{
2950 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
2951
2952 *val = codec->driver->read(codec, reg);
2953
2954 return 0;
2955}
2956
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02002957static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
2958 enum snd_soc_bias_level level)
2959{
2960 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
2961
2962 return codec->driver->set_bias_level(codec, level);
2963}
2964
Mark Brown0d0cf002008-12-10 14:32:45 +00002965/**
2966 * snd_soc_register_codec - Register a codec with the ASoC core
2967 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002968 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002969 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002970int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00002971 const struct snd_soc_codec_driver *codec_drv,
2972 struct snd_soc_dai_driver *dai_drv,
2973 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00002974{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002975 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002976 struct snd_soc_dai *dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002977 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01002978
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002979 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00002980
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002981 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
2982 if (codec == NULL)
2983 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00002984
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002985 codec->component.dapm_ptr = &codec->dapm;
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002986 codec->component.codec = codec;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002987
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02002988 ret = snd_soc_component_initialize(&codec->component,
2989 &codec_drv->component_driver, dev);
2990 if (ret)
2991 goto err_free;
Mark Brown151ab222009-05-09 16:22:58 +01002992
Lars-Peter Clausenf1d45cc32014-08-19 15:51:19 +02002993 if (codec_drv->controls) {
2994 codec->component.controls = codec_drv->controls;
2995 codec->component.num_controls = codec_drv->num_controls;
2996 }
2997 if (codec_drv->dapm_widgets) {
2998 codec->component.dapm_widgets = codec_drv->dapm_widgets;
2999 codec->component.num_dapm_widgets = codec_drv->num_dapm_widgets;
3000 }
3001 if (codec_drv->dapm_routes) {
3002 codec->component.dapm_routes = codec_drv->dapm_routes;
3003 codec->component.num_dapm_routes = codec_drv->num_dapm_routes;
3004 }
3005
3006 if (codec_drv->probe)
3007 codec->component.probe = snd_soc_codec_drv_probe;
3008 if (codec_drv->remove)
3009 codec->component.remove = snd_soc_codec_drv_remove;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003010 if (codec_drv->write)
3011 codec->component.write = snd_soc_codec_drv_write;
3012 if (codec_drv->read)
3013 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01003014 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Lars-Peter Clausen5819c2f2014-08-24 15:36:55 +02003015 codec->dapm.idle_bias_off = codec_drv->idle_bias_off;
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02003016 codec->dapm.suspend_bias_off = codec_drv->suspend_bias_off;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003017 if (codec_drv->seq_notifier)
3018 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02003019 if (codec_drv->set_bias_level)
3020 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003021 codec->dev = dev;
3022 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02003023 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003024
Lars-Peter Clausen81c7cfd2014-08-19 15:51:18 +02003025#ifdef CONFIG_DEBUG_FS
3026 codec->component.init_debugfs = soc_init_codec_debugfs;
3027 codec->component.debugfs_prefix = "codec";
3028#endif
Xiubo Lia39f75f2014-03-26 13:40:23 +08003029
Lars-Peter Clausen886f5692014-08-19 15:51:28 +02003030 if (codec_drv->get_regmap)
3031 codec->component.regmap = codec_drv->get_regmap(dev);
Xiubo Lia39f75f2014-03-26 13:40:23 +08003032
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003033 for (i = 0; i < num_dai; i++) {
3034 fixup_codec_formats(&dai_drv[i].playback);
3035 fixup_codec_formats(&dai_drv[i].capture);
3036 }
3037
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003038 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
3039 if (ret < 0) {
3040 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
3041 goto err_cleanup;
3042 }
3043
3044 list_for_each_entry(dai, &codec->component.dai_list, list)
3045 dai->codec = codec;
3046
Mark Brown054880f2012-04-09 17:29:19 +01003047 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003048 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01003049 list_add(&codec->list, &codec_list);
3050 mutex_unlock(&client_mutex);
3051
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003052 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
3053 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003054 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003055
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003056err_cleanup:
3057 snd_soc_component_cleanup(&codec->component);
3058err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003059 kfree(codec);
3060 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003061}
3062EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3063
3064/**
3065 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3066 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003067 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003068 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003069void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003070{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003071 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003072
3073 list_for_each_entry(codec, &codec_list, list) {
3074 if (dev == codec->dev)
3075 goto found;
3076 }
3077 return;
3078
3079found:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003080
Mark Brown0d0cf002008-12-10 14:32:45 +00003081 mutex_lock(&client_mutex);
3082 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003083 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00003084 mutex_unlock(&client_mutex);
3085
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003086 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
3087 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003088
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003089 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003090 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003091 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003092}
3093EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3094
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003095/* Retrieve a card's name from device tree */
3096int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3097 const char *propname)
3098{
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303099 struct device_node *np;
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003100 int ret;
3101
Tushar Behera7e07e7c2014-07-04 14:23:00 +05303102 if (!card->dev) {
3103 pr_err("card->dev is not set before calling %s\n", __func__);
3104 return -EINVAL;
3105 }
3106
3107 np = card->dev->of_node;
3108
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003109 ret = of_property_read_string_index(np, propname, 0, &card->name);
3110 /*
3111 * EINVAL means the property does not exist. This is fine providing
3112 * card->name was previously set, which is checked later in
3113 * snd_soc_register_card.
3114 */
3115 if (ret < 0 && ret != -EINVAL) {
3116 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003117 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003118 propname, ret);
3119 return ret;
3120 }
3121
3122 return 0;
3123}
3124EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3125
Xiubo Li9a6d4862014-02-08 15:59:52 +08003126static const struct snd_soc_dapm_widget simple_widgets[] = {
3127 SND_SOC_DAPM_MIC("Microphone", NULL),
3128 SND_SOC_DAPM_LINE("Line", NULL),
3129 SND_SOC_DAPM_HP("Headphone", NULL),
3130 SND_SOC_DAPM_SPK("Speaker", NULL),
3131};
3132
3133int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
3134 const char *propname)
3135{
3136 struct device_node *np = card->dev->of_node;
3137 struct snd_soc_dapm_widget *widgets;
3138 const char *template, *wname;
3139 int i, j, num_widgets, ret;
3140
3141 num_widgets = of_property_count_strings(np, propname);
3142 if (num_widgets < 0) {
3143 dev_err(card->dev,
3144 "ASoC: Property '%s' does not exist\n", propname);
3145 return -EINVAL;
3146 }
3147 if (num_widgets & 1) {
3148 dev_err(card->dev,
3149 "ASoC: Property '%s' length is not even\n", propname);
3150 return -EINVAL;
3151 }
3152
3153 num_widgets /= 2;
3154 if (!num_widgets) {
3155 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
3156 propname);
3157 return -EINVAL;
3158 }
3159
3160 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
3161 GFP_KERNEL);
3162 if (!widgets) {
3163 dev_err(card->dev,
3164 "ASoC: Could not allocate memory for widgets\n");
3165 return -ENOMEM;
3166 }
3167
3168 for (i = 0; i < num_widgets; i++) {
3169 ret = of_property_read_string_index(np, propname,
3170 2 * i, &template);
3171 if (ret) {
3172 dev_err(card->dev,
3173 "ASoC: Property '%s' index %d read error:%d\n",
3174 propname, 2 * i, ret);
3175 return -EINVAL;
3176 }
3177
3178 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
3179 if (!strncmp(template, simple_widgets[j].name,
3180 strlen(simple_widgets[j].name))) {
3181 widgets[i] = simple_widgets[j];
3182 break;
3183 }
3184 }
3185
3186 if (j >= ARRAY_SIZE(simple_widgets)) {
3187 dev_err(card->dev,
3188 "ASoC: DAPM widget '%s' is not supported\n",
3189 template);
3190 return -EINVAL;
3191 }
3192
3193 ret = of_property_read_string_index(np, propname,
3194 (2 * i) + 1,
3195 &wname);
3196 if (ret) {
3197 dev_err(card->dev,
3198 "ASoC: Property '%s' index %d read error:%d\n",
3199 propname, (2 * i) + 1, ret);
3200 return -EINVAL;
3201 }
3202
3203 widgets[i].name = wname;
3204 }
3205
3206 card->dapm_widgets = widgets;
3207 card->num_dapm_widgets = num_widgets;
3208
3209 return 0;
3210}
3211EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
3212
Xiubo Li89c67852014-02-14 09:34:35 +08003213int snd_soc_of_parse_tdm_slot(struct device_node *np,
3214 unsigned int *slots,
3215 unsigned int *slot_width)
3216{
3217 u32 val;
3218 int ret;
3219
3220 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
3221 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
3222 if (ret)
3223 return ret;
3224
3225 if (slots)
3226 *slots = val;
3227 }
3228
3229 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
3230 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
3231 if (ret)
3232 return ret;
3233
3234 if (slot_width)
3235 *slot_width = val;
3236 }
3237
3238 return 0;
3239}
3240EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
3241
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003242int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3243 const char *propname)
3244{
3245 struct device_node *np = card->dev->of_node;
Peter Rosinf8781db2014-11-27 22:02:42 +01003246 int num_routes, old_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003247 struct snd_soc_dapm_route *routes;
3248 int i, ret;
3249
3250 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08003251 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003252 dev_err(card->dev,
3253 "ASoC: Property '%s' does not exist or its length is not even\n",
3254 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003255 return -EINVAL;
3256 }
3257 num_routes /= 2;
3258 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003259 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003260 propname);
3261 return -EINVAL;
3262 }
3263
Peter Rosinf8781db2014-11-27 22:02:42 +01003264 old_routes = card->num_dapm_routes;
3265 routes = devm_kzalloc(card->dev,
3266 (old_routes + num_routes) * sizeof(*routes),
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003267 GFP_KERNEL);
3268 if (!routes) {
3269 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003270 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003271 return -EINVAL;
3272 }
3273
Peter Rosinf8781db2014-11-27 22:02:42 +01003274 memcpy(routes, card->dapm_routes, old_routes * sizeof(*routes));
3275
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003276 for (i = 0; i < num_routes; i++) {
3277 ret = of_property_read_string_index(np, propname,
Peter Rosinf8781db2014-11-27 22:02:42 +01003278 2 * i, &routes[old_routes + i].sink);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003279 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09003280 dev_err(card->dev,
3281 "ASoC: Property '%s' index %d could not be read: %d\n",
3282 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003283 return -EINVAL;
3284 }
3285 ret = of_property_read_string_index(np, propname,
Peter Rosinf8781db2014-11-27 22:02:42 +01003286 (2 * i) + 1, &routes[old_routes + i].source);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003287 if (ret) {
3288 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09003289 "ASoC: Property '%s' index %d could not be read: %d\n",
3290 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003291 return -EINVAL;
3292 }
3293 }
3294
Peter Rosinf8781db2014-11-27 22:02:42 +01003295 card->num_dapm_routes += num_routes;
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003296 card->dapm_routes = routes;
3297
3298 return 0;
3299}
3300EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3301
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003302unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02003303 const char *prefix,
3304 struct device_node **bitclkmaster,
3305 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003306{
3307 int ret, i;
3308 char prop[128];
3309 unsigned int format = 0;
3310 int bit, frame;
3311 const char *str;
3312 struct {
3313 char *name;
3314 unsigned int val;
3315 } of_fmt_table[] = {
3316 { "i2s", SND_SOC_DAIFMT_I2S },
3317 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
3318 { "left_j", SND_SOC_DAIFMT_LEFT_J },
3319 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
3320 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
3321 { "ac97", SND_SOC_DAIFMT_AC97 },
3322 { "pdm", SND_SOC_DAIFMT_PDM},
3323 { "msb", SND_SOC_DAIFMT_MSB },
3324 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003325 };
3326
3327 if (!prefix)
3328 prefix = "";
3329
3330 /*
3331 * check "[prefix]format = xxx"
3332 * SND_SOC_DAIFMT_FORMAT_MASK area
3333 */
3334 snprintf(prop, sizeof(prop), "%sformat", prefix);
3335 ret = of_property_read_string(np, prop, &str);
3336 if (ret == 0) {
3337 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
3338 if (strcmp(str, of_fmt_table[i].name) == 0) {
3339 format |= of_fmt_table[i].val;
3340 break;
3341 }
3342 }
3343 }
3344
3345 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003346 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003347 * SND_SOC_DAIFMT_CLOCK_MASK area
3348 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08003349 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
3350 if (of_get_property(np, prop, NULL))
3351 format |= SND_SOC_DAIFMT_CONT;
3352 else
3353 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003354
3355 /*
3356 * check "[prefix]bitclock-inversion"
3357 * check "[prefix]frame-inversion"
3358 * SND_SOC_DAIFMT_INV_MASK area
3359 */
3360 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
3361 bit = !!of_get_property(np, prop, NULL);
3362
3363 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
3364 frame = !!of_get_property(np, prop, NULL);
3365
3366 switch ((bit << 4) + frame) {
3367 case 0x11:
3368 format |= SND_SOC_DAIFMT_IB_IF;
3369 break;
3370 case 0x10:
3371 format |= SND_SOC_DAIFMT_IB_NF;
3372 break;
3373 case 0x01:
3374 format |= SND_SOC_DAIFMT_NB_IF;
3375 break;
3376 default:
3377 /* SND_SOC_DAIFMT_NB_NF is default */
3378 break;
3379 }
3380
3381 /*
3382 * check "[prefix]bitclock-master"
3383 * check "[prefix]frame-master"
3384 * SND_SOC_DAIFMT_MASTER_MASK area
3385 */
3386 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
3387 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003388 if (bit && bitclkmaster)
3389 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003390
3391 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
3392 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02003393 if (frame && framemaster)
3394 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08003395
3396 switch ((bit << 4) + frame) {
3397 case 0x11:
3398 format |= SND_SOC_DAIFMT_CBM_CFM;
3399 break;
3400 case 0x10:
3401 format |= SND_SOC_DAIFMT_CBM_CFS;
3402 break;
3403 case 0x01:
3404 format |= SND_SOC_DAIFMT_CBS_CFM;
3405 break;
3406 default:
3407 format |= SND_SOC_DAIFMT_CBS_CFS;
3408 break;
3409 }
3410
3411 return format;
3412}
3413EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
3414
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003415static int snd_soc_get_dai_name(struct of_phandle_args *args,
3416 const char **dai_name)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003417{
3418 struct snd_soc_component *pos;
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003419 int ret = -EPROBE_DEFER;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003420
3421 mutex_lock(&client_mutex);
3422 list_for_each_entry(pos, &component_list, list) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003423 if (pos->dev->of_node != args->np)
Kuninori Morimotocb470082013-09-10 17:39:56 -07003424 continue;
3425
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003426 if (pos->driver->of_xlate_dai_name) {
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003427 ret = pos->driver->of_xlate_dai_name(pos,
3428 args,
3429 dai_name);
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003430 } else {
3431 int id = -1;
3432
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003433 switch (args->args_count) {
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003434 case 0:
3435 id = 0; /* same as dai_drv[0] */
3436 break;
3437 case 1:
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003438 id = args->args[0];
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003439 break;
3440 default:
3441 /* not supported */
3442 break;
3443 }
3444
3445 if (id < 0 || id >= pos->num_dai) {
3446 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08003447 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07003448 }
Xiubo Lie41975e2013-12-20 14:39:51 +08003449
3450 ret = 0;
3451
3452 *dai_name = pos->dai_drv[id].name;
3453 if (!*dai_name)
3454 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07003455 }
3456
Kuninori Morimotocb470082013-09-10 17:39:56 -07003457 break;
3458 }
3459 mutex_unlock(&client_mutex);
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003460 return ret;
3461}
3462
3463int snd_soc_of_get_dai_name(struct device_node *of_node,
3464 const char **dai_name)
3465{
3466 struct of_phandle_args args;
3467 int ret;
3468
3469 ret = of_parse_phandle_with_args(of_node, "sound-dai",
3470 "#sound-dai-cells", 0, &args);
3471 if (ret)
3472 return ret;
3473
3474 ret = snd_soc_get_dai_name(&args, dai_name);
Kuninori Morimotocb470082013-09-10 17:39:56 -07003475
3476 of_node_put(args.np);
3477
3478 return ret;
3479}
3480EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
3481
Jean-Francois Moine93b0f3e2014-11-25 13:16:12 +01003482/*
3483 * snd_soc_of_get_dai_link_codecs - Parse a list of CODECs in the devicetree
3484 * @dev: Card device
3485 * @of_node: Device node
3486 * @dai_link: DAI link
3487 *
3488 * Builds an array of CODEC DAI components from the DAI link property
3489 * 'sound-dai'.
3490 * The array is set in the DAI link and the number of DAIs is set accordingly.
3491 * The device nodes in the array (of_node) must be dereferenced by the caller.
3492 *
3493 * Returns 0 for success
3494 */
3495int snd_soc_of_get_dai_link_codecs(struct device *dev,
3496 struct device_node *of_node,
3497 struct snd_soc_dai_link *dai_link)
3498{
3499 struct of_phandle_args args;
3500 struct snd_soc_dai_link_component *component;
3501 char *name;
3502 int index, num_codecs, ret;
3503
3504 /* Count the number of CODECs */
3505 name = "sound-dai";
3506 num_codecs = of_count_phandle_with_args(of_node, name,
3507 "#sound-dai-cells");
3508 if (num_codecs <= 0) {
3509 if (num_codecs == -ENOENT)
3510 dev_err(dev, "No 'sound-dai' property\n");
3511 else
3512 dev_err(dev, "Bad phandle in 'sound-dai'\n");
3513 return num_codecs;
3514 }
3515 component = devm_kzalloc(dev,
3516 sizeof *component * num_codecs,
3517 GFP_KERNEL);
3518 if (!component)
3519 return -ENOMEM;
3520 dai_link->codecs = component;
3521 dai_link->num_codecs = num_codecs;
3522
3523 /* Parse the list */
3524 for (index = 0, component = dai_link->codecs;
3525 index < dai_link->num_codecs;
3526 index++, component++) {
3527 ret = of_parse_phandle_with_args(of_node, name,
3528 "#sound-dai-cells",
3529 index, &args);
3530 if (ret)
3531 goto err;
3532 component->of_node = args.np;
3533 ret = snd_soc_get_dai_name(&args, &component->dai_name);
3534 if (ret < 0)
3535 goto err;
3536 }
3537 return 0;
3538err:
3539 for (index = 0, component = dai_link->codecs;
3540 index < dai_link->num_codecs;
3541 index++, component++) {
3542 if (!component->of_node)
3543 break;
3544 of_node_put(component->of_node);
3545 component->of_node = NULL;
3546 }
3547 dai_link->codecs = NULL;
3548 dai_link->num_codecs = 0;
3549 return ret;
3550}
3551EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_link_codecs);
3552
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003553static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003554{
Mark Brown384c89e2008-12-03 17:34:03 +00003555#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003556 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3557 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02003558 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003559 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003560 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003561
Mark Brown8a9dab12011-01-10 22:25:21 +00003562 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003563 &codec_list_fops))
3564 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3565
Mark Brown8a9dab12011-01-10 22:25:21 +00003566 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003567 &dai_list_fops))
3568 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003569
Mark Brown8a9dab12011-01-10 22:25:21 +00003570 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003571 &platform_list_fops))
3572 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003573#endif
3574
Mark Brownfb257892011-04-28 10:57:54 +01003575 snd_soc_util_init();
3576
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003577 return platform_driver_register(&soc_driver);
3578}
Mark Brown4abe8e12010-10-12 17:41:03 +01003579module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003580
Mark Brown7d8c16a2008-11-30 22:11:24 +00003581static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003582{
Mark Brownfb257892011-04-28 10:57:54 +01003583 snd_soc_util_exit();
3584
Mark Brown384c89e2008-12-03 17:34:03 +00003585#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003586 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003587#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003588 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003589}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003590module_exit(snd_soc_exit);
3591
3592/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003593MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003594MODULE_DESCRIPTION("ALSA SoC Core");
3595MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003596MODULE_ALIAS("platform:soc-audio");