blob: b1600cdcdc14d0d1f378450b8410b624f91586dc [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>
Markus Pargmann741a5092013-08-19 17:05:55 +020037#include <linux/gpio.h>
38#include <linux/of_gpio.h>
Marek Vasut474828a2009-07-22 13:01:03 +020039#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000041#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020042#include <sound/pcm.h>
43#include <sound/pcm_params.h>
44#include <sound/soc.h>
Liam Girdwood01d75842012-04-25 12:12:49 +010045#include <sound/soc-dpcm.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020046#include <sound/initval.h>
47
Mark Browna8b1d342010-11-03 18:05:58 -040048#define CREATE_TRACE_POINTS
49#include <trace/events/asoc.h>
50
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000051#define NAME_SIZE 32
52
Mark Brown384c89e2008-12-03 17:34:03 +000053#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000054struct dentry *snd_soc_debugfs_root;
55EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000056#endif
57
Mark Brownc5af3a22008-11-28 13:29:45 +000058static DEFINE_MUTEX(client_mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +000059static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000060static LIST_HEAD(codec_list);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -070061static LIST_HEAD(component_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000062
Frank Mandarinodb2a4162006-10-06 18:31:09 +020063/*
64 * This is a timeout to do a DAPM powerdown after a stream is closed().
65 * It can be used to eliminate pops between different playback streams, e.g.
66 * between two audio tracks.
67 */
68static int pmdown_time = 5000;
69module_param(pmdown_time, int, 0);
70MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
71
Markus Pargmann741a5092013-08-19 17:05:55 +020072struct snd_ac97_reset_cfg {
73 struct pinctrl *pctl;
74 struct pinctrl_state *pstate_reset;
75 struct pinctrl_state *pstate_warm_reset;
76 struct pinctrl_state *pstate_run;
77 int gpio_sdata;
78 int gpio_sync;
79 int gpio_reset;
80};
81
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000082/* returns the minimum number of bytes needed to represent
83 * a particular given value */
84static int min_bytes_needed(unsigned long val)
85{
86 int c = 0;
87 int i;
88
89 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
90 if (val & (1UL << i))
91 break;
92 c = (sizeof val * 8) - c;
93 if (!c || (c % 8))
94 c = (c + 8) / 8;
95 else
96 c /= 8;
97 return c;
98}
99
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000100/* fill buf which is 'len' bytes with a formatted
101 * string of the form 'reg: value\n' */
102static int format_register_str(struct snd_soc_codec *codec,
103 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +0000104{
Stephen Warren00b317a2011-04-01 14:50:44 -0600105 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
106 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000107 int ret;
108 char tmpbuf[len + 1];
109 char regbuf[regsize + 1];
110
111 /* since tmpbuf is allocated on the stack, warn the callers if they
112 * try to abuse this function */
113 WARN_ON(len > 63);
114
115 /* +2 for ': ' and + 1 for '\n' */
116 if (wordsize + regsize + 2 + 1 != len)
117 return -EINVAL;
118
Mark Brown25032c12011-08-01 13:52:48 +0900119 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000120 if (ret < 0) {
121 memset(regbuf, 'X', regsize);
122 regbuf[regsize] = '\0';
123 } else {
124 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
125 }
126
127 /* prepare the buffer */
128 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
129 /* copy it back to the caller without the '\0' */
130 memcpy(buf, tmpbuf, len);
131
132 return 0;
133}
134
135/* codec register dump */
136static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
137 size_t count, loff_t pos)
138{
139 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000140 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000141 int len;
142 size_t total = 0;
143 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000144
Stephen Warren00b317a2011-04-01 14:50:44 -0600145 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
146 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000147
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000148 len = wordsize + regsize + 2 + 1;
149
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000150 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000151 return 0;
152
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000153 if (codec->driver->reg_cache_step)
154 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000155
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000156 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100157 /* only support larger than PAGE_SIZE bytes debugfs
158 * entries for the default case */
159 if (p >= pos) {
160 if (total + len >= count - 1)
161 break;
162 format_register_str(codec, i, buf + total, len);
163 total += len;
Mark Brown5164d742010-07-14 16:14:33 +0100164 }
Lars-Peter Clausen20a0ec22014-03-18 09:02:09 +0100165 p += len;
Mark Brown2624d5f2009-11-03 21:56:13 +0000166 }
167
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000168 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000169
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000170 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000171}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000172
Mark Brown2624d5f2009-11-03 21:56:13 +0000173static ssize_t codec_reg_show(struct device *dev,
174 struct device_attribute *attr, char *buf)
175{
Mark Brown36ae1a92012-01-06 17:12:45 -0800176 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000177
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000178 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000179}
180
181static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
182
Mark Browndbe21402010-02-12 11:37:24 +0000183static ssize_t pmdown_time_show(struct device *dev,
184 struct device_attribute *attr, char *buf)
185{
Mark Brown36ae1a92012-01-06 17:12:45 -0800186 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000187
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000188 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000189}
190
191static ssize_t pmdown_time_set(struct device *dev,
192 struct device_attribute *attr,
193 const char *buf, size_t count)
194{
Mark Brown36ae1a92012-01-06 17:12:45 -0800195 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700196 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000197
Jingoo Hanb785a492013-07-19 16:24:59 +0900198 ret = kstrtol(buf, 10, &rtd->pmdown_time);
Mark Brownc593b522010-10-27 20:11:17 -0700199 if (ret)
200 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000201
202 return count;
203}
204
205static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
206
Mark Brown2624d5f2009-11-03 21:56:13 +0000207#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000208static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000209 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000210{
211 ssize_t ret;
212 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000213 char *buf;
214
215 if (*ppos < 0 || !count)
216 return -EINVAL;
217
218 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000219 if (!buf)
220 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000221
222 ret = soc_codec_reg_show(codec, buf, count, *ppos);
223 if (ret >= 0) {
224 if (copy_to_user(user_buf, buf, ret)) {
225 kfree(buf);
226 return -EFAULT;
227 }
228 *ppos += ret;
229 }
230
Mark Brown2624d5f2009-11-03 21:56:13 +0000231 kfree(buf);
232 return ret;
233}
234
235static ssize_t codec_reg_write_file(struct file *file,
236 const char __user *user_buf, size_t count, loff_t *ppos)
237{
238 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700239 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000240 char *start = buf;
241 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000242 struct snd_soc_codec *codec = file->private_data;
Jingoo Hanb785a492013-07-19 16:24:59 +0900243 int ret;
Mark Brown2624d5f2009-11-03 21:56:13 +0000244
245 buf_size = min(count, (sizeof(buf)-1));
246 if (copy_from_user(buf, user_buf, buf_size))
247 return -EFAULT;
248 buf[buf_size] = 0;
249
Mark Brown2624d5f2009-11-03 21:56:13 +0000250 while (*start == ' ')
251 start++;
252 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000253 while (*start == ' ')
254 start++;
Jingoo Hanb785a492013-07-19 16:24:59 +0900255 ret = kstrtoul(start, 16, &value);
256 if (ret)
257 return ret;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000258
259 /* Userspace has been fiddling around behind the kernel's back */
Rusty Russell373d4d02013-01-21 17:17:39 +1030260 add_taint(TAINT_USER, LOCKDEP_NOW_UNRELIABLE);
Mark Brown0d51a9c2011-01-06 16:04:57 +0000261
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000262 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000263 return buf_size;
264}
265
266static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700267 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000268 .read = codec_reg_read_file,
269 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200270 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000271};
272
Russell Kinge73f3de2014-06-26 15:22:50 +0100273static struct dentry *soc_debugfs_create_dir(struct dentry *parent,
274 const char *fmt, ...)
275{
276 struct dentry *de;
277 va_list ap;
278 char *s;
279
280 va_start(ap, fmt);
281 s = kvasprintf(GFP_KERNEL, fmt, ap);
282 va_end(ap);
283
284 if (!s)
285 return NULL;
286
287 de = debugfs_create_dir(s, parent);
288 kfree(s);
289
290 return de;
291}
292
Mark Brown2624d5f2009-11-03 21:56:13 +0000293static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
294{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200295 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
296
Russell Kinge73f3de2014-06-26 15:22:50 +0100297 codec->debugfs_codec_root = soc_debugfs_create_dir(debugfs_card_root,
Mark Brown211bcc62014-06-28 13:55:22 +0100298 "codec:%s",
299 codec->component.name);
Mark Brown2624d5f2009-11-03 21:56:13 +0000300 if (!codec->debugfs_codec_root) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200301 dev_warn(codec->dev,
302 "ASoC: Failed to create codec debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000303 return;
304 }
305
Mark Brownaaee8ef2011-01-26 20:53:50 +0000306 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
307 &codec->cache_sync);
308 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
309 &codec->cache_only);
310
Mark Brown2624d5f2009-11-03 21:56:13 +0000311 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
312 codec->debugfs_codec_root,
313 codec, &codec_reg_fops);
314 if (!codec->debugfs_reg)
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200315 dev_warn(codec->dev,
316 "ASoC: Failed to create codec register debugfs file\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000317
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200318 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000319}
320
321static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
322{
323 debugfs_remove_recursive(codec->debugfs_codec_root);
324}
325
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000326static void soc_init_platform_debugfs(struct snd_soc_platform *platform)
327{
328 struct dentry *debugfs_card_root = platform->card->debugfs_card_root;
329
Russell Kinge73f3de2014-06-26 15:22:50 +0100330 platform->debugfs_platform_root = soc_debugfs_create_dir(debugfs_card_root,
Mark Brown211bcc62014-06-28 13:55:22 +0100331 "platform:%s",
332 platform->component.name);
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000333 if (!platform->debugfs_platform_root) {
334 dev_warn(platform->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000335 "ASoC: Failed to create platform debugfs directory\n");
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000336 return;
337 }
338
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +0200339 snd_soc_dapm_debugfs_init(&platform->component.dapm,
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000340 platform->debugfs_platform_root);
341}
342
343static void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
344{
345 debugfs_remove_recursive(platform->debugfs_platform_root);
346}
347
Mark Brownc3c5a192010-09-15 18:15:14 +0100348static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
349 size_t count, loff_t *ppos)
350{
351 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100352 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100353 struct snd_soc_codec *codec;
354
355 if (!buf)
356 return -ENOMEM;
357
Mark Brown2b194f9d2010-10-13 10:52:16 +0100358 list_for_each_entry(codec, &codec_list, list) {
359 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200360 codec->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100361 if (len >= 0)
362 ret += len;
363 if (ret > PAGE_SIZE) {
364 ret = PAGE_SIZE;
365 break;
366 }
367 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100368
369 if (ret >= 0)
370 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
371
372 kfree(buf);
373
374 return ret;
375}
376
377static const struct file_operations codec_list_fops = {
378 .read = codec_list_read_file,
379 .llseek = default_llseek,/* read accesses f_pos */
380};
381
Mark Brownf3208782010-09-15 18:19:07 +0100382static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
383 size_t count, loff_t *ppos)
384{
385 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100386 ssize_t len, ret = 0;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100387 struct snd_soc_component *component;
Mark Brownf3208782010-09-15 18:19:07 +0100388 struct snd_soc_dai *dai;
389
390 if (!buf)
391 return -ENOMEM;
392
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100393 list_for_each_entry(component, &component_list, list) {
394 list_for_each_entry(dai, &component->dai_list, list) {
395 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
396 dai->name);
397 if (len >= 0)
398 ret += len;
399 if (ret > PAGE_SIZE) {
400 ret = PAGE_SIZE;
401 break;
402 }
Mark Brown2b194f9d2010-10-13 10:52:16 +0100403 }
404 }
Mark Brownf3208782010-09-15 18:19:07 +0100405
Mark Brown2b194f9d2010-10-13 10:52:16 +0100406 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100407
408 kfree(buf);
409
410 return ret;
411}
412
413static const struct file_operations dai_list_fops = {
414 .read = dai_list_read_file,
415 .llseek = default_llseek,/* read accesses f_pos */
416};
417
Mark Brown19c7ac22010-09-15 18:22:40 +0100418static ssize_t platform_list_read_file(struct file *file,
419 char __user *user_buf,
420 size_t count, loff_t *ppos)
421{
422 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100423 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100424 struct snd_soc_platform *platform;
425
426 if (!buf)
427 return -ENOMEM;
428
Mark Brown2b194f9d2010-10-13 10:52:16 +0100429 list_for_each_entry(platform, &platform_list, list) {
430 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200431 platform->component.name);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100432 if (len >= 0)
433 ret += len;
434 if (ret > PAGE_SIZE) {
435 ret = PAGE_SIZE;
436 break;
437 }
438 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100439
Mark Brown2b194f9d2010-10-13 10:52:16 +0100440 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100441
442 kfree(buf);
443
444 return ret;
445}
446
447static const struct file_operations platform_list_fops = {
448 .read = platform_list_read_file,
449 .llseek = default_llseek,/* read accesses f_pos */
450};
451
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200452static void soc_init_card_debugfs(struct snd_soc_card *card)
453{
454 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000455 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200456 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200457 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100458 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200459 return;
460 }
461
462 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
463 card->debugfs_card_root,
464 &card->pop_time);
465 if (!card->debugfs_pop_time)
466 dev_warn(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000467 "ASoC: Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200468}
469
470static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
471{
472 debugfs_remove_recursive(card->debugfs_card_root);
473}
474
Mark Brown2624d5f2009-11-03 21:56:13 +0000475#else
476
477static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
478{
479}
480
481static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
482{
483}
Axel Linb95fccb2010-11-09 17:06:44 +0800484
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000485static inline void soc_init_platform_debugfs(struct snd_soc_platform *platform)
486{
487}
488
489static inline void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
490{
491}
492
Axel Linb95fccb2010-11-09 17:06:44 +0800493static inline void soc_init_card_debugfs(struct snd_soc_card *card)
494{
495}
496
497static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
498{
499}
Mark Brown2624d5f2009-11-03 21:56:13 +0000500#endif
501
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100502struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
503 const char *dai_link, int stream)
504{
505 int i;
506
507 for (i = 0; i < card->num_links; i++) {
508 if (card->rtd[i].dai_link->no_pcm &&
509 !strcmp(card->rtd[i].dai_link->name, dai_link))
510 return card->rtd[i].pcm->streams[stream].substream;
511 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000512 dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100513 return NULL;
514}
515EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
516
517struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
518 const char *dai_link)
519{
520 int i;
521
522 for (i = 0; i < card->num_links; i++) {
523 if (!strcmp(card->rtd[i].dai_link->name, dai_link))
524 return &card->rtd[i];
525 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000526 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100527 return NULL;
528}
529EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
530
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200531#ifdef CONFIG_SND_SOC_AC97_BUS
532/* unregister ac97 codec */
533static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
534{
535 if (codec->ac97->dev.bus)
536 device_unregister(&codec->ac97->dev);
537 return 0;
538}
539
540/* stop no dev release warning */
541static void soc_ac97_device_release(struct device *dev){}
542
543/* register ac97 codec to bus */
544static int soc_ac97_dev_register(struct snd_soc_codec *codec)
545{
546 int err;
547
548 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100549 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200550 codec->ac97->dev.release = soc_ac97_device_release;
551
Kay Sieversbb072bf2008-11-02 03:50:35 +0100552 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200553 codec->card->snd_card->number, 0, codec->component.name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200554 err = device_register(&codec->ac97->dev);
555 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000556 dev_err(codec->dev, "ASoC: Can't register ac97 bus\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200557 codec->ac97->dev.bus = NULL;
558 return err;
559 }
560 return 0;
561}
562#endif
563
Richard Fitzgerald9d58a072013-08-05 13:17:28 +0100564static void codec2codec_close_delayed_work(struct work_struct *work)
565{
566 /* Currently nothing to do for c2c links
567 * Since c2c links are internal nodes in the DAPM graph and
568 * don't interface with the outside world or application layer
569 * we don't have to do any special handling on close.
570 */
571}
572
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000573#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200574/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000575int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200576{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000577 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200578 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200579 int i;
580
Daniel Macke3509ff2009-06-03 17:44:49 +0200581 /* If the initialization of this soc device failed, there is no codec
582 * associated with it. Just bail out in this case.
583 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000584 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200585 return 0;
586
Andy Green6ed25972008-06-13 16:24:05 +0100587 /* Due to the resume being scheduled into a workqueue we could
588 * suspend before that's finished - wait for it to complete.
589 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000590 snd_power_lock(card->snd_card);
591 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
592 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100593
594 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000595 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100596
Mark Browna00f90f2010-12-02 16:24:24 +0000597 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000598 for (i = 0; i < card->num_rtd; i++) {
599 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
600 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100601
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000602 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100603 continue;
604
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000605 if (drv->ops->digital_mute && dai->playback_active)
606 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200607 }
608
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100609 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000610 for (i = 0; i < card->num_rtd; i++) {
611 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100612 continue;
613
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000614 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100615 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100616
Mark Brown87506542008-11-18 20:50:34 +0000617 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000618 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200619
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000620 for (i = 0; i < card->num_rtd; i++) {
621 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
622 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100623
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000624 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100625 continue;
626
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000627 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
628 cpu_dai->driver->suspend(cpu_dai);
629 if (platform->driver->suspend && !platform->suspended) {
630 platform->driver->suspend(cpu_dai);
631 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100632 }
633 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200634
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000635 /* close any waiting streams and save state */
636 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo43829732012-08-20 14:51:24 -0700637 flush_delayed_work(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200638 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000639 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100640
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000641 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000642
643 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100644 continue;
645
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800646 snd_soc_dapm_stream_event(&card->rtd[i],
647 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800648 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000649
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800650 snd_soc_dapm_stream_event(&card->rtd[i],
651 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800652 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000653 }
654
Mark Browne2d32ff2012-08-31 17:38:32 -0700655 /* Recheck all analogue paths too */
656 dapm_mark_io_dirty(&card->dapm);
657 snd_soc_dapm_sync(&card->dapm);
658
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000659 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200660 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000661 /* If there are paths active then the CODEC will be held with
662 * bias _ON and should not be suspended. */
663 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200664 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000665 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000666 /*
667 * If the CODEC is capable of idle
668 * bias off then being in STANDBY
669 * means it's doing something,
670 * otherwise fall through.
671 */
672 if (codec->dapm.idle_bias_off) {
673 dev_dbg(codec->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200674 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000675 break;
676 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000677 case SND_SOC_BIAS_OFF:
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100678 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000679 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900680 codec->cache_sync = 1;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200681 if (codec->component.regmap)
682 regcache_mark_dirty(codec->component.regmap);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800683 /* deactivate pins to sleep state */
684 pinctrl_pm_select_sleep_state(codec->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000685 break;
686 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200687 dev_dbg(codec->dev,
688 "ASoC: CODEC is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000689 break;
690 }
691 }
692 }
693
694 for (i = 0; i < card->num_rtd; i++) {
695 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
696
697 if (card->rtd[i].dai_link->ignore_suspend)
698 continue;
699
700 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
701 cpu_dai->driver->suspend(cpu_dai);
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800702
703 /* deactivate pins to sleep state */
704 pinctrl_pm_select_sleep_state(cpu_dai->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200705 }
706
Mark Brown87506542008-11-18 20:50:34 +0000707 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000708 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200709
710 return 0;
711}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000712EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200713
Andy Green6ed25972008-06-13 16:24:05 +0100714/* deferred resume work, so resume can complete before we finished
715 * setting our codec back up, which can be very slow on I2C
716 */
717static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200718{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000719 struct snd_soc_card *card =
720 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200721 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200722 int i;
723
Andy Green6ed25972008-06-13 16:24:05 +0100724 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
725 * so userspace apps are blocked from touching us
726 */
727
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000728 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100729
Mark Brown99497882010-05-07 20:24:05 +0100730 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000731 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100732
Mark Brown87506542008-11-18 20:50:34 +0000733 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000734 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200735
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000736 /* resume AC97 DAIs */
737 for (i = 0; i < card->num_rtd; i++) {
738 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100739
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000740 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100741 continue;
742
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000743 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
744 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200745 }
746
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200747 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000748 /* If the CODEC was idle over suspend then it will have been
749 * left with bias OFF or STANDBY and suspended so we must now
750 * resume. Otherwise the suspend was suppressed.
751 */
752 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200753 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000754 case SND_SOC_BIAS_STANDBY:
755 case SND_SOC_BIAS_OFF:
756 codec->driver->resume(codec);
757 codec->suspended = 0;
758 break;
759 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200760 dev_dbg(codec->dev,
761 "ASoC: CODEC was on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000762 break;
763 }
Mark Brown1547aba2010-05-07 21:11:40 +0100764 }
765 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200766
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000767 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100768
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000769 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100770 continue;
771
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800772 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000773 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800774 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000775
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800776 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000777 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800778 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200779 }
780
Mark Brown3ff3f642008-05-19 12:32:25 +0200781 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000782 for (i = 0; i < card->num_rtd; i++) {
783 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
784 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100785
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000786 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100787 continue;
788
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000789 if (drv->ops->digital_mute && dai->playback_active)
790 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200791 }
792
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000793 for (i = 0; i < card->num_rtd; i++) {
794 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
795 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100796
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000797 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100798 continue;
799
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000800 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
801 cpu_dai->driver->resume(cpu_dai);
802 if (platform->driver->resume && platform->suspended) {
803 platform->driver->resume(cpu_dai);
804 platform->suspended = 0;
805 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200806 }
807
Mark Brown87506542008-11-18 20:50:34 +0000808 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000809 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200810
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000811 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100812
813 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000814 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Mark Browne2d32ff2012-08-31 17:38:32 -0700815
816 /* Recheck all analogue paths too */
817 dapm_mark_io_dirty(&card->dapm);
818 snd_soc_dapm_sync(&card->dapm);
Andy Green6ed25972008-06-13 16:24:05 +0100819}
820
821/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000822int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100823{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000824 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600825 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200826
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800827 /* If the initialization of this soc device failed, there is no codec
828 * associated with it. Just bail out in this case.
829 */
830 if (list_empty(&card->codec_dev_list))
831 return 0;
832
Nicolin Chen988e8cc2013-11-04 14:57:31 +0800833 /* activate pins from sleep state */
834 for (i = 0; i < card->num_rtd; i++) {
835 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
836 struct snd_soc_dai *codec_dai = card->rtd[i].codec_dai;
837 if (cpu_dai->active)
838 pinctrl_pm_select_default_state(cpu_dai->dev);
839 if (codec_dai->active)
840 pinctrl_pm_select_default_state(codec_dai->dev);
841 }
842
Mark Brown64ab9ba2009-03-31 11:27:03 +0100843 /* AC97 devices might have other drivers hanging off them so
844 * need to resume immediately. Other drivers don't have that
845 * problem and may take a substantial amount of time to resume
846 * due to I/O costs and anti-pop so handle them out of line.
847 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000848 for (i = 0; i < card->num_rtd; i++) {
849 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600850 ac97_control |= cpu_dai->driver->ac97_control;
851 }
852 if (ac97_control) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000853 dev_dbg(dev, "ASoC: Resuming AC97 immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600854 soc_resume_deferred(&card->deferred_resume_work);
855 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000856 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600857 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000858 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100859 }
Andy Green6ed25972008-06-13 16:24:05 +0100860
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200861 return 0;
862}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000863EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200864#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000865#define snd_soc_suspend NULL
866#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200867#endif
868
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100869static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800870};
871
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100872static struct snd_soc_codec *soc_find_codec(const struct device_node *codec_of_node,
873 const char *codec_name)
874{
875 struct snd_soc_codec *codec;
876
877 list_for_each_entry(codec, &codec_list, list) {
878 if (codec_of_node) {
879 if (codec->dev->of_node != codec_of_node)
880 continue;
881 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200882 if (strcmp(codec->component.name, codec_name))
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100883 continue;
884 }
885
886 return codec;
887 }
888
889 return NULL;
890}
891
892static struct snd_soc_dai *soc_find_codec_dai(struct snd_soc_codec *codec,
893 const char *codec_dai_name)
894{
895 struct snd_soc_dai *codec_dai;
896
897 list_for_each_entry(codec_dai, &codec->component.dai_list, list) {
898 if (!strcmp(codec_dai->name, codec_dai_name)) {
899 return codec_dai;
900 }
901 }
902
903 return NULL;
904}
905
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000906static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200907{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000908 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
909 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100910 struct snd_soc_component *component;
Mark Brown435c5e22008-12-04 15:32:53 +0000911 struct snd_soc_platform *platform;
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100912 struct snd_soc_dai *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100913 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200914
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000915 dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000916
Mark Brownb19e6e72012-03-14 21:18:39 +0000917 /* Find CPU DAI from registered DAIs*/
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100918 list_for_each_entry(component, &component_list, list) {
Stephen Warrenbc926572012-05-25 18:22:11 -0600919 if (dai_link->cpu_of_node &&
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100920 component->dev->of_node != dai_link->cpu_of_node)
Stephen Warrenbc926572012-05-25 18:22:11 -0600921 continue;
922 if (dai_link->cpu_name &&
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100923 strcmp(dev_name(component->dev), dai_link->cpu_name))
Stephen Warrenbc926572012-05-25 18:22:11 -0600924 continue;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100925 list_for_each_entry(cpu_dai, &component->dai_list, list) {
926 if (dai_link->cpu_dai_name &&
927 strcmp(cpu_dai->name, dai_link->cpu_dai_name))
928 continue;
Stephen Warren2610ab72011-12-07 13:58:27 -0700929
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +0100930 rtd->cpu_dai = cpu_dai;
931 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000932 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000933
934 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000935 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000936 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000937 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000938 }
939
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100940 /* Find CODEC from registered list */
941 rtd->codec = soc_find_codec(dai_link->codec_of_node,
942 dai_link->codec_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000943 if (!rtd->codec) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000944 dev_err(card->dev, "ASoC: CODEC %s not registered\n",
Mark Brownb19e6e72012-03-14 21:18:39 +0000945 dai_link->codec_name);
946 return -EPROBE_DEFER;
947 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100948
Misael Lopez Cruz12023a92014-03-21 16:27:25 +0100949 /* Find CODEC DAI from registered list */
950 rtd->codec_dai = soc_find_codec_dai(rtd->codec,
951 dai_link->codec_dai_name);
952 if (!rtd->codec_dai) {
953 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
954 dai_link->codec_dai_name);
955 return -EPROBE_DEFER;
956 }
957
Mark Brown848dd8b2011-04-27 18:16:32 +0100958 /* if there's no platform we match on the empty platform */
959 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700960 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100961 platform_name = "snd-soc-dummy";
962
Mark Brownb19e6e72012-03-14 21:18:39 +0000963 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000964 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700965 if (dai_link->platform_of_node) {
966 if (platform->dev->of_node !=
967 dai_link->platform_of_node)
968 continue;
969 } else {
Lars-Peter Clausenf4333202014-06-16 18:13:02 +0200970 if (strcmp(platform->component.name, platform_name))
Stephen Warren5a504962011-12-21 10:40:59 -0700971 continue;
972 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700973
974 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000975 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000976 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000977 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000978 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000979 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000980 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000981
982 card->num_rtd++;
983
984 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000985}
986
Stephen Warrend12cd192012-06-08 12:34:22 -0600987static int soc_remove_platform(struct snd_soc_platform *platform)
988{
989 int ret;
990
991 if (platform->driver->remove) {
992 ret = platform->driver->remove(platform);
993 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000994 dev_err(platform->dev, "ASoC: failed to remove %d\n",
995 ret);
Stephen Warrend12cd192012-06-08 12:34:22 -0600996 }
997
998 /* Make sure all DAPM widgets are freed */
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +0200999 snd_soc_dapm_free(&platform->component.dapm);
Stephen Warrend12cd192012-06-08 12:34:22 -06001000
1001 soc_cleanup_platform_debugfs(platform);
1002 platform->probed = 0;
1003 list_del(&platform->card_list);
1004 module_put(platform->dev->driver->owner);
1005
1006 return 0;
1007}
1008
Jarkko Nikula589c3562010-12-06 16:27:07 +02001009static void soc_remove_codec(struct snd_soc_codec *codec)
1010{
1011 int err;
1012
1013 if (codec->driver->remove) {
1014 err = codec->driver->remove(codec);
1015 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001016 dev_err(codec->dev, "ASoC: failed to remove %d\n", err);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001017 }
1018
1019 /* Make sure all DAPM widgets are freed */
1020 snd_soc_dapm_free(&codec->dapm);
1021
1022 soc_cleanup_codec_debugfs(codec);
1023 codec->probed = 0;
1024 list_del(&codec->card_list);
1025 module_put(codec->dev->driver->owner);
1026}
1027
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001028static void soc_remove_codec_dai(struct snd_soc_dai *codec_dai, int order)
1029{
1030 int err;
1031
1032 if (codec_dai && codec_dai->probed &&
1033 codec_dai->driver->remove_order == order) {
1034 if (codec_dai->driver->remove) {
1035 err = codec_dai->driver->remove(codec_dai);
1036 if (err < 0)
1037 dev_err(codec_dai->dev,
1038 "ASoC: failed to remove %s: %d\n",
1039 codec_dai->name, err);
1040 }
1041 codec_dai->probed = 0;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001042 }
1043}
1044
Stephen Warren62ae68f2012-06-08 12:34:23 -06001045static void soc_remove_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001046{
1047 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001048 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1049 int err;
1050
1051 /* unregister the rtd device */
1052 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001053 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
1054 device_remove_file(rtd->dev, &dev_attr_codec_reg);
1055 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001056 rtd->dev_registered = 0;
1057 }
1058
1059 /* remove the CODEC DAI */
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001060 soc_remove_codec_dai(codec_dai, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001061
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001062 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001063 if (cpu_dai && cpu_dai->probed &&
1064 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001065 if (cpu_dai->driver->remove) {
1066 err = cpu_dai->driver->remove(cpu_dai);
1067 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001068 dev_err(cpu_dai->dev,
1069 "ASoC: failed to remove %s: %d\n",
1070 cpu_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001071 }
1072 cpu_dai->probed = 0;
Lars-Peter Clausen9420d972014-06-16 18:13:10 +02001073 if (!cpu_dai->codec)
Stephen Warrena9db7db2012-06-08 12:34:20 -06001074 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001075 }
1076}
1077
Stephen Warren62ae68f2012-06-08 12:34:23 -06001078static void soc_remove_link_components(struct snd_soc_card *card, int num,
1079 int order)
1080{
1081 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1082 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1083 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1084 struct snd_soc_platform *platform = rtd->platform;
1085 struct snd_soc_codec *codec;
1086
1087 /* remove the platform */
1088 if (platform && platform->probed &&
1089 platform->driver->remove_order == order) {
1090 soc_remove_platform(platform);
1091 }
1092
1093 /* remove the CODEC-side CODEC */
1094 if (codec_dai) {
1095 codec = codec_dai->codec;
1096 if (codec && codec->probed &&
1097 codec->driver->remove_order == order)
1098 soc_remove_codec(codec);
1099 }
1100
1101 /* remove any CPU-side CODEC */
1102 if (cpu_dai) {
1103 codec = cpu_dai->codec;
1104 if (codec && codec->probed &&
1105 codec->driver->remove_order == order)
1106 soc_remove_codec(codec);
1107 }
1108}
1109
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001110static void soc_remove_dai_links(struct snd_soc_card *card)
1111{
Liam Girdwood0168bf02011-06-07 16:08:05 +01001112 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001113
Liam Girdwood0168bf02011-06-07 16:08:05 +01001114 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1115 order++) {
1116 for (dai = 0; dai < card->num_rtd; dai++)
Stephen Warren62ae68f2012-06-08 12:34:23 -06001117 soc_remove_link_dais(card, dai, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001118 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001119
1120 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1121 order++) {
1122 for (dai = 0; dai < card->num_rtd; dai++)
1123 soc_remove_link_components(card, dai, order);
1124 }
1125
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001126 card->num_rtd = 0;
1127}
1128
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001129static void soc_set_name_prefix(struct snd_soc_card *card,
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001130 struct snd_soc_component *component)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001131{
1132 int i;
1133
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001134 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001135 return;
1136
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001137 for (i = 0; i < card->num_configs; i++) {
1138 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001139 if (map->of_node && component->dev->of_node != map->of_node)
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001140 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001141 if (map->dev_name && strcmp(component->name, map->dev_name))
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001142 continue;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001143 component->name_prefix = map->name_prefix;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001144 break;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001145 }
1146}
1147
Jarkko Nikula589c3562010-12-06 16:27:07 +02001148static int soc_probe_codec(struct snd_soc_card *card,
1149 struct snd_soc_codec *codec)
1150{
1151 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +00001152 const struct snd_soc_codec_driver *driver = codec->driver;
Mark Brown888df392012-02-16 19:37:51 -08001153 struct snd_soc_dai *dai;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001154
1155 codec->card = card;
1156 codec->dapm.card = card;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02001157 soc_set_name_prefix(card, &codec->component);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001158
Jarkko Nikula70d29332011-01-27 16:24:22 +02001159 if (!try_module_get(codec->dev->driver->owner))
1160 return -ENODEV;
1161
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001162 soc_init_codec_debugfs(codec);
1163
Nariman Poushinb318ad52014-04-01 13:59:33 +01001164 if (driver->dapm_widgets) {
1165 ret = snd_soc_dapm_new_controls(&codec->dapm,
1166 driver->dapm_widgets,
1167 driver->num_dapm_widgets);
1168
1169 if (ret != 0) {
1170 dev_err(codec->dev,
1171 "Failed to create new controls %d\n", ret);
1172 goto err_probe;
1173 }
1174 }
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001175
Mark Brown888df392012-02-16 19:37:51 -08001176 /* Create DAPM widgets for each DAI stream */
Nariman Poushin261edc72014-03-31 15:47:12 +01001177 list_for_each_entry(dai, &codec->component.dai_list, list) {
1178 ret = snd_soc_dapm_new_dai_widgets(&codec->dapm, dai);
1179
1180 if (ret != 0) {
1181 dev_err(codec->dev,
1182 "Failed to create DAI widgets %d\n", ret);
1183 goto err_probe;
1184 }
1185 }
Mark Brown888df392012-02-16 19:37:51 -08001186
Mark Brown33c5f962011-08-22 18:40:30 +01001187 codec->dapm.idle_bias_off = driver->idle_bias_off;
1188
Mark Brown89b95ac02011-03-07 16:38:44 +00001189 if (driver->probe) {
1190 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001191 if (ret < 0) {
1192 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001193 "ASoC: failed to probe CODEC %d\n", ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001194 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001195 }
Chuansheng Liuff541f42012-12-21 18:17:12 +08001196 WARN(codec->dapm.idle_bias_off &&
1197 codec->dapm.bias_level != SND_SOC_BIAS_OFF,
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001198 "codec %s can not start from non-off bias with idle_bias_off==1\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02001199 codec->component.name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001200 }
1201
Mark Brownb7af1da2011-04-07 19:18:44 +09001202 if (driver->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001203 snd_soc_add_codec_controls(codec, driver->controls,
Mark Brownb7af1da2011-04-07 19:18:44 +09001204 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001205 if (driver->dapm_routes)
1206 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1207 driver->num_dapm_routes);
1208
Jarkko Nikula589c3562010-12-06 16:27:07 +02001209 /* mark codec as probed and add to card codec list */
1210 codec->probed = 1;
1211 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001212 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001213
Jarkko Nikula70d29332011-01-27 16:24:22 +02001214 return 0;
1215
1216err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001217 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001218 module_put(codec->dev->driver->owner);
1219
Jarkko Nikula589c3562010-12-06 16:27:07 +02001220 return ret;
1221}
1222
Liam Girdwood956245e2011-07-01 16:54:08 +01001223static int soc_probe_platform(struct snd_soc_card *card,
1224 struct snd_soc_platform *platform)
1225{
1226 int ret = 0;
1227 const struct snd_soc_platform_driver *driver = platform->driver;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01001228 struct snd_soc_component *component;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001229 struct snd_soc_dai *dai;
Liam Girdwood956245e2011-07-01 16:54:08 +01001230
1231 platform->card = card;
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001232 platform->component.dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +01001233
1234 if (!try_module_get(platform->dev->driver->owner))
1235 return -ENODEV;
1236
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +00001237 soc_init_platform_debugfs(platform);
1238
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001239 if (driver->dapm_widgets)
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001240 snd_soc_dapm_new_controls(&platform->component.dapm,
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001241 driver->dapm_widgets, driver->num_dapm_widgets);
1242
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001243 /* Create DAPM widgets for each DAI stream */
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01001244 list_for_each_entry(component, &component_list, list) {
1245 if (component->dev != platform->dev)
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001246 continue;
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01001247 list_for_each_entry(dai, &component->dai_list, list)
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001248 snd_soc_dapm_new_dai_widgets(&platform->component.dapm,
1249 dai);
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001250 }
1251
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001252 platform->component.dapm.idle_bias_off = 1;
Stephen Warren3fec6b62012-04-05 12:28:01 -06001253
Liam Girdwood956245e2011-07-01 16:54:08 +01001254 if (driver->probe) {
1255 ret = driver->probe(platform);
1256 if (ret < 0) {
1257 dev_err(platform->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001258 "ASoC: failed to probe platform %d\n", ret);
Liam Girdwood956245e2011-07-01 16:54:08 +01001259 goto err_probe;
1260 }
1261 }
1262
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001263 if (driver->controls)
1264 snd_soc_add_platform_controls(platform, driver->controls,
1265 driver->num_controls);
1266 if (driver->dapm_routes)
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001267 snd_soc_dapm_add_routes(&platform->component.dapm,
1268 driver->dapm_routes, driver->num_dapm_routes);
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001269
Liam Girdwood956245e2011-07-01 16:54:08 +01001270 /* mark platform as probed and add to card platform list */
1271 platform->probed = 1;
1272 list_add(&platform->card_list, &card->platform_dev_list);
Lars-Peter Clausenbc9af9f2014-06-16 18:13:07 +02001273 list_add(&platform->component.dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001274
1275 return 0;
1276
1277err_probe:
Liam Girdwood02db1102012-03-02 16:13:44 +00001278 soc_cleanup_platform_debugfs(platform);
Liam Girdwood956245e2011-07-01 16:54:08 +01001279 module_put(platform->dev->driver->owner);
1280
1281 return ret;
1282}
1283
Mark Brown36ae1a92012-01-06 17:12:45 -08001284static void rtd_release(struct device *dev)
1285{
1286 kfree(dev);
1287}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001288
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001289static int soc_aux_dev_init(struct snd_soc_card *card, int num)
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001290{
1291 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1292 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001293 int ret;
1294
1295 rtd->card = card;
1296
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001297 /* do machine specific initialization */
1298 if (aux_dev->init) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001299 ret = aux_dev->init(&rtd->codec->dapm);
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001300 if (ret < 0)
1301 return ret;
1302 }
1303
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001304 return 0;
1305}
1306
Lars-Peter Clausenb8257be2014-07-01 22:13:45 +02001307static int soc_dai_link_init(struct snd_soc_card *card, int num)
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001308{
1309 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1310 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001311 int ret;
1312
1313 rtd->card = card;
1314
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001315 /* do machine specific initialization */
1316 if (dai_link->init) {
1317 ret = dai_link->init(rtd);
1318 if (ret < 0)
1319 return ret;
1320 }
1321
Misael Lopez Cruz503ae5e2014-04-24 14:01:44 +02001322 return 0;
1323}
1324
Jarkko Nikula589c3562010-12-06 16:27:07 +02001325static int soc_post_component_init(struct snd_soc_card *card,
Jarkko Nikula589c3562010-12-06 16:27:07 +02001326 int num, int dailess)
1327{
1328 struct snd_soc_dai_link *dai_link = NULL;
1329 struct snd_soc_aux_dev *aux_dev = NULL;
1330 struct snd_soc_pcm_runtime *rtd;
Lars-Peter Clausen6479f15ad2014-03-12 15:27:40 +01001331 const char *name;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001332 int ret = 0;
1333
1334 if (!dailess) {
1335 dai_link = &card->dai_link[num];
1336 rtd = &card->rtd[num];
1337 name = dai_link->name;
Lars-Peter Clausenb8257be2014-07-01 22:13:45 +02001338 ret = soc_dai_link_init(card, num);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001339 } else {
1340 aux_dev = &card->aux_dev[num];
1341 rtd = &card->rtd_aux[num];
1342 name = aux_dev->name;
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001343 ret = soc_aux_dev_init(card, num);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001344 }
1345
Jarkko Nikula589c3562010-12-06 16:27:07 +02001346 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001347 dev_err(card->dev, "ASoC: failed to init %s: %d\n", name, ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001348 return ret;
1349 }
Jarkko Nikula589c3562010-12-06 16:27:07 +02001350
Jarkko Nikula589c3562010-12-06 16:27:07 +02001351 /* register the rtd device */
Mark Brown36ae1a92012-01-06 17:12:45 -08001352 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1353 if (!rtd->dev)
1354 return -ENOMEM;
1355 device_initialize(rtd->dev);
1356 rtd->dev->parent = card->dev;
1357 rtd->dev->release = rtd_release;
1358 rtd->dev->init_name = name;
1359 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001360 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001361 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1362 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1363 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1364 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001365 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001366 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001367 /* calling put_device() here to free the rtd->dev */
1368 put_device(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001369 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001370 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001371 return ret;
1372 }
1373 rtd->dev_registered = 1;
1374
1375 /* add DAPM sysfs entries for this codec */
Mark Brown36ae1a92012-01-06 17:12:45 -08001376 ret = snd_soc_dapm_sys_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001377 if (ret < 0)
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001378 dev_err(rtd->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001379 "ASoC: failed to add codec dapm sysfs entries: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001380
1381 /* add codec sysfs entries */
Mark Brown36ae1a92012-01-06 17:12:45 -08001382 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001383 if (ret < 0)
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001384 dev_err(rtd->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001385 "ASoC: failed to add codec sysfs files: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001386
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001387#ifdef CONFIG_DEBUG_FS
1388 /* add DPCM sysfs entries */
Liam Girdwoodcd0f8912012-04-30 11:05:30 +01001389 if (!dailess && !dai_link->dynamic)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001390 goto out;
1391
1392 ret = soc_dpcm_debugfs_add(rtd);
1393 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001394 dev_err(rtd->dev, "ASoC: failed to add dpcm sysfs entries: %d\n", ret);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001395
1396out:
1397#endif
Jarkko Nikula589c3562010-12-06 16:27:07 +02001398 return 0;
1399}
1400
Stephen Warren62ae68f2012-06-08 12:34:23 -06001401static int soc_probe_link_components(struct snd_soc_card *card, int num,
1402 int order)
1403{
1404 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1405 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1406 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1407 struct snd_soc_platform *platform = rtd->platform;
1408 int ret;
1409
1410 /* probe the CPU-side component, if it is a CODEC */
1411 if (cpu_dai->codec &&
1412 !cpu_dai->codec->probed &&
1413 cpu_dai->codec->driver->probe_order == order) {
1414 ret = soc_probe_codec(card, cpu_dai->codec);
1415 if (ret < 0)
1416 return ret;
1417 }
1418
1419 /* probe the CODEC-side component */
1420 if (!codec_dai->codec->probed &&
1421 codec_dai->codec->driver->probe_order == order) {
1422 ret = soc_probe_codec(card, codec_dai->codec);
1423 if (ret < 0)
1424 return ret;
1425 }
1426
1427 /* probe the platform */
1428 if (!platform->probed &&
1429 platform->driver->probe_order == order) {
1430 ret = soc_probe_platform(card, platform);
1431 if (ret < 0)
1432 return ret;
1433 }
1434
1435 return 0;
1436}
1437
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001438static int soc_probe_codec_dai(struct snd_soc_card *card,
1439 struct snd_soc_dai *codec_dai,
1440 int order)
1441{
1442 int ret;
1443
1444 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
1445 if (codec_dai->driver->probe) {
1446 ret = codec_dai->driver->probe(codec_dai);
1447 if (ret < 0) {
1448 dev_err(codec_dai->dev,
1449 "ASoC: failed to probe CODEC DAI %s: %d\n",
1450 codec_dai->name, ret);
1451 return ret;
1452 }
1453 }
1454
1455 /* mark codec_dai as probed and add to card dai list */
1456 codec_dai->probed = 1;
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001457 }
1458
1459 return 0;
1460}
1461
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001462static int soc_link_dai_widgets(struct snd_soc_card *card,
1463 struct snd_soc_dai_link *dai_link,
1464 struct snd_soc_dai *cpu_dai,
1465 struct snd_soc_dai *codec_dai)
1466{
1467 struct snd_soc_dapm_widget *play_w, *capture_w;
1468 int ret;
1469
1470 /* link the DAI widgets */
1471 play_w = codec_dai->playback_widget;
1472 capture_w = cpu_dai->capture_widget;
1473 if (play_w && capture_w) {
1474 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1475 capture_w, play_w);
1476 if (ret != 0) {
1477 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1478 play_w->name, capture_w->name, ret);
1479 return ret;
1480 }
1481 }
1482
1483 play_w = cpu_dai->playback_widget;
1484 capture_w = codec_dai->capture_widget;
1485 if (play_w && capture_w) {
1486 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1487 capture_w, play_w);
1488 if (ret != 0) {
1489 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
1490 play_w->name, capture_w->name, ret);
1491 return ret;
1492 }
1493 }
1494
1495 return 0;
1496}
1497
Stephen Warren62ae68f2012-06-08 12:34:23 -06001498static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001499{
1500 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1501 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1502 struct snd_soc_codec *codec = rtd->codec;
1503 struct snd_soc_platform *platform = rtd->platform;
Mark Brownc74184e2012-04-04 22:12:09 +01001504 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1505 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001506 int ret;
1507
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001508 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Liam Girdwood0168bf02011-06-07 16:08:05 +01001509 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001510
1511 /* config components */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001512 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001513 codec_dai->card = card;
1514 cpu_dai->card = card;
1515
1516 /* set default power off timeout */
1517 rtd->pmdown_time = pmdown_time;
1518
1519 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001520 if (!cpu_dai->probed &&
1521 cpu_dai->driver->probe_order == order) {
Stephen Warrena9db7db2012-06-08 12:34:20 -06001522 if (!cpu_dai->codec) {
Stephen Warrena9db7db2012-06-08 12:34:20 -06001523 if (!try_module_get(cpu_dai->dev->driver->owner))
1524 return -ENODEV;
Stephen Warrena9db7db2012-06-08 12:34:20 -06001525 }
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001526
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001527 if (cpu_dai->driver->probe) {
1528 ret = cpu_dai->driver->probe(cpu_dai);
1529 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001530 dev_err(cpu_dai->dev,
1531 "ASoC: failed to probe CPU DAI %s: %d\n",
1532 cpu_dai->name, ret);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001533 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001534 return ret;
1535 }
1536 }
1537 cpu_dai->probed = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001538 }
1539
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001540 /* probe the CODEC DAI */
Misael Lopez Cruzb0aa88a2014-03-21 16:27:26 +01001541 ret = soc_probe_codec_dai(card, codec_dai, order);
1542 if (ret)
1543 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001544
Liam Girdwood0168bf02011-06-07 16:08:05 +01001545 /* complete DAI probe during last probe */
1546 if (order != SND_SOC_COMP_ORDER_LAST)
1547 return 0;
1548
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001549 ret = soc_post_component_init(card, num, 0);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001550 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001551 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001552
Mark Brown36ae1a92012-01-06 17:12:45 -08001553 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001554 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001555 dev_warn(rtd->dev, "ASoC: failed to add pmdown_time sysfs: %d\n",
1556 ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001557
Namarta Kohli1245b702012-08-16 17:10:41 +05301558 if (cpu_dai->driver->compress_dai) {
1559 /*create compress_device"*/
1560 ret = soc_new_compress(rtd, num);
Mark Brownc74184e2012-04-04 22:12:09 +01001561 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001562 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301563 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001564 return ret;
1565 }
1566 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301567
1568 if (!dai_link->params) {
1569 /* create the pcm */
1570 ret = soc_new_pcm(rtd, num);
1571 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001572 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301573 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001574 return ret;
1575 }
Namarta Kohli1245b702012-08-16 17:10:41 +05301576 } else {
Richard Fitzgerald9d58a072013-08-05 13:17:28 +01001577 INIT_DELAYED_WORK(&rtd->delayed_work,
1578 codec2codec_close_delayed_work);
1579
Namarta Kohli1245b702012-08-16 17:10:41 +05301580 /* link the DAI widgets */
Misael Lopez Cruz2436a722014-03-21 16:27:27 +01001581 ret = soc_link_dai_widgets(card, dai_link,
1582 cpu_dai, codec_dai);
1583 if (ret)
1584 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01001585 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001586 }
1587
1588 /* add platform data for AC97 devices */
1589 if (rtd->codec_dai->driver->ac97_control)
1590 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1591
1592 return 0;
1593}
1594
1595#ifdef CONFIG_SND_SOC_AC97_BUS
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001596static int soc_register_ac97_codec(struct snd_soc_codec *codec,
1597 struct snd_soc_dai *codec_dai)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001598{
1599 int ret;
1600
1601 /* Only instantiate AC97 if not already done by the adaptor
1602 * for the generic AC97 subsystem.
1603 */
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001604 if (codec_dai->driver->ac97_control && !codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001605 /*
1606 * It is possible that the AC97 device is already registered to
1607 * the device subsystem. This happens when the device is created
1608 * via snd_ac97_mixer(). Currently only SoC codec that does so
1609 * is the generic AC97 glue but others migh emerge.
1610 *
1611 * In those cases we don't try to register the device again.
1612 */
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001613 if (!codec->ac97_created)
Mika Westerberg0562f782010-10-13 11:30:32 +03001614 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001615
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001616 ret = soc_ac97_dev_register(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001617 if (ret < 0) {
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001618 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001619 "ASoC: AC97 device register failed: %d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001620 return ret;
1621 }
1622
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001623 codec->ac97_registered = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001624 }
1625 return 0;
1626}
1627
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001628static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1629{
1630 return soc_register_ac97_codec(rtd->codec, rtd->codec_dai);
1631}
1632
1633static void soc_unregister_ac97_codec(struct snd_soc_codec *codec)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001634{
1635 if (codec->ac97_registered) {
1636 soc_ac97_dev_unregister(codec);
1637 codec->ac97_registered = 0;
1638 }
1639}
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001640
1641static void soc_unregister_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1642{
1643 soc_unregister_ac97_codec(rtd->codec);
1644}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001645#endif
1646
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001647static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001648{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001649 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001650 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1651 const char *codecname = aux_dev->codec_name;
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001652
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001653 rtd->codec = soc_find_codec(aux_dev->codec_of_node, codecname);
1654 if (!rtd->codec) {
1655 if (aux_dev->codec_of_node)
1656 codecname = of_node_full_name(aux_dev->codec_of_node);
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001657
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001658 dev_err(card->dev, "ASoC: %s not registered\n", codecname);
1659 return -EPROBE_DEFER;
1660 }
1661
1662 return 0;
Mark Brownb19e6e72012-03-14 21:18:39 +00001663}
1664
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001665static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1666{
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001667 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1668 int ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001669
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001670 if (rtd->codec->probed) {
1671 dev_err(rtd->codec->dev, "ASoC: codec already probed\n");
Sebastian Reichel3ca041e2014-04-28 16:07:22 +02001672 return -EBUSY;
1673 }
1674
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001675 ret = soc_probe_codec(card, rtd->codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001676 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001677 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001678
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001679 return soc_post_component_init(card, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001680}
1681
1682static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1683{
1684 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1685 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001686
1687 /* unregister the rtd device */
1688 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001689 device_remove_file(rtd->dev, &dev_attr_codec_reg);
Chuansheng Liud3bf1562012-12-26 00:57:32 +08001690 device_unregister(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001691 rtd->dev_registered = 0;
1692 }
1693
Jarkko Nikula589c3562010-12-06 16:27:07 +02001694 if (codec && codec->probed)
1695 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001696}
1697
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001698static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001699{
1700 int ret;
1701
1702 if (codec->cache_init)
1703 return 0;
1704
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001705 ret = snd_soc_cache_init(codec);
1706 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001707 dev_err(codec->dev,
1708 "ASoC: Failed to set cache compression type: %d\n",
1709 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001710 return ret;
1711 }
1712 codec->cache_init = 1;
1713 return 0;
1714}
1715
Mark Brownb19e6e72012-03-14 21:18:39 +00001716static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001717{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001718 struct snd_soc_codec *codec;
Mark Brown75d9ac42011-09-27 16:41:01 +01001719 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001720 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001721
Liam Girdwood01b9d992012-03-07 10:38:25 +00001722 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001723
Mark Brownb19e6e72012-03-14 21:18:39 +00001724 /* bind DAIs */
1725 for (i = 0; i < card->num_links; i++) {
1726 ret = soc_bind_dai_link(card, i);
1727 if (ret != 0)
1728 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001729 }
1730
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001731 /* bind aux_devs too */
Mark Brownb19e6e72012-03-14 21:18:39 +00001732 for (i = 0; i < card->num_aux_devs; i++) {
Lars-Peter Clausen44c69bb2014-07-01 22:13:47 +02001733 ret = soc_bind_aux_dev(card, i);
Mark Brownb19e6e72012-03-14 21:18:39 +00001734 if (ret != 0)
1735 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001736 }
1737
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001738 /* initialize the register cache for each available codec */
1739 list_for_each_entry(codec, &codec_list, list) {
1740 if (codec->cache_init)
1741 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001742 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001743 if (ret < 0)
1744 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001745 }
1746
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001747 /* card bind complete so register a sound card */
Takashi Iwai102b5a82014-01-29 14:42:55 +01001748 ret = snd_card_new(card->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001749 card->owner, 0, &card->snd_card);
1750 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001751 dev_err(card->dev,
1752 "ASoC: can't create sound card for card %s: %d\n",
1753 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001754 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001755 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001756
Mark Browne37a4972011-03-02 18:21:57 +00001757 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1758 card->dapm.dev = card->dev;
1759 card->dapm.card = card;
1760 list_add(&card->dapm.list, &card->dapm_list);
1761
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001762#ifdef CONFIG_DEBUG_FS
1763 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1764#endif
1765
Mark Brown88ee1c62011-02-02 10:43:26 +00001766#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001767 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001768 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001769#endif
Andy Green6ed25972008-06-13 16:24:05 +01001770
Mark Brown9a841eb2011-04-12 17:51:37 -07001771 if (card->dapm_widgets)
1772 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1773 card->num_dapm_widgets);
1774
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001775 /* initialise the sound card only once */
1776 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001777 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001778 if (ret < 0)
1779 goto card_probe_error;
1780 }
1781
Stephen Warren62ae68f2012-06-08 12:34:23 -06001782 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001783 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1784 order++) {
1785 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001786 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001787 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001788 dev_err(card->dev,
1789 "ASoC: failed to instantiate card %d\n",
1790 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001791 goto probe_dai_err;
1792 }
1793 }
1794 }
1795
1796 /* probe all DAI links on this card */
1797 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1798 order++) {
1799 for (i = 0; i < card->num_links; i++) {
1800 ret = soc_probe_link_dais(card, i, order);
1801 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001802 dev_err(card->dev,
1803 "ASoC: failed to instantiate card %d\n",
1804 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001805 goto probe_dai_err;
1806 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001807 }
1808 }
1809
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001810 for (i = 0; i < card->num_aux_devs; i++) {
1811 ret = soc_probe_aux_dev(card, i);
1812 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001813 dev_err(card->dev,
1814 "ASoC: failed to add auxiliary devices %d\n",
1815 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001816 goto probe_aux_dev_err;
1817 }
1818 }
1819
Mark Brown888df392012-02-16 19:37:51 -08001820 snd_soc_dapm_link_dai_widgets(card);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00001821 snd_soc_dapm_connect_dai_link_widgets(card);
Mark Brown888df392012-02-16 19:37:51 -08001822
Mark Brownb7af1da2011-04-07 19:18:44 +09001823 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001824 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001825
Mark Brownb8ad29d2011-03-02 18:35:51 +00001826 if (card->dapm_routes)
1827 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1828 card->num_dapm_routes);
1829
Mark Brown75d9ac42011-09-27 16:41:01 +01001830 for (i = 0; i < card->num_links; i++) {
1831 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001832 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001833
Mark Brownf04209a2012-04-09 16:29:21 +01001834 if (dai_fmt) {
Mark Brown75d9ac42011-09-27 16:41:01 +01001835 ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001836 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001837 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001838 dev_warn(card->rtd[i].codec_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001839 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001840 ret);
Mark Brownf04209a2012-04-09 16:29:21 +01001841 }
1842
1843 /* If this is a regular CPU link there will be a platform */
Stephen Warrenfe33d4c2012-05-14 14:47:22 -06001844 if (dai_fmt &&
1845 (dai_link->platform_name || dai_link->platform_of_node)) {
Mark Brownf04209a2012-04-09 16:29:21 +01001846 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1847 dai_fmt);
1848 if (ret != 0 && ret != -ENOTSUPP)
1849 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001850 "ASoC: Failed to set DAI format: %d\n",
Mark Brownf04209a2012-04-09 16:29:21 +01001851 ret);
1852 } else if (dai_fmt) {
1853 /* Flip the polarity for the "CPU" end */
1854 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1855 switch (dai_link->dai_fmt &
1856 SND_SOC_DAIFMT_MASTER_MASK) {
1857 case SND_SOC_DAIFMT_CBM_CFM:
1858 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1859 break;
1860 case SND_SOC_DAIFMT_CBM_CFS:
1861 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1862 break;
1863 case SND_SOC_DAIFMT_CBS_CFM:
1864 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1865 break;
1866 case SND_SOC_DAIFMT_CBS_CFS:
1867 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1868 break;
1869 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001870
1871 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001872 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001873 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001874 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001875 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001876 ret);
1877 }
1878 }
1879
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001880 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001881 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001882 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1883 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001884 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1885 "%s", card->driver_name ? card->driver_name : card->name);
1886 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1887 switch (card->snd_card->driver[i]) {
1888 case '_':
1889 case '-':
1890 case '\0':
1891 break;
1892 default:
1893 if (!isalnum(card->snd_card->driver[i]))
1894 card->snd_card->driver[i] = '_';
1895 break;
1896 }
1897 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001898
Mark Brown28e9ad92011-03-02 18:36:34 +00001899 if (card->late_probe) {
1900 ret = card->late_probe(card);
1901 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001902 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001903 card->name, ret);
1904 goto probe_aux_dev_err;
1905 }
1906 }
1907
Stephen Warren16332812011-11-23 12:42:04 -07001908 if (card->fully_routed)
Lars-Peter Clausen7df37882014-06-16 18:13:04 +02001909 snd_soc_dapm_auto_nc_pins(card);
Stephen Warren16332812011-11-23 12:42:04 -07001910
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001911 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001912
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001913 ret = snd_card_register(card->snd_card);
1914 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001915 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1916 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001917 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001918 }
1919
1920#ifdef CONFIG_SND_SOC_AC97_BUS
1921 /* register any AC97 codecs */
1922 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001923 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1924 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001925 dev_err(card->dev,
1926 "ASoC: failed to register AC97: %d\n", ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001927 while (--i >= 0)
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01001928 soc_unregister_ac97_dai_link(&card->rtd[i]);
Axel Lin6b3ed782010-12-07 16:12:29 +08001929 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001930 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001931 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001932#endif
1933
Mark Brown435c5e22008-12-04 15:32:53 +00001934 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001935 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001936 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001937
1938 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001939
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001940probe_aux_dev_err:
1941 for (i = 0; i < card->num_aux_devs; i++)
1942 soc_remove_aux_dev(card, i);
1943
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001944probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001945 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001946
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001947card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001948 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001949 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001950
1951 snd_card_free(card->snd_card);
1952
Mark Brownb19e6e72012-03-14 21:18:39 +00001953base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001954 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001955
Mark Brownb19e6e72012-03-14 21:18:39 +00001956 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001957}
1958
1959/* probes a new socdev */
1960static int soc_probe(struct platform_device *pdev)
1961{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001962 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001963
Vinod Koul70a7ca32011-01-14 19:22:48 +05301964 /*
1965 * no card, so machine driver should be registering card
1966 * we should not be here in that case so ret error
1967 */
1968 if (!card)
1969 return -EINVAL;
1970
Mark Brownfe4085e2012-03-02 13:07:41 +00001971 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001972 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001973 card->name);
1974
Mark Brown435c5e22008-12-04 15:32:53 +00001975 /* Bodge while we unpick instantiation */
1976 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001977
Mark Brown28d528c2012-08-09 18:45:23 +01001978 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001979}
1980
Vinod Koulb0e26482011-01-13 22:48:02 +05301981static int soc_cleanup_card_resources(struct snd_soc_card *card)
1982{
Vinod Koulb0e26482011-01-13 22:48:02 +05301983 int i;
1984
1985 /* make sure any delayed work runs */
1986 for (i = 0; i < card->num_rtd; i++) {
1987 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001988 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301989 }
1990
1991 /* remove auxiliary devices */
1992 for (i = 0; i < card->num_aux_devs; i++)
1993 soc_remove_aux_dev(card, i);
1994
1995 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001996 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301997
1998 soc_cleanup_card_debugfs(card);
1999
2000 /* remove the card */
2001 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00002002 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05302003
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02002004 snd_soc_dapm_free(&card->dapm);
2005
Vinod Koulb0e26482011-01-13 22:48:02 +05302006 snd_card_free(card->snd_card);
2007 return 0;
2008
2009}
2010
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002011/* removes a socdev */
2012static int soc_remove(struct platform_device *pdev)
2013{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002014 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002015
Mark Brownc5af3a22008-11-28 13:29:45 +00002016 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002017 return 0;
2018}
2019
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002020int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01002021{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002022 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002023 int i;
Mark Brown51737472009-06-22 13:16:51 +01002024
2025 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01002026 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002027
2028 /* Flush out pmdown_time work - we actually do want to run it
2029 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002030 for (i = 0; i < card->num_rtd; i++) {
2031 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07002032 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002033 }
Mark Brown51737472009-06-22 13:16:51 +01002034
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002035 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01002036
Nicolin Chen988e8cc2013-11-04 14:57:31 +08002037 /* deactivate pins to sleep state */
2038 for (i = 0; i < card->num_rtd; i++) {
2039 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
2040 struct snd_soc_dai *codec_dai = card->rtd[i].codec_dai;
2041 pinctrl_pm_select_sleep_state(codec_dai->dev);
2042 pinctrl_pm_select_sleep_state(cpu_dai->dev);
2043 }
2044
Mark Brown416356f2009-06-30 19:05:15 +01002045 return 0;
Mark Brown51737472009-06-22 13:16:51 +01002046}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002047EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01002048
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002049const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05302050 .suspend = snd_soc_suspend,
2051 .resume = snd_soc_resume,
2052 .freeze = snd_soc_suspend,
2053 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002054 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05302055 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01002056};
Stephen Warrendeb26072011-04-05 19:35:30 -06002057EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01002058
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002059/* ASoC platform driver */
2060static struct platform_driver soc_driver = {
2061 .driver = {
2062 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02002063 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00002064 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002065 },
2066 .probe = soc_probe,
2067 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002068};
2069
Mark Brown096e49d2009-07-05 15:12:22 +01002070/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002071 * snd_soc_new_ac97_codec - initailise AC97 device
2072 * @codec: audio codec
2073 * @ops: AC97 bus operations
2074 * @num: AC97 codec number
2075 *
2076 * Initialises AC97 codec resources for use by ad-hoc devices only.
2077 */
2078int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2079 struct snd_ac97_bus_ops *ops, int num)
2080{
2081 mutex_lock(&codec->mutex);
2082
2083 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2084 if (codec->ac97 == NULL) {
2085 mutex_unlock(&codec->mutex);
2086 return -ENOMEM;
2087 }
2088
2089 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2090 if (codec->ac97->bus == NULL) {
2091 kfree(codec->ac97);
2092 codec->ac97 = NULL;
2093 mutex_unlock(&codec->mutex);
2094 return -ENOMEM;
2095 }
2096
2097 codec->ac97->bus->ops = ops;
2098 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002099
2100 /*
2101 * Mark the AC97 device to be created by us. This way we ensure that the
2102 * device will be registered with the device subsystem later on.
2103 */
2104 codec->ac97_created = 1;
2105
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002106 mutex_unlock(&codec->mutex);
2107 return 0;
2108}
2109EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2110
Markus Pargmann741a5092013-08-19 17:05:55 +02002111static struct snd_ac97_reset_cfg snd_ac97_rst_cfg;
2112
2113static void snd_soc_ac97_warm_reset(struct snd_ac97 *ac97)
2114{
2115 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2116
2117 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_warm_reset);
2118
2119 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 1);
2120
2121 udelay(10);
2122
2123 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2124
2125 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2126 msleep(2);
2127}
2128
2129static void snd_soc_ac97_reset(struct snd_ac97 *ac97)
2130{
2131 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2132
2133 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_reset);
2134
2135 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2136 gpio_direction_output(snd_ac97_rst_cfg.gpio_sdata, 0);
2137 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 0);
2138
2139 udelay(10);
2140
2141 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 1);
2142
2143 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2144 msleep(2);
2145}
2146
2147static int snd_soc_ac97_parse_pinctl(struct device *dev,
2148 struct snd_ac97_reset_cfg *cfg)
2149{
2150 struct pinctrl *p;
2151 struct pinctrl_state *state;
2152 int gpio;
2153 int ret;
2154
2155 p = devm_pinctrl_get(dev);
2156 if (IS_ERR(p)) {
2157 dev_err(dev, "Failed to get pinctrl\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002158 return PTR_ERR(p);
Markus Pargmann741a5092013-08-19 17:05:55 +02002159 }
2160 cfg->pctl = p;
2161
2162 state = pinctrl_lookup_state(p, "ac97-reset");
2163 if (IS_ERR(state)) {
2164 dev_err(dev, "Can't find pinctrl state ac97-reset\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002165 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002166 }
2167 cfg->pstate_reset = state;
2168
2169 state = pinctrl_lookup_state(p, "ac97-warm-reset");
2170 if (IS_ERR(state)) {
2171 dev_err(dev, "Can't find pinctrl state ac97-warm-reset\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002172 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002173 }
2174 cfg->pstate_warm_reset = state;
2175
2176 state = pinctrl_lookup_state(p, "ac97-running");
2177 if (IS_ERR(state)) {
2178 dev_err(dev, "Can't find pinctrl state ac97-running\n");
Christoph Jaegerb7580cd2014-04-15 22:39:01 +02002179 return PTR_ERR(state);
Markus Pargmann741a5092013-08-19 17:05:55 +02002180 }
2181 cfg->pstate_run = state;
2182
2183 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 0);
2184 if (gpio < 0) {
2185 dev_err(dev, "Can't find ac97-sync gpio\n");
2186 return gpio;
2187 }
2188 ret = devm_gpio_request(dev, gpio, "AC97 link sync");
2189 if (ret) {
2190 dev_err(dev, "Failed requesting ac97-sync gpio\n");
2191 return ret;
2192 }
2193 cfg->gpio_sync = gpio;
2194
2195 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 1);
2196 if (gpio < 0) {
2197 dev_err(dev, "Can't find ac97-sdata gpio %d\n", gpio);
2198 return gpio;
2199 }
2200 ret = devm_gpio_request(dev, gpio, "AC97 link sdata");
2201 if (ret) {
2202 dev_err(dev, "Failed requesting ac97-sdata gpio\n");
2203 return ret;
2204 }
2205 cfg->gpio_sdata = gpio;
2206
2207 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 2);
2208 if (gpio < 0) {
2209 dev_err(dev, "Can't find ac97-reset gpio\n");
2210 return gpio;
2211 }
2212 ret = devm_gpio_request(dev, gpio, "AC97 link reset");
2213 if (ret) {
2214 dev_err(dev, "Failed requesting ac97-reset gpio\n");
2215 return ret;
2216 }
2217 cfg->gpio_reset = gpio;
2218
2219 return 0;
2220}
2221
Mark Brownb047e1c2013-06-26 12:45:59 +01002222struct snd_ac97_bus_ops *soc_ac97_ops;
Kevin Hilmanf74b5e22013-06-28 11:17:49 -07002223EXPORT_SYMBOL_GPL(soc_ac97_ops);
Mark Brownb047e1c2013-06-26 12:45:59 +01002224
2225int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
2226{
2227 if (ops == soc_ac97_ops)
2228 return 0;
2229
2230 if (soc_ac97_ops && ops)
2231 return -EBUSY;
2232
2233 soc_ac97_ops = ops;
2234
2235 return 0;
2236}
2237EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops);
2238
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002239/**
Markus Pargmann741a5092013-08-19 17:05:55 +02002240 * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
2241 *
2242 * This function sets the reset and warm_reset properties of ops and parses
2243 * the device node of pdev to get pinctrl states and gpio numbers to use.
2244 */
2245int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
2246 struct platform_device *pdev)
2247{
2248 struct device *dev = &pdev->dev;
2249 struct snd_ac97_reset_cfg cfg;
2250 int ret;
2251
2252 ret = snd_soc_ac97_parse_pinctl(dev, &cfg);
2253 if (ret)
2254 return ret;
2255
2256 ret = snd_soc_set_ac97_ops(ops);
2257 if (ret)
2258 return ret;
2259
2260 ops->warm_reset = snd_soc_ac97_warm_reset;
2261 ops->reset = snd_soc_ac97_reset;
2262
2263 snd_ac97_rst_cfg = cfg;
2264 return 0;
2265}
2266EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset);
2267
2268/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002269 * snd_soc_free_ac97_codec - free AC97 codec device
2270 * @codec: audio codec
2271 *
2272 * Frees AC97 codec device resources.
2273 */
2274void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2275{
2276 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002277#ifdef CONFIG_SND_SOC_AC97_BUS
Misael Lopez Cruz02c9c7b2014-03-21 16:27:28 +01002278 soc_unregister_ac97_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002279#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002280 kfree(codec->ac97->bus);
2281 kfree(codec->ac97);
2282 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002283 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002284 mutex_unlock(&codec->mutex);
2285}
2286EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2287
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002288/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002289 * snd_soc_cnew - create new control
2290 * @_template: control template
2291 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002292 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002293 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002294 *
2295 * Create a new mixer control from a template control.
2296 *
2297 * Returns 0 for success, else error.
2298 */
2299struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002300 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002301 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002302{
2303 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002304 struct snd_kcontrol *kcontrol;
2305 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002306
2307 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002308 template.index = 0;
2309
Mark Brownefb7ac32011-03-08 17:23:24 +00002310 if (!long_name)
2311 long_name = template.name;
2312
2313 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02002314 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00002315 if (!name)
2316 return NULL;
2317
Mark Brownefb7ac32011-03-08 17:23:24 +00002318 template.name = name;
2319 } else {
2320 template.name = long_name;
2321 }
2322
2323 kcontrol = snd_ctl_new1(&template, data);
2324
2325 kfree(name);
2326
2327 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002328}
2329EXPORT_SYMBOL_GPL(snd_soc_cnew);
2330
Liam Girdwood022658b2012-02-03 17:43:09 +00002331static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2332 const struct snd_kcontrol_new *controls, int num_controls,
2333 const char *prefix, void *data)
2334{
2335 int err, i;
2336
2337 for (i = 0; i < num_controls; i++) {
2338 const struct snd_kcontrol_new *control = &controls[i];
2339 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2340 control->name, prefix));
2341 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002342 dev_err(dev, "ASoC: Failed to add %s: %d\n",
2343 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00002344 return err;
2345 }
2346 }
2347
2348 return 0;
2349}
2350
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01002351struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2352 const char *name)
2353{
2354 struct snd_card *card = soc_card->snd_card;
2355 struct snd_kcontrol *kctl;
2356
2357 if (unlikely(!name))
2358 return NULL;
2359
2360 list_for_each_entry(kctl, &card->controls, list)
2361 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2362 return kctl;
2363 return NULL;
2364}
2365EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2366
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002367/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002368 * snd_soc_add_codec_controls - add an array of controls to a codec.
2369 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002370 * duplicating this code.
2371 *
2372 * @codec: codec to add controls to
2373 * @controls: array of controls to add
2374 * @num_controls: number of elements in the array
2375 *
2376 * Return 0 for success, else error.
2377 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002378int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Ian Molton3e8e1952009-01-09 00:23:21 +00002379 const struct snd_kcontrol_new *controls, int num_controls)
2380{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002381 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002382
Liam Girdwood022658b2012-02-03 17:43:09 +00002383 return snd_soc_add_controls(card, codec->dev, controls, num_controls,
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002384 codec->component.name_prefix, &codec->component);
Ian Molton3e8e1952009-01-09 00:23:21 +00002385}
Liam Girdwood022658b2012-02-03 17:43:09 +00002386EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002387
2388/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002389 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002390 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002391 *
2392 * @platform: platform to add controls to
2393 * @controls: array of controls to add
2394 * @num_controls: number of elements in the array
2395 *
2396 * Return 0 for success, else error.
2397 */
2398int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2399 const struct snd_kcontrol_new *controls, int num_controls)
2400{
2401 struct snd_card *card = platform->card->snd_card;
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002402
Liam Girdwood022658b2012-02-03 17:43:09 +00002403 return snd_soc_add_controls(card, platform->dev, controls, num_controls,
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002404 NULL, &platform->component);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002405}
2406EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2407
2408/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002409 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2410 * Convenience function to add a list of controls.
2411 *
2412 * @soc_card: SoC card to add controls to
2413 * @controls: array of controls to add
2414 * @num_controls: number of elements in the array
2415 *
2416 * Return 0 for success, else error.
2417 */
2418int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2419 const struct snd_kcontrol_new *controls, int num_controls)
2420{
2421 struct snd_card *card = soc_card->snd_card;
2422
2423 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2424 NULL, soc_card);
2425}
2426EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2427
2428/**
2429 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2430 * Convienience function to add a list of controls.
2431 *
2432 * @dai: DAI to add controls to
2433 * @controls: array of controls to add
2434 * @num_controls: number of elements in the array
2435 *
2436 * Return 0 for success, else error.
2437 */
2438int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2439 const struct snd_kcontrol_new *controls, int num_controls)
2440{
2441 struct snd_card *card = dai->card->snd_card;
2442
2443 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2444 NULL, dai);
2445}
2446EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2447
2448/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002449 * snd_soc_info_enum_double - enumerated double mixer info callback
2450 * @kcontrol: mixer control
2451 * @uinfo: control element information
2452 *
2453 * Callback to provide information about a double enumerated
2454 * mixer control.
2455 *
2456 * Returns 0 for success.
2457 */
2458int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2459 struct snd_ctl_elem_info *uinfo)
2460{
2461 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2462
2463 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2464 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Takashi Iwai9a8d38d2014-02-18 08:11:42 +01002465 uinfo->value.enumerated.items = e->items;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002466
Takashi Iwai9a8d38d2014-02-18 08:11:42 +01002467 if (uinfo->value.enumerated.item >= e->items)
2468 uinfo->value.enumerated.item = e->items - 1;
Takashi Iwaia19685c2013-10-28 14:21:46 +01002469 strlcpy(uinfo->value.enumerated.name,
2470 e->texts[uinfo->value.enumerated.item],
2471 sizeof(uinfo->value.enumerated.name));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002472 return 0;
2473}
2474EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2475
2476/**
2477 * snd_soc_get_enum_double - enumerated double mixer get callback
2478 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002479 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002480 *
2481 * Callback to get the value of a double enumerated mixer.
2482 *
2483 * Returns 0 for success.
2484 */
2485int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2486 struct snd_ctl_elem_value *ucontrol)
2487{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002488 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002489 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002490 unsigned int val, item;
2491 unsigned int reg_val;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002492 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002493
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002494 ret = snd_soc_component_read(component, e->reg, &reg_val);
2495 if (ret)
2496 return ret;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002497 val = (reg_val >> e->shift_l) & e->mask;
2498 item = snd_soc_enum_val_to_item(e, val);
2499 ucontrol->value.enumerated.item[0] = item;
2500 if (e->shift_l != e->shift_r) {
2501 val = (reg_val >> e->shift_l) & e->mask;
2502 item = snd_soc_enum_val_to_item(e, val);
2503 ucontrol->value.enumerated.item[1] = item;
2504 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002505
2506 return 0;
2507}
2508EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2509
2510/**
2511 * snd_soc_put_enum_double - enumerated double mixer put callback
2512 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002513 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002514 *
2515 * Callback to set the value of a double enumerated mixer.
2516 *
2517 * Returns 0 for success.
2518 */
2519int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2520 struct snd_ctl_elem_value *ucontrol)
2521{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002522 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002523 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002524 unsigned int *item = ucontrol->value.enumerated.item;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002525 unsigned int val;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002526 unsigned int mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002527
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002528 if (item[0] >= e->items)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002529 return -EINVAL;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002530 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002531 mask = e->mask << e->shift_l;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002532 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002533 if (item[1] >= e->items)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002534 return -EINVAL;
Lars-Peter Clausen29ae2fa2014-02-28 08:31:03 +01002535 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002536 mask |= e->mask << e->shift_r;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002537 }
2538
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002539 return snd_soc_component_update_bits(component, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002540}
2541EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2542
2543/**
Markus Pargmannf227b882014-01-16 16:02:10 +01002544 * snd_soc_read_signed - Read a codec register and interprete as signed value
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002545 * @component: component
Markus Pargmannf227b882014-01-16 16:02:10 +01002546 * @reg: Register to read
2547 * @mask: Mask to use after shifting the register value
2548 * @shift: Right shift of register value
2549 * @sign_bit: Bit that describes if a number is negative or not.
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002550 * @signed_val: Pointer to where the read value should be stored
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002551 *
Markus Pargmannf227b882014-01-16 16:02:10 +01002552 * This functions reads a codec register. The register value is shifted right
2553 * by 'shift' bits and masked with the given 'mask'. Afterwards it translates
2554 * the given registervalue into a signed integer if sign_bit is non-zero.
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002555 *
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002556 * Returns 0 on sucess, otherwise an error value
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002557 */
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002558static int snd_soc_read_signed(struct snd_soc_component *component,
2559 unsigned int reg, unsigned int mask, unsigned int shift,
2560 unsigned int sign_bit, int *signed_val)
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002561{
Markus Pargmannf227b882014-01-16 16:02:10 +01002562 int ret;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002563 unsigned int val;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002564
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002565 ret = snd_soc_component_read(component, reg, &val);
2566 if (ret < 0)
2567 return ret;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002568
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002569 val = (val >> shift) & mask;
2570
2571 if (!sign_bit) {
2572 *signed_val = val;
2573 return 0;
2574 }
Markus Pargmannf227b882014-01-16 16:02:10 +01002575
2576 /* non-negative number */
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002577 if (!(val & BIT(sign_bit))) {
2578 *signed_val = val;
2579 return 0;
2580 }
Markus Pargmannf227b882014-01-16 16:02:10 +01002581
2582 ret = val;
2583
2584 /*
2585 * The register most probably does not contain a full-sized int.
2586 * Instead we have an arbitrary number of bits in a signed
2587 * representation which has to be translated into a full-sized int.
2588 * This is done by filling up all bits above the sign-bit.
2589 */
2590 ret |= ~((int)(BIT(sign_bit) - 1));
2591
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002592 *signed_val = ret;
2593
2594 return 0;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002595}
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002596
2597/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002598 * snd_soc_info_volsw - single mixer info callback
2599 * @kcontrol: mixer control
2600 * @uinfo: control element information
2601 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002602 * Callback to provide information about a single mixer control, or a double
2603 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002604 *
2605 * Returns 0 for success.
2606 */
2607int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2608 struct snd_ctl_elem_info *uinfo)
2609{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002610 struct soc_mixer_control *mc =
2611 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002612 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002613
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002614 if (!mc->platform_max)
2615 mc->platform_max = mc->max;
2616 platform_max = mc->platform_max;
2617
2618 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002619 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2620 else
2621 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2622
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002623 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002624 uinfo->value.integer.min = 0;
Markus Pargmannf227b882014-01-16 16:02:10 +01002625 uinfo->value.integer.max = platform_max - mc->min;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002626 return 0;
2627}
2628EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2629
2630/**
2631 * snd_soc_get_volsw - single mixer get callback
2632 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002633 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002634 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002635 * Callback to get the value of a single mixer control, or a double mixer
2636 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002637 *
2638 * Returns 0 for success.
2639 */
2640int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2641 struct snd_ctl_elem_value *ucontrol)
2642{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002643 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl4eaa9812008-07-29 11:42:26 +01002644 struct soc_mixer_control *mc =
2645 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002646 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002647 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002648 unsigned int shift = mc->shift;
2649 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002650 int max = mc->max;
Markus Pargmannf227b882014-01-16 16:02:10 +01002651 int min = mc->min;
2652 int sign_bit = mc->sign_bit;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002653 unsigned int mask = (1 << fls(max)) - 1;
2654 unsigned int invert = mc->invert;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002655 int val;
2656 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002657
Markus Pargmannf227b882014-01-16 16:02:10 +01002658 if (sign_bit)
2659 mask = BIT(sign_bit + 1) - 1;
2660
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002661 ret = snd_soc_read_signed(component, reg, mask, shift, sign_bit, &val);
2662 if (ret)
2663 return ret;
2664
2665 ucontrol->value.integer.value[0] = val - min;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002666 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002667 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002668 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002669
2670 if (snd_soc_volsw_is_stereo(mc)) {
2671 if (reg == reg2)
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002672 ret = snd_soc_read_signed(component, reg, mask, rshift,
2673 sign_bit, &val);
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002674 else
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002675 ret = snd_soc_read_signed(component, reg2, mask, shift,
2676 sign_bit, &val);
2677 if (ret)
2678 return ret;
2679
2680 ucontrol->value.integer.value[1] = val - min;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002681 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002682 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002683 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002684 }
2685
2686 return 0;
2687}
2688EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2689
2690/**
2691 * snd_soc_put_volsw - single mixer put callback
2692 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002693 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002694 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002695 * Callback to set the value of a single mixer control, or a double mixer
2696 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002697 *
2698 * Returns 0 for success.
2699 */
2700int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2701 struct snd_ctl_elem_value *ucontrol)
2702{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002703 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl4eaa9812008-07-29 11:42:26 +01002704 struct soc_mixer_control *mc =
2705 (struct soc_mixer_control *)kcontrol->private_value;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002706 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002707 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002708 unsigned int shift = mc->shift;
2709 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002710 int max = mc->max;
Markus Pargmannf227b882014-01-16 16:02:10 +01002711 int min = mc->min;
2712 unsigned int sign_bit = mc->sign_bit;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002713 unsigned int mask = (1 << fls(max)) - 1;
2714 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002715 int err;
Nenghua Cao939d9f12014-03-03 19:08:23 +08002716 bool type_2r = false;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002717 unsigned int val2 = 0;
2718 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002719
Markus Pargmannf227b882014-01-16 16:02:10 +01002720 if (sign_bit)
2721 mask = BIT(sign_bit + 1) - 1;
2722
2723 val = ((ucontrol->value.integer.value[0] + min) & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002724 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002725 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002726 val_mask = mask << shift;
2727 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002728 if (snd_soc_volsw_is_stereo(mc)) {
Markus Pargmannf227b882014-01-16 16:02:10 +01002729 val2 = ((ucontrol->value.integer.value[1] + min) & mask);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002730 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002731 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002732 if (reg == reg2) {
2733 val_mask |= mask << rshift;
2734 val |= val2 << rshift;
2735 } else {
2736 val2 = val2 << shift;
Nenghua Cao939d9f12014-03-03 19:08:23 +08002737 type_2r = true;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002738 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002739 }
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002740 err = snd_soc_component_update_bits(component, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002741 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002742 return err;
2743
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002744 if (type_2r)
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002745 err = snd_soc_component_update_bits(component, reg2, val_mask,
2746 val2);
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002747
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002748 return err;
2749}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002750EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002751
Mark Browne13ac2e2008-05-28 17:58:05 +01002752/**
Brian Austin1d99f242012-03-30 10:43:55 -05002753 * snd_soc_get_volsw_sx - single mixer get callback
2754 * @kcontrol: mixer control
2755 * @ucontrol: control element information
2756 *
2757 * Callback to get the value of a single mixer control, or a double mixer
2758 * control that spans 2 registers.
2759 *
2760 * Returns 0 for success.
2761 */
2762int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2763 struct snd_ctl_elem_value *ucontrol)
2764{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002765 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Brian Austin1d99f242012-03-30 10:43:55 -05002766 struct soc_mixer_control *mc =
2767 (struct soc_mixer_control *)kcontrol->private_value;
Brian Austin1d99f242012-03-30 10:43:55 -05002768 unsigned int reg = mc->reg;
2769 unsigned int reg2 = mc->rreg;
2770 unsigned int shift = mc->shift;
2771 unsigned int rshift = mc->rshift;
2772 int max = mc->max;
2773 int min = mc->min;
2774 int mask = (1 << (fls(min + max) - 1)) - 1;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002775 unsigned int val;
2776 int ret;
Brian Austin1d99f242012-03-30 10:43:55 -05002777
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002778 ret = snd_soc_component_read(component, reg, &val);
2779 if (ret < 0)
2780 return ret;
Brian Austin1d99f242012-03-30 10:43:55 -05002781
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002782 ucontrol->value.integer.value[0] = ((val >> shift) - min) & mask;
2783
2784 if (snd_soc_volsw_is_stereo(mc)) {
2785 ret = snd_soc_component_read(component, reg2, &val);
2786 if (ret < 0)
2787 return ret;
2788
2789 val = ((val >> rshift) - min) & mask;
2790 ucontrol->value.integer.value[1] = val;
2791 }
Brian Austin1d99f242012-03-30 10:43:55 -05002792
2793 return 0;
2794}
2795EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2796
2797/**
2798 * snd_soc_put_volsw_sx - double mixer set callback
2799 * @kcontrol: mixer control
2800 * @uinfo: control element information
2801 *
2802 * Callback to set the value of a double mixer control that spans 2 registers.
2803 *
2804 * Returns 0 for success.
2805 */
2806int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2807 struct snd_ctl_elem_value *ucontrol)
2808{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002809 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Brian Austin1d99f242012-03-30 10:43:55 -05002810 struct soc_mixer_control *mc =
2811 (struct soc_mixer_control *)kcontrol->private_value;
2812
2813 unsigned int reg = mc->reg;
2814 unsigned int reg2 = mc->rreg;
2815 unsigned int shift = mc->shift;
2816 unsigned int rshift = mc->rshift;
2817 int max = mc->max;
2818 int min = mc->min;
2819 int mask = (1 << (fls(min + max) - 1)) - 1;
Brian Austin27f1d752012-04-03 11:33:50 -05002820 int err = 0;
Bard Liao1a390192014-04-08 11:18:10 +08002821 unsigned int val, val_mask, val2 = 0;
Brian Austin1d99f242012-03-30 10:43:55 -05002822
2823 val_mask = mask << shift;
2824 val = (ucontrol->value.integer.value[0] + min) & mask;
2825 val = val << shift;
2826
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002827 err = snd_soc_component_update_bits(component, reg, val_mask, val);
Mukund Navadad0558522012-11-09 11:53:40 +05302828 if (err < 0)
2829 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002830
2831 if (snd_soc_volsw_is_stereo(mc)) {
2832 val_mask = mask << rshift;
2833 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2834 val2 = val2 << rshift;
2835
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002836 err = snd_soc_component_update_bits(component, reg2, val_mask,
2837 val2);
Brian Austin1d99f242012-03-30 10:43:55 -05002838 }
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002839 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002840}
2841EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2842
2843/**
Mark Browne13ac2e2008-05-28 17:58:05 +01002844 * snd_soc_info_volsw_s8 - signed mixer info callback
2845 * @kcontrol: mixer control
2846 * @uinfo: control element information
2847 *
2848 * Callback to provide information about a signed mixer control.
2849 *
2850 * Returns 0 for success.
2851 */
2852int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2853 struct snd_ctl_elem_info *uinfo)
2854{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002855 struct soc_mixer_control *mc =
2856 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002857 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002858 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002859
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002860 if (!mc->platform_max)
2861 mc->platform_max = mc->max;
2862 platform_max = mc->platform_max;
2863
Mark Browne13ac2e2008-05-28 17:58:05 +01002864 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2865 uinfo->count = 2;
2866 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002867 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002868 return 0;
2869}
2870EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2871
2872/**
2873 * snd_soc_get_volsw_s8 - signed mixer get callback
2874 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002875 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002876 *
2877 * Callback to get the value of a signed mixer control.
2878 *
2879 * Returns 0 for success.
2880 */
2881int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2882 struct snd_ctl_elem_value *ucontrol)
2883{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002884 struct soc_mixer_control *mc =
2885 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002886 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002887 unsigned int reg = mc->reg;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002888 unsigned int val;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002889 int min = mc->min;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002890 int ret;
2891
2892 ret = snd_soc_component_read(component, reg, &val);
2893 if (ret)
2894 return ret;
Mark Browne13ac2e2008-05-28 17:58:05 +01002895
2896 ucontrol->value.integer.value[0] =
2897 ((signed char)(val & 0xff))-min;
2898 ucontrol->value.integer.value[1] =
2899 ((signed char)((val >> 8) & 0xff))-min;
2900 return 0;
2901}
2902EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2903
2904/**
2905 * snd_soc_put_volsw_sgn - signed mixer put callback
2906 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002907 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002908 *
2909 * Callback to set the value of a signed mixer control.
2910 *
2911 * Returns 0 for success.
2912 */
2913int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2914 struct snd_ctl_elem_value *ucontrol)
2915{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002916 struct soc_mixer_control *mc =
2917 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002918 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002919 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002920 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002921 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002922
2923 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2924 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2925
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002926 return snd_soc_component_update_bits(component, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002927}
2928EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2929
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002930/**
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002931 * snd_soc_info_volsw_range - single mixer info callback with range.
2932 * @kcontrol: mixer control
2933 * @uinfo: control element information
2934 *
2935 * Callback to provide information, within a range, about a single
2936 * mixer control.
2937 *
2938 * returns 0 for success.
2939 */
2940int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
2941 struct snd_ctl_elem_info *uinfo)
2942{
2943 struct soc_mixer_control *mc =
2944 (struct soc_mixer_control *)kcontrol->private_value;
2945 int platform_max;
2946 int min = mc->min;
2947
2948 if (!mc->platform_max)
2949 mc->platform_max = mc->max;
2950 platform_max = mc->platform_max;
2951
2952 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Mark Brown9bde4f02012-12-19 16:05:00 +00002953 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002954 uinfo->value.integer.min = 0;
2955 uinfo->value.integer.max = platform_max - min;
2956
2957 return 0;
2958}
2959EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
2960
2961/**
2962 * snd_soc_put_volsw_range - single mixer put value callback with range.
2963 * @kcontrol: mixer control
2964 * @ucontrol: control element information
2965 *
2966 * Callback to set the value, within a range, for a single mixer control.
2967 *
2968 * Returns 0 for success.
2969 */
2970int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
2971 struct snd_ctl_elem_value *ucontrol)
2972{
2973 struct soc_mixer_control *mc =
2974 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002975 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002976 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00002977 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002978 unsigned int shift = mc->shift;
2979 int min = mc->min;
2980 int max = mc->max;
2981 unsigned int mask = (1 << fls(max)) - 1;
2982 unsigned int invert = mc->invert;
2983 unsigned int val, val_mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00002984 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002985
2986 val = ((ucontrol->value.integer.value[0] + min) & mask);
2987 if (invert)
2988 val = max - val;
2989 val_mask = mask << shift;
2990 val = val << shift;
2991
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02002992 ret = snd_soc_component_update_bits(component, reg, val_mask, val);
Joonyoung Shim0eaa6cc2013-03-26 14:41:05 +09002993 if (ret < 0)
Mark Brown9bde4f02012-12-19 16:05:00 +00002994 return ret;
2995
2996 if (snd_soc_volsw_is_stereo(mc)) {
2997 val = ((ucontrol->value.integer.value[1] + min) & mask);
2998 if (invert)
2999 val = max - val;
3000 val_mask = mask << shift;
3001 val = val << shift;
3002
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003003 ret = snd_soc_component_update_bits(component, rreg, val_mask,
3004 val);
Mark Brown9bde4f02012-12-19 16:05:00 +00003005 }
3006
3007 return ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003008}
3009EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
3010
3011/**
3012 * snd_soc_get_volsw_range - single mixer get callback with range
3013 * @kcontrol: mixer control
3014 * @ucontrol: control element information
3015 *
3016 * Callback to get the value, within a range, of a single mixer control.
3017 *
3018 * Returns 0 for success.
3019 */
3020int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
3021 struct snd_ctl_elem_value *ucontrol)
3022{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003023 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003024 struct soc_mixer_control *mc =
3025 (struct soc_mixer_control *)kcontrol->private_value;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003026 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003027 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003028 unsigned int shift = mc->shift;
3029 int min = mc->min;
3030 int max = mc->max;
3031 unsigned int mask = (1 << fls(max)) - 1;
3032 unsigned int invert = mc->invert;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003033 unsigned int val;
3034 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003035
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003036 ret = snd_soc_component_read(component, reg, &val);
3037 if (ret)
3038 return ret;
3039
3040 ucontrol->value.integer.value[0] = (val >> shift) & mask;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003041 if (invert)
3042 ucontrol->value.integer.value[0] =
3043 max - ucontrol->value.integer.value[0];
3044 ucontrol->value.integer.value[0] =
3045 ucontrol->value.integer.value[0] - min;
3046
Mark Brown9bde4f02012-12-19 16:05:00 +00003047 if (snd_soc_volsw_is_stereo(mc)) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003048 ret = snd_soc_component_read(component, rreg, &val);
3049 if (ret)
3050 return ret;
3051
3052 ucontrol->value.integer.value[1] = (val >> shift) & mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00003053 if (invert)
3054 ucontrol->value.integer.value[1] =
3055 max - ucontrol->value.integer.value[1];
3056 ucontrol->value.integer.value[1] =
3057 ucontrol->value.integer.value[1] - min;
3058 }
3059
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003060 return 0;
3061}
3062EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
3063
3064/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003065 * snd_soc_limit_volume - Set new limit to an existing volume control.
3066 *
3067 * @codec: where to look for the control
3068 * @name: Name of the control
3069 * @max: new maximum limit
3070 *
3071 * Return 0 for success, else error.
3072 */
3073int snd_soc_limit_volume(struct snd_soc_codec *codec,
3074 const char *name, int max)
3075{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003076 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003077 struct snd_kcontrol *kctl;
3078 struct soc_mixer_control *mc;
3079 int found = 0;
3080 int ret = -EINVAL;
3081
3082 /* Sanity check for name and max */
3083 if (unlikely(!name || max <= 0))
3084 return -EINVAL;
3085
3086 list_for_each_entry(kctl, &card->controls, list) {
3087 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3088 found = 1;
3089 break;
3090 }
3091 }
3092 if (found) {
3093 mc = (struct soc_mixer_control *)kctl->private_value;
3094 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03003095 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003096 ret = 0;
3097 }
3098 }
3099 return ret;
3100}
3101EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3102
Mark Brown71d08512011-10-10 18:31:26 +01003103int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
3104 struct snd_ctl_elem_info *uinfo)
3105{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003106 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003107 struct soc_bytes *params = (void *)kcontrol->private_value;
3108
3109 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003110 uinfo->count = params->num_regs * component->val_bytes;
Mark Brown71d08512011-10-10 18:31:26 +01003111
3112 return 0;
3113}
3114EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
3115
3116int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
3117 struct snd_ctl_elem_value *ucontrol)
3118{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003119 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003120 struct soc_bytes *params = (void *)kcontrol->private_value;
Mark Brown71d08512011-10-10 18:31:26 +01003121 int ret;
3122
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003123 if (component->regmap)
3124 ret = regmap_raw_read(component->regmap, params->base,
Mark Brown71d08512011-10-10 18:31:26 +01003125 ucontrol->value.bytes.data,
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003126 params->num_regs * component->val_bytes);
Mark Brown71d08512011-10-10 18:31:26 +01003127 else
3128 ret = -EINVAL;
3129
Mark Brownf831b052012-02-17 16:20:33 -08003130 /* Hide any masked bytes to ensure consistent data reporting */
3131 if (ret == 0 && params->mask) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003132 switch (component->val_bytes) {
Mark Brownf831b052012-02-17 16:20:33 -08003133 case 1:
3134 ucontrol->value.bytes.data[0] &= ~params->mask;
3135 break;
3136 case 2:
3137 ((u16 *)(&ucontrol->value.bytes.data))[0]
Charles Keepax8f1ec932013-11-29 13:33:11 +00003138 &= cpu_to_be16(~params->mask);
Mark Brownf831b052012-02-17 16:20:33 -08003139 break;
3140 case 4:
3141 ((u32 *)(&ucontrol->value.bytes.data))[0]
Charles Keepax8f1ec932013-11-29 13:33:11 +00003142 &= cpu_to_be32(~params->mask);
Mark Brownf831b052012-02-17 16:20:33 -08003143 break;
3144 default:
3145 return -EINVAL;
3146 }
3147 }
3148
Mark Brown71d08512011-10-10 18:31:26 +01003149 return ret;
3150}
3151EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
3152
3153int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
3154 struct snd_ctl_elem_value *ucontrol)
3155{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003156 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Mark Brown71d08512011-10-10 18:31:26 +01003157 struct soc_bytes *params = (void *)kcontrol->private_value;
Mark Brownf831b052012-02-17 16:20:33 -08003158 int ret, len;
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003159 unsigned int val, mask;
Mark Brownf831b052012-02-17 16:20:33 -08003160 void *data;
Mark Brown71d08512011-10-10 18:31:26 +01003161
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003162 if (!component->regmap)
Mark Brownf831b052012-02-17 16:20:33 -08003163 return -EINVAL;
3164
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003165 len = params->num_regs * component->val_bytes;
Mark Brownf831b052012-02-17 16:20:33 -08003166
Mark Brownb5a8fe42013-01-20 21:42:22 +09003167 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
3168 if (!data)
3169 return -ENOMEM;
3170
Mark Brownf831b052012-02-17 16:20:33 -08003171 /*
3172 * If we've got a mask then we need to preserve the register
3173 * bits. We shouldn't modify the incoming data so take a
3174 * copy.
3175 */
3176 if (params->mask) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003177 ret = regmap_read(component->regmap, params->base, &val);
Mark Brownf831b052012-02-17 16:20:33 -08003178 if (ret != 0)
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003179 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003180
3181 val &= params->mask;
3182
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003183 switch (component->val_bytes) {
Mark Brownf831b052012-02-17 16:20:33 -08003184 case 1:
3185 ((u8 *)data)[0] &= ~params->mask;
3186 ((u8 *)data)[0] |= val;
3187 break;
3188 case 2:
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003189 mask = ~params->mask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003190 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003191 &mask, &mask);
3192 if (ret != 0)
3193 goto out;
3194
3195 ((u16 *)data)[0] &= mask;
3196
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003197 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003198 &val, &val);
3199 if (ret != 0)
3200 goto out;
3201
3202 ((u16 *)data)[0] |= val;
Mark Brownf831b052012-02-17 16:20:33 -08003203 break;
3204 case 4:
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003205 mask = ~params->mask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003206 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003207 &mask, &mask);
3208 if (ret != 0)
3209 goto out;
3210
3211 ((u32 *)data)[0] &= mask;
3212
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003213 ret = regmap_parse_val(component->regmap,
Nenghua Caoa1a564e2014-02-19 18:44:58 +08003214 &val, &val);
3215 if (ret != 0)
3216 goto out;
3217
3218 ((u32 *)data)[0] |= val;
Mark Brownf831b052012-02-17 16:20:33 -08003219 break;
3220 default:
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003221 ret = -EINVAL;
3222 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003223 }
3224 }
3225
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003226 ret = regmap_raw_write(component->regmap, params->base,
Mark Brownf831b052012-02-17 16:20:33 -08003227 data, len);
3228
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003229out:
Mark Brownb5a8fe42013-01-20 21:42:22 +09003230 kfree(data);
Mark Brown71d08512011-10-10 18:31:26 +01003231
3232 return ret;
3233}
3234EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
3235
Vinod Kould9881202014-05-02 10:58:11 +05303236int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
3237 struct snd_ctl_elem_info *ucontrol)
3238{
3239 struct soc_bytes_ext *params = (void *)kcontrol->private_value;
3240
3241 ucontrol->type = SNDRV_CTL_ELEM_TYPE_BYTES;
3242 ucontrol->count = params->max;
3243
3244 return 0;
3245}
3246EXPORT_SYMBOL_GPL(snd_soc_bytes_info_ext);
3247
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003248/**
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003249 * snd_soc_info_xr_sx - signed multi register info callback
3250 * @kcontrol: mreg control
3251 * @uinfo: control element information
3252 *
3253 * Callback to provide information of a control that can
3254 * span multiple codec registers which together
3255 * forms a single signed value in a MSB/LSB manner.
3256 *
3257 * Returns 0 for success.
3258 */
3259int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
3260 struct snd_ctl_elem_info *uinfo)
3261{
3262 struct soc_mreg_control *mc =
3263 (struct soc_mreg_control *)kcontrol->private_value;
3264 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3265 uinfo->count = 1;
3266 uinfo->value.integer.min = mc->min;
3267 uinfo->value.integer.max = mc->max;
3268
3269 return 0;
3270}
3271EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
3272
3273/**
3274 * snd_soc_get_xr_sx - signed multi register get callback
3275 * @kcontrol: mreg control
3276 * @ucontrol: control element information
3277 *
3278 * Callback to get the value of a control that can span
3279 * multiple codec registers which together forms a single
3280 * signed value in a MSB/LSB manner. The control supports
3281 * specifying total no of bits used to allow for bitfields
3282 * across the multiple codec registers.
3283 *
3284 * Returns 0 for success.
3285 */
3286int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
3287 struct snd_ctl_elem_value *ucontrol)
3288{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003289 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003290 struct soc_mreg_control *mc =
3291 (struct soc_mreg_control *)kcontrol->private_value;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003292 unsigned int regbase = mc->regbase;
3293 unsigned int regcount = mc->regcount;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003294 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003295 unsigned int regwmask = (1<<regwshift)-1;
3296 unsigned int invert = mc->invert;
3297 unsigned long mask = (1UL<<mc->nbits)-1;
3298 long min = mc->min;
3299 long max = mc->max;
3300 long val = 0;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003301 unsigned int regval;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003302 unsigned int i;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003303 int ret;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003304
3305 for (i = 0; i < regcount; i++) {
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003306 ret = snd_soc_component_read(component, regbase+i, &regval);
3307 if (ret)
3308 return ret;
3309 val |= (regval & regwmask) << (regwshift*(regcount-i-1));
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003310 }
3311 val &= mask;
3312 if (min < 0 && val > max)
3313 val |= ~mask;
3314 if (invert)
3315 val = max - val;
3316 ucontrol->value.integer.value[0] = val;
3317
3318 return 0;
3319}
3320EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
3321
3322/**
3323 * snd_soc_put_xr_sx - signed multi register get callback
3324 * @kcontrol: mreg control
3325 * @ucontrol: control element information
3326 *
3327 * Callback to set the value of a control that can span
3328 * multiple codec registers which together forms a single
3329 * signed value in a MSB/LSB manner. The control supports
3330 * specifying total no of bits used to allow for bitfields
3331 * across the multiple codec registers.
3332 *
3333 * Returns 0 for success.
3334 */
3335int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
3336 struct snd_ctl_elem_value *ucontrol)
3337{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003338 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003339 struct soc_mreg_control *mc =
3340 (struct soc_mreg_control *)kcontrol->private_value;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003341 unsigned int regbase = mc->regbase;
3342 unsigned int regcount = mc->regcount;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003343 unsigned int regwshift = component->val_bytes * BITS_PER_BYTE;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003344 unsigned int regwmask = (1<<regwshift)-1;
3345 unsigned int invert = mc->invert;
3346 unsigned long mask = (1UL<<mc->nbits)-1;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003347 long max = mc->max;
3348 long val = ucontrol->value.integer.value[0];
3349 unsigned int i, regval, regmask;
3350 int err;
3351
3352 if (invert)
3353 val = max - val;
3354 val &= mask;
3355 for (i = 0; i < regcount; i++) {
3356 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3357 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003358 err = snd_soc_component_update_bits(component, regbase+i,
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003359 regmask, regval);
3360 if (err < 0)
3361 return err;
3362 }
3363
3364 return 0;
3365}
3366EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3367
3368/**
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003369 * snd_soc_get_strobe - strobe get callback
3370 * @kcontrol: mixer control
3371 * @ucontrol: control element information
3372 *
3373 * Callback get the value of a strobe mixer control.
3374 *
3375 * Returns 0 for success.
3376 */
3377int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
3378 struct snd_ctl_elem_value *ucontrol)
3379{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003380 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003381 struct soc_mixer_control *mc =
3382 (struct soc_mixer_control *)kcontrol->private_value;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003383 unsigned int reg = mc->reg;
3384 unsigned int shift = mc->shift;
3385 unsigned int mask = 1 << shift;
3386 unsigned int invert = mc->invert != 0;
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003387 unsigned int val;
3388 int ret;
3389
3390 ret = snd_soc_component_read(component, reg, &val);
3391 if (ret)
3392 return ret;
3393
3394 val &= mask;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003395
3396 if (shift != 0 && val != 0)
3397 val = val >> shift;
3398 ucontrol->value.enumerated.item[0] = val ^ invert;
3399
3400 return 0;
3401}
3402EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3403
3404/**
3405 * snd_soc_put_strobe - strobe put callback
3406 * @kcontrol: mixer control
3407 * @ucontrol: control element information
3408 *
3409 * Callback strobe a register bit to high then low (or the inverse)
3410 * in one pass of a single mixer enum control.
3411 *
3412 * Returns 1 for success.
3413 */
3414int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3415 struct snd_ctl_elem_value *ucontrol)
3416{
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003417 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003418 struct soc_mixer_control *mc =
3419 (struct soc_mixer_control *)kcontrol->private_value;
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003420 unsigned int reg = mc->reg;
3421 unsigned int shift = mc->shift;
3422 unsigned int mask = 1 << shift;
3423 unsigned int invert = mc->invert != 0;
3424 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3425 unsigned int val1 = (strobe ^ invert) ? mask : 0;
3426 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3427 int err;
3428
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003429 err = snd_soc_component_update_bits(component, reg, mask, val1);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003430 if (err < 0)
3431 return err;
3432
Lars-Peter Clausen907fe362014-04-22 13:23:14 +02003433 return snd_soc_component_update_bits(component, reg, mask, val2);
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003434}
3435EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3436
3437/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003438 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3439 * @dai: DAI
3440 * @clk_id: DAI specific clock ID
3441 * @freq: new clock frequency in Hz
3442 * @dir: new clock direction - input/output.
3443 *
3444 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3445 */
3446int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3447 unsigned int freq, int dir)
3448{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003449 if (dai->driver && dai->driver->ops->set_sysclk)
3450 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003451 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003452 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00003453 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003454 else
Mark Brown1104a9c2014-01-15 19:04:19 +00003455 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003456}
3457EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3458
3459/**
Mark Brownec4ee522011-03-07 20:58:11 +00003460 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3461 * @codec: CODEC
3462 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01003463 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00003464 * @freq: new clock frequency in Hz
3465 * @dir: new clock direction - input/output.
3466 *
3467 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3468 */
3469int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01003470 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00003471{
3472 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003473 return codec->driver->set_sysclk(codec, clk_id, source,
3474 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003475 else
Mark Brown1104a9c2014-01-15 19:04:19 +00003476 return -ENOTSUPP;
Mark Brownec4ee522011-03-07 20:58:11 +00003477}
3478EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3479
3480/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003481 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3482 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003483 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003484 * @div: new clock divisor.
3485 *
3486 * Configures the clock dividers. This is used to derive the best DAI bit and
3487 * frame clocks from the system or master clock. It's best to set the DAI bit
3488 * and frame clocks as low as possible to save system power.
3489 */
3490int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3491 int div_id, int div)
3492{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003493 if (dai->driver && dai->driver->ops->set_clkdiv)
3494 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003495 else
3496 return -EINVAL;
3497}
3498EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3499
3500/**
3501 * snd_soc_dai_set_pll - configure DAI PLL.
3502 * @dai: DAI
3503 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003504 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003505 * @freq_in: PLL input clock frequency in Hz
3506 * @freq_out: requested PLL output clock frequency in Hz
3507 *
3508 * Configures and enables PLL to generate output clock based on input clock.
3509 */
Mark Brown85488032009-09-05 18:52:16 +01003510int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3511 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003512{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003513 if (dai->driver && dai->driver->ops->set_pll)
3514 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003515 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003516 else if (dai->codec && dai->codec->driver->set_pll)
3517 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3518 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003519 else
3520 return -EINVAL;
3521}
3522EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3523
Mark Brownec4ee522011-03-07 20:58:11 +00003524/*
3525 * snd_soc_codec_set_pll - configure codec PLL.
3526 * @codec: CODEC
3527 * @pll_id: DAI specific PLL ID
3528 * @source: DAI specific source for the PLL
3529 * @freq_in: PLL input clock frequency in Hz
3530 * @freq_out: requested PLL output clock frequency in Hz
3531 *
3532 * Configures and enables PLL to generate output clock based on input clock.
3533 */
3534int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3535 unsigned int freq_in, unsigned int freq_out)
3536{
3537 if (codec->driver->set_pll)
3538 return codec->driver->set_pll(codec, pll_id, source,
3539 freq_in, freq_out);
3540 else
3541 return -EINVAL;
3542}
3543EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3544
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003545/**
Liam Girdwoode54cf762013-09-16 13:01:46 +01003546 * snd_soc_dai_set_bclk_ratio - configure BCLK to sample rate ratio.
3547 * @dai: DAI
3548 * @ratio Ratio of BCLK to Sample rate.
3549 *
3550 * Configures the DAI for a preset BCLK to sample rate ratio.
3551 */
3552int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio)
3553{
3554 if (dai->driver && dai->driver->ops->set_bclk_ratio)
3555 return dai->driver->ops->set_bclk_ratio(dai, ratio);
3556 else
3557 return -EINVAL;
3558}
3559EXPORT_SYMBOL_GPL(snd_soc_dai_set_bclk_ratio);
3560
3561/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003562 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3563 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003564 * @fmt: SND_SOC_DAIFMT_ format value.
3565 *
3566 * Configures the DAI hardware format and clocking.
3567 */
3568int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3569{
Shawn Guo5e4ba562012-03-09 00:59:40 +08003570 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003571 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08003572 if (dai->driver->ops->set_fmt == NULL)
3573 return -ENOTSUPP;
3574 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003575}
3576EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3577
3578/**
Xiubo Lie5c21512014-03-21 14:17:12 +08003579 * snd_soc_xlate_tdm_slot - generate tx/rx slot mask.
Xiubo Li89c67852014-02-14 09:34:35 +08003580 * @slots: Number of slots in use.
3581 * @tx_mask: bitmask representing active TX slots.
3582 * @rx_mask: bitmask representing active RX slots.
3583 *
3584 * Generates the TDM tx and rx slot default masks for DAI.
3585 */
Xiubo Lie5c21512014-03-21 14:17:12 +08003586static int snd_soc_xlate_tdm_slot_mask(unsigned int slots,
Xiubo Li89c67852014-02-14 09:34:35 +08003587 unsigned int *tx_mask,
3588 unsigned int *rx_mask)
3589{
3590 if (*tx_mask || *rx_mask)
3591 return 0;
3592
3593 if (!slots)
3594 return -EINVAL;
3595
3596 *tx_mask = (1 << slots) - 1;
3597 *rx_mask = (1 << slots) - 1;
3598
3599 return 0;
3600}
3601
3602/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003603 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3604 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003605 * @tx_mask: bitmask representing active TX slots.
3606 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003607 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003608 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003609 *
3610 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3611 * specific.
3612 */
3613int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003614 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003615{
Xiubo Lie5c21512014-03-21 14:17:12 +08003616 if (dai->driver && dai->driver->ops->xlate_tdm_slot_mask)
3617 dai->driver->ops->xlate_tdm_slot_mask(slots,
Xiubo Li89c67852014-02-14 09:34:35 +08003618 &tx_mask, &rx_mask);
3619 else
Xiubo Lie5c21512014-03-21 14:17:12 +08003620 snd_soc_xlate_tdm_slot_mask(slots, &tx_mask, &rx_mask);
Xiubo Li89c67852014-02-14 09:34:35 +08003621
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003622 if (dai->driver && dai->driver->ops->set_tdm_slot)
3623 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003624 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003625 else
Xiubo Lib2cbb6e2014-01-23 13:02:47 +08003626 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003627}
3628EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3629
3630/**
Barry Song472df3c2009-09-12 01:16:29 +08003631 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3632 * @dai: DAI
3633 * @tx_num: how many TX channels
3634 * @tx_slot: pointer to an array which imply the TX slot number channel
3635 * 0~num-1 uses
3636 * @rx_num: how many RX channels
3637 * @rx_slot: pointer to an array which imply the RX slot number channel
3638 * 0~num-1 uses
3639 *
3640 * configure the relationship between channel number and TDM slot number.
3641 */
3642int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3643 unsigned int tx_num, unsigned int *tx_slot,
3644 unsigned int rx_num, unsigned int *rx_slot)
3645{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003646 if (dai->driver && dai->driver->ops->set_channel_map)
3647 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003648 rx_num, rx_slot);
3649 else
3650 return -EINVAL;
3651}
3652EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3653
3654/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003655 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3656 * @dai: DAI
3657 * @tristate: tristate enable
3658 *
3659 * Tristates the DAI so that others can use it.
3660 */
3661int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3662{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003663 if (dai->driver && dai->driver->ops->set_tristate)
3664 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003665 else
3666 return -EINVAL;
3667}
3668EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3669
3670/**
3671 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3672 * @dai: DAI
3673 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00003674 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003675 *
3676 * Mutes the DAI DAC.
3677 */
Mark Brownda183962013-02-06 15:44:07 +00003678int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
3679 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003680{
Mark Brownda183962013-02-06 15:44:07 +00003681 if (!dai->driver)
3682 return -ENOTSUPP;
3683
3684 if (dai->driver->ops->mute_stream)
3685 return dai->driver->ops->mute_stream(dai, mute, direction);
3686 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
3687 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003688 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003689 else
Mark Brown04570c62012-04-13 19:16:03 +01003690 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003691}
3692EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3693
Mark Brownc5af3a22008-11-28 13:29:45 +00003694/**
3695 * snd_soc_register_card - Register a card with the ASoC core
3696 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003697 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003698 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003699 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303700int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003701{
Mark Brownb19e6e72012-03-14 21:18:39 +00003702 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003703
Mark Brownc5af3a22008-11-28 13:29:45 +00003704 if (!card->name || !card->dev)
3705 return -EINVAL;
3706
Stephen Warren5a504962011-12-21 10:40:59 -07003707 for (i = 0; i < card->num_links; i++) {
3708 struct snd_soc_dai_link *link = &card->dai_link[i];
3709
3710 /*
3711 * Codec must be specified by 1 of name or OF node,
3712 * not both or neither.
3713 */
3714 if (!!link->codec_name == !!link->codec_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003715 dev_err(card->dev,
3716 "ASoC: Neither/both codec name/of_node are set for %s\n",
3717 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003718 return -EINVAL;
3719 }
Stephen Warrenbc926572012-05-25 18:22:11 -06003720 /* Codec DAI name must be specified */
3721 if (!link->codec_dai_name) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003722 dev_err(card->dev,
3723 "ASoC: codec_dai_name not set for %s\n",
3724 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003725 return -EINVAL;
3726 }
Stephen Warren5a504962011-12-21 10:40:59 -07003727
3728 /*
3729 * Platform may be specified by either name or OF node, but
3730 * can be left unspecified, and a dummy platform will be used.
3731 */
3732 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003733 dev_err(card->dev,
3734 "ASoC: Both platform name/of_node are set for %s\n",
3735 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003736 return -EINVAL;
3737 }
3738
3739 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06003740 * CPU device may be specified by either name or OF node, but
3741 * can be left unspecified, and will be matched based on DAI
3742 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07003743 */
Stephen Warrenbc926572012-05-25 18:22:11 -06003744 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003745 dev_err(card->dev,
3746 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3747 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003748 return -EINVAL;
3749 }
3750 /*
3751 * At least one of CPU DAI name or CPU device name/node must be
3752 * specified
3753 */
3754 if (!link->cpu_dai_name &&
3755 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003756 dev_err(card->dev,
3757 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3758 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003759 return -EINVAL;
3760 }
3761 }
3762
Mark Browned77cc12011-05-03 18:25:34 +01003763 dev_set_drvdata(card->dev, card);
3764
Stephen Warren111c6412011-01-28 14:26:35 -07003765 snd_soc_initialize_card_lists(card);
3766
Vinod Koul150dd2f2011-01-13 22:48:32 +05303767 soc_init_card_debugfs(card);
3768
Mark Brown181a6892012-03-14 20:18:49 +00003769 card->rtd = devm_kzalloc(card->dev,
3770 sizeof(struct snd_soc_pcm_runtime) *
3771 (card->num_links + card->num_aux_devs),
3772 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003773 if (card->rtd == NULL)
3774 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01003775 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003776 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003777
3778 for (i = 0; i < card->num_links; i++)
3779 card->rtd[i].dai_link = &card->dai_link[i];
3780
Mark Browndb432b42011-10-03 21:06:40 +01003781 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00003782 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003783 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003784 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003785
Mark Brownb19e6e72012-03-14 21:18:39 +00003786 ret = snd_soc_instantiate_card(card);
3787 if (ret != 0)
3788 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003789
Nicolin Chen988e8cc2013-11-04 14:57:31 +08003790 /* deactivate pins to sleep state */
3791 for (i = 0; i < card->num_rtd; i++) {
3792 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
3793 struct snd_soc_dai *codec_dai = card->rtd[i].codec_dai;
3794 if (!codec_dai->active)
3795 pinctrl_pm_select_sleep_state(codec_dai->dev);
3796 if (!cpu_dai->active)
3797 pinctrl_pm_select_sleep_state(cpu_dai->dev);
3798 }
3799
Mark Brownb19e6e72012-03-14 21:18:39 +00003800 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00003801}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303802EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003803
3804/**
3805 * snd_soc_unregister_card - Unregister a card with the ASoC core
3806 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003807 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003808 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003809 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303810int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003811{
Vinod Koulb0e26482011-01-13 22:48:02 +05303812 if (card->instantiated)
3813 soc_cleanup_card_resources(card);
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003814 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00003815
3816 return 0;
3817}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303818EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003819
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003820/*
3821 * Simplify DAI link configuration by removing ".-1" from device names
3822 * and sanitizing names.
3823 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003824static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003825{
3826 char *found, name[NAME_SIZE];
3827 int id1, id2;
3828
3829 if (dev_name(dev) == NULL)
3830 return NULL;
3831
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003832 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003833
3834 /* are we a "%s.%d" name (platform and SPI components) */
3835 found = strstr(name, dev->driver->name);
3836 if (found) {
3837 /* get ID */
3838 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3839
3840 /* discard ID from name if ID == -1 */
3841 if (*id == -1)
3842 found[strlen(dev->driver->name)] = '\0';
3843 }
3844
3845 } else {
3846 /* I2C component devices are named "bus-addr" */
3847 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3848 char tmp[NAME_SIZE];
3849
3850 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003851 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003852
3853 /* sanitize component name for DAI link creation */
3854 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003855 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003856 } else
3857 *id = 0;
3858 }
3859
3860 return kstrdup(name, GFP_KERNEL);
3861}
3862
3863/*
3864 * Simplify DAI link naming for single devices with multiple DAIs by removing
3865 * any ".-1" and using the DAI name (instead of device name).
3866 */
3867static inline char *fmt_multiple_name(struct device *dev,
3868 struct snd_soc_dai_driver *dai_drv)
3869{
3870 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003871 dev_err(dev,
3872 "ASoC: error - multiple DAI %s registered with no name\n",
3873 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003874 return NULL;
3875 }
3876
3877 return kstrdup(dai_drv->name, GFP_KERNEL);
3878}
3879
Mark Brown91151712008-11-30 23:31:24 +00003880/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003881 * snd_soc_unregister_dai - Unregister DAIs from the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00003882 *
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003883 * @component: The component for which the DAIs should be unregistered
Mark Brown91151712008-11-30 23:31:24 +00003884 */
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003885static void snd_soc_unregister_dais(struct snd_soc_component *component)
Mark Brown91151712008-11-30 23:31:24 +00003886{
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01003887 struct snd_soc_dai *dai, *_dai;
Mark Brown91151712008-11-30 23:31:24 +00003888
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01003889 list_for_each_entry_safe(dai, _dai, &component->dai_list, list) {
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003890 dev_dbg(component->dev, "ASoC: Unregistered DAI '%s'\n",
3891 dai->name);
Lars-Peter Clausen5c1d5f02014-03-12 08:34:39 +01003892 list_del(&dai->list);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003893 kfree(dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003894 kfree(dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003895 }
Mark Brown91151712008-11-30 23:31:24 +00003896}
Mark Brown91151712008-11-30 23:31:24 +00003897
3898/**
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003899 * snd_soc_register_dais - Register a DAI with the ASoC core
Mark Brown91151712008-11-30 23:31:24 +00003900 *
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003901 * @component: The component the DAIs are registered for
3902 * @dai_drv: DAI driver to use for the DAIs
Mark Brownac11a2b2009-01-01 12:18:17 +00003903 * @count: Number of DAIs
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003904 * @legacy_dai_naming: Use the legacy naming scheme and let the DAI inherit the
3905 * parent's name.
Mark Brown91151712008-11-30 23:31:24 +00003906 */
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003907static int snd_soc_register_dais(struct snd_soc_component *component,
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003908 struct snd_soc_dai_driver *dai_drv, size_t count,
3909 bool legacy_dai_naming)
Mark Brown91151712008-11-30 23:31:24 +00003910{
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003911 struct device *dev = component->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003912 struct snd_soc_dai *dai;
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003913 unsigned int i;
3914 int ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003915
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003916 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003917
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003918 component->dai_drv = dai_drv;
3919 component->num_dai = count;
3920
Mark Brown91151712008-11-30 23:31:24 +00003921 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003922
3923 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003924 if (dai == NULL) {
3925 ret = -ENOMEM;
3926 goto err;
3927 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003928
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003929 /*
3930 * Back in the old days when we still had component-less DAIs,
3931 * instead of having a static name, component-less DAIs would
3932 * inherit the name of the parent device so it is possible to
3933 * register multiple instances of the DAI. We still need to keep
3934 * the same naming style even though those DAIs are not
3935 * component-less anymore.
3936 */
3937 if (count == 1 && legacy_dai_naming) {
3938 dai->name = fmt_single_name(dev, &dai->id);
3939 } else {
3940 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3941 if (dai_drv[i].id)
3942 dai->id = dai_drv[i].id;
3943 else
3944 dai->id = i;
3945 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003946 if (dai->name == NULL) {
3947 kfree(dai);
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003948 ret = -ENOMEM;
Mark Brown91151712008-11-30 23:31:24 +00003949 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003950 }
3951
Lars-Peter Clausen6106d122014-03-05 13:17:46 +01003952 dai->component = component;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003953 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003954 dai->driver = &dai_drv[i];
3955 if (!dai->driver->ops)
3956 dai->driver->ops = &null_dai_ops;
3957
Lars-Peter Clausen1438c2f2014-03-09 17:41:47 +01003958 list_add(&dai->list, &component->dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003959
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003960 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003961 }
3962
3963 return 0;
3964
3965err:
Lars-Peter Clausen32c9ba52014-03-09 17:41:45 +01003966 snd_soc_unregister_dais(component);
Mark Brown91151712008-11-30 23:31:24 +00003967
3968 return ret;
3969}
Mark Brown91151712008-11-30 23:31:24 +00003970
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02003971static void snd_soc_component_seq_notifier(struct snd_soc_dapm_context *dapm,
3972 enum snd_soc_dapm_type type, int subseq)
3973{
3974 struct snd_soc_component *component = dapm->component;
3975
3976 component->driver->seq_notifier(component, type, subseq);
3977}
3978
3979static int snd_soc_component_stream_event(struct snd_soc_dapm_context *dapm,
3980 int event)
3981{
3982 struct snd_soc_component *component = dapm->component;
3983
3984 return component->driver->stream_event(component, event);
3985}
3986
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003987static int snd_soc_component_initialize(struct snd_soc_component *component,
3988 const struct snd_soc_component_driver *driver, struct device *dev)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003989{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003990 struct snd_soc_dapm_context *dapm;
3991
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003992 component->name = fmt_single_name(dev, &component->id);
3993 if (!component->name) {
3994 dev_err(dev, "ASoC: Failed to allocate name\n");
Kuninori Morimotod191bd82013-09-04 19:39:03 -07003995 return -ENOMEM;
3996 }
3997
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02003998 component->dev = dev;
3999 component->driver = driver;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004000
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004001 if (!component->dapm_ptr)
4002 component->dapm_ptr = &component->dapm;
4003
4004 dapm = component->dapm_ptr;
4005 dapm->dev = dev;
4006 dapm->component = component;
4007 dapm->bias_level = SND_SOC_BIAS_OFF;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004008 if (driver->seq_notifier)
4009 dapm->seq_notifier = snd_soc_component_seq_notifier;
4010 if (driver->stream_event)
4011 dapm->stream_event = snd_soc_component_stream_event;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004012
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004013 INIT_LIST_HEAD(&component->dai_list);
4014 mutex_init(&component->io_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004015
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004016 return 0;
4017}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004018
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004019static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
4020{
4021 list_add(&component->list, &component_list);
4022}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004023
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004024static void snd_soc_component_add(struct snd_soc_component *component)
4025{
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004026 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004027 snd_soc_component_add_unlocked(component);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004028 mutex_unlock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004029}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004030
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004031static void snd_soc_component_cleanup(struct snd_soc_component *component)
4032{
4033 snd_soc_unregister_dais(component);
4034 kfree(component->name);
4035}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004036
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004037static void snd_soc_component_del_unlocked(struct snd_soc_component *component)
4038{
4039 list_del(&component->list);
4040}
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004041
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004042static void snd_soc_component_del(struct snd_soc_component *component)
4043{
4044 mutex_lock(&client_mutex);
4045 snd_soc_component_del_unlocked(component);
4046 mutex_unlock(&client_mutex);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004047}
4048
4049int snd_soc_register_component(struct device *dev,
4050 const struct snd_soc_component_driver *cmpnt_drv,
4051 struct snd_soc_dai_driver *dai_drv,
4052 int num_dai)
4053{
4054 struct snd_soc_component *cmpnt;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004055 int ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004056
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004057 cmpnt = kzalloc(sizeof(*cmpnt), GFP_KERNEL);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004058 if (!cmpnt) {
4059 dev_err(dev, "ASoC: Failed to allocate memory\n");
4060 return -ENOMEM;
4061 }
4062
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004063 ret = snd_soc_component_initialize(cmpnt, cmpnt_drv, dev);
4064 if (ret)
4065 goto err_free;
4066
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004067 cmpnt->ignore_pmdown_time = true;
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01004068 cmpnt->registered_as_component = true;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004069
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004070 ret = snd_soc_register_dais(cmpnt, dai_drv, num_dai, true);
4071 if (ret < 0) {
4072 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4073 goto err_cleanup;
4074 }
4075
4076 snd_soc_component_add(cmpnt);
4077
4078 return 0;
4079
4080err_cleanup:
4081 snd_soc_component_cleanup(cmpnt);
4082err_free:
4083 kfree(cmpnt);
4084 return ret;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004085}
4086EXPORT_SYMBOL_GPL(snd_soc_register_component);
4087
4088/**
4089 * snd_soc_unregister_component - Unregister a component from the ASoC core
4090 *
4091 */
4092void snd_soc_unregister_component(struct device *dev)
4093{
4094 struct snd_soc_component *cmpnt;
4095
4096 list_for_each_entry(cmpnt, &component_list, list) {
Lars-Peter Clausen98e639f2014-03-18 09:02:11 +01004097 if (dev == cmpnt->dev && cmpnt->registered_as_component)
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004098 goto found;
4099 }
4100 return;
4101
4102found:
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004103 snd_soc_component_del(cmpnt);
4104 snd_soc_component_cleanup(cmpnt);
4105 kfree(cmpnt);
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004106}
4107EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
4108
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004109static int snd_soc_platform_drv_write(struct snd_soc_component *component,
4110 unsigned int reg, unsigned int val)
4111{
4112 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
4113
4114 return platform->driver->write(platform, reg, val);
4115}
4116
4117static int snd_soc_platform_drv_read(struct snd_soc_component *component,
4118 unsigned int reg, unsigned int *val)
4119{
4120 struct snd_soc_platform *platform = snd_soc_component_to_platform(component);
4121
4122 *val = platform->driver->read(platform, reg);
4123
4124 return 0;
4125}
4126
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004127/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004128 * snd_soc_add_platform - Add a platform to the ASoC core
4129 * @dev: The parent device for the platform
4130 * @platform: The platform to add
4131 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00004132 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004133int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01004134 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004135{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01004136 int ret;
4137
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004138 ret = snd_soc_component_initialize(&platform->component,
4139 &platform_drv->component_driver, dev);
4140 if (ret)
4141 return ret;
4142
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004143 platform->dev = dev;
4144 platform->driver = platform_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004145 if (platform_drv->write)
4146 platform->component.write = snd_soc_platform_drv_write;
4147 if (platform_drv->read)
4148 platform->component.read = snd_soc_platform_drv_read;
Mark Brown12a48a8c2008-12-03 19:40:30 +00004149
4150 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004151 snd_soc_component_add_unlocked(&platform->component);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004152 list_add(&platform->list, &platform_list);
4153 mutex_unlock(&client_mutex);
4154
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004155 dev_dbg(dev, "ASoC: Registered platform '%s'\n",
4156 platform->component.name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004157
4158 return 0;
4159}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004160EXPORT_SYMBOL_GPL(snd_soc_add_platform);
4161
4162/**
4163 * snd_soc_register_platform - Register a platform with the ASoC core
4164 *
4165 * @platform: platform to register
4166 */
4167int snd_soc_register_platform(struct device *dev,
4168 const struct snd_soc_platform_driver *platform_drv)
4169{
4170 struct snd_soc_platform *platform;
4171 int ret;
4172
4173 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
4174
4175 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
4176 if (platform == NULL)
4177 return -ENOMEM;
4178
4179 ret = snd_soc_add_platform(dev, platform, platform_drv);
4180 if (ret)
4181 kfree(platform);
4182
4183 return ret;
4184}
Mark Brown12a48a8c2008-12-03 19:40:30 +00004185EXPORT_SYMBOL_GPL(snd_soc_register_platform);
4186
4187/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004188 * snd_soc_remove_platform - Remove a platform from the ASoC core
4189 * @platform: the platform to remove
4190 */
4191void snd_soc_remove_platform(struct snd_soc_platform *platform)
4192{
Lars-Peter Clausenb37f1d12014-03-18 09:02:12 +01004193
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004194 mutex_lock(&client_mutex);
4195 list_del(&platform->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004196 snd_soc_component_del_unlocked(&platform->component);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004197 mutex_unlock(&client_mutex);
4198
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004199 snd_soc_component_cleanup(&platform->component);
4200
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004201 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004202 platform->component.name);
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004203}
4204EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
4205
4206struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
4207{
4208 struct snd_soc_platform *platform;
4209
4210 list_for_each_entry(platform, &platform_list, list) {
4211 if (dev == platform->dev)
4212 return platform;
4213 }
4214
4215 return NULL;
4216}
4217EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
4218
4219/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00004220 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4221 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004222 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00004223 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004224void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004225{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004226 struct snd_soc_platform *platform;
4227
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004228 platform = snd_soc_lookup_platform(dev);
4229 if (!platform)
4230 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004231
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004232 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004233 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004234}
4235EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
4236
Mark Brown151ab222009-05-09 16:22:58 +01004237static u64 codec_format_map[] = {
4238 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
4239 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
4240 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
4241 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
4242 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
4243 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
4244 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4245 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4246 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
4247 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
4248 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
4249 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
4250 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
4251 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
4252 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4253 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
4254};
4255
4256/* Fix up the DAI formats for endianness: codecs don't actually see
4257 * the endianness of the data but we're using the CPU format
4258 * definitions which do need to include endianness so we ensure that
4259 * codec DAIs always have both big and little endian variants set.
4260 */
4261static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
4262{
4263 int i;
4264
4265 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
4266 if (stream->formats & codec_format_map[i])
4267 stream->formats |= codec_format_map[i];
4268}
4269
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004270static int snd_soc_codec_drv_write(struct snd_soc_component *component,
4271 unsigned int reg, unsigned int val)
4272{
4273 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
4274
4275 return codec->driver->write(codec, reg, val);
4276}
4277
4278static int snd_soc_codec_drv_read(struct snd_soc_component *component,
4279 unsigned int reg, unsigned int *val)
4280{
4281 struct snd_soc_codec *codec = snd_soc_component_to_codec(component);
4282
4283 *val = codec->driver->read(codec, reg);
4284
4285 return 0;
4286}
4287
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02004288static int snd_soc_codec_set_bias_level(struct snd_soc_dapm_context *dapm,
4289 enum snd_soc_bias_level level)
4290{
4291 struct snd_soc_codec *codec = snd_soc_dapm_to_codec(dapm);
4292
4293 return codec->driver->set_bias_level(codec, level);
4294}
4295
Mark Brown0d0cf002008-12-10 14:32:45 +00004296/**
4297 * snd_soc_register_codec - Register a codec with the ASoC core
4298 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004299 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00004300 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004301int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00004302 const struct snd_soc_codec_driver *codec_drv,
4303 struct snd_soc_dai_driver *dai_drv,
4304 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00004305{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004306 struct snd_soc_codec *codec;
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004307 struct snd_soc_dai *dai;
Xiubo Lia39f75f2014-03-26 13:40:23 +08004308 struct regmap *regmap;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004309 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01004310
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004311 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00004312
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004313 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
4314 if (codec == NULL)
4315 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00004316
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02004317 codec->component.dapm_ptr = &codec->dapm;
4318
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004319 ret = snd_soc_component_initialize(&codec->component,
4320 &codec_drv->component_driver, dev);
4321 if (ret)
4322 goto err_free;
4323
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004324 if (codec_drv->write)
4325 codec->component.write = snd_soc_codec_drv_write;
4326 if (codec_drv->read)
4327 codec->component.read = snd_soc_codec_drv_read;
Lars-Peter Clausen3d594002014-03-05 13:17:48 +01004328 codec->component.ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004329 codec->dapm.codec = codec;
Lars-Peter Clausen14e8bde2014-06-16 18:13:08 +02004330 if (codec_drv->seq_notifier)
4331 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Lars-Peter Clausen68f831c2014-06-16 18:13:05 +02004332 if (codec_drv->set_bias_level)
4333 codec->dapm.set_bias_level = snd_soc_codec_set_bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004334 codec->dev = dev;
4335 codec->driver = codec_drv;
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004336 codec->component.val_bytes = codec_drv->reg_word_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004337 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004338
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004339 if (!codec->component.write) {
Xiubo Lia39f75f2014-03-26 13:40:23 +08004340 if (codec_drv->get_regmap)
4341 regmap = codec_drv->get_regmap(dev);
4342 else
4343 regmap = dev_get_regmap(dev, NULL);
4344
4345 if (regmap) {
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +02004346 ret = snd_soc_component_init_io(&codec->component,
4347 regmap);
4348 if (ret) {
Xiubo Lia39f75f2014-03-26 13:40:23 +08004349 dev_err(codec->dev,
4350 "Failed to set cache I/O:%d\n",
4351 ret);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004352 goto err_cleanup;
Xiubo Lia39f75f2014-03-26 13:40:23 +08004353 }
4354 }
4355 }
4356
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004357 for (i = 0; i < num_dai; i++) {
4358 fixup_codec_formats(&dai_drv[i].playback);
4359 fixup_codec_formats(&dai_drv[i].capture);
4360 }
4361
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004362 ret = snd_soc_register_dais(&codec->component, dai_drv, num_dai, false);
4363 if (ret < 0) {
4364 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4365 goto err_cleanup;
4366 }
4367
4368 list_for_each_entry(dai, &codec->component.dai_list, list)
4369 dai->codec = codec;
4370
Mark Brown054880f2012-04-09 17:29:19 +01004371 mutex_lock(&client_mutex);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004372 snd_soc_component_add_unlocked(&codec->component);
Mark Brown054880f2012-04-09 17:29:19 +01004373 list_add(&codec->list, &codec_list);
4374 mutex_unlock(&client_mutex);
4375
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004376 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n",
4377 codec->component.name);
Mark Brown0d0cf002008-12-10 14:32:45 +00004378 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004379
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004380err_cleanup:
4381 snd_soc_component_cleanup(&codec->component);
4382err_free:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004383 kfree(codec);
4384 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00004385}
4386EXPORT_SYMBOL_GPL(snd_soc_register_codec);
4387
4388/**
4389 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4390 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004391 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00004392 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004393void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00004394{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004395 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004396
4397 list_for_each_entry(codec, &codec_list, list) {
4398 if (dev == codec->dev)
4399 goto found;
4400 }
4401 return;
4402
4403found:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004404
Mark Brown0d0cf002008-12-10 14:32:45 +00004405 mutex_lock(&client_mutex);
4406 list_del(&codec->list);
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004407 snd_soc_component_del_unlocked(&codec->component);
Mark Brown0d0cf002008-12-10 14:32:45 +00004408 mutex_unlock(&client_mutex);
4409
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02004410 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n",
4411 codec->component.name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004412
Lars-Peter Clausenbb131092014-06-16 18:13:03 +02004413 snd_soc_component_cleanup(&codec->component);
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004414 snd_soc_cache_exit(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004415 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00004416}
4417EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
4418
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004419/* Retrieve a card's name from device tree */
4420int snd_soc_of_parse_card_name(struct snd_soc_card *card,
4421 const char *propname)
4422{
4423 struct device_node *np = card->dev->of_node;
4424 int ret;
4425
4426 ret = of_property_read_string_index(np, propname, 0, &card->name);
4427 /*
4428 * EINVAL means the property does not exist. This is fine providing
4429 * card->name was previously set, which is checked later in
4430 * snd_soc_register_card.
4431 */
4432 if (ret < 0 && ret != -EINVAL) {
4433 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004434 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004435 propname, ret);
4436 return ret;
4437 }
4438
4439 return 0;
4440}
4441EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
4442
Xiubo Li9a6d4862014-02-08 15:59:52 +08004443static const struct snd_soc_dapm_widget simple_widgets[] = {
4444 SND_SOC_DAPM_MIC("Microphone", NULL),
4445 SND_SOC_DAPM_LINE("Line", NULL),
4446 SND_SOC_DAPM_HP("Headphone", NULL),
4447 SND_SOC_DAPM_SPK("Speaker", NULL),
4448};
4449
4450int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
4451 const char *propname)
4452{
4453 struct device_node *np = card->dev->of_node;
4454 struct snd_soc_dapm_widget *widgets;
4455 const char *template, *wname;
4456 int i, j, num_widgets, ret;
4457
4458 num_widgets = of_property_count_strings(np, propname);
4459 if (num_widgets < 0) {
4460 dev_err(card->dev,
4461 "ASoC: Property '%s' does not exist\n", propname);
4462 return -EINVAL;
4463 }
4464 if (num_widgets & 1) {
4465 dev_err(card->dev,
4466 "ASoC: Property '%s' length is not even\n", propname);
4467 return -EINVAL;
4468 }
4469
4470 num_widgets /= 2;
4471 if (!num_widgets) {
4472 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
4473 propname);
4474 return -EINVAL;
4475 }
4476
4477 widgets = devm_kcalloc(card->dev, num_widgets, sizeof(*widgets),
4478 GFP_KERNEL);
4479 if (!widgets) {
4480 dev_err(card->dev,
4481 "ASoC: Could not allocate memory for widgets\n");
4482 return -ENOMEM;
4483 }
4484
4485 for (i = 0; i < num_widgets; i++) {
4486 ret = of_property_read_string_index(np, propname,
4487 2 * i, &template);
4488 if (ret) {
4489 dev_err(card->dev,
4490 "ASoC: Property '%s' index %d read error:%d\n",
4491 propname, 2 * i, ret);
4492 return -EINVAL;
4493 }
4494
4495 for (j = 0; j < ARRAY_SIZE(simple_widgets); j++) {
4496 if (!strncmp(template, simple_widgets[j].name,
4497 strlen(simple_widgets[j].name))) {
4498 widgets[i] = simple_widgets[j];
4499 break;
4500 }
4501 }
4502
4503 if (j >= ARRAY_SIZE(simple_widgets)) {
4504 dev_err(card->dev,
4505 "ASoC: DAPM widget '%s' is not supported\n",
4506 template);
4507 return -EINVAL;
4508 }
4509
4510 ret = of_property_read_string_index(np, propname,
4511 (2 * i) + 1,
4512 &wname);
4513 if (ret) {
4514 dev_err(card->dev,
4515 "ASoC: Property '%s' index %d read error:%d\n",
4516 propname, (2 * i) + 1, ret);
4517 return -EINVAL;
4518 }
4519
4520 widgets[i].name = wname;
4521 }
4522
4523 card->dapm_widgets = widgets;
4524 card->num_dapm_widgets = num_widgets;
4525
4526 return 0;
4527}
4528EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_simple_widgets);
4529
Xiubo Li89c67852014-02-14 09:34:35 +08004530int snd_soc_of_parse_tdm_slot(struct device_node *np,
4531 unsigned int *slots,
4532 unsigned int *slot_width)
4533{
4534 u32 val;
4535 int ret;
4536
4537 if (of_property_read_bool(np, "dai-tdm-slot-num")) {
4538 ret = of_property_read_u32(np, "dai-tdm-slot-num", &val);
4539 if (ret)
4540 return ret;
4541
4542 if (slots)
4543 *slots = val;
4544 }
4545
4546 if (of_property_read_bool(np, "dai-tdm-slot-width")) {
4547 ret = of_property_read_u32(np, "dai-tdm-slot-width", &val);
4548 if (ret)
4549 return ret;
4550
4551 if (slot_width)
4552 *slot_width = val;
4553 }
4554
4555 return 0;
4556}
4557EXPORT_SYMBOL_GPL(snd_soc_of_parse_tdm_slot);
4558
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004559int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
4560 const char *propname)
4561{
4562 struct device_node *np = card->dev->of_node;
4563 int num_routes;
4564 struct snd_soc_dapm_route *routes;
4565 int i, ret;
4566
4567 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08004568 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02004569 dev_err(card->dev,
4570 "ASoC: Property '%s' does not exist or its length is not even\n",
4571 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004572 return -EINVAL;
4573 }
4574 num_routes /= 2;
4575 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004576 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004577 propname);
4578 return -EINVAL;
4579 }
4580
4581 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
4582 GFP_KERNEL);
4583 if (!routes) {
4584 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004585 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004586 return -EINVAL;
4587 }
4588
4589 for (i = 0; i < num_routes; i++) {
4590 ret = of_property_read_string_index(np, propname,
4591 2 * i, &routes[i].sink);
4592 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09004593 dev_err(card->dev,
4594 "ASoC: Property '%s' index %d could not be read: %d\n",
4595 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004596 return -EINVAL;
4597 }
4598 ret = of_property_read_string_index(np, propname,
4599 (2 * i) + 1, &routes[i].source);
4600 if (ret) {
4601 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09004602 "ASoC: Property '%s' index %d could not be read: %d\n",
4603 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004604 return -EINVAL;
4605 }
4606 }
4607
4608 card->num_dapm_routes = num_routes;
4609 card->dapm_routes = routes;
4610
4611 return 0;
4612}
4613EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
4614
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004615unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
Jyri Sarha389cb832014-03-24 12:15:24 +02004616 const char *prefix,
4617 struct device_node **bitclkmaster,
4618 struct device_node **framemaster)
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004619{
4620 int ret, i;
4621 char prop[128];
4622 unsigned int format = 0;
4623 int bit, frame;
4624 const char *str;
4625 struct {
4626 char *name;
4627 unsigned int val;
4628 } of_fmt_table[] = {
4629 { "i2s", SND_SOC_DAIFMT_I2S },
4630 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
4631 { "left_j", SND_SOC_DAIFMT_LEFT_J },
4632 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
4633 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
4634 { "ac97", SND_SOC_DAIFMT_AC97 },
4635 { "pdm", SND_SOC_DAIFMT_PDM},
4636 { "msb", SND_SOC_DAIFMT_MSB },
4637 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004638 };
4639
4640 if (!prefix)
4641 prefix = "";
4642
4643 /*
4644 * check "[prefix]format = xxx"
4645 * SND_SOC_DAIFMT_FORMAT_MASK area
4646 */
4647 snprintf(prop, sizeof(prop), "%sformat", prefix);
4648 ret = of_property_read_string(np, prop, &str);
4649 if (ret == 0) {
4650 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
4651 if (strcmp(str, of_fmt_table[i].name) == 0) {
4652 format |= of_fmt_table[i].val;
4653 break;
4654 }
4655 }
4656 }
4657
4658 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004659 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004660 * SND_SOC_DAIFMT_CLOCK_MASK area
4661 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004662 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
4663 if (of_get_property(np, prop, NULL))
4664 format |= SND_SOC_DAIFMT_CONT;
4665 else
4666 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004667
4668 /*
4669 * check "[prefix]bitclock-inversion"
4670 * check "[prefix]frame-inversion"
4671 * SND_SOC_DAIFMT_INV_MASK area
4672 */
4673 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
4674 bit = !!of_get_property(np, prop, NULL);
4675
4676 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
4677 frame = !!of_get_property(np, prop, NULL);
4678
4679 switch ((bit << 4) + frame) {
4680 case 0x11:
4681 format |= SND_SOC_DAIFMT_IB_IF;
4682 break;
4683 case 0x10:
4684 format |= SND_SOC_DAIFMT_IB_NF;
4685 break;
4686 case 0x01:
4687 format |= SND_SOC_DAIFMT_NB_IF;
4688 break;
4689 default:
4690 /* SND_SOC_DAIFMT_NB_NF is default */
4691 break;
4692 }
4693
4694 /*
4695 * check "[prefix]bitclock-master"
4696 * check "[prefix]frame-master"
4697 * SND_SOC_DAIFMT_MASTER_MASK area
4698 */
4699 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4700 bit = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02004701 if (bit && bitclkmaster)
4702 *bitclkmaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004703
4704 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4705 frame = !!of_get_property(np, prop, NULL);
Jyri Sarha389cb832014-03-24 12:15:24 +02004706 if (frame && framemaster)
4707 *framemaster = of_parse_phandle(np, prop, 0);
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004708
4709 switch ((bit << 4) + frame) {
4710 case 0x11:
4711 format |= SND_SOC_DAIFMT_CBM_CFM;
4712 break;
4713 case 0x10:
4714 format |= SND_SOC_DAIFMT_CBM_CFS;
4715 break;
4716 case 0x01:
4717 format |= SND_SOC_DAIFMT_CBS_CFM;
4718 break;
4719 default:
4720 format |= SND_SOC_DAIFMT_CBS_CFS;
4721 break;
4722 }
4723
4724 return format;
4725}
4726EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4727
Kuninori Morimotocb470082013-09-10 17:39:56 -07004728int snd_soc_of_get_dai_name(struct device_node *of_node,
4729 const char **dai_name)
4730{
4731 struct snd_soc_component *pos;
4732 struct of_phandle_args args;
4733 int ret;
4734
4735 ret = of_parse_phandle_with_args(of_node, "sound-dai",
4736 "#sound-dai-cells", 0, &args);
4737 if (ret)
4738 return ret;
4739
4740 ret = -EPROBE_DEFER;
4741
4742 mutex_lock(&client_mutex);
4743 list_for_each_entry(pos, &component_list, list) {
4744 if (pos->dev->of_node != args.np)
4745 continue;
4746
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004747 if (pos->driver->of_xlate_dai_name) {
4748 ret = pos->driver->of_xlate_dai_name(pos, &args, dai_name);
4749 } else {
4750 int id = -1;
4751
4752 switch (args.args_count) {
4753 case 0:
4754 id = 0; /* same as dai_drv[0] */
4755 break;
4756 case 1:
4757 id = args.args[0];
4758 break;
4759 default:
4760 /* not supported */
4761 break;
4762 }
4763
4764 if (id < 0 || id >= pos->num_dai) {
4765 ret = -EINVAL;
Nicolin Chen3dcba282014-04-21 19:14:46 +08004766 continue;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004767 }
Xiubo Lie41975e2013-12-20 14:39:51 +08004768
4769 ret = 0;
4770
4771 *dai_name = pos->dai_drv[id].name;
4772 if (!*dai_name)
4773 *dai_name = pos->name;
Kuninori Morimotocb470082013-09-10 17:39:56 -07004774 }
4775
Kuninori Morimotocb470082013-09-10 17:39:56 -07004776 break;
4777 }
4778 mutex_unlock(&client_mutex);
4779
4780 of_node_put(args.np);
4781
4782 return ret;
4783}
4784EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
4785
Takashi Iwaic9b3a402008-12-10 07:47:22 +01004786static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004787{
Mark Brown384c89e2008-12-03 17:34:03 +00004788#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004789 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
4790 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02004791 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00004792 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00004793 }
Mark Brownc3c5a192010-09-15 18:15:14 +01004794
Mark Brown8a9dab12011-01-10 22:25:21 +00004795 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01004796 &codec_list_fops))
4797 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4798
Mark Brown8a9dab12011-01-10 22:25:21 +00004799 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01004800 &dai_list_fops))
4801 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01004802
Mark Brown8a9dab12011-01-10 22:25:21 +00004803 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01004804 &platform_list_fops))
4805 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00004806#endif
4807
Mark Brownfb257892011-04-28 10:57:54 +01004808 snd_soc_util_init();
4809
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004810 return platform_driver_register(&soc_driver);
4811}
Mark Brown4abe8e12010-10-12 17:41:03 +01004812module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004813
Mark Brown7d8c16a2008-11-30 22:11:24 +00004814static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004815{
Mark Brownfb257892011-04-28 10:57:54 +01004816 snd_soc_util_exit();
4817
Mark Brown384c89e2008-12-03 17:34:03 +00004818#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004819 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00004820#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02004821 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004822}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004823module_exit(snd_soc_exit);
4824
4825/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004826MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004827MODULE_DESCRIPTION("ALSA SoC Core");
4828MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02004829MODULE_ALIAS("platform:soc-audio");