blob: 091d5f37ae647a74856a4b23f3e32f70adba2bcc [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>
Mark Brownf0e8ed82011-09-20 11:41:54 +010033#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Stephen Warrenbec4fa02011-12-12 15:55:34 -070035#include <linux/of.h>
Marek Vasut474828a2009-07-22 13:01:03 +020036#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020037#include <sound/core.h>
Mark Brown3028eb82010-12-05 12:22:46 +000038#include <sound/jack.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020039#include <sound/pcm.h>
40#include <sound/pcm_params.h>
41#include <sound/soc.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020042#include <sound/initval.h>
43
Mark Browna8b1d342010-11-03 18:05:58 -040044#define CREATE_TRACE_POINTS
45#include <trace/events/asoc.h>
46
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000047#define NAME_SIZE 32
48
Frank Mandarinodb2a4162006-10-06 18:31:09 +020049static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
50
Mark Brown384c89e2008-12-03 17:34:03 +000051#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +000052struct dentry *snd_soc_debugfs_root;
53EXPORT_SYMBOL_GPL(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +000054#endif
55
Mark Brownc5af3a22008-11-28 13:29:45 +000056static DEFINE_MUTEX(client_mutex);
57static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000058static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000059static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000060static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000061
Frank Mandarinodb2a4162006-10-06 18:31:09 +020062/*
63 * This is a timeout to do a DAPM powerdown after a stream is closed().
64 * It can be used to eliminate pops between different playback streams, e.g.
65 * between two audio tracks.
66 */
67static int pmdown_time = 5000;
68module_param(pmdown_time, int, 0);
69MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
70
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +000071/* returns the minimum number of bytes needed to represent
72 * a particular given value */
73static int min_bytes_needed(unsigned long val)
74{
75 int c = 0;
76 int i;
77
78 for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c)
79 if (val & (1UL << i))
80 break;
81 c = (sizeof val * 8) - c;
82 if (!c || (c % 8))
83 c = (c + 8) / 8;
84 else
85 c /= 8;
86 return c;
87}
88
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000089/* fill buf which is 'len' bytes with a formatted
90 * string of the form 'reg: value\n' */
91static int format_register_str(struct snd_soc_codec *codec,
92 unsigned int reg, char *buf, size_t len)
Mark Brown2624d5f2009-11-03 21:56:13 +000093{
Stephen Warren00b317a2011-04-01 14:50:44 -060094 int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
95 int regsize = codec->driver->reg_word_size * 2;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +000096 int ret;
97 char tmpbuf[len + 1];
98 char regbuf[regsize + 1];
99
100 /* since tmpbuf is allocated on the stack, warn the callers if they
101 * try to abuse this function */
102 WARN_ON(len > 63);
103
104 /* +2 for ': ' and + 1 for '\n' */
105 if (wordsize + regsize + 2 + 1 != len)
106 return -EINVAL;
107
Mark Brown25032c12011-08-01 13:52:48 +0900108 ret = snd_soc_read(codec, reg);
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000109 if (ret < 0) {
110 memset(regbuf, 'X', regsize);
111 regbuf[regsize] = '\0';
112 } else {
113 snprintf(regbuf, regsize + 1, "%.*x", regsize, ret);
114 }
115
116 /* prepare the buffer */
117 snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf);
118 /* copy it back to the caller without the '\0' */
119 memcpy(buf, tmpbuf, len);
120
121 return 0;
122}
123
124/* codec register dump */
125static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf,
126 size_t count, loff_t pos)
127{
128 int i, step = 1;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000129 int wordsize, regsize;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000130 int len;
131 size_t total = 0;
132 loff_t p = 0;
Dimitris Papastamos2bc9a812011-02-01 12:24:08 +0000133
Stephen Warren00b317a2011-04-01 14:50:44 -0600134 wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2;
135 regsize = codec->driver->reg_word_size * 2;
Mark Brown2624d5f2009-11-03 21:56:13 +0000136
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000137 len = wordsize + regsize + 2 + 1;
138
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000139 if (!codec->driver->reg_cache_size)
Mark Brown2624d5f2009-11-03 21:56:13 +0000140 return 0;
141
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000142 if (codec->driver->reg_cache_step)
143 step = codec->driver->reg_cache_step;
Mark Brown2624d5f2009-11-03 21:56:13 +0000144
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000145 for (i = 0; i < codec->driver->reg_cache_size; i += step) {
Lars-Peter Clausenb92d1502011-08-27 18:24:14 +0200146 if (!snd_soc_codec_readable_register(codec, i))
Mark Brown2624d5f2009-11-03 21:56:13 +0000147 continue;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000148 if (codec->driver->display_register) {
149 count += codec->driver->display_register(codec, buf + count,
Mark Brown2624d5f2009-11-03 21:56:13 +0000150 PAGE_SIZE - count, i);
Mark Brown5164d742010-07-14 16:14:33 +0100151 } else {
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000152 /* only support larger than PAGE_SIZE bytes debugfs
153 * entries for the default case */
154 if (p >= pos) {
155 if (total + len >= count - 1)
156 break;
157 format_register_str(codec, i, buf + total, len);
158 total += len;
159 }
160 p += len;
Mark Brown5164d742010-07-14 16:14:33 +0100161 }
Mark Brown2624d5f2009-11-03 21:56:13 +0000162 }
163
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000164 total = min(total, count - 1);
Mark Brown2624d5f2009-11-03 21:56:13 +0000165
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000166 return total;
Mark Brown2624d5f2009-11-03 21:56:13 +0000167}
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000168
Mark Brown2624d5f2009-11-03 21:56:13 +0000169static ssize_t codec_reg_show(struct device *dev,
170 struct device_attribute *attr, char *buf)
171{
Mark Brown36ae1a92012-01-06 17:12:45 -0800172 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000173
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000174 return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0);
Mark Brown2624d5f2009-11-03 21:56:13 +0000175}
176
177static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
178
Mark Browndbe21402010-02-12 11:37:24 +0000179static ssize_t pmdown_time_show(struct device *dev,
180 struct device_attribute *attr, char *buf)
181{
Mark Brown36ae1a92012-01-06 17:12:45 -0800182 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Browndbe21402010-02-12 11:37:24 +0000183
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000184 return sprintf(buf, "%ld\n", rtd->pmdown_time);
Mark Browndbe21402010-02-12 11:37:24 +0000185}
186
187static ssize_t pmdown_time_set(struct device *dev,
188 struct device_attribute *attr,
189 const char *buf, size_t count)
190{
Mark Brown36ae1a92012-01-06 17:12:45 -0800191 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Mark Brownc593b522010-10-27 20:11:17 -0700192 int ret;
Mark Browndbe21402010-02-12 11:37:24 +0000193
Mark Brownc593b522010-10-27 20:11:17 -0700194 ret = strict_strtol(buf, 10, &rtd->pmdown_time);
195 if (ret)
196 return ret;
Mark Browndbe21402010-02-12 11:37:24 +0000197
198 return count;
199}
200
201static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set);
202
Mark Brown2624d5f2009-11-03 21:56:13 +0000203#ifdef CONFIG_DEBUG_FS
204static int codec_reg_open_file(struct inode *inode, struct file *file)
205{
206 file->private_data = inode->i_private;
207 return 0;
208}
209
210static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000211 size_t count, loff_t *ppos)
Mark Brown2624d5f2009-11-03 21:56:13 +0000212{
213 ssize_t ret;
214 struct snd_soc_codec *codec = file->private_data;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000215 char *buf;
216
217 if (*ppos < 0 || !count)
218 return -EINVAL;
219
220 buf = kmalloc(count, GFP_KERNEL);
Mark Brown2624d5f2009-11-03 21:56:13 +0000221 if (!buf)
222 return -ENOMEM;
Dimitris Papastamos13fd1792011-02-02 13:58:58 +0000223
224 ret = soc_codec_reg_show(codec, buf, count, *ppos);
225 if (ret >= 0) {
226 if (copy_to_user(user_buf, buf, ret)) {
227 kfree(buf);
228 return -EFAULT;
229 }
230 *ppos += ret;
231 }
232
Mark Brown2624d5f2009-11-03 21:56:13 +0000233 kfree(buf);
234 return ret;
235}
236
237static ssize_t codec_reg_write_file(struct file *file,
238 const char __user *user_buf, size_t count, loff_t *ppos)
239{
240 char buf[32];
Stephen Boyd34e268d2011-05-12 16:50:10 -0700241 size_t buf_size;
Mark Brown2624d5f2009-11-03 21:56:13 +0000242 char *start = buf;
243 unsigned long reg, value;
Mark Brown2624d5f2009-11-03 21:56:13 +0000244 struct snd_soc_codec *codec = file->private_data;
245
246 buf_size = min(count, (sizeof(buf)-1));
247 if (copy_from_user(buf, user_buf, buf_size))
248 return -EFAULT;
249 buf[buf_size] = 0;
250
Mark Brown2624d5f2009-11-03 21:56:13 +0000251 while (*start == ' ')
252 start++;
253 reg = simple_strtoul(start, &start, 16);
Mark Brown2624d5f2009-11-03 21:56:13 +0000254 while (*start == ' ')
255 start++;
256 if (strict_strtoul(start, 16, &value))
257 return -EINVAL;
Mark Brown0d51a9c2011-01-06 16:04:57 +0000258
259 /* Userspace has been fiddling around behind the kernel's back */
260 add_taint(TAINT_USER);
261
Dimitris Papastamose4f078d2010-12-07 16:30:38 +0000262 snd_soc_write(codec, reg, value);
Mark Brown2624d5f2009-11-03 21:56:13 +0000263 return buf_size;
264}
265
266static const struct file_operations codec_reg_fops = {
267 .open = codec_reg_open_file,
268 .read = codec_reg_read_file,
269 .write = codec_reg_write_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200270 .llseek = default_llseek,
Mark Brown2624d5f2009-11-03 21:56:13 +0000271};
272
273static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
274{
Jarkko Nikulad6ce4cf2010-11-05 20:35:20 +0200275 struct dentry *debugfs_card_root = codec->card->debugfs_card_root;
276
277 codec->debugfs_codec_root = debugfs_create_dir(codec->name,
278 debugfs_card_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000279 if (!codec->debugfs_codec_root) {
280 printk(KERN_WARNING
281 "ASoC: Failed to create codec debugfs directory\n");
282 return;
283 }
284
Mark Brownaaee8ef2011-01-26 20:53:50 +0000285 debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root,
286 &codec->cache_sync);
287 debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root,
288 &codec->cache_only);
289
Mark Brown2624d5f2009-11-03 21:56:13 +0000290 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
291 codec->debugfs_codec_root,
292 codec, &codec_reg_fops);
293 if (!codec->debugfs_reg)
294 printk(KERN_WARNING
295 "ASoC: Failed to create codec register debugfs file\n");
296
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +0200297 snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root);
Mark Brown2624d5f2009-11-03 21:56:13 +0000298}
299
300static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
301{
302 debugfs_remove_recursive(codec->debugfs_codec_root);
303}
304
Mark Brownc3c5a192010-09-15 18:15:14 +0100305static ssize_t codec_list_read_file(struct file *file, char __user *user_buf,
306 size_t count, loff_t *ppos)
307{
308 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100309 ssize_t len, ret = 0;
Mark Brownc3c5a192010-09-15 18:15:14 +0100310 struct snd_soc_codec *codec;
311
312 if (!buf)
313 return -ENOMEM;
314
Mark Brown2b194f9d2010-10-13 10:52:16 +0100315 list_for_each_entry(codec, &codec_list, list) {
316 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
317 codec->name);
318 if (len >= 0)
319 ret += len;
320 if (ret > PAGE_SIZE) {
321 ret = PAGE_SIZE;
322 break;
323 }
324 }
Mark Brownc3c5a192010-09-15 18:15:14 +0100325
326 if (ret >= 0)
327 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
328
329 kfree(buf);
330
331 return ret;
332}
333
334static const struct file_operations codec_list_fops = {
335 .read = codec_list_read_file,
336 .llseek = default_llseek,/* read accesses f_pos */
337};
338
Mark Brownf3208782010-09-15 18:19:07 +0100339static ssize_t dai_list_read_file(struct file *file, char __user *user_buf,
340 size_t count, loff_t *ppos)
341{
342 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100343 ssize_t len, ret = 0;
Mark Brownf3208782010-09-15 18:19:07 +0100344 struct snd_soc_dai *dai;
345
346 if (!buf)
347 return -ENOMEM;
348
Mark Brown2b194f9d2010-10-13 10:52:16 +0100349 list_for_each_entry(dai, &dai_list, list) {
350 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name);
351 if (len >= 0)
352 ret += len;
353 if (ret > PAGE_SIZE) {
354 ret = PAGE_SIZE;
355 break;
356 }
357 }
Mark Brownf3208782010-09-15 18:19:07 +0100358
Mark Brown2b194f9d2010-10-13 10:52:16 +0100359 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brownf3208782010-09-15 18:19:07 +0100360
361 kfree(buf);
362
363 return ret;
364}
365
366static const struct file_operations dai_list_fops = {
367 .read = dai_list_read_file,
368 .llseek = default_llseek,/* read accesses f_pos */
369};
370
Mark Brown19c7ac22010-09-15 18:22:40 +0100371static ssize_t platform_list_read_file(struct file *file,
372 char __user *user_buf,
373 size_t count, loff_t *ppos)
374{
375 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
Mark Brown2b194f9d2010-10-13 10:52:16 +0100376 ssize_t len, ret = 0;
Mark Brown19c7ac22010-09-15 18:22:40 +0100377 struct snd_soc_platform *platform;
378
379 if (!buf)
380 return -ENOMEM;
381
Mark Brown2b194f9d2010-10-13 10:52:16 +0100382 list_for_each_entry(platform, &platform_list, list) {
383 len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n",
384 platform->name);
385 if (len >= 0)
386 ret += len;
387 if (ret > PAGE_SIZE) {
388 ret = PAGE_SIZE;
389 break;
390 }
391 }
Mark Brown19c7ac22010-09-15 18:22:40 +0100392
Mark Brown2b194f9d2010-10-13 10:52:16 +0100393 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
Mark Brown19c7ac22010-09-15 18:22:40 +0100394
395 kfree(buf);
396
397 return ret;
398}
399
400static const struct file_operations platform_list_fops = {
401 .read = platform_list_read_file,
402 .llseek = default_llseek,/* read accesses f_pos */
403};
404
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200405static void soc_init_card_debugfs(struct snd_soc_card *card)
406{
407 card->debugfs_card_root = debugfs_create_dir(card->name,
Mark Brown8a9dab12011-01-10 22:25:21 +0000408 snd_soc_debugfs_root);
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200409 if (!card->debugfs_card_root) {
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200410 dev_warn(card->dev,
Lothar Waßmann7c08be82011-12-09 14:16:29 +0100411 "ASoC: Failed to create card debugfs directory\n");
Jarkko Nikula3a45b862010-11-05 20:35:21 +0200412 return;
413 }
414
415 card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644,
416 card->debugfs_card_root,
417 &card->pop_time);
418 if (!card->debugfs_pop_time)
419 dev_warn(card->dev,
420 "Failed to create pop time debugfs file\n");
Jarkko Nikulaa6052152010-11-05 20:35:19 +0200421}
422
423static void soc_cleanup_card_debugfs(struct snd_soc_card *card)
424{
425 debugfs_remove_recursive(card->debugfs_card_root);
426}
427
Mark Brown2624d5f2009-11-03 21:56:13 +0000428#else
429
430static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
431{
432}
433
434static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
435{
436}
Axel Linb95fccb2010-11-09 17:06:44 +0800437
438static inline void soc_init_card_debugfs(struct snd_soc_card *card)
439{
440}
441
442static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card)
443{
444}
Mark Brown2624d5f2009-11-03 21:56:13 +0000445#endif
446
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200447#ifdef CONFIG_SND_SOC_AC97_BUS
448/* unregister ac97 codec */
449static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
450{
451 if (codec->ac97->dev.bus)
452 device_unregister(&codec->ac97->dev);
453 return 0;
454}
455
456/* stop no dev release warning */
457static void soc_ac97_device_release(struct device *dev){}
458
459/* register ac97 codec to bus */
460static int soc_ac97_dev_register(struct snd_soc_codec *codec)
461{
462 int err;
463
464 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100465 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200466 codec->ac97->dev.release = soc_ac97_device_release;
467
Kay Sieversbb072bf2008-11-02 03:50:35 +0100468 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000469 codec->card->snd_card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200470 err = device_register(&codec->ac97->dev);
471 if (err < 0) {
472 snd_printk(KERN_ERR "Can't register ac97 bus\n");
473 codec->ac97->dev.bus = NULL;
474 return err;
475 }
476 return 0;
477}
478#endif
479
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000480#ifdef CONFIG_PM_SLEEP
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200481/* powers down audio subsystem for suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000482int snd_soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200483{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000484 struct snd_soc_card *card = dev_get_drvdata(dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200485 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200486 int i;
487
Daniel Macke3509ff2009-06-03 17:44:49 +0200488 /* If the initialization of this soc device failed, there is no codec
489 * associated with it. Just bail out in this case.
490 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000491 if (list_empty(&card->codec_dev_list))
Daniel Macke3509ff2009-06-03 17:44:49 +0200492 return 0;
493
Andy Green6ed25972008-06-13 16:24:05 +0100494 /* Due to the resume being scheduled into a workqueue we could
495 * suspend before that's finished - wait for it to complete.
496 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000497 snd_power_lock(card->snd_card);
498 snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0);
499 snd_power_unlock(card->snd_card);
Andy Green6ed25972008-06-13 16:24:05 +0100500
501 /* we're going to block userspace touching us until resume completes */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000502 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot);
Andy Green6ed25972008-06-13 16:24:05 +0100503
Mark Browna00f90f2010-12-02 16:24:24 +0000504 /* mute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000505 for (i = 0; i < card->num_rtd; i++) {
506 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
507 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100508
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000509 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100510 continue;
511
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000512 if (drv->ops->digital_mute && dai->playback_active)
513 drv->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200514 }
515
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100516 /* suspend all pcms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000517 for (i = 0; i < card->num_rtd; i++) {
518 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100519 continue;
520
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000521 snd_pcm_suspend_all(card->rtd[i].pcm);
Mark Brown3efab7d2010-05-09 13:25:43 +0100522 }
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100523
Mark Brown87506542008-11-18 20:50:34 +0000524 if (card->suspend_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000525 card->suspend_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200526
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000527 for (i = 0; i < card->num_rtd; i++) {
528 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
529 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100530
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000531 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100532 continue;
533
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000534 if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control)
535 cpu_dai->driver->suspend(cpu_dai);
536 if (platform->driver->suspend && !platform->suspended) {
537 platform->driver->suspend(cpu_dai);
538 platform->suspended = 1;
Mark Brown1547aba2010-05-07 21:11:40 +0100539 }
540 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200541
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000542 /* close any waiting streams and save state */
543 for (i = 0; i < card->num_rtd; i++) {
Tejun Heo5b84ba22010-12-11 17:51:26 +0100544 flush_delayed_work_sync(&card->rtd[i].delayed_work);
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200545 card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000546 }
Mark Brown3efab7d2010-05-09 13:25:43 +0100547
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000548 for (i = 0; i < card->num_rtd; i++) {
549 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
550
551 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100552 continue;
553
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000554 if (driver->playback.stream_name != NULL)
555 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
556 SND_SOC_DAPM_STREAM_SUSPEND);
557
558 if (driver->capture.stream_name != NULL)
559 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
560 SND_SOC_DAPM_STREAM_SUSPEND);
561 }
562
563 /* suspend all CODECs */
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200564 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000565 /* If there are paths active then the CODEC will be held with
566 * bias _ON and should not be suspended. */
567 if (!codec->suspended && codec->driver->suspend) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200568 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000569 case SND_SOC_BIAS_STANDBY:
570 case SND_SOC_BIAS_OFF:
Lars-Peter Clausen84b315e2011-12-02 10:18:28 +0100571 codec->driver->suspend(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000572 codec->suspended = 1;
Mark Brown7be4ba22011-07-18 13:17:13 +0900573 codec->cache_sync = 1;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000574 break;
575 default:
576 dev_dbg(codec->dev, "CODEC is on over suspend\n");
577 break;
578 }
579 }
580 }
581
582 for (i = 0; i < card->num_rtd; i++) {
583 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
584
585 if (card->rtd[i].dai_link->ignore_suspend)
586 continue;
587
588 if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control)
589 cpu_dai->driver->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200590 }
591
Mark Brown87506542008-11-18 20:50:34 +0000592 if (card->suspend_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000593 card->suspend_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200594
595 return 0;
596}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000597EXPORT_SYMBOL_GPL(snd_soc_suspend);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200598
Andy Green6ed25972008-06-13 16:24:05 +0100599/* deferred resume work, so resume can complete before we finished
600 * setting our codec back up, which can be very slow on I2C
601 */
602static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200603{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000604 struct snd_soc_card *card =
605 container_of(work, struct snd_soc_card, deferred_resume_work);
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200606 struct snd_soc_codec *codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200607 int i;
608
Andy Green6ed25972008-06-13 16:24:05 +0100609 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
610 * so userspace apps are blocked from touching us
611 */
612
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000613 dev_dbg(card->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100614
Mark Brown99497882010-05-07 20:24:05 +0100615 /* Bring us up into D2 so that DAPM starts enabling things */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000616 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2);
Mark Brown99497882010-05-07 20:24:05 +0100617
Mark Brown87506542008-11-18 20:50:34 +0000618 if (card->resume_pre)
Mark Brown70b2ac12011-01-26 14:05:25 +0000619 card->resume_pre(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200620
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000621 /* resume AC97 DAIs */
622 for (i = 0; i < card->num_rtd; i++) {
623 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Mark Brown3efab7d2010-05-09 13:25:43 +0100624
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000625 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100626 continue;
627
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000628 if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control)
629 cpu_dai->driver->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200630 }
631
Jarkko Nikula2eea3922010-11-25 17:47:38 +0200632 list_for_each_entry(codec, &card->codec_dev_list, card_list) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000633 /* If the CODEC was idle over suspend then it will have been
634 * left with bias OFF or STANDBY and suspended so we must now
635 * resume. Otherwise the suspend was suppressed.
636 */
637 if (codec->driver->resume && codec->suspended) {
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200638 switch (codec->dapm.bias_level) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000639 case SND_SOC_BIAS_STANDBY:
640 case SND_SOC_BIAS_OFF:
641 codec->driver->resume(codec);
642 codec->suspended = 0;
643 break;
644 default:
645 dev_dbg(codec->dev, "CODEC was on over suspend\n");
646 break;
647 }
Mark Brown1547aba2010-05-07 21:11:40 +0100648 }
649 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200650
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000651 for (i = 0; i < card->num_rtd; i++) {
652 struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100653
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000654 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100655 continue;
656
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000657 if (driver->playback.stream_name != NULL)
658 snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200659 SND_SOC_DAPM_STREAM_RESUME);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000660
661 if (driver->capture.stream_name != NULL)
662 snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200663 SND_SOC_DAPM_STREAM_RESUME);
664 }
665
Mark Brown3ff3f642008-05-19 12:32:25 +0200666 /* unmute any active DACs */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000667 for (i = 0; i < card->num_rtd; i++) {
668 struct snd_soc_dai *dai = card->rtd[i].codec_dai;
669 struct snd_soc_dai_driver *drv = dai->driver;
Mark Brown3efab7d2010-05-09 13:25:43 +0100670
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000671 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100672 continue;
673
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000674 if (drv->ops->digital_mute && dai->playback_active)
675 drv->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200676 }
677
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000678 for (i = 0; i < card->num_rtd; i++) {
679 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
680 struct snd_soc_platform *platform = card->rtd[i].platform;
Mark Brown3efab7d2010-05-09 13:25:43 +0100681
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000682 if (card->rtd[i].dai_link->ignore_suspend)
Mark Brown3efab7d2010-05-09 13:25:43 +0100683 continue;
684
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000685 if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control)
686 cpu_dai->driver->resume(cpu_dai);
687 if (platform->driver->resume && platform->suspended) {
688 platform->driver->resume(cpu_dai);
689 platform->suspended = 0;
690 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200691 }
692
Mark Brown87506542008-11-18 20:50:34 +0000693 if (card->resume_post)
Mark Brown70b2ac12011-01-26 14:05:25 +0000694 card->resume_post(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200695
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000696 dev_dbg(card->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100697
698 /* userspace can access us now we are back as we were before */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000699 snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0);
Andy Green6ed25972008-06-13 16:24:05 +0100700}
701
702/* powers up audio subsystem after a suspend */
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000703int snd_soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100704{
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000705 struct snd_soc_card *card = dev_get_drvdata(dev);
Stephen Warren82e14e82011-05-25 14:06:41 -0600706 int i, ac97_control = 0;
Peter Ujfalusib9dd94a2010-02-22 13:27:13 +0200707
Eric Miao5ff1ddf2011-11-23 22:37:00 +0800708 /* If the initialization of this soc device failed, there is no codec
709 * associated with it. Just bail out in this case.
710 */
711 if (list_empty(&card->codec_dev_list))
712 return 0;
713
Mark Brown64ab9ba2009-03-31 11:27:03 +0100714 /* AC97 devices might have other drivers hanging off them so
715 * need to resume immediately. Other drivers don't have that
716 * problem and may take a substantial amount of time to resume
717 * due to I/O costs and anti-pop so handle them out of line.
718 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000719 for (i = 0; i < card->num_rtd; i++) {
720 struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai;
Stephen Warren82e14e82011-05-25 14:06:41 -0600721 ac97_control |= cpu_dai->driver->ac97_control;
722 }
723 if (ac97_control) {
724 dev_dbg(dev, "Resuming AC97 immediately\n");
725 soc_resume_deferred(&card->deferred_resume_work);
726 } else {
727 dev_dbg(dev, "Scheduling resume work\n");
728 if (!schedule_work(&card->deferred_resume_work))
729 dev_err(dev, "resume work item may be lost\n");
Mark Brown64ab9ba2009-03-31 11:27:03 +0100730 }
Andy Green6ed25972008-06-13 16:24:05 +0100731
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200732 return 0;
733}
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000734EXPORT_SYMBOL_GPL(snd_soc_resume);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200735#else
Mark Brown6f8ab4a2011-01-26 14:59:27 +0000736#define snd_soc_suspend NULL
737#define snd_soc_resume NULL
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200738#endif
739
Lars-Peter Clausen85e76522011-11-23 11:40:40 +0100740static const struct snd_soc_dai_ops null_dai_ops = {
Barry Song02a06d32009-10-16 18:13:38 +0800741};
742
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000743static int soc_bind_dai_link(struct snd_soc_card *card, int num)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200744{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000745 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
746 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
Mark Brownfe3e78e2009-11-03 22:13:13 +0000747 struct snd_soc_codec *codec;
Mark Brown435c5e22008-12-04 15:32:53 +0000748 struct snd_soc_platform *platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000749 struct snd_soc_dai *codec_dai, *cpu_dai;
Mark Brown848dd8b2011-04-27 18:16:32 +0100750 const char *platform_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200751
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000752 if (rtd->complete)
753 return 1;
754 dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num);
Mark Brown63084192008-12-02 15:08:03 +0000755
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000756 /* do we already have the CPU DAI for this link ? */
757 if (rtd->cpu_dai) {
758 goto find_codec;
759 }
760 /* no, then find CPU DAI from registered DAIs*/
761 list_for_each_entry(cpu_dai, &dai_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700762 if (dai_link->cpu_dai_of_node) {
763 if (cpu_dai->dev->of_node != dai_link->cpu_dai_of_node)
764 continue;
765 } else {
766 if (strcmp(cpu_dai->name, dai_link->cpu_dai_name))
767 continue;
768 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700769
770 rtd->cpu_dai = cpu_dai;
771 goto find_codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000772 }
773 dev_dbg(card->dev, "CPU DAI %s not registered\n",
774 dai_link->cpu_dai_name);
775
776find_codec:
777 /* do we already have the CODEC for this link ? */
778 if (rtd->codec) {
779 goto find_platform;
Mark Brownc5af3a22008-11-28 13:29:45 +0000780 }
781
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000782 /* no, then find CODEC from registered CODECs*/
783 list_for_each_entry(codec, &codec_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700784 if (dai_link->codec_of_node) {
785 if (codec->dev->of_node != dai_link->codec_of_node)
786 continue;
787 } else {
788 if (strcmp(codec->name, dai_link->codec_name))
789 continue;
790 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000791
Stephen Warren2610ab72011-12-07 13:58:27 -0700792 rtd->codec = codec;
793
794 /*
795 * CODEC found, so find CODEC DAI from registered DAIs from
796 * this CODEC
797 */
798 list_for_each_entry(codec_dai, &dai_list, list) {
799 if (codec->dev == codec_dai->dev &&
800 !strcmp(codec_dai->name,
801 dai_link->codec_dai_name)) {
802
803 rtd->codec_dai = codec_dai;
804 goto find_platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000805 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000806 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700807 dev_dbg(card->dev, "CODEC DAI %s not registered\n",
808 dai_link->codec_dai_name);
809
810 goto find_platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000811 }
812 dev_dbg(card->dev, "CODEC %s not registered\n",
813 dai_link->codec_name);
814
815find_platform:
Mark Brown848dd8b2011-04-27 18:16:32 +0100816 /* do we need a platform? */
817 if (rtd->platform)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000818 goto out;
Mark Brown848dd8b2011-04-27 18:16:32 +0100819
820 /* if there's no platform we match on the empty platform */
821 platform_name = dai_link->platform_name;
Stephen Warren5a504962011-12-21 10:40:59 -0700822 if (!platform_name && !dai_link->platform_of_node)
Mark Brown848dd8b2011-04-27 18:16:32 +0100823 platform_name = "snd-soc-dummy";
824
825 /* no, then find one from the set of registered platforms */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000826 list_for_each_entry(platform, &platform_list, list) {
Stephen Warren5a504962011-12-21 10:40:59 -0700827 if (dai_link->platform_of_node) {
828 if (platform->dev->of_node !=
829 dai_link->platform_of_node)
830 continue;
831 } else {
832 if (strcmp(platform->name, platform_name))
833 continue;
834 }
Stephen Warren2610ab72011-12-07 13:58:27 -0700835
836 rtd->platform = platform;
837 goto out;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000838 }
839
840 dev_dbg(card->dev, "platform %s not registered\n",
841 dai_link->platform_name);
842 return 0;
843
844out:
845 /* mark rtd as complete if we found all 4 of our client devices */
846 if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) {
847 rtd->complete = 1;
848 card->num_rtd++;
849 }
850 return 1;
851}
852
Jarkko Nikula589c3562010-12-06 16:27:07 +0200853static void soc_remove_codec(struct snd_soc_codec *codec)
854{
855 int err;
856
857 if (codec->driver->remove) {
858 err = codec->driver->remove(codec);
859 if (err < 0)
860 dev_err(codec->dev,
861 "asoc: failed to remove %s: %d\n",
862 codec->name, err);
863 }
864
865 /* Make sure all DAPM widgets are freed */
866 snd_soc_dapm_free(&codec->dapm);
867
868 soc_cleanup_codec_debugfs(codec);
869 codec->probed = 0;
870 list_del(&codec->card_list);
871 module_put(codec->dev->driver->owner);
872}
873
Liam Girdwood0168bf02011-06-07 16:08:05 +0100874static void soc_remove_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000875{
876 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
877 struct snd_soc_codec *codec = rtd->codec;
878 struct snd_soc_platform *platform = rtd->platform;
879 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
880 int err;
881
882 /* unregister the rtd device */
883 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -0800884 device_remove_file(rtd->dev, &dev_attr_pmdown_time);
885 device_remove_file(rtd->dev, &dev_attr_codec_reg);
886 device_unregister(rtd->dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000887 rtd->dev_registered = 0;
888 }
889
890 /* remove the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100891 if (codec_dai && codec_dai->probed &&
892 codec_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000893 if (codec_dai->driver->remove) {
894 err = codec_dai->driver->remove(codec_dai);
895 if (err < 0)
896 printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name);
897 }
898 codec_dai->probed = 0;
899 list_del(&codec_dai->card_list);
900 }
901
902 /* remove the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100903 if (platform && platform->probed &&
904 platform->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000905 if (platform->driver->remove) {
906 err = platform->driver->remove(platform);
907 if (err < 0)
908 printk(KERN_ERR "asoc: failed to remove %s\n", platform->name);
909 }
Liam Girdwood675c4962012-01-16 15:25:37 +0000910
911 /* Make sure all DAPM widgets are freed */
912 snd_soc_dapm_free(&platform->dapm);
913
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000914 platform->probed = 0;
915 list_del(&platform->card_list);
916 module_put(platform->dev->driver->owner);
917 }
918
919 /* remove the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100920 if (codec && codec->probed &&
921 codec->driver->remove_order == order)
Jarkko Nikula589c3562010-12-06 16:27:07 +0200922 soc_remove_codec(codec);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000923
924 /* remove the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +0100925 if (cpu_dai && cpu_dai->probed &&
926 cpu_dai->driver->remove_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000927 if (cpu_dai->driver->remove) {
928 err = cpu_dai->driver->remove(cpu_dai);
929 if (err < 0)
930 printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name);
931 }
932 cpu_dai->probed = 0;
933 list_del(&cpu_dai->card_list);
934 module_put(cpu_dai->dev->driver->owner);
935 }
936}
937
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900938static void soc_remove_dai_links(struct snd_soc_card *card)
939{
Liam Girdwood0168bf02011-06-07 16:08:05 +0100940 int dai, order;
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900941
Liam Girdwood0168bf02011-06-07 16:08:05 +0100942 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
943 order++) {
944 for (dai = 0; dai < card->num_rtd; dai++)
945 soc_remove_dai_link(card, dai, order);
946 }
Kuninori Morimoto0671fd82011-04-08 14:50:44 +0900947 card->num_rtd = 0;
948}
949
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200950static void soc_set_name_prefix(struct snd_soc_card *card,
951 struct snd_soc_codec *codec)
952{
953 int i;
954
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000955 if (card->codec_conf == NULL)
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200956 return;
957
Dimitris Papastamosff819b82010-12-02 14:53:03 +0000958 for (i = 0; i < card->num_configs; i++) {
959 struct snd_soc_codec_conf *map = &card->codec_conf[i];
Jarkko Nikulaead9b912010-11-13 20:40:44 +0200960 if (map->dev_name && !strcmp(codec->name, map->dev_name)) {
961 codec->name_prefix = map->name_prefix;
962 break;
963 }
964 }
965}
966
Jarkko Nikula589c3562010-12-06 16:27:07 +0200967static int soc_probe_codec(struct snd_soc_card *card,
968 struct snd_soc_codec *codec)
969{
970 int ret = 0;
Mark Brown89b95ac02011-03-07 16:38:44 +0000971 const struct snd_soc_codec_driver *driver = codec->driver;
Jarkko Nikula589c3562010-12-06 16:27:07 +0200972
973 codec->card = card;
974 codec->dapm.card = card;
975 soc_set_name_prefix(card, codec);
976
Jarkko Nikula70d29332011-01-27 16:24:22 +0200977 if (!try_module_get(codec->dev->driver->owner))
978 return -ENODEV;
979
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +0200980 soc_init_codec_debugfs(codec);
981
Lars-Peter Clausen77530152011-05-05 16:59:09 +0200982 if (driver->dapm_widgets)
983 snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets,
984 driver->num_dapm_widgets);
985
Mark Brown33c5f962011-08-22 18:40:30 +0100986 codec->dapm.idle_bias_off = driver->idle_bias_off;
987
Mark Brown89b95ac02011-03-07 16:38:44 +0000988 if (driver->probe) {
989 ret = driver->probe(codec);
Jarkko Nikula589c3562010-12-06 16:27:07 +0200990 if (ret < 0) {
991 dev_err(codec->dev,
992 "asoc: failed to probe CODEC %s: %d\n",
993 codec->name, ret);
Jarkko Nikula70d29332011-01-27 16:24:22 +0200994 goto err_probe;
Jarkko Nikula589c3562010-12-06 16:27:07 +0200995 }
996 }
997
Mark Brownb7af1da2011-04-07 19:18:44 +0900998 if (driver->controls)
999 snd_soc_add_controls(codec, driver->controls,
1000 driver->num_controls);
Mark Brown89b95ac02011-03-07 16:38:44 +00001001 if (driver->dapm_routes)
1002 snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes,
1003 driver->num_dapm_routes);
1004
Jarkko Nikula589c3562010-12-06 16:27:07 +02001005 /* mark codec as probed and add to card codec list */
1006 codec->probed = 1;
1007 list_add(&codec->card_list, &card->codec_dev_list);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001008 list_add(&codec->dapm.list, &card->dapm_list);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001009
Jarkko Nikula70d29332011-01-27 16:24:22 +02001010 return 0;
1011
1012err_probe:
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001013 soc_cleanup_codec_debugfs(codec);
Jarkko Nikula70d29332011-01-27 16:24:22 +02001014 module_put(codec->dev->driver->owner);
1015
Jarkko Nikula589c3562010-12-06 16:27:07 +02001016 return ret;
1017}
1018
Liam Girdwood956245e2011-07-01 16:54:08 +01001019static int soc_probe_platform(struct snd_soc_card *card,
1020 struct snd_soc_platform *platform)
1021{
1022 int ret = 0;
1023 const struct snd_soc_platform_driver *driver = platform->driver;
1024
1025 platform->card = card;
Liam Girdwoodb7950642011-07-04 22:10:52 +01001026 platform->dapm.card = card;
Liam Girdwood956245e2011-07-01 16:54:08 +01001027
1028 if (!try_module_get(platform->dev->driver->owner))
1029 return -ENODEV;
1030
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001031 if (driver->dapm_widgets)
1032 snd_soc_dapm_new_controls(&platform->dapm,
1033 driver->dapm_widgets, driver->num_dapm_widgets);
1034
Liam Girdwood956245e2011-07-01 16:54:08 +01001035 if (driver->probe) {
1036 ret = driver->probe(platform);
1037 if (ret < 0) {
1038 dev_err(platform->dev,
1039 "asoc: failed to probe platform %s: %d\n",
1040 platform->name, ret);
1041 goto err_probe;
1042 }
1043 }
1044
Liam Girdwoodcb2cf612011-07-04 22:10:53 +01001045 if (driver->controls)
1046 snd_soc_add_platform_controls(platform, driver->controls,
1047 driver->num_controls);
1048 if (driver->dapm_routes)
1049 snd_soc_dapm_add_routes(&platform->dapm, driver->dapm_routes,
1050 driver->num_dapm_routes);
1051
Liam Girdwood956245e2011-07-01 16:54:08 +01001052 /* mark platform as probed and add to card platform list */
1053 platform->probed = 1;
1054 list_add(&platform->card_list, &card->platform_dev_list);
Liam Girdwoodb7950642011-07-04 22:10:52 +01001055 list_add(&platform->dapm.list, &card->dapm_list);
Liam Girdwood956245e2011-07-01 16:54:08 +01001056
1057 return 0;
1058
1059err_probe:
1060 module_put(platform->dev->driver->owner);
1061
1062 return ret;
1063}
1064
Mark Brown36ae1a92012-01-06 17:12:45 -08001065static void rtd_release(struct device *dev)
1066{
1067 kfree(dev);
1068}
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001069
Jarkko Nikula589c3562010-12-06 16:27:07 +02001070static int soc_post_component_init(struct snd_soc_card *card,
1071 struct snd_soc_codec *codec,
1072 int num, int dailess)
1073{
1074 struct snd_soc_dai_link *dai_link = NULL;
1075 struct snd_soc_aux_dev *aux_dev = NULL;
1076 struct snd_soc_pcm_runtime *rtd;
1077 const char *temp, *name;
1078 int ret = 0;
1079
1080 if (!dailess) {
1081 dai_link = &card->dai_link[num];
1082 rtd = &card->rtd[num];
1083 name = dai_link->name;
1084 } else {
1085 aux_dev = &card->aux_dev[num];
1086 rtd = &card->rtd_aux[num];
1087 name = aux_dev->name;
1088 }
Janusz Krzysztofik0962bb22011-02-02 21:11:41 +01001089 rtd->card = card;
Jarkko Nikula589c3562010-12-06 16:27:07 +02001090
Mark Brown4b1cfcb2011-10-18 00:11:49 +01001091 /* Make sure all DAPM widgets are instantiated */
1092 snd_soc_dapm_new_widgets(&codec->dapm);
1093
Jarkko Nikula589c3562010-12-06 16:27:07 +02001094 /* machine controls, routes and widgets are not prefixed */
1095 temp = codec->name_prefix;
1096 codec->name_prefix = NULL;
1097
1098 /* do machine specific initialization */
1099 if (!dailess && dai_link->init)
1100 ret = dai_link->init(rtd);
1101 else if (dailess && aux_dev->init)
1102 ret = aux_dev->init(&codec->dapm);
1103 if (ret < 0) {
1104 dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret);
1105 return ret;
1106 }
1107 codec->name_prefix = temp;
1108
Jarkko Nikula589c3562010-12-06 16:27:07 +02001109 /* register the rtd device */
1110 rtd->codec = codec;
Mark Brown36ae1a92012-01-06 17:12:45 -08001111
1112 rtd->dev = kzalloc(sizeof(struct device), GFP_KERNEL);
1113 if (!rtd->dev)
1114 return -ENOMEM;
1115 device_initialize(rtd->dev);
1116 rtd->dev->parent = card->dev;
1117 rtd->dev->release = rtd_release;
1118 rtd->dev->init_name = name;
1119 dev_set_drvdata(rtd->dev, rtd);
Liam Girdwoodb8c0dab2011-06-09 17:04:39 +01001120 mutex_init(&rtd->pcm_mutex);
Mark Brown36ae1a92012-01-06 17:12:45 -08001121 ret = device_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001122 if (ret < 0) {
1123 dev_err(card->dev,
1124 "asoc: failed to register runtime device: %d\n", ret);
1125 return ret;
1126 }
1127 rtd->dev_registered = 1;
1128
1129 /* add DAPM sysfs entries for this codec */
Mark Brown36ae1a92012-01-06 17:12:45 -08001130 ret = snd_soc_dapm_sys_add(rtd->dev);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001131 if (ret < 0)
1132 dev_err(codec->dev,
1133 "asoc: failed to add codec dapm sysfs entries: %d\n",
1134 ret);
1135
1136 /* add codec sysfs entries */
Mark Brown36ae1a92012-01-06 17:12:45 -08001137 ret = device_create_file(rtd->dev, &dev_attr_codec_reg);
Jarkko Nikula589c3562010-12-06 16:27:07 +02001138 if (ret < 0)
1139 dev_err(codec->dev,
1140 "asoc: failed to add codec sysfs files: %d\n", ret);
1141
1142 return 0;
1143}
1144
Liam Girdwood0168bf02011-06-07 16:08:05 +01001145static int soc_probe_dai_link(struct snd_soc_card *card, int num, int order)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001146{
1147 struct snd_soc_dai_link *dai_link = &card->dai_link[num];
1148 struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
1149 struct snd_soc_codec *codec = rtd->codec;
1150 struct snd_soc_platform *platform = rtd->platform;
1151 struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai;
1152 int ret;
1153
Liam Girdwood0168bf02011-06-07 16:08:05 +01001154 dev_dbg(card->dev, "probe %s dai link %d late %d\n",
1155 card->name, num, order);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001156
1157 /* config components */
1158 codec_dai->codec = codec;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001159 cpu_dai->platform = platform;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001160 codec_dai->card = card;
1161 cpu_dai->card = card;
1162
1163 /* set default power off timeout */
1164 rtd->pmdown_time = pmdown_time;
1165
1166 /* probe the cpu_dai */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001167 if (!cpu_dai->probed &&
1168 cpu_dai->driver->probe_order == order) {
Liam Girdwood61b61e32011-05-24 13:57:43 +01001169 if (!try_module_get(cpu_dai->dev->driver->owner))
1170 return -ENODEV;
1171
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001172 if (cpu_dai->driver->probe) {
1173 ret = cpu_dai->driver->probe(cpu_dai);
1174 if (ret < 0) {
1175 printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n",
1176 cpu_dai->name);
Liam Girdwood61b61e32011-05-24 13:57:43 +01001177 module_put(cpu_dai->dev->driver->owner);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001178 return ret;
1179 }
1180 }
1181 cpu_dai->probed = 1;
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001182 /* mark cpu_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001183 list_add(&cpu_dai->card_list, &card->dai_dev_list);
1184 }
1185
1186 /* probe the CODEC */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001187 if (!codec->probed &&
1188 codec->driver->probe_order == order) {
Jarkko Nikula589c3562010-12-06 16:27:07 +02001189 ret = soc_probe_codec(card, codec);
1190 if (ret < 0)
1191 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001192 }
1193
1194 /* probe the platform */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001195 if (!platform->probed &&
1196 platform->driver->probe_order == order) {
Liam Girdwood956245e2011-07-01 16:54:08 +01001197 ret = soc_probe_platform(card, platform);
1198 if (ret < 0)
1199 return ret;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001200 }
1201
1202 /* probe the CODEC DAI */
Liam Girdwood0168bf02011-06-07 16:08:05 +01001203 if (!codec_dai->probed && codec_dai->driver->probe_order == order) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001204 if (codec_dai->driver->probe) {
1205 ret = codec_dai->driver->probe(codec_dai);
1206 if (ret < 0) {
1207 printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n",
1208 codec_dai->name);
1209 return ret;
Mark Brown6b05eda2008-12-08 19:26:48 +00001210 }
1211 }
1212
Wolfram Sang1c8371d2011-07-17 18:00:26 +02001213 /* mark codec_dai as probed and add to card dai list */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001214 codec_dai->probed = 1;
1215 list_add(&codec_dai->card_list, &card->dai_dev_list);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001216 }
1217
Liam Girdwood0168bf02011-06-07 16:08:05 +01001218 /* complete DAI probe during last probe */
1219 if (order != SND_SOC_COMP_ORDER_LAST)
1220 return 0;
1221
Jarkko Nikula589c3562010-12-06 16:27:07 +02001222 ret = soc_post_component_init(card, codec, num, 0);
1223 if (ret)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001224 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001225
Mark Brown36ae1a92012-01-06 17:12:45 -08001226 ret = device_create_file(rtd->dev, &dev_attr_pmdown_time);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001227 if (ret < 0)
1228 printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n");
1229
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001230 /* create the pcm */
1231 ret = soc_new_pcm(rtd, num);
1232 if (ret < 0) {
1233 printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name);
1234 return ret;
1235 }
1236
1237 /* add platform data for AC97 devices */
1238 if (rtd->codec_dai->driver->ac97_control)
1239 snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata);
1240
1241 return 0;
1242}
1243
1244#ifdef CONFIG_SND_SOC_AC97_BUS
1245static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd)
1246{
1247 int ret;
1248
1249 /* Only instantiate AC97 if not already done by the adaptor
1250 * for the generic AC97 subsystem.
1251 */
1252 if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) {
Mika Westerberg0562f782010-10-13 11:30:32 +03001253 /*
1254 * It is possible that the AC97 device is already registered to
1255 * the device subsystem. This happens when the device is created
1256 * via snd_ac97_mixer(). Currently only SoC codec that does so
1257 * is the generic AC97 glue but others migh emerge.
1258 *
1259 * In those cases we don't try to register the device again.
1260 */
1261 if (!rtd->codec->ac97_created)
1262 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001263
1264 ret = soc_ac97_dev_register(rtd->codec);
1265 if (ret < 0) {
1266 printk(KERN_ERR "asoc: AC97 device register failed\n");
1267 return ret;
1268 }
1269
1270 rtd->codec->ac97_registered = 1;
1271 }
1272 return 0;
1273}
1274
1275static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec)
1276{
1277 if (codec->ac97_registered) {
1278 soc_ac97_dev_unregister(codec);
1279 codec->ac97_registered = 0;
1280 }
1281}
1282#endif
1283
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001284static int soc_probe_aux_dev(struct snd_soc_card *card, int num)
1285{
1286 struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001287 struct snd_soc_codec *codec;
Jarkko Nikula676ad982010-12-03 09:18:22 +02001288 int ret = -ENODEV;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001289
1290 /* find CODEC from registered CODECs*/
1291 list_for_each_entry(codec, &codec_list, list) {
1292 if (!strcmp(codec->name, aux_dev->codec_name)) {
1293 if (codec->probed) {
1294 dev_err(codec->dev,
1295 "asoc: codec already probed");
1296 ret = -EBUSY;
1297 goto out;
1298 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001299 goto found;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001300 }
1301 }
Jarkko Nikula676ad982010-12-03 09:18:22 +02001302 /* codec not found */
1303 dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name);
1304 goto out;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001305
Jarkko Nikula676ad982010-12-03 09:18:22 +02001306found:
Jarkko Nikula589c3562010-12-06 16:27:07 +02001307 ret = soc_probe_codec(card, codec);
1308 if (ret < 0)
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001309 return ret;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001310
Jarkko Nikula589c3562010-12-06 16:27:07 +02001311 ret = soc_post_component_init(card, codec, num, 1);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001312
1313out:
1314 return ret;
1315}
1316
1317static void soc_remove_aux_dev(struct snd_soc_card *card, int num)
1318{
1319 struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
1320 struct snd_soc_codec *codec = rtd->codec;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001321
1322 /* unregister the rtd device */
1323 if (rtd->dev_registered) {
Mark Brown36ae1a92012-01-06 17:12:45 -08001324 device_remove_file(rtd->dev, &dev_attr_codec_reg);
1325 device_del(rtd->dev);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001326 rtd->dev_registered = 0;
1327 }
1328
Jarkko Nikula589c3562010-12-06 16:27:07 +02001329 if (codec && codec->probed)
1330 soc_remove_codec(codec);
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001331}
1332
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001333static int snd_soc_init_codec_cache(struct snd_soc_codec *codec,
1334 enum snd_soc_compress_type compress_type)
1335{
1336 int ret;
1337
1338 if (codec->cache_init)
1339 return 0;
1340
1341 /* override the compress_type if necessary */
1342 if (compress_type && codec->compress_type != compress_type)
1343 codec->compress_type = compress_type;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001344 ret = snd_soc_cache_init(codec);
1345 if (ret < 0) {
1346 dev_err(codec->dev, "Failed to set cache compression type: %d\n",
1347 ret);
1348 return ret;
1349 }
1350 codec->cache_init = 1;
1351 return 0;
1352}
1353
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001354static void snd_soc_instantiate_card(struct snd_soc_card *card)
1355{
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001356 struct snd_soc_codec *codec;
1357 struct snd_soc_codec_conf *codec_conf;
1358 enum snd_soc_compress_type compress_type;
Mark Brown75d9ac42011-09-27 16:41:01 +01001359 struct snd_soc_dai_link *dai_link;
Liam Girdwood0168bf02011-06-07 16:08:05 +01001360 int ret, i, order;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001361
1362 mutex_lock(&card->mutex);
1363
1364 if (card->instantiated) {
1365 mutex_unlock(&card->mutex);
1366 return;
1367 }
1368
1369 /* bind DAIs */
1370 for (i = 0; i < card->num_links; i++)
1371 soc_bind_dai_link(card, i);
1372
1373 /* bind completed ? */
1374 if (card->num_rtd != card->num_links) {
1375 mutex_unlock(&card->mutex);
1376 return;
1377 }
1378
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001379 /* initialize the register cache for each available codec */
1380 list_for_each_entry(codec, &codec_list, list) {
1381 if (codec->cache_init)
1382 continue;
Dimitris Papastamos861f2fa2011-01-11 11:43:51 +00001383 /* by default we don't override the compress_type */
1384 compress_type = 0;
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001385 /* check to see if we need to override the compress_type */
1386 for (i = 0; i < card->num_configs; ++i) {
1387 codec_conf = &card->codec_conf[i];
1388 if (!strcmp(codec->name, codec_conf->dev_name)) {
1389 compress_type = codec_conf->compress_type;
1390 if (compress_type && compress_type
1391 != codec->compress_type)
1392 break;
1393 }
1394 }
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00001395 ret = snd_soc_init_codec_cache(codec, compress_type);
1396 if (ret < 0) {
1397 mutex_unlock(&card->mutex);
1398 return;
1399 }
1400 }
1401
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001402 /* card bind complete so register a sound card */
1403 ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1,
1404 card->owner, 0, &card->snd_card);
1405 if (ret < 0) {
1406 printk(KERN_ERR "asoc: can't create sound card for card %s\n",
1407 card->name);
1408 mutex_unlock(&card->mutex);
1409 return;
1410 }
1411 card->snd_card->dev = card->dev;
1412
Mark Browne37a4972011-03-02 18:21:57 +00001413 card->dapm.bias_level = SND_SOC_BIAS_OFF;
1414 card->dapm.dev = card->dev;
1415 card->dapm.card = card;
1416 list_add(&card->dapm.list, &card->dapm_list);
1417
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02001418#ifdef CONFIG_DEBUG_FS
1419 snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root);
1420#endif
1421
Mark Brown88ee1c62011-02-02 10:43:26 +00001422#ifdef CONFIG_PM_SLEEP
Andy Green6ed25972008-06-13 16:24:05 +01001423 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +00001424 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +01001425#endif
Andy Green6ed25972008-06-13 16:24:05 +01001426
Mark Brown9a841eb2011-04-12 17:51:37 -07001427 if (card->dapm_widgets)
1428 snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets,
1429 card->num_dapm_widgets);
1430
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001431 /* initialise the sound card only once */
1432 if (card->probe) {
Mark Browne7361ec2011-01-26 14:17:20 +00001433 ret = card->probe(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001434 if (ret < 0)
1435 goto card_probe_error;
1436 }
1437
Liam Girdwood0168bf02011-06-07 16:08:05 +01001438 /* early DAI link probe */
1439 for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST;
1440 order++) {
1441 for (i = 0; i < card->num_links; i++) {
1442 ret = soc_probe_dai_link(card, i, order);
1443 if (ret < 0) {
1444 pr_err("asoc: failed to instantiate card %s: %d\n",
Mark Brown321de0d2010-09-21 15:09:37 +01001445 card->name, ret);
Liam Girdwood0168bf02011-06-07 16:08:05 +01001446 goto probe_dai_err;
1447 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001448 }
1449 }
1450
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001451 for (i = 0; i < card->num_aux_devs; i++) {
1452 ret = soc_probe_aux_dev(card, i);
1453 if (ret < 0) {
1454 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1455 card->name, ret);
1456 goto probe_aux_dev_err;
1457 }
1458 }
1459
Mark Brownb7af1da2011-04-07 19:18:44 +09001460 /* We should have a non-codec control add function but we don't */
1461 if (card->controls)
1462 snd_soc_add_controls(list_first_entry(&card->codec_dev_list,
1463 struct snd_soc_codec,
1464 card_list),
1465 card->controls,
1466 card->num_controls);
1467
Mark Brownb8ad29d2011-03-02 18:35:51 +00001468 if (card->dapm_routes)
1469 snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes,
1470 card->num_dapm_routes);
1471
Mark Brownb90d2f92011-10-10 13:38:06 +01001472 snd_soc_dapm_new_widgets(&card->dapm);
1473
Mark Brown75d9ac42011-09-27 16:41:01 +01001474 for (i = 0; i < card->num_links; i++) {
1475 dai_link = &card->dai_link[i];
1476
1477 if (dai_link->dai_fmt) {
1478 ret = snd_soc_dai_set_fmt(card->rtd[i].codec_dai,
1479 dai_link->dai_fmt);
1480 if (ret != 0)
1481 dev_warn(card->rtd[i].codec_dai->dev,
1482 "Failed to set DAI format: %d\n",
1483 ret);
1484
1485 ret = snd_soc_dai_set_fmt(card->rtd[i].cpu_dai,
1486 dai_link->dai_fmt);
1487 if (ret != 0)
1488 dev_warn(card->rtd[i].cpu_dai->dev,
1489 "Failed to set DAI format: %d\n",
1490 ret);
1491 }
1492 }
1493
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001494 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001495 "%s", card->name);
Liam Girdwood22de71b2011-05-12 16:14:04 +01001496 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1497 "%s", card->long_name ? card->long_name : card->name);
Mark Brownf0e8ed82011-09-20 11:41:54 +01001498 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1499 "%s", card->driver_name ? card->driver_name : card->name);
1500 for (i = 0; i < ARRAY_SIZE(card->snd_card->driver); i++) {
1501 switch (card->snd_card->driver[i]) {
1502 case '_':
1503 case '-':
1504 case '\0':
1505 break;
1506 default:
1507 if (!isalnum(card->snd_card->driver[i]))
1508 card->snd_card->driver[i] = '_';
1509 break;
1510 }
1511 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001512
Mark Brown28e9ad92011-03-02 18:36:34 +00001513 if (card->late_probe) {
1514 ret = card->late_probe(card);
1515 if (ret < 0) {
1516 dev_err(card->dev, "%s late_probe() failed: %d\n",
1517 card->name, ret);
1518 goto probe_aux_dev_err;
1519 }
1520 }
1521
Mark Brown2dc00212011-10-08 13:59:44 +01001522 snd_soc_dapm_new_widgets(&card->dapm);
1523
Stephen Warren16332812011-11-23 12:42:04 -07001524 if (card->fully_routed)
Mark Brownb05d8dc2011-11-27 19:38:34 +00001525 list_for_each_entry(codec, &card->codec_dev_list, card_list)
Stephen Warren16332812011-11-23 12:42:04 -07001526 snd_soc_dapm_auto_nc_codec_pins(codec);
1527
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001528 ret = snd_card_register(card->snd_card);
1529 if (ret < 0) {
1530 printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name);
Axel Lin6b3ed782010-12-07 16:12:29 +08001531 goto probe_aux_dev_err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001532 }
1533
1534#ifdef CONFIG_SND_SOC_AC97_BUS
1535 /* register any AC97 codecs */
1536 for (i = 0; i < card->num_rtd; i++) {
Axel Lin6b3ed782010-12-07 16:12:29 +08001537 ret = soc_register_ac97_dai_link(&card->rtd[i]);
1538 if (ret < 0) {
1539 printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name);
1540 while (--i >= 0)
Mark Brown7d8316d2010-12-13 17:03:27 +00001541 soc_unregister_ac97_dai_link(card->rtd[i].codec);
Axel Lin6b3ed782010-12-07 16:12:29 +08001542 goto probe_aux_dev_err;
Mark Brownfe3e78e2009-11-03 22:13:13 +00001543 }
Axel Lin6b3ed782010-12-07 16:12:29 +08001544 }
Mark Brownfe3e78e2009-11-03 22:13:13 +00001545#endif
1546
Mark Brown435c5e22008-12-04 15:32:53 +00001547 card->instantiated = 1;
Mark Brown4f4c0072011-10-07 14:29:19 +01001548 snd_soc_dapm_sync(&card->dapm);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001549 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001550 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001551
Jarkko Nikula2eea3922010-11-25 17:47:38 +02001552probe_aux_dev_err:
1553 for (i = 0; i < card->num_aux_devs; i++)
1554 soc_remove_aux_dev(card, i);
1555
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001556probe_dai_err:
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001557 soc_remove_dai_links(card);
Mark Brownfe3e78e2009-11-03 22:13:13 +00001558
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001559card_probe_error:
Mark Brown87506542008-11-18 20:50:34 +00001560 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001561 card->remove(card);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001562
1563 snd_card_free(card->snd_card);
1564
1565 mutex_unlock(&card->mutex);
Mark Brown435c5e22008-12-04 15:32:53 +00001566}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001567
Mark Brown435c5e22008-12-04 15:32:53 +00001568/*
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001569 * Attempt to initialise any uninitialised cards. Must be called with
Mark Brown435c5e22008-12-04 15:32:53 +00001570 * client_mutex.
1571 */
1572static void snd_soc_instantiate_cards(void)
1573{
1574 struct snd_soc_card *card;
1575 list_for_each_entry(card, &card_list, list)
1576 snd_soc_instantiate_card(card);
1577}
1578
1579/* probes a new socdev */
1580static int soc_probe(struct platform_device *pdev)
1581{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001582 struct snd_soc_card *card = platform_get_drvdata(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +00001583 int ret = 0;
Mark Brown435c5e22008-12-04 15:32:53 +00001584
Vinod Koul70a7ca32011-01-14 19:22:48 +05301585 /*
1586 * no card, so machine driver should be registering card
1587 * we should not be here in that case so ret error
1588 */
1589 if (!card)
1590 return -EINVAL;
1591
Mark Brown435c5e22008-12-04 15:32:53 +00001592 /* Bodge while we unpick instantiation */
1593 card->dev = &pdev->dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001594
Mark Brown435c5e22008-12-04 15:32:53 +00001595 ret = snd_soc_register_card(card);
1596 if (ret != 0) {
1597 dev_err(&pdev->dev, "Failed to register card\n");
1598 return ret;
1599 }
1600
1601 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001602}
1603
Vinod Koulb0e26482011-01-13 22:48:02 +05301604static int soc_cleanup_card_resources(struct snd_soc_card *card)
1605{
Vinod Koulb0e26482011-01-13 22:48:02 +05301606 int i;
1607
1608 /* make sure any delayed work runs */
1609 for (i = 0; i < card->num_rtd; i++) {
1610 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
1611 flush_delayed_work_sync(&rtd->delayed_work);
1612 }
1613
1614 /* remove auxiliary devices */
1615 for (i = 0; i < card->num_aux_devs; i++)
1616 soc_remove_aux_dev(card, i);
1617
1618 /* remove and free each DAI */
Kuninori Morimoto0671fd82011-04-08 14:50:44 +09001619 soc_remove_dai_links(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301620
1621 soc_cleanup_card_debugfs(card);
1622
1623 /* remove the card */
1624 if (card->remove)
Mark Browne7361ec2011-01-26 14:17:20 +00001625 card->remove(card);
Vinod Koulb0e26482011-01-13 22:48:02 +05301626
Lars-Peter Clausen0aaae522011-04-30 19:45:47 +02001627 snd_soc_dapm_free(&card->dapm);
1628
Vinod Koulb0e26482011-01-13 22:48:02 +05301629 kfree(card->rtd);
1630 snd_card_free(card->snd_card);
1631 return 0;
1632
1633}
1634
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001635/* removes a socdev */
1636static int soc_remove(struct platform_device *pdev)
1637{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001638 struct snd_soc_card *card = platform_get_drvdata(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001639
Mark Brownc5af3a22008-11-28 13:29:45 +00001640 snd_soc_unregister_card(card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001641 return 0;
1642}
1643
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001644int snd_soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001645{
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001646 struct snd_soc_card *card = dev_get_drvdata(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001647 int i;
Mark Brown51737472009-06-22 13:16:51 +01001648
1649 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001650 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001651
1652 /* Flush out pmdown_time work - we actually do want to run it
1653 * now, we're shutting down so no imminent restart. */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001654 for (i = 0; i < card->num_rtd; i++) {
1655 struct snd_soc_pcm_runtime *rtd = &card->rtd[i];
Tejun Heo5b84ba22010-12-11 17:51:26 +01001656 flush_delayed_work_sync(&rtd->delayed_work);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001657 }
Mark Brown51737472009-06-22 13:16:51 +01001658
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001659 snd_soc_dapm_shutdown(card);
Mark Brown416356f2009-06-30 19:05:15 +01001660
1661 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001662}
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001663EXPORT_SYMBOL_GPL(snd_soc_poweroff);
Mark Brown51737472009-06-22 13:16:51 +01001664
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001665const struct dev_pm_ops snd_soc_pm_ops = {
Mark Brown5aa44b12012-01-31 15:30:28 +00001666 SET_SYSTEM_SLEEP_PM_OPS(snd_soc_suspend, snd_soc_resume)
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001667 .poweroff = snd_soc_poweroff,
Mark Brown416356f2009-06-30 19:05:15 +01001668};
Stephen Warrendeb26072011-04-05 19:35:30 -06001669EXPORT_SYMBOL_GPL(snd_soc_pm_ops);
Mark Brown416356f2009-06-30 19:05:15 +01001670
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001671/* ASoC platform driver */
1672static struct platform_driver soc_driver = {
1673 .driver = {
1674 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001675 .owner = THIS_MODULE,
Mark Brown6f8ab4a2011-01-26 14:59:27 +00001676 .pm = &snd_soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001677 },
1678 .probe = soc_probe,
1679 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001680};
1681
Mark Brown096e49d2009-07-05 15:12:22 +01001682/**
1683 * snd_soc_codec_volatile_register: Report if a register is volatile.
1684 *
1685 * @codec: CODEC to query.
1686 * @reg: Register to query.
1687 *
1688 * Boolean function indiciating if a CODEC register is volatile.
1689 */
Mark Brown181e0552011-01-24 14:05:25 +00001690int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
1691 unsigned int reg)
Mark Brown096e49d2009-07-05 15:12:22 +01001692{
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00001693 if (codec->volatile_register)
1694 return codec->volatile_register(codec, reg);
Mark Brown096e49d2009-07-05 15:12:22 +01001695 else
1696 return 0;
1697}
1698EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1699
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001700/**
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001701 * snd_soc_codec_readable_register: Report if a register is readable.
1702 *
1703 * @codec: CODEC to query.
1704 * @reg: Register to query.
1705 *
1706 * Boolean function indicating if a CODEC register is readable.
1707 */
1708int snd_soc_codec_readable_register(struct snd_soc_codec *codec,
1709 unsigned int reg)
1710{
1711 if (codec->readable_register)
1712 return codec->readable_register(codec, reg);
1713 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001714 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001715}
1716EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register);
1717
1718/**
1719 * snd_soc_codec_writable_register: Report if a register is writable.
1720 *
1721 * @codec: CODEC to query.
1722 * @reg: Register to query.
1723 *
1724 * Boolean function indicating if a CODEC register is writable.
1725 */
1726int snd_soc_codec_writable_register(struct snd_soc_codec *codec,
1727 unsigned int reg)
1728{
1729 if (codec->writable_register)
1730 return codec->writable_register(codec, reg);
1731 else
Lars-Peter Clausen63fa0a22011-08-27 18:24:12 +02001732 return 1;
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001733}
1734EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register);
1735
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001736int snd_soc_platform_read(struct snd_soc_platform *platform,
1737 unsigned int reg)
1738{
1739 unsigned int ret;
1740
1741 if (!platform->driver->read) {
1742 dev_err(platform->dev, "platform has no read back\n");
1743 return -1;
1744 }
1745
1746 ret = platform->driver->read(platform, reg);
1747 dev_dbg(platform->dev, "read %x => %x\n", reg, ret);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001748 trace_snd_soc_preg_read(platform, reg, ret);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001749
1750 return ret;
1751}
1752EXPORT_SYMBOL_GPL(snd_soc_platform_read);
1753
1754int snd_soc_platform_write(struct snd_soc_platform *platform,
1755 unsigned int reg, unsigned int val)
1756{
1757 if (!platform->driver->write) {
1758 dev_err(platform->dev, "platform has no write back\n");
1759 return -1;
1760 }
1761
1762 dev_dbg(platform->dev, "write %x = %x\n", reg, val);
Liam Girdwooda82ce2a2011-07-04 22:10:50 +01001763 trace_snd_soc_preg_write(platform, reg, val);
Liam Girdwoodf1442bc2011-07-04 11:10:15 +01001764 return platform->driver->write(platform, reg, val);
1765}
1766EXPORT_SYMBOL_GPL(snd_soc_platform_write);
1767
Dimitris Papastamos239c9702011-03-24 13:45:18 +00001768/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001769 * snd_soc_new_ac97_codec - initailise AC97 device
1770 * @codec: audio codec
1771 * @ops: AC97 bus operations
1772 * @num: AC97 codec number
1773 *
1774 * Initialises AC97 codec resources for use by ad-hoc devices only.
1775 */
1776int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1777 struct snd_ac97_bus_ops *ops, int num)
1778{
1779 mutex_lock(&codec->mutex);
1780
1781 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1782 if (codec->ac97 == NULL) {
1783 mutex_unlock(&codec->mutex);
1784 return -ENOMEM;
1785 }
1786
1787 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1788 if (codec->ac97->bus == NULL) {
1789 kfree(codec->ac97);
1790 codec->ac97 = NULL;
1791 mutex_unlock(&codec->mutex);
1792 return -ENOMEM;
1793 }
1794
1795 codec->ac97->bus->ops = ops;
1796 codec->ac97->num = num;
Mika Westerberg0562f782010-10-13 11:30:32 +03001797
1798 /*
1799 * Mark the AC97 device to be created by us. This way we ensure that the
1800 * device will be registered with the device subsystem later on.
1801 */
1802 codec->ac97_created = 1;
1803
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001804 mutex_unlock(&codec->mutex);
1805 return 0;
1806}
1807EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1808
1809/**
1810 * snd_soc_free_ac97_codec - free AC97 codec device
1811 * @codec: audio codec
1812 *
1813 * Frees AC97 codec device resources.
1814 */
1815void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1816{
1817 mutex_lock(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001818#ifdef CONFIG_SND_SOC_AC97_BUS
1819 soc_unregister_ac97_dai_link(codec);
1820#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001821 kfree(codec->ac97->bus);
1822 kfree(codec->ac97);
1823 codec->ac97 = NULL;
Mika Westerberg0562f782010-10-13 11:30:32 +03001824 codec->ac97_created = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001825 mutex_unlock(&codec->mutex);
1826}
1827EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1828
Mark Brownc3753702010-11-01 15:41:57 -04001829unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg)
1830{
1831 unsigned int ret;
1832
Mark Brownc3acec22010-12-02 16:15:29 +00001833 ret = codec->read(codec, reg);
Mark Brownc3753702010-11-01 15:41:57 -04001834 dev_dbg(codec->dev, "read %x => %x\n", reg, ret);
Mark Browna8b1d342010-11-03 18:05:58 -04001835 trace_snd_soc_reg_read(codec, reg, ret);
Mark Brownc3753702010-11-01 15:41:57 -04001836
1837 return ret;
1838}
1839EXPORT_SYMBOL_GPL(snd_soc_read);
1840
1841unsigned int snd_soc_write(struct snd_soc_codec *codec,
1842 unsigned int reg, unsigned int val)
1843{
1844 dev_dbg(codec->dev, "write %x = %x\n", reg, val);
Mark Browna8b1d342010-11-03 18:05:58 -04001845 trace_snd_soc_reg_write(codec, reg, val);
Mark Brownc3acec22010-12-02 16:15:29 +00001846 return codec->write(codec, reg, val);
Mark Brownc3753702010-11-01 15:41:57 -04001847}
1848EXPORT_SYMBOL_GPL(snd_soc_write);
1849
Dimitris Papastamos5fb609d2011-03-22 10:37:03 +00001850unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec,
1851 unsigned int reg, const void *data, size_t len)
1852{
1853 return codec->bulk_write_raw(codec, reg, data, len);
1854}
1855EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw);
1856
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001857/**
1858 * snd_soc_update_bits - update codec register bits
1859 * @codec: audio codec
1860 * @reg: codec register
1861 * @mask: register mask
1862 * @value: new value
1863 *
1864 * Writes new register value.
1865 *
Timur Tabi180c3292011-01-10 15:58:13 -06001866 * Returns 1 for change, 0 for no change, or negative error code.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001867 */
1868int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001869 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001870{
Mark Brown8a713da2011-12-03 12:33:55 +00001871 bool change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001872 unsigned int old, new;
Timur Tabi180c3292011-01-10 15:58:13 -06001873 int ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001874
Mark Brown8a713da2011-12-03 12:33:55 +00001875 if (codec->using_regmap) {
1876 ret = regmap_update_bits_check(codec->control_data, reg,
1877 mask, value, &change);
1878 } else {
1879 ret = snd_soc_read(codec, reg);
Timur Tabi180c3292011-01-10 15:58:13 -06001880 if (ret < 0)
1881 return ret;
Mark Brown8a713da2011-12-03 12:33:55 +00001882
1883 old = ret;
1884 new = (old & ~mask) | (value & mask);
1885 change = old != new;
1886 if (change)
1887 ret = snd_soc_write(codec, reg, new);
Timur Tabi180c3292011-01-10 15:58:13 -06001888 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001889
Mark Brown8a713da2011-12-03 12:33:55 +00001890 if (ret < 0)
1891 return ret;
1892
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001893 return change;
1894}
1895EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1896
1897/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001898 * snd_soc_update_bits_locked - update codec register bits
1899 * @codec: audio codec
1900 * @reg: codec register
1901 * @mask: register mask
1902 * @value: new value
1903 *
1904 * Writes new register value, and takes the codec mutex.
1905 *
1906 * Returns 1 for change else 0.
1907 */
Mark Browndd1b3d52009-12-04 14:22:03 +00001908int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
1909 unsigned short reg, unsigned int mask,
1910 unsigned int value)
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001911{
1912 int change;
1913
1914 mutex_lock(&codec->mutex);
1915 change = snd_soc_update_bits(codec, reg, mask, value);
1916 mutex_unlock(&codec->mutex);
1917
1918 return change;
1919}
Mark Browndd1b3d52009-12-04 14:22:03 +00001920EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked);
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001921
1922/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001923 * snd_soc_test_bits - test register for change
1924 * @codec: audio codec
1925 * @reg: codec register
1926 * @mask: register mask
1927 * @value: new value
1928 *
1929 * Tests a register with a new value and checks if the new value is
1930 * different from the old value.
1931 *
1932 * Returns 1 for change else 0.
1933 */
1934int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001935 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001936{
1937 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001938 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001939
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001940 old = snd_soc_read(codec, reg);
1941 new = (old & ~mask) | value;
1942 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001943
1944 return change;
1945}
1946EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1947
1948/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001949 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1950 * @substream: the pcm substream
1951 * @hw: the hardware parameters
1952 *
1953 * Sets the substream runtime hardware parameters.
1954 */
1955int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1956 const struct snd_pcm_hardware *hw)
1957{
1958 struct snd_pcm_runtime *runtime = substream->runtime;
1959 runtime->hw.info = hw->info;
1960 runtime->hw.formats = hw->formats;
1961 runtime->hw.period_bytes_min = hw->period_bytes_min;
1962 runtime->hw.period_bytes_max = hw->period_bytes_max;
1963 runtime->hw.periods_min = hw->periods_min;
1964 runtime->hw.periods_max = hw->periods_max;
1965 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1966 runtime->hw.fifo_size = hw->fifo_size;
1967 return 0;
1968}
1969EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1970
1971/**
1972 * snd_soc_cnew - create new control
1973 * @_template: control template
1974 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001975 * @long_name: control long name
Mark Brownefb7ac32011-03-08 17:23:24 +00001976 * @prefix: control name prefix
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001977 *
1978 * Create a new mixer control from a template control.
1979 *
1980 * Returns 0 for success, else error.
1981 */
1982struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
Mark Brownefb7ac32011-03-08 17:23:24 +00001983 void *data, char *long_name,
1984 const char *prefix)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001985{
1986 struct snd_kcontrol_new template;
Mark Brownefb7ac32011-03-08 17:23:24 +00001987 struct snd_kcontrol *kcontrol;
1988 char *name = NULL;
1989 int name_len;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001990
1991 memcpy(&template, _template, sizeof(template));
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001992 template.index = 0;
1993
Mark Brownefb7ac32011-03-08 17:23:24 +00001994 if (!long_name)
1995 long_name = template.name;
1996
1997 if (prefix) {
1998 name_len = strlen(long_name) + strlen(prefix) + 2;
Axel Lin57cf9d42011-08-20 11:03:44 +08001999 name = kmalloc(name_len, GFP_KERNEL);
Mark Brownefb7ac32011-03-08 17:23:24 +00002000 if (!name)
2001 return NULL;
2002
2003 snprintf(name, name_len, "%s %s", prefix, long_name);
2004
2005 template.name = name;
2006 } else {
2007 template.name = long_name;
2008 }
2009
2010 kcontrol = snd_ctl_new1(&template, data);
2011
2012 kfree(name);
2013
2014 return kcontrol;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002015}
2016EXPORT_SYMBOL_GPL(snd_soc_cnew);
2017
2018/**
Ian Molton3e8e1952009-01-09 00:23:21 +00002019 * snd_soc_add_controls - add an array of controls to a codec.
2020 * Convienience function to add a list of controls. Many codecs were
2021 * duplicating this code.
2022 *
2023 * @codec: codec to add controls to
2024 * @controls: array of controls to add
2025 * @num_controls: number of elements in the array
2026 *
2027 * Return 0 for success, else error.
2028 */
2029int snd_soc_add_controls(struct snd_soc_codec *codec,
2030 const struct snd_kcontrol_new *controls, int num_controls)
2031{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002032 struct snd_card *card = codec->card->snd_card;
Ian Molton3e8e1952009-01-09 00:23:21 +00002033 int err, i;
2034
2035 for (i = 0; i < num_controls; i++) {
2036 const struct snd_kcontrol_new *control = &controls[i];
Mark Brownefb7ac32011-03-08 17:23:24 +00002037 err = snd_ctl_add(card, snd_soc_cnew(control, codec,
2038 control->name,
2039 codec->name_prefix));
Ian Molton3e8e1952009-01-09 00:23:21 +00002040 if (err < 0) {
Mark Brown082100d2010-09-20 19:03:28 +01002041 dev_err(codec->dev, "%s: Failed to add %s: %d\n",
Mark Brownefb7ac32011-03-08 17:23:24 +00002042 codec->name, control->name, err);
Ian Molton3e8e1952009-01-09 00:23:21 +00002043 return err;
2044 }
2045 }
2046
2047 return 0;
2048}
2049EXPORT_SYMBOL_GPL(snd_soc_add_controls);
2050
2051/**
Liam Girdwooda491a5c2011-07-04 22:10:51 +01002052 * snd_soc_add_platform_controls - add an array of controls to a platform.
2053 * Convienience function to add a list of controls.
2054 *
2055 * @platform: platform to add controls to
2056 * @controls: array of controls to add
2057 * @num_controls: number of elements in the array
2058 *
2059 * Return 0 for success, else error.
2060 */
2061int snd_soc_add_platform_controls(struct snd_soc_platform *platform,
2062 const struct snd_kcontrol_new *controls, int num_controls)
2063{
2064 struct snd_card *card = platform->card->snd_card;
2065 int err, i;
2066
2067 for (i = 0; i < num_controls; i++) {
2068 const struct snd_kcontrol_new *control = &controls[i];
2069 err = snd_ctl_add(card, snd_soc_cnew(control, platform,
2070 control->name, NULL));
2071 if (err < 0) {
2072 dev_err(platform->dev, "Failed to add %s %d\n",control->name, err);
2073 return err;
2074 }
2075 }
2076
2077 return 0;
2078}
2079EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls);
2080
2081/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002082 * snd_soc_info_enum_double - enumerated double mixer info callback
2083 * @kcontrol: mixer control
2084 * @uinfo: control element information
2085 *
2086 * Callback to provide information about a double enumerated
2087 * mixer control.
2088 *
2089 * Returns 0 for success.
2090 */
2091int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
2092 struct snd_ctl_elem_info *uinfo)
2093{
2094 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2095
2096 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2097 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002098 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002099
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002100 if (uinfo->value.enumerated.item > e->max - 1)
2101 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002102 strcpy(uinfo->value.enumerated.name,
2103 e->texts[uinfo->value.enumerated.item]);
2104 return 0;
2105}
2106EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
2107
2108/**
2109 * snd_soc_get_enum_double - enumerated double mixer get callback
2110 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002111 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002112 *
2113 * Callback to get the value of a double enumerated mixer.
2114 *
2115 * Returns 0 for success.
2116 */
2117int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
2118 struct snd_ctl_elem_value *ucontrol)
2119{
2120 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2121 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002122 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002123
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002124 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002125 ;
2126 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02002127 ucontrol->value.enumerated.item[0]
2128 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002129 if (e->shift_l != e->shift_r)
2130 ucontrol->value.enumerated.item[1] =
2131 (val >> e->shift_r) & (bitmask - 1);
2132
2133 return 0;
2134}
2135EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
2136
2137/**
2138 * snd_soc_put_enum_double - enumerated double mixer put callback
2139 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002140 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002141 *
2142 * Callback to set the value of a double enumerated mixer.
2143 *
2144 * Returns 0 for success.
2145 */
2146int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
2147 struct snd_ctl_elem_value *ucontrol)
2148{
2149 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2150 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002151 unsigned int val;
2152 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002153
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002154 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002155 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002156 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002157 return -EINVAL;
2158 val = ucontrol->value.enumerated.item[0] << e->shift_l;
2159 mask = (bitmask - 1) << e->shift_l;
2160 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002161 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002162 return -EINVAL;
2163 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
2164 mask |= (bitmask - 1) << e->shift_r;
2165 }
2166
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002167 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002168}
2169EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
2170
2171/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002172 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2173 * @kcontrol: mixer control
2174 * @ucontrol: control element information
2175 *
2176 * Callback to get the value of a double semi enumerated mixer.
2177 *
2178 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2179 * used for handling bitfield coded enumeration for example.
2180 *
2181 * Returns 0 for success.
2182 */
2183int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
2184 struct snd_ctl_elem_value *ucontrol)
2185{
2186 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002187 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002188 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002189
2190 reg_val = snd_soc_read(codec, e->reg);
2191 val = (reg_val >> e->shift_l) & e->mask;
2192 for (mux = 0; mux < e->max; mux++) {
2193 if (val == e->values[mux])
2194 break;
2195 }
2196 ucontrol->value.enumerated.item[0] = mux;
2197 if (e->shift_l != e->shift_r) {
2198 val = (reg_val >> e->shift_r) & e->mask;
2199 for (mux = 0; mux < e->max; mux++) {
2200 if (val == e->values[mux])
2201 break;
2202 }
2203 ucontrol->value.enumerated.item[1] = mux;
2204 }
2205
2206 return 0;
2207}
2208EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
2209
2210/**
2211 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2212 * @kcontrol: mixer control
2213 * @ucontrol: control element information
2214 *
2215 * Callback to set the value of a double semi enumerated mixer.
2216 *
2217 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2218 * used for handling bitfield coded enumeration for example.
2219 *
2220 * Returns 0 for success.
2221 */
2222int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
2223 struct snd_ctl_elem_value *ucontrol)
2224{
2225 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02002226 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002227 unsigned int val;
2228 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002229
2230 if (ucontrol->value.enumerated.item[0] > e->max - 1)
2231 return -EINVAL;
2232 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
2233 mask = e->mask << e->shift_l;
2234 if (e->shift_l != e->shift_r) {
2235 if (ucontrol->value.enumerated.item[1] > e->max - 1)
2236 return -EINVAL;
2237 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
2238 mask |= e->mask << e->shift_r;
2239 }
2240
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002241 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02002242}
2243EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
2244
2245/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002246 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2247 * @kcontrol: mixer control
2248 * @uinfo: control element information
2249 *
2250 * Callback to provide information about an external enumerated
2251 * single mixer.
2252 *
2253 * Returns 0 for success.
2254 */
2255int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
2256 struct snd_ctl_elem_info *uinfo)
2257{
2258 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2259
2260 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2261 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002262 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002263
Jon Smirlf8ba0b72008-07-29 11:42:27 +01002264 if (uinfo->value.enumerated.item > e->max - 1)
2265 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002266 strcpy(uinfo->value.enumerated.name,
2267 e->texts[uinfo->value.enumerated.item]);
2268 return 0;
2269}
2270EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
2271
2272/**
2273 * snd_soc_info_volsw_ext - external single mixer info callback
2274 * @kcontrol: mixer control
2275 * @uinfo: control element information
2276 *
2277 * Callback to provide information about a single external mixer control.
2278 *
2279 * Returns 0 for success.
2280 */
2281int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
2282 struct snd_ctl_elem_info *uinfo)
2283{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002284 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002285
Mark Brownfd5dfad2009-04-15 21:37:46 +01002286 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002287 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2288 else
2289 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2290
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002291 uinfo->count = 1;
2292 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002293 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002294 return 0;
2295}
2296EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
2297
2298/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002299 * snd_soc_info_volsw - single mixer info callback
2300 * @kcontrol: mixer control
2301 * @uinfo: control element information
2302 *
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002303 * Callback to provide information about a single mixer control, or a double
2304 * mixer control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002305 *
2306 * Returns 0 for success.
2307 */
2308int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
2309 struct snd_ctl_elem_info *uinfo)
2310{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002311 struct soc_mixer_control *mc =
2312 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002313 int platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002314
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002315 if (!mc->platform_max)
2316 mc->platform_max = mc->max;
2317 platform_max = mc->platform_max;
2318
2319 if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002320 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2321 else
2322 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2323
Peter Ujfalusie8f5a102011-10-05 10:29:23 +03002324 uinfo->count = snd_soc_volsw_is_stereo(mc) ? 2 : 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002325 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002326 uinfo->value.integer.max = platform_max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002327 return 0;
2328}
2329EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
2330
2331/**
2332 * snd_soc_get_volsw - single mixer get callback
2333 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002334 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002335 *
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002336 * Callback to get the value of a single mixer control, or a double mixer
2337 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002338 *
2339 * Returns 0 for success.
2340 */
2341int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
2342 struct snd_ctl_elem_value *ucontrol)
2343{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002344 struct soc_mixer_control *mc =
2345 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002346 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002347 unsigned int reg = mc->reg;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002348 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002349 unsigned int shift = mc->shift;
2350 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002351 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002352 unsigned int mask = (1 << fls(max)) - 1;
2353 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002354
2355 ucontrol->value.integer.value[0] =
2356 (snd_soc_read(codec, reg) >> shift) & mask;
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002357 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002358 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002359 max - ucontrol->value.integer.value[0];
Peter Ujfalusif7915d92011-10-05 10:29:24 +03002360
2361 if (snd_soc_volsw_is_stereo(mc)) {
2362 if (reg == reg2)
2363 ucontrol->value.integer.value[1] =
2364 (snd_soc_read(codec, reg) >> rshift) & mask;
2365 else
2366 ucontrol->value.integer.value[1] =
2367 (snd_soc_read(codec, reg2) >> shift) & mask;
2368 if (invert)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002369 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002370 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002371 }
2372
2373 return 0;
2374}
2375EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
2376
2377/**
2378 * snd_soc_put_volsw - single mixer put callback
2379 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002380 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002381 *
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002382 * Callback to set the value of a single mixer control, or a double mixer
2383 * control that spans 2 registers.
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002384 *
2385 * Returns 0 for success.
2386 */
2387int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
2388 struct snd_ctl_elem_value *ucontrol)
2389{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002390 struct soc_mixer_control *mc =
2391 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002392 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002393 unsigned int reg = mc->reg;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002394 unsigned int reg2 = mc->rreg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002395 unsigned int shift = mc->shift;
2396 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002397 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002398 unsigned int mask = (1 << fls(max)) - 1;
2399 unsigned int invert = mc->invert;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002400 int err;
2401 bool type_2r = 0;
2402 unsigned int val2 = 0;
2403 unsigned int val, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002404
2405 val = (ucontrol->value.integer.value[0] & mask);
2406 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002407 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002408 val_mask = mask << shift;
2409 val = val << shift;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002410 if (snd_soc_volsw_is_stereo(mc)) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002411 val2 = (ucontrol->value.integer.value[1] & mask);
2412 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002413 val2 = max - val2;
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002414 if (reg == reg2) {
2415 val_mask |= mask << rshift;
2416 val |= val2 << rshift;
2417 } else {
2418 val2 = val2 << shift;
2419 type_2r = 1;
2420 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002421 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002422 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002423 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002424 return err;
2425
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002426 if (type_2r)
2427 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
2428
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002429 return err;
2430}
Peter Ujfalusi974815b2011-10-05 10:29:25 +03002431EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002432
Mark Browne13ac2e2008-05-28 17:58:05 +01002433/**
2434 * snd_soc_info_volsw_s8 - signed mixer info callback
2435 * @kcontrol: mixer control
2436 * @uinfo: control element information
2437 *
2438 * Callback to provide information about a signed mixer control.
2439 *
2440 * Returns 0 for success.
2441 */
2442int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2443 struct snd_ctl_elem_info *uinfo)
2444{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002445 struct soc_mixer_control *mc =
2446 (struct soc_mixer_control *)kcontrol->private_value;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002447 int platform_max;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002448 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002449
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002450 if (!mc->platform_max)
2451 mc->platform_max = mc->max;
2452 platform_max = mc->platform_max;
2453
Mark Browne13ac2e2008-05-28 17:58:05 +01002454 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2455 uinfo->count = 2;
2456 uinfo->value.integer.min = 0;
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002457 uinfo->value.integer.max = platform_max - min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002458 return 0;
2459}
2460EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2461
2462/**
2463 * snd_soc_get_volsw_s8 - signed mixer get callback
2464 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002465 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002466 *
2467 * Callback to get the value of a signed mixer control.
2468 *
2469 * Returns 0 for success.
2470 */
2471int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2472 struct snd_ctl_elem_value *ucontrol)
2473{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002474 struct soc_mixer_control *mc =
2475 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002476 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002477 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002478 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002479 int val = snd_soc_read(codec, reg);
2480
2481 ucontrol->value.integer.value[0] =
2482 ((signed char)(val & 0xff))-min;
2483 ucontrol->value.integer.value[1] =
2484 ((signed char)((val >> 8) & 0xff))-min;
2485 return 0;
2486}
2487EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2488
2489/**
2490 * snd_soc_put_volsw_sgn - signed mixer put callback
2491 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002492 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002493 *
2494 * Callback to set the value of a signed mixer control.
2495 *
2496 * Returns 0 for success.
2497 */
2498int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2499 struct snd_ctl_elem_value *ucontrol)
2500{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002501 struct soc_mixer_control *mc =
2502 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002503 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002504 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002505 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002506 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002507
2508 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2509 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2510
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002511 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002512}
2513EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2514
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002515/**
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002516 * snd_soc_limit_volume - Set new limit to an existing volume control.
2517 *
2518 * @codec: where to look for the control
2519 * @name: Name of the control
2520 * @max: new maximum limit
2521 *
2522 * Return 0 for success, else error.
2523 */
2524int snd_soc_limit_volume(struct snd_soc_codec *codec,
2525 const char *name, int max)
2526{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002527 struct snd_card *card = codec->card->snd_card;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002528 struct snd_kcontrol *kctl;
2529 struct soc_mixer_control *mc;
2530 int found = 0;
2531 int ret = -EINVAL;
2532
2533 /* Sanity check for name and max */
2534 if (unlikely(!name || max <= 0))
2535 return -EINVAL;
2536
2537 list_for_each_entry(kctl, &card->controls, list) {
2538 if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
2539 found = 1;
2540 break;
2541 }
2542 }
2543 if (found) {
2544 mc = (struct soc_mixer_control *)kctl->private_value;
2545 if (max <= mc->max) {
Peter Ujfalusid11bb4a2010-05-10 14:39:24 +03002546 mc->platform_max = max;
Peter Ujfalusi637d3842010-05-07 14:05:49 +03002547 ret = 0;
2548 }
2549 }
2550 return ret;
2551}
2552EXPORT_SYMBOL_GPL(snd_soc_limit_volume);
2553
2554/**
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002555 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2556 * mixer info callback
2557 * @kcontrol: mixer control
2558 * @uinfo: control element information
2559 *
2560 * Returns 0 for success.
2561 */
2562int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2563 struct snd_ctl_elem_info *uinfo)
2564{
2565 struct soc_mixer_control *mc =
2566 (struct soc_mixer_control *)kcontrol->private_value;
2567 int max = mc->max;
2568 int min = mc->min;
2569
2570 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2571 uinfo->count = 2;
2572 uinfo->value.integer.min = 0;
2573 uinfo->value.integer.max = max-min;
2574
2575 return 0;
2576}
2577EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx);
2578
2579/**
2580 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
2581 * mixer get callback
2582 * @kcontrol: mixer control
2583 * @uinfo: control element information
2584 *
2585 * Returns 0 for success.
2586 */
2587int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2588 struct snd_ctl_elem_value *ucontrol)
2589{
2590 struct soc_mixer_control *mc =
2591 (struct soc_mixer_control *)kcontrol->private_value;
2592 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2593 unsigned int mask = (1<<mc->shift)-1;
2594 int min = mc->min;
2595 int val = snd_soc_read(codec, mc->reg) & mask;
2596 int valr = snd_soc_read(codec, mc->rreg) & mask;
2597
Stuart Longland20630c72010-06-18 12:56:10 +10002598 ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask;
2599 ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002600 return 0;
2601}
2602EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx);
2603
2604/**
2605 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
2606 * mixer put callback
2607 * @kcontrol: mixer control
2608 * @uinfo: control element information
2609 *
2610 * Returns 0 for success.
2611 */
2612int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol,
2613 struct snd_ctl_elem_value *ucontrol)
2614{
2615 struct soc_mixer_control *mc =
2616 (struct soc_mixer_control *)kcontrol->private_value;
2617 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
2618 unsigned int mask = (1<<mc->shift)-1;
2619 int min = mc->min;
2620 int ret;
2621 unsigned int val, valr, oval, ovalr;
2622
2623 val = ((ucontrol->value.integer.value[0]+min) & 0xff);
2624 val &= mask;
2625 valr = ((ucontrol->value.integer.value[1]+min) & 0xff);
2626 valr &= mask;
2627
2628 oval = snd_soc_read(codec, mc->reg) & mask;
2629 ovalr = snd_soc_read(codec, mc->rreg) & mask;
2630
2631 ret = 0;
2632 if (oval != val) {
2633 ret = snd_soc_write(codec, mc->reg, val);
2634 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002635 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002636 }
2637 if (ovalr != valr) {
2638 ret = snd_soc_write(codec, mc->rreg, valr);
2639 if (ret < 0)
Mark Brownf1df5ae2010-06-15 15:14:31 +01002640 return ret;
apatard@mandriva.comb6f4bb32010-05-15 17:30:01 +02002641 }
2642
2643 return 0;
2644}
2645EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx);
2646
2647/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002648 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2649 * @dai: DAI
2650 * @clk_id: DAI specific clock ID
2651 * @freq: new clock frequency in Hz
2652 * @dir: new clock direction - input/output.
2653 *
2654 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2655 */
2656int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2657 unsigned int freq, int dir)
2658{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002659 if (dai->driver && dai->driver->ops->set_sysclk)
2660 return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002661 else if (dai->codec && dai->codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002662 return dai->codec->driver->set_sysclk(dai->codec, clk_id, 0,
Mark Brownec4ee522011-03-07 20:58:11 +00002663 freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002664 else
2665 return -EINVAL;
2666}
2667EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2668
2669/**
Mark Brownec4ee522011-03-07 20:58:11 +00002670 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2671 * @codec: CODEC
2672 * @clk_id: DAI specific clock ID
Mark Brownda1c6ea2011-08-24 20:09:01 +01002673 * @source: Source for the clock
Mark Brownec4ee522011-03-07 20:58:11 +00002674 * @freq: new clock frequency in Hz
2675 * @dir: new clock direction - input/output.
2676 *
2677 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2678 */
2679int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id,
Mark Brownda1c6ea2011-08-24 20:09:01 +01002680 int source, unsigned int freq, int dir)
Mark Brownec4ee522011-03-07 20:58:11 +00002681{
2682 if (codec->driver->set_sysclk)
Mark Brownda1c6ea2011-08-24 20:09:01 +01002683 return codec->driver->set_sysclk(codec, clk_id, source,
2684 freq, dir);
Mark Brownec4ee522011-03-07 20:58:11 +00002685 else
2686 return -EINVAL;
2687}
2688EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk);
2689
2690/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002691 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2692 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002693 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002694 * @div: new clock divisor.
2695 *
2696 * Configures the clock dividers. This is used to derive the best DAI bit and
2697 * frame clocks from the system or master clock. It's best to set the DAI bit
2698 * and frame clocks as low as possible to save system power.
2699 */
2700int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2701 int div_id, int div)
2702{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002703 if (dai->driver && dai->driver->ops->set_clkdiv)
2704 return dai->driver->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002705 else
2706 return -EINVAL;
2707}
2708EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2709
2710/**
2711 * snd_soc_dai_set_pll - configure DAI PLL.
2712 * @dai: DAI
2713 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002714 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002715 * @freq_in: PLL input clock frequency in Hz
2716 * @freq_out: requested PLL output clock frequency in Hz
2717 *
2718 * Configures and enables PLL to generate output clock based on input clock.
2719 */
Mark Brown85488032009-09-05 18:52:16 +01002720int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2721 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002722{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002723 if (dai->driver && dai->driver->ops->set_pll)
2724 return dai->driver->ops->set_pll(dai, pll_id, source,
Mark Brown85488032009-09-05 18:52:16 +01002725 freq_in, freq_out);
Mark Brownec4ee522011-03-07 20:58:11 +00002726 else if (dai->codec && dai->codec->driver->set_pll)
2727 return dai->codec->driver->set_pll(dai->codec, pll_id, source,
2728 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002729 else
2730 return -EINVAL;
2731}
2732EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2733
Mark Brownec4ee522011-03-07 20:58:11 +00002734/*
2735 * snd_soc_codec_set_pll - configure codec PLL.
2736 * @codec: CODEC
2737 * @pll_id: DAI specific PLL ID
2738 * @source: DAI specific source for the PLL
2739 * @freq_in: PLL input clock frequency in Hz
2740 * @freq_out: requested PLL output clock frequency in Hz
2741 *
2742 * Configures and enables PLL to generate output clock based on input clock.
2743 */
2744int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,
2745 unsigned int freq_in, unsigned int freq_out)
2746{
2747 if (codec->driver->set_pll)
2748 return codec->driver->set_pll(codec, pll_id, source,
2749 freq_in, freq_out);
2750 else
2751 return -EINVAL;
2752}
2753EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll);
2754
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002755/**
2756 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2757 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002758 * @fmt: SND_SOC_DAIFMT_ format value.
2759 *
2760 * Configures the DAI hardware format and clocking.
2761 */
2762int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2763{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002764 if (dai->driver && dai->driver->ops->set_fmt)
2765 return dai->driver->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002766 else
2767 return -EINVAL;
2768}
2769EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2770
2771/**
2772 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2773 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002774 * @tx_mask: bitmask representing active TX slots.
2775 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002776 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002777 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002778 *
2779 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2780 * specific.
2781 */
2782int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002783 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002784{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002785 if (dai->driver && dai->driver->ops->set_tdm_slot)
2786 return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002787 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002788 else
2789 return -EINVAL;
2790}
2791EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2792
2793/**
Barry Song472df3c2009-09-12 01:16:29 +08002794 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2795 * @dai: DAI
2796 * @tx_num: how many TX channels
2797 * @tx_slot: pointer to an array which imply the TX slot number channel
2798 * 0~num-1 uses
2799 * @rx_num: how many RX channels
2800 * @rx_slot: pointer to an array which imply the RX slot number channel
2801 * 0~num-1 uses
2802 *
2803 * configure the relationship between channel number and TDM slot number.
2804 */
2805int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2806 unsigned int tx_num, unsigned int *tx_slot,
2807 unsigned int rx_num, unsigned int *rx_slot)
2808{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002809 if (dai->driver && dai->driver->ops->set_channel_map)
2810 return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot,
Barry Song472df3c2009-09-12 01:16:29 +08002811 rx_num, rx_slot);
2812 else
2813 return -EINVAL;
2814}
2815EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2816
2817/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002818 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2819 * @dai: DAI
2820 * @tristate: tristate enable
2821 *
2822 * Tristates the DAI so that others can use it.
2823 */
2824int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2825{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002826 if (dai->driver && dai->driver->ops->set_tristate)
2827 return dai->driver->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002828 else
2829 return -EINVAL;
2830}
2831EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2832
2833/**
2834 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2835 * @dai: DAI
2836 * @mute: mute enable
2837 *
2838 * Mutes the DAI DAC.
2839 */
2840int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2841{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002842 if (dai->driver && dai->driver->ops->digital_mute)
2843 return dai->driver->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002844 else
2845 return -EINVAL;
2846}
2847EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2848
Mark Brownc5af3a22008-11-28 13:29:45 +00002849/**
2850 * snd_soc_register_card - Register a card with the ASoC core
2851 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002852 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002853 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002854 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302855int snd_soc_register_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002856{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002857 int i;
2858
Mark Brownc5af3a22008-11-28 13:29:45 +00002859 if (!card->name || !card->dev)
2860 return -EINVAL;
2861
Stephen Warren5a504962011-12-21 10:40:59 -07002862 for (i = 0; i < card->num_links; i++) {
2863 struct snd_soc_dai_link *link = &card->dai_link[i];
2864
2865 /*
2866 * Codec must be specified by 1 of name or OF node,
2867 * not both or neither.
2868 */
2869 if (!!link->codec_name == !!link->codec_of_node) {
2870 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00002871 "Neither/both codec name/of_node are set for %s\n",
2872 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002873 return -EINVAL;
2874 }
2875
2876 /*
2877 * Platform may be specified by either name or OF node, but
2878 * can be left unspecified, and a dummy platform will be used.
2879 */
2880 if (link->platform_name && link->platform_of_node) {
2881 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00002882 "Both platform name/of_node are set for %s\n", link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002883 return -EINVAL;
2884 }
2885
2886 /*
2887 * CPU DAI must be specified by 1 of name or OF node,
2888 * not both or neither.
2889 */
2890 if (!!link->cpu_dai_name == !!link->cpu_dai_of_node) {
2891 dev_err(card->dev,
Liam Girdwood3b09bb82012-01-09 12:09:29 +00002892 "Neither/both cpu_dai name/of_node are set for %s\n",
2893 link->name);
Stephen Warren5a504962011-12-21 10:40:59 -07002894 return -EINVAL;
2895 }
2896 }
2897
Mark Browned77cc12011-05-03 18:25:34 +01002898 dev_set_drvdata(card->dev, card);
2899
Stephen Warren111c6412011-01-28 14:26:35 -07002900 snd_soc_initialize_card_lists(card);
2901
Vinod Koul150dd2f2011-01-13 22:48:32 +05302902 soc_init_card_debugfs(card);
2903
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002904 card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) *
2905 (card->num_links + card->num_aux_devs),
2906 GFP_KERNEL);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002907 if (card->rtd == NULL)
2908 return -ENOMEM;
Jarkko Nikula2eea3922010-11-25 17:47:38 +02002909 card->rtd_aux = &card->rtd[card->num_links];
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002910
2911 for (i = 0; i < card->num_links; i++)
2912 card->rtd[i].dai_link = &card->dai_link[i];
2913
Mark Brownc5af3a22008-11-28 13:29:45 +00002914 INIT_LIST_HEAD(&card->list);
Mark Browndb432b42011-10-03 21:06:40 +01002915 INIT_LIST_HEAD(&card->dapm_dirty);
Mark Brownc5af3a22008-11-28 13:29:45 +00002916 card->instantiated = 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002917 mutex_init(&card->mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002918
2919 mutex_lock(&client_mutex);
2920 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002921 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002922 mutex_unlock(&client_mutex);
2923
2924 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2925
2926 return 0;
2927}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302928EXPORT_SYMBOL_GPL(snd_soc_register_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002929
2930/**
2931 * snd_soc_unregister_card - Unregister a card with the ASoC core
2932 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002933 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002934 *
Mark Brownc5af3a22008-11-28 13:29:45 +00002935 */
Vinod Koul70a7ca32011-01-14 19:22:48 +05302936int snd_soc_unregister_card(struct snd_soc_card *card)
Mark Brownc5af3a22008-11-28 13:29:45 +00002937{
Vinod Koulb0e26482011-01-13 22:48:02 +05302938 if (card->instantiated)
2939 soc_cleanup_card_resources(card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002940 mutex_lock(&client_mutex);
2941 list_del(&card->list);
2942 mutex_unlock(&client_mutex);
Mark Brownc5af3a22008-11-28 13:29:45 +00002943 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2944
2945 return 0;
2946}
Vinod Koul70a7ca32011-01-14 19:22:48 +05302947EXPORT_SYMBOL_GPL(snd_soc_unregister_card);
Mark Brownc5af3a22008-11-28 13:29:45 +00002948
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002949/*
2950 * Simplify DAI link configuration by removing ".-1" from device names
2951 * and sanitizing names.
2952 */
Dimitris Papastamos0b9a2142010-12-06 15:49:20 +00002953static char *fmt_single_name(struct device *dev, int *id)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002954{
2955 char *found, name[NAME_SIZE];
2956 int id1, id2;
2957
2958 if (dev_name(dev) == NULL)
2959 return NULL;
2960
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002961 strlcpy(name, dev_name(dev), NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002962
2963 /* are we a "%s.%d" name (platform and SPI components) */
2964 found = strstr(name, dev->driver->name);
2965 if (found) {
2966 /* get ID */
2967 if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) {
2968
2969 /* discard ID from name if ID == -1 */
2970 if (*id == -1)
2971 found[strlen(dev->driver->name)] = '\0';
2972 }
2973
2974 } else {
2975 /* I2C component devices are named "bus-addr" */
2976 if (sscanf(name, "%x-%x", &id1, &id2) == 2) {
2977 char tmp[NAME_SIZE];
2978
2979 /* create unique ID number from I2C addr and bus */
Jarkko Nikula05899442010-10-19 11:10:45 +03002980 *id = ((id1 & 0xffff) << 16) + id2;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002981
2982 /* sanitize component name for DAI link creation */
2983 snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name);
Dimitris Papastamos58818a72010-12-06 15:42:17 +00002984 strlcpy(name, tmp, NAME_SIZE);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00002985 } else
2986 *id = 0;
2987 }
2988
2989 return kstrdup(name, GFP_KERNEL);
2990}
2991
2992/*
2993 * Simplify DAI link naming for single devices with multiple DAIs by removing
2994 * any ".-1" and using the DAI name (instead of device name).
2995 */
2996static inline char *fmt_multiple_name(struct device *dev,
2997 struct snd_soc_dai_driver *dai_drv)
2998{
2999 if (dai_drv->name == NULL) {
3000 printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n",
3001 dev_name(dev));
3002 return NULL;
3003 }
3004
3005 return kstrdup(dai_drv->name, GFP_KERNEL);
3006}
3007
Mark Brown91151712008-11-30 23:31:24 +00003008/**
3009 * snd_soc_register_dai - Register a DAI with the ASoC core
3010 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003011 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00003012 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003013int snd_soc_register_dai(struct device *dev,
3014 struct snd_soc_dai_driver *dai_drv)
Mark Brown91151712008-11-30 23:31:24 +00003015{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003016 struct snd_soc_dai *dai;
Mark Brown91151712008-11-30 23:31:24 +00003017
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003018 dev_dbg(dev, "dai register %s\n", dev_name(dev));
Mark Brown91151712008-11-30 23:31:24 +00003019
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003020 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
3021 if (dai == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003022 return -ENOMEM;
Eric Miao6335d052009-03-03 09:41:00 +08003023
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003024 /* create DAI component name */
3025 dai->name = fmt_single_name(dev, &dai->id);
3026 if (dai->name == NULL) {
3027 kfree(dai);
3028 return -ENOMEM;
3029 }
3030
3031 dai->dev = dev;
3032 dai->driver = dai_drv;
3033 if (!dai->driver->ops)
3034 dai->driver->ops = &null_dai_ops;
Mark Brown91151712008-11-30 23:31:24 +00003035
3036 mutex_lock(&client_mutex);
3037 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003038 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00003039 mutex_unlock(&client_mutex);
3040
3041 pr_debug("Registered DAI '%s'\n", dai->name);
3042
3043 return 0;
3044}
3045EXPORT_SYMBOL_GPL(snd_soc_register_dai);
3046
3047/**
3048 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3049 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003050 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00003051 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003052void snd_soc_unregister_dai(struct device *dev)
Mark Brown91151712008-11-30 23:31:24 +00003053{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003054 struct snd_soc_dai *dai;
3055
3056 list_for_each_entry(dai, &dai_list, list) {
3057 if (dev == dai->dev)
3058 goto found;
3059 }
3060 return;
3061
3062found:
Mark Brown91151712008-11-30 23:31:24 +00003063 mutex_lock(&client_mutex);
3064 list_del(&dai->list);
3065 mutex_unlock(&client_mutex);
3066
3067 pr_debug("Unregistered DAI '%s'\n", dai->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003068 kfree(dai->name);
3069 kfree(dai);
Mark Brown91151712008-11-30 23:31:24 +00003070}
3071EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
3072
3073/**
3074 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3075 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003076 * @dai: Array of DAIs to register
3077 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003078 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003079int snd_soc_register_dais(struct device *dev,
3080 struct snd_soc_dai_driver *dai_drv, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003081{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003082 struct snd_soc_dai *dai;
3083 int i, ret = 0;
3084
Liam Girdwood720ffa42010-08-18 00:30:30 +01003085 dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
Mark Brown91151712008-11-30 23:31:24 +00003086
3087 for (i = 0; i < count; i++) {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003088
3089 dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL);
Axel Linc46e0072010-11-03 15:04:45 +08003090 if (dai == NULL) {
3091 ret = -ENOMEM;
3092 goto err;
3093 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003094
3095 /* create DAI component name */
3096 dai->name = fmt_multiple_name(dev, &dai_drv[i]);
3097 if (dai->name == NULL) {
3098 kfree(dai);
3099 ret = -EINVAL;
Mark Brown91151712008-11-30 23:31:24 +00003100 goto err;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003101 }
3102
3103 dai->dev = dev;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003104 dai->driver = &dai_drv[i];
Mark Brown0f9141c2010-10-12 15:43:21 +01003105 if (dai->driver->id)
3106 dai->id = dai->driver->id;
3107 else
3108 dai->id = i;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003109 if (!dai->driver->ops)
3110 dai->driver->ops = &null_dai_ops;
3111
3112 mutex_lock(&client_mutex);
3113 list_add(&dai->list, &dai_list);
3114 mutex_unlock(&client_mutex);
3115
3116 pr_debug("Registered DAI '%s'\n", dai->name);
Mark Brown91151712008-11-30 23:31:24 +00003117 }
3118
Axel Lin1dcb4f32010-12-06 16:48:03 +08003119 mutex_lock(&client_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003120 snd_soc_instantiate_cards();
Axel Lin1dcb4f32010-12-06 16:48:03 +08003121 mutex_unlock(&client_mutex);
Mark Brown91151712008-11-30 23:31:24 +00003122 return 0;
3123
3124err:
3125 for (i--; i >= 0; i--)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003126 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003127
3128 return ret;
3129}
3130EXPORT_SYMBOL_GPL(snd_soc_register_dais);
3131
3132/**
3133 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3134 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003135 * @dai: Array of DAIs to unregister
3136 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00003137 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003138void snd_soc_unregister_dais(struct device *dev, size_t count)
Mark Brown91151712008-11-30 23:31:24 +00003139{
3140 int i;
3141
3142 for (i = 0; i < count; i++)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003143 snd_soc_unregister_dai(dev);
Mark Brown91151712008-11-30 23:31:24 +00003144}
3145EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
3146
Mark Brown12a48a8c2008-12-03 19:40:30 +00003147/**
3148 * snd_soc_register_platform - Register a platform with the ASoC core
3149 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003150 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00003151 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003152int snd_soc_register_platform(struct device *dev,
3153 struct snd_soc_platform_driver *platform_drv)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003154{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003155 struct snd_soc_platform *platform;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003156
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003157 dev_dbg(dev, "platform register %s\n", dev_name(dev));
3158
3159 platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL);
3160 if (platform == NULL)
Lu Guanquna7393622011-04-20 16:00:51 +08003161 return -ENOMEM;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003162
3163 /* create platform component name */
3164 platform->name = fmt_single_name(dev, &platform->id);
3165 if (platform->name == NULL) {
3166 kfree(platform);
3167 return -ENOMEM;
3168 }
3169
3170 platform->dev = dev;
3171 platform->driver = platform_drv;
Liam Girdwoodb7950642011-07-04 22:10:52 +01003172 platform->dapm.dev = dev;
3173 platform->dapm.platform = platform;
Liam Girdwood64a648c2011-07-25 11:15:15 +01003174 platform->dapm.stream_event = platform_drv->stream_event;
Mark Brown12a48a8c2008-12-03 19:40:30 +00003175
3176 mutex_lock(&client_mutex);
3177 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00003178 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00003179 mutex_unlock(&client_mutex);
3180
3181 pr_debug("Registered platform '%s'\n", platform->name);
3182
3183 return 0;
3184}
3185EXPORT_SYMBOL_GPL(snd_soc_register_platform);
3186
3187/**
3188 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3189 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003190 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00003191 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003192void snd_soc_unregister_platform(struct device *dev)
Mark Brown12a48a8c2008-12-03 19:40:30 +00003193{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003194 struct snd_soc_platform *platform;
3195
3196 list_for_each_entry(platform, &platform_list, list) {
3197 if (dev == platform->dev)
3198 goto found;
3199 }
3200 return;
3201
3202found:
Mark Brown12a48a8c2008-12-03 19:40:30 +00003203 mutex_lock(&client_mutex);
3204 list_del(&platform->list);
3205 mutex_unlock(&client_mutex);
3206
3207 pr_debug("Unregistered platform '%s'\n", platform->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003208 kfree(platform->name);
3209 kfree(platform);
Mark Brown12a48a8c2008-12-03 19:40:30 +00003210}
3211EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
3212
Mark Brown151ab222009-05-09 16:22:58 +01003213static u64 codec_format_map[] = {
3214 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
3215 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
3216 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
3217 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
3218 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
3219 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
3220 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3221 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
3222 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
3223 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
3224 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
3225 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
3226 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
3227 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
3228 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3229 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
3230};
3231
3232/* Fix up the DAI formats for endianness: codecs don't actually see
3233 * the endianness of the data but we're using the CPU format
3234 * definitions which do need to include endianness so we ensure that
3235 * codec DAIs always have both big and little endian variants set.
3236 */
3237static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
3238{
3239 int i;
3240
3241 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
3242 if (stream->formats & codec_format_map[i])
3243 stream->formats |= codec_format_map[i];
3244}
3245
Mark Brown0d0cf002008-12-10 14:32:45 +00003246/**
3247 * snd_soc_register_codec - Register a codec with the ASoC core
3248 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003249 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00003250 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003251int snd_soc_register_codec(struct device *dev,
Mark Brown001ae4c2010-12-02 16:21:08 +00003252 const struct snd_soc_codec_driver *codec_drv,
3253 struct snd_soc_dai_driver *dai_drv,
3254 int num_dai)
Mark Brown0d0cf002008-12-10 14:32:45 +00003255{
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003256 size_t reg_size;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003257 struct snd_soc_codec *codec;
3258 int ret, i;
Mark Brown151ab222009-05-09 16:22:58 +01003259
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003260 dev_dbg(dev, "codec register %s\n", dev_name(dev));
Mark Brown0d0cf002008-12-10 14:32:45 +00003261
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003262 codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL);
3263 if (codec == NULL)
3264 return -ENOMEM;
Mark Brown0d0cf002008-12-10 14:32:45 +00003265
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003266 /* create CODEC component name */
3267 codec->name = fmt_single_name(dev, &codec->id);
3268 if (codec->name == NULL) {
3269 kfree(codec);
3270 return -ENOMEM;
Mark Brown151ab222009-05-09 16:22:58 +01003271 }
3272
Dimitris Papastamos23bbce32010-12-02 14:53:01 +00003273 if (codec_drv->compress_type)
3274 codec->compress_type = codec_drv->compress_type;
3275 else
3276 codec->compress_type = SND_SOC_FLAT_COMPRESSION;
3277
Mark Brownc3acec22010-12-02 16:15:29 +00003278 codec->write = codec_drv->write;
3279 codec->read = codec_drv->read;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003280 codec->volatile_register = codec_drv->volatile_register;
3281 codec->readable_register = codec_drv->readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003282 codec->writable_register = codec_drv->writable_register;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003283 codec->dapm.bias_level = SND_SOC_BIAS_OFF;
3284 codec->dapm.dev = dev;
3285 codec->dapm.codec = codec;
Mark Brown474b62d2011-01-18 16:14:44 +00003286 codec->dapm.seq_notifier = codec_drv->seq_notifier;
Liam Girdwood64a648c2011-07-25 11:15:15 +01003287 codec->dapm.stream_event = codec_drv->stream_event;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003288 codec->dev = dev;
3289 codec->driver = codec_drv;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003290 codec->num_dai = num_dai;
3291 mutex_init(&codec->mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003292
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003293 /* allocate CODEC register cache */
3294 if (codec_drv->reg_cache_size && codec_drv->reg_word_size) {
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003295 reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size;
Dimitris Papastamosaea170a2011-01-12 10:38:58 +00003296 codec->reg_size = reg_size;
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003297 /* it is necessary to make a copy of the default register cache
3298 * because in the case of using a compression type that requires
3299 * the default register cache to be marked as __devinitconst the
3300 * kernel might have freed the array by the time we initialize
3301 * the cache.
3302 */
Dimitris Papastamos2aa86322011-01-10 10:10:56 +00003303 if (codec_drv->reg_cache_default) {
3304 codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default,
3305 reg_size, GFP_KERNEL);
3306 if (!codec->reg_def_copy) {
3307 ret = -ENOMEM;
3308 goto fail;
3309 }
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003310 }
3311 }
3312
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003313 if (codec_drv->reg_access_size && codec_drv->reg_access_default) {
3314 if (!codec->volatile_register)
3315 codec->volatile_register = snd_soc_default_volatile_register;
3316 if (!codec->readable_register)
3317 codec->readable_register = snd_soc_default_readable_register;
Dimitris Papastamos80204542011-03-24 13:45:17 +00003318 if (!codec->writable_register)
3319 codec->writable_register = snd_soc_default_writable_register;
Dimitris Papastamos1500b7b2011-01-13 12:20:38 +00003320 }
3321
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003322 for (i = 0; i < num_dai; i++) {
3323 fixup_codec_formats(&dai_drv[i].playback);
3324 fixup_codec_formats(&dai_drv[i].capture);
3325 }
3326
Mark Brown26b01cc2010-08-18 20:20:55 +01003327 /* register any DAIs */
3328 if (num_dai) {
3329 ret = snd_soc_register_dais(dev, dai_drv, num_dai);
3330 if (ret < 0)
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003331 goto fail;
Mark Brown26b01cc2010-08-18 20:20:55 +01003332 }
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003333
Mark Brown0d0cf002008-12-10 14:32:45 +00003334 mutex_lock(&client_mutex);
3335 list_add(&codec->list, &codec_list);
3336 snd_soc_instantiate_cards();
3337 mutex_unlock(&client_mutex);
3338
3339 pr_debug("Registered codec '%s'\n", codec->name);
Mark Brown0d0cf002008-12-10 14:32:45 +00003340 return 0;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003341
Dimitris Papastamosfdf0f542010-12-02 16:11:06 +00003342fail:
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003343 kfree(codec->reg_def_copy);
3344 codec->reg_def_copy = NULL;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003345 kfree(codec->name);
3346 kfree(codec);
3347 return ret;
Mark Brown0d0cf002008-12-10 14:32:45 +00003348}
3349EXPORT_SYMBOL_GPL(snd_soc_register_codec);
3350
3351/**
3352 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3353 *
Mark Brownac11a2b2009-01-01 12:18:17 +00003354 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00003355 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003356void snd_soc_unregister_codec(struct device *dev)
Mark Brown0d0cf002008-12-10 14:32:45 +00003357{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003358 struct snd_soc_codec *codec;
3359 int i;
3360
3361 list_for_each_entry(codec, &codec_list, list) {
3362 if (dev == codec->dev)
3363 goto found;
3364 }
3365 return;
3366
3367found:
Mark Brown26b01cc2010-08-18 20:20:55 +01003368 if (codec->num_dai)
3369 for (i = 0; i < codec->num_dai; i++)
3370 snd_soc_unregister_dai(dev);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003371
Mark Brown0d0cf002008-12-10 14:32:45 +00003372 mutex_lock(&client_mutex);
3373 list_del(&codec->list);
3374 mutex_unlock(&client_mutex);
3375
3376 pr_debug("Unregistered codec '%s'\n", codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003377
Dimitris Papastamos7a30a3d2010-11-11 10:04:57 +00003378 snd_soc_cache_exit(codec);
Dimitris Papastamos3335ddc2010-12-02 16:11:05 +00003379 kfree(codec->reg_def_copy);
Dimitris Papastamos1aafcd42010-10-21 13:19:45 +01003380 kfree(codec->name);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00003381 kfree(codec);
Mark Brown0d0cf002008-12-10 14:32:45 +00003382}
3383EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
3384
Stephen Warrenbec4fa02011-12-12 15:55:34 -07003385/* Retrieve a card's name from device tree */
3386int snd_soc_of_parse_card_name(struct snd_soc_card *card,
3387 const char *propname)
3388{
3389 struct device_node *np = card->dev->of_node;
3390 int ret;
3391
3392 ret = of_property_read_string_index(np, propname, 0, &card->name);
3393 /*
3394 * EINVAL means the property does not exist. This is fine providing
3395 * card->name was previously set, which is checked later in
3396 * snd_soc_register_card.
3397 */
3398 if (ret < 0 && ret != -EINVAL) {
3399 dev_err(card->dev,
3400 "Property '%s' could not be read: %d\n",
3401 propname, ret);
3402 return ret;
3403 }
3404
3405 return 0;
3406}
3407EXPORT_SYMBOL_GPL(snd_soc_of_parse_card_name);
3408
Stephen Warrena4a54dd2011-12-12 15:55:35 -07003409int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
3410 const char *propname)
3411{
3412 struct device_node *np = card->dev->of_node;
3413 int num_routes;
3414 struct snd_soc_dapm_route *routes;
3415 int i, ret;
3416
3417 num_routes = of_property_count_strings(np, propname);
3418 if (num_routes & 1) {
3419 dev_err(card->dev,
3420 "Property '%s's length is not even\n",
3421 propname);
3422 return -EINVAL;
3423 }
3424 num_routes /= 2;
3425 if (!num_routes) {
3426 dev_err(card->dev,
3427 "Property '%s's length is zero\n",
3428 propname);
3429 return -EINVAL;
3430 }
3431
3432 routes = devm_kzalloc(card->dev, num_routes * sizeof(*routes),
3433 GFP_KERNEL);
3434 if (!routes) {
3435 dev_err(card->dev,
3436 "Could not allocate DAPM route table\n");
3437 return -EINVAL;
3438 }
3439
3440 for (i = 0; i < num_routes; i++) {
3441 ret = of_property_read_string_index(np, propname,
3442 2 * i, &routes[i].sink);
3443 if (ret) {
3444 dev_err(card->dev,
3445 "Property '%s' index %d could not be read: %d\n",
3446 propname, 2 * i, ret);
3447 return -EINVAL;
3448 }
3449 ret = of_property_read_string_index(np, propname,
3450 (2 * i) + 1, &routes[i].source);
3451 if (ret) {
3452 dev_err(card->dev,
3453 "Property '%s' index %d could not be read: %d\n",
3454 propname, (2 * i) + 1, ret);
3455 return -EINVAL;
3456 }
3457 }
3458
3459 card->num_dapm_routes = num_routes;
3460 card->dapm_routes = routes;
3461
3462 return 0;
3463}
3464EXPORT_SYMBOL_GPL(snd_soc_of_parse_audio_routing);
3465
Takashi Iwaic9b3a402008-12-10 07:47:22 +01003466static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003467{
Mark Brown384c89e2008-12-03 17:34:03 +00003468#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003469 snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL);
3470 if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) {
Mark Brown384c89e2008-12-03 17:34:03 +00003471 printk(KERN_WARNING
3472 "ASoC: Failed to create debugfs directory\n");
Mark Brown8a9dab12011-01-10 22:25:21 +00003473 snd_soc_debugfs_root = NULL;
Mark Brown384c89e2008-12-03 17:34:03 +00003474 }
Mark Brownc3c5a192010-09-15 18:15:14 +01003475
Mark Brown8a9dab12011-01-10 22:25:21 +00003476 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL,
Mark Brownc3c5a192010-09-15 18:15:14 +01003477 &codec_list_fops))
3478 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3479
Mark Brown8a9dab12011-01-10 22:25:21 +00003480 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL,
Mark Brownf3208782010-09-15 18:19:07 +01003481 &dai_list_fops))
3482 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
Mark Brown19c7ac22010-09-15 18:22:40 +01003483
Mark Brown8a9dab12011-01-10 22:25:21 +00003484 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL,
Mark Brown19c7ac22010-09-15 18:22:40 +01003485 &platform_list_fops))
3486 pr_warn("ASoC: Failed to create platform list debugfs file\n");
Mark Brown384c89e2008-12-03 17:34:03 +00003487#endif
3488
Mark Brownfb257892011-04-28 10:57:54 +01003489 snd_soc_util_init();
3490
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003491 return platform_driver_register(&soc_driver);
3492}
Mark Brown4abe8e12010-10-12 17:41:03 +01003493module_init(snd_soc_init);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003494
Mark Brown7d8c16a2008-11-30 22:11:24 +00003495static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003496{
Mark Brownfb257892011-04-28 10:57:54 +01003497 snd_soc_util_exit();
3498
Mark Brown384c89e2008-12-03 17:34:03 +00003499#ifdef CONFIG_DEBUG_FS
Mark Brown8a9dab12011-01-10 22:25:21 +00003500 debugfs_remove_recursive(snd_soc_debugfs_root);
Mark Brown384c89e2008-12-03 17:34:03 +00003501#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02003502 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003503}
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003504module_exit(snd_soc_exit);
3505
3506/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01003507MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02003508MODULE_DESCRIPTION("ALSA SoC Core");
3509MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02003510MODULE_ALIAS("platform:soc-audio");