blob: b5c91f9aa1600611dd4a64ed503511ca0a2e4bfb [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
Frank Mandarinodb2a4162006-10-06 18:31:09 +020053static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
54
Mark Brown384c89e2008-12-03 17:34:03 +000055#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000056struct dentry *snd_soc_debugfs_root;
57EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000058#endif
59
Mark Brownc5af3a22008-11-28 13:29:45 +000060static DEFINE_MUTEX(client_mutex);
Mark Brown91151712008-11-30 23:31:24 +000061static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000062static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000063static LIST_HEAD(codec_list);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -070064static LIST_HEAD(component_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000065
Frank Mandarinodb2a4162006-10-06 18:31:09 +020066/*
67 * This is a timeout to do a DAPM powerdown after a stream is closed().
68 * It can be used to eliminate pops between different playback streams, e.g.
69 * between two audio tracks.
70 */
71static int pmdown_time = 5000;
72module_param(pmdown_time, int, 0);
73MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
74
Markus Pargmann741a5092013-08-19 17:05:55 +020075struct snd_ac97_reset_cfg {
76 struct pinctrl *pctl;
77 struct pinctrl_state *pstate_reset;
78 struct pinctrl_state *pstate_warm_reset;
79 struct pinctrl_state *pstate_run;
80 int gpio_sdata;
81 int gpio_sync;
82 int gpio_reset;
83};
84
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000085/* returns the minimum number of bytes needed to represent
86 * a particular given value */
87static int min_bytes_needed(unsigned long val)
88{
89 int c = 0;
90 int i;
91
92 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
93 if (val & (1UL << i))
94 break;
95 c = (sizeof val * 8) - c;
96 if (!c || (c % 8))
97 c = (c + 8) / 8;
98 else
99 c /= 8;
100 return c;
101}
102
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000103/* fill buf which is 'len' bytes with a formatted
104 * string of the form 'reg: value\n' */
105static int format_register_str(struct snd_soc_codec *codec,
106 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +0000107{
Stephen Warren00b317a2011-04-01 14:50:44 -0600108 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
109 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000110 int ret;
111 char tmpbuf[len + 1];
112 char regbuf[regsize + 1];
113
114 /* since tmpbuf is allocated on the stack, warn the callers if they
115 * try to abuse this function */
116 WARN_ON(len > 63);
117
118 /* +2 for ': ' and + 1 for '\n' */
119 if (wordsize + regsize + 2 + 1 != len)
120 return -EINVAL;
121
Mark Brown25032c12011-08-01 13:52:48 +0900122 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000123 if (ret < 0) {
124 memset(regbuf, 'X', regsize);
125 regbuf[regsize] = '\0';
126 } else {
127 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
128 }
129
130 /* prepare the buffer */
131 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
132 /* copy it back to the caller without the '\0' */
133 memcpy(buf, tmpbuf, len);
134
135 return 0;
136}
137
138/* codec register dump */
139static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
140 size_t count, loff_t pos)
141{
142 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000143 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000144 int len;
145 size_t total = 0;
146 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000147
Stephen Warren00b317a2011-04-01 14:50:44 -0600148 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
149 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000150
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000151 len = wordsize + regsize + 2 + 1;
152
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000153 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000154 return 0;
155
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000156 if (codec->driver->reg_cache_step)
157 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000158
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000159 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausenb92d1502011-08-27 18:24:14 +0200160 if (!snd_soc_codec_readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +0000161 continue;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000162 if (codec->driver->display_register) {
163 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +0000164 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +0100165 } else {
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000166 /* only support larger than PAGE_SIZE bytes debugfs
167 * entries for the default case */
168 if (p >= pos) {
169 if (total + len >= count - 1)
170 break;
171 format_register_str(codec, i, buf + total, len);
172 total += len;
173 }
174 p += len;
Mark Brown5164d742010-07-14 16:14:33 +0100175 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000176 }
177
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000178 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000179
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000180 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000181}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000182
Mark Brown2624d5f2009-11-03 21:56:13 +0000183static ssize_t codec_reg_show(struct device *dev,
184 struct device_attribute *attr, char *buf)
185{
Mark Brown36ae1a92012-01-06 17:12:45 -0800186 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000187
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000188 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000189}
190
191static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
192
Mark Browndbe21402010-02-12 11:37:24 +0000193static ssize_t pmdown_time_show(struct device *dev,
194 struct device_attribute *attr, char *buf)
195{
Mark Brown36ae1a92012-01-06 17:12:45 -0800196 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000197
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000198 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000199}
200
201static ssize_t pmdown_time_set(struct device *dev,
202 struct device_attribute *attr,
203 const char *buf, size_t count)
204{
Mark Brown36ae1a92012-01-06 17:12:45 -0800205 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700206 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000207
Mark Brownc593b522010-10-27 20:11:17 -0700208 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
209 if (ret)
210 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000211
212 return count;
213}
214
215static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
216
Mark Brown2624d5f2009-11-03 21:56:13 +0000217#ifdef CONFIG_DEBUG_FS
Mark Brown2624d5f2009-11-03 21:56:13 +0000218static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000219 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000220{
221 ssize_t ret;
222 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000223 char *buf;
224
225 if (*ppos < 0 || !count)
226 return -EINVAL;
227
228 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000229 if (!buf)
230 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000231
232 ret = soc_codec_reg_show(codec, buf, count, *ppos);
233 if (ret >= 0) {
234 if (copy_to_user(user_buf, buf, ret)) {
235 kfree(buf);
236 return -EFAULT;
237 }
238 *ppos += ret;
239 }
240
Mark Brown2624d5f2009-11-03 21:56:13 +0000241 kfree(buf);
242 return ret;
243}
244
245static ssize_t codec_reg_write_file(struct file *file,
246 const char __user *user_buf, size_t count, loff_t *ppos)
247{
248 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700249 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000250 char *start = buf;
251 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000252 struct snd_soc_codec *codec = file->private_data;
253
254 buf_size = min(count, (sizeof(buf)-1));
255 if (copy_from_user(buf, user_buf, buf_size))
256 return -EFAULT;
257 buf[buf_size] = 0;
258
Mark Brown2624d5f2009-11-03 21:56:13 +0000259 while (*start == ' ')
260 start++;
261 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000262 while (*start == ' ')
263 start++;
264 if (strict_strtoul(start, 16, &value))
265 return -EINVAL;
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
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000546#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200547/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000548int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200549{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000550 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200551 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200552 int i;
553
Daniel Macke3509ff2009-06-03 17:44:49 +0200554 /* If the initialization of this soc device failed, there is no codec
555 * associated with it. Just bail out in this case.
556 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000557 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200558 return 0;
559
Andy Green6ed25972008-06-13 16:24:05 +0100560 /* Due to the resume being scheduled into a workqueue we could
561 * suspend before that's finished - wait for it to complete.
562 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000563 snd_power_lock(card->snd_card);
564 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
565 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100566
567 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000568 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100569
Mark Browna00f90f2010-12-02 16:24:24 +0000570 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000571 for (i = 0; i < card->num_rtd; i++) {
572 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
573 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100574
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000575 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100576 continue;
577
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000578 if (drv->ops->digital_mute && dai->playback_active)
579 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200580 }
581
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100582 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000583 for (i = 0; i < card->num_rtd; i++) {
584 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 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100588 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100589
Mark Brown87506542008-11-18 20:50:34 +0000590 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000591 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200592
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000593 for (i = 0; i < card->num_rtd; i++) {
594 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
595 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100596
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000597 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100598 continue;
599
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000600 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
601 cpu_dai->driver->suspend(cpu_dai);
602 if (platform->driver->suspend && !platform->suspended) {
603 platform->driver->suspend(cpu_dai);
604 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100605 }
606 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200607
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000608 /* close any waiting streams and save state */
609 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo43829732012-08-20 14:51:24 -0700610 flush_delayed_work(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200611 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000612 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100613
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000614 for (i = 0; i < card->num_rtd; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000615
616 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100617 continue;
618
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800619 snd_soc_dapm_stream_event(&card->rtd[i],
620 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800621 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000622
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800623 snd_soc_dapm_stream_event(&card->rtd[i],
624 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800625 SND_SOC_DAPM_STREAM_SUSPEND);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000626 }
627
Mark Browne2d32ff2012-08-31 17:38:32 -0700628 /* Recheck all analogue paths too */
629 dapm_mark_io_dirty(&card->dapm);
630 snd_soc_dapm_sync(&card->dapm);
631
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000632 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200633 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000634 /* If there are paths active then the CODEC will be held with
635 * bias _ON and should not be suspended. */
636 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200637 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000638 case SND_SOC_BIAS_STANDBY:
Mark Brown125a25d2012-01-31 15:49:10 +0000639 /*
640 * If the CODEC is capable of idle
641 * bias off then being in STANDBY
642 * means it's doing something,
643 * otherwise fall through.
644 */
645 if (codec->dapm.idle_bias_off) {
646 dev_dbg(codec->dev,
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200647 "ASoC: idle_bias_off CODEC on over suspend\n");
Mark Brown125a25d2012-01-31 15:49:10 +0000648 break;
649 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000650 case SND_SOC_BIAS_OFF:
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100651 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000652 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900653 codec->cache_sync = 1;
Mark Brownda8b8e02012-09-12 12:21:52 +0800654 if (codec->using_regmap)
655 regcache_mark_dirty(codec->control_data);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000656 break;
657 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200658 dev_dbg(codec->dev,
659 "ASoC: CODEC is on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000660 break;
661 }
662 }
663 }
664
665 for (i = 0; i < card->num_rtd; i++) {
666 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
667
668 if (card->rtd[i].dai_link->ignore_suspend)
669 continue;
670
671 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
672 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200673 }
674
Mark Brown87506542008-11-18 20:50:34 +0000675 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000676 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200677
678 return 0;
679}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000680EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200681
Andy Green6ed25972008-06-13 16:24:05 +0100682/* deferred resume work, so resume can complete before we finished
683 * setting our codec back up, which can be very slow on I2C
684 */
685static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200686{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000687 struct snd_soc_card *card =
688 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200689 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200690 int i;
691
Andy Green6ed25972008-06-13 16:24:05 +0100692 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
693 * so userspace apps are blocked from touching us
694 */
695
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000696 dev_dbg(card->dev, "ASoC: starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100697
Mark Brown99497882010-05-07 20:24:05 +0100698 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000699 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100700
Mark Brown87506542008-11-18 20:50:34 +0000701 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000702 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200703
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000704 /* resume AC97 DAIs */
705 for (i = 0; i < card->num_rtd; i++) {
706 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100707
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000708 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100709 continue;
710
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000711 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
712 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200713 }
714
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200715 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000716 /* If the CODEC was idle over suspend then it will have been
717 * left with bias OFF or STANDBY and suspended so we must now
718 * resume. Otherwise the suspend was suppressed.
719 */
720 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200721 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000722 case SND_SOC_BIAS_STANDBY:
723 case SND_SOC_BIAS_OFF:
724 codec->driver->resume(codec);
725 codec->suspended = 0;
726 break;
727 default:
Michał Mirosław10e8aa92013-05-04 22:21:38 +0200728 dev_dbg(codec->dev,
729 "ASoC: CODEC was on over suspend\n");
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000730 break;
731 }
Mark Brown1547aba2010-05-07 21:11:40 +0100732 }
733 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200734
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000735 for (i = 0; i < card->num_rtd; i++) {
Mark Brown3efab7d2010-05-09 13:25:43 +0100736
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000737 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100738 continue;
739
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800740 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000741 SNDRV_PCM_STREAM_PLAYBACK,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800742 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000743
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800744 snd_soc_dapm_stream_event(&card->rtd[i],
Liam Girdwoodd9b09512012-03-07 16:32:59 +0000745 SNDRV_PCM_STREAM_CAPTURE,
Mark Brown7bd3a6f2012-02-16 15:03:27 -0800746 SND_SOC_DAPM_STREAM_RESUME);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200747 }
748
Mark Brown3ff3f642008-05-19 12:32:25 +0200749 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000750 for (i = 0; i < card->num_rtd; i++) {
751 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
752 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100753
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000754 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100755 continue;
756
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000757 if (drv->ops->digital_mute && dai->playback_active)
758 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200759 }
760
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000761 for (i = 0; i < card->num_rtd; i++) {
762 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
763 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100764
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000765 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100766 continue;
767
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000768 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
769 cpu_dai->driver->resume(cpu_dai);
770 if (platform->driver->resume && platform->suspended) {
771 platform->driver->resume(cpu_dai);
772 platform->suspended = 0;
773 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200774 }
775
Mark Brown87506542008-11-18 20:50:34 +0000776 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000777 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200778
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000779 dev_dbg(card->dev, "ASoC: resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100780
781 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000782 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Mark Browne2d32ff2012-08-31 17:38:32 -0700783
784 /* Recheck all analogue paths too */
785 dapm_mark_io_dirty(&card->dapm);
786 snd_soc_dapm_sync(&card->dapm);
Andy Green6ed25972008-06-13 16:24:05 +0100787}
788
789/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000790int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100791{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000792 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600793 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200794
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800795 /* If the initialization of this soc device failed, there is no codec
796 * associated with it. Just bail out in this case.
797 */
798 if (list_empty(&card->codec_dev_list))
799 return 0;
800
Mark Brown64ab9ba2009-03-31 11:27:03 +0100801 /* AC97 devices might have other drivers hanging off them so
802 * need to resume immediately. Other drivers don't have that
803 * problem and may take a substantial amount of time to resume
804 * due to I/O costs and anti-pop so handle them out of line.
805 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000806 for (i = 0; i < card->num_rtd; i++) {
807 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600808 ac97_control |= cpu_dai->driver->ac97_control;
809 }
810 if (ac97_control) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000811 dev_dbg(dev, "ASoC: Resuming AC97 immediately\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600812 soc_resume_deferred(&card->deferred_resume_work);
813 } else {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000814 dev_dbg(dev, "ASoC: Scheduling resume work\n");
Stephen Warren82e14e82011-05-25 14:06:41 -0600815 if (!schedule_work(&card->deferred_resume_work))
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000816 dev_err(dev, "ASoC: resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100817 }
Andy Green6ed25972008-06-13 16:24:05 +0100818
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200819 return 0;
820}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000821EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200822#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000823#define snd_soc_suspend NULL
824#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200825#endif
826
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100827static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800828};
829
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000830static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200831{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000832 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
833 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +0000834 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000835 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000836 struct snd_soc_dai *codec_dai, *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100837 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200838
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000839 dev_dbg(card->dev, "ASoC: binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000840
Mark Brownb19e6e72012-03-14 21:18:39 +0000841 /* Find CPU DAI from registered DAIs*/
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000842 list_for_each_entry(cpu_dai, &dai_list, list) {
Stephen Warrenbc926572012-05-25 18:22:11 -0600843 if (dai_link->cpu_of_node &&
844 (cpu_dai->dev->of_node != dai_link->cpu_of_node))
845 continue;
846 if (dai_link->cpu_name &&
847 strcmp(dev_name(cpu_dai->dev), dai_link->cpu_name))
848 continue;
849 if (dai_link->cpu_dai_name &&
850 strcmp(cpu_dai->name, dai_link->cpu_dai_name))
851 continue;
Stephen Warren2610ab72011-12-07 13:58:27 -0700852
853 rtd->cpu_dai = cpu_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000854 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000855
856 if (!rtd->cpu_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000857 dev_err(card->dev, "ASoC: CPU DAI %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000858 dai_link->cpu_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000859 return -EPROBE_DEFER;
Mark Brownc5af3a22008-11-28 13:29:45 +0000860 }
861
Mark Brownb19e6e72012-03-14 21:18:39 +0000862 /* Find CODEC from registered CODECs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000863 list_for_each_entry(codec, &codec_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700864 if (dai_link->codec_of_node) {
865 if (codec->dev->of_node != dai_link->codec_of_node)
866 continue;
867 } else {
868 if (strcmp(codec->name, dai_link->codec_name))
869 continue;
870 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000871
Stephen Warren2610ab72011-12-07 13:58:27 -0700872 rtd->codec = codec;
873
874 /*
875 * CODEC found, so find CODEC DAI from registered DAIs from
876 * this CODEC
877 */
878 list_for_each_entry(codec_dai, &dai_list, list) {
879 if (codec->dev == codec_dai->dev &&
880 !strcmp(codec_dai->name,
881 dai_link->codec_dai_name)) {
882
883 rtd->codec_dai = codec_dai;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000884 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000885 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000886
887 if (!rtd->codec_dai) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000888 dev_err(card->dev, "ASoC: CODEC DAI %s not registered\n",
Stephen Warren2610ab72011-12-07 13:58:27 -0700889 dai_link->codec_dai_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000890 return -EPROBE_DEFER;
891 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000892 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000893
Mark Brownb19e6e72012-03-14 21:18:39 +0000894 if (!rtd->codec) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000895 dev_err(card->dev, "ASoC: CODEC %s not registered\n",
Mark Brownb19e6e72012-03-14 21:18:39 +0000896 dai_link->codec_name);
897 return -EPROBE_DEFER;
898 }
Mark Brown848dd8b2011-04-27 18:16:32 +0100899
900 /* if there's no platform we match on the empty platform */
901 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700902 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100903 platform_name = "snd-soc-dummy";
904
Mark Brownb19e6e72012-03-14 21:18:39 +0000905 /* find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000906 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700907 if (dai_link->platform_of_node) {
908 if (platform->dev->of_node !=
909 dai_link->platform_of_node)
910 continue;
911 } else {
912 if (strcmp(platform->name, platform_name))
913 continue;
914 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700915
916 rtd->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000917 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000918 if (!rtd->platform) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000919 dev_err(card->dev, "ASoC: platform %s not registered\n",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000920 dai_link->platform_name);
Mark Brownb19e6e72012-03-14 21:18:39 +0000921 return -EPROBE_DEFER;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000922 }
Mark Brownb19e6e72012-03-14 21:18:39 +0000923
924 card->num_rtd++;
925
926 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000927}
928
Stephen Warrend12cd192012-06-08 12:34:22 -0600929static int soc_remove_platform(struct snd_soc_platform *platform)
930{
931 int ret;
932
933 if (platform->driver->remove) {
934 ret = platform->driver->remove(platform);
935 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000936 dev_err(platform->dev, "ASoC: failed to remove %d\n",
937 ret);
Stephen Warrend12cd192012-06-08 12:34:22 -0600938 }
939
940 /* Make sure all DAPM widgets are freed */
941 snd_soc_dapm_free(&platform->dapm);
942
943 soc_cleanup_platform_debugfs(platform);
944 platform->probed = 0;
945 list_del(&platform->card_list);
946 module_put(platform->dev->driver->owner);
947
948 return 0;
949}
950
Jarkko Nikula589c3562010-12-06 16:27:07 +0200951static void soc_remove_codec(struct snd_soc_codec *codec)
952{
953 int err;
954
955 if (codec->driver->remove) {
956 err = codec->driver->remove(codec);
957 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000958 dev_err(codec->dev, "ASoC: failed to remove %d\n", err);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200959 }
960
961 /* Make sure all DAPM widgets are freed */
962 snd_soc_dapm_free(&codec->dapm);
963
964 soc_cleanup_codec_debugfs(codec);
965 codec->probed = 0;
966 list_del(&codec->card_list);
967 module_put(codec->dev->driver->owner);
968}
969
Stephen Warren62ae68f2012-06-08 12:34:23 -0600970static void soc_remove_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000971{
972 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000973 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
974 int err;
975
976 /* unregister the rtd device */
977 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -0800978 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
979 device_remove_file(rtd->dev, &dev_attr_codec_reg);
980 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000981 rtd->dev_registered = 0;
982 }
983
984 /* remove the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100985 if (codec_dai && codec_dai->probed &&
986 codec_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000987 if (codec_dai->driver->remove) {
988 err = codec_dai->driver->remove(codec_dai);
989 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +0000990 dev_err(codec_dai->dev,
991 "ASoC: failed to remove %s: %d\n",
992 codec_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000993 }
994 codec_dai->probed = 0;
995 list_del(&codec_dai->card_list);
996 }
997
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000998 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100999 if (cpu_dai && cpu_dai->probed &&
1000 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001001 if (cpu_dai->driver->remove) {
1002 err = cpu_dai->driver->remove(cpu_dai);
1003 if (err < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001004 dev_err(cpu_dai->dev,
1005 "ASoC: failed to remove %s: %d\n",
1006 cpu_dai->name, err);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001007 }
1008 cpu_dai->probed = 0;
1009 list_del(&cpu_dai->card_list);
Stephen Warrena9db7db2012-06-08 12:34:20 -06001010
Stephen Warren18d75642012-06-08 12:34:21 -06001011 if (!cpu_dai->codec) {
1012 snd_soc_dapm_free(&cpu_dai->dapm);
Stephen Warrena9db7db2012-06-08 12:34:20 -06001013 module_put(cpu_dai->dev->driver->owner);
Stephen Warren18d75642012-06-08 12:34:21 -06001014 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001015 }
1016}
1017
Stephen Warren62ae68f2012-06-08 12:34:23 -06001018static void soc_remove_link_components(struct snd_soc_card *card, int num,
1019 int order)
1020{
1021 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1022 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1023 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1024 struct snd_soc_platform *platform = rtd->platform;
1025 struct snd_soc_codec *codec;
1026
1027 /* remove the platform */
1028 if (platform && platform->probed &&
1029 platform->driver->remove_order == order) {
1030 soc_remove_platform(platform);
1031 }
1032
1033 /* remove the CODEC-side CODEC */
1034 if (codec_dai) {
1035 codec = codec_dai->codec;
1036 if (codec && codec->probed &&
1037 codec->driver->remove_order == order)
1038 soc_remove_codec(codec);
1039 }
1040
1041 /* remove any CPU-side CODEC */
1042 if (cpu_dai) {
1043 codec = cpu_dai->codec;
1044 if (codec && codec->probed &&
1045 codec->driver->remove_order == order)
1046 soc_remove_codec(codec);
1047 }
1048}
1049
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001050static void soc_remove_dai_links(struct snd_soc_card *card)
1051{
Liam Girdwood0168bf02011-06-07 16:08:05 +01001052 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001053
Liam Girdwood0168bf02011-06-07 16:08:05 +01001054 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1055 order++) {
1056 for (dai = 0; dai < card->num_rtd; dai++)
Stephen Warren62ae68f2012-06-08 12:34:23 -06001057 soc_remove_link_dais(card, dai, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001058 }
Stephen Warren62ae68f2012-06-08 12:34:23 -06001059
1060 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1061 order++) {
1062 for (dai = 0; dai < card->num_rtd; dai++)
1063 soc_remove_link_components(card, dai, order);
1064 }
1065
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001066 card->num_rtd = 0;
1067}
1068
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001069static void soc_set_name_prefix(struct snd_soc_card *card,
1070 struct snd_soc_codec *codec)
1071{
1072 int i;
1073
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001074 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001075 return;
1076
Dimitris Papastamosff819b82010-12-02 14:53:03 +00001077 for (i = 0; i < card->num_configs; i++) {
1078 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +02001079 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
1080 codec->name_prefix = map->name_prefix;
1081 break;
1082 }
1083 }
1084}
1085
Jarkko Nikula589c3562010-12-06 16:27:07 +02001086static int soc_probe_codec(struct snd_soc_card *card,
1087 struct snd_soc_codec *codec)
1088{
1089 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +00001090 const struct snd_soc_codec_driver *driver = codec->driver;
Mark Brown888df392012-02-16 19:37:51 -08001091 struct snd_soc_dai *dai;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001092
1093 codec->card = card;
1094 codec->dapm.card = card;
1095 soc_set_name_prefix(card, codec);
1096
Jarkko Nikula70d29332011-01-27 16:24:22 +02001097 if (!try_module_get(codec->dev->driver->owner))
1098 return -ENODEV;
1099
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001100 soc_init_codec_debugfs(codec);
1101
Lars-Peter Clausen77530152011-05-05 16:59:09 +02001102 if (driver->dapm_widgets)
1103 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
1104 driver->num_dapm_widgets);
1105
Mark Brown888df392012-02-16 19:37:51 -08001106 /* Create DAPM widgets for each DAI stream */
1107 list_for_each_entry(dai, &dai_list, list) {
1108 if (dai->dev != codec->dev)
1109 continue;
1110
1111 snd_soc_dapm_new_dai_widgets(&codec->dapm, dai);
1112 }
1113
Mark Brown33c5f962011-08-22 18:40:30 +01001114 codec->dapm.idle_bias_off = driver->idle_bias_off;
1115
Mark Brown89b95ac02011-03-07 16:38:44 +00001116 if (driver->probe) {
1117 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001118 if (ret < 0) {
1119 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001120 "ASoC: failed to probe CODEC %d\n", ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001121 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001122 }
Chuansheng Liuff541f42012-12-21 18:17:12 +08001123 WARN(codec->dapm.idle_bias_off &&
1124 codec->dapm.bias_level != SND_SOC_BIAS_OFF,
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001125 "codec %s can not start from non-off bias with idle_bias_off==1\n",
1126 codec->name);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001127 }
1128
Mark Brown38cbf952012-06-22 13:04:02 +01001129 /* If the driver didn't set I/O up try regmap */
Mark Brown98d30882012-08-01 20:05:47 +01001130 if (!codec->write && dev_get_regmap(codec->dev, NULL))
Mark Brown38cbf952012-06-22 13:04:02 +01001131 snd_soc_codec_set_cache_io(codec, 0, 0, SND_SOC_REGMAP);
1132
Mark Brownb7af1da2011-04-07 19:18:44 +09001133 if (driver->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001134 snd_soc_add_codec_controls(codec, driver->controls,
Mark Brownb7af1da2011-04-07 19:18:44 +09001135 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001136 if (driver->dapm_routes)
1137 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1138 driver->num_dapm_routes);
1139
Jarkko Nikula589c3562010-12-06 16:27:07 +02001140 /* mark codec as probed and add to card codec list */
1141 codec->probed = 1;
1142 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001143 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001144
Jarkko Nikula70d29332011-01-27 16:24:22 +02001145 return 0;
1146
1147err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001148 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001149 module_put(codec->dev->driver->owner);
1150
Jarkko Nikula589c3562010-12-06 16:27:07 +02001151 return ret;
1152}
1153
Liam Girdwood956245e2011-07-01 16:54:08 +01001154static int soc_probe_platform(struct snd_soc_card *card,
1155 struct snd_soc_platform *platform)
1156{
1157 int ret = 0;
1158 const struct snd_soc_platform_driver *driver = platform->driver;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001159 struct snd_soc_dai *dai;
Liam Girdwood956245e2011-07-01 16:54:08 +01001160
1161 platform->card = card;
Liam Girdwoodb7950642011-07-04 22:10:52 +01001162 platform->dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +01001163
1164 if (!try_module_get(platform->dev->driver->owner))
1165 return -ENODEV;
1166
Sebastien Guiriec731f1ab2012-02-15 15:25:31 +00001167 soc_init_platform_debugfs(platform);
1168
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001169 if (driver->dapm_widgets)
1170 snd_soc_dapm_new_controls(&platform->dapm,
1171 driver->dapm_widgets, driver->num_dapm_widgets);
1172
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001173 /* Create DAPM widgets for each DAI stream */
1174 list_for_each_entry(dai, &dai_list, list) {
1175 if (dai->dev != platform->dev)
1176 continue;
1177
1178 snd_soc_dapm_new_dai_widgets(&platform->dapm, dai);
1179 }
1180
Stephen Warren3fec6b62012-04-05 12:28:01 -06001181 platform->dapm.idle_bias_off = 1;
1182
Liam Girdwood956245e2011-07-01 16:54:08 +01001183 if (driver->probe) {
1184 ret = driver->probe(platform);
1185 if (ret < 0) {
1186 dev_err(platform->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001187 "ASoC: failed to probe platform %d\n", ret);
Liam Girdwood956245e2011-07-01 16:54:08 +01001188 goto err_probe;
1189 }
1190 }
1191
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001192 if (driver->controls)
1193 snd_soc_add_platform_controls(platform, driver->controls,
1194 driver->num_controls);
1195 if (driver->dapm_routes)
1196 snd_soc_dapm_add_routes(&platform->dapm, driver->dapm_routes,
1197 driver->num_dapm_routes);
1198
Liam Girdwood956245e2011-07-01 16:54:08 +01001199 /* mark platform as probed and add to card platform list */
1200 platform->probed = 1;
1201 list_add(&platform->card_list, &card->platform_dev_list);
Liam Girdwoodb7950642011-07-04 22:10:52 +01001202 list_add(&platform->dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001203
1204 return 0;
1205
1206err_probe:
Liam Girdwood02db1102012-03-02 16:13:44 +00001207 soc_cleanup_platform_debugfs(platform);
Liam Girdwood956245e2011-07-01 16:54:08 +01001208 module_put(platform->dev->driver->owner);
1209
1210 return ret;
1211}
1212
Mark Brown36ae1a92012-01-06 17:12:45 -08001213static void rtd_release(struct device *dev)
1214{
1215 kfree(dev);
1216}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001217
Jarkko Nikula589c3562010-12-06 16:27:07 +02001218static int soc_post_component_init(struct snd_soc_card *card,
1219 struct snd_soc_codec *codec,
1220 int num, int dailess)
1221{
1222 struct snd_soc_dai_link *dai_link = NULL;
1223 struct snd_soc_aux_dev *aux_dev = NULL;
1224 struct snd_soc_pcm_runtime *rtd;
1225 const char *temp, *name;
1226 int ret = 0;
1227
1228 if (!dailess) {
1229 dai_link = &card->dai_link[num];
1230 rtd = &card->rtd[num];
1231 name = dai_link->name;
1232 } else {
1233 aux_dev = &card->aux_dev[num];
1234 rtd = &card->rtd_aux[num];
1235 name = aux_dev->name;
1236 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001237 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001238
Mark Brown4b1cfcb2011-10-18 00:11:49 +01001239 /* Make sure all DAPM widgets are instantiated */
1240 snd_soc_dapm_new_widgets(&codec->dapm);
1241
Jarkko Nikula589c3562010-12-06 16:27:07 +02001242 /* machine controls, routes and widgets are not prefixed */
1243 temp = codec->name_prefix;
1244 codec->name_prefix = NULL;
1245
1246 /* do machine specific initialization */
1247 if (!dailess && dai_link->init)
1248 ret = dai_link->init(rtd);
1249 else if (dailess && aux_dev->init)
1250 ret = aux_dev->init(&codec->dapm);
1251 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001252 dev_err(card->dev, "ASoC: failed to init %s: %d\n", name, ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001253 return ret;
1254 }
1255 codec->name_prefix = temp;
1256
Jarkko Nikula589c3562010-12-06 16:27:07 +02001257 /* register the rtd device */
1258 rtd->codec = codec;
Mark Brown36ae1a92012-01-06 17:12:45 -08001259
1260 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1261 if (!rtd->dev)
1262 return -ENOMEM;
1263 device_initialize(rtd->dev);
1264 rtd->dev->parent = card->dev;
1265 rtd->dev->release = rtd_release;
1266 rtd->dev->init_name = name;
1267 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001268 mutex_init(&rtd->pcm_mutex);
Liam Girdwood01d75842012-04-25 12:12:49 +01001269 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].be_clients);
1270 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].be_clients);
1271 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_PLAYBACK].fe_clients);
1272 INIT_LIST_HEAD(&rtd->dpcm[SNDRV_PCM_STREAM_CAPTURE].fe_clients);
Mark Brown36ae1a92012-01-06 17:12:45 -08001273 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001274 if (ret < 0) {
Chuansheng Liu865df9c2012-12-26 00:56:05 +08001275 /* calling put_device() here to free the rtd->dev */
1276 put_device(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001277 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001278 "ASoC: failed to register runtime device: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001279 return ret;
1280 }
1281 rtd->dev_registered = 1;
1282
1283 /* add DAPM sysfs entries for this codec */
Mark Brown36ae1a92012-01-06 17:12:45 -08001284 ret = snd_soc_dapm_sys_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001285 if (ret < 0)
1286 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001287 "ASoC: failed to add codec dapm sysfs entries: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001288
1289 /* add codec sysfs entries */
Mark Brown36ae1a92012-01-06 17:12:45 -08001290 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
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 sysfs files: %d\n", ret);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001294
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001295#ifdef CONFIG_DEBUG_FS
1296 /* add DPCM sysfs entries */
Liam Girdwoodcd0f8912012-04-30 11:05:30 +01001297 if (!dailess && !dai_link->dynamic)
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001298 goto out;
1299
1300 ret = soc_dpcm_debugfs_add(rtd);
1301 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001302 dev_err(rtd->dev, "ASoC: failed to add dpcm sysfs entries: %d\n", ret);
Liam Girdwoodf86dcef2012-04-25 12:12:50 +01001303
1304out:
1305#endif
Jarkko Nikula589c3562010-12-06 16:27:07 +02001306 return 0;
1307}
1308
Stephen Warren62ae68f2012-06-08 12:34:23 -06001309static int soc_probe_link_components(struct snd_soc_card *card, int num,
1310 int order)
1311{
1312 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1313 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1314 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1315 struct snd_soc_platform *platform = rtd->platform;
1316 int ret;
1317
1318 /* probe the CPU-side component, if it is a CODEC */
1319 if (cpu_dai->codec &&
1320 !cpu_dai->codec->probed &&
1321 cpu_dai->codec->driver->probe_order == order) {
1322 ret = soc_probe_codec(card, cpu_dai->codec);
1323 if (ret < 0)
1324 return ret;
1325 }
1326
1327 /* probe the CODEC-side component */
1328 if (!codec_dai->codec->probed &&
1329 codec_dai->codec->driver->probe_order == order) {
1330 ret = soc_probe_codec(card, codec_dai->codec);
1331 if (ret < 0)
1332 return ret;
1333 }
1334
1335 /* probe the platform */
1336 if (!platform->probed &&
1337 platform->driver->probe_order == order) {
1338 ret = soc_probe_platform(card, platform);
1339 if (ret < 0)
1340 return ret;
1341 }
1342
1343 return 0;
1344}
1345
1346static int soc_probe_link_dais(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001347{
1348 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1349 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1350 struct snd_soc_codec *codec = rtd->codec;
1351 struct snd_soc_platform *platform = rtd->platform;
Mark Brownc74184e2012-04-04 22:12:09 +01001352 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1353 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
1354 struct snd_soc_dapm_widget *play_w, *capture_w;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001355 int ret;
1356
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001357 dev_dbg(card->dev, "ASoC: probe %s dai link %d late %d\n",
Liam Girdwood0168bf02011-06-07 16:08:05 +01001358 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001359
1360 /* config components */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001361 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001362 codec_dai->card = card;
1363 cpu_dai->card = card;
1364
1365 /* set default power off timeout */
1366 rtd->pmdown_time = pmdown_time;
1367
1368 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001369 if (!cpu_dai->probed &&
1370 cpu_dai->driver->probe_order == order) {
Stephen Warrena9db7db2012-06-08 12:34:20 -06001371 if (!cpu_dai->codec) {
1372 cpu_dai->dapm.card = card;
1373 if (!try_module_get(cpu_dai->dev->driver->owner))
1374 return -ENODEV;
Liam Girdwood61b61e32011-05-24 13:57:43 +01001375
Stephen Warren18d75642012-06-08 12:34:21 -06001376 list_add(&cpu_dai->dapm.list, &card->dapm_list);
Stephen Warrena9db7db2012-06-08 12:34:20 -06001377 snd_soc_dapm_new_dai_widgets(&cpu_dai->dapm, cpu_dai);
1378 }
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00001379
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001380 if (cpu_dai->driver->probe) {
1381 ret = cpu_dai->driver->probe(cpu_dai);
1382 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001383 dev_err(cpu_dai->dev,
1384 "ASoC: failed to probe CPU DAI %s: %d\n",
1385 cpu_dai->name, ret);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001386 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001387 return ret;
1388 }
1389 }
1390 cpu_dai->probed = 1;
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001391 /* mark cpu_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001392 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1393 }
1394
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001395 /* probe the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001396 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001397 if (codec_dai->driver->probe) {
1398 ret = codec_dai->driver->probe(codec_dai);
1399 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001400 dev_err(codec_dai->dev,
1401 "ASoC: failed to probe CODEC DAI %s: %d\n",
1402 codec_dai->name, ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001403 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001404 }
1405 }
1406
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001407 /* mark codec_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001408 codec_dai->probed = 1;
1409 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001410 }
1411
Liam Girdwood0168bf02011-06-07 16:08:05 +01001412 /* complete DAI probe during last probe */
1413 if (order != SND_SOC_COMP_ORDER_LAST)
1414 return 0;
1415
Jarkko Nikula589c3562010-12-06 16:27:07 +02001416 ret = soc_post_component_init(card, codec, num, 0);
1417 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001418 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001419
Mark Brown36ae1a92012-01-06 17:12:45 -08001420 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001421 if (ret < 0)
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001422 dev_warn(rtd->dev, "ASoC: failed to add pmdown_time sysfs: %d\n",
1423 ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001424
Namarta Kohli1245b702012-08-16 17:10:41 +05301425 if (cpu_dai->driver->compress_dai) {
1426 /*create compress_device"*/
1427 ret = soc_new_compress(rtd, num);
Mark Brownc74184e2012-04-04 22:12:09 +01001428 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001429 dev_err(card->dev, "ASoC: can't create compress %s\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301430 dai_link->stream_name);
Mark Brownc74184e2012-04-04 22:12:09 +01001431 return ret;
1432 }
1433 } else {
Namarta Kohli1245b702012-08-16 17:10:41 +05301434
1435 if (!dai_link->params) {
1436 /* create the pcm */
1437 ret = soc_new_pcm(rtd, num);
1438 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001439 dev_err(card->dev, "ASoC: can't create pcm %s :%d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301440 dai_link->stream_name, ret);
Mark Brownc74184e2012-04-04 22:12:09 +01001441 return ret;
1442 }
Namarta Kohli1245b702012-08-16 17:10:41 +05301443 } else {
1444 /* link the DAI widgets */
1445 play_w = codec_dai->playback_widget;
1446 capture_w = cpu_dai->capture_widget;
1447 if (play_w && capture_w) {
1448 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
Mark Brownc74184e2012-04-04 22:12:09 +01001449 capture_w, play_w);
Namarta Kohli1245b702012-08-16 17:10:41 +05301450 if (ret != 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001451 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301452 play_w->name, capture_w->name, ret);
1453 return ret;
1454 }
1455 }
1456
1457 play_w = cpu_dai->playback_widget;
1458 capture_w = codec_dai->capture_widget;
1459 if (play_w && capture_w) {
1460 ret = snd_soc_dapm_new_pcm(card, dai_link->params,
1461 capture_w, play_w);
1462 if (ret != 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001463 dev_err(card->dev, "ASoC: Can't link %s to %s: %d\n",
Namarta Kohli1245b702012-08-16 17:10:41 +05301464 play_w->name, capture_w->name, ret);
1465 return ret;
1466 }
Mark Brownc74184e2012-04-04 22:12:09 +01001467 }
1468 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001469 }
1470
1471 /* add platform data for AC97 devices */
1472 if (rtd->codec_dai->driver->ac97_control)
1473 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1474
1475 return 0;
1476}
1477
1478#ifdef CONFIG_SND_SOC_AC97_BUS
1479static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1480{
1481 int ret;
1482
1483 /* Only instantiate AC97 if not already done by the adaptor
1484 * for the generic AC97 subsystem.
1485 */
1486 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001487 /*
1488 * It is possible that the AC97 device is already registered to
1489 * the device subsystem. This happens when the device is created
1490 * via snd_ac97_mixer(). Currently only SoC codec that does so
1491 * is the generic AC97 glue but others migh emerge.
1492 *
1493 * In those cases we don't try to register the device again.
1494 */
1495 if (!rtd->codec->ac97_created)
1496 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001497
1498 ret = soc_ac97_dev_register(rtd->codec);
1499 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001500 dev_err(rtd->codec->dev,
1501 "ASoC: AC97 device register failed: %d\n", ret);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001502 return ret;
1503 }
1504
1505 rtd->codec->ac97_registered = 1;
1506 }
1507 return 0;
1508}
1509
1510static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1511{
1512 if (codec->ac97_registered) {
1513 soc_ac97_dev_unregister(codec);
1514 codec->ac97_registered = 0;
1515 }
1516}
1517#endif
1518
Mark Brownb19e6e72012-03-14 21:18:39 +00001519static int soc_check_aux_dev(struct snd_soc_card *card, int num)
1520{
1521 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
1522 struct snd_soc_codec *codec;
1523
1524 /* find CODEC from registered CODECs*/
1525 list_for_each_entry(codec, &codec_list, list) {
1526 if (!strcmp(codec->name, aux_dev->codec_name))
1527 return 0;
1528 }
1529
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001530 dev_err(card->dev, "ASoC: %s not registered\n", aux_dev->codec_name);
Mark Brownfb099cb2012-08-09 18:44:37 +01001531
Mark Brownb19e6e72012-03-14 21:18:39 +00001532 return -EPROBE_DEFER;
1533}
1534
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001535static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1536{
1537 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001538 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001539 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001540
1541 /* find CODEC from registered CODECs*/
1542 list_for_each_entry(codec, &codec_list, list) {
1543 if (!strcmp(codec->name, aux_dev->codec_name)) {
1544 if (codec->probed) {
1545 dev_err(codec->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001546 "ASoC: codec already probed");
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001547 ret = -EBUSY;
1548 goto out;
1549 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001550 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001551 }
1552 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001553 /* codec not found */
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001554 dev_err(card->dev, "ASoC: codec %s not found", aux_dev->codec_name);
Mark Brownb19e6e72012-03-14 21:18:39 +00001555 return -EPROBE_DEFER;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001556
Jarkko Nikula676ad982010-12-03 09:18:22 +02001557found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001558 ret = soc_probe_codec(card, codec);
1559 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001560 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001561
Jarkko Nikula589c3562010-12-06 16:27:07 +02001562 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001563
1564out:
1565 return ret;
1566}
1567
1568static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1569{
1570 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1571 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001572
1573 /* unregister the rtd device */
1574 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001575 device_remove_file(rtd->dev, &dev_attr_codec_reg);
Chuansheng Liud3bf1562012-12-26 00:57:32 +08001576 device_unregister(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001577 rtd->dev_registered = 0;
1578 }
1579
Jarkko Nikula589c3562010-12-06 16:27:07 +02001580 if (codec && codec->probed)
1581 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001582}
1583
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001584static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1585 enum snd_soc_compress_type compress_type)
1586{
1587 int ret;
1588
1589 if (codec->cache_init)
1590 return 0;
1591
1592 /* override the compress_type if necessary */
1593 if (compress_type && codec->compress_type != compress_type)
1594 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001595 ret = snd_soc_cache_init(codec);
1596 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001597 dev_err(codec->dev,
1598 "ASoC: Failed to set cache compression type: %d\n",
1599 ret);
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001600 return ret;
1601 }
1602 codec->cache_init = 1;
1603 return 0;
1604}
1605
Mark Brownb19e6e72012-03-14 21:18:39 +00001606static int snd_soc_instantiate_card(struct snd_soc_card *card)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001607{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001608 struct snd_soc_codec *codec;
1609 struct snd_soc_codec_conf *codec_conf;
1610 enum snd_soc_compress_type compress_type;
Mark Brown75d9ac42011-09-27 16:41:01 +01001611 struct snd_soc_dai_link *dai_link;
Mark Brownf04209a2012-04-09 16:29:21 +01001612 int ret, i, order, dai_fmt;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001613
Liam Girdwood01b9d992012-03-07 10:38:25 +00001614 mutex_lock_nested(&card->mutex, SND_SOC_CARD_CLASS_INIT);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001615
Mark Brownb19e6e72012-03-14 21:18:39 +00001616 /* bind DAIs */
1617 for (i = 0; i < card->num_links; i++) {
1618 ret = soc_bind_dai_link(card, i);
1619 if (ret != 0)
1620 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001621 }
1622
Mark Brownb19e6e72012-03-14 21:18:39 +00001623 /* check aux_devs too */
1624 for (i = 0; i < card->num_aux_devs; i++) {
1625 ret = soc_check_aux_dev(card, i);
1626 if (ret != 0)
1627 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001628 }
1629
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001630 /* initialize the register cache for each available codec */
1631 list_for_each_entry(codec, &codec_list, list) {
1632 if (codec->cache_init)
1633 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001634 /* by default we don't override the compress_type */
1635 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001636 /* check to see if we need to override the compress_type */
1637 for (i = 0; i < card->num_configs; ++i) {
1638 codec_conf = &card->codec_conf[i];
1639 if (!strcmp(codec->name, codec_conf->dev_name)) {
1640 compress_type = codec_conf->compress_type;
1641 if (compress_type && compress_type
1642 != codec->compress_type)
1643 break;
1644 }
1645 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001646 ret = snd_soc_init_codec_cache(codec, compress_type);
Mark Brownb19e6e72012-03-14 21:18:39 +00001647 if (ret < 0)
1648 goto base_error;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001649 }
1650
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001651 /* card bind complete so register a sound card */
1652 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1653 card->owner, 0, &card->snd_card);
1654 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001655 dev_err(card->dev,
1656 "ASoC: can't create sound card for card %s: %d\n",
1657 card->name, ret);
Mark Brownb19e6e72012-03-14 21:18:39 +00001658 goto base_error;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001659 }
1660 card->snd_card->dev = card->dev;
1661
Mark Browne37a4972011-03-02 18:21:57 +00001662 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1663 card->dapm.dev = card->dev;
1664 card->dapm.card = card;
1665 list_add(&card->dapm.list, &card->dapm_list);
1666
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001667#ifdef CONFIG_DEBUG_FS
1668 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1669#endif
1670
Mark Brown88ee1c62011-02-02 10:43:26 +00001671#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001672 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001673 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001674#endif
Andy Green6ed25972008-06-13 16:24:05 +01001675
Mark Brown9a841eb2011-04-12 17:51:37 -07001676 if (card->dapm_widgets)
1677 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1678 card->num_dapm_widgets);
1679
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001680 /* initialise the sound card only once */
1681 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001682 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001683 if (ret < 0)
1684 goto card_probe_error;
1685 }
1686
Stephen Warren62ae68f2012-06-08 12:34:23 -06001687 /* probe all components used by DAI links on this card */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001688 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1689 order++) {
1690 for (i = 0; i < card->num_links; i++) {
Stephen Warren62ae68f2012-06-08 12:34:23 -06001691 ret = soc_probe_link_components(card, i, order);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001692 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001693 dev_err(card->dev,
1694 "ASoC: failed to instantiate card %d\n",
1695 ret);
Stephen Warren62ae68f2012-06-08 12:34:23 -06001696 goto probe_dai_err;
1697 }
1698 }
1699 }
1700
1701 /* probe all DAI links on this card */
1702 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1703 order++) {
1704 for (i = 0; i < card->num_links; i++) {
1705 ret = soc_probe_link_dais(card, i, order);
1706 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001707 dev_err(card->dev,
1708 "ASoC: failed to instantiate card %d\n",
1709 ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001710 goto probe_dai_err;
1711 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001712 }
1713 }
1714
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001715 for (i = 0; i < card->num_aux_devs; i++) {
1716 ret = soc_probe_aux_dev(card, i);
1717 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001718 dev_err(card->dev,
1719 "ASoC: failed to add auxiliary devices %d\n",
1720 ret);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001721 goto probe_aux_dev_err;
1722 }
1723 }
1724
Mark Brown888df392012-02-16 19:37:51 -08001725 snd_soc_dapm_link_dai_widgets(card);
1726
Mark Brownb7af1da2011-04-07 19:18:44 +09001727 if (card->controls)
Liam Girdwood022658b2012-02-03 17:43:09 +00001728 snd_soc_add_card_controls(card, card->controls, card->num_controls);
Mark Brownb7af1da2011-04-07 19:18:44 +09001729
Mark Brownb8ad29d2011-03-02 18:35:51 +00001730 if (card->dapm_routes)
1731 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1732 card->num_dapm_routes);
1733
Mark Brownb90d2f92011-10-10 13:38:06 +01001734 snd_soc_dapm_new_widgets(&card->dapm);
1735
Mark Brown75d9ac42011-09-27 16:41:01 +01001736 for (i = 0; i < card->num_links; i++) {
1737 dai_link = &card->dai_link[i];
Mark Brownf04209a2012-04-09 16:29:21 +01001738 dai_fmt = dai_link->dai_fmt;
Mark Brown75d9ac42011-09-27 16:41:01 +01001739
Mark Brownf04209a2012-04-09 16:29:21 +01001740 if (dai_fmt) {
Mark Brown75d9ac42011-09-27 16:41:01 +01001741 ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001742 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001743 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001744 dev_warn(card->rtd[i].codec_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001745 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001746 ret);
Mark Brownf04209a2012-04-09 16:29:21 +01001747 }
1748
1749 /* If this is a regular CPU link there will be a platform */
Stephen Warrenfe33d4c2012-05-14 14:47:22 -06001750 if (dai_fmt &&
1751 (dai_link->platform_name || dai_link->platform_of_node)) {
Mark Brownf04209a2012-04-09 16:29:21 +01001752 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1753 dai_fmt);
1754 if (ret != 0 && ret != -ENOTSUPP)
1755 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001756 "ASoC: Failed to set DAI format: %d\n",
Mark Brownf04209a2012-04-09 16:29:21 +01001757 ret);
1758 } else if (dai_fmt) {
1759 /* Flip the polarity for the "CPU" end */
1760 dai_fmt &= ~SND_SOC_DAIFMT_MASTER_MASK;
1761 switch (dai_link->dai_fmt &
1762 SND_SOC_DAIFMT_MASTER_MASK) {
1763 case SND_SOC_DAIFMT_CBM_CFM:
1764 dai_fmt |= SND_SOC_DAIFMT_CBS_CFS;
1765 break;
1766 case SND_SOC_DAIFMT_CBM_CFS:
1767 dai_fmt |= SND_SOC_DAIFMT_CBS_CFM;
1768 break;
1769 case SND_SOC_DAIFMT_CBS_CFM:
1770 dai_fmt |= SND_SOC_DAIFMT_CBM_CFS;
1771 break;
1772 case SND_SOC_DAIFMT_CBS_CFS:
1773 dai_fmt |= SND_SOC_DAIFMT_CBM_CFM;
1774 break;
1775 }
Mark Brown75d9ac42011-09-27 16:41:01 +01001776
1777 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
Mark Brownf04209a2012-04-09 16:29:21 +01001778 dai_fmt);
Shawn Guo5e4ba562012-03-09 00:59:40 +08001779 if (ret != 0 && ret != -ENOTSUPP)
Mark Brown75d9ac42011-09-27 16:41:01 +01001780 dev_warn(card->rtd[i].cpu_dai->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001781 "ASoC: Failed to set DAI format: %d\n",
Mark Brown75d9ac42011-09-27 16:41:01 +01001782 ret);
1783 }
1784 }
1785
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001786 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001787 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001788 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1789 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001790 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1791 "%s", card->driver_name ? card->driver_name : card->name);
1792 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1793 switch (card->snd_card->driver[i]) {
1794 case '_':
1795 case '-':
1796 case '\0':
1797 break;
1798 default:
1799 if (!isalnum(card->snd_card->driver[i]))
1800 card->snd_card->driver[i] = '_';
1801 break;
1802 }
1803 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001804
Mark Brown28e9ad92011-03-02 18:36:34 +00001805 if (card->late_probe) {
1806 ret = card->late_probe(card);
1807 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001808 dev_err(card->dev, "ASoC: %s late_probe() failed: %d\n",
Mark Brown28e9ad92011-03-02 18:36:34 +00001809 card->name, ret);
1810 goto probe_aux_dev_err;
1811 }
1812 }
1813
Mark Brown2dc00212011-10-08 13:59:44 +01001814 snd_soc_dapm_new_widgets(&card->dapm);
1815
Stephen Warren16332812011-11-23 12:42:04 -07001816 if (card->fully_routed)
Mark Brownb05d8dc2011-11-27 19:38:34 +00001817 list_for_each_entry(codec, &card->codec_dev_list, card_list)
Stephen Warren16332812011-11-23 12:42:04 -07001818 snd_soc_dapm_auto_nc_codec_pins(codec);
1819
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001820 ret = snd_card_register(card->snd_card);
1821 if (ret < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001822 dev_err(card->dev, "ASoC: failed to register soundcard %d\n",
1823 ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001824 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001825 }
1826
1827#ifdef CONFIG_SND_SOC_AC97_BUS
1828 /* register any AC97 codecs */
1829 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001830 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1831 if (ret < 0) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02001832 dev_err(card->dev,
1833 "ASoC: failed to register AC97: %d\n", ret);
Axel Lin6b3ed782010-12-07 16:12:29 +08001834 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001835 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001836 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001837 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001838 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001839#endif
1840
Mark Brown435c5e22008-12-04 15:32:53 +00001841 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001842 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001843 mutex_unlock(&card->mutex);
Mark Brownb19e6e72012-03-14 21:18:39 +00001844
1845 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001846
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001847probe_aux_dev_err:
1848 for (i = 0; i < card->num_aux_devs; i++)
1849 soc_remove_aux_dev(card, i);
1850
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001851probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001852 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001853
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001854card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001855 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001856 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001857
1858 snd_card_free(card->snd_card);
1859
Mark Brownb19e6e72012-03-14 21:18:39 +00001860base_error:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001861 mutex_unlock(&card->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001862
Mark Brownb19e6e72012-03-14 21:18:39 +00001863 return ret;
Mark Brown435c5e22008-12-04 15:32:53 +00001864}
1865
1866/* probes a new socdev */
1867static int soc_probe(struct platform_device *pdev)
1868{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001869 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001870
Vinod Koul70a7ca32011-01-14 19:22:48 +05301871 /*
1872 * no card, so machine driver should be registering card
1873 * we should not be here in that case so ret error
1874 */
1875 if (!card)
1876 return -EINVAL;
1877
Mark Brownfe4085e2012-03-02 13:07:41 +00001878 dev_warn(&pdev->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00001879 "ASoC: machine %s should use snd_soc_register_card()\n",
Mark Brownfe4085e2012-03-02 13:07:41 +00001880 card->name);
1881
Mark Brown435c5e22008-12-04 15:32:53 +00001882 /* Bodge while we unpick instantiation */
1883 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001884
Mark Brown28d528c2012-08-09 18:45:23 +01001885 return snd_soc_register_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001886}
1887
Vinod Koulb0e26482011-01-13 22:48:02 +05301888static int soc_cleanup_card_resources(struct snd_soc_card *card)
1889{
Vinod Koulb0e26482011-01-13 22:48:02 +05301890 int i;
1891
1892 /* make sure any delayed work runs */
1893 for (i = 0; i < card->num_rtd; i++) {
1894 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001895 flush_delayed_work(&rtd->delayed_work);
Vinod Koulb0e26482011-01-13 22:48:02 +05301896 }
1897
1898 /* remove auxiliary devices */
1899 for (i = 0; i < card->num_aux_devs; i++)
1900 soc_remove_aux_dev(card, i);
1901
1902 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001903 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301904
1905 soc_cleanup_card_debugfs(card);
1906
1907 /* remove the card */
1908 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001909 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301910
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001911 snd_soc_dapm_free(&card->dapm);
1912
Vinod Koulb0e26482011-01-13 22:48:02 +05301913 snd_card_free(card->snd_card);
1914 return 0;
1915
1916}
1917
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001918/* removes a socdev */
1919static int soc_remove(struct platform_device *pdev)
1920{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001921 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001922
Mark Brownc5af3a22008-11-28 13:29:45 +00001923 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001924 return 0;
1925}
1926
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001927int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001928{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001929 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001930 int i;
Mark Brown51737472009-06-22 13:16:51 +01001931
1932 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001933 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001934
1935 /* Flush out pmdown_time work - we actually do want to run it
1936 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001937 for (i = 0; i < card->num_rtd; i++) {
1938 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo43829732012-08-20 14:51:24 -07001939 flush_delayed_work(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001940 }
Mark Brown51737472009-06-22 13:16:51 +01001941
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001942 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001943
1944 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001945}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001946EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001947
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001948const struct dev_pm_ops snd_soc_pm_ops = {
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301949 .suspend = snd_soc_suspend,
1950 .resume = snd_soc_resume,
1951 .freeze = snd_soc_suspend,
1952 .thaw = snd_soc_resume,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001953 .poweroff = snd_soc_poweroff,
Viresh Kumarb1dd5892012-02-24 16:25:49 +05301954 .restore = snd_soc_resume,
Mark Brown416356f2009-06-30 19:05:15 +01001955};
Stephen Warrendeb26072011-04-05 19:35:30 -06001956EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001957
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001958/* ASoC platform driver */
1959static struct platform_driver soc_driver = {
1960 .driver = {
1961 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001962 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001963 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001964 },
1965 .probe = soc_probe,
1966 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001967};
1968
Mark Brown096e49d2009-07-05 15:12:22 +01001969/**
1970 * snd_soc_codec_volatile_register: Report if a register is volatile.
1971 *
1972 * @codec: CODEC to query.
1973 * @reg: Register to query.
1974 *
1975 * Boolean function indiciating if a CODEC register is volatile.
1976 */
Mark Brown181e0552011-01-24 14:05:25 +00001977int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1978 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01001979{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00001980 if (codec->volatile_register)
1981 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01001982 else
1983 return 0;
1984}
1985EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1986
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001987/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001988 * snd_soc_codec_readable_register: Report if a register is readable.
1989 *
1990 * @codec: CODEC to query.
1991 * @reg: Register to query.
1992 *
1993 * Boolean function indicating if a CODEC register is readable.
1994 */
1995int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
1996 unsigned int reg)
1997{
1998 if (codec->readable_register)
1999 return codec->readable_register(codec, reg);
2000 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02002001 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002002}
2003EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
2004
2005/**
2006 * snd_soc_codec_writable_register: Report if a register is writable.
2007 *
2008 * @codec: CODEC to query.
2009 * @reg: Register to query.
2010 *
2011 * Boolean function indicating if a CODEC register is writable.
2012 */
2013int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
2014 unsigned int reg)
2015{
2016 if (codec->writable_register)
2017 return codec->writable_register(codec, reg);
2018 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02002019 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002020}
2021EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
2022
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002023int snd_soc_platform_read(struct snd_soc_platform *platform,
2024 unsigned int reg)
2025{
2026 unsigned int ret;
2027
2028 if (!platform->driver->read) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002029 dev_err(platform->dev, "ASoC: platform has no read back\n");
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002030 return -1;
2031 }
2032
2033 ret = platform->driver->read(platform, reg);
2034 dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01002035 trace_snd_soc_preg_read(platform, reg, ret);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002036
2037 return ret;
2038}
2039EXPORT_SYMBOL_GPL(snd_soc_platform_read);
2040
2041int snd_soc_platform_write(struct snd_soc_platform *platform,
2042 unsigned int reg, unsigned int val)
2043{
2044 if (!platform->driver->write) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002045 dev_err(platform->dev, "ASoC: platform has no write back\n");
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002046 return -1;
2047 }
2048
2049 dev_dbg(platform->dev, "write %x = %x\n", reg, val);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01002050 trace_snd_soc_preg_write(platform, reg, val);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01002051 return platform->driver->write(platform, reg, val);
2052}
2053EXPORT_SYMBOL_GPL(snd_soc_platform_write);
2054
Dimitris Papastamos239c9702011-03-24 13:45:18 +00002055/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002056 * snd_soc_new_ac97_codec - initailise AC97 device
2057 * @codec: audio codec
2058 * @ops: AC97 bus operations
2059 * @num: AC97 codec number
2060 *
2061 * Initialises AC97 codec resources for use by ad-hoc devices only.
2062 */
2063int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
2064 struct snd_ac97_bus_ops *ops, int num)
2065{
2066 mutex_lock(&codec->mutex);
2067
2068 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
2069 if (codec->ac97 == NULL) {
2070 mutex_unlock(&codec->mutex);
2071 return -ENOMEM;
2072 }
2073
2074 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
2075 if (codec->ac97->bus == NULL) {
2076 kfree(codec->ac97);
2077 codec->ac97 = NULL;
2078 mutex_unlock(&codec->mutex);
2079 return -ENOMEM;
2080 }
2081
2082 codec->ac97->bus->ops = ops;
2083 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03002084
2085 /*
2086 * Mark the AC97 device to be created by us. This way we ensure that the
2087 * device will be registered with the device subsystem later on.
2088 */
2089 codec->ac97_created = 1;
2090
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002091 mutex_unlock(&codec->mutex);
2092 return 0;
2093}
2094EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
2095
Markus Pargmann741a5092013-08-19 17:05:55 +02002096static struct snd_ac97_reset_cfg snd_ac97_rst_cfg;
2097
2098static void snd_soc_ac97_warm_reset(struct snd_ac97 *ac97)
2099{
2100 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2101
2102 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_warm_reset);
2103
2104 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 1);
2105
2106 udelay(10);
2107
2108 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2109
2110 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2111 msleep(2);
2112}
2113
2114static void snd_soc_ac97_reset(struct snd_ac97 *ac97)
2115{
2116 struct pinctrl *pctl = snd_ac97_rst_cfg.pctl;
2117
2118 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_reset);
2119
2120 gpio_direction_output(snd_ac97_rst_cfg.gpio_sync, 0);
2121 gpio_direction_output(snd_ac97_rst_cfg.gpio_sdata, 0);
2122 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 0);
2123
2124 udelay(10);
2125
2126 gpio_direction_output(snd_ac97_rst_cfg.gpio_reset, 1);
2127
2128 pinctrl_select_state(pctl, snd_ac97_rst_cfg.pstate_run);
2129 msleep(2);
2130}
2131
2132static int snd_soc_ac97_parse_pinctl(struct device *dev,
2133 struct snd_ac97_reset_cfg *cfg)
2134{
2135 struct pinctrl *p;
2136 struct pinctrl_state *state;
2137 int gpio;
2138 int ret;
2139
2140 p = devm_pinctrl_get(dev);
2141 if (IS_ERR(p)) {
2142 dev_err(dev, "Failed to get pinctrl\n");
2143 return PTR_RET(p);
2144 }
2145 cfg->pctl = p;
2146
2147 state = pinctrl_lookup_state(p, "ac97-reset");
2148 if (IS_ERR(state)) {
2149 dev_err(dev, "Can't find pinctrl state ac97-reset\n");
2150 return PTR_RET(state);
2151 }
2152 cfg->pstate_reset = state;
2153
2154 state = pinctrl_lookup_state(p, "ac97-warm-reset");
2155 if (IS_ERR(state)) {
2156 dev_err(dev, "Can't find pinctrl state ac97-warm-reset\n");
2157 return PTR_RET(state);
2158 }
2159 cfg->pstate_warm_reset = state;
2160
2161 state = pinctrl_lookup_state(p, "ac97-running");
2162 if (IS_ERR(state)) {
2163 dev_err(dev, "Can't find pinctrl state ac97-running\n");
2164 return PTR_RET(state);
2165 }
2166 cfg->pstate_run = state;
2167
2168 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 0);
2169 if (gpio < 0) {
2170 dev_err(dev, "Can't find ac97-sync gpio\n");
2171 return gpio;
2172 }
2173 ret = devm_gpio_request(dev, gpio, "AC97 link sync");
2174 if (ret) {
2175 dev_err(dev, "Failed requesting ac97-sync gpio\n");
2176 return ret;
2177 }
2178 cfg->gpio_sync = gpio;
2179
2180 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 1);
2181 if (gpio < 0) {
2182 dev_err(dev, "Can't find ac97-sdata gpio %d\n", gpio);
2183 return gpio;
2184 }
2185 ret = devm_gpio_request(dev, gpio, "AC97 link sdata");
2186 if (ret) {
2187 dev_err(dev, "Failed requesting ac97-sdata gpio\n");
2188 return ret;
2189 }
2190 cfg->gpio_sdata = gpio;
2191
2192 gpio = of_get_named_gpio(dev->of_node, "ac97-gpios", 2);
2193 if (gpio < 0) {
2194 dev_err(dev, "Can't find ac97-reset gpio\n");
2195 return gpio;
2196 }
2197 ret = devm_gpio_request(dev, gpio, "AC97 link reset");
2198 if (ret) {
2199 dev_err(dev, "Failed requesting ac97-reset gpio\n");
2200 return ret;
2201 }
2202 cfg->gpio_reset = gpio;
2203
2204 return 0;
2205}
2206
Mark Brownb047e1c2013-06-26 12:45:59 +01002207struct snd_ac97_bus_ops *soc_ac97_ops;
Kevin Hilmanf74b5e22013-06-28 11:17:49 -07002208EXPORT_SYMBOL_GPL(soc_ac97_ops);
Mark Brownb047e1c2013-06-26 12:45:59 +01002209
2210int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
2211{
2212 if (ops == soc_ac97_ops)
2213 return 0;
2214
2215 if (soc_ac97_ops && ops)
2216 return -EBUSY;
2217
2218 soc_ac97_ops = ops;
2219
2220 return 0;
2221}
2222EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops);
2223
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002224/**
Markus Pargmann741a5092013-08-19 17:05:55 +02002225 * snd_soc_set_ac97_ops_of_reset - Set ac97 ops with generic ac97 reset functions
2226 *
2227 * This function sets the reset and warm_reset properties of ops and parses
2228 * the device node of pdev to get pinctrl states and gpio numbers to use.
2229 */
2230int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
2231 struct platform_device *pdev)
2232{
2233 struct device *dev = &pdev->dev;
2234 struct snd_ac97_reset_cfg cfg;
2235 int ret;
2236
2237 ret = snd_soc_ac97_parse_pinctl(dev, &cfg);
2238 if (ret)
2239 return ret;
2240
2241 ret = snd_soc_set_ac97_ops(ops);
2242 if (ret)
2243 return ret;
2244
2245 ops->warm_reset = snd_soc_ac97_warm_reset;
2246 ops->reset = snd_soc_ac97_reset;
2247
2248 snd_ac97_rst_cfg = cfg;
2249 return 0;
2250}
2251EXPORT_SYMBOL_GPL(snd_soc_set_ac97_ops_of_reset);
2252
2253/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002254 * snd_soc_free_ac97_codec - free AC97 codec device
2255 * @codec: audio codec
2256 *
2257 * Frees AC97 codec device resources.
2258 */
2259void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
2260{
2261 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002262#ifdef CONFIG_SND_SOC_AC97_BUS
2263 soc_unregister_ac97_dai_link(codec);
2264#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002265 kfree(codec->ac97->bus);
2266 kfree(codec->ac97);
2267 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03002268 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002269 mutex_unlock(&codec->mutex);
2270}
2271EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
2272
Mark Brownc3753702010-11-01 15:41:57 -04002273unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
2274{
2275 unsigned int ret;
2276
Mark Brownc3acec22010-12-02 16:15:29 +00002277 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04002278 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04002279 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04002280
2281 return ret;
2282}
2283EXPORT_SYMBOL_GPL(snd_soc_read);
2284
2285unsigned int snd_soc_write(struct snd_soc_codec *codec,
2286 unsigned int reg, unsigned int val)
2287{
2288 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04002289 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00002290 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04002291}
2292EXPORT_SYMBOL_GPL(snd_soc_write);
2293
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00002294unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
2295 unsigned int reg, const void *data, size_t len)
2296{
2297 return codec->bulk_write_raw(codec, reg, data, len);
2298}
2299EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
2300
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002301/**
2302 * snd_soc_update_bits - update codec register bits
2303 * @codec: audio codec
2304 * @reg: codec register
2305 * @mask: register mask
2306 * @value: new value
2307 *
2308 * Writes new register value.
2309 *
Timur Tabi180c3292011-01-10 15:58:13 -06002310 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002311 */
2312int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002313 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002314{
Mark Brown8a713da2011-12-03 12:33:55 +00002315 bool change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002316 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06002317 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002318
Mark Brown8a713da2011-12-03 12:33:55 +00002319 if (codec->using_regmap) {
2320 ret = regmap_update_bits_check(codec->control_data, reg,
2321 mask, value, &change);
2322 } else {
2323 ret = snd_soc_read(codec, reg);
Timur Tabi180c3292011-01-10 15:58:13 -06002324 if (ret < 0)
2325 return ret;
Mark Brown8a713da2011-12-03 12:33:55 +00002326
2327 old = ret;
2328 new = (old & ~mask) | (value & mask);
2329 change = old != new;
2330 if (change)
2331 ret = snd_soc_write(codec, reg, new);
Timur Tabi180c3292011-01-10 15:58:13 -06002332 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002333
Mark Brown8a713da2011-12-03 12:33:55 +00002334 if (ret < 0)
2335 return ret;
2336
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002337 return change;
2338}
2339EXPORT_SYMBOL_GPL(snd_soc_update_bits);
2340
2341/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002342 * snd_soc_update_bits_locked - update codec register bits
2343 * @codec: audio codec
2344 * @reg: codec register
2345 * @mask: register mask
2346 * @value: new value
2347 *
2348 * Writes new register value, and takes the codec mutex.
2349 *
2350 * Returns 1 for change else 0.
2351 */
Mark Browndd1b3d52009-12-04 14:22:03 +00002352int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
2353 unsigned short reg, unsigned int mask,
2354 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002355{
2356 int change;
2357
2358 mutex_lock(&codec->mutex);
2359 change = snd_soc_update_bits(codec, reg, mask, value);
2360 mutex_unlock(&codec->mutex);
2361
2362 return change;
2363}
Mark Browndd1b3d52009-12-04 14:22:03 +00002364EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002365
2366/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002367 * snd_soc_test_bits - test register for change
2368 * @codec: audio codec
2369 * @reg: codec register
2370 * @mask: register mask
2371 * @value: new value
2372 *
2373 * Tests a register with a new value and checks if the new value is
2374 * different from the old value.
2375 *
2376 * Returns 1 for change else 0.
2377 */
2378int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002379 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002380{
2381 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002382 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002383
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002384 old = snd_soc_read(codec, reg);
2385 new = (old & ~mask) | value;
2386 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002387
2388 return change;
2389}
2390EXPORT_SYMBOL_GPL(snd_soc_test_bits);
2391
2392/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002393 * snd_soc_cnew - create new control
2394 * @_template: control template
2395 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00002396 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00002397 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002398 *
2399 * Create a new mixer control from a template control.
2400 *
2401 * Returns 0 for success, else error.
2402 */
2403struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brown30565572012-02-16 17:07:42 -08002404 void *data, const char *long_name,
Mark Brownefb7ac32011-03-08 17:23:24 +00002405 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002406{
2407 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00002408 struct snd_kcontrol *kcontrol;
2409 char *name = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002410
2411 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002412 template.index = 0;
2413
Mark Brownefb7ac32011-03-08 17:23:24 +00002414 if (!long_name)
2415 long_name = template.name;
2416
2417 if (prefix) {
Lars-Peter Clausen2b581072013-05-14 11:05:32 +02002418 name = kasprintf(GFP_KERNEL, "%s %s", prefix, long_name);
Mark Brownefb7ac32011-03-08 17:23:24 +00002419 if (!name)
2420 return NULL;
2421
Mark Brownefb7ac32011-03-08 17:23:24 +00002422 template.name = name;
2423 } else {
2424 template.name = long_name;
2425 }
2426
2427 kcontrol = snd_ctl_new1(&template, data);
2428
2429 kfree(name);
2430
2431 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002432}
2433EXPORT_SYMBOL_GPL(snd_soc_cnew);
2434
Liam Girdwood022658b2012-02-03 17:43:09 +00002435static int snd_soc_add_controls(struct snd_card *card, struct device *dev,
2436 const struct snd_kcontrol_new *controls, int num_controls,
2437 const char *prefix, void *data)
2438{
2439 int err, i;
2440
2441 for (i = 0; i < num_controls; i++) {
2442 const struct snd_kcontrol_new *control = &controls[i];
2443 err = snd_ctl_add(card, snd_soc_cnew(control, data,
2444 control->name, prefix));
2445 if (err < 0) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00002446 dev_err(dev, "ASoC: Failed to add %s: %d\n",
2447 control->name, err);
Liam Girdwood022658b2012-02-03 17:43:09 +00002448 return err;
2449 }
2450 }
2451
2452 return 0;
2453}
2454
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002455/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002456 * snd_soc_add_codec_controls - add an array of controls to a codec.
2457 * Convenience function to add a list of controls. Many codecs were
Ian Molton3e8e1952009-01-09 00:23:21 +00002458 * duplicating this code.
2459 *
2460 * @codec: codec to add controls to
2461 * @controls: array of controls to add
2462 * @num_controls: number of elements in the array
2463 *
2464 * Return 0 for success, else error.
2465 */
Liam Girdwood022658b2012-02-03 17:43:09 +00002466int snd_soc_add_codec_controls(struct snd_soc_codec *codec,
Ian Molton3e8e1952009-01-09 00:23:21 +00002467 const struct snd_kcontrol_new *controls, int num_controls)
2468{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002469 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002470
Liam Girdwood022658b2012-02-03 17:43:09 +00002471 return snd_soc_add_controls(card, codec->dev, controls, num_controls,
2472 codec->name_prefix, codec);
Ian Molton3e8e1952009-01-09 00:23:21 +00002473}
Liam Girdwood022658b2012-02-03 17:43:09 +00002474EXPORT_SYMBOL_GPL(snd_soc_add_codec_controls);
Ian Molton3e8e1952009-01-09 00:23:21 +00002475
2476/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002477 * snd_soc_add_platform_controls - add an array of controls to a platform.
Liam Girdwood022658b2012-02-03 17:43:09 +00002478 * Convenience function to add a list of controls.
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002479 *
2480 * @platform: platform to add controls to
2481 * @controls: array of controls to add
2482 * @num_controls: number of elements in the array
2483 *
2484 * Return 0 for success, else error.
2485 */
2486int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2487 const struct snd_kcontrol_new *controls, int num_controls)
2488{
2489 struct snd_card *card = platform->card->snd_card;
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002490
Liam Girdwood022658b2012-02-03 17:43:09 +00002491 return snd_soc_add_controls(card, platform->dev, controls, num_controls,
2492 NULL, platform);
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002493}
2494EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2495
2496/**
Liam Girdwood022658b2012-02-03 17:43:09 +00002497 * snd_soc_add_card_controls - add an array of controls to a SoC card.
2498 * Convenience function to add a list of controls.
2499 *
2500 * @soc_card: SoC card to add controls to
2501 * @controls: array of controls to add
2502 * @num_controls: number of elements in the array
2503 *
2504 * Return 0 for success, else error.
2505 */
2506int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
2507 const struct snd_kcontrol_new *controls, int num_controls)
2508{
2509 struct snd_card *card = soc_card->snd_card;
2510
2511 return snd_soc_add_controls(card, soc_card->dev, controls, num_controls,
2512 NULL, soc_card);
2513}
2514EXPORT_SYMBOL_GPL(snd_soc_add_card_controls);
2515
2516/**
2517 * snd_soc_add_dai_controls - add an array of controls to a DAI.
2518 * Convienience function to add a list of controls.
2519 *
2520 * @dai: DAI to add controls to
2521 * @controls: array of controls to add
2522 * @num_controls: number of elements in the array
2523 *
2524 * Return 0 for success, else error.
2525 */
2526int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
2527 const struct snd_kcontrol_new *controls, int num_controls)
2528{
2529 struct snd_card *card = dai->card->snd_card;
2530
2531 return snd_soc_add_controls(card, dai->dev, controls, num_controls,
2532 NULL, dai);
2533}
2534EXPORT_SYMBOL_GPL(snd_soc_add_dai_controls);
2535
2536/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002537 * snd_soc_info_enum_double - enumerated double mixer info callback
2538 * @kcontrol: mixer control
2539 * @uinfo: control element information
2540 *
2541 * Callback to provide information about a double enumerated
2542 * mixer control.
2543 *
2544 * Returns 0 for success.
2545 */
2546int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2547 struct snd_ctl_elem_info *uinfo)
2548{
2549 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2550
2551 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2552 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002553 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002554
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002555 if (uinfo->value.enumerated.item > e->max - 1)
2556 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002557 strcpy(uinfo->value.enumerated.name,
2558 e->texts[uinfo->value.enumerated.item]);
2559 return 0;
2560}
2561EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2562
2563/**
2564 * snd_soc_get_enum_double - enumerated double mixer get callback
2565 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002566 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002567 *
2568 * Callback to get the value of a double enumerated mixer.
2569 *
2570 * Returns 0 for success.
2571 */
2572int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2573 struct snd_ctl_elem_value *ucontrol)
2574{
2575 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2576 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002577 unsigned int val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002578
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002579 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002580 ucontrol->value.enumerated.item[0]
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002581 = (val >> e->shift_l) & e->mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002582 if (e->shift_l != e->shift_r)
2583 ucontrol->value.enumerated.item[1] =
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002584 (val >> e->shift_r) & e->mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002585
2586 return 0;
2587}
2588EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2589
2590/**
2591 * snd_soc_put_enum_double - enumerated double mixer put callback
2592 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002593 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002594 *
2595 * Callback to set the value of a double enumerated mixer.
2596 *
2597 * Returns 0 for success.
2598 */
2599int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2600 struct snd_ctl_elem_value *ucontrol)
2601{
2602 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2603 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002604 unsigned int val;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002605 unsigned int mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002606
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002607 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002608 return -EINVAL;
2609 val = ucontrol->value.enumerated.item[0] << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002610 mask = e->mask << e->shift_l;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002611 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002612 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002613 return -EINVAL;
2614 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02002615 mask |= e->mask << e->shift_r;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002616 }
2617
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002618 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002619}
2620EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2621
2622/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002623 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2624 * @kcontrol: mixer control
2625 * @ucontrol: control element information
2626 *
2627 * Callback to get the value of a double semi enumerated mixer.
2628 *
2629 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2630 * used for handling bitfield coded enumeration for example.
2631 *
2632 * Returns 0 for success.
2633 */
2634int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2635 struct snd_ctl_elem_value *ucontrol)
2636{
2637 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002638 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002639 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002640
2641 reg_val = snd_soc_read(codec, e->reg);
2642 val = (reg_val >> e->shift_l) & e->mask;
2643 for (mux = 0; mux < e->max; mux++) {
2644 if (val == e->values[mux])
2645 break;
2646 }
2647 ucontrol->value.enumerated.item[0] = mux;
2648 if (e->shift_l != e->shift_r) {
2649 val = (reg_val >> e->shift_r) & e->mask;
2650 for (mux = 0; mux < e->max; mux++) {
2651 if (val == e->values[mux])
2652 break;
2653 }
2654 ucontrol->value.enumerated.item[1] = mux;
2655 }
2656
2657 return 0;
2658}
2659EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2660
2661/**
2662 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2663 * @kcontrol: mixer control
2664 * @ucontrol: control element information
2665 *
2666 * Callback to set the value of a double semi enumerated mixer.
2667 *
2668 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2669 * used for handling bitfield coded enumeration for example.
2670 *
2671 * Returns 0 for success.
2672 */
2673int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2674 struct snd_ctl_elem_value *ucontrol)
2675{
2676 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002677 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002678 unsigned int val;
2679 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002680
2681 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2682 return -EINVAL;
2683 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2684 mask = e->mask << e->shift_l;
2685 if (e->shift_l != e->shift_r) {
2686 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2687 return -EINVAL;
2688 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2689 mask |= e->mask << e->shift_r;
2690 }
2691
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002692 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002693}
2694EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2695
2696/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002697 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2698 * @kcontrol: mixer control
2699 * @uinfo: control element information
2700 *
2701 * Callback to provide information about an external enumerated
2702 * single mixer.
2703 *
2704 * Returns 0 for success.
2705 */
2706int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2707 struct snd_ctl_elem_info *uinfo)
2708{
2709 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2710
2711 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2712 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002713 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002714
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002715 if (uinfo->value.enumerated.item > e->max - 1)
2716 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002717 strcpy(uinfo->value.enumerated.name,
2718 e->texts[uinfo->value.enumerated.item]);
2719 return 0;
2720}
2721EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2722
2723/**
2724 * snd_soc_info_volsw_ext - external single mixer info callback
2725 * @kcontrol: mixer control
2726 * @uinfo: control element information
2727 *
2728 * Callback to provide information about a single external mixer control.
2729 *
2730 * Returns 0 for success.
2731 */
2732int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2733 struct snd_ctl_elem_info *uinfo)
2734{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002735 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002736
Mark Brownfd5dfad2009-04-15 21:37:46 +01002737 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002738 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2739 else
2740 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2741
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002742 uinfo->count = 1;
2743 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002744 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002745 return 0;
2746}
2747EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2748
2749/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002750 * snd_soc_info_volsw - single mixer info callback
2751 * @kcontrol: mixer control
2752 * @uinfo: control element information
2753 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002754 * Callback to provide information about a single mixer control, or a double
2755 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002756 *
2757 * Returns 0 for success.
2758 */
2759int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2760 struct snd_ctl_elem_info *uinfo)
2761{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002762 struct soc_mixer_control *mc =
2763 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002764 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002765
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002766 if (!mc->platform_max)
2767 mc->platform_max = mc->max;
2768 platform_max = mc->platform_max;
2769
2770 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002771 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2772 else
2773 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2774
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002775 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002776 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002777 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002778 return 0;
2779}
2780EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2781
2782/**
2783 * snd_soc_get_volsw - single mixer get callback
2784 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002785 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002786 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002787 * Callback to get the value of a single mixer control, or a double mixer
2788 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002789 *
2790 * Returns 0 for success.
2791 */
2792int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2793 struct snd_ctl_elem_value *ucontrol)
2794{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002795 struct soc_mixer_control *mc =
2796 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002797 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002798 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002799 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002800 unsigned int shift = mc->shift;
2801 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002802 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002803 unsigned int mask = (1 << fls(max)) - 1;
2804 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002805
2806 ucontrol->value.integer.value[0] =
2807 (snd_soc_read(codec, reg) >> shift) & mask;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002808 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002809 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002810 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002811
2812 if (snd_soc_volsw_is_stereo(mc)) {
2813 if (reg == reg2)
2814 ucontrol->value.integer.value[1] =
2815 (snd_soc_read(codec, reg) >> rshift) & mask;
2816 else
2817 ucontrol->value.integer.value[1] =
2818 (snd_soc_read(codec, reg2) >> shift) & mask;
2819 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002820 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002821 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002822 }
2823
2824 return 0;
2825}
2826EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2827
2828/**
2829 * snd_soc_put_volsw - single mixer put callback
2830 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002831 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002832 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002833 * Callback to set the value of a single mixer control, or a double mixer
2834 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002835 *
2836 * Returns 0 for success.
2837 */
2838int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2839 struct snd_ctl_elem_value *ucontrol)
2840{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002841 struct soc_mixer_control *mc =
2842 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002843 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002844 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002845 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002846 unsigned int shift = mc->shift;
2847 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002848 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002849 unsigned int mask = (1 << fls(max)) - 1;
2850 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002851 int err;
2852 bool type_2r = 0;
2853 unsigned int val2 = 0;
2854 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002855
2856 val = (ucontrol->value.integer.value[0] & mask);
2857 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002858 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002859 val_mask = mask << shift;
2860 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002861 if (snd_soc_volsw_is_stereo(mc)) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002862 val2 = (ucontrol->value.integer.value[1] & mask);
2863 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002864 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002865 if (reg == reg2) {
2866 val_mask |= mask << rshift;
2867 val |= val2 << rshift;
2868 } else {
2869 val2 = val2 << shift;
2870 type_2r = 1;
2871 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002872 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002873 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002874 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002875 return err;
2876
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002877 if (type_2r)
2878 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2879
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002880 return err;
2881}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002882EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002883
Mark Browne13ac2e2008-05-28 17:58:05 +01002884/**
Brian Austin1d99f242012-03-30 10:43:55 -05002885 * snd_soc_get_volsw_sx - single mixer get callback
2886 * @kcontrol: mixer control
2887 * @ucontrol: control element information
2888 *
2889 * Callback to get the value of a single mixer control, or a double mixer
2890 * control that spans 2 registers.
2891 *
2892 * Returns 0 for success.
2893 */
2894int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
2895 struct snd_ctl_elem_value *ucontrol)
2896{
2897 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2898 struct soc_mixer_control *mc =
2899 (struct soc_mixer_control *)kcontrol->private_value;
2900
2901 unsigned int reg = mc->reg;
2902 unsigned int reg2 = mc->rreg;
2903 unsigned int shift = mc->shift;
2904 unsigned int rshift = mc->rshift;
2905 int max = mc->max;
2906 int min = mc->min;
2907 int mask = (1 << (fls(min + max) - 1)) - 1;
2908
2909 ucontrol->value.integer.value[0] =
2910 ((snd_soc_read(codec, reg) >> shift) - min) & mask;
2911
2912 if (snd_soc_volsw_is_stereo(mc))
2913 ucontrol->value.integer.value[1] =
2914 ((snd_soc_read(codec, reg2) >> rshift) - min) & mask;
2915
2916 return 0;
2917}
2918EXPORT_SYMBOL_GPL(snd_soc_get_volsw_sx);
2919
2920/**
2921 * snd_soc_put_volsw_sx - double mixer set callback
2922 * @kcontrol: mixer control
2923 * @uinfo: control element information
2924 *
2925 * Callback to set the value of a double mixer control that spans 2 registers.
2926 *
2927 * Returns 0 for success.
2928 */
2929int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
2930 struct snd_ctl_elem_value *ucontrol)
2931{
2932 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2933 struct soc_mixer_control *mc =
2934 (struct soc_mixer_control *)kcontrol->private_value;
2935
2936 unsigned int reg = mc->reg;
2937 unsigned int reg2 = mc->rreg;
2938 unsigned int shift = mc->shift;
2939 unsigned int rshift = mc->rshift;
2940 int max = mc->max;
2941 int min = mc->min;
2942 int mask = (1 << (fls(min + max) - 1)) - 1;
Brian Austin27f1d752012-04-03 11:33:50 -05002943 int err = 0;
Brian Austin1d99f242012-03-30 10:43:55 -05002944 unsigned short val, val_mask, val2 = 0;
2945
2946 val_mask = mask << shift;
2947 val = (ucontrol->value.integer.value[0] + min) & mask;
2948 val = val << shift;
2949
Mukund Navadad0558522012-11-09 11:53:40 +05302950 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
2951 if (err < 0)
2952 return err;
Brian Austin1d99f242012-03-30 10:43:55 -05002953
2954 if (snd_soc_volsw_is_stereo(mc)) {
2955 val_mask = mask << rshift;
2956 val2 = (ucontrol->value.integer.value[1] + min) & mask;
2957 val2 = val2 << rshift;
2958
2959 if (snd_soc_update_bits_locked(codec, reg2, val_mask, val2))
2960 return err;
2961 }
2962 return 0;
2963}
2964EXPORT_SYMBOL_GPL(snd_soc_put_volsw_sx);
2965
2966/**
Mark Browne13ac2e2008-05-28 17:58:05 +01002967 * snd_soc_info_volsw_s8 - signed mixer info callback
2968 * @kcontrol: mixer control
2969 * @uinfo: control element information
2970 *
2971 * Callback to provide information about a signed mixer control.
2972 *
2973 * Returns 0 for success.
2974 */
2975int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2976 struct snd_ctl_elem_info *uinfo)
2977{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002978 struct soc_mixer_control *mc =
2979 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002980 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002981 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002982
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002983 if (!mc->platform_max)
2984 mc->platform_max = mc->max;
2985 platform_max = mc->platform_max;
2986
Mark Browne13ac2e2008-05-28 17:58:05 +01002987 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2988 uinfo->count = 2;
2989 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002990 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002991 return 0;
2992}
2993EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2994
2995/**
2996 * snd_soc_get_volsw_s8 - signed mixer get callback
2997 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002998 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002999 *
3000 * Callback to get the value of a signed mixer control.
3001 *
3002 * Returns 0 for success.
3003 */
3004int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
3005 struct snd_ctl_elem_value *ucontrol)
3006{
Jon Smirl4eaa9812008-07-29 11:42:26 +01003007 struct soc_mixer_control *mc =
3008 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01003009 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003010 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003011 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01003012 int val = snd_soc_read(codec, reg);
3013
3014 ucontrol->value.integer.value[0] =
3015 ((signed char)(val & 0xff))-min;
3016 ucontrol->value.integer.value[1] =
3017 ((signed char)((val >> 8) & 0xff))-min;
3018 return 0;
3019}
3020EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
3021
3022/**
3023 * snd_soc_put_volsw_sgn - signed mixer put callback
3024 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003025 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01003026 *
3027 * Callback to set the value of a signed mixer control.
3028 *
3029 * Returns 0 for success.
3030 */
3031int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
3032 struct snd_ctl_elem_value *ucontrol)
3033{
Jon Smirl4eaa9812008-07-29 11:42:26 +01003034 struct soc_mixer_control *mc =
3035 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01003036 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003037 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003038 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03003039 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01003040
3041 val = (ucontrol->value.integer.value[0]+min) & 0xff;
3042 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
3043
Eero Nurkkala6c508c62009-10-30 13:34:03 +02003044 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01003045}
3046EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
3047
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003048/**
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003049 * snd_soc_info_volsw_range - single mixer info callback with range.
3050 * @kcontrol: mixer control
3051 * @uinfo: control element information
3052 *
3053 * Callback to provide information, within a range, about a single
3054 * mixer control.
3055 *
3056 * returns 0 for success.
3057 */
3058int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
3059 struct snd_ctl_elem_info *uinfo)
3060{
3061 struct soc_mixer_control *mc =
3062 (struct soc_mixer_control *)kcontrol->private_value;
3063 int platform_max;
3064 int min = mc->min;
3065
3066 if (!mc->platform_max)
3067 mc->platform_max = mc->max;
3068 platform_max = mc->platform_max;
3069
3070 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Mark Brown9bde4f02012-12-19 16:05:00 +00003071 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003072 uinfo->value.integer.min = 0;
3073 uinfo->value.integer.max = platform_max - min;
3074
3075 return 0;
3076}
3077EXPORT_SYMBOL_GPL(snd_soc_info_volsw_range);
3078
3079/**
3080 * snd_soc_put_volsw_range - single mixer put value callback with range.
3081 * @kcontrol: mixer control
3082 * @ucontrol: control element information
3083 *
3084 * Callback to set the value, within a range, for a single mixer control.
3085 *
3086 * Returns 0 for success.
3087 */
3088int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
3089 struct snd_ctl_elem_value *ucontrol)
3090{
3091 struct soc_mixer_control *mc =
3092 (struct soc_mixer_control *)kcontrol->private_value;
3093 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3094 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003095 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003096 unsigned int shift = mc->shift;
3097 int min = mc->min;
3098 int max = mc->max;
3099 unsigned int mask = (1 << fls(max)) - 1;
3100 unsigned int invert = mc->invert;
3101 unsigned int val, val_mask;
Mark Brown9bde4f02012-12-19 16:05:00 +00003102 int ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003103
3104 val = ((ucontrol->value.integer.value[0] + min) & mask);
3105 if (invert)
3106 val = max - val;
3107 val_mask = mask << shift;
3108 val = val << shift;
3109
Mark Brown9bde4f02012-12-19 16:05:00 +00003110 ret = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Joonyoung Shim0eaa6cc2013-03-26 14:41:05 +09003111 if (ret < 0)
Mark Brown9bde4f02012-12-19 16:05:00 +00003112 return ret;
3113
3114 if (snd_soc_volsw_is_stereo(mc)) {
3115 val = ((ucontrol->value.integer.value[1] + min) & mask);
3116 if (invert)
3117 val = max - val;
3118 val_mask = mask << shift;
3119 val = val << shift;
3120
3121 ret = snd_soc_update_bits_locked(codec, rreg, val_mask, val);
3122 }
3123
3124 return ret;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003125}
3126EXPORT_SYMBOL_GPL(snd_soc_put_volsw_range);
3127
3128/**
3129 * snd_soc_get_volsw_range - single mixer get callback with range
3130 * @kcontrol: mixer control
3131 * @ucontrol: control element information
3132 *
3133 * Callback to get the value, within a range, of a single mixer control.
3134 *
3135 * Returns 0 for success.
3136 */
3137int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
3138 struct snd_ctl_elem_value *ucontrol)
3139{
3140 struct soc_mixer_control *mc =
3141 (struct soc_mixer_control *)kcontrol->private_value;
3142 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3143 unsigned int reg = mc->reg;
Mark Brown9bde4f02012-12-19 16:05:00 +00003144 unsigned int rreg = mc->rreg;
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003145 unsigned int shift = mc->shift;
3146 int min = mc->min;
3147 int max = mc->max;
3148 unsigned int mask = (1 << fls(max)) - 1;
3149 unsigned int invert = mc->invert;
3150
3151 ucontrol->value.integer.value[0] =
3152 (snd_soc_read(codec, reg) >> shift) & mask;
3153 if (invert)
3154 ucontrol->value.integer.value[0] =
3155 max - ucontrol->value.integer.value[0];
3156 ucontrol->value.integer.value[0] =
3157 ucontrol->value.integer.value[0] - min;
3158
Mark Brown9bde4f02012-12-19 16:05:00 +00003159 if (snd_soc_volsw_is_stereo(mc)) {
3160 ucontrol->value.integer.value[1] =
3161 (snd_soc_read(codec, rreg) >> shift) & mask;
3162 if (invert)
3163 ucontrol->value.integer.value[1] =
3164 max - ucontrol->value.integer.value[1];
3165 ucontrol->value.integer.value[1] =
3166 ucontrol->value.integer.value[1] - min;
3167 }
3168
Adam Thomson6c9d8cf2012-05-31 15:18:01 +01003169 return 0;
3170}
3171EXPORT_SYMBOL_GPL(snd_soc_get_volsw_range);
3172
3173/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003174 * snd_soc_limit_volume - Set new limit to an existing volume control.
3175 *
3176 * @codec: where to look for the control
3177 * @name: Name of the control
3178 * @max: new maximum limit
3179 *
3180 * Return 0 for success, else error.
3181 */
3182int snd_soc_limit_volume(struct snd_soc_codec *codec,
3183 const char *name, int max)
3184{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003185 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003186 struct snd_kcontrol *kctl;
3187 struct soc_mixer_control *mc;
3188 int found = 0;
3189 int ret = -EINVAL;
3190
3191 /* Sanity check for name and max */
3192 if (unlikely(!name || max <= 0))
3193 return -EINVAL;
3194
3195 list_for_each_entry(kctl, &card->controls, list) {
3196 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
3197 found = 1;
3198 break;
3199 }
3200 }
3201 if (found) {
3202 mc = (struct soc_mixer_control *)kctl->private_value;
3203 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03003204 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03003205 ret = 0;
3206 }
3207 }
3208 return ret;
3209}
3210EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
3211
Mark Brown71d08512011-10-10 18:31:26 +01003212int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
3213 struct snd_ctl_elem_info *uinfo)
3214{
3215 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3216 struct soc_bytes *params = (void *)kcontrol->private_value;
3217
3218 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
3219 uinfo->count = params->num_regs * codec->val_bytes;
3220
3221 return 0;
3222}
3223EXPORT_SYMBOL_GPL(snd_soc_bytes_info);
3224
3225int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
3226 struct snd_ctl_elem_value *ucontrol)
3227{
3228 struct soc_bytes *params = (void *)kcontrol->private_value;
3229 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3230 int ret;
3231
3232 if (codec->using_regmap)
3233 ret = regmap_raw_read(codec->control_data, params->base,
3234 ucontrol->value.bytes.data,
3235 params->num_regs * codec->val_bytes);
3236 else
3237 ret = -EINVAL;
3238
Mark Brownf831b052012-02-17 16:20:33 -08003239 /* Hide any masked bytes to ensure consistent data reporting */
3240 if (ret == 0 && params->mask) {
3241 switch (codec->val_bytes) {
3242 case 1:
3243 ucontrol->value.bytes.data[0] &= ~params->mask;
3244 break;
3245 case 2:
3246 ((u16 *)(&ucontrol->value.bytes.data))[0]
3247 &= ~params->mask;
3248 break;
3249 case 4:
3250 ((u32 *)(&ucontrol->value.bytes.data))[0]
3251 &= ~params->mask;
3252 break;
3253 default:
3254 return -EINVAL;
3255 }
3256 }
3257
Mark Brown71d08512011-10-10 18:31:26 +01003258 return ret;
3259}
3260EXPORT_SYMBOL_GPL(snd_soc_bytes_get);
3261
3262int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
3263 struct snd_ctl_elem_value *ucontrol)
3264{
3265 struct soc_bytes *params = (void *)kcontrol->private_value;
3266 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Mark Brownf831b052012-02-17 16:20:33 -08003267 int ret, len;
3268 unsigned int val;
3269 void *data;
Mark Brown71d08512011-10-10 18:31:26 +01003270
Mark Brownf831b052012-02-17 16:20:33 -08003271 if (!codec->using_regmap)
3272 return -EINVAL;
3273
Mark Brownf831b052012-02-17 16:20:33 -08003274 len = params->num_regs * codec->val_bytes;
3275
Mark Brownb5a8fe42013-01-20 21:42:22 +09003276 data = kmemdup(ucontrol->value.bytes.data, len, GFP_KERNEL | GFP_DMA);
3277 if (!data)
3278 return -ENOMEM;
3279
Mark Brownf831b052012-02-17 16:20:33 -08003280 /*
3281 * If we've got a mask then we need to preserve the register
3282 * bits. We shouldn't modify the incoming data so take a
3283 * copy.
3284 */
3285 if (params->mask) {
3286 ret = regmap_read(codec->control_data, params->base, &val);
3287 if (ret != 0)
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003288 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003289
3290 val &= params->mask;
3291
Mark Brownf831b052012-02-17 16:20:33 -08003292 switch (codec->val_bytes) {
3293 case 1:
3294 ((u8 *)data)[0] &= ~params->mask;
3295 ((u8 *)data)[0] |= val;
3296 break;
3297 case 2:
3298 ((u16 *)data)[0] &= cpu_to_be16(~params->mask);
3299 ((u16 *)data)[0] |= cpu_to_be16(val);
3300 break;
3301 case 4:
3302 ((u32 *)data)[0] &= cpu_to_be32(~params->mask);
3303 ((u32 *)data)[0] |= cpu_to_be32(val);
3304 break;
3305 default:
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003306 ret = -EINVAL;
3307 goto out;
Mark Brownf831b052012-02-17 16:20:33 -08003308 }
3309 }
3310
3311 ret = regmap_raw_write(codec->control_data, params->base,
3312 data, len);
3313
Wei Yongjune8b18ad2013-03-12 00:35:14 +08003314out:
Mark Brownb5a8fe42013-01-20 21:42:22 +09003315 kfree(data);
Mark Brown71d08512011-10-10 18:31:26 +01003316
3317 return ret;
3318}
3319EXPORT_SYMBOL_GPL(snd_soc_bytes_put);
3320
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02003321/**
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003322 * snd_soc_info_xr_sx - signed multi register info callback
3323 * @kcontrol: mreg control
3324 * @uinfo: control element information
3325 *
3326 * Callback to provide information of a control that can
3327 * span multiple codec registers which together
3328 * forms a single signed value in a MSB/LSB manner.
3329 *
3330 * Returns 0 for success.
3331 */
3332int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
3333 struct snd_ctl_elem_info *uinfo)
3334{
3335 struct soc_mreg_control *mc =
3336 (struct soc_mreg_control *)kcontrol->private_value;
3337 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
3338 uinfo->count = 1;
3339 uinfo->value.integer.min = mc->min;
3340 uinfo->value.integer.max = mc->max;
3341
3342 return 0;
3343}
3344EXPORT_SYMBOL_GPL(snd_soc_info_xr_sx);
3345
3346/**
3347 * snd_soc_get_xr_sx - signed multi register get callback
3348 * @kcontrol: mreg control
3349 * @ucontrol: control element information
3350 *
3351 * Callback to get the value of a control that can span
3352 * multiple codec registers which together forms a single
3353 * signed value in a MSB/LSB manner. The control supports
3354 * specifying total no of bits used to allow for bitfields
3355 * across the multiple codec registers.
3356 *
3357 * Returns 0 for success.
3358 */
3359int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
3360 struct snd_ctl_elem_value *ucontrol)
3361{
3362 struct soc_mreg_control *mc =
3363 (struct soc_mreg_control *)kcontrol->private_value;
3364 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3365 unsigned int regbase = mc->regbase;
3366 unsigned int regcount = mc->regcount;
3367 unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3368 unsigned int regwmask = (1<<regwshift)-1;
3369 unsigned int invert = mc->invert;
3370 unsigned long mask = (1UL<<mc->nbits)-1;
3371 long min = mc->min;
3372 long max = mc->max;
3373 long val = 0;
3374 unsigned long regval;
3375 unsigned int i;
3376
3377 for (i = 0; i < regcount; i++) {
3378 regval = snd_soc_read(codec, regbase+i) & regwmask;
3379 val |= regval << (regwshift*(regcount-i-1));
3380 }
3381 val &= mask;
3382 if (min < 0 && val > max)
3383 val |= ~mask;
3384 if (invert)
3385 val = max - val;
3386 ucontrol->value.integer.value[0] = val;
3387
3388 return 0;
3389}
3390EXPORT_SYMBOL_GPL(snd_soc_get_xr_sx);
3391
3392/**
3393 * snd_soc_put_xr_sx - signed multi register get callback
3394 * @kcontrol: mreg control
3395 * @ucontrol: control element information
3396 *
3397 * Callback to set the value of a control that can span
3398 * multiple codec registers which together forms a single
3399 * signed value in a MSB/LSB manner. The control supports
3400 * specifying total no of bits used to allow for bitfields
3401 * across the multiple codec registers.
3402 *
3403 * Returns 0 for success.
3404 */
3405int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
3406 struct snd_ctl_elem_value *ucontrol)
3407{
3408 struct soc_mreg_control *mc =
3409 (struct soc_mreg_control *)kcontrol->private_value;
3410 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3411 unsigned int regbase = mc->regbase;
3412 unsigned int regcount = mc->regcount;
3413 unsigned int regwshift = codec->driver->reg_word_size * BITS_PER_BYTE;
3414 unsigned int regwmask = (1<<regwshift)-1;
3415 unsigned int invert = mc->invert;
3416 unsigned long mask = (1UL<<mc->nbits)-1;
Kristoffer KARLSSON4183eed22012-04-20 11:32:13 +02003417 long max = mc->max;
3418 long val = ucontrol->value.integer.value[0];
3419 unsigned int i, regval, regmask;
3420 int err;
3421
3422 if (invert)
3423 val = max - val;
3424 val &= mask;
3425 for (i = 0; i < regcount; i++) {
3426 regval = (val >> (regwshift*(regcount-i-1))) & regwmask;
3427 regmask = (mask >> (regwshift*(regcount-i-1))) & regwmask;
3428 err = snd_soc_update_bits_locked(codec, regbase+i,
3429 regmask, regval);
3430 if (err < 0)
3431 return err;
3432 }
3433
3434 return 0;
3435}
3436EXPORT_SYMBOL_GPL(snd_soc_put_xr_sx);
3437
3438/**
Kristoffer KARLSSONdd7b10b2012-04-20 11:32:44 +02003439 * snd_soc_get_strobe - strobe get callback
3440 * @kcontrol: mixer control
3441 * @ucontrol: control element information
3442 *
3443 * Callback get the value of a strobe mixer control.
3444 *
3445 * Returns 0 for success.
3446 */
3447int snd_soc_get_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 val = snd_soc_read(codec, reg) & mask;
3458
3459 if (shift != 0 && val != 0)
3460 val = val >> shift;
3461 ucontrol->value.enumerated.item[0] = val ^ invert;
3462
3463 return 0;
3464}
3465EXPORT_SYMBOL_GPL(snd_soc_get_strobe);
3466
3467/**
3468 * snd_soc_put_strobe - strobe put callback
3469 * @kcontrol: mixer control
3470 * @ucontrol: control element information
3471 *
3472 * Callback strobe a register bit to high then low (or the inverse)
3473 * in one pass of a single mixer enum control.
3474 *
3475 * Returns 1 for success.
3476 */
3477int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
3478 struct snd_ctl_elem_value *ucontrol)
3479{
3480 struct soc_mixer_control *mc =
3481 (struct soc_mixer_control *)kcontrol->private_value;
3482 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
3483 unsigned int reg = mc->reg;
3484 unsigned int shift = mc->shift;
3485 unsigned int mask = 1 << shift;
3486 unsigned int invert = mc->invert != 0;
3487 unsigned int strobe = ucontrol->value.enumerated.item[0] != 0;
3488 unsigned int val1 = (strobe ^ invert) ? mask : 0;
3489 unsigned int val2 = (strobe ^ invert) ? 0 : mask;
3490 int err;
3491
3492 err = snd_soc_update_bits_locked(codec, reg, mask, val1);
3493 if (err < 0)
3494 return err;
3495
3496 err = snd_soc_update_bits_locked(codec, reg, mask, val2);
3497 return err;
3498}
3499EXPORT_SYMBOL_GPL(snd_soc_put_strobe);
3500
3501/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003502 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
3503 * @dai: DAI
3504 * @clk_id: DAI specific clock ID
3505 * @freq: new clock frequency in Hz
3506 * @dir: new clock direction - input/output.
3507 *
3508 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
3509 */
3510int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
3511 unsigned int freq, int dir)
3512{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003513 if (dai->driver && dai->driver->ops->set_sysclk)
3514 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003515 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003516 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00003517 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003518 else
3519 return -EINVAL;
3520}
3521EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
3522
3523/**
Mark Brownec4ee522011-03-07 20:58:11 +00003524 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
3525 * @codec: CODEC
3526 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01003527 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00003528 * @freq: new clock frequency in Hz
3529 * @dir: new clock direction - input/output.
3530 *
3531 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
3532 */
3533int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01003534 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00003535{
3536 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01003537 return codec->driver->set_sysclk(codec, clk_id, source,
3538 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00003539 else
3540 return -EINVAL;
3541}
3542EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
3543
3544/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003545 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
3546 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00003547 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003548 * @div: new clock divisor.
3549 *
3550 * Configures the clock dividers. This is used to derive the best DAI bit and
3551 * frame clocks from the system or master clock. It's best to set the DAI bit
3552 * and frame clocks as low as possible to save system power.
3553 */
3554int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
3555 int div_id, int div)
3556{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003557 if (dai->driver && dai->driver->ops->set_clkdiv)
3558 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003559 else
3560 return -EINVAL;
3561}
3562EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
3563
3564/**
3565 * snd_soc_dai_set_pll - configure DAI PLL.
3566 * @dai: DAI
3567 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01003568 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003569 * @freq_in: PLL input clock frequency in Hz
3570 * @freq_out: requested PLL output clock frequency in Hz
3571 *
3572 * Configures and enables PLL to generate output clock based on input clock.
3573 */
Mark Brown85488032009-09-05 18:52:16 +01003574int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
3575 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003576{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003577 if (dai->driver && dai->driver->ops->set_pll)
3578 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01003579 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00003580 else if (dai->codec && dai->codec->driver->set_pll)
3581 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
3582 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003583 else
3584 return -EINVAL;
3585}
3586EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
3587
Mark Brownec4ee522011-03-07 20:58:11 +00003588/*
3589 * snd_soc_codec_set_pll - configure codec PLL.
3590 * @codec: CODEC
3591 * @pll_id: DAI specific PLL ID
3592 * @source: DAI specific source for the PLL
3593 * @freq_in: PLL input clock frequency in Hz
3594 * @freq_out: requested PLL output clock frequency in Hz
3595 *
3596 * Configures and enables PLL to generate output clock based on input clock.
3597 */
3598int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
3599 unsigned int freq_in, unsigned int freq_out)
3600{
3601 if (codec->driver->set_pll)
3602 return codec->driver->set_pll(codec, pll_id, source,
3603 freq_in, freq_out);
3604 else
3605 return -EINVAL;
3606}
3607EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
3608
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003609/**
3610 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
3611 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003612 * @fmt: SND_SOC_DAIFMT_ format value.
3613 *
3614 * Configures the DAI hardware format and clocking.
3615 */
3616int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
3617{
Shawn Guo5e4ba562012-03-09 00:59:40 +08003618 if (dai->driver == NULL)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003619 return -EINVAL;
Shawn Guo5e4ba562012-03-09 00:59:40 +08003620 if (dai->driver->ops->set_fmt == NULL)
3621 return -ENOTSUPP;
3622 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003623}
3624EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
3625
3626/**
3627 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
3628 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003629 * @tx_mask: bitmask representing active TX slots.
3630 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003631 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003632 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003633 *
3634 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
3635 * specific.
3636 */
3637int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003638 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003639{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003640 if (dai->driver && dai->driver->ops->set_tdm_slot)
3641 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03003642 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003643 else
3644 return -EINVAL;
3645}
3646EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
3647
3648/**
Barry Song472df3c2009-09-12 01:16:29 +08003649 * snd_soc_dai_set_channel_map - configure DAI audio channel map
3650 * @dai: DAI
3651 * @tx_num: how many TX channels
3652 * @tx_slot: pointer to an array which imply the TX slot number channel
3653 * 0~num-1 uses
3654 * @rx_num: how many RX channels
3655 * @rx_slot: pointer to an array which imply the RX slot number channel
3656 * 0~num-1 uses
3657 *
3658 * configure the relationship between channel number and TDM slot number.
3659 */
3660int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
3661 unsigned int tx_num, unsigned int *tx_slot,
3662 unsigned int rx_num, unsigned int *rx_slot)
3663{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003664 if (dai->driver && dai->driver->ops->set_channel_map)
3665 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08003666 rx_num, rx_slot);
3667 else
3668 return -EINVAL;
3669}
3670EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
3671
3672/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003673 * snd_soc_dai_set_tristate - configure DAI system or master clock.
3674 * @dai: DAI
3675 * @tristate: tristate enable
3676 *
3677 * Tristates the DAI so that others can use it.
3678 */
3679int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
3680{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003681 if (dai->driver && dai->driver->ops->set_tristate)
3682 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003683 else
3684 return -EINVAL;
3685}
3686EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
3687
3688/**
3689 * snd_soc_dai_digital_mute - configure DAI system or master clock.
3690 * @dai: DAI
3691 * @mute: mute enable
Mark Brownda183962013-02-06 15:44:07 +00003692 * @direction: stream to mute
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003693 *
3694 * Mutes the DAI DAC.
3695 */
Mark Brownda183962013-02-06 15:44:07 +00003696int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,
3697 int direction)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003698{
Mark Brownda183962013-02-06 15:44:07 +00003699 if (!dai->driver)
3700 return -ENOTSUPP;
3701
3702 if (dai->driver->ops->mute_stream)
3703 return dai->driver->ops->mute_stream(dai, mute, direction);
3704 else if (direction == SNDRV_PCM_STREAM_PLAYBACK &&
3705 dai->driver->ops->digital_mute)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003706 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003707 else
Mark Brown04570c62012-04-13 19:16:03 +01003708 return -ENOTSUPP;
Liam Girdwood8c6529d2008-07-08 13:19:13 +01003709}
3710EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
3711
Mark Brownc5af3a22008-11-28 13:29:45 +00003712/**
3713 * snd_soc_register_card - Register a card with the ASoC core
3714 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003715 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00003716 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003717 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303718int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003719{
Mark Brownb19e6e72012-03-14 21:18:39 +00003720 int i, ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003721
Mark Brownc5af3a22008-11-28 13:29:45 +00003722 if (!card->name || !card->dev)
3723 return -EINVAL;
3724
Stephen Warren5a504962011-12-21 10:40:59 -07003725 for (i = 0; i < card->num_links; i++) {
3726 struct snd_soc_dai_link *link = &card->dai_link[i];
3727
3728 /*
3729 * Codec must be specified by 1 of name or OF node,
3730 * not both or neither.
3731 */
3732 if (!!link->codec_name == !!link->codec_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003733 dev_err(card->dev,
3734 "ASoC: Neither/both codec name/of_node are set for %s\n",
3735 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003736 return -EINVAL;
3737 }
Stephen Warrenbc926572012-05-25 18:22:11 -06003738 /* Codec DAI name must be specified */
3739 if (!link->codec_dai_name) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003740 dev_err(card->dev,
3741 "ASoC: codec_dai_name not set for %s\n",
3742 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003743 return -EINVAL;
3744 }
Stephen Warren5a504962011-12-21 10:40:59 -07003745
3746 /*
3747 * Platform may be specified by either name or OF node, but
3748 * can be left unspecified, and a dummy platform will be used.
3749 */
3750 if (link->platform_name && link->platform_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003751 dev_err(card->dev,
3752 "ASoC: Both platform name/of_node are set for %s\n",
3753 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003754 return -EINVAL;
3755 }
3756
3757 /*
Stephen Warrenbc926572012-05-25 18:22:11 -06003758 * CPU device may be specified by either name or OF node, but
3759 * can be left unspecified, and will be matched based on DAI
3760 * name alone..
Stephen Warren5a504962011-12-21 10:40:59 -07003761 */
Stephen Warrenbc926572012-05-25 18:22:11 -06003762 if (link->cpu_name && link->cpu_of_node) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003763 dev_err(card->dev,
3764 "ASoC: Neither/both cpu name/of_node are set for %s\n",
3765 link->name);
Stephen Warrenbc926572012-05-25 18:22:11 -06003766 return -EINVAL;
3767 }
3768 /*
3769 * At least one of CPU DAI name or CPU device name/node must be
3770 * specified
3771 */
3772 if (!link->cpu_dai_name &&
3773 !(link->cpu_name || link->cpu_of_node)) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003774 dev_err(card->dev,
3775 "ASoC: Neither cpu_dai_name nor cpu_name/of_node are set for %s\n",
3776 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07003777 return -EINVAL;
3778 }
3779 }
3780
Mark Browned77cc12011-05-03 18:25:34 +01003781 dev_set_drvdata(card->dev, card);
3782
Stephen Warren111c6412011-01-28 14:26:35 -07003783 snd_soc_initialize_card_lists(card);
3784
Vinod Koul150dd2f2011-01-13 22:48:32 +05303785 soc_init_card_debugfs(card);
3786
Mark Brown181a6892012-03-14 20:18:49 +00003787 card->rtd = devm_kzalloc(card->dev,
3788 sizeof(struct snd_soc_pcm_runtime) *
3789 (card->num_links + card->num_aux_devs),
3790 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003791 if (card->rtd == NULL)
3792 return -ENOMEM;
Liam Girdwooda7dbb602012-04-17 18:00:11 +01003793 card->num_rtd = 0;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02003794 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003795
3796 for (i = 0; i < card->num_links; i++)
3797 card->rtd[i].dai_link = &card->dai_link[i];
3798
Mark Brownc5af3a22008-11-28 13:29:45 +00003799 INIT_LIST_HEAD(&card->list);
Mark Browndb432b42011-10-03 21:06:40 +01003800 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00003801 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003802 mutex_init(&card->mutex);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003803 mutex_init(&card->dapm_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00003804
Mark Brownb19e6e72012-03-14 21:18:39 +00003805 ret = snd_soc_instantiate_card(card);
3806 if (ret != 0)
3807 soc_cleanup_card_debugfs(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003808
Mark Brownb19e6e72012-03-14 21:18:39 +00003809 return ret;
Mark Brownc5af3a22008-11-28 13:29:45 +00003810}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303811EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003812
3813/**
3814 * snd_soc_unregister_card - Unregister a card with the ASoC core
3815 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003816 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00003817 *
Mark Brownc5af3a22008-11-28 13:29:45 +00003818 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05303819int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00003820{
Vinod Koulb0e26482011-01-13 22:48:02 +05303821 if (card->instantiated)
3822 soc_cleanup_card_resources(card);
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003823 dev_dbg(card->dev, "ASoC: Unregistered card '%s'\n", card->name);
Mark Brownc5af3a22008-11-28 13:29:45 +00003824
3825 return 0;
3826}
Vinod Koul70a7ca32011-01-14 19:22:48 +05303827EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00003828
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003829/*
3830 * Simplify DAI link configuration by removing ".-1" from device names
3831 * and sanitizing names.
3832 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00003833static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003834{
3835 char *found, name[NAME_SIZE];
3836 int id1, id2;
3837
3838 if (dev_name(dev) == NULL)
3839 return NULL;
3840
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003841 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003842
3843 /* are we a "%s.%d" name (platform and SPI components) */
3844 found = strstr(name, dev->driver->name);
3845 if (found) {
3846 /* get ID */
3847 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
3848
3849 /* discard ID from name if ID == -1 */
3850 if (*id == -1)
3851 found[strlen(dev->driver->name)] = '\0';
3852 }
3853
3854 } else {
3855 /* I2C component devices are named "bus-addr" */
3856 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
3857 char tmp[NAME_SIZE];
3858
3859 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03003860 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003861
3862 /* sanitize component name for DAI link creation */
3863 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00003864 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003865 } else
3866 *id = 0;
3867 }
3868
3869 return kstrdup(name, GFP_KERNEL);
3870}
3871
3872/*
3873 * Simplify DAI link naming for single devices with multiple DAIs by removing
3874 * any ".-1" and using the DAI name (instead of device name).
3875 */
3876static inline char *fmt_multiple_name(struct device *dev,
3877 struct snd_soc_dai_driver *dai_drv)
3878{
3879 if (dai_drv->name == NULL) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02003880 dev_err(dev,
3881 "ASoC: error - multiple DAI %s registered with no name\n",
3882 dev_name(dev));
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003883 return NULL;
3884 }
3885
3886 return kstrdup(dai_drv->name, GFP_KERNEL);
3887}
3888
Mark Brown91151712008-11-30 23:31:24 +00003889/**
3890 * snd_soc_register_dai - Register a DAI with the ASoC core
3891 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003892 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003893 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003894static int snd_soc_register_dai(struct device *dev,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003895 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003896{
Mark Brown054880f2012-04-09 17:29:19 +01003897 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003898 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003899
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003900 dev_dbg(dev, "ASoC: dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003901
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003902 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3903 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003904 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003905
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003906 /* create DAI component name */
3907 dai->name = fmt_single_name(dev, &dai->id);
3908 if (dai->name == NULL) {
3909 kfree(dai);
3910 return -ENOMEM;
3911 }
3912
3913 dai->dev = dev;
3914 dai->driver = dai_drv;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00003915 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003916 if (!dai->driver->ops)
3917 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003918
3919 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01003920
3921 list_for_each_entry(codec, &codec_list, list) {
3922 if (codec->dev == dev) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003923 dev_dbg(dev, "ASoC: Mapped DAI %s to CODEC %s\n",
Mark Brown054880f2012-04-09 17:29:19 +01003924 dai->name, codec->name);
3925 dai->codec = codec;
3926 break;
3927 }
3928 }
3929
Peter Ujfalusi5f800082012-08-07 10:24:13 +03003930 if (!dai->codec)
3931 dai->dapm.idle_bias_off = 1;
3932
Mark Brown91151712008-11-30 23:31:24 +00003933 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01003934
Mark Brown91151712008-11-30 23:31:24 +00003935 mutex_unlock(&client_mutex);
3936
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003937 dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003938
3939 return 0;
3940}
Mark Brown91151712008-11-30 23:31:24 +00003941
3942/**
3943 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3944 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003945 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003946 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003947static void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003948{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003949 struct snd_soc_dai *dai;
3950
3951 list_for_each_entry(dai, &dai_list, list) {
3952 if (dev == dai->dev)
3953 goto found;
3954 }
3955 return;
3956
3957found:
Mark Brown91151712008-11-30 23:31:24 +00003958 mutex_lock(&client_mutex);
3959 list_del(&dai->list);
3960 mutex_unlock(&client_mutex);
3961
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003962 dev_dbg(dev, "ASoC: Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003963 kfree(dai->name);
3964 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003965}
Mark Brown91151712008-11-30 23:31:24 +00003966
3967/**
3968 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3969 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003970 * @dai: Array of DAIs to register
3971 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003972 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07003973static int snd_soc_register_dais(struct device *dev,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003974 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003975{
Mark Brown054880f2012-04-09 17:29:19 +01003976 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003977 struct snd_soc_dai *dai;
3978 int i, ret = 0;
3979
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00003980 dev_dbg(dev, "ASoC: dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003981
3982 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003983
3984 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003985 if (dai == NULL) {
3986 ret = -ENOMEM;
3987 goto err;
3988 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003989
3990 /* create DAI component name */
3991 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3992 if (dai->name == NULL) {
3993 kfree(dai);
3994 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003995 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003996 }
3997
3998 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003999 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01004000 if (dai->driver->id)
4001 dai->id = dai->driver->id;
4002 else
4003 dai->id = i;
Liam Girdwoodbe09ad92012-03-07 11:47:41 +00004004 dai->dapm.dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004005 if (!dai->driver->ops)
4006 dai->driver->ops = &null_dai_ops;
4007
4008 mutex_lock(&client_mutex);
Mark Brown054880f2012-04-09 17:29:19 +01004009
4010 list_for_each_entry(codec, &codec_list, list) {
4011 if (codec->dev == dev) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02004012 dev_dbg(dev,
4013 "ASoC: Mapped DAI %s to CODEC %s\n",
4014 dai->name, codec->name);
Mark Brown054880f2012-04-09 17:29:19 +01004015 dai->codec = codec;
4016 break;
4017 }
4018 }
4019
Peter Ujfalusi5f800082012-08-07 10:24:13 +03004020 if (!dai->codec)
4021 dai->dapm.idle_bias_off = 1;
4022
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004023 list_add(&dai->list, &dai_list);
Mark Brown054880f2012-04-09 17:29:19 +01004024
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004025 mutex_unlock(&client_mutex);
4026
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004027 dev_dbg(dai->dev, "ASoC: Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00004028 }
4029
4030 return 0;
4031
4032err:
4033 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004034 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00004035
4036 return ret;
4037}
Mark Brown91151712008-11-30 23:31:24 +00004038
4039/**
4040 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
4041 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004042 * @dai: Array of DAIs to unregister
4043 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00004044 */
Kuninori Morimotof53179c02013-03-21 03:38:30 -07004045static void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00004046{
4047 int i;
4048
4049 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004050 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00004051}
Mark Brown91151712008-11-30 23:31:24 +00004052
Mark Brown12a48a8c2008-12-03 19:40:30 +00004053/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004054 * snd_soc_add_platform - Add a platform to the ASoC core
4055 * @dev: The parent device for the platform
4056 * @platform: The platform to add
4057 * @platform_driver: The driver for the platform
Mark Brown12a48a8c2008-12-03 19:40:30 +00004058 */
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004059int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,
Lars-Peter Clausend79e57d2013-03-27 12:02:22 +01004060 const struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004061{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004062 /* create platform component name */
4063 platform->name = fmt_single_name(dev, &platform->id);
Dan Carpenterb5c745f2013-07-22 09:56:54 +03004064 if (platform->name == NULL)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004065 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004066
4067 platform->dev = dev;
4068 platform->driver = platform_drv;
Liam Girdwoodb7950642011-07-04 22:10:52 +01004069 platform->dapm.dev = dev;
4070 platform->dapm.platform = platform;
Liam Girdwood64a648c2011-07-25 11:15:15 +01004071 platform->dapm.stream_event = platform_drv->stream_event;
Liam Girdwoodcc22d372012-03-06 18:16:18 +00004072 mutex_init(&platform->mutex);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004073
4074 mutex_lock(&client_mutex);
4075 list_add(&platform->list, &platform_list);
4076 mutex_unlock(&client_mutex);
4077
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004078 dev_dbg(dev, "ASoC: Registered platform '%s'\n", platform->name);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004079
4080 return 0;
4081}
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004082EXPORT_SYMBOL_GPL(snd_soc_add_platform);
4083
4084/**
4085 * snd_soc_register_platform - Register a platform with the ASoC core
4086 *
4087 * @platform: platform to register
4088 */
4089int snd_soc_register_platform(struct device *dev,
4090 const struct snd_soc_platform_driver *platform_drv)
4091{
4092 struct snd_soc_platform *platform;
4093 int ret;
4094
4095 dev_dbg(dev, "ASoC: platform register %s\n", dev_name(dev));
4096
4097 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
4098 if (platform == NULL)
4099 return -ENOMEM;
4100
4101 ret = snd_soc_add_platform(dev, platform, platform_drv);
4102 if (ret)
4103 kfree(platform);
4104
4105 return ret;
4106}
Mark Brown12a48a8c2008-12-03 19:40:30 +00004107EXPORT_SYMBOL_GPL(snd_soc_register_platform);
4108
4109/**
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004110 * snd_soc_remove_platform - Remove a platform from the ASoC core
4111 * @platform: the platform to remove
4112 */
4113void snd_soc_remove_platform(struct snd_soc_platform *platform)
4114{
4115 mutex_lock(&client_mutex);
4116 list_del(&platform->list);
4117 mutex_unlock(&client_mutex);
4118
4119 dev_dbg(platform->dev, "ASoC: Unregistered platform '%s'\n",
4120 platform->name);
4121 kfree(platform->name);
4122}
4123EXPORT_SYMBOL_GPL(snd_soc_remove_platform);
4124
4125struct snd_soc_platform *snd_soc_lookup_platform(struct device *dev)
4126{
4127 struct snd_soc_platform *platform;
4128
4129 list_for_each_entry(platform, &platform_list, list) {
4130 if (dev == platform->dev)
4131 return platform;
4132 }
4133
4134 return NULL;
4135}
4136EXPORT_SYMBOL_GPL(snd_soc_lookup_platform);
4137
4138/**
Mark Brown12a48a8c2008-12-03 19:40:30 +00004139 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
4140 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004141 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00004142 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004143void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00004144{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004145 struct snd_soc_platform *platform;
4146
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004147 platform = snd_soc_lookup_platform(dev);
4148 if (!platform)
4149 return;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004150
Lars-Peter Clausen71a45cd2013-04-15 19:19:49 +02004151 snd_soc_remove_platform(platform);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004152 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00004153}
4154EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
4155
Mark Brown151ab222009-05-09 16:22:58 +01004156static u64 codec_format_map[] = {
4157 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
4158 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
4159 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
4160 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
4161 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
4162 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
4163 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4164 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
4165 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
4166 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
4167 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
4168 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
4169 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
4170 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
4171 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
4172 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
4173};
4174
4175/* Fix up the DAI formats for endianness: codecs don't actually see
4176 * the endianness of the data but we're using the CPU format
4177 * definitions which do need to include endianness so we ensure that
4178 * codec DAIs always have both big and little endian variants set.
4179 */
4180static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
4181{
4182 int i;
4183
4184 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
4185 if (stream->formats & codec_format_map[i])
4186 stream->formats |= codec_format_map[i];
4187}
4188
Mark Brown0d0cf002008-12-10 14:32:45 +00004189/**
4190 * snd_soc_register_codec - Register a codec with the ASoC core
4191 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004192 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00004193 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004194int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00004195 const struct snd_soc_codec_driver *codec_drv,
4196 struct snd_soc_dai_driver *dai_drv,
4197 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00004198{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004199 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004200 struct snd_soc_codec *codec;
4201 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01004202
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004203 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00004204
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004205 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
4206 if (codec == NULL)
4207 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00004208
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004209 /* create CODEC component name */
4210 codec->name = fmt_single_name(dev, &codec->id);
4211 if (codec->name == NULL) {
Kuninori Morimotof790b942013-02-25 00:40:09 -08004212 ret = -ENOMEM;
4213 goto fail_codec;
Mark Brown151ab222009-05-09 16:22:58 +01004214 }
4215
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00004216 if (codec_drv->compress_type)
4217 codec->compress_type = codec_drv->compress_type;
4218 else
4219 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
4220
Mark Brownc3acec22010-12-02 16:15:29 +00004221 codec->write = codec_drv->write;
4222 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00004223 codec->volatile_register = codec_drv->volatile_register;
4224 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00004225 codec->writable_register = codec_drv->writable_register;
Mark Brown5124e692012-02-08 13:20:50 +00004226 codec->ignore_pmdown_time = codec_drv->ignore_pmdown_time;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004227 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
4228 codec->dapm.dev = dev;
4229 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00004230 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwood64a648c2011-07-25 11:15:15 +01004231 codec->dapm.stream_event = codec_drv->stream_event;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004232 codec->dev = dev;
4233 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004234 codec->num_dai = num_dai;
4235 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004236
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004237 /* allocate CODEC register cache */
4238 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004239 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00004240 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004241 /* it is necessary to make a copy of the default register cache
4242 * because in the case of using a compression type that requires
Bill Pembertonf6e65742012-11-19 13:25:33 -05004243 * the default register cache to be marked as the
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004244 * kernel might have freed the array by the time we initialize
4245 * the cache.
4246 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00004247 if (codec_drv->reg_cache_default) {
4248 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
4249 reg_size, GFP_KERNEL);
4250 if (!codec->reg_def_copy) {
4251 ret = -ENOMEM;
Kuninori Morimotof790b942013-02-25 00:40:09 -08004252 goto fail_codec_name;
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00004253 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004254 }
4255 }
4256
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00004257 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
4258 if (!codec->volatile_register)
4259 codec->volatile_register = snd_soc_default_volatile_register;
4260 if (!codec->readable_register)
4261 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00004262 if (!codec->writable_register)
4263 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00004264 }
4265
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004266 for (i = 0; i < num_dai; i++) {
4267 fixup_codec_formats(&dai_drv[i].playback);
4268 fixup_codec_formats(&dai_drv[i].capture);
4269 }
4270
Mark Brown054880f2012-04-09 17:29:19 +01004271 mutex_lock(&client_mutex);
4272 list_add(&codec->list, &codec_list);
4273 mutex_unlock(&client_mutex);
4274
Mark Brown26b01cc2010-08-18 20:20:55 +01004275 /* register any DAIs */
Kuninori Morimoto5acd7df2013-02-25 00:40:40 -08004276 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
4277 if (ret < 0) {
4278 dev_err(codec->dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4279 goto fail_codec_name;
Mark Brown26b01cc2010-08-18 20:20:55 +01004280 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004281
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004282 dev_dbg(codec->dev, "ASoC: Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00004283 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004284
Kuninori Morimotof790b942013-02-25 00:40:09 -08004285fail_codec_name:
Kuninori Morimotoe1328a82013-03-07 17:42:33 -08004286 mutex_lock(&client_mutex);
4287 list_del(&codec->list);
4288 mutex_unlock(&client_mutex);
4289
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004290 kfree(codec->name);
Kuninori Morimotof790b942013-02-25 00:40:09 -08004291fail_codec:
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004292 kfree(codec);
4293 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00004294}
4295EXPORT_SYMBOL_GPL(snd_soc_register_codec);
4296
4297/**
4298 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
4299 *
Mark Brownac11a2b2009-01-01 12:18:17 +00004300 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00004301 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004302void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00004303{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004304 struct snd_soc_codec *codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004305
4306 list_for_each_entry(codec, &codec_list, list) {
4307 if (dev == codec->dev)
4308 goto found;
4309 }
4310 return;
4311
4312found:
Kuninori Morimoto5acd7df2013-02-25 00:40:40 -08004313 snd_soc_unregister_dais(dev, codec->num_dai);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004314
Mark Brown0d0cf002008-12-10 14:32:45 +00004315 mutex_lock(&client_mutex);
4316 list_del(&codec->list);
4317 mutex_unlock(&client_mutex);
4318
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004319 dev_dbg(codec->dev, "ASoC: Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004320
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00004321 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00004322 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01004323 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004324 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00004325}
4326EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
4327
Kuninori Morimoto030e79f2013-03-11 18:27:21 -07004328
4329/**
4330 * snd_soc_register_component - Register a component with the ASoC core
4331 *
4332 */
4333int snd_soc_register_component(struct device *dev,
4334 const struct snd_soc_component_driver *cmpnt_drv,
4335 struct snd_soc_dai_driver *dai_drv,
4336 int num_dai)
4337{
4338 struct snd_soc_component *cmpnt;
4339 int ret;
4340
4341 dev_dbg(dev, "component register %s\n", dev_name(dev));
4342
4343 cmpnt = devm_kzalloc(dev, sizeof(*cmpnt), GFP_KERNEL);
4344 if (!cmpnt) {
4345 dev_err(dev, "ASoC: Failed to allocate memory\n");
4346 return -ENOMEM;
4347 }
4348
4349 cmpnt->name = fmt_single_name(dev, &cmpnt->id);
4350 if (!cmpnt->name) {
4351 dev_err(dev, "ASoC: Failed to simplifying name\n");
4352 return -ENOMEM;
4353 }
4354
4355 cmpnt->dev = dev;
4356 cmpnt->driver = cmpnt_drv;
4357 cmpnt->num_dai = num_dai;
4358
Kuninori Morimotoa1422b82013-03-21 03:27:13 -07004359 /*
4360 * snd_soc_register_dai() uses fmt_single_name(), and
4361 * snd_soc_register_dais() uses fmt_multiple_name()
4362 * for dai->name which is used for name based matching
4363 */
4364 if (1 == num_dai)
4365 ret = snd_soc_register_dai(dev, dai_drv);
4366 else
4367 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -07004368 if (ret < 0) {
4369 dev_err(dev, "ASoC: Failed to regster DAIs: %d\n", ret);
4370 goto error_component_name;
4371 }
4372
4373 mutex_lock(&client_mutex);
4374 list_add(&cmpnt->list, &component_list);
4375 mutex_unlock(&client_mutex);
4376
4377 dev_dbg(cmpnt->dev, "ASoC: Registered component '%s'\n", cmpnt->name);
4378
4379 return ret;
4380
4381error_component_name:
4382 kfree(cmpnt->name);
4383
4384 return ret;
4385}
Stephen Warren2e1cc192013-03-26 16:38:19 -06004386EXPORT_SYMBOL_GPL(snd_soc_register_component);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -07004387
4388/**
4389 * snd_soc_unregister_component - Unregister a component from the ASoC core
4390 *
4391 */
4392void snd_soc_unregister_component(struct device *dev)
4393{
4394 struct snd_soc_component *cmpnt;
4395
4396 list_for_each_entry(cmpnt, &component_list, list) {
4397 if (dev == cmpnt->dev)
4398 goto found;
4399 }
4400 return;
4401
4402found:
4403 snd_soc_unregister_dais(dev, cmpnt->num_dai);
4404
4405 mutex_lock(&client_mutex);
4406 list_del(&cmpnt->list);
4407 mutex_unlock(&client_mutex);
4408
4409 dev_dbg(dev, "ASoC: Unregistered component '%s'\n", cmpnt->name);
4410 kfree(cmpnt->name);
4411}
Stephen Warren2e1cc192013-03-26 16:38:19 -06004412EXPORT_SYMBOL_GPL(snd_soc_unregister_component);
Kuninori Morimoto030e79f2013-03-11 18:27:21 -07004413
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004414/* Retrieve a card's name from device tree */
4415int snd_soc_of_parse_card_name(struct snd_soc_card *card,
4416 const char *propname)
4417{
4418 struct device_node *np = card->dev->of_node;
4419 int ret;
4420
4421 ret = of_property_read_string_index(np, propname, 0, &card->name);
4422 /*
4423 * EINVAL means the property does not exist. This is fine providing
4424 * card->name was previously set, which is checked later in
4425 * snd_soc_register_card.
4426 */
4427 if (ret < 0 && ret != -EINVAL) {
4428 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004429 "ASoC: Property '%s' could not be read: %d\n",
Stephen Warrenbec4fa02011-12-12 15:55:34 -07004430 propname, ret);
4431 return ret;
4432 }
4433
4434 return 0;
4435}
4436EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
4437
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004438int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
4439 const char *propname)
4440{
4441 struct device_node *np = card->dev->of_node;
4442 int num_routes;
4443 struct snd_soc_dapm_route *routes;
4444 int i, ret;
4445
4446 num_routes = of_property_count_strings(np, propname);
Richard Zhaoc34ce322012-04-24 15:24:43 +08004447 if (num_routes < 0 || num_routes & 1) {
Michał Mirosław10e8aa92013-05-04 22:21:38 +02004448 dev_err(card->dev,
4449 "ASoC: Property '%s' does not exist or its length is not even\n",
4450 propname);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004451 return -EINVAL;
4452 }
4453 num_routes /= 2;
4454 if (!num_routes) {
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004455 dev_err(card->dev, "ASoC: Property '%s's length is zero\n",
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004456 propname);
4457 return -EINVAL;
4458 }
4459
4460 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
4461 GFP_KERNEL);
4462 if (!routes) {
4463 dev_err(card->dev,
Liam Girdwoodf110bfc2012-11-19 14:47:09 +00004464 "ASoC: Could not allocate DAPM route table\n");
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004465 return -EINVAL;
4466 }
4467
4468 for (i = 0; i < num_routes; i++) {
4469 ret = of_property_read_string_index(np, propname,
4470 2 * i, &routes[i].sink);
4471 if (ret) {
Mark Brownc871bd02012-12-10 16:19:52 +09004472 dev_err(card->dev,
4473 "ASoC: Property '%s' index %d could not be read: %d\n",
4474 propname, 2 * i, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004475 return -EINVAL;
4476 }
4477 ret = of_property_read_string_index(np, propname,
4478 (2 * i) + 1, &routes[i].source);
4479 if (ret) {
4480 dev_err(card->dev,
Mark Brownc871bd02012-12-10 16:19:52 +09004481 "ASoC: Property '%s' index %d could not be read: %d\n",
4482 propname, (2 * i) + 1, ret);
Stephen Warrena4a54dd2011-12-12 15:55:35 -07004483 return -EINVAL;
4484 }
4485 }
4486
4487 card->num_dapm_routes = num_routes;
4488 card->dapm_routes = routes;
4489
4490 return 0;
4491}
4492EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
4493
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004494unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
4495 const char *prefix)
4496{
4497 int ret, i;
4498 char prop[128];
4499 unsigned int format = 0;
4500 int bit, frame;
4501 const char *str;
4502 struct {
4503 char *name;
4504 unsigned int val;
4505 } of_fmt_table[] = {
4506 { "i2s", SND_SOC_DAIFMT_I2S },
4507 { "right_j", SND_SOC_DAIFMT_RIGHT_J },
4508 { "left_j", SND_SOC_DAIFMT_LEFT_J },
4509 { "dsp_a", SND_SOC_DAIFMT_DSP_A },
4510 { "dsp_b", SND_SOC_DAIFMT_DSP_B },
4511 { "ac97", SND_SOC_DAIFMT_AC97 },
4512 { "pdm", SND_SOC_DAIFMT_PDM},
4513 { "msb", SND_SOC_DAIFMT_MSB },
4514 { "lsb", SND_SOC_DAIFMT_LSB },
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004515 };
4516
4517 if (!prefix)
4518 prefix = "";
4519
4520 /*
4521 * check "[prefix]format = xxx"
4522 * SND_SOC_DAIFMT_FORMAT_MASK area
4523 */
4524 snprintf(prop, sizeof(prop), "%sformat", prefix);
4525 ret = of_property_read_string(np, prop, &str);
4526 if (ret == 0) {
4527 for (i = 0; i < ARRAY_SIZE(of_fmt_table); i++) {
4528 if (strcmp(str, of_fmt_table[i].name) == 0) {
4529 format |= of_fmt_table[i].val;
4530 break;
4531 }
4532 }
4533 }
4534
4535 /*
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004536 * check "[prefix]continuous-clock"
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004537 * SND_SOC_DAIFMT_CLOCK_MASK area
4538 */
Kuninori Morimoto8c2d6a92013-01-29 21:03:36 -08004539 snprintf(prop, sizeof(prop), "%scontinuous-clock", prefix);
4540 if (of_get_property(np, prop, NULL))
4541 format |= SND_SOC_DAIFMT_CONT;
4542 else
4543 format |= SND_SOC_DAIFMT_GATED;
Kuninori Morimotoa7930ed2013-01-14 18:36:04 -08004544
4545 /*
4546 * check "[prefix]bitclock-inversion"
4547 * check "[prefix]frame-inversion"
4548 * SND_SOC_DAIFMT_INV_MASK area
4549 */
4550 snprintf(prop, sizeof(prop), "%sbitclock-inversion", prefix);
4551 bit = !!of_get_property(np, prop, NULL);
4552
4553 snprintf(prop, sizeof(prop), "%sframe-inversion", prefix);
4554 frame = !!of_get_property(np, prop, NULL);
4555
4556 switch ((bit << 4) + frame) {
4557 case 0x11:
4558 format |= SND_SOC_DAIFMT_IB_IF;
4559 break;
4560 case 0x10:
4561 format |= SND_SOC_DAIFMT_IB_NF;
4562 break;
4563 case 0x01:
4564 format |= SND_SOC_DAIFMT_NB_IF;
4565 break;
4566 default:
4567 /* SND_SOC_DAIFMT_NB_NF is default */
4568 break;
4569 }
4570
4571 /*
4572 * check "[prefix]bitclock-master"
4573 * check "[prefix]frame-master"
4574 * SND_SOC_DAIFMT_MASTER_MASK area
4575 */
4576 snprintf(prop, sizeof(prop), "%sbitclock-master", prefix);
4577 bit = !!of_get_property(np, prop, NULL);
4578
4579 snprintf(prop, sizeof(prop), "%sframe-master", prefix);
4580 frame = !!of_get_property(np, prop, NULL);
4581
4582 switch ((bit << 4) + frame) {
4583 case 0x11:
4584 format |= SND_SOC_DAIFMT_CBM_CFM;
4585 break;
4586 case 0x10:
4587 format |= SND_SOC_DAIFMT_CBM_CFS;
4588 break;
4589 case 0x01:
4590 format |= SND_SOC_DAIFMT_CBS_CFM;
4591 break;
4592 default:
4593 format |= SND_SOC_DAIFMT_CBS_CFS;
4594 break;
4595 }
4596
4597 return format;
4598}
4599EXPORT_SYMBOL_GPL(snd_soc_of_parse_daifmt);
4600
Takashi Iwaic9b3a402008-12-10 07:47:22 +01004601static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004602{
Mark Brown384c89e2008-12-03 17:34:03 +00004603#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004604 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
4605 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Fabio Estevam0837fc62012-02-17 19:40:38 -02004606 pr_warn("ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00004607 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00004608 }
Mark Brownc3c5a192010-09-15 18:15:14 +01004609
Mark Brown8a9dab12011-01-10 22:25:21 +00004610 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01004611 &codec_list_fops))
4612 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
4613
Mark Brown8a9dab12011-01-10 22:25:21 +00004614 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01004615 &dai_list_fops))
4616 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01004617
Mark Brown8a9dab12011-01-10 22:25:21 +00004618 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01004619 &platform_list_fops))
4620 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00004621#endif
4622
Mark Brownfb257892011-04-28 10:57:54 +01004623 snd_soc_util_init();
4624
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004625 return platform_driver_register(&soc_driver);
4626}
Mark Brown4abe8e12010-10-12 17:41:03 +01004627module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004628
Mark Brown7d8c16a2008-11-30 22:11:24 +00004629static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004630{
Mark Brownfb257892011-04-28 10:57:54 +01004631 snd_soc_util_exit();
4632
Mark Brown384c89e2008-12-03 17:34:03 +00004633#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00004634 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00004635#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02004636 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004637}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004638module_exit(snd_soc_exit);
4639
4640/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004641MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02004642MODULE_DESCRIPTION("ALSA SoC Core");
4643MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02004644MODULE_ALIAS("platform:soc-audio");