blob: 0a1b2f64bbee38a18947a9fa161eb922dc0f17a0 [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.
6 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +01008 * with code, comments and ideas from :-
9 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020010 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020016 * TODO:
17 * o Add hw rules to enforce rates, etc.
18 * o More testing with other codecs/machines.
19 * o Add more codecs and platforms to ensure good API coverage.
20 * o Support TDM on PCM and I2S
21 */
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/pm.h>
28#include <linux/bitops.h>
Troy Kisky12ef1932008-10-13 17:42:14 -070029#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020030#include <linux/platform_device.h>
Marek Vasut474828a2009-07-22 13:01:03 +020031#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020032#include <sound/core.h>
33#include <sound/pcm.h>
34#include <sound/pcm_params.h>
35#include <sound/soc.h>
36#include <sound/soc-dapm.h>
37#include <sound/initval.h>
38
Frank Mandarinodb2a4162006-10-06 18:31:09 +020039static DEFINE_MUTEX(pcm_mutex);
40static DEFINE_MUTEX(io_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +020041static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
42
Mark Brown384c89e2008-12-03 17:34:03 +000043#ifdef CONFIG_DEBUG_FS
44static struct dentry *debugfs_root;
45#endif
46
Mark Brownc5af3a22008-11-28 13:29:45 +000047static DEFINE_MUTEX(client_mutex);
48static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000049static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000050static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000051static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000052
53static int snd_soc_register_card(struct snd_soc_card *card);
54static int snd_soc_unregister_card(struct snd_soc_card *card);
55
Frank Mandarinodb2a4162006-10-06 18:31:09 +020056/*
57 * This is a timeout to do a DAPM powerdown after a stream is closed().
58 * It can be used to eliminate pops between different playback streams, e.g.
59 * between two audio tracks.
60 */
61static int pmdown_time = 5000;
62module_param(pmdown_time, int, 0);
63MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
64
Liam Girdwood965ac422007-01-31 14:14:57 +010065/*
66 * This function forces any delayed work to be queued and run.
67 */
68static int run_delayed_work(struct delayed_work *dwork)
69{
70 int ret;
71
72 /* cancel any work waiting to be queued. */
73 ret = cancel_delayed_work(dwork);
74
75 /* if there was any work waiting then we run it now and
76 * wait for it's completion */
77 if (ret) {
78 schedule_delayed_work(dwork, 0);
79 flush_scheduled_work();
80 }
81 return ret;
82}
83
Frank Mandarinodb2a4162006-10-06 18:31:09 +020084#ifdef CONFIG_SND_SOC_AC97_BUS
85/* unregister ac97 codec */
86static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
87{
88 if (codec->ac97->dev.bus)
89 device_unregister(&codec->ac97->dev);
90 return 0;
91}
92
93/* stop no dev release warning */
94static void soc_ac97_device_release(struct device *dev){}
95
96/* register ac97 codec to bus */
97static int soc_ac97_dev_register(struct snd_soc_codec *codec)
98{
99 int err;
100
101 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100102 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200103 codec->ac97->dev.release = soc_ac97_device_release;
104
Kay Sieversbb072bf2008-11-02 03:50:35 +0100105 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
106 codec->card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200107 err = device_register(&codec->ac97->dev);
108 if (err < 0) {
109 snd_printk(KERN_ERR "Can't register ac97 bus\n");
110 codec->ac97->dev.bus = NULL;
111 return err;
112 }
113 return 0;
114}
115#endif
116
Mark Brown06f409d2009-04-07 18:10:13 +0100117static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
118{
119 struct snd_soc_pcm_runtime *rtd = substream->private_data;
120 struct snd_soc_device *socdev = rtd->socdev;
121 struct snd_soc_card *card = socdev->card;
122 struct snd_soc_dai_link *machine = rtd->dai;
123 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
124 struct snd_soc_dai *codec_dai = machine->codec_dai;
125 int ret;
126
127 if (codec_dai->symmetric_rates || cpu_dai->symmetric_rates ||
128 machine->symmetric_rates) {
129 dev_dbg(card->dev, "Symmetry forces %dHz rate\n",
130 machine->rate);
131
132 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
133 SNDRV_PCM_HW_PARAM_RATE,
134 machine->rate,
135 machine->rate);
136 if (ret < 0) {
137 dev_err(card->dev,
138 "Unable to apply rate symmetry constraint: %d\n", ret);
139 return ret;
140 }
141 }
142
143 return 0;
144}
145
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200146/*
147 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
148 * then initialized and any private data can be allocated. This also calls
149 * startup for the cpu DAI, platform, machine and codec DAI.
150 */
151static int soc_pcm_open(struct snd_pcm_substream *substream)
152{
153 struct snd_soc_pcm_runtime *rtd = substream->private_data;
154 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000155 struct snd_soc_card *card = socdev->card;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200156 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100157 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000158 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100159 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
160 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200161 int ret = 0;
162
163 mutex_lock(&pcm_mutex);
164
165 /* startup the audio subsystem */
Eric Miao6335d052009-03-03 09:41:00 +0800166 if (cpu_dai->ops->startup) {
167 ret = cpu_dai->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200168 if (ret < 0) {
169 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100170 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200171 goto out;
172 }
173 }
174
175 if (platform->pcm_ops->open) {
176 ret = platform->pcm_ops->open(substream);
177 if (ret < 0) {
178 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
179 goto platform_err;
180 }
181 }
182
Eric Miao6335d052009-03-03 09:41:00 +0800183 if (codec_dai->ops->startup) {
184 ret = codec_dai->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100185 if (ret < 0) {
186 printk(KERN_ERR "asoc: can't open codec %s\n",
187 codec_dai->name);
188 goto codec_dai_err;
189 }
190 }
191
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200192 if (machine->ops && machine->ops->startup) {
193 ret = machine->ops->startup(substream);
194 if (ret < 0) {
195 printk(KERN_ERR "asoc: %s startup failed\n", machine->name);
196 goto machine_err;
197 }
198 }
199
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200200 /* Check that the codec and cpu DAI's are compatible */
201 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
202 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200203 max(codec_dai->playback.rate_min,
204 cpu_dai->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200205 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200206 min(codec_dai->playback.rate_max,
207 cpu_dai->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200208 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100209 max(codec_dai->playback.channels_min,
210 cpu_dai->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200211 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100212 min(codec_dai->playback.channels_max,
213 cpu_dai->playback.channels_max);
214 runtime->hw.formats =
215 codec_dai->playback.formats & cpu_dai->playback.formats;
216 runtime->hw.rates =
217 codec_dai->playback.rates & cpu_dai->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200218 } else {
219 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200220 max(codec_dai->capture.rate_min,
221 cpu_dai->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200222 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200223 min(codec_dai->capture.rate_max,
224 cpu_dai->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200225 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100226 max(codec_dai->capture.channels_min,
227 cpu_dai->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200228 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100229 min(codec_dai->capture.channels_max,
230 cpu_dai->capture.channels_max);
231 runtime->hw.formats =
232 codec_dai->capture.formats & cpu_dai->capture.formats;
233 runtime->hw.rates =
234 codec_dai->capture.rates & cpu_dai->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200235 }
236
237 snd_pcm_limit_hw_rates(runtime);
238 if (!runtime->hw.rates) {
239 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100240 codec_dai->name, cpu_dai->name);
241 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200242 }
243 if (!runtime->hw.formats) {
244 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100245 codec_dai->name, cpu_dai->name);
246 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200247 }
248 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
249 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100250 codec_dai->name, cpu_dai->name);
251 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200252 }
253
Mark Brown06f409d2009-04-07 18:10:13 +0100254 /* Symmetry only applies if we've already got an active stream. */
255 if (cpu_dai->active || codec_dai->active) {
256 ret = soc_pcm_apply_symmetry(substream);
257 if (ret != 0)
258 goto machine_err;
259 }
260
Mark Brownf24368c2008-10-21 21:45:08 +0100261 pr_debug("asoc: %s <-> %s info:\n", codec_dai->name, cpu_dai->name);
262 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
263 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
264 runtime->hw.channels_max);
265 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
266 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200267
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200268 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100269 cpu_dai->playback.active = codec_dai->playback.active = 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200270 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100271 cpu_dai->capture.active = codec_dai->capture.active = 1;
272 cpu_dai->active = codec_dai->active = 1;
273 cpu_dai->runtime = runtime;
Mark Brown6627a652009-01-23 22:55:23 +0000274 card->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200275 mutex_unlock(&pcm_mutex);
276 return 0;
277
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100278machine_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200279 if (machine->ops && machine->ops->shutdown)
280 machine->ops->shutdown(substream);
281
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100282codec_dai_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200283 if (platform->pcm_ops->close)
284 platform->pcm_ops->close(substream);
285
286platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800287 if (cpu_dai->ops->shutdown)
288 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200289out:
290 mutex_unlock(&pcm_mutex);
291 return ret;
292}
293
294/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200295 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200296 * This is to ensure there are no pops or clicks in between any music tracks
297 * due to DAPM power cycling.
298 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100299static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200300{
Mark Brown63084192008-12-02 15:08:03 +0000301 struct snd_soc_card *card = container_of(work, struct snd_soc_card,
302 delayed_work.work);
Mark Brown6627a652009-01-23 22:55:23 +0000303 struct snd_soc_codec *codec = card->codec;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100304 struct snd_soc_dai *codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200305 int i;
306
307 mutex_lock(&pcm_mutex);
Mark Brown3ff3f642008-05-19 12:32:25 +0200308 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200309 codec_dai = &codec->dai[i];
310
Mark Brownf24368c2008-10-21 21:45:08 +0100311 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
312 codec_dai->playback.stream_name,
313 codec_dai->playback.active ? "active" : "inactive",
314 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200315
316 /* are we waiting on this codec DAI stream */
317 if (codec_dai->pop_wait == 1) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200318 codec_dai->pop_wait = 0;
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100319 snd_soc_dapm_stream_event(codec,
320 codec_dai->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200321 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200322 }
323 }
324 mutex_unlock(&pcm_mutex);
325}
326
327/*
328 * Called by ALSA when a PCM substream is closed. Private data can be
329 * freed here. The cpu DAI, codec DAI, machine and platform are also
330 * shutdown.
331 */
332static int soc_codec_close(struct snd_pcm_substream *substream)
333{
334 struct snd_soc_pcm_runtime *rtd = substream->private_data;
335 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000336 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100337 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000338 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100339 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
340 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000341 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200342
343 mutex_lock(&pcm_mutex);
344
345 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100346 cpu_dai->playback.active = codec_dai->playback.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200347 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100348 cpu_dai->capture.active = codec_dai->capture.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200349
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100350 if (codec_dai->playback.active == 0 &&
351 codec_dai->capture.active == 0) {
352 cpu_dai->active = codec_dai->active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200353 }
354 codec->active--;
355
Mark Brown6010b2d2008-09-06 18:33:24 +0100356 /* Muting the DAC suppresses artifacts caused during digital
357 * shutdown, for example from stopping clocks.
358 */
359 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
360 snd_soc_dai_digital_mute(codec_dai, 1);
361
Eric Miao6335d052009-03-03 09:41:00 +0800362 if (cpu_dai->ops->shutdown)
363 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200364
Eric Miao6335d052009-03-03 09:41:00 +0800365 if (codec_dai->ops->shutdown)
366 codec_dai->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200367
368 if (machine->ops && machine->ops->shutdown)
369 machine->ops->shutdown(substream);
370
371 if (platform->pcm_ops->close)
372 platform->pcm_ops->close(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100373 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200374
375 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
376 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100377 codec_dai->pop_wait = 1;
Mark Brown63084192008-12-02 15:08:03 +0000378 schedule_delayed_work(&card->delayed_work,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200379 msecs_to_jiffies(pmdown_time));
380 } else {
381 /* capture streams can be powered down now */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100382 snd_soc_dapm_stream_event(codec,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100383 codec_dai->capture.stream_name,
384 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200385 }
386
387 mutex_unlock(&pcm_mutex);
388 return 0;
389}
390
391/*
392 * Called by ALSA when the PCM substream is prepared, can set format, sample
393 * rate, etc. This function is non atomic and can be called multiple times,
394 * it can refer to the runtime info.
395 */
396static int soc_pcm_prepare(struct snd_pcm_substream *substream)
397{
398 struct snd_soc_pcm_runtime *rtd = substream->private_data;
399 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000400 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100401 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000402 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100403 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
404 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000405 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200406 int ret = 0;
407
408 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100409
410 if (machine->ops && machine->ops->prepare) {
411 ret = machine->ops->prepare(substream);
412 if (ret < 0) {
413 printk(KERN_ERR "asoc: machine prepare error\n");
414 goto out;
415 }
416 }
417
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200418 if (platform->pcm_ops->prepare) {
419 ret = platform->pcm_ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200420 if (ret < 0) {
421 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200422 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200423 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200424 }
425
Eric Miao6335d052009-03-03 09:41:00 +0800426 if (codec_dai->ops->prepare) {
427 ret = codec_dai->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200428 if (ret < 0) {
429 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200430 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200431 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200432 }
433
Eric Miao6335d052009-03-03 09:41:00 +0800434 if (cpu_dai->ops->prepare) {
435 ret = cpu_dai->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100436 if (ret < 0) {
437 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
438 goto out;
439 }
440 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200441
Mark Brownd45f6212008-10-14 13:58:36 +0100442 /* cancel any delayed stream shutdown that is pending */
443 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
444 codec_dai->pop_wait) {
445 codec_dai->pop_wait = 0;
Mark Brown63084192008-12-02 15:08:03 +0000446 cancel_delayed_work(&card->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100447 }
448
Mark Brown452c5ea2009-05-17 21:41:23 +0100449 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
450 snd_soc_dapm_stream_event(codec,
451 codec_dai->playback.stream_name,
452 SND_SOC_DAPM_STREAM_START);
453 else
454 snd_soc_dapm_stream_event(codec,
455 codec_dai->capture.stream_name,
456 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100457
Mark Brown452c5ea2009-05-17 21:41:23 +0100458 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200459
460out:
461 mutex_unlock(&pcm_mutex);
462 return ret;
463}
464
465/*
466 * Called by ALSA when the hardware params are set by application. This
467 * function can also be called multiple times and can allocate buffers
468 * (using snd_pcm_lib_* ). It's non-atomic.
469 */
470static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
471 struct snd_pcm_hw_params *params)
472{
473 struct snd_soc_pcm_runtime *rtd = substream->private_data;
474 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100475 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000476 struct snd_soc_card *card = socdev->card;
477 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100478 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
479 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200480 int ret = 0;
481
482 mutex_lock(&pcm_mutex);
483
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100484 if (machine->ops && machine->ops->hw_params) {
485 ret = machine->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200486 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100487 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200488 goto out;
489 }
490 }
491
Eric Miao6335d052009-03-03 09:41:00 +0800492 if (codec_dai->ops->hw_params) {
493 ret = codec_dai->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100494 if (ret < 0) {
495 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
496 codec_dai->name);
497 goto codec_err;
498 }
499 }
500
Eric Miao6335d052009-03-03 09:41:00 +0800501 if (cpu_dai->ops->hw_params) {
502 ret = cpu_dai->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200503 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200504 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100505 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200506 goto interface_err;
507 }
508 }
509
510 if (platform->pcm_ops->hw_params) {
511 ret = platform->pcm_ops->hw_params(substream, params);
512 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200513 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200514 platform->name);
515 goto platform_err;
516 }
517 }
518
Mark Brown06f409d2009-04-07 18:10:13 +0100519 machine->rate = params_rate(params);
520
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200521out:
522 mutex_unlock(&pcm_mutex);
523 return ret;
524
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200525platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800526 if (cpu_dai->ops->hw_free)
527 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200528
529interface_err:
Eric Miao6335d052009-03-03 09:41:00 +0800530 if (codec_dai->ops->hw_free)
531 codec_dai->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100532
533codec_err:
Mark Brown3ff3f642008-05-19 12:32:25 +0200534 if (machine->ops && machine->ops->hw_free)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100535 machine->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200536
537 mutex_unlock(&pcm_mutex);
538 return ret;
539}
540
541/*
542 * Free's resources allocated by hw_params, can be called multiple times
543 */
544static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
545{
546 struct snd_soc_pcm_runtime *rtd = substream->private_data;
547 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100548 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000549 struct snd_soc_card *card = socdev->card;
550 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100551 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
552 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000553 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200554
555 mutex_lock(&pcm_mutex);
556
557 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100558 if (!codec->active)
559 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200560
561 /* free any machine hw params */
562 if (machine->ops && machine->ops->hw_free)
563 machine->ops->hw_free(substream);
564
565 /* free any DMA resources */
566 if (platform->pcm_ops->hw_free)
567 platform->pcm_ops->hw_free(substream);
568
569 /* now free hw params for the DAI's */
Eric Miao6335d052009-03-03 09:41:00 +0800570 if (codec_dai->ops->hw_free)
571 codec_dai->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200572
Eric Miao6335d052009-03-03 09:41:00 +0800573 if (cpu_dai->ops->hw_free)
574 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200575
576 mutex_unlock(&pcm_mutex);
577 return 0;
578}
579
580static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
581{
582 struct snd_soc_pcm_runtime *rtd = substream->private_data;
583 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000584 struct snd_soc_card *card= socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100585 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000586 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100587 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
588 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200589 int ret;
590
Eric Miao6335d052009-03-03 09:41:00 +0800591 if (codec_dai->ops->trigger) {
592 ret = codec_dai->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200593 if (ret < 0)
594 return ret;
595 }
596
597 if (platform->pcm_ops->trigger) {
598 ret = platform->pcm_ops->trigger(substream, cmd);
599 if (ret < 0)
600 return ret;
601 }
602
Eric Miao6335d052009-03-03 09:41:00 +0800603 if (cpu_dai->ops->trigger) {
604 ret = cpu_dai->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200605 if (ret < 0)
606 return ret;
607 }
608 return 0;
609}
610
611/* ASoC PCM operations */
612static struct snd_pcm_ops soc_pcm_ops = {
613 .open = soc_pcm_open,
614 .close = soc_codec_close,
615 .hw_params = soc_pcm_hw_params,
616 .hw_free = soc_pcm_hw_free,
617 .prepare = soc_pcm_prepare,
618 .trigger = soc_pcm_trigger,
619};
620
621#ifdef CONFIG_PM
622/* powers down audio subsystem for suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100623static int soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200624{
Mark Brown416356f2009-06-30 19:05:15 +0100625 struct platform_device *pdev = to_platform_device(dev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200626 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +0000627 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +0000628 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200629 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000630 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200631 int i;
632
Daniel Macke3509ff2009-06-03 17:44:49 +0200633 /* If the initialization of this soc device failed, there is no codec
634 * associated with it. Just bail out in this case.
635 */
636 if (!codec)
637 return 0;
638
Andy Green6ed25972008-06-13 16:24:05 +0100639 /* Due to the resume being scheduled into a workqueue we could
640 * suspend before that's finished - wait for it to complete.
641 */
642 snd_power_lock(codec->card);
643 snd_power_wait(codec->card, SNDRV_CTL_POWER_D0);
644 snd_power_unlock(codec->card);
645
646 /* we're going to block userspace touching us until resume completes */
647 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D3hot);
648
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200649 /* mute any active DAC's */
Mark Browndee89c42008-11-18 22:11:38 +0000650 for (i = 0; i < card->num_links; i++) {
651 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800652 if (dai->ops->digital_mute && dai->playback.active)
653 dai->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200654 }
655
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100656 /* suspend all pcms */
Mark Brown87506542008-11-18 20:50:34 +0000657 for (i = 0; i < card->num_links; i++)
658 snd_pcm_suspend_all(card->dai_link[i].pcm);
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100659
Mark Brown87506542008-11-18 20:50:34 +0000660 if (card->suspend_pre)
Mark Brown416356f2009-06-30 19:05:15 +0100661 card->suspend_pre(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200662
Mark Brown87506542008-11-18 20:50:34 +0000663 for (i = 0; i < card->num_links; i++) {
664 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000665 if (cpu_dai->suspend && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000666 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200667 if (platform->suspend)
Mark Brown07c84d02008-12-03 18:17:28 +0000668 platform->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200669 }
670
671 /* close any waiting streams and save state */
Mark Brown63084192008-12-02 15:08:03 +0000672 run_delayed_work(&card->delayed_work);
Mark Brown0be98982008-05-19 12:31:28 +0200673 codec->suspend_bias_level = codec->bias_level;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200674
Mark Brown3ff3f642008-05-19 12:32:25 +0200675 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200676 char *stream = codec->dai[i].playback.stream_name;
677 if (stream != NULL)
678 snd_soc_dapm_stream_event(codec, stream,
679 SND_SOC_DAPM_STREAM_SUSPEND);
680 stream = codec->dai[i].capture.stream_name;
681 if (stream != NULL)
682 snd_soc_dapm_stream_event(codec, stream,
683 SND_SOC_DAPM_STREAM_SUSPEND);
684 }
685
686 if (codec_dev->suspend)
Mark Brown416356f2009-06-30 19:05:15 +0100687 codec_dev->suspend(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200688
Mark Brown87506542008-11-18 20:50:34 +0000689 for (i = 0; i < card->num_links; i++) {
690 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000691 if (cpu_dai->suspend && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000692 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200693 }
694
Mark Brown87506542008-11-18 20:50:34 +0000695 if (card->suspend_post)
Mark Brown416356f2009-06-30 19:05:15 +0100696 card->suspend_post(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200697
698 return 0;
699}
700
Andy Green6ed25972008-06-13 16:24:05 +0100701/* deferred resume work, so resume can complete before we finished
702 * setting our codec back up, which can be very slow on I2C
703 */
704static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200705{
Mark Brown63084192008-12-02 15:08:03 +0000706 struct snd_soc_card *card = container_of(work,
707 struct snd_soc_card,
708 deferred_resume_work);
709 struct snd_soc_device *socdev = card->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000710 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200711 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000712 struct snd_soc_codec *codec = card->codec;
Andy Green6ed25972008-06-13 16:24:05 +0100713 struct platform_device *pdev = to_platform_device(socdev->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200714 int i;
715
Andy Green6ed25972008-06-13 16:24:05 +0100716 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
717 * so userspace apps are blocked from touching us
718 */
719
Mark Brownfde22f22008-11-24 18:08:18 +0000720 dev_dbg(socdev->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100721
Mark Brown87506542008-11-18 20:50:34 +0000722 if (card->resume_pre)
723 card->resume_pre(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200724
Mark Brown87506542008-11-18 20:50:34 +0000725 for (i = 0; i < card->num_links; i++) {
726 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000727 if (cpu_dai->resume && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000728 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200729 }
730
731 if (codec_dev->resume)
732 codec_dev->resume(pdev);
733
Mark Brown3ff3f642008-05-19 12:32:25 +0200734 for (i = 0; i < codec->num_dai; i++) {
735 char *stream = codec->dai[i].playback.stream_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200736 if (stream != NULL)
737 snd_soc_dapm_stream_event(codec, stream,
738 SND_SOC_DAPM_STREAM_RESUME);
739 stream = codec->dai[i].capture.stream_name;
740 if (stream != NULL)
741 snd_soc_dapm_stream_event(codec, stream,
742 SND_SOC_DAPM_STREAM_RESUME);
743 }
744
Mark Brown3ff3f642008-05-19 12:32:25 +0200745 /* unmute any active DACs */
Mark Browndee89c42008-11-18 22:11:38 +0000746 for (i = 0; i < card->num_links; i++) {
747 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800748 if (dai->ops->digital_mute && dai->playback.active)
749 dai->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200750 }
751
Mark Brown87506542008-11-18 20:50:34 +0000752 for (i = 0; i < card->num_links; i++) {
753 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000754 if (cpu_dai->resume && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000755 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200756 if (platform->resume)
Mark Brown07c84d02008-12-03 18:17:28 +0000757 platform->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200758 }
759
Mark Brown87506542008-11-18 20:50:34 +0000760 if (card->resume_post)
761 card->resume_post(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200762
Mark Brownfde22f22008-11-24 18:08:18 +0000763 dev_dbg(socdev->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100764
765 /* userspace can access us now we are back as we were before */
766 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0);
767}
768
769/* powers up audio subsystem after a suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100770static int soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100771{
Mark Brown416356f2009-06-30 19:05:15 +0100772 struct platform_device *pdev = to_platform_device(dev);
Andy Green6ed25972008-06-13 16:24:05 +0100773 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown63084192008-12-02 15:08:03 +0000774 struct snd_soc_card *card = socdev->card;
Mark Brown64ab9ba2009-03-31 11:27:03 +0100775 struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai;
Andy Green6ed25972008-06-13 16:24:05 +0100776
Mark Brown64ab9ba2009-03-31 11:27:03 +0100777 /* AC97 devices might have other drivers hanging off them so
778 * need to resume immediately. Other drivers don't have that
779 * problem and may take a substantial amount of time to resume
780 * due to I/O costs and anti-pop so handle them out of line.
781 */
782 if (cpu_dai->ac97_control) {
783 dev_dbg(socdev->dev, "Resuming AC97 immediately\n");
784 soc_resume_deferred(&card->deferred_resume_work);
785 } else {
786 dev_dbg(socdev->dev, "Scheduling resume work\n");
787 if (!schedule_work(&card->deferred_resume_work))
788 dev_err(socdev->dev, "resume work item may be lost\n");
789 }
Andy Green6ed25972008-06-13 16:24:05 +0100790
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200791 return 0;
792}
793
Mark Brown831dc0f2009-06-13 19:55:02 +0100794/**
795 * snd_soc_suspend_device: Notify core of device suspend
796 *
797 * @dev: Device being suspended.
798 *
799 * In order to ensure that the entire audio subsystem is suspended in a
800 * coordinated fashion ASoC devices should suspend themselves when
801 * called by ASoC. When the standard kernel suspend process asks the
802 * device to suspend it should call this function to initiate a suspend
803 * of the entire ASoC card.
804 *
805 * \note Currently this function is stubbed out.
806 */
807int snd_soc_suspend_device(struct device *dev)
808{
809 return 0;
810}
811EXPORT_SYMBOL_GPL(snd_soc_suspend_device);
812
813/**
814 * snd_soc_resume_device: Notify core of device resume
815 *
816 * @dev: Device being resumed.
817 *
818 * In order to ensure that the entire audio subsystem is resumed in a
819 * coordinated fashion ASoC devices should resume themselves when called
820 * by ASoC. When the standard kernel resume process asks the device
821 * to resume it should call this function. Once all the components of
822 * the card have notified that they are ready to be resumed the card
823 * will be resumed.
824 *
825 * \note Currently this function is stubbed out.
826 */
827int snd_soc_resume_device(struct device *dev)
828{
829 return 0;
830}
831EXPORT_SYMBOL_GPL(snd_soc_resume_device);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200832#else
833#define soc_suspend NULL
834#define soc_resume NULL
835#endif
836
Barry Song02a06d32009-10-16 18:13:38 +0800837static struct snd_soc_dai_ops null_dai_ops = {
838};
839
Mark Brown435c5e22008-12-04 15:32:53 +0000840static void snd_soc_instantiate_card(struct snd_soc_card *card)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200841{
Mark Brown435c5e22008-12-04 15:32:53 +0000842 struct platform_device *pdev = container_of(card->dev,
843 struct platform_device,
844 dev);
845 struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev;
846 struct snd_soc_platform *platform;
847 struct snd_soc_dai *dai;
Mark Brown6b05eda2008-12-08 19:26:48 +0000848 int i, found, ret, ac97;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200849
Mark Brown435c5e22008-12-04 15:32:53 +0000850 if (card->instantiated)
851 return;
Mark Brown63084192008-12-02 15:08:03 +0000852
Mark Brown435c5e22008-12-04 15:32:53 +0000853 found = 0;
854 list_for_each_entry(platform, &platform_list, list)
855 if (card->platform == platform) {
856 found = 1;
857 break;
858 }
859 if (!found) {
860 dev_dbg(card->dev, "Platform %s not registered\n",
861 card->platform->name);
862 return;
Mark Brownc5af3a22008-11-28 13:29:45 +0000863 }
864
Mark Brown6b05eda2008-12-08 19:26:48 +0000865 ac97 = 0;
Mark Brown435c5e22008-12-04 15:32:53 +0000866 for (i = 0; i < card->num_links; i++) {
867 found = 0;
868 list_for_each_entry(dai, &dai_list, list)
869 if (card->dai_link[i].cpu_dai == dai) {
870 found = 1;
871 break;
872 }
873 if (!found) {
874 dev_dbg(card->dev, "DAI %s not registered\n",
875 card->dai_link[i].cpu_dai->name);
876 return;
877 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000878
879 if (card->dai_link[i].cpu_dai->ac97_control)
880 ac97 = 1;
Mark Brown435c5e22008-12-04 15:32:53 +0000881 }
882
Barry Song02a06d32009-10-16 18:13:38 +0800883 for (i = 0; i < card->num_links; i++) {
884 if (!card->dai_link[i].codec_dai->ops)
885 card->dai_link[i].codec_dai->ops = &null_dai_ops;
886 }
887
Mark Brown6b05eda2008-12-08 19:26:48 +0000888 /* If we have AC97 in the system then don't wait for the
889 * codec. This will need revisiting if we have to handle
890 * systems with mixed AC97 and non-AC97 parts. Only check for
891 * DAIs currently; we can't do this per link since some AC97
892 * codecs have non-AC97 DAIs.
893 */
894 if (!ac97)
895 for (i = 0; i < card->num_links; i++) {
896 found = 0;
897 list_for_each_entry(dai, &dai_list, list)
898 if (card->dai_link[i].codec_dai == dai) {
899 found = 1;
900 break;
901 }
902 if (!found) {
903 dev_dbg(card->dev, "DAI %s not registered\n",
904 card->dai_link[i].codec_dai->name);
905 return;
906 }
907 }
908
Mark Brown435c5e22008-12-04 15:32:53 +0000909 /* Note that we do not current check for codec components */
910
911 dev_dbg(card->dev, "All components present, instantiating\n");
912
913 /* Found everything, bring it up */
Mark Brown87506542008-11-18 20:50:34 +0000914 if (card->probe) {
915 ret = card->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200916 if (ret < 0)
Mark Brown435c5e22008-12-04 15:32:53 +0000917 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200918 }
919
Mark Brown87506542008-11-18 20:50:34 +0000920 for (i = 0; i < card->num_links; i++) {
921 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200922 if (cpu_dai->probe) {
Mark Brownbdb92872008-06-11 13:47:10 +0100923 ret = cpu_dai->probe(pdev, cpu_dai);
Mark Brown3ff3f642008-05-19 12:32:25 +0200924 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200925 goto cpu_dai_err;
926 }
927 }
928
929 if (codec_dev->probe) {
930 ret = codec_dev->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200931 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200932 goto cpu_dai_err;
933 }
934
935 if (platform->probe) {
936 ret = platform->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200937 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200938 goto platform_err;
939 }
940
941 /* DAPM stream work */
Mark Brown63084192008-12-02 15:08:03 +0000942 INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
Randy Dunlap1301a962008-06-17 19:19:34 +0100943#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +0100944 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +0000945 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +0100946#endif
Andy Green6ed25972008-06-13 16:24:05 +0100947
Mark Brown435c5e22008-12-04 15:32:53 +0000948 card->instantiated = 1;
949
950 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200951
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200952platform_err:
953 if (codec_dev->remove)
954 codec_dev->remove(pdev);
955
956cpu_dai_err:
Liam Girdwood18b9b3d2007-01-30 17:18:45 +0100957 for (i--; i >= 0; i--) {
Mark Brown87506542008-11-18 20:50:34 +0000958 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200959 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +0100960 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200961 }
962
Mark Brown87506542008-11-18 20:50:34 +0000963 if (card->remove)
964 card->remove(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +0000965}
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200966
Mark Brown435c5e22008-12-04 15:32:53 +0000967/*
968 * Attempt to initialise any uninitalised cards. Must be called with
969 * client_mutex.
970 */
971static void snd_soc_instantiate_cards(void)
972{
973 struct snd_soc_card *card;
974 list_for_each_entry(card, &card_list, list)
975 snd_soc_instantiate_card(card);
976}
977
978/* probes a new socdev */
979static int soc_probe(struct platform_device *pdev)
980{
981 int ret = 0;
982 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
983 struct snd_soc_card *card = socdev->card;
984
985 /* Bodge while we push things out of socdev */
986 card->socdev = socdev;
987
988 /* Bodge while we unpick instantiation */
989 card->dev = &pdev->dev;
990 ret = snd_soc_register_card(card);
991 if (ret != 0) {
992 dev_err(&pdev->dev, "Failed to register card\n");
993 return ret;
994 }
995
996 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200997}
998
999/* removes a socdev */
1000static int soc_remove(struct platform_device *pdev)
1001{
1002 int i;
1003 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +00001004 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +00001005 struct snd_soc_platform *platform = card->platform;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001006 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
1007
Mike Rapoport914dc182009-05-11 13:04:55 +03001008 if (!card->instantiated)
1009 return 0;
1010
Mark Brown63084192008-12-02 15:08:03 +00001011 run_delayed_work(&card->delayed_work);
Liam Girdwood965ac422007-01-31 14:14:57 +01001012
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001013 if (platform->remove)
1014 platform->remove(pdev);
1015
1016 if (codec_dev->remove)
1017 codec_dev->remove(pdev);
1018
Mark Brown87506542008-11-18 20:50:34 +00001019 for (i = 0; i < card->num_links; i++) {
1020 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001021 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +01001022 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001023 }
1024
Mark Brown87506542008-11-18 20:50:34 +00001025 if (card->remove)
1026 card->remove(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001027
Mark Brownc5af3a22008-11-28 13:29:45 +00001028 snd_soc_unregister_card(card);
1029
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001030 return 0;
1031}
1032
Mark Brown416356f2009-06-30 19:05:15 +01001033static int soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001034{
Mark Brown416356f2009-06-30 19:05:15 +01001035 struct platform_device *pdev = to_platform_device(dev);
Mark Brown51737472009-06-22 13:16:51 +01001036 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1037 struct snd_soc_card *card = socdev->card;
1038
1039 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001040 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001041
1042 /* Flush out pmdown_time work - we actually do want to run it
1043 * now, we're shutting down so no imminent restart. */
1044 run_delayed_work(&card->delayed_work);
1045
1046 snd_soc_dapm_shutdown(socdev);
Mark Brown416356f2009-06-30 19:05:15 +01001047
1048 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001049}
1050
Mark Brown416356f2009-06-30 19:05:15 +01001051static struct dev_pm_ops soc_pm_ops = {
1052 .suspend = soc_suspend,
1053 .resume = soc_resume,
1054 .poweroff = soc_poweroff,
1055};
1056
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001057/* ASoC platform driver */
1058static struct platform_driver soc_driver = {
1059 .driver = {
1060 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001061 .owner = THIS_MODULE,
Mark Brown416356f2009-06-30 19:05:15 +01001062 .pm = &soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001063 },
1064 .probe = soc_probe,
1065 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001066};
1067
1068/* create a new pcm */
1069static int soc_new_pcm(struct snd_soc_device *socdev,
1070 struct snd_soc_dai_link *dai_link, int num)
1071{
Mark Brown87689d52008-12-02 16:01:14 +00001072 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001073 struct snd_soc_codec *codec = card->codec;
Mark Brown87689d52008-12-02 16:01:14 +00001074 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001075 struct snd_soc_dai *codec_dai = dai_link->codec_dai;
1076 struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001077 struct snd_soc_pcm_runtime *rtd;
1078 struct snd_pcm *pcm;
1079 char new_name[64];
1080 int ret = 0, playback = 0, capture = 0;
1081
1082 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
1083 if (rtd == NULL)
1084 return -ENOMEM;
Liam Girdwoodcb666e52007-02-02 17:13:49 +01001085
1086 rtd->dai = dai_link;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001087 rtd->socdev = socdev;
Mark Brown6627a652009-01-23 22:55:23 +00001088 codec_dai->codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001089
1090 /* check client and interface hw capabilities */
Mark Brown3ba9e10a2008-11-24 18:01:05 +00001091 sprintf(new_name, "%s %s-%d", dai_link->stream_name, codec_dai->name,
1092 num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001093
1094 if (codec_dai->playback.channels_min)
1095 playback = 1;
1096 if (codec_dai->capture.channels_min)
1097 capture = 1;
1098
1099 ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
1100 capture, &pcm);
1101 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001102 printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
1103 codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001104 kfree(rtd);
1105 return ret;
1106 }
1107
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001108 dai_link->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001109 pcm->private_data = rtd;
Mark Brown87689d52008-12-02 16:01:14 +00001110 soc_pcm_ops.mmap = platform->pcm_ops->mmap;
1111 soc_pcm_ops.pointer = platform->pcm_ops->pointer;
1112 soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
1113 soc_pcm_ops.copy = platform->pcm_ops->copy;
1114 soc_pcm_ops.silence = platform->pcm_ops->silence;
1115 soc_pcm_ops.ack = platform->pcm_ops->ack;
1116 soc_pcm_ops.page = platform->pcm_ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001117
1118 if (playback)
1119 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
1120
1121 if (capture)
1122 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
1123
Mark Brown87689d52008-12-02 16:01:14 +00001124 ret = platform->pcm_new(codec->card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001125 if (ret < 0) {
1126 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
1127 kfree(rtd);
1128 return ret;
1129 }
1130
Mark Brown87689d52008-12-02 16:01:14 +00001131 pcm->private_free = platform->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001132 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
1133 cpu_dai->name);
1134 return ret;
1135}
1136
Mark Brown096e49d2009-07-05 15:12:22 +01001137/**
1138 * snd_soc_codec_volatile_register: Report if a register is volatile.
1139 *
1140 * @codec: CODEC to query.
1141 * @reg: Register to query.
1142 *
1143 * Boolean function indiciating if a CODEC register is volatile.
1144 */
1145int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
1146{
1147 if (codec->volatile_register)
1148 return codec->volatile_register(reg);
1149 else
1150 return 0;
1151}
1152EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1153
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001154/* codec register dump */
Mark Brown6627a652009-01-23 22:55:23 +00001155static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001156{
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001157 int i, step = 1, count = 0;
1158
1159 if (!codec->reg_cache_size)
1160 return 0;
1161
1162 if (codec->reg_cache_step)
1163 step = codec->reg_cache_step;
1164
1165 count += sprintf(buf, "%s registers\n", codec->name);
Mark Brown58cd33c2008-07-29 11:42:25 +01001166 for (i = 0; i < codec->reg_cache_size; i += step) {
Mark Brown77ee09c2009-07-31 18:26:51 +01001167 if (codec->readable_register && !codec->readable_register(i))
1168 continue;
1169
Mark Brown58cd33c2008-07-29 11:42:25 +01001170 count += sprintf(buf + count, "%2x: ", i);
1171 if (count >= PAGE_SIZE - 1)
1172 break;
1173
1174 if (codec->display_register)
1175 count += codec->display_register(codec, buf + count,
1176 PAGE_SIZE - count, i);
1177 else
1178 count += snprintf(buf + count, PAGE_SIZE - count,
1179 "%4x", codec->read(codec, i));
1180
1181 if (count >= PAGE_SIZE - 1)
1182 break;
1183
1184 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
1185 if (count >= PAGE_SIZE - 1)
1186 break;
1187 }
1188
1189 /* Truncate count; min() would cause a warning */
1190 if (count >= PAGE_SIZE)
1191 count = PAGE_SIZE - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001192
1193 return count;
1194}
Troy Kisky12ef1932008-10-13 17:42:14 -07001195static ssize_t codec_reg_show(struct device *dev,
1196 struct device_attribute *attr, char *buf)
1197{
1198 struct snd_soc_device *devdata = dev_get_drvdata(dev);
Mark Brown6627a652009-01-23 22:55:23 +00001199 return soc_codec_reg_show(devdata->card->codec, buf);
Troy Kisky12ef1932008-10-13 17:42:14 -07001200}
1201
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001202static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
1203
Troy Kisky12ef1932008-10-13 17:42:14 -07001204#ifdef CONFIG_DEBUG_FS
1205static int codec_reg_open_file(struct inode *inode, struct file *file)
1206{
1207 file->private_data = inode->i_private;
1208 return 0;
1209}
1210
1211static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
1212 size_t count, loff_t *ppos)
1213{
1214 ssize_t ret;
Mark Brown384c89e2008-12-03 17:34:03 +00001215 struct snd_soc_codec *codec = file->private_data;
Troy Kisky12ef1932008-10-13 17:42:14 -07001216 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1217 if (!buf)
1218 return -ENOMEM;
Mark Brown6627a652009-01-23 22:55:23 +00001219 ret = soc_codec_reg_show(codec, buf);
Troy Kisky12ef1932008-10-13 17:42:14 -07001220 if (ret >= 0)
1221 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1222 kfree(buf);
1223 return ret;
1224}
1225
1226static ssize_t codec_reg_write_file(struct file *file,
1227 const char __user *user_buf, size_t count, loff_t *ppos)
1228{
1229 char buf[32];
1230 int buf_size;
1231 char *start = buf;
1232 unsigned long reg, value;
1233 int step = 1;
Mark Brown384c89e2008-12-03 17:34:03 +00001234 struct snd_soc_codec *codec = file->private_data;
Troy Kisky12ef1932008-10-13 17:42:14 -07001235
1236 buf_size = min(count, (sizeof(buf)-1));
1237 if (copy_from_user(buf, user_buf, buf_size))
1238 return -EFAULT;
1239 buf[buf_size] = 0;
1240
1241 if (codec->reg_cache_step)
1242 step = codec->reg_cache_step;
1243
1244 while (*start == ' ')
1245 start++;
1246 reg = simple_strtoul(start, &start, 16);
1247 if ((reg >= codec->reg_cache_size) || (reg % step))
1248 return -EINVAL;
1249 while (*start == ' ')
1250 start++;
1251 if (strict_strtoul(start, 16, &value))
1252 return -EINVAL;
1253 codec->write(codec, reg, value);
1254 return buf_size;
1255}
1256
1257static const struct file_operations codec_reg_fops = {
1258 .open = codec_reg_open_file,
1259 .read = codec_reg_read_file,
1260 .write = codec_reg_write_file,
1261};
1262
Mark Brown384c89e2008-12-03 17:34:03 +00001263static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001264{
Mark Brown384c89e2008-12-03 17:34:03 +00001265 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
1266 debugfs_root, codec,
1267 &codec_reg_fops);
1268 if (!codec->debugfs_reg)
1269 printk(KERN_WARNING
1270 "ASoC: Failed to create codec register debugfs file\n");
Troy Kisky12ef1932008-10-13 17:42:14 -07001271
Mark Brown384c89e2008-12-03 17:34:03 +00001272 codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0744,
1273 debugfs_root,
1274 &codec->pop_time);
1275 if (!codec->debugfs_pop_time)
1276 printk(KERN_WARNING
1277 "Failed to create pop time debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01001278
1279 codec->debugfs_dapm = debugfs_create_dir("dapm", debugfs_root);
1280 if (!codec->debugfs_dapm)
1281 printk(KERN_WARNING
1282 "Failed to create DAPM debugfs directory\n");
1283
1284 snd_soc_dapm_debugfs_init(codec);
Troy Kisky12ef1932008-10-13 17:42:14 -07001285}
1286
Mark Brown384c89e2008-12-03 17:34:03 +00001287static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001288{
Mark Brown79fb9382009-08-21 16:38:13 +01001289 debugfs_remove_recursive(codec->debugfs_dapm);
Mark Brown384c89e2008-12-03 17:34:03 +00001290 debugfs_remove(codec->debugfs_pop_time);
1291 debugfs_remove(codec->debugfs_reg);
Troy Kisky12ef1932008-10-13 17:42:14 -07001292}
1293
1294#else
1295
Mark Brown384c89e2008-12-03 17:34:03 +00001296static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001297{
1298}
1299
Mark Brown384c89e2008-12-03 17:34:03 +00001300static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001301{
1302}
1303#endif
1304
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001305/**
1306 * snd_soc_new_ac97_codec - initailise AC97 device
1307 * @codec: audio codec
1308 * @ops: AC97 bus operations
1309 * @num: AC97 codec number
1310 *
1311 * Initialises AC97 codec resources for use by ad-hoc devices only.
1312 */
1313int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1314 struct snd_ac97_bus_ops *ops, int num)
1315{
1316 mutex_lock(&codec->mutex);
1317
1318 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1319 if (codec->ac97 == NULL) {
1320 mutex_unlock(&codec->mutex);
1321 return -ENOMEM;
1322 }
1323
1324 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1325 if (codec->ac97->bus == NULL) {
1326 kfree(codec->ac97);
1327 codec->ac97 = NULL;
1328 mutex_unlock(&codec->mutex);
1329 return -ENOMEM;
1330 }
1331
1332 codec->ac97->bus->ops = ops;
1333 codec->ac97->num = num;
1334 mutex_unlock(&codec->mutex);
1335 return 0;
1336}
1337EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1338
1339/**
1340 * snd_soc_free_ac97_codec - free AC97 codec device
1341 * @codec: audio codec
1342 *
1343 * Frees AC97 codec device resources.
1344 */
1345void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1346{
1347 mutex_lock(&codec->mutex);
1348 kfree(codec->ac97->bus);
1349 kfree(codec->ac97);
1350 codec->ac97 = NULL;
1351 mutex_unlock(&codec->mutex);
1352}
1353EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1354
1355/**
1356 * snd_soc_update_bits - update codec register bits
1357 * @codec: audio codec
1358 * @reg: codec register
1359 * @mask: register mask
1360 * @value: new value
1361 *
1362 * Writes new register value.
1363 *
1364 * Returns 1 for change else 0.
1365 */
1366int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001367 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001368{
1369 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001370 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001371
1372 mutex_lock(&io_mutex);
1373 old = snd_soc_read(codec, reg);
1374 new = (old & ~mask) | value;
1375 change = old != new;
1376 if (change)
1377 snd_soc_write(codec, reg, new);
1378
1379 mutex_unlock(&io_mutex);
1380 return change;
1381}
1382EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1383
1384/**
1385 * snd_soc_test_bits - test register for change
1386 * @codec: audio codec
1387 * @reg: codec register
1388 * @mask: register mask
1389 * @value: new value
1390 *
1391 * Tests a register with a new value and checks if the new value is
1392 * different from the old value.
1393 *
1394 * Returns 1 for change else 0.
1395 */
1396int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001397 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001398{
1399 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001400 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001401
1402 mutex_lock(&io_mutex);
1403 old = snd_soc_read(codec, reg);
1404 new = (old & ~mask) | value;
1405 change = old != new;
1406 mutex_unlock(&io_mutex);
1407
1408 return change;
1409}
1410EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1411
1412/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001413 * snd_soc_new_pcms - create new sound card and pcms
1414 * @socdev: the SoC audio device
Mark Brownac11a2b2009-01-01 12:18:17 +00001415 * @idx: ALSA card index
1416 * @xid: card identification
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001417 *
1418 * Create a new sound card based upon the codec and interface pcms.
1419 *
1420 * Returns 0 for success, else error.
1421 */
Liam Girdwoodbc7320c2007-02-01 12:26:07 +01001422int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001423{
Mark Brown87506542008-11-18 20:50:34 +00001424 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001425 struct snd_soc_codec *codec = card->codec;
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001426 int ret, i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001427
1428 mutex_lock(&codec->mutex);
1429
1430 /* register a sound card */
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001431 ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
1432 if (ret < 0) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001433 printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
1434 codec->name);
1435 mutex_unlock(&codec->mutex);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001436 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001437 }
1438
Mark Brown452c5ea2009-05-17 21:41:23 +01001439 codec->socdev = socdev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001440 codec->card->dev = socdev->dev;
1441 codec->card->private_data = codec;
1442 strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
1443
1444 /* create the pcms */
Mark Brown87506542008-11-18 20:50:34 +00001445 for (i = 0; i < card->num_links; i++) {
1446 ret = soc_new_pcm(socdev, &card->dai_link[i], i);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001447 if (ret < 0) {
1448 printk(KERN_ERR "asoc: can't create pcm %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001449 card->dai_link[i].stream_name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001450 mutex_unlock(&codec->mutex);
1451 return ret;
1452 }
1453 }
1454
1455 mutex_unlock(&codec->mutex);
1456 return ret;
1457}
1458EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
1459
1460/**
Mark Brown968a6022008-11-28 11:49:07 +00001461 * snd_soc_init_card - register sound card
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001462 * @socdev: the SoC audio device
1463 *
1464 * Register a SoC sound card. Also registers an AC97 device if the
1465 * codec is AC97 for ad hoc devices.
1466 *
1467 * Returns 0 for success, else error.
1468 */
Mark Brown968a6022008-11-28 11:49:07 +00001469int snd_soc_init_card(struct snd_soc_device *socdev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001470{
Mark Brown87506542008-11-18 20:50:34 +00001471 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001472 struct snd_soc_codec *codec = card->codec;
Liam Girdwood12e74f72006-10-16 21:19:48 +02001473 int ret = 0, i, ac97 = 0, err = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001474
Mark Brown87506542008-11-18 20:50:34 +00001475 for (i = 0; i < card->num_links; i++) {
1476 if (card->dai_link[i].init) {
1477 err = card->dai_link[i].init(codec);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001478 if (err < 0) {
1479 printk(KERN_ERR "asoc: failed to init %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001480 card->dai_link[i].stream_name);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001481 continue;
1482 }
1483 }
Marek Vasut474828a2009-07-22 13:01:03 +02001484 if (card->dai_link[i].codec_dai->ac97_control) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001485 ac97 = 1;
Marek Vasut474828a2009-07-22 13:01:03 +02001486 snd_ac97_dev_add_pdata(codec->ac97,
1487 card->dai_link[i].cpu_dai->ac97_pdata);
1488 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001489 }
1490 snprintf(codec->card->shortname, sizeof(codec->card->shortname),
Mark Brown87506542008-11-18 20:50:34 +00001491 "%s", card->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001492 snprintf(codec->card->longname, sizeof(codec->card->longname),
Mark Brown87506542008-11-18 20:50:34 +00001493 "%s (%s)", card->name, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001494
Mark Brown6d5701b2009-06-14 11:33:37 +01001495 /* Make sure all DAPM widgets are instantiated */
1496 snd_soc_dapm_new_widgets(codec);
1497
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001498 ret = snd_card_register(codec->card);
1499 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001500 printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001501 codec->name);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001502 goto out;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001503 }
1504
Mark Brown08c8efe2008-01-21 14:33:37 +01001505 mutex_lock(&codec->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001506#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown14fa43f2009-02-12 19:33:19 +00001507 /* Only instantiate AC97 if not already done by the adaptor
1508 * for the generic AC97 subsystem.
1509 */
1510 if (ac97 && strcmp(codec->name, "AC97") != 0) {
Liam Girdwood12e74f72006-10-16 21:19:48 +02001511 ret = soc_ac97_dev_register(codec);
1512 if (ret < 0) {
1513 printk(KERN_ERR "asoc: AC97 device register failed\n");
1514 snd_card_free(codec->card);
Mark Brown08c8efe2008-01-21 14:33:37 +01001515 mutex_unlock(&codec->mutex);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001516 goto out;
1517 }
1518 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001519#endif
1520
Liam Girdwood12e74f72006-10-16 21:19:48 +02001521 err = snd_soc_dapm_sys_add(socdev->dev);
1522 if (err < 0)
1523 printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
1524
1525 err = device_create_file(socdev->dev, &dev_attr_codec_reg);
1526 if (err < 0)
Mark Brown3ff3f642008-05-19 12:32:25 +02001527 printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
Mark Brown08c8efe2008-01-21 14:33:37 +01001528
Mark Brown6627a652009-01-23 22:55:23 +00001529 soc_init_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001530 mutex_unlock(&codec->mutex);
Mark Brown08c8efe2008-01-21 14:33:37 +01001531
1532out:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001533 return ret;
1534}
Mark Brown968a6022008-11-28 11:49:07 +00001535EXPORT_SYMBOL_GPL(snd_soc_init_card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001536
1537/**
1538 * snd_soc_free_pcms - free sound card and pcms
1539 * @socdev: the SoC audio device
1540 *
1541 * Frees sound card and pcms associated with the socdev.
1542 * Also unregister the codec if it is an AC97 device.
1543 */
1544void snd_soc_free_pcms(struct snd_soc_device *socdev)
1545{
Mark Brown6627a652009-01-23 22:55:23 +00001546 struct snd_soc_codec *codec = socdev->card->codec;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001547#ifdef CONFIG_SND_SOC_AC97_BUS
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001548 struct snd_soc_dai *codec_dai;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001549 int i;
1550#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001551
1552 mutex_lock(&codec->mutex);
Mark Brown6627a652009-01-23 22:55:23 +00001553 soc_cleanup_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001554#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown3ff3f642008-05-19 12:32:25 +02001555 for (i = 0; i < codec->num_dai; i++) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001556 codec_dai = &codec->dai[i];
Atsushi Nemotod2314e02009-03-16 23:26:20 +09001557 if (codec_dai->ac97_control && codec->ac97 &&
1558 strcmp(codec->name, "AC97") != 0) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001559 soc_ac97_dev_unregister(codec);
1560 goto free_card;
1561 }
1562 }
1563free_card:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001564#endif
1565
1566 if (codec->card)
1567 snd_card_free(codec->card);
1568 device_remove_file(socdev->dev, &dev_attr_codec_reg);
1569 mutex_unlock(&codec->mutex);
1570}
1571EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
1572
1573/**
1574 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1575 * @substream: the pcm substream
1576 * @hw: the hardware parameters
1577 *
1578 * Sets the substream runtime hardware parameters.
1579 */
1580int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1581 const struct snd_pcm_hardware *hw)
1582{
1583 struct snd_pcm_runtime *runtime = substream->runtime;
1584 runtime->hw.info = hw->info;
1585 runtime->hw.formats = hw->formats;
1586 runtime->hw.period_bytes_min = hw->period_bytes_min;
1587 runtime->hw.period_bytes_max = hw->period_bytes_max;
1588 runtime->hw.periods_min = hw->periods_min;
1589 runtime->hw.periods_max = hw->periods_max;
1590 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1591 runtime->hw.fifo_size = hw->fifo_size;
1592 return 0;
1593}
1594EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1595
1596/**
1597 * snd_soc_cnew - create new control
1598 * @_template: control template
1599 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001600 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001601 *
1602 * Create a new mixer control from a template control.
1603 *
1604 * Returns 0 for success, else error.
1605 */
1606struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
1607 void *data, char *long_name)
1608{
1609 struct snd_kcontrol_new template;
1610
1611 memcpy(&template, _template, sizeof(template));
1612 if (long_name)
1613 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001614 template.index = 0;
1615
1616 return snd_ctl_new1(&template, data);
1617}
1618EXPORT_SYMBOL_GPL(snd_soc_cnew);
1619
1620/**
Ian Molton3e8e1952009-01-09 00:23:21 +00001621 * snd_soc_add_controls - add an array of controls to a codec.
1622 * Convienience function to add a list of controls. Many codecs were
1623 * duplicating this code.
1624 *
1625 * @codec: codec to add controls to
1626 * @controls: array of controls to add
1627 * @num_controls: number of elements in the array
1628 *
1629 * Return 0 for success, else error.
1630 */
1631int snd_soc_add_controls(struct snd_soc_codec *codec,
1632 const struct snd_kcontrol_new *controls, int num_controls)
1633{
1634 struct snd_card *card = codec->card;
1635 int err, i;
1636
1637 for (i = 0; i < num_controls; i++) {
1638 const struct snd_kcontrol_new *control = &controls[i];
1639 err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
1640 if (err < 0) {
1641 dev_err(codec->dev, "%s: Failed to add %s\n",
1642 codec->name, control->name);
1643 return err;
1644 }
1645 }
1646
1647 return 0;
1648}
1649EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1650
1651/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001652 * snd_soc_info_enum_double - enumerated double mixer info callback
1653 * @kcontrol: mixer control
1654 * @uinfo: control element information
1655 *
1656 * Callback to provide information about a double enumerated
1657 * mixer control.
1658 *
1659 * Returns 0 for success.
1660 */
1661int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
1662 struct snd_ctl_elem_info *uinfo)
1663{
1664 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1665
1666 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1667 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001668 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001669
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001670 if (uinfo->value.enumerated.item > e->max - 1)
1671 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001672 strcpy(uinfo->value.enumerated.name,
1673 e->texts[uinfo->value.enumerated.item]);
1674 return 0;
1675}
1676EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
1677
1678/**
1679 * snd_soc_get_enum_double - enumerated double mixer get callback
1680 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001681 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001682 *
1683 * Callback to get the value of a double enumerated mixer.
1684 *
1685 * Returns 0 for success.
1686 */
1687int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
1688 struct snd_ctl_elem_value *ucontrol)
1689{
1690 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1691 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001692 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001693
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001694 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001695 ;
1696 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02001697 ucontrol->value.enumerated.item[0]
1698 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001699 if (e->shift_l != e->shift_r)
1700 ucontrol->value.enumerated.item[1] =
1701 (val >> e->shift_r) & (bitmask - 1);
1702
1703 return 0;
1704}
1705EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
1706
1707/**
1708 * snd_soc_put_enum_double - enumerated double mixer put callback
1709 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001710 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001711 *
1712 * Callback to set the value of a double enumerated mixer.
1713 *
1714 * Returns 0 for success.
1715 */
1716int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
1717 struct snd_ctl_elem_value *ucontrol)
1718{
1719 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1720 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001721 unsigned int val;
1722 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001723
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001724 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001725 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001726 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001727 return -EINVAL;
1728 val = ucontrol->value.enumerated.item[0] << e->shift_l;
1729 mask = (bitmask - 1) << e->shift_l;
1730 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001731 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001732 return -EINVAL;
1733 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1734 mask |= (bitmask - 1) << e->shift_r;
1735 }
1736
1737 return snd_soc_update_bits(codec, e->reg, mask, val);
1738}
1739EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
1740
1741/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001742 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1743 * @kcontrol: mixer control
1744 * @ucontrol: control element information
1745 *
1746 * Callback to get the value of a double semi enumerated mixer.
1747 *
1748 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1749 * used for handling bitfield coded enumeration for example.
1750 *
1751 * Returns 0 for success.
1752 */
1753int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
1754 struct snd_ctl_elem_value *ucontrol)
1755{
1756 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001757 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001758 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001759
1760 reg_val = snd_soc_read(codec, e->reg);
1761 val = (reg_val >> e->shift_l) & e->mask;
1762 for (mux = 0; mux < e->max; mux++) {
1763 if (val == e->values[mux])
1764 break;
1765 }
1766 ucontrol->value.enumerated.item[0] = mux;
1767 if (e->shift_l != e->shift_r) {
1768 val = (reg_val >> e->shift_r) & e->mask;
1769 for (mux = 0; mux < e->max; mux++) {
1770 if (val == e->values[mux])
1771 break;
1772 }
1773 ucontrol->value.enumerated.item[1] = mux;
1774 }
1775
1776 return 0;
1777}
1778EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
1779
1780/**
1781 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1782 * @kcontrol: mixer control
1783 * @ucontrol: control element information
1784 *
1785 * Callback to set the value of a double semi enumerated mixer.
1786 *
1787 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1788 * used for handling bitfield coded enumeration for example.
1789 *
1790 * Returns 0 for success.
1791 */
1792int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
1793 struct snd_ctl_elem_value *ucontrol)
1794{
1795 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001796 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001797 unsigned int val;
1798 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001799
1800 if (ucontrol->value.enumerated.item[0] > e->max - 1)
1801 return -EINVAL;
1802 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1803 mask = e->mask << e->shift_l;
1804 if (e->shift_l != e->shift_r) {
1805 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1806 return -EINVAL;
1807 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1808 mask |= e->mask << e->shift_r;
1809 }
1810
1811 return snd_soc_update_bits(codec, e->reg, mask, val);
1812}
1813EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
1814
1815/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001816 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1817 * @kcontrol: mixer control
1818 * @uinfo: control element information
1819 *
1820 * Callback to provide information about an external enumerated
1821 * single mixer.
1822 *
1823 * Returns 0 for success.
1824 */
1825int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
1826 struct snd_ctl_elem_info *uinfo)
1827{
1828 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1829
1830 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1831 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001832 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001833
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001834 if (uinfo->value.enumerated.item > e->max - 1)
1835 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001836 strcpy(uinfo->value.enumerated.name,
1837 e->texts[uinfo->value.enumerated.item]);
1838 return 0;
1839}
1840EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
1841
1842/**
1843 * snd_soc_info_volsw_ext - external single mixer info callback
1844 * @kcontrol: mixer control
1845 * @uinfo: control element information
1846 *
1847 * Callback to provide information about a single external mixer control.
1848 *
1849 * Returns 0 for success.
1850 */
1851int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
1852 struct snd_ctl_elem_info *uinfo)
1853{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001854 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001855
Mark Brownfd5dfad2009-04-15 21:37:46 +01001856 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001857 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1858 else
1859 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1860
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001861 uinfo->count = 1;
1862 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001863 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001864 return 0;
1865}
1866EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
1867
1868/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001869 * snd_soc_info_volsw - single mixer info callback
1870 * @kcontrol: mixer control
1871 * @uinfo: control element information
1872 *
1873 * Callback to provide information about a single mixer control.
1874 *
1875 * Returns 0 for success.
1876 */
1877int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
1878 struct snd_ctl_elem_info *uinfo)
1879{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001880 struct soc_mixer_control *mc =
1881 (struct soc_mixer_control *)kcontrol->private_value;
1882 int max = mc->max;
Mark Brown762b8df2008-10-30 12:37:08 +00001883 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001884 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001885
Mark Brownfd5dfad2009-04-15 21:37:46 +01001886 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001887 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1888 else
1889 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1890
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001891 uinfo->count = shift == rshift ? 1 : 2;
1892 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001893 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001894 return 0;
1895}
1896EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
1897
1898/**
1899 * snd_soc_get_volsw - single mixer get callback
1900 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001901 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001902 *
1903 * Callback to get the value of a single mixer control.
1904 *
1905 * Returns 0 for success.
1906 */
1907int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
1908 struct snd_ctl_elem_value *ucontrol)
1909{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001910 struct soc_mixer_control *mc =
1911 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001912 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001913 unsigned int reg = mc->reg;
1914 unsigned int shift = mc->shift;
1915 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001916 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001917 unsigned int mask = (1 << fls(max)) - 1;
1918 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001919
1920 ucontrol->value.integer.value[0] =
1921 (snd_soc_read(codec, reg) >> shift) & mask;
1922 if (shift != rshift)
1923 ucontrol->value.integer.value[1] =
1924 (snd_soc_read(codec, reg) >> rshift) & mask;
1925 if (invert) {
1926 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001927 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001928 if (shift != rshift)
1929 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001930 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001931 }
1932
1933 return 0;
1934}
1935EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
1936
1937/**
1938 * snd_soc_put_volsw - single mixer put callback
1939 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001940 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001941 *
1942 * Callback to set the value of a single mixer control.
1943 *
1944 * Returns 0 for success.
1945 */
1946int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
1947 struct snd_ctl_elem_value *ucontrol)
1948{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001949 struct soc_mixer_control *mc =
1950 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001951 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001952 unsigned int reg = mc->reg;
1953 unsigned int shift = mc->shift;
1954 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001955 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001956 unsigned int mask = (1 << fls(max)) - 1;
1957 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001958 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001959
1960 val = (ucontrol->value.integer.value[0] & mask);
1961 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001962 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001963 val_mask = mask << shift;
1964 val = val << shift;
1965 if (shift != rshift) {
1966 val2 = (ucontrol->value.integer.value[1] & mask);
1967 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001968 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001969 val_mask |= mask << rshift;
1970 val |= val2 << rshift;
1971 }
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001972 return snd_soc_update_bits(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001973}
1974EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
1975
1976/**
1977 * snd_soc_info_volsw_2r - double mixer info callback
1978 * @kcontrol: mixer control
1979 * @uinfo: control element information
1980 *
1981 * Callback to provide information about a double mixer control that
1982 * spans 2 codec registers.
1983 *
1984 * Returns 0 for success.
1985 */
1986int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
1987 struct snd_ctl_elem_info *uinfo)
1988{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001989 struct soc_mixer_control *mc =
1990 (struct soc_mixer_control *)kcontrol->private_value;
1991 int max = mc->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001992
Mark Brownfd5dfad2009-04-15 21:37:46 +01001993 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001994 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1995 else
1996 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1997
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001998 uinfo->count = 2;
1999 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002000 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002001 return 0;
2002}
2003EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2004
2005/**
2006 * snd_soc_get_volsw_2r - double mixer get callback
2007 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002008 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002009 *
2010 * Callback to get the value of a double mixer control that spans 2 registers.
2011 *
2012 * Returns 0 for success.
2013 */
2014int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2015 struct snd_ctl_elem_value *ucontrol)
2016{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002017 struct soc_mixer_control *mc =
2018 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002019 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002020 unsigned int reg = mc->reg;
2021 unsigned int reg2 = mc->rreg;
2022 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002023 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002024 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002025 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002026
2027 ucontrol->value.integer.value[0] =
2028 (snd_soc_read(codec, reg) >> shift) & mask;
2029 ucontrol->value.integer.value[1] =
2030 (snd_soc_read(codec, reg2) >> shift) & mask;
2031 if (invert) {
2032 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002033 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002034 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002035 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002036 }
2037
2038 return 0;
2039}
2040EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2041
2042/**
2043 * snd_soc_put_volsw_2r - double mixer set callback
2044 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002045 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002046 *
2047 * Callback to set the value of a double mixer control that spans 2 registers.
2048 *
2049 * Returns 0 for success.
2050 */
2051int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2052 struct snd_ctl_elem_value *ucontrol)
2053{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002054 struct soc_mixer_control *mc =
2055 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002056 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002057 unsigned int reg = mc->reg;
2058 unsigned int reg2 = mc->rreg;
2059 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002060 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002061 unsigned int mask = (1 << fls(max)) - 1;
2062 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002063 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002064 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002065
2066 val_mask = mask << shift;
2067 val = (ucontrol->value.integer.value[0] & mask);
2068 val2 = (ucontrol->value.integer.value[1] & mask);
2069
2070 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002071 val = max - val;
2072 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002073 }
2074
2075 val = val << shift;
2076 val2 = val2 << shift;
2077
Mark Brown3ff3f642008-05-19 12:32:25 +02002078 err = snd_soc_update_bits(codec, reg, val_mask, val);
2079 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002080 return err;
2081
2082 err = snd_soc_update_bits(codec, reg2, val_mask, val2);
2083 return err;
2084}
2085EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2086
Mark Browne13ac2e2008-05-28 17:58:05 +01002087/**
2088 * snd_soc_info_volsw_s8 - signed mixer info callback
2089 * @kcontrol: mixer control
2090 * @uinfo: control element information
2091 *
2092 * Callback to provide information about a signed mixer control.
2093 *
2094 * Returns 0 for success.
2095 */
2096int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2097 struct snd_ctl_elem_info *uinfo)
2098{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002099 struct soc_mixer_control *mc =
2100 (struct soc_mixer_control *)kcontrol->private_value;
2101 int max = mc->max;
2102 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002103
2104 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2105 uinfo->count = 2;
2106 uinfo->value.integer.min = 0;
2107 uinfo->value.integer.max = max-min;
2108 return 0;
2109}
2110EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2111
2112/**
2113 * snd_soc_get_volsw_s8 - signed mixer get callback
2114 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002115 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002116 *
2117 * Callback to get the value of a signed mixer control.
2118 *
2119 * Returns 0 for success.
2120 */
2121int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2122 struct snd_ctl_elem_value *ucontrol)
2123{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002124 struct soc_mixer_control *mc =
2125 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002126 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002127 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002128 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002129 int val = snd_soc_read(codec, reg);
2130
2131 ucontrol->value.integer.value[0] =
2132 ((signed char)(val & 0xff))-min;
2133 ucontrol->value.integer.value[1] =
2134 ((signed char)((val >> 8) & 0xff))-min;
2135 return 0;
2136}
2137EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2138
2139/**
2140 * snd_soc_put_volsw_sgn - signed mixer put callback
2141 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002142 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002143 *
2144 * Callback to set the value of a signed mixer control.
2145 *
2146 * Returns 0 for success.
2147 */
2148int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2149 struct snd_ctl_elem_value *ucontrol)
2150{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002151 struct soc_mixer_control *mc =
2152 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002153 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002154 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002155 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002156 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002157
2158 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2159 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2160
2161 return snd_soc_update_bits(codec, reg, 0xffff, val);
2162}
2163EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2164
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002165/**
2166 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2167 * @dai: DAI
2168 * @clk_id: DAI specific clock ID
2169 * @freq: new clock frequency in Hz
2170 * @dir: new clock direction - input/output.
2171 *
2172 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2173 */
2174int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2175 unsigned int freq, int dir)
2176{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002177 if (dai->ops && dai->ops->set_sysclk)
Eric Miao6335d052009-03-03 09:41:00 +08002178 return dai->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002179 else
2180 return -EINVAL;
2181}
2182EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2183
2184/**
2185 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2186 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002187 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002188 * @div: new clock divisor.
2189 *
2190 * Configures the clock dividers. This is used to derive the best DAI bit and
2191 * frame clocks from the system or master clock. It's best to set the DAI bit
2192 * and frame clocks as low as possible to save system power.
2193 */
2194int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2195 int div_id, int div)
2196{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002197 if (dai->ops && dai->ops->set_clkdiv)
Eric Miao6335d052009-03-03 09:41:00 +08002198 return dai->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002199 else
2200 return -EINVAL;
2201}
2202EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2203
2204/**
2205 * snd_soc_dai_set_pll - configure DAI PLL.
2206 * @dai: DAI
2207 * @pll_id: DAI specific PLL ID
2208 * @freq_in: PLL input clock frequency in Hz
2209 * @freq_out: requested PLL output clock frequency in Hz
2210 *
2211 * Configures and enables PLL to generate output clock based on input clock.
2212 */
2213int snd_soc_dai_set_pll(struct snd_soc_dai *dai,
2214 int pll_id, unsigned int freq_in, unsigned int freq_out)
2215{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002216 if (dai->ops && dai->ops->set_pll)
Eric Miao6335d052009-03-03 09:41:00 +08002217 return dai->ops->set_pll(dai, pll_id, freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002218 else
2219 return -EINVAL;
2220}
2221EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2222
2223/**
2224 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2225 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002226 * @fmt: SND_SOC_DAIFMT_ format value.
2227 *
2228 * Configures the DAI hardware format and clocking.
2229 */
2230int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2231{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002232 if (dai->ops && dai->ops->set_fmt)
Eric Miao6335d052009-03-03 09:41:00 +08002233 return dai->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002234 else
2235 return -EINVAL;
2236}
2237EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2238
2239/**
2240 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2241 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002242 * @tx_mask: bitmask representing active TX slots.
2243 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002244 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002245 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002246 *
2247 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2248 * specific.
2249 */
2250int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002251 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002252{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002253 if (dai->ops && dai->ops->set_tdm_slot)
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002254 return dai->ops->set_tdm_slot(dai, tx_mask, rx_mask,
2255 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002256 else
2257 return -EINVAL;
2258}
2259EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2260
2261/**
2262 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2263 * @dai: DAI
2264 * @tristate: tristate enable
2265 *
2266 * Tristates the DAI so that others can use it.
2267 */
2268int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2269{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002270 if (dai->ops && dai->ops->set_tristate)
Eric Miao6335d052009-03-03 09:41:00 +08002271 return dai->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002272 else
2273 return -EINVAL;
2274}
2275EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2276
2277/**
2278 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2279 * @dai: DAI
2280 * @mute: mute enable
2281 *
2282 * Mutes the DAI DAC.
2283 */
2284int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2285{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002286 if (dai->ops && dai->ops->digital_mute)
Eric Miao6335d052009-03-03 09:41:00 +08002287 return dai->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002288 else
2289 return -EINVAL;
2290}
2291EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2292
Mark Brownc5af3a22008-11-28 13:29:45 +00002293/**
2294 * snd_soc_register_card - Register a card with the ASoC core
2295 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002296 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002297 *
2298 * Note that currently this is an internal only function: it will be
2299 * exposed to machine drivers after further backporting of ASoC v2
2300 * registration APIs.
2301 */
2302static int snd_soc_register_card(struct snd_soc_card *card)
2303{
2304 if (!card->name || !card->dev)
2305 return -EINVAL;
2306
2307 INIT_LIST_HEAD(&card->list);
2308 card->instantiated = 0;
2309
2310 mutex_lock(&client_mutex);
2311 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002312 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002313 mutex_unlock(&client_mutex);
2314
2315 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2316
2317 return 0;
2318}
2319
2320/**
2321 * snd_soc_unregister_card - Unregister a card with the ASoC core
2322 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002323 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002324 *
2325 * Note that currently this is an internal only function: it will be
2326 * exposed to machine drivers after further backporting of ASoC v2
2327 * registration APIs.
2328 */
2329static int snd_soc_unregister_card(struct snd_soc_card *card)
2330{
2331 mutex_lock(&client_mutex);
2332 list_del(&card->list);
2333 mutex_unlock(&client_mutex);
2334
2335 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2336
2337 return 0;
2338}
2339
Mark Brown91151712008-11-30 23:31:24 +00002340/**
2341 * snd_soc_register_dai - Register a DAI with the ASoC core
2342 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002343 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00002344 */
2345int snd_soc_register_dai(struct snd_soc_dai *dai)
2346{
2347 if (!dai->name)
2348 return -EINVAL;
2349
2350 /* The device should become mandatory over time */
2351 if (!dai->dev)
2352 printk(KERN_WARNING "No device for DAI %s\n", dai->name);
2353
Eric Miao6335d052009-03-03 09:41:00 +08002354 if (!dai->ops)
2355 dai->ops = &null_dai_ops;
2356
Mark Brown91151712008-11-30 23:31:24 +00002357 INIT_LIST_HEAD(&dai->list);
2358
2359 mutex_lock(&client_mutex);
2360 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002361 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00002362 mutex_unlock(&client_mutex);
2363
2364 pr_debug("Registered DAI '%s'\n", dai->name);
2365
2366 return 0;
2367}
2368EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2369
2370/**
2371 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2372 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002373 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00002374 */
2375void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2376{
2377 mutex_lock(&client_mutex);
2378 list_del(&dai->list);
2379 mutex_unlock(&client_mutex);
2380
2381 pr_debug("Unregistered DAI '%s'\n", dai->name);
2382}
2383EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2384
2385/**
2386 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2387 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002388 * @dai: Array of DAIs to register
2389 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002390 */
2391int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
2392{
2393 int i, ret;
2394
2395 for (i = 0; i < count; i++) {
2396 ret = snd_soc_register_dai(&dai[i]);
2397 if (ret != 0)
2398 goto err;
2399 }
2400
2401 return 0;
2402
2403err:
2404 for (i--; i >= 0; i--)
2405 snd_soc_unregister_dai(&dai[i]);
2406
2407 return ret;
2408}
2409EXPORT_SYMBOL_GPL(snd_soc_register_dais);
2410
2411/**
2412 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2413 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002414 * @dai: Array of DAIs to unregister
2415 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002416 */
2417void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
2418{
2419 int i;
2420
2421 for (i = 0; i < count; i++)
2422 snd_soc_unregister_dai(&dai[i]);
2423}
2424EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
2425
Mark Brown12a48a8c2008-12-03 19:40:30 +00002426/**
2427 * snd_soc_register_platform - Register a platform with the ASoC core
2428 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002429 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00002430 */
2431int snd_soc_register_platform(struct snd_soc_platform *platform)
2432{
2433 if (!platform->name)
2434 return -EINVAL;
2435
2436 INIT_LIST_HEAD(&platform->list);
2437
2438 mutex_lock(&client_mutex);
2439 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002440 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00002441 mutex_unlock(&client_mutex);
2442
2443 pr_debug("Registered platform '%s'\n", platform->name);
2444
2445 return 0;
2446}
2447EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2448
2449/**
2450 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2451 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002452 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002453 */
2454void snd_soc_unregister_platform(struct snd_soc_platform *platform)
2455{
2456 mutex_lock(&client_mutex);
2457 list_del(&platform->list);
2458 mutex_unlock(&client_mutex);
2459
2460 pr_debug("Unregistered platform '%s'\n", platform->name);
2461}
2462EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2463
Mark Brown151ab222009-05-09 16:22:58 +01002464static u64 codec_format_map[] = {
2465 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2466 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2467 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2468 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2469 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2470 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2471 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2472 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2473 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2474 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2475 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2476 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2477 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2478 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2479 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2480 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2481};
2482
2483/* Fix up the DAI formats for endianness: codecs don't actually see
2484 * the endianness of the data but we're using the CPU format
2485 * definitions which do need to include endianness so we ensure that
2486 * codec DAIs always have both big and little endian variants set.
2487 */
2488static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2489{
2490 int i;
2491
2492 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2493 if (stream->formats & codec_format_map[i])
2494 stream->formats |= codec_format_map[i];
2495}
2496
Mark Brown0d0cf002008-12-10 14:32:45 +00002497/**
2498 * snd_soc_register_codec - Register a codec with the ASoC core
2499 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002500 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002501 */
2502int snd_soc_register_codec(struct snd_soc_codec *codec)
2503{
Mark Brown151ab222009-05-09 16:22:58 +01002504 int i;
2505
Mark Brown0d0cf002008-12-10 14:32:45 +00002506 if (!codec->name)
2507 return -EINVAL;
2508
2509 /* The device should become mandatory over time */
2510 if (!codec->dev)
2511 printk(KERN_WARNING "No device for codec %s\n", codec->name);
2512
2513 INIT_LIST_HEAD(&codec->list);
2514
Mark Brown151ab222009-05-09 16:22:58 +01002515 for (i = 0; i < codec->num_dai; i++) {
2516 fixup_codec_formats(&codec->dai[i].playback);
2517 fixup_codec_formats(&codec->dai[i].capture);
2518 }
2519
Mark Brown0d0cf002008-12-10 14:32:45 +00002520 mutex_lock(&client_mutex);
2521 list_add(&codec->list, &codec_list);
2522 snd_soc_instantiate_cards();
2523 mutex_unlock(&client_mutex);
2524
2525 pr_debug("Registered codec '%s'\n", codec->name);
2526
2527 return 0;
2528}
2529EXPORT_SYMBOL_GPL(snd_soc_register_codec);
2530
2531/**
2532 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2533 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002534 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00002535 */
2536void snd_soc_unregister_codec(struct snd_soc_codec *codec)
2537{
2538 mutex_lock(&client_mutex);
2539 list_del(&codec->list);
2540 mutex_unlock(&client_mutex);
2541
2542 pr_debug("Unregistered codec '%s'\n", codec->name);
2543}
2544EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
2545
Takashi Iwaic9b3a402008-12-10 07:47:22 +01002546static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002547{
Mark Brown384c89e2008-12-03 17:34:03 +00002548#ifdef CONFIG_DEBUG_FS
2549 debugfs_root = debugfs_create_dir("asoc", NULL);
2550 if (IS_ERR(debugfs_root) || !debugfs_root) {
2551 printk(KERN_WARNING
2552 "ASoC: Failed to create debugfs directory\n");
2553 debugfs_root = NULL;
2554 }
2555#endif
2556
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002557 return platform_driver_register(&soc_driver);
2558}
2559
Mark Brown7d8c16a2008-11-30 22:11:24 +00002560static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002561{
Mark Brown384c89e2008-12-03 17:34:03 +00002562#ifdef CONFIG_DEBUG_FS
2563 debugfs_remove_recursive(debugfs_root);
2564#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02002565 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002566}
2567
2568module_init(snd_soc_init);
2569module_exit(snd_soc_exit);
2570
2571/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01002572MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002573MODULE_DESCRIPTION("ALSA SoC Core");
2574MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02002575MODULE_ALIAS("platform:soc-audio");