blob: 8bf49a4e664ab53f43fe7b777061dc4f60a1cf82 [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>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020031#include <sound/core.h>
32#include <sound/pcm.h>
33#include <sound/pcm_params.h>
34#include <sound/soc.h>
35#include <sound/soc-dapm.h>
36#include <sound/initval.h>
37
Frank Mandarinodb2a4162006-10-06 18:31:09 +020038static DEFINE_MUTEX(pcm_mutex);
39static DEFINE_MUTEX(io_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
41
Mark Brown384c89e2008-12-03 17:34:03 +000042#ifdef CONFIG_DEBUG_FS
43static struct dentry *debugfs_root;
44#endif
45
Mark Brownc5af3a22008-11-28 13:29:45 +000046static DEFINE_MUTEX(client_mutex);
47static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000048static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000049static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000050static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000051
52static int snd_soc_register_card(struct snd_soc_card *card);
53static int snd_soc_unregister_card(struct snd_soc_card *card);
54
Frank Mandarinodb2a4162006-10-06 18:31:09 +020055/*
56 * This is a timeout to do a DAPM powerdown after a stream is closed().
57 * It can be used to eliminate pops between different playback streams, e.g.
58 * between two audio tracks.
59 */
60static int pmdown_time = 5000;
61module_param(pmdown_time, int, 0);
62MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
63
Liam Girdwood965ac422007-01-31 14:14:57 +010064/*
65 * This function forces any delayed work to be queued and run.
66 */
67static int run_delayed_work(struct delayed_work *dwork)
68{
69 int ret;
70
71 /* cancel any work waiting to be queued. */
72 ret = cancel_delayed_work(dwork);
73
74 /* if there was any work waiting then we run it now and
75 * wait for it's completion */
76 if (ret) {
77 schedule_delayed_work(dwork, 0);
78 flush_scheduled_work();
79 }
80 return ret;
81}
82
Frank Mandarinodb2a4162006-10-06 18:31:09 +020083#ifdef CONFIG_SND_SOC_AC97_BUS
84/* unregister ac97 codec */
85static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
86{
87 if (codec->ac97->dev.bus)
88 device_unregister(&codec->ac97->dev);
89 return 0;
90}
91
92/* stop no dev release warning */
93static void soc_ac97_device_release(struct device *dev){}
94
95/* register ac97 codec to bus */
96static int soc_ac97_dev_register(struct snd_soc_codec *codec)
97{
98 int err;
99
100 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100101 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200102 codec->ac97->dev.release = soc_ac97_device_release;
103
Kay Sieversbb072bf2008-11-02 03:50:35 +0100104 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
105 codec->card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200106 err = device_register(&codec->ac97->dev);
107 if (err < 0) {
108 snd_printk(KERN_ERR "Can't register ac97 bus\n");
109 codec->ac97->dev.bus = NULL;
110 return err;
111 }
112 return 0;
113}
114#endif
115
Mark Brown06f409d2009-04-07 18:10:13 +0100116static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
117{
118 struct snd_soc_pcm_runtime *rtd = substream->private_data;
119 struct snd_soc_device *socdev = rtd->socdev;
120 struct snd_soc_card *card = socdev->card;
121 struct snd_soc_dai_link *machine = rtd->dai;
122 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
123 struct snd_soc_dai *codec_dai = machine->codec_dai;
124 int ret;
125
126 if (codec_dai->symmetric_rates || cpu_dai->symmetric_rates ||
127 machine->symmetric_rates) {
128 dev_dbg(card->dev, "Symmetry forces %dHz rate\n",
129 machine->rate);
130
131 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
132 SNDRV_PCM_HW_PARAM_RATE,
133 machine->rate,
134 machine->rate);
135 if (ret < 0) {
136 dev_err(card->dev,
137 "Unable to apply rate symmetry constraint: %d\n", ret);
138 return ret;
139 }
140 }
141
142 return 0;
143}
144
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200145/*
146 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
147 * then initialized and any private data can be allocated. This also calls
148 * startup for the cpu DAI, platform, machine and codec DAI.
149 */
150static int soc_pcm_open(struct snd_pcm_substream *substream)
151{
152 struct snd_soc_pcm_runtime *rtd = substream->private_data;
153 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000154 struct snd_soc_card *card = socdev->card;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200155 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100156 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000157 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100158 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
159 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200160 int ret = 0;
161
162 mutex_lock(&pcm_mutex);
163
164 /* startup the audio subsystem */
Eric Miao6335d052009-03-03 09:41:00 +0800165 if (cpu_dai->ops->startup) {
166 ret = cpu_dai->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200167 if (ret < 0) {
168 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100169 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200170 goto out;
171 }
172 }
173
174 if (platform->pcm_ops->open) {
175 ret = platform->pcm_ops->open(substream);
176 if (ret < 0) {
177 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
178 goto platform_err;
179 }
180 }
181
Eric Miao6335d052009-03-03 09:41:00 +0800182 if (codec_dai->ops->startup) {
183 ret = codec_dai->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100184 if (ret < 0) {
185 printk(KERN_ERR "asoc: can't open codec %s\n",
186 codec_dai->name);
187 goto codec_dai_err;
188 }
189 }
190
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200191 if (machine->ops && machine->ops->startup) {
192 ret = machine->ops->startup(substream);
193 if (ret < 0) {
194 printk(KERN_ERR "asoc: %s startup failed\n", machine->name);
195 goto machine_err;
196 }
197 }
198
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200199 /* Check that the codec and cpu DAI's are compatible */
200 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
201 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200202 max(codec_dai->playback.rate_min,
203 cpu_dai->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200204 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200205 min(codec_dai->playback.rate_max,
206 cpu_dai->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200207 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100208 max(codec_dai->playback.channels_min,
209 cpu_dai->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200210 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100211 min(codec_dai->playback.channels_max,
212 cpu_dai->playback.channels_max);
213 runtime->hw.formats =
214 codec_dai->playback.formats & cpu_dai->playback.formats;
215 runtime->hw.rates =
216 codec_dai->playback.rates & cpu_dai->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200217 } else {
218 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200219 max(codec_dai->capture.rate_min,
220 cpu_dai->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200221 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200222 min(codec_dai->capture.rate_max,
223 cpu_dai->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200224 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100225 max(codec_dai->capture.channels_min,
226 cpu_dai->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200227 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100228 min(codec_dai->capture.channels_max,
229 cpu_dai->capture.channels_max);
230 runtime->hw.formats =
231 codec_dai->capture.formats & cpu_dai->capture.formats;
232 runtime->hw.rates =
233 codec_dai->capture.rates & cpu_dai->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200234 }
235
236 snd_pcm_limit_hw_rates(runtime);
237 if (!runtime->hw.rates) {
238 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100239 codec_dai->name, cpu_dai->name);
240 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200241 }
242 if (!runtime->hw.formats) {
243 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100244 codec_dai->name, cpu_dai->name);
245 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200246 }
247 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
248 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100249 codec_dai->name, cpu_dai->name);
250 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200251 }
252
Mark Brown06f409d2009-04-07 18:10:13 +0100253 /* Symmetry only applies if we've already got an active stream. */
254 if (cpu_dai->active || codec_dai->active) {
255 ret = soc_pcm_apply_symmetry(substream);
256 if (ret != 0)
257 goto machine_err;
258 }
259
Mark Brownf24368c2008-10-21 21:45:08 +0100260 pr_debug("asoc: %s <-> %s info:\n", codec_dai->name, cpu_dai->name);
261 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
262 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
263 runtime->hw.channels_max);
264 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
265 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200266
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200267 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100268 cpu_dai->playback.active = codec_dai->playback.active = 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200269 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100270 cpu_dai->capture.active = codec_dai->capture.active = 1;
271 cpu_dai->active = codec_dai->active = 1;
272 cpu_dai->runtime = runtime;
Mark Brown6627a652009-01-23 22:55:23 +0000273 card->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200274 mutex_unlock(&pcm_mutex);
275 return 0;
276
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100277machine_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200278 if (machine->ops && machine->ops->shutdown)
279 machine->ops->shutdown(substream);
280
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100281codec_dai_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200282 if (platform->pcm_ops->close)
283 platform->pcm_ops->close(substream);
284
285platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800286 if (cpu_dai->ops->shutdown)
287 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200288out:
289 mutex_unlock(&pcm_mutex);
290 return ret;
291}
292
293/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200294 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200295 * This is to ensure there are no pops or clicks in between any music tracks
296 * due to DAPM power cycling.
297 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100298static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200299{
Mark Brown63084192008-12-02 15:08:03 +0000300 struct snd_soc_card *card = container_of(work, struct snd_soc_card,
301 delayed_work.work);
Mark Brown6627a652009-01-23 22:55:23 +0000302 struct snd_soc_codec *codec = card->codec;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100303 struct snd_soc_dai *codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200304 int i;
305
306 mutex_lock(&pcm_mutex);
Mark Brown3ff3f642008-05-19 12:32:25 +0200307 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200308 codec_dai = &codec->dai[i];
309
Mark Brownf24368c2008-10-21 21:45:08 +0100310 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
311 codec_dai->playback.stream_name,
312 codec_dai->playback.active ? "active" : "inactive",
313 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200314
315 /* are we waiting on this codec DAI stream */
316 if (codec_dai->pop_wait == 1) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200317 codec_dai->pop_wait = 0;
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100318 snd_soc_dapm_stream_event(codec,
319 codec_dai->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200320 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200321 }
322 }
323 mutex_unlock(&pcm_mutex);
324}
325
326/*
327 * Called by ALSA when a PCM substream is closed. Private data can be
328 * freed here. The cpu DAI, codec DAI, machine and platform are also
329 * shutdown.
330 */
331static int soc_codec_close(struct snd_pcm_substream *substream)
332{
333 struct snd_soc_pcm_runtime *rtd = substream->private_data;
334 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000335 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100336 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000337 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100338 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
339 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000340 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200341
342 mutex_lock(&pcm_mutex);
343
344 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100345 cpu_dai->playback.active = codec_dai->playback.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200346 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100347 cpu_dai->capture.active = codec_dai->capture.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200348
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100349 if (codec_dai->playback.active == 0 &&
350 codec_dai->capture.active == 0) {
351 cpu_dai->active = codec_dai->active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200352 }
353 codec->active--;
354
Mark Brown6010b2d2008-09-06 18:33:24 +0100355 /* Muting the DAC suppresses artifacts caused during digital
356 * shutdown, for example from stopping clocks.
357 */
358 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
359 snd_soc_dai_digital_mute(codec_dai, 1);
360
Eric Miao6335d052009-03-03 09:41:00 +0800361 if (cpu_dai->ops->shutdown)
362 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200363
Eric Miao6335d052009-03-03 09:41:00 +0800364 if (codec_dai->ops->shutdown)
365 codec_dai->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200366
367 if (machine->ops && machine->ops->shutdown)
368 machine->ops->shutdown(substream);
369
370 if (platform->pcm_ops->close)
371 platform->pcm_ops->close(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100372 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200373
374 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
375 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100376 codec_dai->pop_wait = 1;
Mark Brown63084192008-12-02 15:08:03 +0000377 schedule_delayed_work(&card->delayed_work,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200378 msecs_to_jiffies(pmdown_time));
379 } else {
380 /* capture streams can be powered down now */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100381 snd_soc_dapm_stream_event(codec,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100382 codec_dai->capture.stream_name,
383 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200384 }
385
386 mutex_unlock(&pcm_mutex);
387 return 0;
388}
389
390/*
391 * Called by ALSA when the PCM substream is prepared, can set format, sample
392 * rate, etc. This function is non atomic and can be called multiple times,
393 * it can refer to the runtime info.
394 */
395static int soc_pcm_prepare(struct snd_pcm_substream *substream)
396{
397 struct snd_soc_pcm_runtime *rtd = substream->private_data;
398 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000399 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100400 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000401 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100402 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
403 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000404 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200405 int ret = 0;
406
407 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100408
409 if (machine->ops && machine->ops->prepare) {
410 ret = machine->ops->prepare(substream);
411 if (ret < 0) {
412 printk(KERN_ERR "asoc: machine prepare error\n");
413 goto out;
414 }
415 }
416
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200417 if (platform->pcm_ops->prepare) {
418 ret = platform->pcm_ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200419 if (ret < 0) {
420 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200421 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200422 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200423 }
424
Eric Miao6335d052009-03-03 09:41:00 +0800425 if (codec_dai->ops->prepare) {
426 ret = codec_dai->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200427 if (ret < 0) {
428 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200429 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200430 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200431 }
432
Eric Miao6335d052009-03-03 09:41:00 +0800433 if (cpu_dai->ops->prepare) {
434 ret = cpu_dai->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100435 if (ret < 0) {
436 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
437 goto out;
438 }
439 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200440
Mark Brownd45f6212008-10-14 13:58:36 +0100441 /* cancel any delayed stream shutdown that is pending */
442 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
443 codec_dai->pop_wait) {
444 codec_dai->pop_wait = 0;
Mark Brown63084192008-12-02 15:08:03 +0000445 cancel_delayed_work(&card->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100446 }
447
Mark Brown452c5ea2009-05-17 21:41:23 +0100448 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
449 snd_soc_dapm_stream_event(codec,
450 codec_dai->playback.stream_name,
451 SND_SOC_DAPM_STREAM_START);
452 else
453 snd_soc_dapm_stream_event(codec,
454 codec_dai->capture.stream_name,
455 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100456
Mark Brown452c5ea2009-05-17 21:41:23 +0100457 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200458
459out:
460 mutex_unlock(&pcm_mutex);
461 return ret;
462}
463
464/*
465 * Called by ALSA when the hardware params are set by application. This
466 * function can also be called multiple times and can allocate buffers
467 * (using snd_pcm_lib_* ). It's non-atomic.
468 */
469static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
470 struct snd_pcm_hw_params *params)
471{
472 struct snd_soc_pcm_runtime *rtd = substream->private_data;
473 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100474 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000475 struct snd_soc_card *card = socdev->card;
476 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100477 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
478 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200479 int ret = 0;
480
481 mutex_lock(&pcm_mutex);
482
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100483 if (machine->ops && machine->ops->hw_params) {
484 ret = machine->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200485 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100486 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200487 goto out;
488 }
489 }
490
Eric Miao6335d052009-03-03 09:41:00 +0800491 if (codec_dai->ops->hw_params) {
492 ret = codec_dai->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100493 if (ret < 0) {
494 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
495 codec_dai->name);
496 goto codec_err;
497 }
498 }
499
Eric Miao6335d052009-03-03 09:41:00 +0800500 if (cpu_dai->ops->hw_params) {
501 ret = cpu_dai->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200502 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200503 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100504 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200505 goto interface_err;
506 }
507 }
508
509 if (platform->pcm_ops->hw_params) {
510 ret = platform->pcm_ops->hw_params(substream, params);
511 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200512 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200513 platform->name);
514 goto platform_err;
515 }
516 }
517
Mark Brown06f409d2009-04-07 18:10:13 +0100518 machine->rate = params_rate(params);
519
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200520out:
521 mutex_unlock(&pcm_mutex);
522 return ret;
523
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200524platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800525 if (cpu_dai->ops->hw_free)
526 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200527
528interface_err:
Eric Miao6335d052009-03-03 09:41:00 +0800529 if (codec_dai->ops->hw_free)
530 codec_dai->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100531
532codec_err:
Mark Brown3ff3f642008-05-19 12:32:25 +0200533 if (machine->ops && machine->ops->hw_free)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100534 machine->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200535
536 mutex_unlock(&pcm_mutex);
537 return ret;
538}
539
540/*
541 * Free's resources allocated by hw_params, can be called multiple times
542 */
543static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
544{
545 struct snd_soc_pcm_runtime *rtd = substream->private_data;
546 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100547 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000548 struct snd_soc_card *card = socdev->card;
549 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100550 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
551 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000552 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200553
554 mutex_lock(&pcm_mutex);
555
556 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100557 if (!codec->active)
558 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200559
560 /* free any machine hw params */
561 if (machine->ops && machine->ops->hw_free)
562 machine->ops->hw_free(substream);
563
564 /* free any DMA resources */
565 if (platform->pcm_ops->hw_free)
566 platform->pcm_ops->hw_free(substream);
567
568 /* now free hw params for the DAI's */
Eric Miao6335d052009-03-03 09:41:00 +0800569 if (codec_dai->ops->hw_free)
570 codec_dai->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200571
Eric Miao6335d052009-03-03 09:41:00 +0800572 if (cpu_dai->ops->hw_free)
573 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200574
575 mutex_unlock(&pcm_mutex);
576 return 0;
577}
578
579static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
580{
581 struct snd_soc_pcm_runtime *rtd = substream->private_data;
582 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000583 struct snd_soc_card *card= socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100584 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000585 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100586 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
587 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200588 int ret;
589
Eric Miao6335d052009-03-03 09:41:00 +0800590 if (codec_dai->ops->trigger) {
591 ret = codec_dai->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200592 if (ret < 0)
593 return ret;
594 }
595
596 if (platform->pcm_ops->trigger) {
597 ret = platform->pcm_ops->trigger(substream, cmd);
598 if (ret < 0)
599 return ret;
600 }
601
Eric Miao6335d052009-03-03 09:41:00 +0800602 if (cpu_dai->ops->trigger) {
603 ret = cpu_dai->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200604 if (ret < 0)
605 return ret;
606 }
607 return 0;
608}
609
610/* ASoC PCM operations */
611static struct snd_pcm_ops soc_pcm_ops = {
612 .open = soc_pcm_open,
613 .close = soc_codec_close,
614 .hw_params = soc_pcm_hw_params,
615 .hw_free = soc_pcm_hw_free,
616 .prepare = soc_pcm_prepare,
617 .trigger = soc_pcm_trigger,
618};
619
620#ifdef CONFIG_PM
621/* powers down audio subsystem for suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100622static int soc_suspend(struct device *dev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200623{
Mark Brown416356f2009-06-30 19:05:15 +0100624 struct platform_device *pdev = to_platform_device(dev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200625 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +0000626 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +0000627 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200628 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000629 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200630 int i;
631
Daniel Macke3509ff2009-06-03 17:44:49 +0200632 /* If the initialization of this soc device failed, there is no codec
633 * associated with it. Just bail out in this case.
634 */
635 if (!codec)
636 return 0;
637
Andy Green6ed25972008-06-13 16:24:05 +0100638 /* Due to the resume being scheduled into a workqueue we could
639 * suspend before that's finished - wait for it to complete.
640 */
641 snd_power_lock(codec->card);
642 snd_power_wait(codec->card, SNDRV_CTL_POWER_D0);
643 snd_power_unlock(codec->card);
644
645 /* we're going to block userspace touching us until resume completes */
646 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D3hot);
647
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200648 /* mute any active DAC's */
Mark Browndee89c42008-11-18 22:11:38 +0000649 for (i = 0; i < card->num_links; i++) {
650 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800651 if (dai->ops->digital_mute && dai->playback.active)
652 dai->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200653 }
654
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100655 /* suspend all pcms */
Mark Brown87506542008-11-18 20:50:34 +0000656 for (i = 0; i < card->num_links; i++)
657 snd_pcm_suspend_all(card->dai_link[i].pcm);
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100658
Mark Brown87506542008-11-18 20:50:34 +0000659 if (card->suspend_pre)
Mark Brown416356f2009-06-30 19:05:15 +0100660 card->suspend_pre(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200661
Mark Brown87506542008-11-18 20:50:34 +0000662 for (i = 0; i < card->num_links; i++) {
663 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000664 if (cpu_dai->suspend && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000665 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200666 if (platform->suspend)
Mark Brown07c84d02008-12-03 18:17:28 +0000667 platform->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200668 }
669
670 /* close any waiting streams and save state */
Mark Brown63084192008-12-02 15:08:03 +0000671 run_delayed_work(&card->delayed_work);
Mark Brown0be98982008-05-19 12:31:28 +0200672 codec->suspend_bias_level = codec->bias_level;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200673
Mark Brown3ff3f642008-05-19 12:32:25 +0200674 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200675 char *stream = codec->dai[i].playback.stream_name;
676 if (stream != NULL)
677 snd_soc_dapm_stream_event(codec, stream,
678 SND_SOC_DAPM_STREAM_SUSPEND);
679 stream = codec->dai[i].capture.stream_name;
680 if (stream != NULL)
681 snd_soc_dapm_stream_event(codec, stream,
682 SND_SOC_DAPM_STREAM_SUSPEND);
683 }
684
685 if (codec_dev->suspend)
Mark Brown416356f2009-06-30 19:05:15 +0100686 codec_dev->suspend(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200687
Mark Brown87506542008-11-18 20:50:34 +0000688 for (i = 0; i < card->num_links; i++) {
689 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000690 if (cpu_dai->suspend && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000691 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200692 }
693
Mark Brown87506542008-11-18 20:50:34 +0000694 if (card->suspend_post)
Mark Brown416356f2009-06-30 19:05:15 +0100695 card->suspend_post(pdev, PMSG_SUSPEND);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200696
697 return 0;
698}
699
Andy Green6ed25972008-06-13 16:24:05 +0100700/* deferred resume work, so resume can complete before we finished
701 * setting our codec back up, which can be very slow on I2C
702 */
703static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200704{
Mark Brown63084192008-12-02 15:08:03 +0000705 struct snd_soc_card *card = container_of(work,
706 struct snd_soc_card,
707 deferred_resume_work);
708 struct snd_soc_device *socdev = card->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000709 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200710 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000711 struct snd_soc_codec *codec = card->codec;
Andy Green6ed25972008-06-13 16:24:05 +0100712 struct platform_device *pdev = to_platform_device(socdev->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200713 int i;
714
Andy Green6ed25972008-06-13 16:24:05 +0100715 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
716 * so userspace apps are blocked from touching us
717 */
718
Mark Brownfde22f22008-11-24 18:08:18 +0000719 dev_dbg(socdev->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100720
Mark Brown87506542008-11-18 20:50:34 +0000721 if (card->resume_pre)
722 card->resume_pre(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200723
Mark Brown87506542008-11-18 20:50:34 +0000724 for (i = 0; i < card->num_links; i++) {
725 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000726 if (cpu_dai->resume && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000727 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200728 }
729
730 if (codec_dev->resume)
731 codec_dev->resume(pdev);
732
Mark Brown3ff3f642008-05-19 12:32:25 +0200733 for (i = 0; i < codec->num_dai; i++) {
734 char *stream = codec->dai[i].playback.stream_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200735 if (stream != NULL)
736 snd_soc_dapm_stream_event(codec, stream,
737 SND_SOC_DAPM_STREAM_RESUME);
738 stream = codec->dai[i].capture.stream_name;
739 if (stream != NULL)
740 snd_soc_dapm_stream_event(codec, stream,
741 SND_SOC_DAPM_STREAM_RESUME);
742 }
743
Mark Brown3ff3f642008-05-19 12:32:25 +0200744 /* unmute any active DACs */
Mark Browndee89c42008-11-18 22:11:38 +0000745 for (i = 0; i < card->num_links; i++) {
746 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800747 if (dai->ops->digital_mute && dai->playback.active)
748 dai->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200749 }
750
Mark Brown87506542008-11-18 20:50:34 +0000751 for (i = 0; i < card->num_links; i++) {
752 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000753 if (cpu_dai->resume && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000754 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200755 if (platform->resume)
Mark Brown07c84d02008-12-03 18:17:28 +0000756 platform->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200757 }
758
Mark Brown87506542008-11-18 20:50:34 +0000759 if (card->resume_post)
760 card->resume_post(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200761
Mark Brownfde22f22008-11-24 18:08:18 +0000762 dev_dbg(socdev->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100763
764 /* userspace can access us now we are back as we were before */
765 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0);
766}
767
768/* powers up audio subsystem after a suspend */
Mark Brown416356f2009-06-30 19:05:15 +0100769static int soc_resume(struct device *dev)
Andy Green6ed25972008-06-13 16:24:05 +0100770{
Mark Brown416356f2009-06-30 19:05:15 +0100771 struct platform_device *pdev = to_platform_device(dev);
Andy Green6ed25972008-06-13 16:24:05 +0100772 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown63084192008-12-02 15:08:03 +0000773 struct snd_soc_card *card = socdev->card;
Mark Brown64ab9ba2009-03-31 11:27:03 +0100774 struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai;
Andy Green6ed25972008-06-13 16:24:05 +0100775
Mark Brown64ab9ba2009-03-31 11:27:03 +0100776 /* AC97 devices might have other drivers hanging off them so
777 * need to resume immediately. Other drivers don't have that
778 * problem and may take a substantial amount of time to resume
779 * due to I/O costs and anti-pop so handle them out of line.
780 */
781 if (cpu_dai->ac97_control) {
782 dev_dbg(socdev->dev, "Resuming AC97 immediately\n");
783 soc_resume_deferred(&card->deferred_resume_work);
784 } else {
785 dev_dbg(socdev->dev, "Scheduling resume work\n");
786 if (!schedule_work(&card->deferred_resume_work))
787 dev_err(socdev->dev, "resume work item may be lost\n");
788 }
Andy Green6ed25972008-06-13 16:24:05 +0100789
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200790 return 0;
791}
792
Mark Brown831dc0f2009-06-13 19:55:02 +0100793/**
794 * snd_soc_suspend_device: Notify core of device suspend
795 *
796 * @dev: Device being suspended.
797 *
798 * In order to ensure that the entire audio subsystem is suspended in a
799 * coordinated fashion ASoC devices should suspend themselves when
800 * called by ASoC. When the standard kernel suspend process asks the
801 * device to suspend it should call this function to initiate a suspend
802 * of the entire ASoC card.
803 *
804 * \note Currently this function is stubbed out.
805 */
806int snd_soc_suspend_device(struct device *dev)
807{
808 return 0;
809}
810EXPORT_SYMBOL_GPL(snd_soc_suspend_device);
811
812/**
813 * snd_soc_resume_device: Notify core of device resume
814 *
815 * @dev: Device being resumed.
816 *
817 * In order to ensure that the entire audio subsystem is resumed in a
818 * coordinated fashion ASoC devices should resume themselves when called
819 * by ASoC. When the standard kernel resume process asks the device
820 * to resume it should call this function. Once all the components of
821 * the card have notified that they are ready to be resumed the card
822 * will be resumed.
823 *
824 * \note Currently this function is stubbed out.
825 */
826int snd_soc_resume_device(struct device *dev)
827{
828 return 0;
829}
830EXPORT_SYMBOL_GPL(snd_soc_resume_device);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200831#else
832#define soc_suspend NULL
833#define soc_resume NULL
834#endif
835
Mark Brown435c5e22008-12-04 15:32:53 +0000836static void snd_soc_instantiate_card(struct snd_soc_card *card)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200837{
Mark Brown435c5e22008-12-04 15:32:53 +0000838 struct platform_device *pdev = container_of(card->dev,
839 struct platform_device,
840 dev);
841 struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev;
842 struct snd_soc_platform *platform;
843 struct snd_soc_dai *dai;
Mark Brown6b05eda2008-12-08 19:26:48 +0000844 int i, found, ret, ac97;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200845
Mark Brown435c5e22008-12-04 15:32:53 +0000846 if (card->instantiated)
847 return;
Mark Brown63084192008-12-02 15:08:03 +0000848
Mark Brown435c5e22008-12-04 15:32:53 +0000849 found = 0;
850 list_for_each_entry(platform, &platform_list, list)
851 if (card->platform == platform) {
852 found = 1;
853 break;
854 }
855 if (!found) {
856 dev_dbg(card->dev, "Platform %s not registered\n",
857 card->platform->name);
858 return;
Mark Brownc5af3a22008-11-28 13:29:45 +0000859 }
860
Mark Brown6b05eda2008-12-08 19:26:48 +0000861 ac97 = 0;
Mark Brown435c5e22008-12-04 15:32:53 +0000862 for (i = 0; i < card->num_links; i++) {
863 found = 0;
864 list_for_each_entry(dai, &dai_list, list)
865 if (card->dai_link[i].cpu_dai == dai) {
866 found = 1;
867 break;
868 }
869 if (!found) {
870 dev_dbg(card->dev, "DAI %s not registered\n",
871 card->dai_link[i].cpu_dai->name);
872 return;
873 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000874
875 if (card->dai_link[i].cpu_dai->ac97_control)
876 ac97 = 1;
Mark Brown435c5e22008-12-04 15:32:53 +0000877 }
878
Mark Brown6b05eda2008-12-08 19:26:48 +0000879 /* If we have AC97 in the system then don't wait for the
880 * codec. This will need revisiting if we have to handle
881 * systems with mixed AC97 and non-AC97 parts. Only check for
882 * DAIs currently; we can't do this per link since some AC97
883 * codecs have non-AC97 DAIs.
884 */
885 if (!ac97)
886 for (i = 0; i < card->num_links; i++) {
887 found = 0;
888 list_for_each_entry(dai, &dai_list, list)
889 if (card->dai_link[i].codec_dai == dai) {
890 found = 1;
891 break;
892 }
893 if (!found) {
894 dev_dbg(card->dev, "DAI %s not registered\n",
895 card->dai_link[i].codec_dai->name);
896 return;
897 }
898 }
899
Mark Brown435c5e22008-12-04 15:32:53 +0000900 /* Note that we do not current check for codec components */
901
902 dev_dbg(card->dev, "All components present, instantiating\n");
903
904 /* Found everything, bring it up */
Mark Brown87506542008-11-18 20:50:34 +0000905 if (card->probe) {
906 ret = card->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200907 if (ret < 0)
Mark Brown435c5e22008-12-04 15:32:53 +0000908 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200909 }
910
Mark Brown87506542008-11-18 20:50:34 +0000911 for (i = 0; i < card->num_links; i++) {
912 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200913 if (cpu_dai->probe) {
Mark Brownbdb92872008-06-11 13:47:10 +0100914 ret = cpu_dai->probe(pdev, cpu_dai);
Mark Brown3ff3f642008-05-19 12:32:25 +0200915 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200916 goto cpu_dai_err;
917 }
918 }
919
920 if (codec_dev->probe) {
921 ret = codec_dev->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200922 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200923 goto cpu_dai_err;
924 }
925
926 if (platform->probe) {
927 ret = platform->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200928 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200929 goto platform_err;
930 }
931
932 /* DAPM stream work */
Mark Brown63084192008-12-02 15:08:03 +0000933 INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
Randy Dunlap1301a962008-06-17 19:19:34 +0100934#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +0100935 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +0000936 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +0100937#endif
Andy Green6ed25972008-06-13 16:24:05 +0100938
Mark Brown435c5e22008-12-04 15:32:53 +0000939 card->instantiated = 1;
940
941 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200942
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200943platform_err:
944 if (codec_dev->remove)
945 codec_dev->remove(pdev);
946
947cpu_dai_err:
Liam Girdwood18b9b3d2007-01-30 17:18:45 +0100948 for (i--; i >= 0; i--) {
Mark Brown87506542008-11-18 20:50:34 +0000949 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200950 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +0100951 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200952 }
953
Mark Brown87506542008-11-18 20:50:34 +0000954 if (card->remove)
955 card->remove(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +0000956}
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200957
Mark Brown435c5e22008-12-04 15:32:53 +0000958/*
959 * Attempt to initialise any uninitalised cards. Must be called with
960 * client_mutex.
961 */
962static void snd_soc_instantiate_cards(void)
963{
964 struct snd_soc_card *card;
965 list_for_each_entry(card, &card_list, list)
966 snd_soc_instantiate_card(card);
967}
968
969/* probes a new socdev */
970static int soc_probe(struct platform_device *pdev)
971{
972 int ret = 0;
973 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
974 struct snd_soc_card *card = socdev->card;
975
976 /* Bodge while we push things out of socdev */
977 card->socdev = socdev;
978
979 /* Bodge while we unpick instantiation */
980 card->dev = &pdev->dev;
981 ret = snd_soc_register_card(card);
982 if (ret != 0) {
983 dev_err(&pdev->dev, "Failed to register card\n");
984 return ret;
985 }
986
987 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200988}
989
990/* removes a socdev */
991static int soc_remove(struct platform_device *pdev)
992{
993 int i;
994 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +0000995 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +0000996 struct snd_soc_platform *platform = card->platform;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200997 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
998
Mike Rapoport914dc182009-05-11 13:04:55 +0300999 if (!card->instantiated)
1000 return 0;
1001
Mark Brown63084192008-12-02 15:08:03 +00001002 run_delayed_work(&card->delayed_work);
Liam Girdwood965ac422007-01-31 14:14:57 +01001003
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001004 if (platform->remove)
1005 platform->remove(pdev);
1006
1007 if (codec_dev->remove)
1008 codec_dev->remove(pdev);
1009
Mark Brown87506542008-11-18 20:50:34 +00001010 for (i = 0; i < card->num_links; i++) {
1011 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001012 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +01001013 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001014 }
1015
Mark Brown87506542008-11-18 20:50:34 +00001016 if (card->remove)
1017 card->remove(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001018
Mark Brownc5af3a22008-11-28 13:29:45 +00001019 snd_soc_unregister_card(card);
1020
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001021 return 0;
1022}
1023
Mark Brown416356f2009-06-30 19:05:15 +01001024static int soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +01001025{
Mark Brown416356f2009-06-30 19:05:15 +01001026 struct platform_device *pdev = to_platform_device(dev);
Mark Brown51737472009-06-22 13:16:51 +01001027 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1028 struct snd_soc_card *card = socdev->card;
1029
1030 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001031 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001032
1033 /* Flush out pmdown_time work - we actually do want to run it
1034 * now, we're shutting down so no imminent restart. */
1035 run_delayed_work(&card->delayed_work);
1036
1037 snd_soc_dapm_shutdown(socdev);
Mark Brown416356f2009-06-30 19:05:15 +01001038
1039 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001040}
1041
Mark Brown416356f2009-06-30 19:05:15 +01001042static struct dev_pm_ops soc_pm_ops = {
1043 .suspend = soc_suspend,
1044 .resume = soc_resume,
1045 .poweroff = soc_poweroff,
1046};
1047
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001048/* ASoC platform driver */
1049static struct platform_driver soc_driver = {
1050 .driver = {
1051 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001052 .owner = THIS_MODULE,
Mark Brown416356f2009-06-30 19:05:15 +01001053 .pm = &soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001054 },
1055 .probe = soc_probe,
1056 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001057};
1058
1059/* create a new pcm */
1060static int soc_new_pcm(struct snd_soc_device *socdev,
1061 struct snd_soc_dai_link *dai_link, int num)
1062{
Mark Brown87689d52008-12-02 16:01:14 +00001063 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001064 struct snd_soc_codec *codec = card->codec;
Mark Brown87689d52008-12-02 16:01:14 +00001065 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001066 struct snd_soc_dai *codec_dai = dai_link->codec_dai;
1067 struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001068 struct snd_soc_pcm_runtime *rtd;
1069 struct snd_pcm *pcm;
1070 char new_name[64];
1071 int ret = 0, playback = 0, capture = 0;
1072
1073 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
1074 if (rtd == NULL)
1075 return -ENOMEM;
Liam Girdwoodcb666e52007-02-02 17:13:49 +01001076
1077 rtd->dai = dai_link;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001078 rtd->socdev = socdev;
Mark Brown6627a652009-01-23 22:55:23 +00001079 codec_dai->codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001080
1081 /* check client and interface hw capabilities */
Mark Brown3ba9e10a2008-11-24 18:01:05 +00001082 sprintf(new_name, "%s %s-%d", dai_link->stream_name, codec_dai->name,
1083 num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001084
1085 if (codec_dai->playback.channels_min)
1086 playback = 1;
1087 if (codec_dai->capture.channels_min)
1088 capture = 1;
1089
1090 ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
1091 capture, &pcm);
1092 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001093 printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
1094 codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001095 kfree(rtd);
1096 return ret;
1097 }
1098
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001099 dai_link->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001100 pcm->private_data = rtd;
Mark Brown87689d52008-12-02 16:01:14 +00001101 soc_pcm_ops.mmap = platform->pcm_ops->mmap;
1102 soc_pcm_ops.pointer = platform->pcm_ops->pointer;
1103 soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
1104 soc_pcm_ops.copy = platform->pcm_ops->copy;
1105 soc_pcm_ops.silence = platform->pcm_ops->silence;
1106 soc_pcm_ops.ack = platform->pcm_ops->ack;
1107 soc_pcm_ops.page = platform->pcm_ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001108
1109 if (playback)
1110 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
1111
1112 if (capture)
1113 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
1114
Mark Brown87689d52008-12-02 16:01:14 +00001115 ret = platform->pcm_new(codec->card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001116 if (ret < 0) {
1117 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
1118 kfree(rtd);
1119 return ret;
1120 }
1121
Mark Brown87689d52008-12-02 16:01:14 +00001122 pcm->private_free = platform->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001123 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
1124 cpu_dai->name);
1125 return ret;
1126}
1127
Mark Brown096e49d2009-07-05 15:12:22 +01001128/**
1129 * snd_soc_codec_volatile_register: Report if a register is volatile.
1130 *
1131 * @codec: CODEC to query.
1132 * @reg: Register to query.
1133 *
1134 * Boolean function indiciating if a CODEC register is volatile.
1135 */
1136int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
1137{
1138 if (codec->volatile_register)
1139 return codec->volatile_register(reg);
1140 else
1141 return 0;
1142}
1143EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1144
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001145/* codec register dump */
Mark Brown6627a652009-01-23 22:55:23 +00001146static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001147{
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001148 int i, step = 1, count = 0;
1149
1150 if (!codec->reg_cache_size)
1151 return 0;
1152
1153 if (codec->reg_cache_step)
1154 step = codec->reg_cache_step;
1155
1156 count += sprintf(buf, "%s registers\n", codec->name);
Mark Brown58cd33c2008-07-29 11:42:25 +01001157 for (i = 0; i < codec->reg_cache_size; i += step) {
1158 count += sprintf(buf + count, "%2x: ", i);
1159 if (count >= PAGE_SIZE - 1)
1160 break;
1161
1162 if (codec->display_register)
1163 count += codec->display_register(codec, buf + count,
1164 PAGE_SIZE - count, i);
1165 else
1166 count += snprintf(buf + count, PAGE_SIZE - count,
1167 "%4x", codec->read(codec, i));
1168
1169 if (count >= PAGE_SIZE - 1)
1170 break;
1171
1172 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
1173 if (count >= PAGE_SIZE - 1)
1174 break;
1175 }
1176
1177 /* Truncate count; min() would cause a warning */
1178 if (count >= PAGE_SIZE)
1179 count = PAGE_SIZE - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001180
1181 return count;
1182}
Troy Kisky12ef1932008-10-13 17:42:14 -07001183static ssize_t codec_reg_show(struct device *dev,
1184 struct device_attribute *attr, char *buf)
1185{
1186 struct snd_soc_device *devdata = dev_get_drvdata(dev);
Mark Brown6627a652009-01-23 22:55:23 +00001187 return soc_codec_reg_show(devdata->card->codec, buf);
Troy Kisky12ef1932008-10-13 17:42:14 -07001188}
1189
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001190static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
1191
Troy Kisky12ef1932008-10-13 17:42:14 -07001192#ifdef CONFIG_DEBUG_FS
1193static int codec_reg_open_file(struct inode *inode, struct file *file)
1194{
1195 file->private_data = inode->i_private;
1196 return 0;
1197}
1198
1199static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
1200 size_t count, loff_t *ppos)
1201{
1202 ssize_t ret;
Mark Brown384c89e2008-12-03 17:34:03 +00001203 struct snd_soc_codec *codec = file->private_data;
Troy Kisky12ef1932008-10-13 17:42:14 -07001204 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1205 if (!buf)
1206 return -ENOMEM;
Mark Brown6627a652009-01-23 22:55:23 +00001207 ret = soc_codec_reg_show(codec, buf);
Troy Kisky12ef1932008-10-13 17:42:14 -07001208 if (ret >= 0)
1209 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1210 kfree(buf);
1211 return ret;
1212}
1213
1214static ssize_t codec_reg_write_file(struct file *file,
1215 const char __user *user_buf, size_t count, loff_t *ppos)
1216{
1217 char buf[32];
1218 int buf_size;
1219 char *start = buf;
1220 unsigned long reg, value;
1221 int step = 1;
Mark Brown384c89e2008-12-03 17:34:03 +00001222 struct snd_soc_codec *codec = file->private_data;
Troy Kisky12ef1932008-10-13 17:42:14 -07001223
1224 buf_size = min(count, (sizeof(buf)-1));
1225 if (copy_from_user(buf, user_buf, buf_size))
1226 return -EFAULT;
1227 buf[buf_size] = 0;
1228
1229 if (codec->reg_cache_step)
1230 step = codec->reg_cache_step;
1231
1232 while (*start == ' ')
1233 start++;
1234 reg = simple_strtoul(start, &start, 16);
1235 if ((reg >= codec->reg_cache_size) || (reg % step))
1236 return -EINVAL;
1237 while (*start == ' ')
1238 start++;
1239 if (strict_strtoul(start, 16, &value))
1240 return -EINVAL;
1241 codec->write(codec, reg, value);
1242 return buf_size;
1243}
1244
1245static const struct file_operations codec_reg_fops = {
1246 .open = codec_reg_open_file,
1247 .read = codec_reg_read_file,
1248 .write = codec_reg_write_file,
1249};
1250
Mark Brown384c89e2008-12-03 17:34:03 +00001251static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001252{
Mark Brown384c89e2008-12-03 17:34:03 +00001253 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
1254 debugfs_root, codec,
1255 &codec_reg_fops);
1256 if (!codec->debugfs_reg)
1257 printk(KERN_WARNING
1258 "ASoC: Failed to create codec register debugfs file\n");
Troy Kisky12ef1932008-10-13 17:42:14 -07001259
Mark Brown384c89e2008-12-03 17:34:03 +00001260 codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0744,
1261 debugfs_root,
1262 &codec->pop_time);
1263 if (!codec->debugfs_pop_time)
1264 printk(KERN_WARNING
1265 "Failed to create pop time debugfs file\n");
Troy Kisky12ef1932008-10-13 17:42:14 -07001266}
1267
Mark Brown384c89e2008-12-03 17:34:03 +00001268static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001269{
Mark Brown384c89e2008-12-03 17:34:03 +00001270 debugfs_remove(codec->debugfs_pop_time);
1271 debugfs_remove(codec->debugfs_reg);
Troy Kisky12ef1932008-10-13 17:42:14 -07001272}
1273
1274#else
1275
Mark Brown384c89e2008-12-03 17:34:03 +00001276static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001277{
1278}
1279
Mark Brown384c89e2008-12-03 17:34:03 +00001280static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001281{
1282}
1283#endif
1284
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001285/**
1286 * snd_soc_new_ac97_codec - initailise AC97 device
1287 * @codec: audio codec
1288 * @ops: AC97 bus operations
1289 * @num: AC97 codec number
1290 *
1291 * Initialises AC97 codec resources for use by ad-hoc devices only.
1292 */
1293int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1294 struct snd_ac97_bus_ops *ops, int num)
1295{
1296 mutex_lock(&codec->mutex);
1297
1298 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1299 if (codec->ac97 == NULL) {
1300 mutex_unlock(&codec->mutex);
1301 return -ENOMEM;
1302 }
1303
1304 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1305 if (codec->ac97->bus == NULL) {
1306 kfree(codec->ac97);
1307 codec->ac97 = NULL;
1308 mutex_unlock(&codec->mutex);
1309 return -ENOMEM;
1310 }
1311
1312 codec->ac97->bus->ops = ops;
1313 codec->ac97->num = num;
1314 mutex_unlock(&codec->mutex);
1315 return 0;
1316}
1317EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1318
1319/**
1320 * snd_soc_free_ac97_codec - free AC97 codec device
1321 * @codec: audio codec
1322 *
1323 * Frees AC97 codec device resources.
1324 */
1325void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1326{
1327 mutex_lock(&codec->mutex);
1328 kfree(codec->ac97->bus);
1329 kfree(codec->ac97);
1330 codec->ac97 = NULL;
1331 mutex_unlock(&codec->mutex);
1332}
1333EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1334
1335/**
1336 * snd_soc_update_bits - update codec register bits
1337 * @codec: audio codec
1338 * @reg: codec register
1339 * @mask: register mask
1340 * @value: new value
1341 *
1342 * Writes new register value.
1343 *
1344 * Returns 1 for change else 0.
1345 */
1346int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001347 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001348{
1349 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001350 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001351
1352 mutex_lock(&io_mutex);
1353 old = snd_soc_read(codec, reg);
1354 new = (old & ~mask) | value;
1355 change = old != new;
1356 if (change)
1357 snd_soc_write(codec, reg, new);
1358
1359 mutex_unlock(&io_mutex);
1360 return change;
1361}
1362EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1363
1364/**
1365 * snd_soc_test_bits - test register for change
1366 * @codec: audio codec
1367 * @reg: codec register
1368 * @mask: register mask
1369 * @value: new value
1370 *
1371 * Tests a register with a new value and checks if the new value is
1372 * different from the old value.
1373 *
1374 * Returns 1 for change else 0.
1375 */
1376int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001377 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001378{
1379 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001380 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001381
1382 mutex_lock(&io_mutex);
1383 old = snd_soc_read(codec, reg);
1384 new = (old & ~mask) | value;
1385 change = old != new;
1386 mutex_unlock(&io_mutex);
1387
1388 return change;
1389}
1390EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1391
1392/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001393 * snd_soc_new_pcms - create new sound card and pcms
1394 * @socdev: the SoC audio device
Mark Brownac11a2b2009-01-01 12:18:17 +00001395 * @idx: ALSA card index
1396 * @xid: card identification
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001397 *
1398 * Create a new sound card based upon the codec and interface pcms.
1399 *
1400 * Returns 0 for success, else error.
1401 */
Liam Girdwoodbc7320c2007-02-01 12:26:07 +01001402int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001403{
Mark Brown87506542008-11-18 20:50:34 +00001404 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001405 struct snd_soc_codec *codec = card->codec;
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001406 int ret, i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001407
1408 mutex_lock(&codec->mutex);
1409
1410 /* register a sound card */
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001411 ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
1412 if (ret < 0) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001413 printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
1414 codec->name);
1415 mutex_unlock(&codec->mutex);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001416 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001417 }
1418
Mark Brown452c5ea2009-05-17 21:41:23 +01001419 codec->socdev = socdev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001420 codec->card->dev = socdev->dev;
1421 codec->card->private_data = codec;
1422 strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
1423
1424 /* create the pcms */
Mark Brown87506542008-11-18 20:50:34 +00001425 for (i = 0; i < card->num_links; i++) {
1426 ret = soc_new_pcm(socdev, &card->dai_link[i], i);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001427 if (ret < 0) {
1428 printk(KERN_ERR "asoc: can't create pcm %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001429 card->dai_link[i].stream_name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001430 mutex_unlock(&codec->mutex);
1431 return ret;
1432 }
1433 }
1434
1435 mutex_unlock(&codec->mutex);
1436 return ret;
1437}
1438EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
1439
1440/**
Mark Brown968a6022008-11-28 11:49:07 +00001441 * snd_soc_init_card - register sound card
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001442 * @socdev: the SoC audio device
1443 *
1444 * Register a SoC sound card. Also registers an AC97 device if the
1445 * codec is AC97 for ad hoc devices.
1446 *
1447 * Returns 0 for success, else error.
1448 */
Mark Brown968a6022008-11-28 11:49:07 +00001449int snd_soc_init_card(struct snd_soc_device *socdev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001450{
Mark Brown87506542008-11-18 20:50:34 +00001451 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001452 struct snd_soc_codec *codec = card->codec;
Liam Girdwood12e74f72006-10-16 21:19:48 +02001453 int ret = 0, i, ac97 = 0, err = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001454
Mark Brown87506542008-11-18 20:50:34 +00001455 for (i = 0; i < card->num_links; i++) {
1456 if (card->dai_link[i].init) {
1457 err = card->dai_link[i].init(codec);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001458 if (err < 0) {
1459 printk(KERN_ERR "asoc: failed to init %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001460 card->dai_link[i].stream_name);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001461 continue;
1462 }
1463 }
Mark Brown3ba9e10a2008-11-24 18:01:05 +00001464 if (card->dai_link[i].codec_dai->ac97_control)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001465 ac97 = 1;
1466 }
1467 snprintf(codec->card->shortname, sizeof(codec->card->shortname),
Mark Brown87506542008-11-18 20:50:34 +00001468 "%s", card->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001469 snprintf(codec->card->longname, sizeof(codec->card->longname),
Mark Brown87506542008-11-18 20:50:34 +00001470 "%s (%s)", card->name, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001471
Mark Brown6d5701b2009-06-14 11:33:37 +01001472 /* Make sure all DAPM widgets are instantiated */
1473 snd_soc_dapm_new_widgets(codec);
1474
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001475 ret = snd_card_register(codec->card);
1476 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001477 printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001478 codec->name);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001479 goto out;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001480 }
1481
Mark Brown08c8efe2008-01-21 14:33:37 +01001482 mutex_lock(&codec->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001483#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown14fa43f2009-02-12 19:33:19 +00001484 /* Only instantiate AC97 if not already done by the adaptor
1485 * for the generic AC97 subsystem.
1486 */
1487 if (ac97 && strcmp(codec->name, "AC97") != 0) {
Liam Girdwood12e74f72006-10-16 21:19:48 +02001488 ret = soc_ac97_dev_register(codec);
1489 if (ret < 0) {
1490 printk(KERN_ERR "asoc: AC97 device register failed\n");
1491 snd_card_free(codec->card);
Mark Brown08c8efe2008-01-21 14:33:37 +01001492 mutex_unlock(&codec->mutex);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001493 goto out;
1494 }
1495 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001496#endif
1497
Liam Girdwood12e74f72006-10-16 21:19:48 +02001498 err = snd_soc_dapm_sys_add(socdev->dev);
1499 if (err < 0)
1500 printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
1501
1502 err = device_create_file(socdev->dev, &dev_attr_codec_reg);
1503 if (err < 0)
Mark Brown3ff3f642008-05-19 12:32:25 +02001504 printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
Mark Brown08c8efe2008-01-21 14:33:37 +01001505
Mark Brown6627a652009-01-23 22:55:23 +00001506 soc_init_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001507 mutex_unlock(&codec->mutex);
Mark Brown08c8efe2008-01-21 14:33:37 +01001508
1509out:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001510 return ret;
1511}
Mark Brown968a6022008-11-28 11:49:07 +00001512EXPORT_SYMBOL_GPL(snd_soc_init_card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001513
1514/**
1515 * snd_soc_free_pcms - free sound card and pcms
1516 * @socdev: the SoC audio device
1517 *
1518 * Frees sound card and pcms associated with the socdev.
1519 * Also unregister the codec if it is an AC97 device.
1520 */
1521void snd_soc_free_pcms(struct snd_soc_device *socdev)
1522{
Mark Brown6627a652009-01-23 22:55:23 +00001523 struct snd_soc_codec *codec = socdev->card->codec;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001524#ifdef CONFIG_SND_SOC_AC97_BUS
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001525 struct snd_soc_dai *codec_dai;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001526 int i;
1527#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001528
1529 mutex_lock(&codec->mutex);
Mark Brown6627a652009-01-23 22:55:23 +00001530 soc_cleanup_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001531#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown3ff3f642008-05-19 12:32:25 +02001532 for (i = 0; i < codec->num_dai; i++) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001533 codec_dai = &codec->dai[i];
Atsushi Nemotod2314e02009-03-16 23:26:20 +09001534 if (codec_dai->ac97_control && codec->ac97 &&
1535 strcmp(codec->name, "AC97") != 0) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001536 soc_ac97_dev_unregister(codec);
1537 goto free_card;
1538 }
1539 }
1540free_card:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001541#endif
1542
1543 if (codec->card)
1544 snd_card_free(codec->card);
1545 device_remove_file(socdev->dev, &dev_attr_codec_reg);
1546 mutex_unlock(&codec->mutex);
1547}
1548EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
1549
1550/**
1551 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1552 * @substream: the pcm substream
1553 * @hw: the hardware parameters
1554 *
1555 * Sets the substream runtime hardware parameters.
1556 */
1557int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1558 const struct snd_pcm_hardware *hw)
1559{
1560 struct snd_pcm_runtime *runtime = substream->runtime;
1561 runtime->hw.info = hw->info;
1562 runtime->hw.formats = hw->formats;
1563 runtime->hw.period_bytes_min = hw->period_bytes_min;
1564 runtime->hw.period_bytes_max = hw->period_bytes_max;
1565 runtime->hw.periods_min = hw->periods_min;
1566 runtime->hw.periods_max = hw->periods_max;
1567 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1568 runtime->hw.fifo_size = hw->fifo_size;
1569 return 0;
1570}
1571EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1572
1573/**
1574 * snd_soc_cnew - create new control
1575 * @_template: control template
1576 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001577 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001578 *
1579 * Create a new mixer control from a template control.
1580 *
1581 * Returns 0 for success, else error.
1582 */
1583struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
1584 void *data, char *long_name)
1585{
1586 struct snd_kcontrol_new template;
1587
1588 memcpy(&template, _template, sizeof(template));
1589 if (long_name)
1590 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001591 template.index = 0;
1592
1593 return snd_ctl_new1(&template, data);
1594}
1595EXPORT_SYMBOL_GPL(snd_soc_cnew);
1596
1597/**
Ian Molton3e8e1952009-01-09 00:23:21 +00001598 * snd_soc_add_controls - add an array of controls to a codec.
1599 * Convienience function to add a list of controls. Many codecs were
1600 * duplicating this code.
1601 *
1602 * @codec: codec to add controls to
1603 * @controls: array of controls to add
1604 * @num_controls: number of elements in the array
1605 *
1606 * Return 0 for success, else error.
1607 */
1608int snd_soc_add_controls(struct snd_soc_codec *codec,
1609 const struct snd_kcontrol_new *controls, int num_controls)
1610{
1611 struct snd_card *card = codec->card;
1612 int err, i;
1613
1614 for (i = 0; i < num_controls; i++) {
1615 const struct snd_kcontrol_new *control = &controls[i];
1616 err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
1617 if (err < 0) {
1618 dev_err(codec->dev, "%s: Failed to add %s\n",
1619 codec->name, control->name);
1620 return err;
1621 }
1622 }
1623
1624 return 0;
1625}
1626EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1627
1628/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001629 * snd_soc_info_enum_double - enumerated double mixer info callback
1630 * @kcontrol: mixer control
1631 * @uinfo: control element information
1632 *
1633 * Callback to provide information about a double enumerated
1634 * mixer control.
1635 *
1636 * Returns 0 for success.
1637 */
1638int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
1639 struct snd_ctl_elem_info *uinfo)
1640{
1641 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1642
1643 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1644 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001645 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001646
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001647 if (uinfo->value.enumerated.item > e->max - 1)
1648 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001649 strcpy(uinfo->value.enumerated.name,
1650 e->texts[uinfo->value.enumerated.item]);
1651 return 0;
1652}
1653EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
1654
1655/**
1656 * snd_soc_get_enum_double - enumerated double mixer get callback
1657 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001658 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001659 *
1660 * Callback to get the value of a double enumerated mixer.
1661 *
1662 * Returns 0 for success.
1663 */
1664int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
1665 struct snd_ctl_elem_value *ucontrol)
1666{
1667 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1668 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001669 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001670
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001671 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001672 ;
1673 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02001674 ucontrol->value.enumerated.item[0]
1675 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001676 if (e->shift_l != e->shift_r)
1677 ucontrol->value.enumerated.item[1] =
1678 (val >> e->shift_r) & (bitmask - 1);
1679
1680 return 0;
1681}
1682EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
1683
1684/**
1685 * snd_soc_put_enum_double - enumerated double mixer put callback
1686 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001687 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001688 *
1689 * Callback to set the value of a double enumerated mixer.
1690 *
1691 * Returns 0 for success.
1692 */
1693int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
1694 struct snd_ctl_elem_value *ucontrol)
1695{
1696 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1697 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001698 unsigned int val;
1699 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001700
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001701 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001702 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001703 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001704 return -EINVAL;
1705 val = ucontrol->value.enumerated.item[0] << e->shift_l;
1706 mask = (bitmask - 1) << e->shift_l;
1707 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001708 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001709 return -EINVAL;
1710 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1711 mask |= (bitmask - 1) << e->shift_r;
1712 }
1713
1714 return snd_soc_update_bits(codec, e->reg, mask, val);
1715}
1716EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
1717
1718/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001719 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1720 * @kcontrol: mixer control
1721 * @ucontrol: control element information
1722 *
1723 * Callback to get the value of a double semi enumerated mixer.
1724 *
1725 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1726 * used for handling bitfield coded enumeration for example.
1727 *
1728 * Returns 0 for success.
1729 */
1730int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
1731 struct snd_ctl_elem_value *ucontrol)
1732{
1733 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001734 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001735 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001736
1737 reg_val = snd_soc_read(codec, e->reg);
1738 val = (reg_val >> e->shift_l) & e->mask;
1739 for (mux = 0; mux < e->max; mux++) {
1740 if (val == e->values[mux])
1741 break;
1742 }
1743 ucontrol->value.enumerated.item[0] = mux;
1744 if (e->shift_l != e->shift_r) {
1745 val = (reg_val >> e->shift_r) & e->mask;
1746 for (mux = 0; mux < e->max; mux++) {
1747 if (val == e->values[mux])
1748 break;
1749 }
1750 ucontrol->value.enumerated.item[1] = mux;
1751 }
1752
1753 return 0;
1754}
1755EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
1756
1757/**
1758 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1759 * @kcontrol: mixer control
1760 * @ucontrol: control element information
1761 *
1762 * Callback to set the value of a double semi enumerated mixer.
1763 *
1764 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1765 * used for handling bitfield coded enumeration for example.
1766 *
1767 * Returns 0 for success.
1768 */
1769int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
1770 struct snd_ctl_elem_value *ucontrol)
1771{
1772 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001773 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001774 unsigned int val;
1775 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001776
1777 if (ucontrol->value.enumerated.item[0] > e->max - 1)
1778 return -EINVAL;
1779 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1780 mask = e->mask << e->shift_l;
1781 if (e->shift_l != e->shift_r) {
1782 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1783 return -EINVAL;
1784 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1785 mask |= e->mask << e->shift_r;
1786 }
1787
1788 return snd_soc_update_bits(codec, e->reg, mask, val);
1789}
1790EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
1791
1792/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001793 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1794 * @kcontrol: mixer control
1795 * @uinfo: control element information
1796 *
1797 * Callback to provide information about an external enumerated
1798 * single mixer.
1799 *
1800 * Returns 0 for success.
1801 */
1802int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
1803 struct snd_ctl_elem_info *uinfo)
1804{
1805 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1806
1807 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1808 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001809 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001810
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001811 if (uinfo->value.enumerated.item > e->max - 1)
1812 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001813 strcpy(uinfo->value.enumerated.name,
1814 e->texts[uinfo->value.enumerated.item]);
1815 return 0;
1816}
1817EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
1818
1819/**
1820 * snd_soc_info_volsw_ext - external single mixer info callback
1821 * @kcontrol: mixer control
1822 * @uinfo: control element information
1823 *
1824 * Callback to provide information about a single external mixer control.
1825 *
1826 * Returns 0 for success.
1827 */
1828int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
1829 struct snd_ctl_elem_info *uinfo)
1830{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001831 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001832
Mark Brownfd5dfad2009-04-15 21:37:46 +01001833 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001834 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1835 else
1836 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1837
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001838 uinfo->count = 1;
1839 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001840 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001841 return 0;
1842}
1843EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
1844
1845/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001846 * snd_soc_info_volsw - single mixer info callback
1847 * @kcontrol: mixer control
1848 * @uinfo: control element information
1849 *
1850 * Callback to provide information about a single mixer control.
1851 *
1852 * Returns 0 for success.
1853 */
1854int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
1855 struct snd_ctl_elem_info *uinfo)
1856{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001857 struct soc_mixer_control *mc =
1858 (struct soc_mixer_control *)kcontrol->private_value;
1859 int max = mc->max;
Mark Brown762b8df2008-10-30 12:37:08 +00001860 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001861 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001862
Mark Brownfd5dfad2009-04-15 21:37:46 +01001863 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001864 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1865 else
1866 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1867
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001868 uinfo->count = shift == rshift ? 1 : 2;
1869 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001870 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001871 return 0;
1872}
1873EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
1874
1875/**
1876 * snd_soc_get_volsw - single mixer get callback
1877 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001878 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001879 *
1880 * Callback to get the value of a single mixer control.
1881 *
1882 * Returns 0 for success.
1883 */
1884int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
1885 struct snd_ctl_elem_value *ucontrol)
1886{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001887 struct soc_mixer_control *mc =
1888 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001889 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001890 unsigned int reg = mc->reg;
1891 unsigned int shift = mc->shift;
1892 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001893 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001894 unsigned int mask = (1 << fls(max)) - 1;
1895 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001896
1897 ucontrol->value.integer.value[0] =
1898 (snd_soc_read(codec, reg) >> shift) & mask;
1899 if (shift != rshift)
1900 ucontrol->value.integer.value[1] =
1901 (snd_soc_read(codec, reg) >> rshift) & mask;
1902 if (invert) {
1903 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001904 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001905 if (shift != rshift)
1906 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001907 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001908 }
1909
1910 return 0;
1911}
1912EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
1913
1914/**
1915 * snd_soc_put_volsw - single mixer put callback
1916 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001917 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001918 *
1919 * Callback to set the value of a single mixer control.
1920 *
1921 * Returns 0 for success.
1922 */
1923int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
1924 struct snd_ctl_elem_value *ucontrol)
1925{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001926 struct soc_mixer_control *mc =
1927 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001928 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001929 unsigned int reg = mc->reg;
1930 unsigned int shift = mc->shift;
1931 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001932 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001933 unsigned int mask = (1 << fls(max)) - 1;
1934 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001935 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001936
1937 val = (ucontrol->value.integer.value[0] & mask);
1938 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001939 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001940 val_mask = mask << shift;
1941 val = val << shift;
1942 if (shift != rshift) {
1943 val2 = (ucontrol->value.integer.value[1] & mask);
1944 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001945 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001946 val_mask |= mask << rshift;
1947 val |= val2 << rshift;
1948 }
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001949 return snd_soc_update_bits(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001950}
1951EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
1952
1953/**
1954 * snd_soc_info_volsw_2r - double mixer info callback
1955 * @kcontrol: mixer control
1956 * @uinfo: control element information
1957 *
1958 * Callback to provide information about a double mixer control that
1959 * spans 2 codec registers.
1960 *
1961 * Returns 0 for success.
1962 */
1963int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
1964 struct snd_ctl_elem_info *uinfo)
1965{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001966 struct soc_mixer_control *mc =
1967 (struct soc_mixer_control *)kcontrol->private_value;
1968 int max = mc->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001969
Mark Brownfd5dfad2009-04-15 21:37:46 +01001970 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001971 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1972 else
1973 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1974
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001975 uinfo->count = 2;
1976 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001977 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001978 return 0;
1979}
1980EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
1981
1982/**
1983 * snd_soc_get_volsw_2r - double mixer get callback
1984 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001985 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001986 *
1987 * Callback to get the value of a double mixer control that spans 2 registers.
1988 *
1989 * Returns 0 for success.
1990 */
1991int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
1992 struct snd_ctl_elem_value *ucontrol)
1993{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001994 struct soc_mixer_control *mc =
1995 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001996 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001997 unsigned int reg = mc->reg;
1998 unsigned int reg2 = mc->rreg;
1999 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002000 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002001 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002002 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002003
2004 ucontrol->value.integer.value[0] =
2005 (snd_soc_read(codec, reg) >> shift) & mask;
2006 ucontrol->value.integer.value[1] =
2007 (snd_soc_read(codec, reg2) >> shift) & mask;
2008 if (invert) {
2009 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002010 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002011 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002012 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002013 }
2014
2015 return 0;
2016}
2017EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2018
2019/**
2020 * snd_soc_put_volsw_2r - double mixer set callback
2021 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002022 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002023 *
2024 * Callback to set the value of a double mixer control that spans 2 registers.
2025 *
2026 * Returns 0 for success.
2027 */
2028int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2029 struct snd_ctl_elem_value *ucontrol)
2030{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002031 struct soc_mixer_control *mc =
2032 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002033 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002034 unsigned int reg = mc->reg;
2035 unsigned int reg2 = mc->rreg;
2036 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002037 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002038 unsigned int mask = (1 << fls(max)) - 1;
2039 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002040 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002041 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002042
2043 val_mask = mask << shift;
2044 val = (ucontrol->value.integer.value[0] & mask);
2045 val2 = (ucontrol->value.integer.value[1] & mask);
2046
2047 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002048 val = max - val;
2049 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002050 }
2051
2052 val = val << shift;
2053 val2 = val2 << shift;
2054
Mark Brown3ff3f642008-05-19 12:32:25 +02002055 err = snd_soc_update_bits(codec, reg, val_mask, val);
2056 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002057 return err;
2058
2059 err = snd_soc_update_bits(codec, reg2, val_mask, val2);
2060 return err;
2061}
2062EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2063
Mark Browne13ac2e2008-05-28 17:58:05 +01002064/**
2065 * snd_soc_info_volsw_s8 - signed mixer info callback
2066 * @kcontrol: mixer control
2067 * @uinfo: control element information
2068 *
2069 * Callback to provide information about a signed mixer control.
2070 *
2071 * Returns 0 for success.
2072 */
2073int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2074 struct snd_ctl_elem_info *uinfo)
2075{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002076 struct soc_mixer_control *mc =
2077 (struct soc_mixer_control *)kcontrol->private_value;
2078 int max = mc->max;
2079 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002080
2081 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2082 uinfo->count = 2;
2083 uinfo->value.integer.min = 0;
2084 uinfo->value.integer.max = max-min;
2085 return 0;
2086}
2087EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2088
2089/**
2090 * snd_soc_get_volsw_s8 - signed mixer get callback
2091 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002092 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002093 *
2094 * Callback to get the value of a signed mixer control.
2095 *
2096 * Returns 0 for success.
2097 */
2098int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2099 struct snd_ctl_elem_value *ucontrol)
2100{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002101 struct soc_mixer_control *mc =
2102 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002103 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002104 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002105 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002106 int val = snd_soc_read(codec, reg);
2107
2108 ucontrol->value.integer.value[0] =
2109 ((signed char)(val & 0xff))-min;
2110 ucontrol->value.integer.value[1] =
2111 ((signed char)((val >> 8) & 0xff))-min;
2112 return 0;
2113}
2114EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2115
2116/**
2117 * snd_soc_put_volsw_sgn - signed mixer put callback
2118 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002119 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002120 *
2121 * Callback to set the value of a signed mixer control.
2122 *
2123 * Returns 0 for success.
2124 */
2125int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2126 struct snd_ctl_elem_value *ucontrol)
2127{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002128 struct soc_mixer_control *mc =
2129 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002130 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002131 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002132 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002133 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002134
2135 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2136 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2137
2138 return snd_soc_update_bits(codec, reg, 0xffff, val);
2139}
2140EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2141
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002142/**
2143 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2144 * @dai: DAI
2145 * @clk_id: DAI specific clock ID
2146 * @freq: new clock frequency in Hz
2147 * @dir: new clock direction - input/output.
2148 *
2149 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2150 */
2151int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2152 unsigned int freq, int dir)
2153{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002154 if (dai->ops && dai->ops->set_sysclk)
Eric Miao6335d052009-03-03 09:41:00 +08002155 return dai->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002156 else
2157 return -EINVAL;
2158}
2159EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2160
2161/**
2162 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2163 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002164 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002165 * @div: new clock divisor.
2166 *
2167 * Configures the clock dividers. This is used to derive the best DAI bit and
2168 * frame clocks from the system or master clock. It's best to set the DAI bit
2169 * and frame clocks as low as possible to save system power.
2170 */
2171int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2172 int div_id, int div)
2173{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002174 if (dai->ops && dai->ops->set_clkdiv)
Eric Miao6335d052009-03-03 09:41:00 +08002175 return dai->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002176 else
2177 return -EINVAL;
2178}
2179EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2180
2181/**
2182 * snd_soc_dai_set_pll - configure DAI PLL.
2183 * @dai: DAI
2184 * @pll_id: DAI specific PLL ID
2185 * @freq_in: PLL input clock frequency in Hz
2186 * @freq_out: requested PLL output clock frequency in Hz
2187 *
2188 * Configures and enables PLL to generate output clock based on input clock.
2189 */
2190int snd_soc_dai_set_pll(struct snd_soc_dai *dai,
2191 int pll_id, unsigned int freq_in, unsigned int freq_out)
2192{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002193 if (dai->ops && dai->ops->set_pll)
Eric Miao6335d052009-03-03 09:41:00 +08002194 return dai->ops->set_pll(dai, pll_id, freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002195 else
2196 return -EINVAL;
2197}
2198EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2199
2200/**
2201 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2202 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002203 * @fmt: SND_SOC_DAIFMT_ format value.
2204 *
2205 * Configures the DAI hardware format and clocking.
2206 */
2207int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2208{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002209 if (dai->ops && dai->ops->set_fmt)
Eric Miao6335d052009-03-03 09:41:00 +08002210 return dai->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002211 else
2212 return -EINVAL;
2213}
2214EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2215
2216/**
2217 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2218 * @dai: DAI
2219 * @mask: DAI specific mask representing used slots.
2220 * @slots: Number of slots in use.
2221 *
2222 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2223 * specific.
2224 */
2225int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
2226 unsigned int mask, int slots)
2227{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002228 if (dai->ops && dai->ops->set_tdm_slot)
Eric Miao6335d052009-03-03 09:41:00 +08002229 return dai->ops->set_tdm_slot(dai, mask, slots);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002230 else
2231 return -EINVAL;
2232}
2233EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2234
2235/**
2236 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2237 * @dai: DAI
2238 * @tristate: tristate enable
2239 *
2240 * Tristates the DAI so that others can use it.
2241 */
2242int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2243{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002244 if (dai->ops && dai->ops->set_tristate)
Eric Miao6335d052009-03-03 09:41:00 +08002245 return dai->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002246 else
2247 return -EINVAL;
2248}
2249EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2250
2251/**
2252 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2253 * @dai: DAI
2254 * @mute: mute enable
2255 *
2256 * Mutes the DAI DAC.
2257 */
2258int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2259{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002260 if (dai->ops && dai->ops->digital_mute)
Eric Miao6335d052009-03-03 09:41:00 +08002261 return dai->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002262 else
2263 return -EINVAL;
2264}
2265EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2266
Mark Brownc5af3a22008-11-28 13:29:45 +00002267/**
2268 * snd_soc_register_card - Register a card with the ASoC core
2269 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002270 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002271 *
2272 * Note that currently this is an internal only function: it will be
2273 * exposed to machine drivers after further backporting of ASoC v2
2274 * registration APIs.
2275 */
2276static int snd_soc_register_card(struct snd_soc_card *card)
2277{
2278 if (!card->name || !card->dev)
2279 return -EINVAL;
2280
2281 INIT_LIST_HEAD(&card->list);
2282 card->instantiated = 0;
2283
2284 mutex_lock(&client_mutex);
2285 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002286 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002287 mutex_unlock(&client_mutex);
2288
2289 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2290
2291 return 0;
2292}
2293
2294/**
2295 * snd_soc_unregister_card - Unregister a card with the ASoC core
2296 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002297 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002298 *
2299 * Note that currently this is an internal only function: it will be
2300 * exposed to machine drivers after further backporting of ASoC v2
2301 * registration APIs.
2302 */
2303static int snd_soc_unregister_card(struct snd_soc_card *card)
2304{
2305 mutex_lock(&client_mutex);
2306 list_del(&card->list);
2307 mutex_unlock(&client_mutex);
2308
2309 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2310
2311 return 0;
2312}
2313
Eric Miao6335d052009-03-03 09:41:00 +08002314static struct snd_soc_dai_ops null_dai_ops = {
2315};
2316
Mark Brown91151712008-11-30 23:31:24 +00002317/**
2318 * snd_soc_register_dai - Register a DAI with the ASoC core
2319 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002320 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00002321 */
2322int snd_soc_register_dai(struct snd_soc_dai *dai)
2323{
2324 if (!dai->name)
2325 return -EINVAL;
2326
2327 /* The device should become mandatory over time */
2328 if (!dai->dev)
2329 printk(KERN_WARNING "No device for DAI %s\n", dai->name);
2330
Eric Miao6335d052009-03-03 09:41:00 +08002331 if (!dai->ops)
2332 dai->ops = &null_dai_ops;
2333
Mark Brown91151712008-11-30 23:31:24 +00002334 INIT_LIST_HEAD(&dai->list);
2335
2336 mutex_lock(&client_mutex);
2337 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002338 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00002339 mutex_unlock(&client_mutex);
2340
2341 pr_debug("Registered DAI '%s'\n", dai->name);
2342
2343 return 0;
2344}
2345EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2346
2347/**
2348 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2349 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002350 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00002351 */
2352void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2353{
2354 mutex_lock(&client_mutex);
2355 list_del(&dai->list);
2356 mutex_unlock(&client_mutex);
2357
2358 pr_debug("Unregistered DAI '%s'\n", dai->name);
2359}
2360EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2361
2362/**
2363 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2364 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002365 * @dai: Array of DAIs to register
2366 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002367 */
2368int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
2369{
2370 int i, ret;
2371
2372 for (i = 0; i < count; i++) {
2373 ret = snd_soc_register_dai(&dai[i]);
2374 if (ret != 0)
2375 goto err;
2376 }
2377
2378 return 0;
2379
2380err:
2381 for (i--; i >= 0; i--)
2382 snd_soc_unregister_dai(&dai[i]);
2383
2384 return ret;
2385}
2386EXPORT_SYMBOL_GPL(snd_soc_register_dais);
2387
2388/**
2389 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2390 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002391 * @dai: Array of DAIs to unregister
2392 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002393 */
2394void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
2395{
2396 int i;
2397
2398 for (i = 0; i < count; i++)
2399 snd_soc_unregister_dai(&dai[i]);
2400}
2401EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
2402
Mark Brown12a48a8c2008-12-03 19:40:30 +00002403/**
2404 * snd_soc_register_platform - Register a platform with the ASoC core
2405 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002406 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00002407 */
2408int snd_soc_register_platform(struct snd_soc_platform *platform)
2409{
2410 if (!platform->name)
2411 return -EINVAL;
2412
2413 INIT_LIST_HEAD(&platform->list);
2414
2415 mutex_lock(&client_mutex);
2416 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002417 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00002418 mutex_unlock(&client_mutex);
2419
2420 pr_debug("Registered platform '%s'\n", platform->name);
2421
2422 return 0;
2423}
2424EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2425
2426/**
2427 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2428 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002429 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002430 */
2431void snd_soc_unregister_platform(struct snd_soc_platform *platform)
2432{
2433 mutex_lock(&client_mutex);
2434 list_del(&platform->list);
2435 mutex_unlock(&client_mutex);
2436
2437 pr_debug("Unregistered platform '%s'\n", platform->name);
2438}
2439EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2440
Mark Brown151ab222009-05-09 16:22:58 +01002441static u64 codec_format_map[] = {
2442 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2443 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2444 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2445 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2446 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2447 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2448 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2449 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2450 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2451 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2452 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2453 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2454 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2455 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2456 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2457 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2458};
2459
2460/* Fix up the DAI formats for endianness: codecs don't actually see
2461 * the endianness of the data but we're using the CPU format
2462 * definitions which do need to include endianness so we ensure that
2463 * codec DAIs always have both big and little endian variants set.
2464 */
2465static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2466{
2467 int i;
2468
2469 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2470 if (stream->formats & codec_format_map[i])
2471 stream->formats |= codec_format_map[i];
2472}
2473
Mark Brown0d0cf002008-12-10 14:32:45 +00002474/**
2475 * snd_soc_register_codec - Register a codec with the ASoC core
2476 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002477 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002478 */
2479int snd_soc_register_codec(struct snd_soc_codec *codec)
2480{
Mark Brown151ab222009-05-09 16:22:58 +01002481 int i;
2482
Mark Brown0d0cf002008-12-10 14:32:45 +00002483 if (!codec->name)
2484 return -EINVAL;
2485
2486 /* The device should become mandatory over time */
2487 if (!codec->dev)
2488 printk(KERN_WARNING "No device for codec %s\n", codec->name);
2489
2490 INIT_LIST_HEAD(&codec->list);
2491
Mark Brown151ab222009-05-09 16:22:58 +01002492 for (i = 0; i < codec->num_dai; i++) {
2493 fixup_codec_formats(&codec->dai[i].playback);
2494 fixup_codec_formats(&codec->dai[i].capture);
2495 }
2496
Mark Brown0d0cf002008-12-10 14:32:45 +00002497 mutex_lock(&client_mutex);
2498 list_add(&codec->list, &codec_list);
2499 snd_soc_instantiate_cards();
2500 mutex_unlock(&client_mutex);
2501
2502 pr_debug("Registered codec '%s'\n", codec->name);
2503
2504 return 0;
2505}
2506EXPORT_SYMBOL_GPL(snd_soc_register_codec);
2507
2508/**
2509 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2510 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002511 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00002512 */
2513void snd_soc_unregister_codec(struct snd_soc_codec *codec)
2514{
2515 mutex_lock(&client_mutex);
2516 list_del(&codec->list);
2517 mutex_unlock(&client_mutex);
2518
2519 pr_debug("Unregistered codec '%s'\n", codec->name);
2520}
2521EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
2522
Takashi Iwaic9b3a402008-12-10 07:47:22 +01002523static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002524{
Mark Brown384c89e2008-12-03 17:34:03 +00002525#ifdef CONFIG_DEBUG_FS
2526 debugfs_root = debugfs_create_dir("asoc", NULL);
2527 if (IS_ERR(debugfs_root) || !debugfs_root) {
2528 printk(KERN_WARNING
2529 "ASoC: Failed to create debugfs directory\n");
2530 debugfs_root = NULL;
2531 }
2532#endif
2533
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002534 return platform_driver_register(&soc_driver);
2535}
2536
Mark Brown7d8c16a2008-11-30 22:11:24 +00002537static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002538{
Mark Brown384c89e2008-12-03 17:34:03 +00002539#ifdef CONFIG_DEBUG_FS
2540 debugfs_remove_recursive(debugfs_root);
2541#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02002542 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002543}
2544
2545module_init(snd_soc_init);
2546module_exit(snd_soc_exit);
2547
2548/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01002549MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002550MODULE_DESCRIPTION("ALSA SoC Core");
2551MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02002552MODULE_ALIAS("platform:soc-audio");