blob: b38e0ee622df2709a680d46eb11b47c1c389bad9 [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 Brown91151712008-11-30 23:31:24 +000059static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000060static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000061static LIST_HEAD(codec_list);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -070062static LIST_HEAD(component_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000063
Frank Mandarinodb2a4162006-10-06 18:31:09 +020064/*
65 * This is a timeout to do a DAPM powerdown after a stream is closed().
66 * It can be used to eliminate pops between different playback streams, e.g.
67 * between two audio tracks.
68 */
69static int pmdown_time = 5000;
70module_param(pmdown_time, int, 0);
71MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
72
Markus Pargmann741a5092013-08-19 17:05:55 +020073struct snd_ac97_reset_cfg {
74 struct pinctrl *pctl;
75 struct pinctrl_state *pstate_reset;
76 struct pinctrl_state *pstate_warm_reset;
77 struct pinctrl_state *pstate_run;
78 int gpio_sdata;
79 int gpio_sync;
80 int gpio_reset;
81};
82
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000083/* returns the minimum number of bytes needed to represent
84 * a particular given value */
85static int min_bytes_needed(unsigned long val)
86{
87 int c = 0;
88 int i;
89
90 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
91 if (val & (1UL << i))
92 break;
93 c = (sizeof val * 8) - c;
94 if (!c || (c % 8))
95 c = (c + 8) / 8;
96 else
97 c /= 8;
98 return c;
99}
100
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000101/* fill buf which is 'len' bytes with a formatted
102 * string of the form 'reg: value\n' */
103static int format_register_str(struct snd_soc_codec *codec,
104 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +0000105{
Stephen Warren00b317a2011-04-01 14:50:44 -0600106 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
107 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000108 int ret;
109 char tmpbuf[len + 1];
110 char regbuf[regsize + 1];
111
112 /* since tmpbuf is allocated on the stack, warn the callers if they
113 * try to abuse this function */
114 WARN_ON(len > 63);
115
116 /* +2 for ': ' and + 1 for '\n' */
117 if (wordsize + regsize + 2 + 1 != len)
118 return -EINVAL;
119
Mark Brown25032c12011-08-01 13:52:48 +0900120 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000121 if (ret < 0) {
122 memset(regbuf, 'X', regsize);
123 regbuf[regsize] = '\0';
124 } else {
125 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
126 }
127
128 /* prepare the buffer */
129 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
130 /* copy it back to the caller without the '\0' */
131 memcpy(buf, tmpbuf, len);
132
133 return 0;
134}
135
136/* codec register dump */
137static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
138 size_t count, loff_t pos)
139{
140 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000141 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000142 int len;
143 size_t total = 0;
144 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000145
Stephen Warren00b317a2011-04-01 14:50:44 -0600146 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
147 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000148
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000149 len = wordsize + regsize + 2 + 1;
150
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000151 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000152 return 0;
153
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000154 if (codec->driver->reg_cache_step)
155 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000156
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000157 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausenb92d1502011-08-27 18:24:14 +0200158 if (!snd_soc_codec_readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +0000159 continue;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000160 if (codec->driver->display_register) {
161 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +0000162 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +0100163 } else {
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000164 /* only support larger than PAGE_SIZE bytes debugfs
165 * entries for the default case */
166 if (p >= pos) {
167 if (total + len >= count - 1)
168 break;
169 format_register_str(codec, i, buf + total, len);
170 total += len;
171 }
172 p += len;
Mark Brown5164d742010-07-14 16:14:33 +0100173 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000174 }
175
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000176 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000177
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000178 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000179}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000180
Mark Brown2624d5f2009-11-03 21:56:13 +0000181static ssize_t codec_reg_show(struct device *dev,
182 struct device_attribute *attr, char *buf)
183{
Mark Brown36ae1a92012-01-06 17:12:45 -0800184 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000185
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000186 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000187}
188
189static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
190
Mark Browndbe21402010-02-12 11:37:24 +0000191static ssize_t pmdown_time_show(struct device *dev,
192 struct device_attribute *attr, char *buf)
193{
Mark Brown36ae1a92012-01-06 17:12:45 -0800194 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000195
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000196 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000197}
198
199static ssize_t pmdown_time_set(struct device *dev,
200 struct device_attribute *attr,
201 const char *buf, size_t count)
202{
Mark Brown36ae1a92012-01-06 17:12:45 -0800203 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700204 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000205
Jingoo Hanb785a492013-07-19 16:24:59 +0900206 ret = kstrtol(buf, 10, &rtd->pmdown_time);
Mark Brownc593b522010-10-27 20:11:17 -0700207 if (ret)
208 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000209
210 return count;
211}
212
213static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
214
Mark Brown2624d5f2009-11-03 21:56:13 +0000215#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000216static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000217 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000218{
219 ssize_t ret;
220 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000221 char *buf;
222
223 if (*ppos < 0 || !count)
224 return -EINVAL;
225
226 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000227 if (!buf)
228 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000229
230 ret = soc_codec_reg_show(codec, buf, count, *ppos);
231 if (ret >= 0) {
232 if (copy_to_user(user_buf, buf, ret)) {
233 kfree(buf);
234 return -EFAULT;
235 }
236 *ppos += ret;
237 }
238
Mark Brown2624d5f2009-11-03 21:56:13 +0000239 kfree(buf);
240 return ret;
241}
242
243static ssize_t codec_reg_write_file(struct file *file,
244 const char __user *user_buf, size_t count, loff_t *ppos)
245{
246 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700247 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000248 char *start = buf;
249 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000250 struct snd_soc_codec *codec = file->private_data;
Jingoo Hanb785a492013-07-19 16:24:59 +0900251 int ret;
Mark Brown2624d5f2009-11-03 21:56:13 +0000252
253 buf_size = min(count, (sizeof(buf)-1));
254 if (copy_from_user(buf, user_buf, buf_size))
255 return -EFAULT;
256 buf[buf_size] = 0;
257
Mark Brown2624d5f2009-11-03 21:56:13 +0000258 while (*start == ' ')
259 start++;
260 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000261 while (*start == ' ')
262 start++;
Jingoo Hanb785a492013-07-19 16:24:59 +0900263 ret = kstrtoul(start, 16, &value);
264 if (ret)
265 return ret;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000266
267 /* Userspace has been fiddling around behind the kernel's back */
Rusty Russell373d4d02013-01-21 17:17:39 +1030268 add_taint(TAINT_USER, LOCKDEP_NOW_UNRELIABLE);
Mark Brown0d51a9c2011-01-06 16:04:57 +0000269
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000270 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000271 return buf_size;
272}
273
274static const struct file_operations codec_reg_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -0700275 .open = simple_open,
Mark Brown2624d5f2009-11-03 21:56:13 +0000276 .read = codec_reg_read_file,
277 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200278 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000279};
280
281static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
282{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200283 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
284
285 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
286 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000287 if (!codec->debugfs_codec_root) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200288 dev_warn(codec->dev,
289 "ASoC: Failed to create codec debugfs directory\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000290 return;
291 }
292
Mark Brownaaee8ef2011-01-26 20:53:50 +0000293 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
294 &codec->cache_sync);
295 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
296 &codec->cache_only);
297
Mark Brown2624d5f2009-11-03 21:56:13 +0000298 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
299 codec->debugfs_codec_root,
300 codec, &codec_reg_fops);
301 if (!codec->debugfs_reg)
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200302 dev_warn(codec->dev,
303 "ASoC: Failed to create codec register debugfs file\n");
Mark Brown2624d5f2009-11-03 21:56:13 +0000304
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200305 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000306}
307
308static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
309{
310 debugfs_remove_recursive(codec->debugfs_codec_root);
311}
312
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000313static void soc_init_platform_debugfs(struct snd_soc_platform *platform)
314{
315 struct dentry *debugfs_card_root = platform->card->debugfs_card_root;
316
317 platform->debugfs_platform_root = debugfs_create_dir(platform->name,
318 debugfs_card_root);
319 if (!platform->debugfs_platform_root) {
320 dev_warn(platform->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000321 "ASoC: Failed to create platform debugfs directory\n");
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000322 return;
323 }
324
325 snd_soc_dapm_debugfs_init(&platform->dapm,
326 platform->debugfs_platform_root);
327}
328
329static void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
330{
331 debugfs_remove_recursive(platform->debugfs_platform_root);
332}
333
Mark Brownc3c5a192010-09-15 18:15:14 +0100334static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
335 size_t count, loff_t *ppos)
336{
337 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100338 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100339 struct snd_soc_codec *codec;
340
341 if (!buf)
342 return -ENOMEM;
343
Mark Brown2b194f9d2010-10-13 10:52:16 +0100344 list_for_each_entry(codec, &codec_list, list) {
345 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
346 codec->name);
347 if (len >= 0)
348 ret += len;
349 if (ret > PAGE_SIZE) {
350 ret = PAGE_SIZE;
351 break;
352 }
353 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100354
355 if (ret >= 0)
356 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
357
358 kfree(buf);
359
360 return ret;
361}
362
363static const struct file_operations codec_list_fops = {
364 .read = codec_list_read_file,
365 .llseek = default_llseek,/* read accesses f_pos */
366};
367
Mark Brownf3208782010-09-15 18:19:07 +0100368static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
369 size_t count, loff_t *ppos)
370{
371 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100372 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100373 struct snd_soc_dai *dai;
374
375 if (!buf)
376 return -ENOMEM;
377
Mark Brown2b194f9d2010-10-13 10:52:16 +0100378 list_for_each_entry(dai, &dai_list, list) {
379 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
380 if (len >= 0)
381 ret += len;
382 if (ret > PAGE_SIZE) {
383 ret = PAGE_SIZE;
384 break;
385 }
386 }
Mark Brownf3208782010-09-15 18:19:07 +0100387
Mark Brown2b194f9d2010-10-13 10:52:16 +0100388 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100389
390 kfree(buf);
391
392 return ret;
393}
394
395static const struct file_operations dai_list_fops = {
396 .read = dai_list_read_file,
397 .llseek = default_llseek,/* read accesses f_pos */
398};
399
Mark Brown19c7ac22010-09-15 18:22:40 +0100400static ssize_t platform_list_read_file(struct file *file,
401 char __user *user_buf,
402 size_t count, loff_t *ppos)
403{
404 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100405 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100406 struct snd_soc_platform *platform;
407
408 if (!buf)
409 return -ENOMEM;
410
Mark Brown2b194f9d2010-10-13 10:52:16 +0100411 list_for_each_entry(platform, &platform_list, list) {
412 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
413 platform->name);
414 if (len >= 0)
415 ret += len;
416 if (ret > PAGE_SIZE) {
417 ret = PAGE_SIZE;
418 break;
419 }
420 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100421
Mark Brown2b194f9d2010-10-13 10:52:16 +0100422 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100423
424 kfree(buf);
425
426 return ret;
427}
428
429static const struct file_operations platform_list_fops = {
430 .read = platform_list_read_file,
431 .llseek = default_llseek,/* read accesses f_pos */
432};
433
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200434static void soc_init_card_debugfs(struct snd_soc_card *card)
435{
436 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000437 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200438 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200439 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100440 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200441 return;
442 }
443
444 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
445 card->debugfs_card_root,
446 &card->pop_time);
447 if (!card->debugfs_pop_time)
448 dev_warn(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000449 "ASoC: Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200450}
451
452static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
453{
454 debugfs_remove_recursive(card->debugfs_card_root);
455}
456
Mark Brown2624d5f2009-11-03 21:56:13 +0000457#else
458
459static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
460{
461}
462
463static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
464{
465}
Axel Linb95fccb2010-11-09 17:06:44 +0800466
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +0000467static inline void soc_init_platform_debugfs(struct snd_soc_platform *platform)
468{
469}
470
471static inline void soc_cleanup_platform_debugfs(struct snd_soc_platform *platform)
472{
473}
474
Axel Linb95fccb2010-11-09 17:06:44 +0800475static inline void soc_init_card_debugfs(struct snd_soc_card *card)
476{
477}
478
479static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
480{
481}
Mark Brown2624d5f2009-11-03 21:56:13 +0000482#endif
483
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100484struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
485 const char *dai_link, int stream)
486{
487 int i;
488
489 for (i = 0; i < card->num_links; i++) {
490 if (card->rtd[i].dai_link->no_pcm &&
491 !strcmp(card->rtd[i].dai_link->name, dai_link))
492 return card->rtd[i].pcm->streams[stream].substream;
493 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000494 dev_dbg(card->dev, "ASoC: failed to find dai link %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100495 return NULL;
496}
497EXPORT_SYMBOL_GPL(snd_soc_get_dai_substream);
498
499struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
500 const char *dai_link)
501{
502 int i;
503
504 for (i = 0; i < card->num_links; i++) {
505 if (!strcmp(card->rtd[i].dai_link->name, dai_link))
506 return &card->rtd[i];
507 }
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000508 dev_dbg(card->dev, "ASoC: failed to find rtd %s\n", dai_link);
Liam Girdwood47c88ff2012-04-25 12:12:53 +0100509 return NULL;
510}
511EXPORT_SYMBOL_GPL(snd_soc_get_pcm_runtime);
512
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200513#ifdef CONFIG_SND_SOC_AC97_BUS
514/* unregister ac97 codec */
515static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
516{
517 if (codec->ac97->dev.bus)
518 device_unregister(&codec->ac97->dev);
519 return 0;
520}
521
522/* stop no dev release warning */
523static void soc_ac97_device_release(struct device *dev){}
524
525/* register ac97 codec to bus */
526static int soc_ac97_dev_register(struct snd_soc_codec *codec)
527{
528 int err;
529
530 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100531 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200532 codec->ac97->dev.release = soc_ac97_device_release;
533
Kay Sieversbb072bf2008-11-02 03:50:35 +0100534 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000535 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200536 err = device_register(&codec->ac97->dev);
537 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000538 dev_err(codec->dev, "ASoC: Can't register ac97 bus\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200539 codec->ac97->dev.bus = NULL;
540 return err;
541 }
542 return 0;
543}
544#endif
545
Richard Fitzgerald9d58a072013-08-05 13:17:28 +0100546static void codec2codec_close_delayed_work(struct work_struct *work)
547{
548 /* Currently nothing to do for c2c links
549 * Since c2c links are internal nodes in the DAPM graph and
550 * don't interface with the outside world or application layer
551 * we don't have to do any special handling on close.
552 */
553}
554
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000555#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200556/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000557int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200558{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000559 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200560 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200561 int i;
562
Daniel Macke3509ff2009-06-03 17:44:49 +0200563 /* If the initialization of this soc device failed, there is no codec
564 * associated with it. Just bail out in this case.
565 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000566 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200567 return 0;
568
Andy Green6ed25972008-06-13 16:24:05 +0100569 /* Due to the resume being scheduled into a workqueue we could
570 * suspend before that's finished - wait for it to complete.
571 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000572 snd_power_lock(card->snd_card);
573 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
574 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100575
576 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000577 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100578
Mark Browna00f90f2010-12-02 16:24:24 +0000579 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000580 for (i = 0; i < card->num_rtd; i++) {
581 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
582 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100583
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000584 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100585 continue;
586
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000587 if (drv->ops->digital_mute && dai->playback_active)
588 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200589 }
590
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100591 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000592 for (i = 0; i < card->num_rtd; i++) {
593 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100594 continue;
595
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000596 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100597 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100598
Mark Brown87506542008-11-18 20:50:34 +0000599 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000600 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200601
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000602 for (i = 0; i < card->num_rtd; i++) {
603 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
604 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100605
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000606 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100607 continue;
608
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000609 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
610 cpu_dai->driver->suspend(cpu_dai);
611 if (platform->driver->suspend && !platform->suspended) {
612 platform->driver->suspend(cpu_dai);
613 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100614 }
615 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200616
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000617 /* close any waiting streams and save state */
618 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo43829732012-08-20 14:51:24 -0700619 flush_delayed_work(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200620 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000621 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100622
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000623 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000624
625 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100626 continue;
627
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800628 snd_soc_dapm_stream_event(&card->rtd[i],
629 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800630 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000631
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800632 snd_soc_dapm_stream_event(&card->rtd[i],
633 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800634 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000635 }
636
Mark Browne2d32ff2012-08-31 17:38:32 -0700637 /* Recheck all analogue paths too */
638 dapm_mark_io_dirty(&card->dapm);
639 snd_soc_dapm_sync(&card->dapm);
640
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000641 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200642 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000643 /* If there are paths active then the CODEC will be held with
644 * bias _ON and should not be suspended. */
645 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200646 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000647 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000648 /*
649 * If the CODEC is capable of idle
650 * bias off then being in STANDBY
651 * means it's doing something,
652 * otherwise fall through.
653 */
654 if (codec->dapm.idle_bias_off) {
655 dev_dbg(codec->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200656 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000657 break;
658 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000659 case SND_SOC_BIAS_OFF:
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100660 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000661 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900662 codec->cache_sync = 1;
Mark Brownda8b8e02012-09-12 12:21:52 +0800663 if (codec->using_regmap)
664 regcache_mark_dirty(codec->control_data);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000665 break;
666 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200667 dev_dbg(codec->dev,
668 "ASoC: CODEC is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000669 break;
670 }
671 }
672 }
673
674 for (i = 0; i < card->num_rtd; i++) {
675 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
676
677 if (card->rtd[i].dai_link->ignore_suspend)
678 continue;
679
680 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
681 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200682 }
683
Mark Brown87506542008-11-18 20:50:34 +0000684 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000685 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200686
687 return 0;
688}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000689EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200690
Andy Green6ed25972008-06-13 16:24:05 +0100691/* deferred resume work, so resume can complete before we finished
692 * setting our codec back up, which can be very slow on I2C
693 */
694static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200695{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000696 struct snd_soc_card *card =
697 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200698 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200699 int i;
700
Andy Green6ed25972008-06-13 16:24:05 +0100701 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
702 * so userspace apps are blocked from touching us
703 */
704
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000705 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100706
Mark Brown99497882010-05-07 20:24:05 +0100707 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000708 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100709
Mark Brown87506542008-11-18 20:50:34 +0000710 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000711 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200712
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000713 /* resume AC97 DAIs */
714 for (i = 0; i < card->num_rtd; i++) {
715 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100716
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000717 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100718 continue;
719
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000720 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
721 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200722 }
723
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200724 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000725 /* If the CODEC was idle over suspend then it will have been
726 * left with bias OFF or STANDBY and suspended so we must now
727 * resume. Otherwise the suspend was suppressed.
728 */
729 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200730 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000731 case SND_SOC_BIAS_STANDBY:
732 case SND_SOC_BIAS_OFF:
733 codec->driver->resume(codec);
734 codec->suspended = 0;
735 break;
736 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200737 dev_dbg(codec->dev,
738 "ASoC: CODEC was on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000739 break;
740 }
Mark Brown1547aba2010-05-07 21:11:40 +0100741 }
742 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200743
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000744 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100745
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000746 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100747 continue;
748
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800749 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000750 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800751 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000752
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800753 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000754 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800755 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200756 }
757
Mark Brown3ff3f642008-05-19 12:32:25 +0200758 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000759 for (i = 0; i < card->num_rtd; i++) {
760 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
761 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100762
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000763 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100764 continue;
765
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000766 if (drv->ops->digital_mute && dai->playback_active)
767 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200768 }
769
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000770 for (i = 0; i < card->num_rtd; i++) {
771 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
772 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100773
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000774 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100775 continue;
776
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000777 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
778 cpu_dai->driver->resume(cpu_dai);
779 if (platform->driver->resume && platform->suspended) {
780 platform->driver->resume(cpu_dai);
781 platform->suspended = 0;
782 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200783 }
784
Mark Brown87506542008-11-18 20:50:34 +0000785 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000786 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200787
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000788 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100789
790 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000791 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Mark Browne2d32ff2012-08-31 17:38:32 -0700792
793 /* Recheck all analogue paths too */
794 dapm_mark_io_dirty(&card->dapm);
795 snd_soc_dapm_sync(&card->dapm);
Andy Green6ed25972008-06-13 16:24:05 +0100796}
797
798/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000799int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100800{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000801 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600802 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200803
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800804 /* If the initialization of this soc device failed, there is no codec
805 * associated with it. Just bail out in this case.
806 */
807 if (list_empty(&card->codec_dev_list))
808 return 0;
809
Mark Brown64ab9ba2009-03-31 11:27:03 +0100810 /* AC97 devices might have other drivers hanging off them so
811 * need to resume immediately. Other drivers don't have that
812 * problem and may take a substantial amount of time to resume
813 * due to I/O costs and anti-pop so handle them out of line.
814 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000815 for (i = 0; i < card->num_rtd; i++) {
816 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600817 ac97_control |= cpu_dai->driver->ac97_control;
818 }
819 if (ac97_control) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000820 dev_dbg(dev, "ASoC: Resuming AC97 immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600821 soc_resume_deferred(&card->deferred_resume_work);
822 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000823 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600824 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000825 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100826 }
Andy Green6ed25972008-06-13 16:24:05 +0100827
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200828 return 0;
829}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000830EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200831#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000832#define snd_soc_suspend NULL
833#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200834#endif
835
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100836static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800837};
838
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000839static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200840{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000841 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
842 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +0000843 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000844 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000845 struct snd_soc_dai *codec_dai, *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100846 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200847
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000848 dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000849
Mark Brownb19e6e72012-03-14 21:18:39 +0000850 /* Find CPU DAI from registered DAIs*/
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000851 list_for_each_entry(cpu_dai, &dai_list, list) {
Stephen Warrenbc926572012-05-25 18:22:11 -0600852 if (dai_link->cpu_of_node &&
853 (cpu_dai->dev->of_node != dai_link->cpu_of_node))
854 continue;
855 if (dai_link->cpu_name &&
856 strcmp(dev_name(cpu_dai->dev), dai_link->cpu_name))
857 continue;
858 if (dai_link->cpu_dai_name &&
859 strcmp(cpu_dai->name, dai_link->cpu_dai_name))
860 continue;
Stephen Warren2610ab72011-12-07 13:58:27 -0700861
862 rtd->cpu_dai = cpu_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000863 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000864
865 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000866 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000867 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000868 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000869 }
870
Mark Brownb19e6e72012-03-14 21:18:39 +0000871 /* Find CODEC from registered CODECs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000872 list_for_each_entry(codec, &codec_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700873 if (dai_link->codec_of_node) {
874 if (codec->dev->of_node != dai_link->codec_of_node)
875 continue;
876 } else {
877 if (strcmp(codec->name, dai_link->codec_name))
878 continue;
879 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000880
Stephen Warren2610ab72011-12-07 13:58:27 -0700881 rtd->codec = codec;
882
883 /*
884 * CODEC found, so find CODEC DAI from registered DAIs from
885 * this CODEC
886 */
887 list_for_each_entry(codec_dai, &dai_list, list) {
888 if (codec->dev == codec_dai->dev &&
889 !strcmp(codec_dai->name,
890 dai_link->codec_dai_name)) {
891
892 rtd->codec_dai = codec_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000893 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000894 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000895
896 if (!rtd->codec_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000897 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
Stephen Warren2610ab72011-12-07 13:58:27 -0700898 dai_link->codec_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000899 return -EPROBE_DEFER;
900 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000901 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000902
Mark Brownb19e6e72012-03-14 21:18:39 +0000903 if (!rtd->codec) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000904 dev_err(card->dev, "ASoC: CODEC %s not registered\n",
Mark Brownb19e6e72012-03-14 21:18:39 +0000905 dai_link->codec_name);
906 return -EPROBE_DEFER;
907 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100908
909 /* if there's no platform we match on the empty platform */
910 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700911 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100912 platform_name = "snd-soc-dummy";
913
Mark Brownb19e6e72012-03-14 21:18:39 +0000914 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000915 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700916 if (dai_link->platform_of_node) {
917 if (platform->dev->of_node !=
918 dai_link->platform_of_node)
919 continue;
920 } else {
921 if (strcmp(platform->name, platform_name))
922 continue;
923 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700924
925 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000926 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000927 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000928 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000929 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000930 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000931 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000932
933 card->num_rtd++;
934
935 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000936}
937
Stephen Warrend12cd192012-06-08 12:34:22 -0600938static int soc_remove_platform(struct snd_soc_platform *platform)
939{
940 int ret;
941
942 if (platform->driver->remove) {
943 ret = platform->driver->remove(platform);
944 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000945 dev_err(platform->dev, "ASoC: failed to remove %d\n",
946 ret);
Stephen Warrend12cd192012-06-08 12:34:22 -0600947 }
948
949 /* Make sure all DAPM widgets are freed */
950 snd_soc_dapm_free(&platform->dapm);
951
952 soc_cleanup_platform_debugfs(platform);
953 platform->probed = 0;
954 list_del(&platform->card_list);
955 module_put(platform->dev->driver->owner);
956
957 return 0;
958}
959
Jarkko Nikula589c3562010-12-06 16:27:07 +0200960static void soc_remove_codec(struct snd_soc_codec *codec)
961{
962 int err;
963
964 if (codec->driver->remove) {
965 err = codec->driver->remove(codec);
966 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000967 dev_err(codec->dev, "ASoC: failed to remove %d\n", err);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200968 }
969
970 /* Make sure all DAPM widgets are freed */
971 snd_soc_dapm_free(&codec->dapm);
972
973 soc_cleanup_codec_debugfs(codec);
974 codec->probed = 0;
975 list_del(&codec->card_list);
976 module_put(codec->dev->driver->owner);
977}
978
Stephen Warren62ae68f2012-06-08 12:34:23 -0600979static void soc_remove_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000980{
981 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000982 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
983 int err;
984
985 /* unregister the rtd device */
986 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -0800987 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
988 device_remove_file(rtd->dev, &dev_attr_codec_reg);
989 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000990 rtd->dev_registered = 0;
991 }
992
993 /* remove the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100994 if (codec_dai && codec_dai->probed &&
995 codec_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000996 if (codec_dai->driver->remove) {
997 err = codec_dai->driver->remove(codec_dai);
998 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000999 dev_err(codec_dai->dev,
1000 "ASoC: failed to remove %s: %d\n",
1001 codec_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001002 }
1003 codec_dai->probed = 0;
1004 list_del(&codec_dai->card_list);
1005 }
1006
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001007 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001008 if (cpu_dai && cpu_dai->probed &&
1009 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001010 if (cpu_dai->driver->remove) {
1011 err = cpu_dai->driver->remove(cpu_dai);
1012 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001013 dev_err(cpu_dai->dev,
1014 "ASoC: failed to remove %s: %d\n",
1015 cpu_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001016 }
1017 cpu_dai->probed = 0;
1018 list_del(&cpu_dai->card_list);
Stephen Warrena9db7db2012-06-08 12:34:20 -06001019
Stephen Warren18d75642012-06-08 12:34:21 -06001020 if (!cpu_dai->codec) {
1021 snd_soc_dapm_free(&cpu_dai->dapm);
Stephen Warrena9db7db2012-06-08 12:34:20 -06001022 module_put(cpu_dai->dev->driver->owner);
Stephen Warren18d75642012-06-08 12:34:21 -06001023 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001024 }
1025}
1026
Stephen Warren62ae68f2012-06-08 12:34:23 -06001027static void soc_remove_link_components(struct snd_soc_card *card, int num,
1028 int order)
1029{
1030 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1031 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1032 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1033 struct snd_soc_platform *platform = rtd->platform;
1034 struct snd_soc_codec *codec;
1035
1036 /* remove the platform */
1037 if (platform && platform->probed &&
1038 platform->driver->remove_order == order) {
1039 soc_remove_platform(platform);
1040 }
1041
1042 /* remove the CODEC-side CODEC */
1043 if (codec_dai) {
1044 codec = codec_dai->codec;
1045 if (codec && codec->probed &&
1046 codec->driver->remove_order == order)
1047 soc_remove_codec(codec);
1048 }
1049
1050 /* remove any CPU-side CODEC */
1051 if (cpu_dai) {
1052 codec = cpu_dai->codec;
1053 if (codec && codec->probed &&
1054 codec->driver->remove_order == order)
1055 soc_remove_codec(codec);
1056 }
1057}
1058
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001059static void soc_remove_dai_links(struct snd_soc_card *card)
1060{
Liam Girdwood0168bf02011-06-07 16:08:05 +01001061 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001062
Liam Girdwood0168bf02011-06-07 16:08:05 +01001063 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1064 order++) {
1065 for (dai = 0; dai < card->num_rtd; dai++)
Stephen Warren62ae68f2012-06-08 12:34:23 -06001066 soc_remove_link_dais(card, dai, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001067 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001068
1069 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1070 order++) {
1071 for (dai = 0; dai < card->num_rtd; dai++)
1072 soc_remove_link_components(card, dai, order);
1073 }
1074
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001075 card->num_rtd = 0;
1076}
1077
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001078static void soc_set_name_prefix(struct snd_soc_card *card,
1079 struct snd_soc_codec *codec)
1080{
1081 int i;
1082
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001083 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001084 return;
1085
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001086 for (i = 0; i < card->num_configs; i++) {
1087 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001088 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1089 codec->name_prefix = map->name_prefix;
1090 break;
1091 }
1092 }
1093}
1094
Jarkko Nikula589c3562010-12-06 16:27:07 +02001095static int soc_probe_codec(struct snd_soc_card *card,
1096 struct snd_soc_codec *codec)
1097{
1098 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +00001099 const struct snd_soc_codec_driver *driver = codec->driver;
Mark Brown888df392012-02-16 19:37:51 -08001100 struct snd_soc_dai *dai;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001101
1102 codec->card = card;
1103 codec->dapm.card = card;
1104 soc_set_name_prefix(card, codec);
1105
Jarkko Nikula70d29332011-01-27 16:24:22 +02001106 if (!try_module_get(codec->dev->driver->owner))
1107 return -ENODEV;
1108
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001109 soc_init_codec_debugfs(codec);
1110
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001111 if (driver->dapm_widgets)
1112 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1113 driver->num_dapm_widgets);
1114
Mark Brown888df392012-02-16 19:37:51 -08001115 /* Create DAPM widgets for each DAI stream */
1116 list_for_each_entry(dai, &dai_list, list) {
1117 if (dai->dev != codec->dev)
1118 continue;
1119
1120 snd_soc_dapm_new_dai_widgets(&codec->dapm, dai);
1121 }
1122
Mark Brown33c5f962011-08-22 18:40:30 +01001123 codec->dapm.idle_bias_off = driver->idle_bias_off;
1124
Mark Brown89b95ac02011-03-07 16:38:44 +00001125 if (driver->probe) {
1126 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001127 if (ret < 0) {
1128 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001129 "ASoC: failed to probe CODEC %d\n", ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001130 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001131 }
Chuansheng Liuff541f42012-12-21 18:17:12 +08001132 WARN(codec->dapm.idle_bias_off &&
1133 codec->dapm.bias_level != SND_SOC_BIAS_OFF,
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001134 "codec %s can not start from non-off bias with idle_bias_off==1\n",
1135 codec->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001136 }
1137
Mark Brown38cbf952012-06-22 13:04:02 +01001138 /* If the driver didn't set I/O up try regmap */
Mark Brown98d30882012-08-01 20:05:47 +01001139 if (!codec->write && dev_get_regmap(codec->dev, NULL))
Mark Brown38cbf952012-06-22 13:04:02 +01001140 snd_soc_codec_set_cache_io(codec, 0, 0, SND_SOC_REGMAP);
1141
Mark Brownb7af1da2011-04-07 19:18:44 +09001142 if (driver->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001143 snd_soc_add_codec_controls(codec, driver->controls,
Mark Brownb7af1da2011-04-07 19:18:44 +09001144 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001145 if (driver->dapm_routes)
1146 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1147 driver->num_dapm_routes);
1148
Jarkko Nikula589c3562010-12-06 16:27:07 +02001149 /* mark codec as probed and add to card codec list */
1150 codec->probed = 1;
1151 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001152 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001153
Jarkko Nikula70d29332011-01-27 16:24:22 +02001154 return 0;
1155
1156err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001157 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001158 module_put(codec->dev->driver->owner);
1159
Jarkko Nikula589c3562010-12-06 16:27:07 +02001160 return ret;
1161}
1162
Liam Girdwood956245e2011-07-01 16:54:08 +01001163static int soc_probe_platform(struct snd_soc_card *card,
1164 struct snd_soc_platform *platform)
1165{
1166 int ret = 0;
1167 const struct snd_soc_platform_driver *driver = platform->driver;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001168 struct snd_soc_dai *dai;
Liam Girdwood956245e2011-07-01 16:54:08 +01001169
1170 platform->card = card;
Liam Girdwoodb7950642011-07-04 22:10:52 +01001171 platform->dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +01001172
1173 if (!try_module_get(platform->dev->driver->owner))
1174 return -ENODEV;
1175
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +00001176 soc_init_platform_debugfs(platform);
1177
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001178 if (driver->dapm_widgets)
1179 snd_soc_dapm_new_controls(&platform->dapm,
1180 driver->dapm_widgets, driver->num_dapm_widgets);
1181
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001182 /* Create DAPM widgets for each DAI stream */
1183 list_for_each_entry(dai, &dai_list, list) {
1184 if (dai->dev != platform->dev)
1185 continue;
1186
1187 snd_soc_dapm_new_dai_widgets(&platform->dapm, dai);
1188 }
1189
Stephen Warren3fec6b62012-04-05 12:28:01 -06001190 platform->dapm.idle_bias_off = 1;
1191
Liam Girdwood956245e2011-07-01 16:54:08 +01001192 if (driver->probe) {
1193 ret = driver->probe(platform);
1194 if (ret < 0) {
1195 dev_err(platform->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001196 "ASoC: failed to probe platform %d\n", ret);
Liam Girdwood956245e2011-07-01 16:54:08 +01001197 goto err_probe;
1198 }
1199 }
1200
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001201 if (driver->controls)
1202 snd_soc_add_platform_controls(platform, driver->controls,
1203 driver->num_controls);
1204 if (driver->dapm_routes)
1205 snd_soc_dapm_add_routes(&platform->dapm, driver->dapm_routes,
1206 driver->num_dapm_routes);
1207
Liam Girdwood956245e2011-07-01 16:54:08 +01001208 /* mark platform as probed and add to card platform list */
1209 platform->probed = 1;
1210 list_add(&platform->card_list, &card->platform_dev_list);
Liam Girdwoodb7950642011-07-04 22:10:52 +01001211 list_add(&platform->dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001212
1213 return 0;
1214
1215err_probe:
Liam Girdwood02db1102012-03-02 16:13:44 +00001216 soc_cleanup_platform_debugfs(platform);
Liam Girdwood956245e2011-07-01 16:54:08 +01001217 module_put(platform->dev->driver->owner);
1218
1219 return ret;
1220}
1221
Mark Brown36ae1a92012-01-06 17:12:45 -08001222static void rtd_release(struct device *dev)
1223{
1224 kfree(dev);
1225}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001226
Jarkko Nikula589c3562010-12-06 16:27:07 +02001227static int soc_post_component_init(struct snd_soc_card *card,
1228 struct snd_soc_codec *codec,
1229 int num, int dailess)
1230{
1231 struct snd_soc_dai_link *dai_link = NULL;
1232 struct snd_soc_aux_dev *aux_dev = NULL;
1233 struct snd_soc_pcm_runtime *rtd;
1234 const char *temp, *name;
1235 int ret = 0;
1236
1237 if (!dailess) {
1238 dai_link = &card->dai_link[num];
1239 rtd = &card->rtd[num];
1240 name = dai_link->name;
1241 } else {
1242 aux_dev = &card->aux_dev[num];
1243 rtd = &card->rtd_aux[num];
1244 name = aux_dev->name;
1245 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001246 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001247
1248 /* machine controls, routes and widgets are not prefixed */
1249 temp = codec->name_prefix;
1250 codec->name_prefix = NULL;
1251
1252 /* do machine specific initialization */
1253 if (!dailess && dai_link->init)
1254 ret = dai_link->init(rtd);
1255 else if (dailess && aux_dev->init)
1256 ret = aux_dev->init(&codec->dapm);
1257 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001258 dev_err(card->dev, "ASoC: failed to init %s: %d\n", name, ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001259 return ret;
1260 }
1261 codec->name_prefix = temp;
1262
Jarkko Nikula589c3562010-12-06 16:27:07 +02001263 /* register the rtd device */
1264 rtd->codec = codec;
Mark Brown36ae1a92012-01-06 17:12:45 -08001265
1266 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1267 if (!rtd->dev)
1268 return -ENOMEM;
1269 device_initialize(rtd->dev);
1270 rtd->dev->parent = card->dev;
1271 rtd->dev->release = rtd_release;
1272 rtd->dev->init_name = name;
1273 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001274 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001275 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1276 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1277 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1278 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001279 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001280 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001281 /* calling put_device() here to free the rtd->dev */
1282 put_device(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001283 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001284 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001285 return ret;
1286 }
1287 rtd->dev_registered = 1;
1288
1289 /* add DAPM sysfs entries for this codec */
Mark Brown36ae1a92012-01-06 17:12:45 -08001290 ret = snd_soc_dapm_sys_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001291 if (ret < 0)
1292 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001293 "ASoC: failed to add codec dapm sysfs entries: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001294
1295 /* add codec sysfs entries */
Mark Brown36ae1a92012-01-06 17:12:45 -08001296 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001297 if (ret < 0)
1298 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001299 "ASoC: failed to add codec sysfs files: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001300
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001301#ifdef CONFIG_DEBUG_FS
1302 /* add DPCM sysfs entries */
Liam Girdwoodcd0f8912012-04-30 11:05:30 +01001303 if (!dailess && !dai_link->dynamic)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001304 goto out;
1305
1306 ret = soc_dpcm_debugfs_add(rtd);
1307 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001308 dev_err(rtd->dev, "ASoC: failed to add dpcm sysfs entries: %d\n", ret);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001309
1310out:
1311#endif
Jarkko Nikula589c3562010-12-06 16:27:07 +02001312 return 0;
1313}
1314
Stephen Warren62ae68f2012-06-08 12:34:23 -06001315static int soc_probe_link_components(struct snd_soc_card *card, int num,
1316 int order)
1317{
1318 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1319 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1320 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1321 struct snd_soc_platform *platform = rtd->platform;
1322 int ret;
1323
1324 /* probe the CPU-side component, if it is a CODEC */
1325 if (cpu_dai->codec &&
1326 !cpu_dai->codec->probed &&
1327 cpu_dai->codec->driver->probe_order == order) {
1328 ret = soc_probe_codec(card, cpu_dai->codec);
1329 if (ret < 0)
1330 return ret;
1331 }
1332
1333 /* probe the CODEC-side component */
1334 if (!codec_dai->codec->probed &&
1335 codec_dai->codec->driver->probe_order == order) {
1336 ret = soc_probe_codec(card, codec_dai->codec);
1337 if (ret < 0)
1338 return ret;
1339 }
1340
1341 /* probe the platform */
1342 if (!platform->probed &&
1343 platform->driver->probe_order == order) {
1344 ret = soc_probe_platform(card, platform);
1345 if (ret < 0)
1346 return ret;
1347 }
1348
1349 return 0;
1350}
1351
1352static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001353{
1354 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1355 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1356 struct snd_soc_codec *codec = rtd->codec;
1357 struct snd_soc_platform *platform = rtd->platform;
Mark Brownc74184e2012-04-04 22:12:09 +01001358 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1359 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1360 struct snd_soc_dapm_widget *play_w, *capture_w;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001361 int ret;
1362
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001363 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Liam Girdwood0168bf02011-06-07 16:08:05 +01001364 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001365
1366 /* config components */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001367 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001368 codec_dai->card = card;
1369 cpu_dai->card = card;
1370
1371 /* set default power off timeout */
1372 rtd->pmdown_time = pmdown_time;
1373
1374 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001375 if (!cpu_dai->probed &&
1376 cpu_dai->driver->probe_order == order) {
Stephen Warrena9db7db2012-06-08 12:34:20 -06001377 if (!cpu_dai->codec) {
1378 cpu_dai->dapm.card = card;
1379 if (!try_module_get(cpu_dai->dev->driver->owner))
1380 return -ENODEV;
Liam Girdwood61b61e32011-05-24 13:57:43 +01001381
Stephen Warren18d75642012-06-08 12:34:21 -06001382 list_add(&cpu_dai->dapm.list, &card->dapm_list);
Stephen Warrena9db7db2012-06-08 12:34:20 -06001383 snd_soc_dapm_new_dai_widgets(&cpu_dai->dapm, cpu_dai);
1384 }
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001385
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001386 if (cpu_dai->driver->probe) {
1387 ret = cpu_dai->driver->probe(cpu_dai);
1388 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001389 dev_err(cpu_dai->dev,
1390 "ASoC: failed to probe CPU DAI %s: %d\n",
1391 cpu_dai->name, ret);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001392 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001393 return ret;
1394 }
1395 }
1396 cpu_dai->probed = 1;
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001397 /* mark cpu_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001398 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1399 }
1400
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001401 /* probe the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001402 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001403 if (codec_dai->driver->probe) {
1404 ret = codec_dai->driver->probe(codec_dai);
1405 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001406 dev_err(codec_dai->dev,
1407 "ASoC: failed to probe CODEC DAI %s: %d\n",
1408 codec_dai->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001409 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001410 }
1411 }
1412
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001413 /* mark codec_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001414 codec_dai->probed = 1;
1415 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001416 }
1417
Liam Girdwood0168bf02011-06-07 16:08:05 +01001418 /* complete DAI probe during last probe */
1419 if (order != SND_SOC_COMP_ORDER_LAST)
1420 return 0;
1421
Jarkko Nikula589c3562010-12-06 16:27:07 +02001422 ret = soc_post_component_init(card, codec, num, 0);
1423 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001424 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001425
Mark Brown36ae1a92012-01-06 17:12:45 -08001426 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001427 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001428 dev_warn(rtd->dev, "ASoC: failed to add pmdown_time sysfs: %d\n",
1429 ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001430
Namarta Kohli1245b702012-08-16 17:10:41 +05301431 if (cpu_dai->driver->compress_dai) {
1432 /*create compress_device"*/
1433 ret = soc_new_compress(rtd, num);
Mark Brownc74184e2012-04-04 22:12:09 +01001434 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001435 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301436 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001437 return ret;
1438 }
1439 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301440
1441 if (!dai_link->params) {
1442 /* create the pcm */
1443 ret = soc_new_pcm(rtd, num);
1444 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001445 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301446 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001447 return ret;
1448 }
Namarta Kohli1245b702012-08-16 17:10:41 +05301449 } else {
Richard Fitzgerald9d58a072013-08-05 13:17:28 +01001450 INIT_DELAYED_WORK(&rtd->delayed_work,
1451 codec2codec_close_delayed_work);
1452
Namarta Kohli1245b702012-08-16 17:10:41 +05301453 /* link the DAI widgets */
1454 play_w = codec_dai->playback_widget;
1455 capture_w = cpu_dai->capture_widget;
1456 if (play_w && capture_w) {
1457 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
Mark Brownc74184e2012-04-04 22:12:09 +01001458 capture_w, play_w);
Namarta Kohli1245b702012-08-16 17:10:41 +05301459 if (ret != 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001460 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301461 play_w->name, capture_w->name, ret);
1462 return ret;
1463 }
1464 }
1465
1466 play_w = cpu_dai->playback_widget;
1467 capture_w = codec_dai->capture_widget;
1468 if (play_w && capture_w) {
1469 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1470 capture_w, play_w);
1471 if (ret != 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001472 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301473 play_w->name, capture_w->name, ret);
1474 return ret;
1475 }
Mark Brownc74184e2012-04-04 22:12:09 +01001476 }
1477 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001478 }
1479
1480 /* add platform data for AC97 devices */
1481 if (rtd->codec_dai->driver->ac97_control)
1482 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1483
1484 return 0;
1485}
1486
1487#ifdef CONFIG_SND_SOC_AC97_BUS
1488static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1489{
1490 int ret;
1491
1492 /* Only instantiate AC97 if not already done by the adaptor
1493 * for the generic AC97 subsystem.
1494 */
1495 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001496 /*
1497 * It is possible that the AC97 device is already registered to
1498 * the device subsystem. This happens when the device is created
1499 * via snd_ac97_mixer(). Currently only SoC codec that does so
1500 * is the generic AC97 glue but others migh emerge.
1501 *
1502 * In those cases we don't try to register the device again.
1503 */
1504 if (!rtd->codec->ac97_created)
1505 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001506
1507 ret = soc_ac97_dev_register(rtd->codec);
1508 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001509 dev_err(rtd->codec->dev,
1510 "ASoC: AC97 device register failed: %d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001511 return ret;
1512 }
1513
1514 rtd->codec->ac97_registered = 1;
1515 }
1516 return 0;
1517}
1518
1519static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1520{
1521 if (codec->ac97_registered) {
1522 soc_ac97_dev_unregister(codec);
1523 codec->ac97_registered = 0;
1524 }
1525}
1526#endif
1527
Mark Brownb19e6e72012-03-14 21:18:39 +00001528static int soc_check_aux_dev(struct snd_soc_card *card, int num)
1529{
1530 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1531 struct snd_soc_codec *codec;
1532
1533 /* find CODEC from registered CODECs*/
1534 list_for_each_entry(codec, &codec_list, list) {
1535 if (!strcmp(codec->name, aux_dev->codec_name))
1536 return 0;
1537 }
1538
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001539 dev_err(card->dev, "ASoC: %s not registered\n", aux_dev->codec_name);
Mark Brownfb099cb2012-08-09 18:44:37 +01001540
Mark Brownb19e6e72012-03-14 21:18:39 +00001541 return -EPROBE_DEFER;
1542}
1543
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001544static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1545{
1546 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001547 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001548 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001549
1550 /* find CODEC from registered CODECs*/
1551 list_for_each_entry(codec, &codec_list, list) {
1552 if (!strcmp(codec->name, aux_dev->codec_name)) {
1553 if (codec->probed) {
1554 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001555 "ASoC: codec already probed");
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001556 ret = -EBUSY;
1557 goto out;
1558 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001559 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001560 }
1561 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001562 /* codec not found */
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001563 dev_err(card->dev, "ASoC: codec %s not found", aux_dev->codec_name);
Mark Brownb19e6e72012-03-14 21:18:39 +00001564 return -EPROBE_DEFER;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001565
Jarkko Nikula676ad982010-12-03 09:18:22 +02001566found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001567 ret = soc_probe_codec(card, codec);
1568 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001569 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001570
Jarkko Nikula589c3562010-12-06 16:27:07 +02001571 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001572
1573out:
1574 return ret;
1575}
1576
1577static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1578{
1579 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1580 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001581
1582 /* unregister the rtd device */
1583 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001584 device_remove_file(rtd->dev, &dev_attr_codec_reg);
Chuansheng Liud3bf1562012-12-26 00:57:32 +08001585 device_unregister(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001586 rtd->dev_registered = 0;
1587 }
1588
Jarkko Nikula589c3562010-12-06 16:27:07 +02001589 if (codec && codec->probed)
1590 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001591}
1592
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001593static int snd_soc_init_codec_cache(struct snd_soc_codec *codec)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001594{
1595 int ret;
1596
1597 if (codec->cache_init)
1598 return 0;
1599
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001600 ret = snd_soc_cache_init(codec);
1601 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001602 dev_err(codec->dev,
1603 "ASoC: Failed to set cache compression type: %d\n",
1604 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001605 return ret;
1606 }
1607 codec->cache_init = 1;
1608 return 0;
1609}
1610
Mark Brownb19e6e72012-03-14 21:18:39 +00001611static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001612{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001613 struct snd_soc_codec *codec;
Mark Brown75d9ac42011-09-27 16:41:01 +01001614 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001615 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001616
Liam Girdwood01b9d992012-03-07 10:38:25 +00001617 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001618
Mark Brownb19e6e72012-03-14 21:18:39 +00001619 /* bind DAIs */
1620 for (i = 0; i < card->num_links; i++) {
1621 ret = soc_bind_dai_link(card, i);
1622 if (ret != 0)
1623 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001624 }
1625
Mark Brownb19e6e72012-03-14 21:18:39 +00001626 /* check aux_devs too */
1627 for (i = 0; i < card->num_aux_devs; i++) {
1628 ret = soc_check_aux_dev(card, i);
1629 if (ret != 0)
1630 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001631 }
1632
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001633 /* initialize the register cache for each available codec */
1634 list_for_each_entry(codec, &codec_list, list) {
1635 if (codec->cache_init)
1636 continue;
Lars-Peter Clausenf90fb3f2013-08-31 20:31:15 +02001637 ret = snd_soc_init_codec_cache(codec);
Mark Brownb19e6e72012-03-14 21:18:39 +00001638 if (ret < 0)
1639 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001640 }
1641
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001642 /* card bind complete so register a sound card */
1643 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1644 card->owner, 0, &card->snd_card);
1645 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001646 dev_err(card->dev,
1647 "ASoC: can't create sound card for card %s: %d\n",
1648 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001649 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001650 }
1651 card->snd_card->dev = card->dev;
1652
Mark Browne37a4972011-03-02 18:21:57 +00001653 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1654 card->dapm.dev = card->dev;
1655 card->dapm.card = card;
1656 list_add(&card->dapm.list, &card->dapm_list);
1657
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001658#ifdef CONFIG_DEBUG_FS
1659 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1660#endif
1661
Mark Brown88ee1c62011-02-02 10:43:26 +00001662#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001663 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001664 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001665#endif
Andy Green6ed25972008-06-13 16:24:05 +01001666
Mark Brown9a841eb2011-04-12 17:51:37 -07001667 if (card->dapm_widgets)
1668 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1669 card->num_dapm_widgets);
1670
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001671 /* initialise the sound card only once */
1672 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001673 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001674 if (ret < 0)
1675 goto card_probe_error;
1676 }
1677
Stephen Warren62ae68f2012-06-08 12:34:23 -06001678 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001679 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1680 order++) {
1681 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001682 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001683 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001684 dev_err(card->dev,
1685 "ASoC: failed to instantiate card %d\n",
1686 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001687 goto probe_dai_err;
1688 }
1689 }
1690 }
1691
1692 /* probe all DAI links on this card */
1693 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1694 order++) {
1695 for (i = 0; i < card->num_links; i++) {
1696 ret = soc_probe_link_dais(card, i, order);
1697 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001698 dev_err(card->dev,
1699 "ASoC: failed to instantiate card %d\n",
1700 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001701 goto probe_dai_err;
1702 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001703 }
1704 }
1705
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001706 for (i = 0; i < card->num_aux_devs; i++) {
1707 ret = soc_probe_aux_dev(card, i);
1708 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001709 dev_err(card->dev,
1710 "ASoC: failed to add auxiliary devices %d\n",
1711 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001712 goto probe_aux_dev_err;
1713 }
1714 }
1715
Mark Brown888df392012-02-16 19:37:51 -08001716 snd_soc_dapm_link_dai_widgets(card);
1717
Mark Brownb7af1da2011-04-07 19:18:44 +09001718 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001719 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001720
Mark Brownb8ad29d2011-03-02 18:35:51 +00001721 if (card->dapm_routes)
1722 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1723 card->num_dapm_routes);
1724
Mark Brown75d9ac42011-09-27 16:41:01 +01001725 for (i = 0; i < card->num_links; i++) {
1726 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001727 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001728
Mark Brownf04209a2012-04-09 16:29:21 +01001729 if (dai_fmt) {
Mark Brown75d9ac42011-09-27 16:41:01 +01001730 ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001731 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001732 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001733 dev_warn(card->rtd[i].codec_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001734 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001735 ret);
Mark Brownf04209a2012-04-09 16:29:21 +01001736 }
1737
1738 /* If this is a regular CPU link there will be a platform */
Stephen Warrenfe33d4c2012-05-14 14:47:22 -06001739 if (dai_fmt &&
1740 (dai_link->platform_name || dai_link->platform_of_node)) {
Mark Brownf04209a2012-04-09 16:29:21 +01001741 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1742 dai_fmt);
1743 if (ret != 0 && ret != -ENOTSUPP)
1744 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001745 "ASoC: Failed to set DAI format: %d\n",
Mark Brownf04209a2012-04-09 16:29:21 +01001746 ret);
1747 } else if (dai_fmt) {
1748 /* Flip the polarity for the "CPU" end */
1749 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1750 switch (dai_link->dai_fmt &
1751 SND_SOC_DAIFMT_MASTER_MASK) {
1752 case SND_SOC_DAIFMT_CBM_CFM:
1753 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1754 break;
1755 case SND_SOC_DAIFMT_CBM_CFS:
1756 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1757 break;
1758 case SND_SOC_DAIFMT_CBS_CFM:
1759 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1760 break;
1761 case SND_SOC_DAIFMT_CBS_CFS:
1762 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1763 break;
1764 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001765
1766 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001767 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001768 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001769 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001770 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001771 ret);
1772 }
1773 }
1774
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001775 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001776 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001777 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1778 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001779 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1780 "%s", card->driver_name ? card->driver_name : card->name);
1781 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1782 switch (card->snd_card->driver[i]) {
1783 case '_':
1784 case '-':
1785 case '\0':
1786 break;
1787 default:
1788 if (!isalnum(card->snd_card->driver[i]))
1789 card->snd_card->driver[i] = '_';
1790 break;
1791 }
1792 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001793
Mark Brown28e9ad92011-03-02 18:36:34 +00001794 if (card->late_probe) {
1795 ret = card->late_probe(card);
1796 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001797 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001798 card->name, ret);
1799 goto probe_aux_dev_err;
1800 }
1801 }
1802
Stephen Warren16332812011-11-23 12:42:04 -07001803 if (card->fully_routed)
Mark Brownb05d8dc2011-11-27 19:38:34 +00001804 list_for_each_entry(codec, &card->codec_dev_list, card_list)
Stephen Warren16332812011-11-23 12:42:04 -07001805 snd_soc_dapm_auto_nc_codec_pins(codec);
1806
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001807 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001808
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001809 ret = snd_card_register(card->snd_card);
1810 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001811 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1812 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001813 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001814 }
1815
1816#ifdef CONFIG_SND_SOC_AC97_BUS
1817 /* register any AC97 codecs */
1818 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001819 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1820 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001821 dev_err(card->dev,
1822 "ASoC: failed to register AC97: %d\n", ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001823 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001824 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001825 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001826 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001827 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001828#endif
1829
Mark Brown435c5e22008-12-04 15:32:53 +00001830 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001831 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001832 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001833
1834 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001835
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001836probe_aux_dev_err:
1837 for (i = 0; i < card->num_aux_devs; i++)
1838 soc_remove_aux_dev(card, i);
1839
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001840probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001841 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001842
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001843card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001844 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001845 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001846
1847 snd_card_free(card->snd_card);
1848
Mark Brownb19e6e72012-03-14 21:18:39 +00001849base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001850 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001851
Mark Brownb19e6e72012-03-14 21:18:39 +00001852 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001853}
1854
1855/* probes a new socdev */
1856static int soc_probe(struct platform_device *pdev)
1857{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001858 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001859
Vinod Koul70a7ca32011-01-14 19:22:48 +05301860 /*
1861 * no card, so machine driver should be registering card
1862 * we should not be here in that case so ret error
1863 */
1864 if (!card)
1865 return -EINVAL;
1866
Mark Brownfe4085e2012-03-02 13:07:41 +00001867 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001868 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001869 card->name);
1870
Mark Brown435c5e22008-12-04 15:32:53 +00001871 /* Bodge while we unpick instantiation */
1872 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001873
Mark Brown28d528c2012-08-09 18:45:23 +01001874 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001875}
1876
Vinod Koulb0e26482011-01-13 22:48:02 +05301877static int soc_cleanup_card_resources(struct snd_soc_card *card)
1878{
Vinod Koulb0e26482011-01-13 22:48:02 +05301879 int i;
1880
1881 /* make sure any delayed work runs */
1882 for (i = 0; i < card->num_rtd; i++) {
1883 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001884 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301885 }
1886
1887 /* remove auxiliary devices */
1888 for (i = 0; i < card->num_aux_devs; i++)
1889 soc_remove_aux_dev(card, i);
1890
1891 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001892 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301893
1894 soc_cleanup_card_debugfs(card);
1895
1896 /* remove the card */
1897 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001898 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301899
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001900 snd_soc_dapm_free(&card->dapm);
1901
Vinod Koulb0e26482011-01-13 22:48:02 +05301902 snd_card_free(card->snd_card);
1903 return 0;
1904
1905}
1906
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001907/* removes a socdev */
1908static int soc_remove(struct platform_device *pdev)
1909{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001910 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001911
Mark Brownc5af3a22008-11-28 13:29:45 +00001912 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001913 return 0;
1914}
1915
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001916int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001917{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001918 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001919 int i;
Mark Brown51737472009-06-22 13:16:51 +01001920
1921 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001922 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001923
1924 /* Flush out pmdown_time work - we actually do want to run it
1925 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001926 for (i = 0; i < card->num_rtd; i++) {
1927 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001928 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001929 }
Mark Brown51737472009-06-22 13:16:51 +01001930
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001931 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001932
1933 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001934}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001935EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001936
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001937const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301938 .suspend = snd_soc_suspend,
1939 .resume = snd_soc_resume,
1940 .freeze = snd_soc_suspend,
1941 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001942 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301943 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001944};
Stephen Warrendeb26072011-04-05 19:35:30 -06001945EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001946
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001947/* ASoC platform driver */
1948static struct platform_driver soc_driver = {
1949 .driver = {
1950 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001951 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001952 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001953 },
1954 .probe = soc_probe,
1955 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001956};
1957
Mark Brown096e49d2009-07-05 15:12:22 +01001958/**
1959 * snd_soc_codec_volatile_register: Report if a register is volatile.
1960 *
1961 * @codec: CODEC to query.
1962 * @reg: Register to query.
1963 *
1964 * Boolean function indiciating if a CODEC register is volatile.
1965 */
Mark Brown181e0552011-01-24 14:05:25 +00001966int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1967 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01001968{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00001969 if (codec->volatile_register)
1970 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01001971 else
1972 return 0;
1973}
1974EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1975
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001976/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001977 * snd_soc_codec_readable_register: Report if a register is readable.
1978 *
1979 * @codec: CODEC to query.
1980 * @reg: Register to query.
1981 *
1982 * Boolean function indicating if a CODEC register is readable.
1983 */
1984int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
1985 unsigned int reg)
1986{
1987 if (codec->readable_register)
1988 return codec->readable_register(codec, reg);
1989 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001990 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001991}
1992EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
1993
1994/**
1995 * snd_soc_codec_writable_register: Report if a register is writable.
1996 *
1997 * @codec: CODEC to query.
1998 * @reg: Register to query.
1999 *
2000 * Boolean function indicating if a CODEC register is writable.
2001 */
2002int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
2003 unsigned int reg)
2004{
2005 if (codec->writable_register)
2006 return codec->writable_register(codec, reg);
2007 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02002008 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002009}
2010EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
2011
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002012int snd_soc_platform_read(struct snd_soc_platform *platform,
2013 unsigned int reg)
2014{
2015 unsigned int ret;
2016
2017 if (!platform->driver->read) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002018 dev_err(platform->dev, "ASoC: platform has no read back\n");
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002019 return -1;
2020 }
2021
2022 ret = platform->driver->read(platform, reg);
2023 dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01002024 trace_snd_soc_preg_read(platform, reg, ret);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002025
2026 return ret;
2027}
2028EXPORT_SYMBOL_GPL(snd_soc_platform_read);
2029
2030int snd_soc_platform_write(struct snd_soc_platform *platform,
2031 unsigned int reg, unsigned int val)
2032{
2033 if (!platform->driver->write) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002034 dev_err(platform->dev, "ASoC: platform has no write back\n");
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002035 return -1;
2036 }
2037
2038 dev_dbg(platform->dev, "write %x = %x\n", reg, val);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01002039 trace_snd_soc_preg_write(platform, reg, val);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002040 return platform->driver->write(platform, reg, val);
2041}
2042EXPORT_SYMBOL_GPL(snd_soc_platform_write);
2043
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002044/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002045 * snd_soc_new_ac97_codec - initailise AC97 device
2046 * @codec: audio codec
2047 * @ops: AC97 bus operations
2048 * @num: AC97 codec number
2049 *
2050 * Initialises AC97 codec resources for use by ad-hoc devices only.
2051 */
2052int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2053 struct snd_ac97_bus_ops *ops, int num)
2054{
2055 mutex_lock(&codec->mutex);
2056
2057 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2058 if (codec->ac97 == NULL) {
2059 mutex_unlock(&codec->mutex);
2060 return -ENOMEM;
2061 }
2062
2063 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2064 if (codec->ac97->bus == NULL) {
2065 kfree(codec->ac97);
2066 codec->ac97 = NULL;
2067 mutex_unlock(&codec->mutex);
2068 return -ENOMEM;
2069 }
2070
2071 codec->ac97->bus->ops = ops;
2072 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002073
2074 /*
2075 * Mark the AC97 device to be created by us. This way we ensure that the
2076 * device will be registered with the device subsystem later on.
2077 */
2078 codec->ac97_created = 1;
2079
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002080 mutex_unlock(&codec->mutex);
2081 return 0;
2082}
2083EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2084
Markus Pargmann741a5092013-08-19 17:05:55 +02002085static struct snd_ac97_reset_cfg snd_ac97_rst_cfg;
2086
2087static void snd_soc_ac97_warm_reset(struct snd_ac97 *ac97)
2088{
2089 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2090
2091 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_warm_reset);
2092
2093 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 1);
2094
2095 udelay(10);
2096
2097 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2098
2099 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2100 msleep(2);
2101}
2102
2103static void snd_soc_ac97_reset(struct snd_ac97 *ac97)
2104{
2105 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2106
2107 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_reset);
2108
2109 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2110 gpio_direction_output(snd_ac97_rst_cfg.gpio_sdata, 0);
2111 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 0);
2112
2113 udelay(10);
2114
2115 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 1);
2116
2117 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2118 msleep(2);
2119}
2120
2121static int snd_soc_ac97_parse_pinctl(struct device *dev,
2122 struct snd_ac97_reset_cfg *cfg)
2123{
2124 struct pinctrl *p;
2125 struct pinctrl_state *state;
2126 int gpio;
2127 int ret;
2128
2129 p = devm_pinctrl_get(dev);
2130 if (IS_ERR(p)) {
2131 dev_err(dev, "Failed to get pinctrl\n");
2132 return PTR_RET(p);
2133 }
2134 cfg->pctl = p;
2135
2136 state = pinctrl_lookup_state(p, "ac97-reset");
2137 if (IS_ERR(state)) {
2138 dev_err(dev, "Can't find pinctrl state ac97-reset\n");
2139 return PTR_RET(state);
2140 }
2141 cfg->pstate_reset = state;
2142
2143 state = pinctrl_lookup_state(p, "ac97-warm-reset");
2144 if (IS_ERR(state)) {
2145 dev_err(dev, "Can't find pinctrl state ac97-warm-reset\n");
2146 return PTR_RET(state);
2147 }
2148 cfg->pstate_warm_reset = state;
2149
2150 state = pinctrl_lookup_state(p, "ac97-running");
2151 if (IS_ERR(state)) {
2152 dev_err(dev, "Can't find pinctrl state ac97-running\n");
2153 return PTR_RET(state);
2154 }
2155 cfg->pstate_run = state;
2156
2157 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 0);
2158 if (gpio < 0) {
2159 dev_err(dev, "Can't find ac97-sync gpio\n");
2160 return gpio;
2161 }
2162 ret = devm_gpio_request(dev, gpio, "AC97 link sync");
2163 if (ret) {
2164 dev_err(dev, "Failed requesting ac97-sync gpio\n");
2165 return ret;
2166 }
2167 cfg->gpio_sync = gpio;
2168
2169 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 1);
2170 if (gpio < 0) {
2171 dev_err(dev, "Can't find ac97-sdata gpio %d\n", gpio);
2172 return gpio;
2173 }
2174 ret = devm_gpio_request(dev, gpio, "AC97 link sdata");
2175 if (ret) {
2176 dev_err(dev, "Failed requesting ac97-sdata gpio\n");
2177 return ret;
2178 }
2179 cfg->gpio_sdata = gpio;
2180
2181 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 2);
2182 if (gpio < 0) {
2183 dev_err(dev, "Can't find ac97-reset gpio\n");
2184 return gpio;
2185 }
2186 ret = devm_gpio_request(dev, gpio, "AC97 link reset");
2187 if (ret) {
2188 dev_err(dev, "Failed requesting ac97-reset gpio\n");
2189 return ret;
2190 }
2191 cfg->gpio_reset = gpio;
2192
2193 return 0;
2194}
2195
Mark Brownb047e1c2013-06-26 12:45:59 +01002196struct snd_ac97_bus_ops *soc_ac97_ops;
Kevin Hilmanf74b5e22013-06-28 11:17:49 -07002197EXPORT_SYMBOL_GPL(soc_ac97_ops);
Mark Brownb047e1c2013-06-26 12:45:59 +01002198
2199int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
2200{
2201 if (ops == soc_ac97_ops)
2202 return 0;
2203
2204 if (soc_ac97_ops && ops)
2205 return -EBUSY;
2206
2207 soc_ac97_ops = ops;
2208
2209 return 0;
2210}
2211EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops);
2212
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002213/**
Markus Pargmann741a5092013-08-19 17:05:55 +02002214 * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
2215 *
2216 * This function sets the reset and warm_reset properties of ops and parses
2217 * the device node of pdev to get pinctrl states and gpio numbers to use.
2218 */
2219int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
2220 struct platform_device *pdev)
2221{
2222 struct device *dev = &pdev->dev;
2223 struct snd_ac97_reset_cfg cfg;
2224 int ret;
2225
2226 ret = snd_soc_ac97_parse_pinctl(dev, &cfg);
2227 if (ret)
2228 return ret;
2229
2230 ret = snd_soc_set_ac97_ops(ops);
2231 if (ret)
2232 return ret;
2233
2234 ops->warm_reset = snd_soc_ac97_warm_reset;
2235 ops->reset = snd_soc_ac97_reset;
2236
2237 snd_ac97_rst_cfg = cfg;
2238 return 0;
2239}
2240EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset);
2241
2242/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002243 * snd_soc_free_ac97_codec - free AC97 codec device
2244 * @codec: audio codec
2245 *
2246 * Frees AC97 codec device resources.
2247 */
2248void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2249{
2250 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002251#ifdef CONFIG_SND_SOC_AC97_BUS
2252 soc_unregister_ac97_dai_link(codec);
2253#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002254 kfree(codec->ac97->bus);
2255 kfree(codec->ac97);
2256 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002257 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002258 mutex_unlock(&codec->mutex);
2259}
2260EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2261
Mark Brownc3753702010-11-01 15:41:57 -04002262unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2263{
2264 unsigned int ret;
2265
Mark Brownc3acec22010-12-02 16:15:29 +00002266 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002267 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002268 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002269
2270 return ret;
2271}
2272EXPORT_SYMBOL_GPL(snd_soc_read);
2273
2274unsigned int snd_soc_write(struct snd_soc_codec *codec,
2275 unsigned int reg, unsigned int val)
2276{
2277 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002278 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002279 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002280}
2281EXPORT_SYMBOL_GPL(snd_soc_write);
2282
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002283/**
2284 * snd_soc_update_bits - update codec register bits
2285 * @codec: audio codec
2286 * @reg: codec register
2287 * @mask: register mask
2288 * @value: new value
2289 *
2290 * Writes new register value.
2291 *
Timur Tabi180c3292011-01-10 15:58:13 -06002292 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002293 */
2294int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002295 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002296{
Mark Brown8a713da2011-12-03 12:33:55 +00002297 bool change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002298 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002299 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002300
Mark Brown8a713da2011-12-03 12:33:55 +00002301 if (codec->using_regmap) {
2302 ret = regmap_update_bits_check(codec->control_data, reg,
2303 mask, value, &change);
2304 } else {
2305 ret = snd_soc_read(codec, reg);
Timur Tabi180c3292011-01-10 15:58:13 -06002306 if (ret < 0)
2307 return ret;
Mark Brown8a713da2011-12-03 12:33:55 +00002308
2309 old = ret;
2310 new = (old & ~mask) | (value & mask);
2311 change = old != new;
2312 if (change)
2313 ret = snd_soc_write(codec, reg, new);
Timur Tabi180c3292011-01-10 15:58:13 -06002314 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002315
Mark Brown8a713da2011-12-03 12:33:55 +00002316 if (ret < 0)
2317 return ret;
2318
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002319 return change;
2320}
2321EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2322
2323/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002324 * snd_soc_update_bits_locked - update codec register bits
2325 * @codec: audio codec
2326 * @reg: codec register
2327 * @mask: register mask
2328 * @value: new value
2329 *
2330 * Writes new register value, and takes the codec mutex.
2331 *
2332 * Returns 1 for change else 0.
2333 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002334int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2335 unsigned short reg, unsigned int mask,
2336 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002337{
2338 int change;
2339
2340 mutex_lock(&codec->mutex);
2341 change = snd_soc_update_bits(codec, reg, mask, value);
2342 mutex_unlock(&codec->mutex);
2343
2344 return change;
2345}
Mark Browndd1b3d52009-12-04 14:22:03 +00002346EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002347
2348/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002349 * snd_soc_test_bits - test register for change
2350 * @codec: audio codec
2351 * @reg: codec register
2352 * @mask: register mask
2353 * @value: new value
2354 *
2355 * Tests a register with a new value and checks if the new value is
2356 * different from the old value.
2357 *
2358 * Returns 1 for change else 0.
2359 */
2360int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002361 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002362{
2363 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002364 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002365
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002366 old = snd_soc_read(codec, reg);
2367 new = (old & ~mask) | value;
2368 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002369
2370 return change;
2371}
2372EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2373
2374/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002375 * snd_soc_cnew - create new control
2376 * @_template: control template
2377 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002378 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002379 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002380 *
2381 * Create a new mixer control from a template control.
2382 *
2383 * Returns 0 for success, else error.
2384 */
2385struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002386 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002387 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002388{
2389 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002390 struct snd_kcontrol *kcontrol;
2391 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002392
2393 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002394 template.index = 0;
2395
Mark Brownefb7ac32011-03-08 17:23:24 +00002396 if (!long_name)
2397 long_name = template.name;
2398
2399 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02002400 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00002401 if (!name)
2402 return NULL;
2403
Mark Brownefb7ac32011-03-08 17:23:24 +00002404 template.name = name;
2405 } else {
2406 template.name = long_name;
2407 }
2408
2409 kcontrol = snd_ctl_new1(&template, data);
2410
2411 kfree(name);
2412
2413 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002414}
2415EXPORT_SYMBOL_GPL(snd_soc_cnew);
2416
Liam Girdwood022658b2012-02-03 17:43:09 +00002417static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2418 const struct snd_kcontrol_new *controls, int num_controls,
2419 const char *prefix, void *data)
2420{
2421 int err, i;
2422
2423 for (i = 0; i < num_controls; i++) {
2424 const struct snd_kcontrol_new *control = &controls[i];
2425 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2426 control->name, prefix));
2427 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002428 dev_err(dev, "ASoC: Failed to add %s: %d\n",
2429 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00002430 return err;
2431 }
2432 }
2433
2434 return 0;
2435}
2436
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01002437struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2438 const char *name)
2439{
2440 struct snd_card *card = soc_card->snd_card;
2441 struct snd_kcontrol *kctl;
2442
2443 if (unlikely(!name))
2444 return NULL;
2445
2446 list_for_each_entry(kctl, &card->controls, list)
2447 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2448 return kctl;
2449 return NULL;
2450}
2451EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2452
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002453/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002454 * snd_soc_add_codec_controls - add an array of controls to a codec.
2455 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002456 * duplicating this code.
2457 *
2458 * @codec: codec to add controls to
2459 * @controls: array of controls to add
2460 * @num_controls: number of elements in the array
2461 *
2462 * Return 0 for success, else error.
2463 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002464int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Ian Molton3e8e1952009-01-09 00:23:21 +00002465 const struct snd_kcontrol_new *controls, int num_controls)
2466{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002467 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002468
Liam Girdwood022658b2012-02-03 17:43:09 +00002469 return snd_soc_add_controls(card, codec->dev, controls, num_controls,
2470 codec->name_prefix, codec);
Ian Molton3e8e1952009-01-09 00:23:21 +00002471}
Liam Girdwood022658b2012-02-03 17:43:09 +00002472EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002473
2474/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002475 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002476 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002477 *
2478 * @platform: platform to add controls to
2479 * @controls: array of controls to add
2480 * @num_controls: number of elements in the array
2481 *
2482 * Return 0 for success, else error.
2483 */
2484int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2485 const struct snd_kcontrol_new *controls, int num_controls)
2486{
2487 struct snd_card *card = platform->card->snd_card;
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002488
Liam Girdwood022658b2012-02-03 17:43:09 +00002489 return snd_soc_add_controls(card, platform->dev, controls, num_controls,
2490 NULL, platform);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002491}
2492EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2493
2494/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002495 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2496 * Convenience function to add a list of controls.
2497 *
2498 * @soc_card: SoC card to add controls to
2499 * @controls: array of controls to add
2500 * @num_controls: number of elements in the array
2501 *
2502 * Return 0 for success, else error.
2503 */
2504int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2505 const struct snd_kcontrol_new *controls, int num_controls)
2506{
2507 struct snd_card *card = soc_card->snd_card;
2508
2509 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2510 NULL, soc_card);
2511}
2512EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2513
2514/**
2515 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2516 * Convienience function to add a list of controls.
2517 *
2518 * @dai: DAI to add controls to
2519 * @controls: array of controls to add
2520 * @num_controls: number of elements in the array
2521 *
2522 * Return 0 for success, else error.
2523 */
2524int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2525 const struct snd_kcontrol_new *controls, int num_controls)
2526{
2527 struct snd_card *card = dai->card->snd_card;
2528
2529 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2530 NULL, dai);
2531}
2532EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2533
2534/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002535 * snd_soc_info_enum_double - enumerated double mixer info callback
2536 * @kcontrol: mixer control
2537 * @uinfo: control element information
2538 *
2539 * Callback to provide information about a double enumerated
2540 * mixer control.
2541 *
2542 * Returns 0 for success.
2543 */
2544int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2545 struct snd_ctl_elem_info *uinfo)
2546{
2547 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2548
2549 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2550 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002551 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002552
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002553 if (uinfo->value.enumerated.item > e->max - 1)
2554 uinfo->value.enumerated.item = e->max - 1;
Takashi Iwaia19685c2013-10-28 14:21:46 +01002555 strlcpy(uinfo->value.enumerated.name,
2556 e->texts[uinfo->value.enumerated.item],
2557 sizeof(uinfo->value.enumerated.name));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002558 return 0;
2559}
2560EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2561
2562/**
2563 * snd_soc_get_enum_double - enumerated double mixer get callback
2564 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002565 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002566 *
2567 * Callback to get the value of a double enumerated mixer.
2568 *
2569 * Returns 0 for success.
2570 */
2571int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2572 struct snd_ctl_elem_value *ucontrol)
2573{
2574 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2575 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002576 unsigned int val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002577
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002578 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002579 ucontrol->value.enumerated.item[0]
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002580 = (val >> e->shift_l) & e->mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002581 if (e->shift_l != e->shift_r)
2582 ucontrol->value.enumerated.item[1] =
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002583 (val >> e->shift_r) & e->mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002584
2585 return 0;
2586}
2587EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2588
2589/**
2590 * snd_soc_put_enum_double - enumerated double mixer put callback
2591 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002592 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002593 *
2594 * Callback to set the value of a double enumerated mixer.
2595 *
2596 * Returns 0 for success.
2597 */
2598int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2599 struct snd_ctl_elem_value *ucontrol)
2600{
2601 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2602 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002603 unsigned int val;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002604 unsigned int mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002605
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002606 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002607 return -EINVAL;
2608 val = ucontrol->value.enumerated.item[0] << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002609 mask = e->mask << e->shift_l;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002610 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002611 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002612 return -EINVAL;
2613 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002614 mask |= e->mask << e->shift_r;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002615 }
2616
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002617 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002618}
2619EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2620
2621/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002622 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2623 * @kcontrol: mixer control
2624 * @ucontrol: control element information
2625 *
2626 * Callback to get the value of a double semi enumerated mixer.
2627 *
2628 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2629 * used for handling bitfield coded enumeration for example.
2630 *
2631 * Returns 0 for success.
2632 */
2633int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2634 struct snd_ctl_elem_value *ucontrol)
2635{
2636 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002637 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002638 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002639
2640 reg_val = snd_soc_read(codec, e->reg);
2641 val = (reg_val >> e->shift_l) & e->mask;
2642 for (mux = 0; mux < e->max; mux++) {
2643 if (val == e->values[mux])
2644 break;
2645 }
2646 ucontrol->value.enumerated.item[0] = mux;
2647 if (e->shift_l != e->shift_r) {
2648 val = (reg_val >> e->shift_r) & e->mask;
2649 for (mux = 0; mux < e->max; mux++) {
2650 if (val == e->values[mux])
2651 break;
2652 }
2653 ucontrol->value.enumerated.item[1] = mux;
2654 }
2655
2656 return 0;
2657}
2658EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2659
2660/**
2661 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2662 * @kcontrol: mixer control
2663 * @ucontrol: control element information
2664 *
2665 * Callback to set the value of a double semi enumerated mixer.
2666 *
2667 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2668 * used for handling bitfield coded enumeration for example.
2669 *
2670 * Returns 0 for success.
2671 */
2672int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2673 struct snd_ctl_elem_value *ucontrol)
2674{
2675 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002676 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002677 unsigned int val;
2678 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002679
2680 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2681 return -EINVAL;
2682 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2683 mask = e->mask << e->shift_l;
2684 if (e->shift_l != e->shift_r) {
2685 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2686 return -EINVAL;
2687 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2688 mask |= e->mask << e->shift_r;
2689 }
2690
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002691 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002692}
2693EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2694
2695/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002696 * snd_soc_info_volsw - single mixer info callback
2697 * @kcontrol: mixer control
2698 * @uinfo: control element information
2699 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002700 * Callback to provide information about a single mixer control, or a double
2701 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002702 *
2703 * Returns 0 for success.
2704 */
2705int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2706 struct snd_ctl_elem_info *uinfo)
2707{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002708 struct soc_mixer_control *mc =
2709 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002710 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002711
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002712 if (!mc->platform_max)
2713 mc->platform_max = mc->max;
2714 platform_max = mc->platform_max;
2715
2716 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002717 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2718 else
2719 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2720
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002721 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002722 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002723 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002724 return 0;
2725}
2726EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2727
2728/**
2729 * snd_soc_get_volsw - single mixer get callback
2730 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002731 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002732 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002733 * Callback to get the value of a single mixer control, or a double mixer
2734 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002735 *
2736 * Returns 0 for success.
2737 */
2738int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2739 struct snd_ctl_elem_value *ucontrol)
2740{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002741 struct soc_mixer_control *mc =
2742 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002743 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002744 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002745 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002746 unsigned int shift = mc->shift;
2747 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002748 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002749 unsigned int mask = (1 << fls(max)) - 1;
2750 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002751
2752 ucontrol->value.integer.value[0] =
2753 (snd_soc_read(codec, reg) >> shift) & mask;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002754 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002755 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002756 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002757
2758 if (snd_soc_volsw_is_stereo(mc)) {
2759 if (reg == reg2)
2760 ucontrol->value.integer.value[1] =
2761 (snd_soc_read(codec, reg) >> rshift) & mask;
2762 else
2763 ucontrol->value.integer.value[1] =
2764 (snd_soc_read(codec, reg2) >> shift) & mask;
2765 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002766 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002767 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002768 }
2769
2770 return 0;
2771}
2772EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2773
2774/**
2775 * snd_soc_put_volsw - single mixer put callback
2776 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002777 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002778 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002779 * Callback to set the value of a single mixer control, or a double mixer
2780 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002781 *
2782 * Returns 0 for success.
2783 */
2784int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2785 struct snd_ctl_elem_value *ucontrol)
2786{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002787 struct soc_mixer_control *mc =
2788 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002789 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002790 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002791 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002792 unsigned int shift = mc->shift;
2793 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002794 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002795 unsigned int mask = (1 << fls(max)) - 1;
2796 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002797 int err;
2798 bool type_2r = 0;
2799 unsigned int val2 = 0;
2800 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002801
2802 val = (ucontrol->value.integer.value[0] & mask);
2803 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002804 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002805 val_mask = mask << shift;
2806 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002807 if (snd_soc_volsw_is_stereo(mc)) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002808 val2 = (ucontrol->value.integer.value[1] & mask);
2809 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002810 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002811 if (reg == reg2) {
2812 val_mask |= mask << rshift;
2813 val |= val2 << rshift;
2814 } else {
2815 val2 = val2 << shift;
2816 type_2r = 1;
2817 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002818 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002819 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002820 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002821 return err;
2822
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002823 if (type_2r)
2824 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2825
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002826 return err;
2827}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002828EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002829
Mark Browne13ac2e2008-05-28 17:58:05 +01002830/**
Brian Austin1d99f242012-03-30 10:43:55 -05002831 * snd_soc_get_volsw_sx - single mixer get callback
2832 * @kcontrol: mixer control
2833 * @ucontrol: control element information
2834 *
2835 * Callback to get the value of a single mixer control, or a double mixer
2836 * control that spans 2 registers.
2837 *
2838 * Returns 0 for success.
2839 */
2840int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2841 struct snd_ctl_elem_value *ucontrol)
2842{
2843 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2844 struct soc_mixer_control *mc =
2845 (struct soc_mixer_control *)kcontrol->private_value;
2846
2847 unsigned int reg = mc->reg;
2848 unsigned int reg2 = mc->rreg;
2849 unsigned int shift = mc->shift;
2850 unsigned int rshift = mc->rshift;
2851 int max = mc->max;
2852 int min = mc->min;
2853 int mask = (1 << (fls(min + max) - 1)) - 1;
2854
2855 ucontrol->value.integer.value[0] =
2856 ((snd_soc_read(codec, reg) >> shift) - min) & mask;
2857
2858 if (snd_soc_volsw_is_stereo(mc))
2859 ucontrol->value.integer.value[1] =
2860 ((snd_soc_read(codec, reg2) >> rshift) - min) & mask;
2861
2862 return 0;
2863}
2864EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2865
2866/**
2867 * snd_soc_put_volsw_sx - double mixer set callback
2868 * @kcontrol: mixer control
2869 * @uinfo: control element information
2870 *
2871 * Callback to set the value of a double mixer control that spans 2 registers.
2872 *
2873 * Returns 0 for success.
2874 */
2875int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2876 struct snd_ctl_elem_value *ucontrol)
2877{
2878 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2879 struct soc_mixer_control *mc =
2880 (struct soc_mixer_control *)kcontrol->private_value;
2881
2882 unsigned int reg = mc->reg;
2883 unsigned int reg2 = mc->rreg;
2884 unsigned int shift = mc->shift;
2885 unsigned int rshift = mc->rshift;
2886 int max = mc->max;
2887 int min = mc->min;
2888 int mask = (1 << (fls(min + max) - 1)) - 1;
Brian Austin27f1d752012-04-03 11:33:50 -05002889 int err = 0;
Brian Austin1d99f242012-03-30 10:43:55 -05002890 unsigned short val, val_mask, val2 = 0;
2891
2892 val_mask = mask << shift;
2893 val = (ucontrol->value.integer.value[0] + min) & mask;
2894 val = val << shift;
2895
Mukund Navadad0558522012-11-09 11:53:40 +05302896 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
2897 if (err < 0)
2898 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002899
2900 if (snd_soc_volsw_is_stereo(mc)) {
2901 val_mask = mask << rshift;
2902 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2903 val2 = val2 << rshift;
2904
2905 if (snd_soc_update_bits_locked(codec, reg2, val_mask, val2))
2906 return err;
2907 }
2908 return 0;
2909}
2910EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2911
2912/**
Mark Browne13ac2e2008-05-28 17:58:05 +01002913 * snd_soc_info_volsw_s8 - signed mixer info callback
2914 * @kcontrol: mixer control
2915 * @uinfo: control element information
2916 *
2917 * Callback to provide information about a signed mixer control.
2918 *
2919 * Returns 0 for success.
2920 */
2921int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2922 struct snd_ctl_elem_info *uinfo)
2923{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002924 struct soc_mixer_control *mc =
2925 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002926 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002927 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002928
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002929 if (!mc->platform_max)
2930 mc->platform_max = mc->max;
2931 platform_max = mc->platform_max;
2932
Mark Browne13ac2e2008-05-28 17:58:05 +01002933 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2934 uinfo->count = 2;
2935 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002936 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002937 return 0;
2938}
2939EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2940
2941/**
2942 * snd_soc_get_volsw_s8 - signed mixer get callback
2943 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002944 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002945 *
2946 * Callback to get the value of a signed mixer control.
2947 *
2948 * Returns 0 for success.
2949 */
2950int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2951 struct snd_ctl_elem_value *ucontrol)
2952{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002953 struct soc_mixer_control *mc =
2954 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002955 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002956 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002957 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002958 int val = snd_soc_read(codec, reg);
2959
2960 ucontrol->value.integer.value[0] =
2961 ((signed char)(val & 0xff))-min;
2962 ucontrol->value.integer.value[1] =
2963 ((signed char)((val >> 8) & 0xff))-min;
2964 return 0;
2965}
2966EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2967
2968/**
2969 * snd_soc_put_volsw_sgn - signed mixer put callback
2970 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002971 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002972 *
2973 * Callback to set the value of a signed mixer control.
2974 *
2975 * Returns 0 for success.
2976 */
2977int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2978 struct snd_ctl_elem_value *ucontrol)
2979{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002980 struct soc_mixer_control *mc =
2981 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002982 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002983 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002984 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002985 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002986
2987 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2988 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2989
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002990 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002991}
2992EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2993
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002994/**
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01002995 * snd_soc_info_volsw_range - single mixer info callback with range.
2996 * @kcontrol: mixer control
2997 * @uinfo: control element information
2998 *
2999 * Callback to provide information, within a range, about a single
3000 * mixer control.
3001 *
3002 * returns 0 for success.
3003 */
3004int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
3005 struct snd_ctl_elem_info *uinfo)
3006{
3007 struct soc_mixer_control *mc =
3008 (struct soc_mixer_control *)kcontrol->private_value;
3009 int platform_max;
3010 int min = mc->min;
3011
3012 if (!mc->platform_max)
3013 mc->platform_max = mc->max;
3014 platform_max = mc->platform_max;
3015
3016 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Mark Brown9bde4f02012-12-19 16:05:00 +00003017 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003018 uinfo->value.integer.min = 0;
3019 uinfo->value.integer.max = platform_max - min;
3020
3021 return 0;
3022}
3023EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
3024
3025/**
3026 * snd_soc_put_volsw_range - single mixer put value callback with range.
3027 * @kcontrol: mixer control
3028 * @ucontrol: control element information
3029 *
3030 * Callback to set the value, within a range, for a single mixer control.
3031 *
3032 * Returns 0 for success.
3033 */
3034int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
3035 struct snd_ctl_elem_value *ucontrol)
3036{
3037 struct soc_mixer_control *mc =
3038 (struct soc_mixer_control *)kcontrol->private_value;
3039 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3040 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003041 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003042 unsigned int shift = mc->shift;
3043 int min = mc->min;
3044 int max = mc->max;
3045 unsigned int mask = (1 << fls(max)) - 1;
3046 unsigned int invert = mc->invert;
3047 unsigned int val, val_mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00003048 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003049
3050 val = ((ucontrol->value.integer.value[0] + min) & mask);
3051 if (invert)
3052 val = max - val;
3053 val_mask = mask << shift;
3054 val = val << shift;
3055
Mark Brown9bde4f02012-12-19 16:05:00 +00003056 ret = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Joonyoung Shim0eaa6cc2013-03-26 14:41:05 +09003057 if (ret < 0)
Mark Brown9bde4f02012-12-19 16:05:00 +00003058 return ret;
3059
3060 if (snd_soc_volsw_is_stereo(mc)) {
3061 val = ((ucontrol->value.integer.value[1] + min) & mask);
3062 if (invert)
3063 val = max - val;
3064 val_mask = mask << shift;
3065 val = val << shift;
3066
3067 ret = snd_soc_update_bits_locked(codec, rreg, val_mask, val);
3068 }
3069
3070 return ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003071}
3072EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
3073
3074/**
3075 * snd_soc_get_volsw_range - single mixer get callback with range
3076 * @kcontrol: mixer control
3077 * @ucontrol: control element information
3078 *
3079 * Callback to get the value, within a range, of a single mixer control.
3080 *
3081 * Returns 0 for success.
3082 */
3083int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
3084 struct snd_ctl_elem_value *ucontrol)
3085{
3086 struct soc_mixer_control *mc =
3087 (struct soc_mixer_control *)kcontrol->private_value;
3088 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3089 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003090 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003091 unsigned int shift = mc->shift;
3092 int min = mc->min;
3093 int max = mc->max;
3094 unsigned int mask = (1 << fls(max)) - 1;
3095 unsigned int invert = mc->invert;
3096
3097 ucontrol->value.integer.value[0] =
3098 (snd_soc_read(codec, reg) >> shift) & mask;
3099 if (invert)
3100 ucontrol->value.integer.value[0] =
3101 max - ucontrol->value.integer.value[0];
3102 ucontrol->value.integer.value[0] =
3103 ucontrol->value.integer.value[0] - min;
3104
Mark Brown9bde4f02012-12-19 16:05:00 +00003105 if (snd_soc_volsw_is_stereo(mc)) {
3106 ucontrol->value.integer.value[1] =
3107 (snd_soc_read(codec, rreg) >> shift) & mask;
3108 if (invert)
3109 ucontrol->value.integer.value[1] =
3110 max - ucontrol->value.integer.value[1];
3111 ucontrol->value.integer.value[1] =
3112 ucontrol->value.integer.value[1] - min;
3113 }
3114
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003115 return 0;
3116}
3117EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
3118
3119/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003120 * snd_soc_limit_volume - Set new limit to an existing volume control.
3121 *
3122 * @codec: where to look for the control
3123 * @name: Name of the control
3124 * @max: new maximum limit
3125 *
3126 * Return 0 for success, else error.
3127 */
3128int snd_soc_limit_volume(struct snd_soc_codec *codec,
3129 const char *name, int max)
3130{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003131 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003132 struct snd_kcontrol *kctl;
3133 struct soc_mixer_control *mc;
3134 int found = 0;
3135 int ret = -EINVAL;
3136
3137 /* Sanity check for name and max */
3138 if (unlikely(!name || max <= 0))
3139 return -EINVAL;
3140
3141 list_for_each_entry(kctl, &card->controls, list) {
3142 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3143 found = 1;
3144 break;
3145 }
3146 }
3147 if (found) {
3148 mc = (struct soc_mixer_control *)kctl->private_value;
3149 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03003150 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003151 ret = 0;
3152 }
3153 }
3154 return ret;
3155}
3156EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3157
Mark Brown71d08512011-10-10 18:31:26 +01003158int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
3159 struct snd_ctl_elem_info *uinfo)
3160{
3161 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3162 struct soc_bytes *params = (void *)kcontrol->private_value;
3163
3164 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
3165 uinfo->count = params->num_regs * codec->val_bytes;
3166
3167 return 0;
3168}
3169EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
3170
3171int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
3172 struct snd_ctl_elem_value *ucontrol)
3173{
3174 struct soc_bytes *params = (void *)kcontrol->private_value;
3175 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3176 int ret;
3177
3178 if (codec->using_regmap)
3179 ret = regmap_raw_read(codec->control_data, params->base,
3180 ucontrol->value.bytes.data,
3181 params->num_regs * codec->val_bytes);
3182 else
3183 ret = -EINVAL;
3184
Mark Brownf831b052012-02-17 16:20:33 -08003185 /* Hide any masked bytes to ensure consistent data reporting */
3186 if (ret == 0 && params->mask) {
3187 switch (codec->val_bytes) {
3188 case 1:
3189 ucontrol->value.bytes.data[0] &= ~params->mask;
3190 break;
3191 case 2:
3192 ((u16 *)(&ucontrol->value.bytes.data))[0]
3193 &= ~params->mask;
3194 break;
3195 case 4:
3196 ((u32 *)(&ucontrol->value.bytes.data))[0]
3197 &= ~params->mask;
3198 break;
3199 default:
3200 return -EINVAL;
3201 }
3202 }
3203
Mark Brown71d08512011-10-10 18:31:26 +01003204 return ret;
3205}
3206EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
3207
3208int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
3209 struct snd_ctl_elem_value *ucontrol)
3210{
3211 struct soc_bytes *params = (void *)kcontrol->private_value;
3212 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownf831b052012-02-17 16:20:33 -08003213 int ret, len;
3214 unsigned int val;
3215 void *data;
Mark Brown71d08512011-10-10 18:31:26 +01003216
Mark Brownf831b052012-02-17 16:20:33 -08003217 if (!codec->using_regmap)
3218 return -EINVAL;
3219
Mark Brownf831b052012-02-17 16:20:33 -08003220 len = params->num_regs * codec->val_bytes;
3221
Mark Brownb5a8fe42013-01-20 21:42:22 +09003222 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
3223 if (!data)
3224 return -ENOMEM;
3225
Mark Brownf831b052012-02-17 16:20:33 -08003226 /*
3227 * If we've got a mask then we need to preserve the register
3228 * bits. We shouldn't modify the incoming data so take a
3229 * copy.
3230 */
3231 if (params->mask) {
3232 ret = regmap_read(codec->control_data, params->base, &val);
3233 if (ret != 0)
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003234 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003235
3236 val &= params->mask;
3237
Mark Brownf831b052012-02-17 16:20:33 -08003238 switch (codec->val_bytes) {
3239 case 1:
3240 ((u8 *)data)[0] &= ~params->mask;
3241 ((u8 *)data)[0] |= val;
3242 break;
3243 case 2:
3244 ((u16 *)data)[0] &= cpu_to_be16(~params->mask);
3245 ((u16 *)data)[0] |= cpu_to_be16(val);
3246 break;
3247 case 4:
3248 ((u32 *)data)[0] &= cpu_to_be32(~params->mask);
3249 ((u32 *)data)[0] |= cpu_to_be32(val);
3250 break;
3251 default:
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003252 ret = -EINVAL;
3253 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003254 }
3255 }
3256
3257 ret = regmap_raw_write(codec->control_data, params->base,
3258 data, len);
3259
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003260out:
Mark Brownb5a8fe42013-01-20 21:42:22 +09003261 kfree(data);
Mark Brown71d08512011-10-10 18:31:26 +01003262
3263 return ret;
3264}
3265EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
3266
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003267/**
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003268 * snd_soc_info_xr_sx - signed multi register info callback
3269 * @kcontrol: mreg control
3270 * @uinfo: control element information
3271 *
3272 * Callback to provide information of a control that can
3273 * span multiple codec registers which together
3274 * forms a single signed value in a MSB/LSB manner.
3275 *
3276 * Returns 0 for success.
3277 */
3278int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
3279 struct snd_ctl_elem_info *uinfo)
3280{
3281 struct soc_mreg_control *mc =
3282 (struct soc_mreg_control *)kcontrol->private_value;
3283 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3284 uinfo->count = 1;
3285 uinfo->value.integer.min = mc->min;
3286 uinfo->value.integer.max = mc->max;
3287
3288 return 0;
3289}
3290EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
3291
3292/**
3293 * snd_soc_get_xr_sx - signed multi register get callback
3294 * @kcontrol: mreg control
3295 * @ucontrol: control element information
3296 *
3297 * Callback to get the value of a control that can span
3298 * multiple codec registers which together forms a single
3299 * signed value in a MSB/LSB manner. The control supports
3300 * specifying total no of bits used to allow for bitfields
3301 * across the multiple codec registers.
3302 *
3303 * Returns 0 for success.
3304 */
3305int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
3306 struct snd_ctl_elem_value *ucontrol)
3307{
3308 struct soc_mreg_control *mc =
3309 (struct soc_mreg_control *)kcontrol->private_value;
3310 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3311 unsigned int regbase = mc->regbase;
3312 unsigned int regcount = mc->regcount;
3313 unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3314 unsigned int regwmask = (1<<regwshift)-1;
3315 unsigned int invert = mc->invert;
3316 unsigned long mask = (1UL<<mc->nbits)-1;
3317 long min = mc->min;
3318 long max = mc->max;
3319 long val = 0;
3320 unsigned long regval;
3321 unsigned int i;
3322
3323 for (i = 0; i < regcount; i++) {
3324 regval = snd_soc_read(codec, regbase+i) & regwmask;
3325 val |= regval << (regwshift*(regcount-i-1));
3326 }
3327 val &= mask;
3328 if (min < 0 && val > max)
3329 val |= ~mask;
3330 if (invert)
3331 val = max - val;
3332 ucontrol->value.integer.value[0] = val;
3333
3334 return 0;
3335}
3336EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
3337
3338/**
3339 * snd_soc_put_xr_sx - signed multi register get callback
3340 * @kcontrol: mreg control
3341 * @ucontrol: control element information
3342 *
3343 * Callback to set the value of a control that can span
3344 * multiple codec registers which together forms a single
3345 * signed value in a MSB/LSB manner. The control supports
3346 * specifying total no of bits used to allow for bitfields
3347 * across the multiple codec registers.
3348 *
3349 * Returns 0 for success.
3350 */
3351int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
3352 struct snd_ctl_elem_value *ucontrol)
3353{
3354 struct soc_mreg_control *mc =
3355 (struct soc_mreg_control *)kcontrol->private_value;
3356 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3357 unsigned int regbase = mc->regbase;
3358 unsigned int regcount = mc->regcount;
3359 unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3360 unsigned int regwmask = (1<<regwshift)-1;
3361 unsigned int invert = mc->invert;
3362 unsigned long mask = (1UL<<mc->nbits)-1;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003363 long max = mc->max;
3364 long val = ucontrol->value.integer.value[0];
3365 unsigned int i, regval, regmask;
3366 int err;
3367
3368 if (invert)
3369 val = max - val;
3370 val &= mask;
3371 for (i = 0; i < regcount; i++) {
3372 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3373 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
3374 err = snd_soc_update_bits_locked(codec, regbase+i,
3375 regmask, regval);
3376 if (err < 0)
3377 return err;
3378 }
3379
3380 return 0;
3381}
3382EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3383
3384/**
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003385 * snd_soc_get_strobe - strobe get callback
3386 * @kcontrol: mixer control
3387 * @ucontrol: control element information
3388 *
3389 * Callback get the value of a strobe mixer control.
3390 *
3391 * Returns 0 for success.
3392 */
3393int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
3394 struct snd_ctl_elem_value *ucontrol)
3395{
3396 struct soc_mixer_control *mc =
3397 (struct soc_mixer_control *)kcontrol->private_value;
3398 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3399 unsigned int reg = mc->reg;
3400 unsigned int shift = mc->shift;
3401 unsigned int mask = 1 << shift;
3402 unsigned int invert = mc->invert != 0;
3403 unsigned int val = snd_soc_read(codec, reg) & mask;
3404
3405 if (shift != 0 && val != 0)
3406 val = val >> shift;
3407 ucontrol->value.enumerated.item[0] = val ^ invert;
3408
3409 return 0;
3410}
3411EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3412
3413/**
3414 * snd_soc_put_strobe - strobe put callback
3415 * @kcontrol: mixer control
3416 * @ucontrol: control element information
3417 *
3418 * Callback strobe a register bit to high then low (or the inverse)
3419 * in one pass of a single mixer enum control.
3420 *
3421 * Returns 1 for success.
3422 */
3423int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3424 struct snd_ctl_elem_value *ucontrol)
3425{
3426 struct soc_mixer_control *mc =
3427 (struct soc_mixer_control *)kcontrol->private_value;
3428 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3429 unsigned int reg = mc->reg;
3430 unsigned int shift = mc->shift;
3431 unsigned int mask = 1 << shift;
3432 unsigned int invert = mc->invert != 0;
3433 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3434 unsigned int val1 = (strobe ^ invert) ? mask : 0;
3435 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3436 int err;
3437
3438 err = snd_soc_update_bits_locked(codec, reg, mask, val1);
3439 if (err < 0)
3440 return err;
3441
3442 err = snd_soc_update_bits_locked(codec, reg, mask, val2);
3443 return err;
3444}
3445EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3446
3447/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003448 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3449 * @dai: DAI
3450 * @clk_id: DAI specific clock ID
3451 * @freq: new clock frequency in Hz
3452 * @dir: new clock direction - input/output.
3453 *
3454 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3455 */
3456int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3457 unsigned int freq, int dir)
3458{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003459 if (dai->driver && dai->driver->ops->set_sysclk)
3460 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003461 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003462 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00003463 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003464 else
3465 return -EINVAL;
3466}
3467EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3468
3469/**
Mark Brownec4ee522011-03-07 20:58:11 +00003470 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3471 * @codec: CODEC
3472 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01003473 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00003474 * @freq: new clock frequency in Hz
3475 * @dir: new clock direction - input/output.
3476 *
3477 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3478 */
3479int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01003480 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00003481{
3482 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003483 return codec->driver->set_sysclk(codec, clk_id, source,
3484 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003485 else
3486 return -EINVAL;
3487}
3488EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3489
3490/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003491 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3492 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003493 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003494 * @div: new clock divisor.
3495 *
3496 * Configures the clock dividers. This is used to derive the best DAI bit and
3497 * frame clocks from the system or master clock. It's best to set the DAI bit
3498 * and frame clocks as low as possible to save system power.
3499 */
3500int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3501 int div_id, int div)
3502{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003503 if (dai->driver && dai->driver->ops->set_clkdiv)
3504 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003505 else
3506 return -EINVAL;
3507}
3508EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3509
3510/**
3511 * snd_soc_dai_set_pll - configure DAI PLL.
3512 * @dai: DAI
3513 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003514 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003515 * @freq_in: PLL input clock frequency in Hz
3516 * @freq_out: requested PLL output clock frequency in Hz
3517 *
3518 * Configures and enables PLL to generate output clock based on input clock.
3519 */
Mark Brown85488032009-09-05 18:52:16 +01003520int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3521 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003522{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003523 if (dai->driver && dai->driver->ops->set_pll)
3524 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003525 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003526 else if (dai->codec && dai->codec->driver->set_pll)
3527 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3528 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003529 else
3530 return -EINVAL;
3531}
3532EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3533
Mark Brownec4ee522011-03-07 20:58:11 +00003534/*
3535 * snd_soc_codec_set_pll - configure codec PLL.
3536 * @codec: CODEC
3537 * @pll_id: DAI specific PLL ID
3538 * @source: DAI specific source for the PLL
3539 * @freq_in: PLL input clock frequency in Hz
3540 * @freq_out: requested PLL output clock frequency in Hz
3541 *
3542 * Configures and enables PLL to generate output clock based on input clock.
3543 */
3544int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3545 unsigned int freq_in, unsigned int freq_out)
3546{
3547 if (codec->driver->set_pll)
3548 return codec->driver->set_pll(codec, pll_id, source,
3549 freq_in, freq_out);
3550 else
3551 return -EINVAL;
3552}
3553EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3554
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003555/**
3556 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3557 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003558 * @fmt: SND_SOC_DAIFMT_ format value.
3559 *
3560 * Configures the DAI hardware format and clocking.
3561 */
3562int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3563{
Shawn Guo5e4ba562012-03-09 00:59:40 +08003564 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003565 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08003566 if (dai->driver->ops->set_fmt == NULL)
3567 return -ENOTSUPP;
3568 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003569}
3570EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3571
3572/**
3573 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3574 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003575 * @tx_mask: bitmask representing active TX slots.
3576 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003577 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003578 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003579 *
3580 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3581 * specific.
3582 */
3583int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003584 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003585{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003586 if (dai->driver && dai->driver->ops->set_tdm_slot)
3587 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003588 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003589 else
3590 return -EINVAL;
3591}
3592EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3593
3594/**
Barry Song472df3c2009-09-12 01:16:29 +08003595 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3596 * @dai: DAI
3597 * @tx_num: how many TX channels
3598 * @tx_slot: pointer to an array which imply the TX slot number channel
3599 * 0~num-1 uses
3600 * @rx_num: how many RX channels
3601 * @rx_slot: pointer to an array which imply the RX slot number channel
3602 * 0~num-1 uses
3603 *
3604 * configure the relationship between channel number and TDM slot number.
3605 */
3606int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3607 unsigned int tx_num, unsigned int *tx_slot,
3608 unsigned int rx_num, unsigned int *rx_slot)
3609{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003610 if (dai->driver && dai->driver->ops->set_channel_map)
3611 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003612 rx_num, rx_slot);
3613 else
3614 return -EINVAL;
3615}
3616EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3617
3618/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003619 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3620 * @dai: DAI
3621 * @tristate: tristate enable
3622 *
3623 * Tristates the DAI so that others can use it.
3624 */
3625int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3626{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003627 if (dai->driver && dai->driver->ops->set_tristate)
3628 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003629 else
3630 return -EINVAL;
3631}
3632EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3633
3634/**
3635 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3636 * @dai: DAI
3637 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00003638 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003639 *
3640 * Mutes the DAI DAC.
3641 */
Mark Brownda183962013-02-06 15:44:07 +00003642int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
3643 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003644{
Mark Brownda183962013-02-06 15:44:07 +00003645 if (!dai->driver)
3646 return -ENOTSUPP;
3647
3648 if (dai->driver->ops->mute_stream)
3649 return dai->driver->ops->mute_stream(dai, mute, direction);
3650 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
3651 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003652 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003653 else
Mark Brown04570c62012-04-13 19:16:03 +01003654 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003655}
3656EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3657
Mark Brownc5af3a22008-11-28 13:29:45 +00003658/**
3659 * snd_soc_register_card - Register a card with the ASoC core
3660 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003661 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003662 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003663 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303664int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003665{
Mark Brownb19e6e72012-03-14 21:18:39 +00003666 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003667
Mark Brownc5af3a22008-11-28 13:29:45 +00003668 if (!card->name || !card->dev)
3669 return -EINVAL;
3670
Stephen Warren5a504962011-12-21 10:40:59 -07003671 for (i = 0; i < card->num_links; i++) {
3672 struct snd_soc_dai_link *link = &card->dai_link[i];
3673
3674 /*
3675 * Codec must be specified by 1 of name or OF node,
3676 * not both or neither.
3677 */
3678 if (!!link->codec_name == !!link->codec_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003679 dev_err(card->dev,
3680 "ASoC: Neither/both codec name/of_node are set for %s\n",
3681 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003682 return -EINVAL;
3683 }
Stephen Warrenbc926572012-05-25 18:22:11 -06003684 /* Codec DAI name must be specified */
3685 if (!link->codec_dai_name) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003686 dev_err(card->dev,
3687 "ASoC: codec_dai_name not set for %s\n",
3688 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003689 return -EINVAL;
3690 }
Stephen Warren5a504962011-12-21 10:40:59 -07003691
3692 /*
3693 * Platform may be specified by either name or OF node, but
3694 * can be left unspecified, and a dummy platform will be used.
3695 */
3696 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003697 dev_err(card->dev,
3698 "ASoC: Both platform name/of_node are set for %s\n",
3699 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003700 return -EINVAL;
3701 }
3702
3703 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06003704 * CPU device may be specified by either name or OF node, but
3705 * can be left unspecified, and will be matched based on DAI
3706 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07003707 */
Stephen Warrenbc926572012-05-25 18:22:11 -06003708 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003709 dev_err(card->dev,
3710 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3711 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003712 return -EINVAL;
3713 }
3714 /*
3715 * At least one of CPU DAI name or CPU device name/node must be
3716 * specified
3717 */
3718 if (!link->cpu_dai_name &&
3719 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003720 dev_err(card->dev,
3721 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3722 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003723 return -EINVAL;
3724 }
3725 }
3726
Mark Browned77cc12011-05-03 18:25:34 +01003727 dev_set_drvdata(card->dev, card);
3728
Stephen Warren111c6412011-01-28 14:26:35 -07003729 snd_soc_initialize_card_lists(card);
3730
Vinod Koul150dd2f2011-01-13 22:48:32 +05303731 soc_init_card_debugfs(card);
3732
Mark Brown181a6892012-03-14 20:18:49 +00003733 card->rtd = devm_kzalloc(card->dev,
3734 sizeof(struct snd_soc_pcm_runtime) *
3735 (card->num_links + card->num_aux_devs),
3736 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003737 if (card->rtd == NULL)
3738 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01003739 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003740 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003741
3742 for (i = 0; i < card->num_links; i++)
3743 card->rtd[i].dai_link = &card->dai_link[i];
3744
Mark Brownc5af3a22008-11-28 13:29:45 +00003745 INIT_LIST_HEAD(&card->list);
Mark Browndb432b42011-10-03 21:06:40 +01003746 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00003747 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003748 mutex_init(&card->mutex);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003749 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003750
Mark Brownb19e6e72012-03-14 21:18:39 +00003751 ret = snd_soc_instantiate_card(card);
3752 if (ret != 0)
3753 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003754
Mark Brownb19e6e72012-03-14 21:18:39 +00003755 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00003756}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303757EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003758
3759/**
3760 * snd_soc_unregister_card - Unregister a card with the ASoC core
3761 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003762 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003763 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003764 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303765int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003766{
Vinod Koulb0e26482011-01-13 22:48:02 +05303767 if (card->instantiated)
3768 soc_cleanup_card_resources(card);
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003769 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00003770
3771 return 0;
3772}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303773EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003774
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003775/*
3776 * Simplify DAI link configuration by removing ".-1" from device names
3777 * and sanitizing names.
3778 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003779static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003780{
3781 char *found, name[NAME_SIZE];
3782 int id1, id2;
3783
3784 if (dev_name(dev) == NULL)
3785 return NULL;
3786
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003787 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003788
3789 /* are we a "%s.%d" name (platform and SPI components) */
3790 found = strstr(name, dev->driver->name);
3791 if (found) {
3792 /* get ID */
3793 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3794
3795 /* discard ID from name if ID == -1 */
3796 if (*id == -1)
3797 found[strlen(dev->driver->name)] = '\0';
3798 }
3799
3800 } else {
3801 /* I2C component devices are named "bus-addr" */
3802 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3803 char tmp[NAME_SIZE];
3804
3805 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003806 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003807
3808 /* sanitize component name for DAI link creation */
3809 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003810 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003811 } else
3812 *id = 0;
3813 }
3814
3815 return kstrdup(name, GFP_KERNEL);
3816}
3817
3818/*
3819 * Simplify DAI link naming for single devices with multiple DAIs by removing
3820 * any ".-1" and using the DAI name (instead of device name).
3821 */
3822static inline char *fmt_multiple_name(struct device *dev,
3823 struct snd_soc_dai_driver *dai_drv)
3824{
3825 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003826 dev_err(dev,
3827 "ASoC: error - multiple DAI %s registered with no name\n",
3828 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003829 return NULL;
3830 }
3831
3832 return kstrdup(dai_drv->name, GFP_KERNEL);
3833}
3834
Mark Brown91151712008-11-30 23:31:24 +00003835/**
3836 * snd_soc_register_dai - Register a DAI with the ASoC core
3837 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003838 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003839 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003840static int snd_soc_register_dai(struct device *dev,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003841 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003842{
Mark Brown054880f2012-04-09 17:29:19 +01003843 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003844 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003845
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003846 dev_dbg(dev, "ASoC: dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003847
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003848 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3849 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003850 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003851
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003852 /* create DAI component name */
3853 dai->name = fmt_single_name(dev, &dai->id);
3854 if (dai->name == NULL) {
3855 kfree(dai);
3856 return -ENOMEM;
3857 }
3858
3859 dai->dev = dev;
3860 dai->driver = dai_drv;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003861 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003862 if (!dai->driver->ops)
3863 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003864
3865 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003866
3867 list_for_each_entry(codec, &codec_list, list) {
3868 if (codec->dev == dev) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003869 dev_dbg(dev, "ASoC: Mapped DAI %s to CODEC %s\n",
Mark Brown054880f2012-04-09 17:29:19 +01003870 dai->name, codec->name);
3871 dai->codec = codec;
3872 break;
3873 }
3874 }
3875
Peter Ujfalusi5f800082012-08-07 10:24:13 +03003876 if (!dai->codec)
3877 dai->dapm.idle_bias_off = 1;
3878
Mark Brown91151712008-11-30 23:31:24 +00003879 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003880
Mark Brown91151712008-11-30 23:31:24 +00003881 mutex_unlock(&client_mutex);
3882
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003883 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003884
3885 return 0;
3886}
Mark Brown91151712008-11-30 23:31:24 +00003887
3888/**
3889 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3890 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003891 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003892 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003893static void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003894{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003895 struct snd_soc_dai *dai;
3896
3897 list_for_each_entry(dai, &dai_list, list) {
3898 if (dev == dai->dev)
3899 goto found;
3900 }
3901 return;
3902
3903found:
Mark Brown91151712008-11-30 23:31:24 +00003904 mutex_lock(&client_mutex);
3905 list_del(&dai->list);
3906 mutex_unlock(&client_mutex);
3907
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003908 dev_dbg(dev, "ASoC: Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003909 kfree(dai->name);
3910 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003911}
Mark Brown91151712008-11-30 23:31:24 +00003912
3913/**
3914 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3915 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003916 * @dai: Array of DAIs to register
3917 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003918 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003919static int snd_soc_register_dais(struct device *dev,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003920 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003921{
Mark Brown054880f2012-04-09 17:29:19 +01003922 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003923 struct snd_soc_dai *dai;
3924 int i, ret = 0;
3925
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003926 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003927
3928 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003929
3930 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003931 if (dai == NULL) {
3932 ret = -ENOMEM;
3933 goto err;
3934 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003935
3936 /* create DAI component name */
3937 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3938 if (dai->name == NULL) {
3939 kfree(dai);
3940 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003941 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003942 }
3943
3944 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003945 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003946 if (dai->driver->id)
3947 dai->id = dai->driver->id;
3948 else
3949 dai->id = i;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003950 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003951 if (!dai->driver->ops)
3952 dai->driver->ops = &null_dai_ops;
3953
3954 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003955
3956 list_for_each_entry(codec, &codec_list, list) {
3957 if (codec->dev == dev) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003958 dev_dbg(dev,
3959 "ASoC: Mapped DAI %s to CODEC %s\n",
3960 dai->name, codec->name);
Mark Brown054880f2012-04-09 17:29:19 +01003961 dai->codec = codec;
3962 break;
3963 }
3964 }
3965
Peter Ujfalusi5f800082012-08-07 10:24:13 +03003966 if (!dai->codec)
3967 dai->dapm.idle_bias_off = 1;
3968
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003969 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003970
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003971 mutex_unlock(&client_mutex);
3972
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003973 dev_dbg(dai->dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003974 }
3975
3976 return 0;
3977
3978err:
3979 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003980 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003981
3982 return ret;
3983}
Mark Brown91151712008-11-30 23:31:24 +00003984
3985/**
3986 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3987 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003988 * @dai: Array of DAIs to unregister
3989 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003990 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003991static void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003992{
3993 int i;
3994
3995 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003996 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003997}
Mark Brown91151712008-11-30 23:31:24 +00003998
Mark Brown12a48a8c2008-12-03 19:40:30 +00003999/**
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004000 * snd_soc_register_component - Register a component with the ASoC core
4001 *
4002 */
4003static int
4004__snd_soc_register_component(struct device *dev,
4005 struct snd_soc_component *cmpnt,
4006 const struct snd_soc_component_driver *cmpnt_drv,
4007 struct snd_soc_dai_driver *dai_drv,
4008 int num_dai, bool allow_single_dai)
4009{
4010 int ret;
4011
4012 dev_dbg(dev, "component register %s\n", dev_name(dev));
4013
4014 if (!cmpnt) {
4015 dev_err(dev, "ASoC: Failed to connecting component\n");
4016 return -ENOMEM;
4017 }
4018
4019 cmpnt->name = fmt_single_name(dev, &cmpnt->id);
4020 if (!cmpnt->name) {
4021 dev_err(dev, "ASoC: Failed to simplifying name\n");
4022 return -ENOMEM;
4023 }
4024
4025 cmpnt->dev = dev;
4026 cmpnt->driver = cmpnt_drv;
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004027 cmpnt->dai_drv = dai_drv;
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004028 cmpnt->num_dai = num_dai;
4029
4030 /*
4031 * snd_soc_register_dai() uses fmt_single_name(), and
4032 * snd_soc_register_dais() uses fmt_multiple_name()
4033 * for dai->name which is used for name based matching
4034 *
4035 * this function is used from cpu/codec.
4036 * allow_single_dai flag can ignore "codec" driver reworking
4037 * since it had been used snd_soc_register_dais(),
4038 */
4039 if ((1 == num_dai) && allow_single_dai)
4040 ret = snd_soc_register_dai(dev, dai_drv);
4041 else
4042 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
4043 if (ret < 0) {
4044 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4045 goto error_component_name;
4046 }
4047
4048 mutex_lock(&client_mutex);
4049 list_add(&cmpnt->list, &component_list);
4050 mutex_unlock(&client_mutex);
4051
4052 dev_dbg(cmpnt->dev, "ASoC: Registered component '%s'\n", cmpnt->name);
4053
4054 return ret;
4055
4056error_component_name:
4057 kfree(cmpnt->name);
4058
4059 return ret;
4060}
4061
4062int snd_soc_register_component(struct device *dev,
4063 const struct snd_soc_component_driver *cmpnt_drv,
4064 struct snd_soc_dai_driver *dai_drv,
4065 int num_dai)
4066{
4067 struct snd_soc_component *cmpnt;
4068
4069 cmpnt = devm_kzalloc(dev, sizeof(*cmpnt), GFP_KERNEL);
4070 if (!cmpnt) {
4071 dev_err(dev, "ASoC: Failed to allocate memory\n");
4072 return -ENOMEM;
4073 }
4074
4075 return __snd_soc_register_component(dev, cmpnt, cmpnt_drv,
4076 dai_drv, num_dai, true);
4077}
4078EXPORT_SYMBOL_GPL(snd_soc_register_component);
4079
4080/**
4081 * snd_soc_unregister_component - Unregister a component from the ASoC core
4082 *
4083 */
4084void snd_soc_unregister_component(struct device *dev)
4085{
4086 struct snd_soc_component *cmpnt;
4087
4088 list_for_each_entry(cmpnt, &component_list, list) {
4089 if (dev == cmpnt->dev)
4090 goto found;
4091 }
4092 return;
4093
4094found:
4095 snd_soc_unregister_dais(dev, cmpnt->num_dai);
4096
4097 mutex_lock(&client_mutex);
4098 list_del(&cmpnt->list);
4099 mutex_unlock(&client_mutex);
4100
4101 dev_dbg(dev, "ASoC: Unregistered component '%s'\n", cmpnt->name);
4102 kfree(cmpnt->name);
4103}
4104EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
4105
4106/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004107 * snd_soc_add_platform - Add a platform to the ASoC core
4108 * @dev: The parent device for the platform
4109 * @platform: The platform to add
4110 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00004111 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004112int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01004113 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004114{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004115 /* create platform component name */
4116 platform->name = fmt_single_name(dev, &platform->id);
Dan Carpenterb5c745f2013-07-22 09:56:54 +03004117 if (platform->name == NULL)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004118 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004119
4120 platform->dev = dev;
4121 platform->driver = platform_drv;
Liam Girdwoodb7950642011-07-04 22:10:52 +01004122 platform->dapm.dev = dev;
4123 platform->dapm.platform = platform;
Liam Girdwood64a648c2011-07-25 11:15:15 +01004124 platform->dapm.stream_event = platform_drv->stream_event;
Liam Girdwoodcc22d372012-03-06 18:16:18 +00004125 mutex_init(&platform->mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004126
4127 mutex_lock(&client_mutex);
4128 list_add(&platform->list, &platform_list);
4129 mutex_unlock(&client_mutex);
4130
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004131 dev_dbg(dev, "ASoC: Registered platform '%s'\n", platform->name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004132
4133 return 0;
4134}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004135EXPORT_SYMBOL_GPL(snd_soc_add_platform);
4136
4137/**
4138 * snd_soc_register_platform - Register a platform with the ASoC core
4139 *
4140 * @platform: platform to register
4141 */
4142int snd_soc_register_platform(struct device *dev,
4143 const struct snd_soc_platform_driver *platform_drv)
4144{
4145 struct snd_soc_platform *platform;
4146 int ret;
4147
4148 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
4149
4150 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
4151 if (platform == NULL)
4152 return -ENOMEM;
4153
4154 ret = snd_soc_add_platform(dev, platform, platform_drv);
4155 if (ret)
4156 kfree(platform);
4157
4158 return ret;
4159}
Mark Brown12a48a8c2008-12-03 19:40:30 +00004160EXPORT_SYMBOL_GPL(snd_soc_register_platform);
4161
4162/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004163 * snd_soc_remove_platform - Remove a platform from the ASoC core
4164 * @platform: the platform to remove
4165 */
4166void snd_soc_remove_platform(struct snd_soc_platform *platform)
4167{
4168 mutex_lock(&client_mutex);
4169 list_del(&platform->list);
4170 mutex_unlock(&client_mutex);
4171
4172 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
4173 platform->name);
4174 kfree(platform->name);
4175}
4176EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
4177
4178struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
4179{
4180 struct snd_soc_platform *platform;
4181
4182 list_for_each_entry(platform, &platform_list, list) {
4183 if (dev == platform->dev)
4184 return platform;
4185 }
4186
4187 return NULL;
4188}
4189EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
4190
4191/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00004192 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4193 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004194 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00004195 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004196void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004197{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004198 struct snd_soc_platform *platform;
4199
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004200 platform = snd_soc_lookup_platform(dev);
4201 if (!platform)
4202 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004203
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004204 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004205 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004206}
4207EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
4208
Mark Brown151ab222009-05-09 16:22:58 +01004209static u64 codec_format_map[] = {
4210 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
4211 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
4212 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
4213 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
4214 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
4215 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
4216 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4217 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4218 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
4219 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
4220 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
4221 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
4222 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
4223 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
4224 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4225 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
4226};
4227
4228/* Fix up the DAI formats for endianness: codecs don't actually see
4229 * the endianness of the data but we're using the CPU format
4230 * definitions which do need to include endianness so we ensure that
4231 * codec DAIs always have both big and little endian variants set.
4232 */
4233static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
4234{
4235 int i;
4236
4237 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
4238 if (stream->formats & codec_format_map[i])
4239 stream->formats |= codec_format_map[i];
4240}
4241
Mark Brown0d0cf002008-12-10 14:32:45 +00004242/**
4243 * snd_soc_register_codec - Register a codec with the ASoC core
4244 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004245 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00004246 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004247int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00004248 const struct snd_soc_codec_driver *codec_drv,
4249 struct snd_soc_dai_driver *dai_drv,
4250 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00004251{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004252 struct snd_soc_codec *codec;
4253 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01004254
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004255 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00004256
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004257 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
4258 if (codec == NULL)
4259 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00004260
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004261 /* create CODEC component name */
4262 codec->name = fmt_single_name(dev, &codec->id);
4263 if (codec->name == NULL) {
Kuninori Morimotof790b942013-02-25 00:40:09 -08004264 ret = -ENOMEM;
4265 goto fail_codec;
Mark Brown151ab222009-05-09 16:22:58 +01004266 }
4267
Mark Brownc3acec22010-12-02 16:15:29 +00004268 codec->write = codec_drv->write;
4269 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00004270 codec->volatile_register = codec_drv->volatile_register;
4271 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00004272 codec->writable_register = codec_drv->writable_register;
Mark Brown5124e692012-02-08 13:20:50 +00004273 codec->ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004274 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
4275 codec->dapm.dev = dev;
4276 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00004277 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwood64a648c2011-07-25 11:15:15 +01004278 codec->dapm.stream_event = codec_drv->stream_event;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004279 codec->dev = dev;
4280 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004281 codec->num_dai = num_dai;
4282 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004283
4284 for (i = 0; i < num_dai; i++) {
4285 fixup_codec_formats(&dai_drv[i].playback);
4286 fixup_codec_formats(&dai_drv[i].capture);
4287 }
4288
Mark Brown054880f2012-04-09 17:29:19 +01004289 mutex_lock(&client_mutex);
4290 list_add(&codec->list, &codec_list);
4291 mutex_unlock(&client_mutex);
4292
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004293 /* register component */
4294 ret = __snd_soc_register_component(dev, &codec->component,
4295 &codec_drv->component_driver,
4296 dai_drv, num_dai, false);
Kuninori Morimoto5acd7df2013-02-25 00:40:40 -08004297 if (ret < 0) {
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004298 dev_err(codec->dev, "ASoC: Failed to regster component: %d\n", ret);
Kuninori Morimoto5acd7df2013-02-25 00:40:40 -08004299 goto fail_codec_name;
Mark Brown26b01cc2010-08-18 20:20:55 +01004300 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004301
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004302 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00004303 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004304
Kuninori Morimotof790b942013-02-25 00:40:09 -08004305fail_codec_name:
Kuninori Morimotoe1328a82013-03-07 17:42:33 -08004306 mutex_lock(&client_mutex);
4307 list_del(&codec->list);
4308 mutex_unlock(&client_mutex);
4309
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004310 kfree(codec->name);
Kuninori Morimotof790b942013-02-25 00:40:09 -08004311fail_codec:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004312 kfree(codec);
4313 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00004314}
4315EXPORT_SYMBOL_GPL(snd_soc_register_codec);
4316
4317/**
4318 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4319 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004320 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00004321 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004322void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00004323{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004324 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004325
4326 list_for_each_entry(codec, &codec_list, list) {
4327 if (dev == codec->dev)
4328 goto found;
4329 }
4330 return;
4331
4332found:
Kuninori Morimotod191bd82013-09-04 19:39:03 -07004333 snd_soc_unregister_component(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004334
Mark Brown0d0cf002008-12-10 14:32:45 +00004335 mutex_lock(&client_mutex);
4336 list_del(&codec->list);
4337 mutex_unlock(&client_mutex);
4338
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004339 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004340
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004341 snd_soc_cache_exit(codec);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01004342 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004343 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00004344}
4345EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
4346
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004347/* Retrieve a card's name from device tree */
4348int snd_soc_of_parse_card_name(struct snd_soc_card *card,
4349 const char *propname)
4350{
4351 struct device_node *np = card->dev->of_node;
4352 int ret;
4353
4354 ret = of_property_read_string_index(np, propname, 0, &card->name);
4355 /*
4356 * EINVAL means the property does not exist. This is fine providing
4357 * card->name was previously set, which is checked later in
4358 * snd_soc_register_card.
4359 */
4360 if (ret < 0 && ret != -EINVAL) {
4361 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004362 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004363 propname, ret);
4364 return ret;
4365 }
4366
4367 return 0;
4368}
4369EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
4370
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004371int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
4372 const char *propname)
4373{
4374 struct device_node *np = card->dev->of_node;
4375 int num_routes;
4376 struct snd_soc_dapm_route *routes;
4377 int i, ret;
4378
4379 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08004380 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02004381 dev_err(card->dev,
4382 "ASoC: Property '%s' does not exist or its length is not even\n",
4383 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004384 return -EINVAL;
4385 }
4386 num_routes /= 2;
4387 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004388 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004389 propname);
4390 return -EINVAL;
4391 }
4392
4393 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
4394 GFP_KERNEL);
4395 if (!routes) {
4396 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004397 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004398 return -EINVAL;
4399 }
4400
4401 for (i = 0; i < num_routes; i++) {
4402 ret = of_property_read_string_index(np, propname,
4403 2 * i, &routes[i].sink);
4404 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09004405 dev_err(card->dev,
4406 "ASoC: Property '%s' index %d could not be read: %d\n",
4407 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004408 return -EINVAL;
4409 }
4410 ret = of_property_read_string_index(np, propname,
4411 (2 * i) + 1, &routes[i].source);
4412 if (ret) {
4413 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09004414 "ASoC: Property '%s' index %d could not be read: %d\n",
4415 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004416 return -EINVAL;
4417 }
4418 }
4419
4420 card->num_dapm_routes = num_routes;
4421 card->dapm_routes = routes;
4422
4423 return 0;
4424}
4425EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
4426
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004427unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
4428 const char *prefix)
4429{
4430 int ret, i;
4431 char prop[128];
4432 unsigned int format = 0;
4433 int bit, frame;
4434 const char *str;
4435 struct {
4436 char *name;
4437 unsigned int val;
4438 } of_fmt_table[] = {
4439 { "i2s", SND_SOC_DAIFMT_I2S },
4440 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
4441 { "left_j", SND_SOC_DAIFMT_LEFT_J },
4442 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
4443 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
4444 { "ac97", SND_SOC_DAIFMT_AC97 },
4445 { "pdm", SND_SOC_DAIFMT_PDM},
4446 { "msb", SND_SOC_DAIFMT_MSB },
4447 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004448 };
4449
4450 if (!prefix)
4451 prefix = "";
4452
4453 /*
4454 * check "[prefix]format = xxx"
4455 * SND_SOC_DAIFMT_FORMAT_MASK area
4456 */
4457 snprintf(prop, sizeof(prop), "%sformat", prefix);
4458 ret = of_property_read_string(np, prop, &str);
4459 if (ret == 0) {
4460 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
4461 if (strcmp(str, of_fmt_table[i].name) == 0) {
4462 format |= of_fmt_table[i].val;
4463 break;
4464 }
4465 }
4466 }
4467
4468 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004469 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004470 * SND_SOC_DAIFMT_CLOCK_MASK area
4471 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004472 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
4473 if (of_get_property(np, prop, NULL))
4474 format |= SND_SOC_DAIFMT_CONT;
4475 else
4476 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004477
4478 /*
4479 * check "[prefix]bitclock-inversion"
4480 * check "[prefix]frame-inversion"
4481 * SND_SOC_DAIFMT_INV_MASK area
4482 */
4483 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
4484 bit = !!of_get_property(np, prop, NULL);
4485
4486 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
4487 frame = !!of_get_property(np, prop, NULL);
4488
4489 switch ((bit << 4) + frame) {
4490 case 0x11:
4491 format |= SND_SOC_DAIFMT_IB_IF;
4492 break;
4493 case 0x10:
4494 format |= SND_SOC_DAIFMT_IB_NF;
4495 break;
4496 case 0x01:
4497 format |= SND_SOC_DAIFMT_NB_IF;
4498 break;
4499 default:
4500 /* SND_SOC_DAIFMT_NB_NF is default */
4501 break;
4502 }
4503
4504 /*
4505 * check "[prefix]bitclock-master"
4506 * check "[prefix]frame-master"
4507 * SND_SOC_DAIFMT_MASTER_MASK area
4508 */
4509 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4510 bit = !!of_get_property(np, prop, NULL);
4511
4512 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4513 frame = !!of_get_property(np, prop, NULL);
4514
4515 switch ((bit << 4) + frame) {
4516 case 0x11:
4517 format |= SND_SOC_DAIFMT_CBM_CFM;
4518 break;
4519 case 0x10:
4520 format |= SND_SOC_DAIFMT_CBM_CFS;
4521 break;
4522 case 0x01:
4523 format |= SND_SOC_DAIFMT_CBS_CFM;
4524 break;
4525 default:
4526 format |= SND_SOC_DAIFMT_CBS_CFS;
4527 break;
4528 }
4529
4530 return format;
4531}
4532EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4533
Kuninori Morimotocb470082013-09-10 17:39:56 -07004534int snd_soc_of_get_dai_name(struct device_node *of_node,
4535 const char **dai_name)
4536{
4537 struct snd_soc_component *pos;
4538 struct of_phandle_args args;
4539 int ret;
4540
4541 ret = of_parse_phandle_with_args(of_node, "sound-dai",
4542 "#sound-dai-cells", 0, &args);
4543 if (ret)
4544 return ret;
4545
4546 ret = -EPROBE_DEFER;
4547
4548 mutex_lock(&client_mutex);
4549 list_for_each_entry(pos, &component_list, list) {
4550 if (pos->dev->of_node != args.np)
4551 continue;
4552
Kuninori Morimoto6833c452013-10-16 22:05:26 -07004553 if (pos->driver->of_xlate_dai_name) {
4554 ret = pos->driver->of_xlate_dai_name(pos, &args, dai_name);
4555 } else {
4556 int id = -1;
4557
4558 switch (args.args_count) {
4559 case 0:
4560 id = 0; /* same as dai_drv[0] */
4561 break;
4562 case 1:
4563 id = args.args[0];
4564 break;
4565 default:
4566 /* not supported */
4567 break;
4568 }
4569
4570 if (id < 0 || id >= pos->num_dai) {
4571 ret = -EINVAL;
4572 } else {
4573 *dai_name = pos->dai_drv[id].name;
4574 ret = 0;
4575 }
Kuninori Morimotocb470082013-09-10 17:39:56 -07004576 }
4577
Kuninori Morimotocb470082013-09-10 17:39:56 -07004578 break;
4579 }
4580 mutex_unlock(&client_mutex);
4581
4582 of_node_put(args.np);
4583
4584 return ret;
4585}
4586EXPORT_SYMBOL_GPL(snd_soc_of_get_dai_name);
4587
Takashi Iwaic9b3a402008-12-10 07:47:22 +01004588static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004589{
Mark Brown384c89e2008-12-03 17:34:03 +00004590#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004591 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
4592 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02004593 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00004594 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00004595 }
Mark Brownc3c5a192010-09-15 18:15:14 +01004596
Mark Brown8a9dab12011-01-10 22:25:21 +00004597 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01004598 &codec_list_fops))
4599 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4600
Mark Brown8a9dab12011-01-10 22:25:21 +00004601 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01004602 &dai_list_fops))
4603 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01004604
Mark Brown8a9dab12011-01-10 22:25:21 +00004605 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01004606 &platform_list_fops))
4607 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00004608#endif
4609
Mark Brownfb257892011-04-28 10:57:54 +01004610 snd_soc_util_init();
4611
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004612 return platform_driver_register(&soc_driver);
4613}
Mark Brown4abe8e12010-10-12 17:41:03 +01004614module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004615
Mark Brown7d8c16a2008-11-30 22:11:24 +00004616static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004617{
Mark Brownfb257892011-04-28 10:57:54 +01004618 snd_soc_util_exit();
4619
Mark Brown384c89e2008-12-03 17:34:03 +00004620#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004621 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00004622#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02004623 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004624}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004625module_exit(snd_soc_exit);
4626
4627/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004628MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004629MODULE_DESCRIPTION("ALSA SoC Core");
4630MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02004631MODULE_ALIAS("platform:soc-audio");