blob: 4d0561312f3be0a9f383928b3d74f80a44cdd3b3 [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
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001593static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1594 enum snd_soc_compress_type compress_type)
1595{
1596 int ret;
1597
1598 if (codec->cache_init)
1599 return 0;
1600
1601 /* override the compress_type if necessary */
1602 if (compress_type && codec->compress_type != compress_type)
1603 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001604 ret = snd_soc_cache_init(codec);
1605 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001606 dev_err(codec->dev,
1607 "ASoC: Failed to set cache compression type: %d\n",
1608 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001609 return ret;
1610 }
1611 codec->cache_init = 1;
1612 return 0;
1613}
1614
Mark Brownb19e6e72012-03-14 21:18:39 +00001615static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001616{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001617 struct snd_soc_codec *codec;
1618 struct snd_soc_codec_conf *codec_conf;
1619 enum snd_soc_compress_type compress_type;
Mark Brown75d9ac42011-09-27 16:41:01 +01001620 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001621 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001622
Liam Girdwood01b9d992012-03-07 10:38:25 +00001623 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001624
Mark Brownb19e6e72012-03-14 21:18:39 +00001625 /* bind DAIs */
1626 for (i = 0; i < card->num_links; i++) {
1627 ret = soc_bind_dai_link(card, i);
1628 if (ret != 0)
1629 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001630 }
1631
Mark Brownb19e6e72012-03-14 21:18:39 +00001632 /* check aux_devs too */
1633 for (i = 0; i < card->num_aux_devs; i++) {
1634 ret = soc_check_aux_dev(card, i);
1635 if (ret != 0)
1636 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001637 }
1638
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001639 /* initialize the register cache for each available codec */
1640 list_for_each_entry(codec, &codec_list, list) {
1641 if (codec->cache_init)
1642 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001643 /* by default we don't override the compress_type */
1644 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001645 /* check to see if we need to override the compress_type */
1646 for (i = 0; i < card->num_configs; ++i) {
1647 codec_conf = &card->codec_conf[i];
1648 if (!strcmp(codec->name, codec_conf->dev_name)) {
1649 compress_type = codec_conf->compress_type;
1650 if (compress_type && compress_type
1651 != codec->compress_type)
1652 break;
1653 }
1654 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001655 ret = snd_soc_init_codec_cache(codec, compress_type);
Mark Brownb19e6e72012-03-14 21:18:39 +00001656 if (ret < 0)
1657 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001658 }
1659
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001660 /* card bind complete so register a sound card */
1661 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1662 card->owner, 0, &card->snd_card);
1663 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001664 dev_err(card->dev,
1665 "ASoC: can't create sound card for card %s: %d\n",
1666 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001667 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001668 }
1669 card->snd_card->dev = card->dev;
1670
Mark Browne37a4972011-03-02 18:21:57 +00001671 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1672 card->dapm.dev = card->dev;
1673 card->dapm.card = card;
1674 list_add(&card->dapm.list, &card->dapm_list);
1675
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001676#ifdef CONFIG_DEBUG_FS
1677 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1678#endif
1679
Mark Brown88ee1c62011-02-02 10:43:26 +00001680#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001681 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001682 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001683#endif
Andy Green6ed25972008-06-13 16:24:05 +01001684
Mark Brown9a841eb2011-04-12 17:51:37 -07001685 if (card->dapm_widgets)
1686 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1687 card->num_dapm_widgets);
1688
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001689 /* initialise the sound card only once */
1690 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001691 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001692 if (ret < 0)
1693 goto card_probe_error;
1694 }
1695
Stephen Warren62ae68f2012-06-08 12:34:23 -06001696 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001697 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1698 order++) {
1699 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001700 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001701 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001702 dev_err(card->dev,
1703 "ASoC: failed to instantiate card %d\n",
1704 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001705 goto probe_dai_err;
1706 }
1707 }
1708 }
1709
1710 /* probe all DAI links on this card */
1711 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1712 order++) {
1713 for (i = 0; i < card->num_links; i++) {
1714 ret = soc_probe_link_dais(card, i, order);
1715 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001716 dev_err(card->dev,
1717 "ASoC: failed to instantiate card %d\n",
1718 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001719 goto probe_dai_err;
1720 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001721 }
1722 }
1723
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001724 for (i = 0; i < card->num_aux_devs; i++) {
1725 ret = soc_probe_aux_dev(card, i);
1726 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001727 dev_err(card->dev,
1728 "ASoC: failed to add auxiliary devices %d\n",
1729 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001730 goto probe_aux_dev_err;
1731 }
1732 }
1733
Mark Brown888df392012-02-16 19:37:51 -08001734 snd_soc_dapm_link_dai_widgets(card);
1735
Mark Brownb7af1da2011-04-07 19:18:44 +09001736 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001737 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001738
Mark Brownb8ad29d2011-03-02 18:35:51 +00001739 if (card->dapm_routes)
1740 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1741 card->num_dapm_routes);
1742
Mark Brown75d9ac42011-09-27 16:41:01 +01001743 for (i = 0; i < card->num_links; i++) {
1744 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001745 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001746
Mark Brownf04209a2012-04-09 16:29:21 +01001747 if (dai_fmt) {
Mark Brown75d9ac42011-09-27 16:41:01 +01001748 ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001749 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001750 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001751 dev_warn(card->rtd[i].codec_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001752 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001753 ret);
Mark Brownf04209a2012-04-09 16:29:21 +01001754 }
1755
1756 /* If this is a regular CPU link there will be a platform */
Stephen Warrenfe33d4c2012-05-14 14:47:22 -06001757 if (dai_fmt &&
1758 (dai_link->platform_name || dai_link->platform_of_node)) {
Mark Brownf04209a2012-04-09 16:29:21 +01001759 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1760 dai_fmt);
1761 if (ret != 0 && ret != -ENOTSUPP)
1762 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001763 "ASoC: Failed to set DAI format: %d\n",
Mark Brownf04209a2012-04-09 16:29:21 +01001764 ret);
1765 } else if (dai_fmt) {
1766 /* Flip the polarity for the "CPU" end */
1767 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1768 switch (dai_link->dai_fmt &
1769 SND_SOC_DAIFMT_MASTER_MASK) {
1770 case SND_SOC_DAIFMT_CBM_CFM:
1771 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1772 break;
1773 case SND_SOC_DAIFMT_CBM_CFS:
1774 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1775 break;
1776 case SND_SOC_DAIFMT_CBS_CFM:
1777 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1778 break;
1779 case SND_SOC_DAIFMT_CBS_CFS:
1780 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1781 break;
1782 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001783
1784 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001785 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001786 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001787 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001788 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001789 ret);
1790 }
1791 }
1792
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001793 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001794 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001795 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1796 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001797 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1798 "%s", card->driver_name ? card->driver_name : card->name);
1799 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1800 switch (card->snd_card->driver[i]) {
1801 case '_':
1802 case '-':
1803 case '\0':
1804 break;
1805 default:
1806 if (!isalnum(card->snd_card->driver[i]))
1807 card->snd_card->driver[i] = '_';
1808 break;
1809 }
1810 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001811
Mark Brown28e9ad92011-03-02 18:36:34 +00001812 if (card->late_probe) {
1813 ret = card->late_probe(card);
1814 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001815 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001816 card->name, ret);
1817 goto probe_aux_dev_err;
1818 }
1819 }
1820
Stephen Warren16332812011-11-23 12:42:04 -07001821 if (card->fully_routed)
Mark Brownb05d8dc2011-11-27 19:38:34 +00001822 list_for_each_entry(codec, &card->codec_dev_list, card_list)
Stephen Warren16332812011-11-23 12:42:04 -07001823 snd_soc_dapm_auto_nc_codec_pins(codec);
1824
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02001825 snd_soc_dapm_new_widgets(card);
Lars-Peter Clausen8c193b82013-08-27 15:51:00 +02001826
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001827 ret = snd_card_register(card->snd_card);
1828 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001829 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1830 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001831 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001832 }
1833
1834#ifdef CONFIG_SND_SOC_AC97_BUS
1835 /* register any AC97 codecs */
1836 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001837 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1838 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001839 dev_err(card->dev,
1840 "ASoC: failed to register AC97: %d\n", ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001841 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001842 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001843 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001844 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001845 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001846#endif
1847
Mark Brown435c5e22008-12-04 15:32:53 +00001848 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001849 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001850 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001851
1852 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001853
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001854probe_aux_dev_err:
1855 for (i = 0; i < card->num_aux_devs; i++)
1856 soc_remove_aux_dev(card, i);
1857
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001858probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001859 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001860
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001861card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001862 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001863 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001864
1865 snd_card_free(card->snd_card);
1866
Mark Brownb19e6e72012-03-14 21:18:39 +00001867base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001868 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001869
Mark Brownb19e6e72012-03-14 21:18:39 +00001870 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001871}
1872
1873/* probes a new socdev */
1874static int soc_probe(struct platform_device *pdev)
1875{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001876 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001877
Vinod Koul70a7ca32011-01-14 19:22:48 +05301878 /*
1879 * no card, so machine driver should be registering card
1880 * we should not be here in that case so ret error
1881 */
1882 if (!card)
1883 return -EINVAL;
1884
Mark Brownfe4085e2012-03-02 13:07:41 +00001885 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001886 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001887 card->name);
1888
Mark Brown435c5e22008-12-04 15:32:53 +00001889 /* Bodge while we unpick instantiation */
1890 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001891
Mark Brown28d528c2012-08-09 18:45:23 +01001892 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001893}
1894
Vinod Koulb0e26482011-01-13 22:48:02 +05301895static int soc_cleanup_card_resources(struct snd_soc_card *card)
1896{
Vinod Koulb0e26482011-01-13 22:48:02 +05301897 int i;
1898
1899 /* make sure any delayed work runs */
1900 for (i = 0; i < card->num_rtd; i++) {
1901 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001902 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301903 }
1904
1905 /* remove auxiliary devices */
1906 for (i = 0; i < card->num_aux_devs; i++)
1907 soc_remove_aux_dev(card, i);
1908
1909 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001910 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301911
1912 soc_cleanup_card_debugfs(card);
1913
1914 /* remove the card */
1915 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001916 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301917
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001918 snd_soc_dapm_free(&card->dapm);
1919
Vinod Koulb0e26482011-01-13 22:48:02 +05301920 snd_card_free(card->snd_card);
1921 return 0;
1922
1923}
1924
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001925/* removes a socdev */
1926static int soc_remove(struct platform_device *pdev)
1927{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001928 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001929
Mark Brownc5af3a22008-11-28 13:29:45 +00001930 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001931 return 0;
1932}
1933
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001934int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001935{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001936 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001937 int i;
Mark Brown51737472009-06-22 13:16:51 +01001938
1939 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001940 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001941
1942 /* Flush out pmdown_time work - we actually do want to run it
1943 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001944 for (i = 0; i < card->num_rtd; i++) {
1945 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001946 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001947 }
Mark Brown51737472009-06-22 13:16:51 +01001948
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001949 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001950
1951 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001952}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001953EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001954
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001955const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301956 .suspend = snd_soc_suspend,
1957 .resume = snd_soc_resume,
1958 .freeze = snd_soc_suspend,
1959 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001960 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301961 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001962};
Stephen Warrendeb26072011-04-05 19:35:30 -06001963EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001964
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001965/* ASoC platform driver */
1966static struct platform_driver soc_driver = {
1967 .driver = {
1968 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001969 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001970 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001971 },
1972 .probe = soc_probe,
1973 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001974};
1975
Mark Brown096e49d2009-07-05 15:12:22 +01001976/**
1977 * snd_soc_codec_volatile_register: Report if a register is volatile.
1978 *
1979 * @codec: CODEC to query.
1980 * @reg: Register to query.
1981 *
1982 * Boolean function indiciating if a CODEC register is volatile.
1983 */
Mark Brown181e0552011-01-24 14:05:25 +00001984int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1985 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01001986{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00001987 if (codec->volatile_register)
1988 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01001989 else
1990 return 0;
1991}
1992EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1993
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001994/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001995 * snd_soc_codec_readable_register: Report if a register is readable.
1996 *
1997 * @codec: CODEC to query.
1998 * @reg: Register to query.
1999 *
2000 * Boolean function indicating if a CODEC register is readable.
2001 */
2002int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
2003 unsigned int reg)
2004{
2005 if (codec->readable_register)
2006 return codec->readable_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_readable_register);
2011
2012/**
2013 * snd_soc_codec_writable_register: Report if a register is writable.
2014 *
2015 * @codec: CODEC to query.
2016 * @reg: Register to query.
2017 *
2018 * Boolean function indicating if a CODEC register is writable.
2019 */
2020int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
2021 unsigned int reg)
2022{
2023 if (codec->writable_register)
2024 return codec->writable_register(codec, reg);
2025 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02002026 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002027}
2028EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
2029
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002030int snd_soc_platform_read(struct snd_soc_platform *platform,
2031 unsigned int reg)
2032{
2033 unsigned int ret;
2034
2035 if (!platform->driver->read) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002036 dev_err(platform->dev, "ASoC: platform has no read back\n");
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002037 return -1;
2038 }
2039
2040 ret = platform->driver->read(platform, reg);
2041 dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01002042 trace_snd_soc_preg_read(platform, reg, ret);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002043
2044 return ret;
2045}
2046EXPORT_SYMBOL_GPL(snd_soc_platform_read);
2047
2048int snd_soc_platform_write(struct snd_soc_platform *platform,
2049 unsigned int reg, unsigned int val)
2050{
2051 if (!platform->driver->write) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002052 dev_err(platform->dev, "ASoC: platform has no write back\n");
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002053 return -1;
2054 }
2055
2056 dev_dbg(platform->dev, "write %x = %x\n", reg, val);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01002057 trace_snd_soc_preg_write(platform, reg, val);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002058 return platform->driver->write(platform, reg, val);
2059}
2060EXPORT_SYMBOL_GPL(snd_soc_platform_write);
2061
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002062/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002063 * snd_soc_new_ac97_codec - initailise AC97 device
2064 * @codec: audio codec
2065 * @ops: AC97 bus operations
2066 * @num: AC97 codec number
2067 *
2068 * Initialises AC97 codec resources for use by ad-hoc devices only.
2069 */
2070int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2071 struct snd_ac97_bus_ops *ops, int num)
2072{
2073 mutex_lock(&codec->mutex);
2074
2075 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2076 if (codec->ac97 == NULL) {
2077 mutex_unlock(&codec->mutex);
2078 return -ENOMEM;
2079 }
2080
2081 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2082 if (codec->ac97->bus == NULL) {
2083 kfree(codec->ac97);
2084 codec->ac97 = NULL;
2085 mutex_unlock(&codec->mutex);
2086 return -ENOMEM;
2087 }
2088
2089 codec->ac97->bus->ops = ops;
2090 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002091
2092 /*
2093 * Mark the AC97 device to be created by us. This way we ensure that the
2094 * device will be registered with the device subsystem later on.
2095 */
2096 codec->ac97_created = 1;
2097
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002098 mutex_unlock(&codec->mutex);
2099 return 0;
2100}
2101EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2102
Markus Pargmann741a5092013-08-19 17:05:55 +02002103static struct snd_ac97_reset_cfg snd_ac97_rst_cfg;
2104
2105static void snd_soc_ac97_warm_reset(struct snd_ac97 *ac97)
2106{
2107 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2108
2109 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_warm_reset);
2110
2111 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 1);
2112
2113 udelay(10);
2114
2115 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2116
2117 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2118 msleep(2);
2119}
2120
2121static void snd_soc_ac97_reset(struct snd_ac97 *ac97)
2122{
2123 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2124
2125 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_reset);
2126
2127 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2128 gpio_direction_output(snd_ac97_rst_cfg.gpio_sdata, 0);
2129 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 0);
2130
2131 udelay(10);
2132
2133 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 1);
2134
2135 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2136 msleep(2);
2137}
2138
2139static int snd_soc_ac97_parse_pinctl(struct device *dev,
2140 struct snd_ac97_reset_cfg *cfg)
2141{
2142 struct pinctrl *p;
2143 struct pinctrl_state *state;
2144 int gpio;
2145 int ret;
2146
2147 p = devm_pinctrl_get(dev);
2148 if (IS_ERR(p)) {
2149 dev_err(dev, "Failed to get pinctrl\n");
2150 return PTR_RET(p);
2151 }
2152 cfg->pctl = p;
2153
2154 state = pinctrl_lookup_state(p, "ac97-reset");
2155 if (IS_ERR(state)) {
2156 dev_err(dev, "Can't find pinctrl state ac97-reset\n");
2157 return PTR_RET(state);
2158 }
2159 cfg->pstate_reset = state;
2160
2161 state = pinctrl_lookup_state(p, "ac97-warm-reset");
2162 if (IS_ERR(state)) {
2163 dev_err(dev, "Can't find pinctrl state ac97-warm-reset\n");
2164 return PTR_RET(state);
2165 }
2166 cfg->pstate_warm_reset = state;
2167
2168 state = pinctrl_lookup_state(p, "ac97-running");
2169 if (IS_ERR(state)) {
2170 dev_err(dev, "Can't find pinctrl state ac97-running\n");
2171 return PTR_RET(state);
2172 }
2173 cfg->pstate_run = state;
2174
2175 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 0);
2176 if (gpio < 0) {
2177 dev_err(dev, "Can't find ac97-sync gpio\n");
2178 return gpio;
2179 }
2180 ret = devm_gpio_request(dev, gpio, "AC97 link sync");
2181 if (ret) {
2182 dev_err(dev, "Failed requesting ac97-sync gpio\n");
2183 return ret;
2184 }
2185 cfg->gpio_sync = gpio;
2186
2187 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 1);
2188 if (gpio < 0) {
2189 dev_err(dev, "Can't find ac97-sdata gpio %d\n", gpio);
2190 return gpio;
2191 }
2192 ret = devm_gpio_request(dev, gpio, "AC97 link sdata");
2193 if (ret) {
2194 dev_err(dev, "Failed requesting ac97-sdata gpio\n");
2195 return ret;
2196 }
2197 cfg->gpio_sdata = gpio;
2198
2199 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 2);
2200 if (gpio < 0) {
2201 dev_err(dev, "Can't find ac97-reset gpio\n");
2202 return gpio;
2203 }
2204 ret = devm_gpio_request(dev, gpio, "AC97 link reset");
2205 if (ret) {
2206 dev_err(dev, "Failed requesting ac97-reset gpio\n");
2207 return ret;
2208 }
2209 cfg->gpio_reset = gpio;
2210
2211 return 0;
2212}
2213
Mark Brownb047e1c2013-06-26 12:45:59 +01002214struct snd_ac97_bus_ops *soc_ac97_ops;
Kevin Hilmanf74b5e22013-06-28 11:17:49 -07002215EXPORT_SYMBOL_GPL(soc_ac97_ops);
Mark Brownb047e1c2013-06-26 12:45:59 +01002216
2217int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
2218{
2219 if (ops == soc_ac97_ops)
2220 return 0;
2221
2222 if (soc_ac97_ops && ops)
2223 return -EBUSY;
2224
2225 soc_ac97_ops = ops;
2226
2227 return 0;
2228}
2229EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops);
2230
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002231/**
Markus Pargmann741a5092013-08-19 17:05:55 +02002232 * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
2233 *
2234 * This function sets the reset and warm_reset properties of ops and parses
2235 * the device node of pdev to get pinctrl states and gpio numbers to use.
2236 */
2237int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
2238 struct platform_device *pdev)
2239{
2240 struct device *dev = &pdev->dev;
2241 struct snd_ac97_reset_cfg cfg;
2242 int ret;
2243
2244 ret = snd_soc_ac97_parse_pinctl(dev, &cfg);
2245 if (ret)
2246 return ret;
2247
2248 ret = snd_soc_set_ac97_ops(ops);
2249 if (ret)
2250 return ret;
2251
2252 ops->warm_reset = snd_soc_ac97_warm_reset;
2253 ops->reset = snd_soc_ac97_reset;
2254
2255 snd_ac97_rst_cfg = cfg;
2256 return 0;
2257}
2258EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset);
2259
2260/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002261 * snd_soc_free_ac97_codec - free AC97 codec device
2262 * @codec: audio codec
2263 *
2264 * Frees AC97 codec device resources.
2265 */
2266void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2267{
2268 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002269#ifdef CONFIG_SND_SOC_AC97_BUS
2270 soc_unregister_ac97_dai_link(codec);
2271#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002272 kfree(codec->ac97->bus);
2273 kfree(codec->ac97);
2274 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002275 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002276 mutex_unlock(&codec->mutex);
2277}
2278EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2279
Mark Brownc3753702010-11-01 15:41:57 -04002280unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2281{
2282 unsigned int ret;
2283
Mark Brownc3acec22010-12-02 16:15:29 +00002284 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002285 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002286 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002287
2288 return ret;
2289}
2290EXPORT_SYMBOL_GPL(snd_soc_read);
2291
2292unsigned int snd_soc_write(struct snd_soc_codec *codec,
2293 unsigned int reg, unsigned int val)
2294{
2295 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002296 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002297 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002298}
2299EXPORT_SYMBOL_GPL(snd_soc_write);
2300
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00002301unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
2302 unsigned int reg, const void *data, size_t len)
2303{
2304 return codec->bulk_write_raw(codec, reg, data, len);
2305}
2306EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
2307
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002308/**
2309 * snd_soc_update_bits - update codec register bits
2310 * @codec: audio codec
2311 * @reg: codec register
2312 * @mask: register mask
2313 * @value: new value
2314 *
2315 * Writes new register value.
2316 *
Timur Tabi180c3292011-01-10 15:58:13 -06002317 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002318 */
2319int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002320 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002321{
Mark Brown8a713da2011-12-03 12:33:55 +00002322 bool change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002323 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002324 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002325
Mark Brown8a713da2011-12-03 12:33:55 +00002326 if (codec->using_regmap) {
2327 ret = regmap_update_bits_check(codec->control_data, reg,
2328 mask, value, &change);
2329 } else {
2330 ret = snd_soc_read(codec, reg);
Timur Tabi180c3292011-01-10 15:58:13 -06002331 if (ret < 0)
2332 return ret;
Mark Brown8a713da2011-12-03 12:33:55 +00002333
2334 old = ret;
2335 new = (old & ~mask) | (value & mask);
2336 change = old != new;
2337 if (change)
2338 ret = snd_soc_write(codec, reg, new);
Timur Tabi180c3292011-01-10 15:58:13 -06002339 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002340
Mark Brown8a713da2011-12-03 12:33:55 +00002341 if (ret < 0)
2342 return ret;
2343
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002344 return change;
2345}
2346EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2347
2348/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002349 * snd_soc_update_bits_locked - update codec register bits
2350 * @codec: audio codec
2351 * @reg: codec register
2352 * @mask: register mask
2353 * @value: new value
2354 *
2355 * Writes new register value, and takes the codec mutex.
2356 *
2357 * Returns 1 for change else 0.
2358 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002359int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2360 unsigned short reg, unsigned int mask,
2361 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002362{
2363 int change;
2364
2365 mutex_lock(&codec->mutex);
2366 change = snd_soc_update_bits(codec, reg, mask, value);
2367 mutex_unlock(&codec->mutex);
2368
2369 return change;
2370}
Mark Browndd1b3d52009-12-04 14:22:03 +00002371EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002372
2373/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002374 * snd_soc_test_bits - test register for change
2375 * @codec: audio codec
2376 * @reg: codec register
2377 * @mask: register mask
2378 * @value: new value
2379 *
2380 * Tests a register with a new value and checks if the new value is
2381 * different from the old value.
2382 *
2383 * Returns 1 for change else 0.
2384 */
2385int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002386 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002387{
2388 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002389 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002390
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002391 old = snd_soc_read(codec, reg);
2392 new = (old & ~mask) | value;
2393 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002394
2395 return change;
2396}
2397EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2398
2399/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002400 * snd_soc_cnew - create new control
2401 * @_template: control template
2402 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002403 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002404 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002405 *
2406 * Create a new mixer control from a template control.
2407 *
2408 * Returns 0 for success, else error.
2409 */
2410struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002411 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002412 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002413{
2414 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002415 struct snd_kcontrol *kcontrol;
2416 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002417
2418 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002419 template.index = 0;
2420
Mark Brownefb7ac32011-03-08 17:23:24 +00002421 if (!long_name)
2422 long_name = template.name;
2423
2424 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02002425 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00002426 if (!name)
2427 return NULL;
2428
Mark Brownefb7ac32011-03-08 17:23:24 +00002429 template.name = name;
2430 } else {
2431 template.name = long_name;
2432 }
2433
2434 kcontrol = snd_ctl_new1(&template, data);
2435
2436 kfree(name);
2437
2438 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002439}
2440EXPORT_SYMBOL_GPL(snd_soc_cnew);
2441
Liam Girdwood022658b2012-02-03 17:43:09 +00002442static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2443 const struct snd_kcontrol_new *controls, int num_controls,
2444 const char *prefix, void *data)
2445{
2446 int err, i;
2447
2448 for (i = 0; i < num_controls; i++) {
2449 const struct snd_kcontrol_new *control = &controls[i];
2450 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2451 control->name, prefix));
2452 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002453 dev_err(dev, "ASoC: Failed to add %s: %d\n",
2454 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00002455 return err;
2456 }
2457 }
2458
2459 return 0;
2460}
2461
Dimitris Papastamos4fefd692013-07-29 13:51:58 +01002462struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
2463 const char *name)
2464{
2465 struct snd_card *card = soc_card->snd_card;
2466 struct snd_kcontrol *kctl;
2467
2468 if (unlikely(!name))
2469 return NULL;
2470
2471 list_for_each_entry(kctl, &card->controls, list)
2472 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
2473 return kctl;
2474 return NULL;
2475}
2476EXPORT_SYMBOL_GPL(snd_soc_card_get_kcontrol);
2477
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002478/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002479 * snd_soc_add_codec_controls - add an array of controls to a codec.
2480 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002481 * duplicating this code.
2482 *
2483 * @codec: codec to add controls to
2484 * @controls: array of controls to add
2485 * @num_controls: number of elements in the array
2486 *
2487 * Return 0 for success, else error.
2488 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002489int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Ian Molton3e8e1952009-01-09 00:23:21 +00002490 const struct snd_kcontrol_new *controls, int num_controls)
2491{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002492 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002493
Liam Girdwood022658b2012-02-03 17:43:09 +00002494 return snd_soc_add_controls(card, codec->dev, controls, num_controls,
2495 codec->name_prefix, codec);
Ian Molton3e8e1952009-01-09 00:23:21 +00002496}
Liam Girdwood022658b2012-02-03 17:43:09 +00002497EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002498
2499/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002500 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002501 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002502 *
2503 * @platform: platform to add controls to
2504 * @controls: array of controls to add
2505 * @num_controls: number of elements in the array
2506 *
2507 * Return 0 for success, else error.
2508 */
2509int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2510 const struct snd_kcontrol_new *controls, int num_controls)
2511{
2512 struct snd_card *card = platform->card->snd_card;
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002513
Liam Girdwood022658b2012-02-03 17:43:09 +00002514 return snd_soc_add_controls(card, platform->dev, controls, num_controls,
2515 NULL, platform);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002516}
2517EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2518
2519/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002520 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2521 * Convenience function to add a list of controls.
2522 *
2523 * @soc_card: SoC card to add controls to
2524 * @controls: array of controls to add
2525 * @num_controls: number of elements in the array
2526 *
2527 * Return 0 for success, else error.
2528 */
2529int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2530 const struct snd_kcontrol_new *controls, int num_controls)
2531{
2532 struct snd_card *card = soc_card->snd_card;
2533
2534 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2535 NULL, soc_card);
2536}
2537EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2538
2539/**
2540 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2541 * Convienience function to add a list of controls.
2542 *
2543 * @dai: DAI to add controls to
2544 * @controls: array of controls to add
2545 * @num_controls: number of elements in the array
2546 *
2547 * Return 0 for success, else error.
2548 */
2549int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2550 const struct snd_kcontrol_new *controls, int num_controls)
2551{
2552 struct snd_card *card = dai->card->snd_card;
2553
2554 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2555 NULL, dai);
2556}
2557EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2558
2559/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002560 * snd_soc_info_enum_double - enumerated double mixer info callback
2561 * @kcontrol: mixer control
2562 * @uinfo: control element information
2563 *
2564 * Callback to provide information about a double enumerated
2565 * mixer control.
2566 *
2567 * Returns 0 for success.
2568 */
2569int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2570 struct snd_ctl_elem_info *uinfo)
2571{
2572 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2573
2574 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2575 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002576 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002577
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002578 if (uinfo->value.enumerated.item > e->max - 1)
2579 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002580 strcpy(uinfo->value.enumerated.name,
2581 e->texts[uinfo->value.enumerated.item]);
2582 return 0;
2583}
2584EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2585
2586/**
2587 * snd_soc_get_enum_double - enumerated double mixer get callback
2588 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002589 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002590 *
2591 * Callback to get the value of a double enumerated mixer.
2592 *
2593 * Returns 0 for success.
2594 */
2595int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2596 struct snd_ctl_elem_value *ucontrol)
2597{
2598 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2599 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002600 unsigned int val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002601
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002602 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002603 ucontrol->value.enumerated.item[0]
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002604 = (val >> e->shift_l) & e->mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002605 if (e->shift_l != e->shift_r)
2606 ucontrol->value.enumerated.item[1] =
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002607 (val >> e->shift_r) & e->mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002608
2609 return 0;
2610}
2611EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2612
2613/**
2614 * snd_soc_put_enum_double - enumerated double mixer put callback
2615 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002616 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002617 *
2618 * Callback to set the value of a double enumerated mixer.
2619 *
2620 * Returns 0 for success.
2621 */
2622int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2623 struct snd_ctl_elem_value *ucontrol)
2624{
2625 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2626 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002627 unsigned int val;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002628 unsigned int mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002629
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002630 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002631 return -EINVAL;
2632 val = ucontrol->value.enumerated.item[0] << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002633 mask = e->mask << e->shift_l;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002634 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002635 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002636 return -EINVAL;
2637 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002638 mask |= e->mask << e->shift_r;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002639 }
2640
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002641 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002642}
2643EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2644
2645/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002646 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2647 * @kcontrol: mixer control
2648 * @ucontrol: control element information
2649 *
2650 * Callback to get the value of a double semi enumerated mixer.
2651 *
2652 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2653 * used for handling bitfield coded enumeration for example.
2654 *
2655 * Returns 0 for success.
2656 */
2657int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2658 struct snd_ctl_elem_value *ucontrol)
2659{
2660 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002661 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002662 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002663
2664 reg_val = snd_soc_read(codec, e->reg);
2665 val = (reg_val >> e->shift_l) & e->mask;
2666 for (mux = 0; mux < e->max; mux++) {
2667 if (val == e->values[mux])
2668 break;
2669 }
2670 ucontrol->value.enumerated.item[0] = mux;
2671 if (e->shift_l != e->shift_r) {
2672 val = (reg_val >> e->shift_r) & e->mask;
2673 for (mux = 0; mux < e->max; mux++) {
2674 if (val == e->values[mux])
2675 break;
2676 }
2677 ucontrol->value.enumerated.item[1] = mux;
2678 }
2679
2680 return 0;
2681}
2682EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2683
2684/**
2685 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2686 * @kcontrol: mixer control
2687 * @ucontrol: control element information
2688 *
2689 * Callback to set the value of a double semi enumerated mixer.
2690 *
2691 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2692 * used for handling bitfield coded enumeration for example.
2693 *
2694 * Returns 0 for success.
2695 */
2696int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2697 struct snd_ctl_elem_value *ucontrol)
2698{
2699 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002700 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002701 unsigned int val;
2702 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002703
2704 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2705 return -EINVAL;
2706 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2707 mask = e->mask << e->shift_l;
2708 if (e->shift_l != e->shift_r) {
2709 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2710 return -EINVAL;
2711 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2712 mask |= e->mask << e->shift_r;
2713 }
2714
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002715 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002716}
2717EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2718
2719/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002720 * snd_soc_info_volsw - single mixer info callback
2721 * @kcontrol: mixer control
2722 * @uinfo: control element information
2723 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002724 * Callback to provide information about a single mixer control, or a double
2725 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002726 *
2727 * Returns 0 for success.
2728 */
2729int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2730 struct snd_ctl_elem_info *uinfo)
2731{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002732 struct soc_mixer_control *mc =
2733 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002734 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002735
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002736 if (!mc->platform_max)
2737 mc->platform_max = mc->max;
2738 platform_max = mc->platform_max;
2739
2740 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002741 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2742 else
2743 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2744
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002745 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002746 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002747 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002748 return 0;
2749}
2750EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2751
2752/**
2753 * snd_soc_get_volsw - single mixer get callback
2754 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002755 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002756 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002757 * Callback to get the value of a single mixer control, or a double mixer
2758 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002759 *
2760 * Returns 0 for success.
2761 */
2762int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2763 struct snd_ctl_elem_value *ucontrol)
2764{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002765 struct soc_mixer_control *mc =
2766 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002767 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002768 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002769 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002770 unsigned int shift = mc->shift;
2771 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002772 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002773 unsigned int mask = (1 << fls(max)) - 1;
2774 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002775
2776 ucontrol->value.integer.value[0] =
2777 (snd_soc_read(codec, reg) >> shift) & mask;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002778 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002779 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002780 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002781
2782 if (snd_soc_volsw_is_stereo(mc)) {
2783 if (reg == reg2)
2784 ucontrol->value.integer.value[1] =
2785 (snd_soc_read(codec, reg) >> rshift) & mask;
2786 else
2787 ucontrol->value.integer.value[1] =
2788 (snd_soc_read(codec, reg2) >> shift) & mask;
2789 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002790 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002791 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002792 }
2793
2794 return 0;
2795}
2796EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2797
2798/**
2799 * snd_soc_put_volsw - single mixer put callback
2800 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002801 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002802 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002803 * Callback to set the value of a single mixer control, or a double mixer
2804 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002805 *
2806 * Returns 0 for success.
2807 */
2808int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2809 struct snd_ctl_elem_value *ucontrol)
2810{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002811 struct soc_mixer_control *mc =
2812 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002813 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002814 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002815 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002816 unsigned int shift = mc->shift;
2817 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002818 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002819 unsigned int mask = (1 << fls(max)) - 1;
2820 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002821 int err;
2822 bool type_2r = 0;
2823 unsigned int val2 = 0;
2824 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002825
2826 val = (ucontrol->value.integer.value[0] & mask);
2827 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002828 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002829 val_mask = mask << shift;
2830 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002831 if (snd_soc_volsw_is_stereo(mc)) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002832 val2 = (ucontrol->value.integer.value[1] & mask);
2833 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002834 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002835 if (reg == reg2) {
2836 val_mask |= mask << rshift;
2837 val |= val2 << rshift;
2838 } else {
2839 val2 = val2 << shift;
2840 type_2r = 1;
2841 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002842 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002843 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002844 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002845 return err;
2846
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002847 if (type_2r)
2848 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2849
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002850 return err;
2851}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002852EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002853
Mark Browne13ac2e2008-05-28 17:58:05 +01002854/**
Brian Austin1d99f242012-03-30 10:43:55 -05002855 * snd_soc_get_volsw_sx - single mixer get callback
2856 * @kcontrol: mixer control
2857 * @ucontrol: control element information
2858 *
2859 * Callback to get the value of a single mixer control, or a double mixer
2860 * control that spans 2 registers.
2861 *
2862 * Returns 0 for success.
2863 */
2864int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2865 struct snd_ctl_elem_value *ucontrol)
2866{
2867 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2868 struct soc_mixer_control *mc =
2869 (struct soc_mixer_control *)kcontrol->private_value;
2870
2871 unsigned int reg = mc->reg;
2872 unsigned int reg2 = mc->rreg;
2873 unsigned int shift = mc->shift;
2874 unsigned int rshift = mc->rshift;
2875 int max = mc->max;
2876 int min = mc->min;
2877 int mask = (1 << (fls(min + max) - 1)) - 1;
2878
2879 ucontrol->value.integer.value[0] =
2880 ((snd_soc_read(codec, reg) >> shift) - min) & mask;
2881
2882 if (snd_soc_volsw_is_stereo(mc))
2883 ucontrol->value.integer.value[1] =
2884 ((snd_soc_read(codec, reg2) >> rshift) - min) & mask;
2885
2886 return 0;
2887}
2888EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2889
2890/**
2891 * snd_soc_put_volsw_sx - double mixer set callback
2892 * @kcontrol: mixer control
2893 * @uinfo: control element information
2894 *
2895 * Callback to set the value of a double mixer control that spans 2 registers.
2896 *
2897 * Returns 0 for success.
2898 */
2899int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2900 struct snd_ctl_elem_value *ucontrol)
2901{
2902 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2903 struct soc_mixer_control *mc =
2904 (struct soc_mixer_control *)kcontrol->private_value;
2905
2906 unsigned int reg = mc->reg;
2907 unsigned int reg2 = mc->rreg;
2908 unsigned int shift = mc->shift;
2909 unsigned int rshift = mc->rshift;
2910 int max = mc->max;
2911 int min = mc->min;
2912 int mask = (1 << (fls(min + max) - 1)) - 1;
Brian Austin27f1d752012-04-03 11:33:50 -05002913 int err = 0;
Brian Austin1d99f242012-03-30 10:43:55 -05002914 unsigned short val, val_mask, val2 = 0;
2915
2916 val_mask = mask << shift;
2917 val = (ucontrol->value.integer.value[0] + min) & mask;
2918 val = val << shift;
2919
Mukund Navadad0558522012-11-09 11:53:40 +05302920 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
2921 if (err < 0)
2922 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002923
2924 if (snd_soc_volsw_is_stereo(mc)) {
2925 val_mask = mask << rshift;
2926 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2927 val2 = val2 << rshift;
2928
2929 if (snd_soc_update_bits_locked(codec, reg2, val_mask, val2))
2930 return err;
2931 }
2932 return 0;
2933}
2934EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2935
2936/**
Mark Browne13ac2e2008-05-28 17:58:05 +01002937 * snd_soc_info_volsw_s8 - signed mixer info callback
2938 * @kcontrol: mixer control
2939 * @uinfo: control element information
2940 *
2941 * Callback to provide information about a signed mixer control.
2942 *
2943 * Returns 0 for success.
2944 */
2945int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2946 struct snd_ctl_elem_info *uinfo)
2947{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002948 struct soc_mixer_control *mc =
2949 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002950 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002951 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002952
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002953 if (!mc->platform_max)
2954 mc->platform_max = mc->max;
2955 platform_max = mc->platform_max;
2956
Mark Browne13ac2e2008-05-28 17:58:05 +01002957 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2958 uinfo->count = 2;
2959 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002960 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002961 return 0;
2962}
2963EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2964
2965/**
2966 * snd_soc_get_volsw_s8 - signed mixer get callback
2967 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002968 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002969 *
2970 * Callback to get the value of a signed mixer control.
2971 *
2972 * Returns 0 for success.
2973 */
2974int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2975 struct snd_ctl_elem_value *ucontrol)
2976{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002977 struct soc_mixer_control *mc =
2978 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002979 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002980 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002981 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002982 int val = snd_soc_read(codec, reg);
2983
2984 ucontrol->value.integer.value[0] =
2985 ((signed char)(val & 0xff))-min;
2986 ucontrol->value.integer.value[1] =
2987 ((signed char)((val >> 8) & 0xff))-min;
2988 return 0;
2989}
2990EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2991
2992/**
2993 * snd_soc_put_volsw_sgn - signed mixer put callback
2994 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002995 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002996 *
2997 * Callback to set the value of a signed mixer control.
2998 *
2999 * Returns 0 for success.
3000 */
3001int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
3002 struct snd_ctl_elem_value *ucontrol)
3003{
Jon Smirl4eaa9812008-07-29 11:42:26 +01003004 struct soc_mixer_control *mc =
3005 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01003006 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003007 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003008 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03003009 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01003010
3011 val = (ucontrol->value.integer.value[0]+min) & 0xff;
3012 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
3013
Eero Nurkkala6c508c62009-10-30 13:34:03 +02003014 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01003015}
3016EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
3017
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003018/**
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003019 * snd_soc_info_volsw_range - single mixer info callback with range.
3020 * @kcontrol: mixer control
3021 * @uinfo: control element information
3022 *
3023 * Callback to provide information, within a range, about a single
3024 * mixer control.
3025 *
3026 * returns 0 for success.
3027 */
3028int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
3029 struct snd_ctl_elem_info *uinfo)
3030{
3031 struct soc_mixer_control *mc =
3032 (struct soc_mixer_control *)kcontrol->private_value;
3033 int platform_max;
3034 int min = mc->min;
3035
3036 if (!mc->platform_max)
3037 mc->platform_max = mc->max;
3038 platform_max = mc->platform_max;
3039
3040 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Mark Brown9bde4f02012-12-19 16:05:00 +00003041 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003042 uinfo->value.integer.min = 0;
3043 uinfo->value.integer.max = platform_max - min;
3044
3045 return 0;
3046}
3047EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
3048
3049/**
3050 * snd_soc_put_volsw_range - single mixer put value callback with range.
3051 * @kcontrol: mixer control
3052 * @ucontrol: control element information
3053 *
3054 * Callback to set the value, within a range, for a single mixer control.
3055 *
3056 * Returns 0 for success.
3057 */
3058int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
3059 struct snd_ctl_elem_value *ucontrol)
3060{
3061 struct soc_mixer_control *mc =
3062 (struct soc_mixer_control *)kcontrol->private_value;
3063 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3064 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003065 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003066 unsigned int shift = mc->shift;
3067 int min = mc->min;
3068 int max = mc->max;
3069 unsigned int mask = (1 << fls(max)) - 1;
3070 unsigned int invert = mc->invert;
3071 unsigned int val, val_mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00003072 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003073
3074 val = ((ucontrol->value.integer.value[0] + min) & mask);
3075 if (invert)
3076 val = max - val;
3077 val_mask = mask << shift;
3078 val = val << shift;
3079
Mark Brown9bde4f02012-12-19 16:05:00 +00003080 ret = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Joonyoung Shim0eaa6cc2013-03-26 14:41:05 +09003081 if (ret < 0)
Mark Brown9bde4f02012-12-19 16:05:00 +00003082 return ret;
3083
3084 if (snd_soc_volsw_is_stereo(mc)) {
3085 val = ((ucontrol->value.integer.value[1] + min) & mask);
3086 if (invert)
3087 val = max - val;
3088 val_mask = mask << shift;
3089 val = val << shift;
3090
3091 ret = snd_soc_update_bits_locked(codec, rreg, val_mask, val);
3092 }
3093
3094 return ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003095}
3096EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
3097
3098/**
3099 * snd_soc_get_volsw_range - single mixer get callback with range
3100 * @kcontrol: mixer control
3101 * @ucontrol: control element information
3102 *
3103 * Callback to get the value, within a range, of a single mixer control.
3104 *
3105 * Returns 0 for success.
3106 */
3107int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
3108 struct snd_ctl_elem_value *ucontrol)
3109{
3110 struct soc_mixer_control *mc =
3111 (struct soc_mixer_control *)kcontrol->private_value;
3112 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3113 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003114 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003115 unsigned int shift = mc->shift;
3116 int min = mc->min;
3117 int max = mc->max;
3118 unsigned int mask = (1 << fls(max)) - 1;
3119 unsigned int invert = mc->invert;
3120
3121 ucontrol->value.integer.value[0] =
3122 (snd_soc_read(codec, reg) >> shift) & mask;
3123 if (invert)
3124 ucontrol->value.integer.value[0] =
3125 max - ucontrol->value.integer.value[0];
3126 ucontrol->value.integer.value[0] =
3127 ucontrol->value.integer.value[0] - min;
3128
Mark Brown9bde4f02012-12-19 16:05:00 +00003129 if (snd_soc_volsw_is_stereo(mc)) {
3130 ucontrol->value.integer.value[1] =
3131 (snd_soc_read(codec, rreg) >> shift) & mask;
3132 if (invert)
3133 ucontrol->value.integer.value[1] =
3134 max - ucontrol->value.integer.value[1];
3135 ucontrol->value.integer.value[1] =
3136 ucontrol->value.integer.value[1] - min;
3137 }
3138
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003139 return 0;
3140}
3141EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
3142
3143/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003144 * snd_soc_limit_volume - Set new limit to an existing volume control.
3145 *
3146 * @codec: where to look for the control
3147 * @name: Name of the control
3148 * @max: new maximum limit
3149 *
3150 * Return 0 for success, else error.
3151 */
3152int snd_soc_limit_volume(struct snd_soc_codec *codec,
3153 const char *name, int max)
3154{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003155 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003156 struct snd_kcontrol *kctl;
3157 struct soc_mixer_control *mc;
3158 int found = 0;
3159 int ret = -EINVAL;
3160
3161 /* Sanity check for name and max */
3162 if (unlikely(!name || max <= 0))
3163 return -EINVAL;
3164
3165 list_for_each_entry(kctl, &card->controls, list) {
3166 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3167 found = 1;
3168 break;
3169 }
3170 }
3171 if (found) {
3172 mc = (struct soc_mixer_control *)kctl->private_value;
3173 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03003174 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003175 ret = 0;
3176 }
3177 }
3178 return ret;
3179}
3180EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3181
Mark Brown71d08512011-10-10 18:31:26 +01003182int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
3183 struct snd_ctl_elem_info *uinfo)
3184{
3185 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3186 struct soc_bytes *params = (void *)kcontrol->private_value;
3187
3188 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
3189 uinfo->count = params->num_regs * codec->val_bytes;
3190
3191 return 0;
3192}
3193EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
3194
3195int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
3196 struct snd_ctl_elem_value *ucontrol)
3197{
3198 struct soc_bytes *params = (void *)kcontrol->private_value;
3199 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3200 int ret;
3201
3202 if (codec->using_regmap)
3203 ret = regmap_raw_read(codec->control_data, params->base,
3204 ucontrol->value.bytes.data,
3205 params->num_regs * codec->val_bytes);
3206 else
3207 ret = -EINVAL;
3208
Mark Brownf831b052012-02-17 16:20:33 -08003209 /* Hide any masked bytes to ensure consistent data reporting */
3210 if (ret == 0 && params->mask) {
3211 switch (codec->val_bytes) {
3212 case 1:
3213 ucontrol->value.bytes.data[0] &= ~params->mask;
3214 break;
3215 case 2:
3216 ((u16 *)(&ucontrol->value.bytes.data))[0]
3217 &= ~params->mask;
3218 break;
3219 case 4:
3220 ((u32 *)(&ucontrol->value.bytes.data))[0]
3221 &= ~params->mask;
3222 break;
3223 default:
3224 return -EINVAL;
3225 }
3226 }
3227
Mark Brown71d08512011-10-10 18:31:26 +01003228 return ret;
3229}
3230EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
3231
3232int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
3233 struct snd_ctl_elem_value *ucontrol)
3234{
3235 struct soc_bytes *params = (void *)kcontrol->private_value;
3236 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownf831b052012-02-17 16:20:33 -08003237 int ret, len;
3238 unsigned int val;
3239 void *data;
Mark Brown71d08512011-10-10 18:31:26 +01003240
Mark Brownf831b052012-02-17 16:20:33 -08003241 if (!codec->using_regmap)
3242 return -EINVAL;
3243
Mark Brownf831b052012-02-17 16:20:33 -08003244 len = params->num_regs * codec->val_bytes;
3245
Mark Brownb5a8fe42013-01-20 21:42:22 +09003246 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
3247 if (!data)
3248 return -ENOMEM;
3249
Mark Brownf831b052012-02-17 16:20:33 -08003250 /*
3251 * If we've got a mask then we need to preserve the register
3252 * bits. We shouldn't modify the incoming data so take a
3253 * copy.
3254 */
3255 if (params->mask) {
3256 ret = regmap_read(codec->control_data, params->base, &val);
3257 if (ret != 0)
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003258 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003259
3260 val &= params->mask;
3261
Mark Brownf831b052012-02-17 16:20:33 -08003262 switch (codec->val_bytes) {
3263 case 1:
3264 ((u8 *)data)[0] &= ~params->mask;
3265 ((u8 *)data)[0] |= val;
3266 break;
3267 case 2:
3268 ((u16 *)data)[0] &= cpu_to_be16(~params->mask);
3269 ((u16 *)data)[0] |= cpu_to_be16(val);
3270 break;
3271 case 4:
3272 ((u32 *)data)[0] &= cpu_to_be32(~params->mask);
3273 ((u32 *)data)[0] |= cpu_to_be32(val);
3274 break;
3275 default:
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003276 ret = -EINVAL;
3277 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003278 }
3279 }
3280
3281 ret = regmap_raw_write(codec->control_data, params->base,
3282 data, len);
3283
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003284out:
Mark Brownb5a8fe42013-01-20 21:42:22 +09003285 kfree(data);
Mark Brown71d08512011-10-10 18:31:26 +01003286
3287 return ret;
3288}
3289EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
3290
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003291/**
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003292 * snd_soc_info_xr_sx - signed multi register info callback
3293 * @kcontrol: mreg control
3294 * @uinfo: control element information
3295 *
3296 * Callback to provide information of a control that can
3297 * span multiple codec registers which together
3298 * forms a single signed value in a MSB/LSB manner.
3299 *
3300 * Returns 0 for success.
3301 */
3302int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
3303 struct snd_ctl_elem_info *uinfo)
3304{
3305 struct soc_mreg_control *mc =
3306 (struct soc_mreg_control *)kcontrol->private_value;
3307 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3308 uinfo->count = 1;
3309 uinfo->value.integer.min = mc->min;
3310 uinfo->value.integer.max = mc->max;
3311
3312 return 0;
3313}
3314EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
3315
3316/**
3317 * snd_soc_get_xr_sx - signed multi register get callback
3318 * @kcontrol: mreg control
3319 * @ucontrol: control element information
3320 *
3321 * Callback to get the value of a control that can span
3322 * multiple codec registers which together forms a single
3323 * signed value in a MSB/LSB manner. The control supports
3324 * specifying total no of bits used to allow for bitfields
3325 * across the multiple codec registers.
3326 *
3327 * Returns 0 for success.
3328 */
3329int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
3330 struct snd_ctl_elem_value *ucontrol)
3331{
3332 struct soc_mreg_control *mc =
3333 (struct soc_mreg_control *)kcontrol->private_value;
3334 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3335 unsigned int regbase = mc->regbase;
3336 unsigned int regcount = mc->regcount;
3337 unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3338 unsigned int regwmask = (1<<regwshift)-1;
3339 unsigned int invert = mc->invert;
3340 unsigned long mask = (1UL<<mc->nbits)-1;
3341 long min = mc->min;
3342 long max = mc->max;
3343 long val = 0;
3344 unsigned long regval;
3345 unsigned int i;
3346
3347 for (i = 0; i < regcount; i++) {
3348 regval = snd_soc_read(codec, regbase+i) & regwmask;
3349 val |= regval << (regwshift*(regcount-i-1));
3350 }
3351 val &= mask;
3352 if (min < 0 && val > max)
3353 val |= ~mask;
3354 if (invert)
3355 val = max - val;
3356 ucontrol->value.integer.value[0] = val;
3357
3358 return 0;
3359}
3360EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
3361
3362/**
3363 * snd_soc_put_xr_sx - signed multi register get callback
3364 * @kcontrol: mreg control
3365 * @ucontrol: control element information
3366 *
3367 * Callback to set the value of a control that can span
3368 * multiple codec registers which together forms a single
3369 * signed value in a MSB/LSB manner. The control supports
3370 * specifying total no of bits used to allow for bitfields
3371 * across the multiple codec registers.
3372 *
3373 * Returns 0 for success.
3374 */
3375int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
3376 struct snd_ctl_elem_value *ucontrol)
3377{
3378 struct soc_mreg_control *mc =
3379 (struct soc_mreg_control *)kcontrol->private_value;
3380 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3381 unsigned int regbase = mc->regbase;
3382 unsigned int regcount = mc->regcount;
3383 unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3384 unsigned int regwmask = (1<<regwshift)-1;
3385 unsigned int invert = mc->invert;
3386 unsigned long mask = (1UL<<mc->nbits)-1;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003387 long max = mc->max;
3388 long val = ucontrol->value.integer.value[0];
3389 unsigned int i, regval, regmask;
3390 int err;
3391
3392 if (invert)
3393 val = max - val;
3394 val &= mask;
3395 for (i = 0; i < regcount; i++) {
3396 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3397 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
3398 err = snd_soc_update_bits_locked(codec, regbase+i,
3399 regmask, regval);
3400 if (err < 0)
3401 return err;
3402 }
3403
3404 return 0;
3405}
3406EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3407
3408/**
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003409 * snd_soc_get_strobe - strobe get callback
3410 * @kcontrol: mixer control
3411 * @ucontrol: control element information
3412 *
3413 * Callback get the value of a strobe mixer control.
3414 *
3415 * Returns 0 for success.
3416 */
3417int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
3418 struct snd_ctl_elem_value *ucontrol)
3419{
3420 struct soc_mixer_control *mc =
3421 (struct soc_mixer_control *)kcontrol->private_value;
3422 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3423 unsigned int reg = mc->reg;
3424 unsigned int shift = mc->shift;
3425 unsigned int mask = 1 << shift;
3426 unsigned int invert = mc->invert != 0;
3427 unsigned int val = snd_soc_read(codec, reg) & mask;
3428
3429 if (shift != 0 && val != 0)
3430 val = val >> shift;
3431 ucontrol->value.enumerated.item[0] = val ^ invert;
3432
3433 return 0;
3434}
3435EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3436
3437/**
3438 * snd_soc_put_strobe - strobe put callback
3439 * @kcontrol: mixer control
3440 * @ucontrol: control element information
3441 *
3442 * Callback strobe a register bit to high then low (or the inverse)
3443 * in one pass of a single mixer enum control.
3444 *
3445 * Returns 1 for success.
3446 */
3447int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3448 struct snd_ctl_elem_value *ucontrol)
3449{
3450 struct soc_mixer_control *mc =
3451 (struct soc_mixer_control *)kcontrol->private_value;
3452 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3453 unsigned int reg = mc->reg;
3454 unsigned int shift = mc->shift;
3455 unsigned int mask = 1 << shift;
3456 unsigned int invert = mc->invert != 0;
3457 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3458 unsigned int val1 = (strobe ^ invert) ? mask : 0;
3459 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3460 int err;
3461
3462 err = snd_soc_update_bits_locked(codec, reg, mask, val1);
3463 if (err < 0)
3464 return err;
3465
3466 err = snd_soc_update_bits_locked(codec, reg, mask, val2);
3467 return err;
3468}
3469EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3470
3471/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003472 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3473 * @dai: DAI
3474 * @clk_id: DAI specific clock ID
3475 * @freq: new clock frequency in Hz
3476 * @dir: new clock direction - input/output.
3477 *
3478 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3479 */
3480int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3481 unsigned int freq, int dir)
3482{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003483 if (dai->driver && dai->driver->ops->set_sysclk)
3484 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003485 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003486 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00003487 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003488 else
3489 return -EINVAL;
3490}
3491EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3492
3493/**
Mark Brownec4ee522011-03-07 20:58:11 +00003494 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3495 * @codec: CODEC
3496 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01003497 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00003498 * @freq: new clock frequency in Hz
3499 * @dir: new clock direction - input/output.
3500 *
3501 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3502 */
3503int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01003504 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00003505{
3506 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003507 return codec->driver->set_sysclk(codec, clk_id, source,
3508 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003509 else
3510 return -EINVAL;
3511}
3512EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3513
3514/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003515 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3516 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003517 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003518 * @div: new clock divisor.
3519 *
3520 * Configures the clock dividers. This is used to derive the best DAI bit and
3521 * frame clocks from the system or master clock. It's best to set the DAI bit
3522 * and frame clocks as low as possible to save system power.
3523 */
3524int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3525 int div_id, int div)
3526{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003527 if (dai->driver && dai->driver->ops->set_clkdiv)
3528 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003529 else
3530 return -EINVAL;
3531}
3532EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3533
3534/**
3535 * snd_soc_dai_set_pll - configure DAI PLL.
3536 * @dai: DAI
3537 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003538 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003539 * @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 */
Mark Brown85488032009-09-05 18:52:16 +01003544int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3545 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003546{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003547 if (dai->driver && dai->driver->ops->set_pll)
3548 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003549 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003550 else if (dai->codec && dai->codec->driver->set_pll)
3551 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3552 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003553 else
3554 return -EINVAL;
3555}
3556EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3557
Mark Brownec4ee522011-03-07 20:58:11 +00003558/*
3559 * snd_soc_codec_set_pll - configure codec PLL.
3560 * @codec: CODEC
3561 * @pll_id: DAI specific PLL ID
3562 * @source: DAI specific source for the PLL
3563 * @freq_in: PLL input clock frequency in Hz
3564 * @freq_out: requested PLL output clock frequency in Hz
3565 *
3566 * Configures and enables PLL to generate output clock based on input clock.
3567 */
3568int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3569 unsigned int freq_in, unsigned int freq_out)
3570{
3571 if (codec->driver->set_pll)
3572 return codec->driver->set_pll(codec, pll_id, source,
3573 freq_in, freq_out);
3574 else
3575 return -EINVAL;
3576}
3577EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3578
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003579/**
3580 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3581 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003582 * @fmt: SND_SOC_DAIFMT_ format value.
3583 *
3584 * Configures the DAI hardware format and clocking.
3585 */
3586int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3587{
Shawn Guo5e4ba562012-03-09 00:59:40 +08003588 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003589 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08003590 if (dai->driver->ops->set_fmt == NULL)
3591 return -ENOTSUPP;
3592 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003593}
3594EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3595
3596/**
3597 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3598 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003599 * @tx_mask: bitmask representing active TX slots.
3600 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003601 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003602 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003603 *
3604 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3605 * specific.
3606 */
3607int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003608 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003609{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003610 if (dai->driver && dai->driver->ops->set_tdm_slot)
3611 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003612 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003613 else
3614 return -EINVAL;
3615}
3616EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3617
3618/**
Barry Song472df3c2009-09-12 01:16:29 +08003619 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3620 * @dai: DAI
3621 * @tx_num: how many TX channels
3622 * @tx_slot: pointer to an array which imply the TX slot number channel
3623 * 0~num-1 uses
3624 * @rx_num: how many RX channels
3625 * @rx_slot: pointer to an array which imply the RX slot number channel
3626 * 0~num-1 uses
3627 *
3628 * configure the relationship between channel number and TDM slot number.
3629 */
3630int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3631 unsigned int tx_num, unsigned int *tx_slot,
3632 unsigned int rx_num, unsigned int *rx_slot)
3633{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003634 if (dai->driver && dai->driver->ops->set_channel_map)
3635 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003636 rx_num, rx_slot);
3637 else
3638 return -EINVAL;
3639}
3640EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3641
3642/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003643 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3644 * @dai: DAI
3645 * @tristate: tristate enable
3646 *
3647 * Tristates the DAI so that others can use it.
3648 */
3649int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3650{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003651 if (dai->driver && dai->driver->ops->set_tristate)
3652 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003653 else
3654 return -EINVAL;
3655}
3656EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3657
3658/**
3659 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3660 * @dai: DAI
3661 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00003662 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003663 *
3664 * Mutes the DAI DAC.
3665 */
Mark Brownda183962013-02-06 15:44:07 +00003666int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
3667 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003668{
Mark Brownda183962013-02-06 15:44:07 +00003669 if (!dai->driver)
3670 return -ENOTSUPP;
3671
3672 if (dai->driver->ops->mute_stream)
3673 return dai->driver->ops->mute_stream(dai, mute, direction);
3674 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
3675 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003676 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003677 else
Mark Brown04570c62012-04-13 19:16:03 +01003678 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003679}
3680EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3681
Mark Brownc5af3a22008-11-28 13:29:45 +00003682/**
3683 * snd_soc_register_card - Register a card with the ASoC core
3684 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003685 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003686 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003687 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303688int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003689{
Mark Brownb19e6e72012-03-14 21:18:39 +00003690 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003691
Mark Brownc5af3a22008-11-28 13:29:45 +00003692 if (!card->name || !card->dev)
3693 return -EINVAL;
3694
Stephen Warren5a504962011-12-21 10:40:59 -07003695 for (i = 0; i < card->num_links; i++) {
3696 struct snd_soc_dai_link *link = &card->dai_link[i];
3697
3698 /*
3699 * Codec must be specified by 1 of name or OF node,
3700 * not both or neither.
3701 */
3702 if (!!link->codec_name == !!link->codec_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003703 dev_err(card->dev,
3704 "ASoC: Neither/both codec name/of_node are set for %s\n",
3705 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003706 return -EINVAL;
3707 }
Stephen Warrenbc926572012-05-25 18:22:11 -06003708 /* Codec DAI name must be specified */
3709 if (!link->codec_dai_name) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003710 dev_err(card->dev,
3711 "ASoC: codec_dai_name not set for %s\n",
3712 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003713 return -EINVAL;
3714 }
Stephen Warren5a504962011-12-21 10:40:59 -07003715
3716 /*
3717 * Platform may be specified by either name or OF node, but
3718 * can be left unspecified, and a dummy platform will be used.
3719 */
3720 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003721 dev_err(card->dev,
3722 "ASoC: Both platform name/of_node are set for %s\n",
3723 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003724 return -EINVAL;
3725 }
3726
3727 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06003728 * CPU device may be specified by either name or OF node, but
3729 * can be left unspecified, and will be matched based on DAI
3730 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07003731 */
Stephen Warrenbc926572012-05-25 18:22:11 -06003732 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003733 dev_err(card->dev,
3734 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3735 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003736 return -EINVAL;
3737 }
3738 /*
3739 * At least one of CPU DAI name or CPU device name/node must be
3740 * specified
3741 */
3742 if (!link->cpu_dai_name &&
3743 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003744 dev_err(card->dev,
3745 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3746 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003747 return -EINVAL;
3748 }
3749 }
3750
Mark Browned77cc12011-05-03 18:25:34 +01003751 dev_set_drvdata(card->dev, card);
3752
Stephen Warren111c6412011-01-28 14:26:35 -07003753 snd_soc_initialize_card_lists(card);
3754
Vinod Koul150dd2f2011-01-13 22:48:32 +05303755 soc_init_card_debugfs(card);
3756
Mark Brown181a6892012-03-14 20:18:49 +00003757 card->rtd = devm_kzalloc(card->dev,
3758 sizeof(struct snd_soc_pcm_runtime) *
3759 (card->num_links + card->num_aux_devs),
3760 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003761 if (card->rtd == NULL)
3762 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01003763 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003764 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003765
3766 for (i = 0; i < card->num_links; i++)
3767 card->rtd[i].dai_link = &card->dai_link[i];
3768
Mark Brownc5af3a22008-11-28 13:29:45 +00003769 INIT_LIST_HEAD(&card->list);
Mark Browndb432b42011-10-03 21:06:40 +01003770 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00003771 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003772 mutex_init(&card->mutex);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003773 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003774
Mark Brownb19e6e72012-03-14 21:18:39 +00003775 ret = snd_soc_instantiate_card(card);
3776 if (ret != 0)
3777 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003778
Mark Brownb19e6e72012-03-14 21:18:39 +00003779 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00003780}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303781EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003782
3783/**
3784 * snd_soc_unregister_card - Unregister a card with the ASoC core
3785 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003786 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003787 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003788 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303789int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003790{
Vinod Koulb0e26482011-01-13 22:48:02 +05303791 if (card->instantiated)
3792 soc_cleanup_card_resources(card);
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003793 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00003794
3795 return 0;
3796}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303797EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003798
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003799/*
3800 * Simplify DAI link configuration by removing ".-1" from device names
3801 * and sanitizing names.
3802 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003803static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003804{
3805 char *found, name[NAME_SIZE];
3806 int id1, id2;
3807
3808 if (dev_name(dev) == NULL)
3809 return NULL;
3810
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003811 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003812
3813 /* are we a "%s.%d" name (platform and SPI components) */
3814 found = strstr(name, dev->driver->name);
3815 if (found) {
3816 /* get ID */
3817 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3818
3819 /* discard ID from name if ID == -1 */
3820 if (*id == -1)
3821 found[strlen(dev->driver->name)] = '\0';
3822 }
3823
3824 } else {
3825 /* I2C component devices are named "bus-addr" */
3826 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3827 char tmp[NAME_SIZE];
3828
3829 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003830 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003831
3832 /* sanitize component name for DAI link creation */
3833 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003834 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003835 } else
3836 *id = 0;
3837 }
3838
3839 return kstrdup(name, GFP_KERNEL);
3840}
3841
3842/*
3843 * Simplify DAI link naming for single devices with multiple DAIs by removing
3844 * any ".-1" and using the DAI name (instead of device name).
3845 */
3846static inline char *fmt_multiple_name(struct device *dev,
3847 struct snd_soc_dai_driver *dai_drv)
3848{
3849 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003850 dev_err(dev,
3851 "ASoC: error - multiple DAI %s registered with no name\n",
3852 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003853 return NULL;
3854 }
3855
3856 return kstrdup(dai_drv->name, GFP_KERNEL);
3857}
3858
Mark Brown91151712008-11-30 23:31:24 +00003859/**
3860 * snd_soc_register_dai - Register a DAI with the ASoC core
3861 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003862 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003863 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003864static int snd_soc_register_dai(struct device *dev,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003865 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003866{
Mark Brown054880f2012-04-09 17:29:19 +01003867 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003868 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003869
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003870 dev_dbg(dev, "ASoC: dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003871
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003872 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3873 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003874 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003875
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003876 /* create DAI component name */
3877 dai->name = fmt_single_name(dev, &dai->id);
3878 if (dai->name == NULL) {
3879 kfree(dai);
3880 return -ENOMEM;
3881 }
3882
3883 dai->dev = dev;
3884 dai->driver = dai_drv;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003885 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003886 if (!dai->driver->ops)
3887 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003888
3889 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003890
3891 list_for_each_entry(codec, &codec_list, list) {
3892 if (codec->dev == dev) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003893 dev_dbg(dev, "ASoC: Mapped DAI %s to CODEC %s\n",
Mark Brown054880f2012-04-09 17:29:19 +01003894 dai->name, codec->name);
3895 dai->codec = codec;
3896 break;
3897 }
3898 }
3899
Peter Ujfalusi5f800082012-08-07 10:24:13 +03003900 if (!dai->codec)
3901 dai->dapm.idle_bias_off = 1;
3902
Mark Brown91151712008-11-30 23:31:24 +00003903 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003904
Mark Brown91151712008-11-30 23:31:24 +00003905 mutex_unlock(&client_mutex);
3906
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003907 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003908
3909 return 0;
3910}
Mark Brown91151712008-11-30 23:31:24 +00003911
3912/**
3913 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3914 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003915 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003916 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003917static void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003918{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003919 struct snd_soc_dai *dai;
3920
3921 list_for_each_entry(dai, &dai_list, list) {
3922 if (dev == dai->dev)
3923 goto found;
3924 }
3925 return;
3926
3927found:
Mark Brown91151712008-11-30 23:31:24 +00003928 mutex_lock(&client_mutex);
3929 list_del(&dai->list);
3930 mutex_unlock(&client_mutex);
3931
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003932 dev_dbg(dev, "ASoC: Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003933 kfree(dai->name);
3934 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003935}
Mark Brown91151712008-11-30 23:31:24 +00003936
3937/**
3938 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3939 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003940 * @dai: Array of DAIs to register
3941 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003942 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003943static int snd_soc_register_dais(struct device *dev,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003944 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003945{
Mark Brown054880f2012-04-09 17:29:19 +01003946 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003947 struct snd_soc_dai *dai;
3948 int i, ret = 0;
3949
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003950 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003951
3952 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003953
3954 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003955 if (dai == NULL) {
3956 ret = -ENOMEM;
3957 goto err;
3958 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003959
3960 /* create DAI component name */
3961 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3962 if (dai->name == NULL) {
3963 kfree(dai);
3964 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003965 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003966 }
3967
3968 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003969 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003970 if (dai->driver->id)
3971 dai->id = dai->driver->id;
3972 else
3973 dai->id = i;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003974 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003975 if (!dai->driver->ops)
3976 dai->driver->ops = &null_dai_ops;
3977
3978 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003979
3980 list_for_each_entry(codec, &codec_list, list) {
3981 if (codec->dev == dev) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003982 dev_dbg(dev,
3983 "ASoC: Mapped DAI %s to CODEC %s\n",
3984 dai->name, codec->name);
Mark Brown054880f2012-04-09 17:29:19 +01003985 dai->codec = codec;
3986 break;
3987 }
3988 }
3989
Peter Ujfalusi5f800082012-08-07 10:24:13 +03003990 if (!dai->codec)
3991 dai->dapm.idle_bias_off = 1;
3992
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003993 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003994
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003995 mutex_unlock(&client_mutex);
3996
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003997 dev_dbg(dai->dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003998 }
3999
4000 return 0;
4001
4002err:
4003 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004004 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00004005
4006 return ret;
4007}
Mark Brown91151712008-11-30 23:31:24 +00004008
4009/**
4010 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
4011 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004012 * @dai: Array of DAIs to unregister
4013 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00004014 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07004015static void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00004016{
4017 int i;
4018
4019 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004020 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00004021}
Mark Brown91151712008-11-30 23:31:24 +00004022
Mark Brown12a48a8c2008-12-03 19:40:30 +00004023/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004024 * snd_soc_add_platform - Add a platform to the ASoC core
4025 * @dev: The parent device for the platform
4026 * @platform: The platform to add
4027 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00004028 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004029int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01004030 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004031{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004032 /* create platform component name */
4033 platform->name = fmt_single_name(dev, &platform->id);
Dan Carpenterb5c745f2013-07-22 09:56:54 +03004034 if (platform->name == NULL)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004035 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004036
4037 platform->dev = dev;
4038 platform->driver = platform_drv;
Liam Girdwoodb7950642011-07-04 22:10:52 +01004039 platform->dapm.dev = dev;
4040 platform->dapm.platform = platform;
Liam Girdwood64a648c2011-07-25 11:15:15 +01004041 platform->dapm.stream_event = platform_drv->stream_event;
Liam Girdwoodcc22d372012-03-06 18:16:18 +00004042 mutex_init(&platform->mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004043
4044 mutex_lock(&client_mutex);
4045 list_add(&platform->list, &platform_list);
4046 mutex_unlock(&client_mutex);
4047
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004048 dev_dbg(dev, "ASoC: Registered platform '%s'\n", platform->name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004049
4050 return 0;
4051}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004052EXPORT_SYMBOL_GPL(snd_soc_add_platform);
4053
4054/**
4055 * snd_soc_register_platform - Register a platform with the ASoC core
4056 *
4057 * @platform: platform to register
4058 */
4059int snd_soc_register_platform(struct device *dev,
4060 const struct snd_soc_platform_driver *platform_drv)
4061{
4062 struct snd_soc_platform *platform;
4063 int ret;
4064
4065 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
4066
4067 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
4068 if (platform == NULL)
4069 return -ENOMEM;
4070
4071 ret = snd_soc_add_platform(dev, platform, platform_drv);
4072 if (ret)
4073 kfree(platform);
4074
4075 return ret;
4076}
Mark Brown12a48a8c2008-12-03 19:40:30 +00004077EXPORT_SYMBOL_GPL(snd_soc_register_platform);
4078
4079/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004080 * snd_soc_remove_platform - Remove a platform from the ASoC core
4081 * @platform: the platform to remove
4082 */
4083void snd_soc_remove_platform(struct snd_soc_platform *platform)
4084{
4085 mutex_lock(&client_mutex);
4086 list_del(&platform->list);
4087 mutex_unlock(&client_mutex);
4088
4089 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
4090 platform->name);
4091 kfree(platform->name);
4092}
4093EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
4094
4095struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
4096{
4097 struct snd_soc_platform *platform;
4098
4099 list_for_each_entry(platform, &platform_list, list) {
4100 if (dev == platform->dev)
4101 return platform;
4102 }
4103
4104 return NULL;
4105}
4106EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
4107
4108/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00004109 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4110 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004111 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00004112 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004113void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004114{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004115 struct snd_soc_platform *platform;
4116
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004117 platform = snd_soc_lookup_platform(dev);
4118 if (!platform)
4119 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004120
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004121 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004122 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004123}
4124EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
4125
Mark Brown151ab222009-05-09 16:22:58 +01004126static u64 codec_format_map[] = {
4127 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
4128 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
4129 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
4130 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
4131 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
4132 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
4133 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4134 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4135 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
4136 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
4137 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
4138 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
4139 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
4140 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
4141 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4142 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
4143};
4144
4145/* Fix up the DAI formats for endianness: codecs don't actually see
4146 * the endianness of the data but we're using the CPU format
4147 * definitions which do need to include endianness so we ensure that
4148 * codec DAIs always have both big and little endian variants set.
4149 */
4150static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
4151{
4152 int i;
4153
4154 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
4155 if (stream->formats & codec_format_map[i])
4156 stream->formats |= codec_format_map[i];
4157}
4158
Mark Brown0d0cf002008-12-10 14:32:45 +00004159/**
4160 * snd_soc_register_codec - Register a codec with the ASoC core
4161 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004162 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00004163 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004164int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00004165 const struct snd_soc_codec_driver *codec_drv,
4166 struct snd_soc_dai_driver *dai_drv,
4167 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00004168{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004169 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004170 struct snd_soc_codec *codec;
4171 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01004172
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004173 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00004174
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004175 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
4176 if (codec == NULL)
4177 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00004178
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004179 /* create CODEC component name */
4180 codec->name = fmt_single_name(dev, &codec->id);
4181 if (codec->name == NULL) {
Kuninori Morimotof790b942013-02-25 00:40:09 -08004182 ret = -ENOMEM;
4183 goto fail_codec;
Mark Brown151ab222009-05-09 16:22:58 +01004184 }
4185
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00004186 if (codec_drv->compress_type)
4187 codec->compress_type = codec_drv->compress_type;
4188 else
4189 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
4190
Mark Brownc3acec22010-12-02 16:15:29 +00004191 codec->write = codec_drv->write;
4192 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00004193 codec->volatile_register = codec_drv->volatile_register;
4194 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00004195 codec->writable_register = codec_drv->writable_register;
Mark Brown5124e692012-02-08 13:20:50 +00004196 codec->ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004197 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
4198 codec->dapm.dev = dev;
4199 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00004200 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwood64a648c2011-07-25 11:15:15 +01004201 codec->dapm.stream_event = codec_drv->stream_event;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004202 codec->dev = dev;
4203 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004204 codec->num_dai = num_dai;
4205 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004206
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004207 /* allocate CODEC register cache */
4208 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004209 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00004210 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004211 /* it is necessary to make a copy of the default register cache
4212 * because in the case of using a compression type that requires
Bill Pembertonf6e65742012-11-19 13:25:33 -05004213 * the default register cache to be marked as the
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004214 * kernel might have freed the array by the time we initialize
4215 * the cache.
4216 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00004217 if (codec_drv->reg_cache_default) {
4218 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
4219 reg_size, GFP_KERNEL);
4220 if (!codec->reg_def_copy) {
4221 ret = -ENOMEM;
Kuninori Morimotof790b942013-02-25 00:40:09 -08004222 goto fail_codec_name;
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00004223 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004224 }
4225 }
4226
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00004227 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
4228 if (!codec->volatile_register)
4229 codec->volatile_register = snd_soc_default_volatile_register;
4230 if (!codec->readable_register)
4231 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00004232 if (!codec->writable_register)
4233 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00004234 }
4235
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004236 for (i = 0; i < num_dai; i++) {
4237 fixup_codec_formats(&dai_drv[i].playback);
4238 fixup_codec_formats(&dai_drv[i].capture);
4239 }
4240
Mark Brown054880f2012-04-09 17:29:19 +01004241 mutex_lock(&client_mutex);
4242 list_add(&codec->list, &codec_list);
4243 mutex_unlock(&client_mutex);
4244
Mark Brown26b01cc2010-08-18 20:20:55 +01004245 /* register any DAIs */
Kuninori Morimoto5acd7df2013-02-25 00:40:40 -08004246 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
4247 if (ret < 0) {
4248 dev_err(codec->dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4249 goto fail_codec_name;
Mark Brown26b01cc2010-08-18 20:20:55 +01004250 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004251
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004252 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00004253 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004254
Kuninori Morimotof790b942013-02-25 00:40:09 -08004255fail_codec_name:
Kuninori Morimotoe1328a82013-03-07 17:42:33 -08004256 mutex_lock(&client_mutex);
4257 list_del(&codec->list);
4258 mutex_unlock(&client_mutex);
4259
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004260 kfree(codec->name);
Kuninori Morimotof790b942013-02-25 00:40:09 -08004261fail_codec:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004262 kfree(codec);
4263 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00004264}
4265EXPORT_SYMBOL_GPL(snd_soc_register_codec);
4266
4267/**
4268 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4269 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004270 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00004271 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004272void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00004273{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004274 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004275
4276 list_for_each_entry(codec, &codec_list, list) {
4277 if (dev == codec->dev)
4278 goto found;
4279 }
4280 return;
4281
4282found:
Kuninori Morimoto5acd7df2013-02-25 00:40:40 -08004283 snd_soc_unregister_dais(dev, codec->num_dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004284
Mark Brown0d0cf002008-12-10 14:32:45 +00004285 mutex_lock(&client_mutex);
4286 list_del(&codec->list);
4287 mutex_unlock(&client_mutex);
4288
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004289 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004290
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004291 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004292 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01004293 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004294 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00004295}
4296EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
4297
Kuninori Morimoto030e79f2013-03-11 18:27:21 -07004298
4299/**
4300 * snd_soc_register_component - Register a component with the ASoC core
4301 *
4302 */
4303int snd_soc_register_component(struct device *dev,
4304 const struct snd_soc_component_driver *cmpnt_drv,
4305 struct snd_soc_dai_driver *dai_drv,
4306 int num_dai)
4307{
4308 struct snd_soc_component *cmpnt;
4309 int ret;
4310
4311 dev_dbg(dev, "component register %s\n", dev_name(dev));
4312
4313 cmpnt = devm_kzalloc(dev, sizeof(*cmpnt), GFP_KERNEL);
4314 if (!cmpnt) {
4315 dev_err(dev, "ASoC: Failed to allocate memory\n");
4316 return -ENOMEM;
4317 }
4318
4319 cmpnt->name = fmt_single_name(dev, &cmpnt->id);
4320 if (!cmpnt->name) {
4321 dev_err(dev, "ASoC: Failed to simplifying name\n");
4322 return -ENOMEM;
4323 }
4324
4325 cmpnt->dev = dev;
4326 cmpnt->driver = cmpnt_drv;
4327 cmpnt->num_dai = num_dai;
4328
Kuninori Morimotoa1422b82013-03-21 03:27:13 -07004329 /*
4330 * snd_soc_register_dai() uses fmt_single_name(), and
4331 * snd_soc_register_dais() uses fmt_multiple_name()
4332 * for dai->name which is used for name based matching
4333 */
4334 if (1 == num_dai)
4335 ret = snd_soc_register_dai(dev, dai_drv);
4336 else
4337 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -07004338 if (ret < 0) {
4339 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4340 goto error_component_name;
4341 }
4342
4343 mutex_lock(&client_mutex);
4344 list_add(&cmpnt->list, &component_list);
4345 mutex_unlock(&client_mutex);
4346
4347 dev_dbg(cmpnt->dev, "ASoC: Registered component '%s'\n", cmpnt->name);
4348
4349 return ret;
4350
4351error_component_name:
4352 kfree(cmpnt->name);
4353
4354 return ret;
4355}
Stephen Warren2e1cc192013-03-26 16:38:19 -06004356EXPORT_SYMBOL_GPL(snd_soc_register_component);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -07004357
4358/**
4359 * snd_soc_unregister_component - Unregister a component from the ASoC core
4360 *
4361 */
4362void snd_soc_unregister_component(struct device *dev)
4363{
4364 struct snd_soc_component *cmpnt;
4365
4366 list_for_each_entry(cmpnt, &component_list, list) {
4367 if (dev == cmpnt->dev)
4368 goto found;
4369 }
4370 return;
4371
4372found:
4373 snd_soc_unregister_dais(dev, cmpnt->num_dai);
4374
4375 mutex_lock(&client_mutex);
4376 list_del(&cmpnt->list);
4377 mutex_unlock(&client_mutex);
4378
4379 dev_dbg(dev, "ASoC: Unregistered component '%s'\n", cmpnt->name);
4380 kfree(cmpnt->name);
4381}
Stephen Warren2e1cc192013-03-26 16:38:19 -06004382EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -07004383
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004384/* Retrieve a card's name from device tree */
4385int snd_soc_of_parse_card_name(struct snd_soc_card *card,
4386 const char *propname)
4387{
4388 struct device_node *np = card->dev->of_node;
4389 int ret;
4390
4391 ret = of_property_read_string_index(np, propname, 0, &card->name);
4392 /*
4393 * EINVAL means the property does not exist. This is fine providing
4394 * card->name was previously set, which is checked later in
4395 * snd_soc_register_card.
4396 */
4397 if (ret < 0 && ret != -EINVAL) {
4398 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004399 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004400 propname, ret);
4401 return ret;
4402 }
4403
4404 return 0;
4405}
4406EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
4407
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004408int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
4409 const char *propname)
4410{
4411 struct device_node *np = card->dev->of_node;
4412 int num_routes;
4413 struct snd_soc_dapm_route *routes;
4414 int i, ret;
4415
4416 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08004417 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02004418 dev_err(card->dev,
4419 "ASoC: Property '%s' does not exist or its length is not even\n",
4420 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004421 return -EINVAL;
4422 }
4423 num_routes /= 2;
4424 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004425 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004426 propname);
4427 return -EINVAL;
4428 }
4429
4430 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
4431 GFP_KERNEL);
4432 if (!routes) {
4433 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004434 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004435 return -EINVAL;
4436 }
4437
4438 for (i = 0; i < num_routes; i++) {
4439 ret = of_property_read_string_index(np, propname,
4440 2 * i, &routes[i].sink);
4441 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09004442 dev_err(card->dev,
4443 "ASoC: Property '%s' index %d could not be read: %d\n",
4444 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004445 return -EINVAL;
4446 }
4447 ret = of_property_read_string_index(np, propname,
4448 (2 * i) + 1, &routes[i].source);
4449 if (ret) {
4450 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09004451 "ASoC: Property '%s' index %d could not be read: %d\n",
4452 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004453 return -EINVAL;
4454 }
4455 }
4456
4457 card->num_dapm_routes = num_routes;
4458 card->dapm_routes = routes;
4459
4460 return 0;
4461}
4462EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
4463
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004464unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
4465 const char *prefix)
4466{
4467 int ret, i;
4468 char prop[128];
4469 unsigned int format = 0;
4470 int bit, frame;
4471 const char *str;
4472 struct {
4473 char *name;
4474 unsigned int val;
4475 } of_fmt_table[] = {
4476 { "i2s", SND_SOC_DAIFMT_I2S },
4477 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
4478 { "left_j", SND_SOC_DAIFMT_LEFT_J },
4479 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
4480 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
4481 { "ac97", SND_SOC_DAIFMT_AC97 },
4482 { "pdm", SND_SOC_DAIFMT_PDM},
4483 { "msb", SND_SOC_DAIFMT_MSB },
4484 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004485 };
4486
4487 if (!prefix)
4488 prefix = "";
4489
4490 /*
4491 * check "[prefix]format = xxx"
4492 * SND_SOC_DAIFMT_FORMAT_MASK area
4493 */
4494 snprintf(prop, sizeof(prop), "%sformat", prefix);
4495 ret = of_property_read_string(np, prop, &str);
4496 if (ret == 0) {
4497 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
4498 if (strcmp(str, of_fmt_table[i].name) == 0) {
4499 format |= of_fmt_table[i].val;
4500 break;
4501 }
4502 }
4503 }
4504
4505 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004506 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004507 * SND_SOC_DAIFMT_CLOCK_MASK area
4508 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004509 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
4510 if (of_get_property(np, prop, NULL))
4511 format |= SND_SOC_DAIFMT_CONT;
4512 else
4513 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004514
4515 /*
4516 * check "[prefix]bitclock-inversion"
4517 * check "[prefix]frame-inversion"
4518 * SND_SOC_DAIFMT_INV_MASK area
4519 */
4520 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
4521 bit = !!of_get_property(np, prop, NULL);
4522
4523 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
4524 frame = !!of_get_property(np, prop, NULL);
4525
4526 switch ((bit << 4) + frame) {
4527 case 0x11:
4528 format |= SND_SOC_DAIFMT_IB_IF;
4529 break;
4530 case 0x10:
4531 format |= SND_SOC_DAIFMT_IB_NF;
4532 break;
4533 case 0x01:
4534 format |= SND_SOC_DAIFMT_NB_IF;
4535 break;
4536 default:
4537 /* SND_SOC_DAIFMT_NB_NF is default */
4538 break;
4539 }
4540
4541 /*
4542 * check "[prefix]bitclock-master"
4543 * check "[prefix]frame-master"
4544 * SND_SOC_DAIFMT_MASTER_MASK area
4545 */
4546 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4547 bit = !!of_get_property(np, prop, NULL);
4548
4549 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4550 frame = !!of_get_property(np, prop, NULL);
4551
4552 switch ((bit << 4) + frame) {
4553 case 0x11:
4554 format |= SND_SOC_DAIFMT_CBM_CFM;
4555 break;
4556 case 0x10:
4557 format |= SND_SOC_DAIFMT_CBM_CFS;
4558 break;
4559 case 0x01:
4560 format |= SND_SOC_DAIFMT_CBS_CFM;
4561 break;
4562 default:
4563 format |= SND_SOC_DAIFMT_CBS_CFS;
4564 break;
4565 }
4566
4567 return format;
4568}
4569EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4570
Takashi Iwaic9b3a402008-12-10 07:47:22 +01004571static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004572{
Mark Brown384c89e2008-12-03 17:34:03 +00004573#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004574 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
4575 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02004576 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00004577 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00004578 }
Mark Brownc3c5a192010-09-15 18:15:14 +01004579
Mark Brown8a9dab12011-01-10 22:25:21 +00004580 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01004581 &codec_list_fops))
4582 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4583
Mark Brown8a9dab12011-01-10 22:25:21 +00004584 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01004585 &dai_list_fops))
4586 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01004587
Mark Brown8a9dab12011-01-10 22:25:21 +00004588 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01004589 &platform_list_fops))
4590 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00004591#endif
4592
Mark Brownfb257892011-04-28 10:57:54 +01004593 snd_soc_util_init();
4594
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004595 return platform_driver_register(&soc_driver);
4596}
Mark Brown4abe8e12010-10-12 17:41:03 +01004597module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004598
Mark Brown7d8c16a2008-11-30 22:11:24 +00004599static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004600{
Mark Brownfb257892011-04-28 10:57:54 +01004601 snd_soc_util_exit();
4602
Mark Brown384c89e2008-12-03 17:34:03 +00004603#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004604 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00004605#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02004606 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004607}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004608module_exit(snd_soc_exit);
4609
4610/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004611MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004612MODULE_DESCRIPTION("ALSA SoC Core");
4613MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02004614MODULE_ALIAS("platform:soc-audio");