blob: 6e24654194eeb3b7895d0b2f506289590f1ba509 [file] [log] [blame]
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001/*
2 * soc-core.c -- ALSA SoC Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwood0664d882006-12-18 14:39:02 +01005 * Copyright 2005 Openedhand Ltd.
6 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +01008 * with code, comments and ideas from :-
9 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020010 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020016 * TODO:
17 * o Add hw rules to enforce rates, etc.
18 * o More testing with other codecs/machines.
19 * o Add more codecs and platforms to ensure good API coverage.
20 * o Support TDM on PCM and I2S
21 */
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/pm.h>
28#include <linux/bitops.h>
Troy Kisky12ef1932008-10-13 17:42:14 -070029#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020030#include <linux/platform_device.h>
Marek Vasut474828a2009-07-22 13:01:03 +020031#include <sound/ac97_codec.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020032#include <sound/core.h>
33#include <sound/pcm.h>
34#include <sound/pcm_params.h>
35#include <sound/soc.h>
36#include <sound/soc-dapm.h>
37#include <sound/initval.h>
38
Frank Mandarinodb2a4162006-10-06 18:31:09 +020039static DEFINE_MUTEX(pcm_mutex);
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}
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200792#else
793#define soc_suspend NULL
794#define soc_resume NULL
795#endif
796
Barry Song02a06d32009-10-16 18:13:38 +0800797static struct snd_soc_dai_ops null_dai_ops = {
798};
799
Mark Brown435c5e22008-12-04 15:32:53 +0000800static void snd_soc_instantiate_card(struct snd_soc_card *card)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200801{
Mark Brown435c5e22008-12-04 15:32:53 +0000802 struct platform_device *pdev = container_of(card->dev,
803 struct platform_device,
804 dev);
805 struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev;
806 struct snd_soc_platform *platform;
807 struct snd_soc_dai *dai;
Mark Brown6b05eda2008-12-08 19:26:48 +0000808 int i, found, ret, ac97;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200809
Mark Brown435c5e22008-12-04 15:32:53 +0000810 if (card->instantiated)
811 return;
Mark Brown63084192008-12-02 15:08:03 +0000812
Mark Brown435c5e22008-12-04 15:32:53 +0000813 found = 0;
814 list_for_each_entry(platform, &platform_list, list)
815 if (card->platform == platform) {
816 found = 1;
817 break;
818 }
819 if (!found) {
820 dev_dbg(card->dev, "Platform %s not registered\n",
821 card->platform->name);
822 return;
Mark Brownc5af3a22008-11-28 13:29:45 +0000823 }
824
Mark Brown6b05eda2008-12-08 19:26:48 +0000825 ac97 = 0;
Mark Brown435c5e22008-12-04 15:32:53 +0000826 for (i = 0; i < card->num_links; i++) {
827 found = 0;
828 list_for_each_entry(dai, &dai_list, list)
829 if (card->dai_link[i].cpu_dai == dai) {
830 found = 1;
831 break;
832 }
833 if (!found) {
834 dev_dbg(card->dev, "DAI %s not registered\n",
835 card->dai_link[i].cpu_dai->name);
836 return;
837 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000838
839 if (card->dai_link[i].cpu_dai->ac97_control)
840 ac97 = 1;
Mark Brown435c5e22008-12-04 15:32:53 +0000841 }
842
Barry Song02a06d32009-10-16 18:13:38 +0800843 for (i = 0; i < card->num_links; i++) {
844 if (!card->dai_link[i].codec_dai->ops)
845 card->dai_link[i].codec_dai->ops = &null_dai_ops;
846 }
847
Mark Brown6b05eda2008-12-08 19:26:48 +0000848 /* If we have AC97 in the system then don't wait for the
849 * codec. This will need revisiting if we have to handle
850 * systems with mixed AC97 and non-AC97 parts. Only check for
851 * DAIs currently; we can't do this per link since some AC97
852 * codecs have non-AC97 DAIs.
853 */
854 if (!ac97)
855 for (i = 0; i < card->num_links; i++) {
856 found = 0;
857 list_for_each_entry(dai, &dai_list, list)
858 if (card->dai_link[i].codec_dai == dai) {
859 found = 1;
860 break;
861 }
862 if (!found) {
863 dev_dbg(card->dev, "DAI %s not registered\n",
864 card->dai_link[i].codec_dai->name);
865 return;
866 }
867 }
868
Mark Brown435c5e22008-12-04 15:32:53 +0000869 /* Note that we do not current check for codec components */
870
871 dev_dbg(card->dev, "All components present, instantiating\n");
872
873 /* Found everything, bring it up */
Mark Brown87506542008-11-18 20:50:34 +0000874 if (card->probe) {
875 ret = card->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200876 if (ret < 0)
Mark Brown435c5e22008-12-04 15:32:53 +0000877 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200878 }
879
Mark Brown87506542008-11-18 20:50:34 +0000880 for (i = 0; i < card->num_links; i++) {
881 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200882 if (cpu_dai->probe) {
Mark Brownbdb92872008-06-11 13:47:10 +0100883 ret = cpu_dai->probe(pdev, cpu_dai);
Mark Brown3ff3f642008-05-19 12:32:25 +0200884 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200885 goto cpu_dai_err;
886 }
887 }
888
889 if (codec_dev->probe) {
890 ret = codec_dev->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200891 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200892 goto cpu_dai_err;
893 }
894
895 if (platform->probe) {
896 ret = platform->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200897 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200898 goto platform_err;
899 }
900
901 /* DAPM stream work */
Mark Brown63084192008-12-02 15:08:03 +0000902 INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
Randy Dunlap1301a962008-06-17 19:19:34 +0100903#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +0100904 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +0000905 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +0100906#endif
Andy Green6ed25972008-06-13 16:24:05 +0100907
Mark Brown435c5e22008-12-04 15:32:53 +0000908 card->instantiated = 1;
909
910 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200911
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200912platform_err:
913 if (codec_dev->remove)
914 codec_dev->remove(pdev);
915
916cpu_dai_err:
Liam Girdwood18b9b3d2007-01-30 17:18:45 +0100917 for (i--; i >= 0; i--) {
Mark Brown87506542008-11-18 20:50:34 +0000918 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200919 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +0100920 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200921 }
922
Mark Brown87506542008-11-18 20:50:34 +0000923 if (card->remove)
924 card->remove(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +0000925}
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200926
Mark Brown435c5e22008-12-04 15:32:53 +0000927/*
928 * Attempt to initialise any uninitalised cards. Must be called with
929 * client_mutex.
930 */
931static void snd_soc_instantiate_cards(void)
932{
933 struct snd_soc_card *card;
934 list_for_each_entry(card, &card_list, list)
935 snd_soc_instantiate_card(card);
936}
937
938/* probes a new socdev */
939static int soc_probe(struct platform_device *pdev)
940{
941 int ret = 0;
942 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
943 struct snd_soc_card *card = socdev->card;
944
945 /* Bodge while we push things out of socdev */
946 card->socdev = socdev;
947
948 /* Bodge while we unpick instantiation */
949 card->dev = &pdev->dev;
950 ret = snd_soc_register_card(card);
951 if (ret != 0) {
952 dev_err(&pdev->dev, "Failed to register card\n");
953 return ret;
954 }
955
956 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200957}
958
959/* removes a socdev */
960static int soc_remove(struct platform_device *pdev)
961{
962 int i;
963 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +0000964 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +0000965 struct snd_soc_platform *platform = card->platform;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200966 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
967
Mike Rapoport914dc182009-05-11 13:04:55 +0300968 if (!card->instantiated)
969 return 0;
970
Mark Brown63084192008-12-02 15:08:03 +0000971 run_delayed_work(&card->delayed_work);
Liam Girdwood965ac422007-01-31 14:14:57 +0100972
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200973 if (platform->remove)
974 platform->remove(pdev);
975
976 if (codec_dev->remove)
977 codec_dev->remove(pdev);
978
Mark Brown87506542008-11-18 20:50:34 +0000979 for (i = 0; i < card->num_links; i++) {
980 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200981 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +0100982 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200983 }
984
Mark Brown87506542008-11-18 20:50:34 +0000985 if (card->remove)
986 card->remove(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200987
Mark Brownc5af3a22008-11-28 13:29:45 +0000988 snd_soc_unregister_card(card);
989
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200990 return 0;
991}
992
Mark Brown416356f2009-06-30 19:05:15 +0100993static int soc_poweroff(struct device *dev)
Mark Brown51737472009-06-22 13:16:51 +0100994{
Mark Brown416356f2009-06-30 19:05:15 +0100995 struct platform_device *pdev = to_platform_device(dev);
Mark Brown51737472009-06-22 13:16:51 +0100996 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
997 struct snd_soc_card *card = socdev->card;
998
999 if (!card->instantiated)
Mark Brown416356f2009-06-30 19:05:15 +01001000 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001001
1002 /* Flush out pmdown_time work - we actually do want to run it
1003 * now, we're shutting down so no imminent restart. */
1004 run_delayed_work(&card->delayed_work);
1005
1006 snd_soc_dapm_shutdown(socdev);
Mark Brown416356f2009-06-30 19:05:15 +01001007
1008 return 0;
Mark Brown51737472009-06-22 13:16:51 +01001009}
1010
Mark Brown416356f2009-06-30 19:05:15 +01001011static struct dev_pm_ops soc_pm_ops = {
1012 .suspend = soc_suspend,
1013 .resume = soc_resume,
1014 .poweroff = soc_poweroff,
1015};
1016
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001017/* ASoC platform driver */
1018static struct platform_driver soc_driver = {
1019 .driver = {
1020 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001021 .owner = THIS_MODULE,
Mark Brown416356f2009-06-30 19:05:15 +01001022 .pm = &soc_pm_ops,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001023 },
1024 .probe = soc_probe,
1025 .remove = soc_remove,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001026};
1027
1028/* create a new pcm */
1029static int soc_new_pcm(struct snd_soc_device *socdev,
1030 struct snd_soc_dai_link *dai_link, int num)
1031{
Mark Brown87689d52008-12-02 16:01:14 +00001032 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001033 struct snd_soc_codec *codec = card->codec;
Mark Brown87689d52008-12-02 16:01:14 +00001034 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001035 struct snd_soc_dai *codec_dai = dai_link->codec_dai;
1036 struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001037 struct snd_soc_pcm_runtime *rtd;
1038 struct snd_pcm *pcm;
1039 char new_name[64];
1040 int ret = 0, playback = 0, capture = 0;
1041
1042 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
1043 if (rtd == NULL)
1044 return -ENOMEM;
Liam Girdwoodcb666e52007-02-02 17:13:49 +01001045
1046 rtd->dai = dai_link;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001047 rtd->socdev = socdev;
Mark Brown6627a652009-01-23 22:55:23 +00001048 codec_dai->codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001049
1050 /* check client and interface hw capabilities */
Mark Brown3ba9e10a2008-11-24 18:01:05 +00001051 sprintf(new_name, "%s %s-%d", dai_link->stream_name, codec_dai->name,
1052 num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001053
1054 if (codec_dai->playback.channels_min)
1055 playback = 1;
1056 if (codec_dai->capture.channels_min)
1057 capture = 1;
1058
1059 ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
1060 capture, &pcm);
1061 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001062 printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
1063 codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001064 kfree(rtd);
1065 return ret;
1066 }
1067
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001068 dai_link->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001069 pcm->private_data = rtd;
Mark Brown87689d52008-12-02 16:01:14 +00001070 soc_pcm_ops.mmap = platform->pcm_ops->mmap;
1071 soc_pcm_ops.pointer = platform->pcm_ops->pointer;
1072 soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
1073 soc_pcm_ops.copy = platform->pcm_ops->copy;
1074 soc_pcm_ops.silence = platform->pcm_ops->silence;
1075 soc_pcm_ops.ack = platform->pcm_ops->ack;
1076 soc_pcm_ops.page = platform->pcm_ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001077
1078 if (playback)
1079 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
1080
1081 if (capture)
1082 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
1083
Mark Brown87689d52008-12-02 16:01:14 +00001084 ret = platform->pcm_new(codec->card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001085 if (ret < 0) {
1086 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
1087 kfree(rtd);
1088 return ret;
1089 }
1090
Mark Brown87689d52008-12-02 16:01:14 +00001091 pcm->private_free = platform->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001092 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
1093 cpu_dai->name);
1094 return ret;
1095}
1096
Mark Brown096e49d2009-07-05 15:12:22 +01001097/**
1098 * snd_soc_codec_volatile_register: Report if a register is volatile.
1099 *
1100 * @codec: CODEC to query.
1101 * @reg: Register to query.
1102 *
1103 * Boolean function indiciating if a CODEC register is volatile.
1104 */
1105int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
1106{
1107 if (codec->volatile_register)
1108 return codec->volatile_register(reg);
1109 else
1110 return 0;
1111}
1112EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1113
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001114/* codec register dump */
Mark Brown6627a652009-01-23 22:55:23 +00001115static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001116{
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001117 int i, step = 1, count = 0;
1118
1119 if (!codec->reg_cache_size)
1120 return 0;
1121
1122 if (codec->reg_cache_step)
1123 step = codec->reg_cache_step;
1124
1125 count += sprintf(buf, "%s registers\n", codec->name);
Mark Brown58cd33c2008-07-29 11:42:25 +01001126 for (i = 0; i < codec->reg_cache_size; i += step) {
Mark Brown77ee09c2009-07-31 18:26:51 +01001127 if (codec->readable_register && !codec->readable_register(i))
1128 continue;
1129
Mark Brown58cd33c2008-07-29 11:42:25 +01001130 count += sprintf(buf + count, "%2x: ", i);
1131 if (count >= PAGE_SIZE - 1)
1132 break;
1133
1134 if (codec->display_register)
1135 count += codec->display_register(codec, buf + count,
1136 PAGE_SIZE - count, i);
1137 else
1138 count += snprintf(buf + count, PAGE_SIZE - count,
1139 "%4x", codec->read(codec, i));
1140
1141 if (count >= PAGE_SIZE - 1)
1142 break;
1143
1144 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
1145 if (count >= PAGE_SIZE - 1)
1146 break;
1147 }
1148
1149 /* Truncate count; min() would cause a warning */
1150 if (count >= PAGE_SIZE)
1151 count = PAGE_SIZE - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001152
1153 return count;
1154}
Troy Kisky12ef1932008-10-13 17:42:14 -07001155static ssize_t codec_reg_show(struct device *dev,
1156 struct device_attribute *attr, char *buf)
1157{
1158 struct snd_soc_device *devdata = dev_get_drvdata(dev);
Mark Brown6627a652009-01-23 22:55:23 +00001159 return soc_codec_reg_show(devdata->card->codec, buf);
Troy Kisky12ef1932008-10-13 17:42:14 -07001160}
1161
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001162static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
1163
Troy Kisky12ef1932008-10-13 17:42:14 -07001164#ifdef CONFIG_DEBUG_FS
1165static int codec_reg_open_file(struct inode *inode, struct file *file)
1166{
1167 file->private_data = inode->i_private;
1168 return 0;
1169}
1170
1171static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
1172 size_t count, loff_t *ppos)
1173{
1174 ssize_t ret;
Mark Brown384c89e2008-12-03 17:34:03 +00001175 struct snd_soc_codec *codec = file->private_data;
Troy Kisky12ef1932008-10-13 17:42:14 -07001176 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1177 if (!buf)
1178 return -ENOMEM;
Mark Brown6627a652009-01-23 22:55:23 +00001179 ret = soc_codec_reg_show(codec, buf);
Troy Kisky12ef1932008-10-13 17:42:14 -07001180 if (ret >= 0)
1181 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1182 kfree(buf);
1183 return ret;
1184}
1185
1186static ssize_t codec_reg_write_file(struct file *file,
1187 const char __user *user_buf, size_t count, loff_t *ppos)
1188{
1189 char buf[32];
1190 int buf_size;
1191 char *start = buf;
1192 unsigned long reg, value;
1193 int step = 1;
Mark Brown384c89e2008-12-03 17:34:03 +00001194 struct snd_soc_codec *codec = file->private_data;
Troy Kisky12ef1932008-10-13 17:42:14 -07001195
1196 buf_size = min(count, (sizeof(buf)-1));
1197 if (copy_from_user(buf, user_buf, buf_size))
1198 return -EFAULT;
1199 buf[buf_size] = 0;
1200
1201 if (codec->reg_cache_step)
1202 step = codec->reg_cache_step;
1203
1204 while (*start == ' ')
1205 start++;
1206 reg = simple_strtoul(start, &start, 16);
1207 if ((reg >= codec->reg_cache_size) || (reg % step))
1208 return -EINVAL;
1209 while (*start == ' ')
1210 start++;
1211 if (strict_strtoul(start, 16, &value))
1212 return -EINVAL;
1213 codec->write(codec, reg, value);
1214 return buf_size;
1215}
1216
1217static const struct file_operations codec_reg_fops = {
1218 .open = codec_reg_open_file,
1219 .read = codec_reg_read_file,
1220 .write = codec_reg_write_file,
1221};
1222
Mark Brown384c89e2008-12-03 17:34:03 +00001223static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001224{
Peter Ujfalusi88439ac2009-10-01 10:32:47 +03001225 char codec_root[128];
1226
Peter Ujfalusice3e3732009-10-02 09:17:37 +03001227 if (codec->dev)
1228 snprintf(codec_root, sizeof(codec_root),
1229 "%s.%s", codec->name, dev_name(codec->dev));
1230 else
1231 snprintf(codec_root, sizeof(codec_root),
1232 "%s", codec->name);
Peter Ujfalusi88439ac2009-10-01 10:32:47 +03001233
1234 codec->debugfs_codec_root = debugfs_create_dir(codec_root,
1235 debugfs_root);
1236 if (!codec->debugfs_codec_root) {
1237 printk(KERN_WARNING
1238 "ASoC: Failed to create codec debugfs directory\n");
1239 return;
1240 }
1241
Mark Brown384c89e2008-12-03 17:34:03 +00001242 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
Peter Ujfalusi88439ac2009-10-01 10:32:47 +03001243 codec->debugfs_codec_root,
1244 codec, &codec_reg_fops);
Mark Brown384c89e2008-12-03 17:34:03 +00001245 if (!codec->debugfs_reg)
1246 printk(KERN_WARNING
1247 "ASoC: Failed to create codec register debugfs file\n");
Troy Kisky12ef1932008-10-13 17:42:14 -07001248
Mark Brown384c89e2008-12-03 17:34:03 +00001249 codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0744,
Peter Ujfalusi88439ac2009-10-01 10:32:47 +03001250 codec->debugfs_codec_root,
Mark Brown384c89e2008-12-03 17:34:03 +00001251 &codec->pop_time);
1252 if (!codec->debugfs_pop_time)
1253 printk(KERN_WARNING
1254 "Failed to create pop time debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01001255
Peter Ujfalusi88439ac2009-10-01 10:32:47 +03001256 codec->debugfs_dapm = debugfs_create_dir("dapm",
1257 codec->debugfs_codec_root);
Mark Brown79fb9382009-08-21 16:38:13 +01001258 if (!codec->debugfs_dapm)
1259 printk(KERN_WARNING
1260 "Failed to create DAPM debugfs directory\n");
1261
1262 snd_soc_dapm_debugfs_init(codec);
Troy Kisky12ef1932008-10-13 17:42:14 -07001263}
1264
Mark Brown384c89e2008-12-03 17:34:03 +00001265static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001266{
Peter Ujfalusi88439ac2009-10-01 10:32:47 +03001267 debugfs_remove_recursive(codec->debugfs_codec_root);
Troy Kisky12ef1932008-10-13 17:42:14 -07001268}
1269
1270#else
1271
Mark Brown384c89e2008-12-03 17:34:03 +00001272static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001273{
1274}
1275
Mark Brown384c89e2008-12-03 17:34:03 +00001276static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001277{
1278}
1279#endif
1280
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001281/**
1282 * snd_soc_new_ac97_codec - initailise AC97 device
1283 * @codec: audio codec
1284 * @ops: AC97 bus operations
1285 * @num: AC97 codec number
1286 *
1287 * Initialises AC97 codec resources for use by ad-hoc devices only.
1288 */
1289int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1290 struct snd_ac97_bus_ops *ops, int num)
1291{
1292 mutex_lock(&codec->mutex);
1293
1294 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1295 if (codec->ac97 == NULL) {
1296 mutex_unlock(&codec->mutex);
1297 return -ENOMEM;
1298 }
1299
1300 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1301 if (codec->ac97->bus == NULL) {
1302 kfree(codec->ac97);
1303 codec->ac97 = NULL;
1304 mutex_unlock(&codec->mutex);
1305 return -ENOMEM;
1306 }
1307
1308 codec->ac97->bus->ops = ops;
1309 codec->ac97->num = num;
1310 mutex_unlock(&codec->mutex);
1311 return 0;
1312}
1313EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1314
1315/**
1316 * snd_soc_free_ac97_codec - free AC97 codec device
1317 * @codec: audio codec
1318 *
1319 * Frees AC97 codec device resources.
1320 */
1321void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1322{
1323 mutex_lock(&codec->mutex);
1324 kfree(codec->ac97->bus);
1325 kfree(codec->ac97);
1326 codec->ac97 = NULL;
1327 mutex_unlock(&codec->mutex);
1328}
1329EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1330
1331/**
1332 * snd_soc_update_bits - update codec register bits
1333 * @codec: audio codec
1334 * @reg: codec register
1335 * @mask: register mask
1336 * @value: new value
1337 *
1338 * Writes new register value.
1339 *
1340 * Returns 1 for change else 0.
1341 */
1342int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001343 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001344{
1345 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001346 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001347
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001348 old = snd_soc_read(codec, reg);
1349 new = (old & ~mask) | value;
1350 change = old != new;
1351 if (change)
1352 snd_soc_write(codec, reg, new);
1353
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001354 return change;
1355}
1356EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1357
1358/**
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001359 * snd_soc_update_bits_locked - update codec register bits
1360 * @codec: audio codec
1361 * @reg: codec register
1362 * @mask: register mask
1363 * @value: new value
1364 *
1365 * Writes new register value, and takes the codec mutex.
1366 *
1367 * Returns 1 for change else 0.
1368 */
1369static int snd_soc_update_bits_locked(struct snd_soc_codec *codec,
1370 unsigned short reg, unsigned int mask,
1371 unsigned int value)
1372{
1373 int change;
1374
1375 mutex_lock(&codec->mutex);
1376 change = snd_soc_update_bits(codec, reg, mask, value);
1377 mutex_unlock(&codec->mutex);
1378
1379 return change;
1380}
1381
1382/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001383 * snd_soc_test_bits - test register for change
1384 * @codec: audio codec
1385 * @reg: codec register
1386 * @mask: register mask
1387 * @value: new value
1388 *
1389 * Tests a register with a new value and checks if the new value is
1390 * different from the old value.
1391 *
1392 * Returns 1 for change else 0.
1393 */
1394int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001395 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001396{
1397 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001398 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001399
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001400 old = snd_soc_read(codec, reg);
1401 new = (old & ~mask) | value;
1402 change = old != new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001403
1404 return change;
1405}
1406EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1407
1408/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001409 * snd_soc_new_pcms - create new sound card and pcms
1410 * @socdev: the SoC audio device
Mark Brownac11a2b2009-01-01 12:18:17 +00001411 * @idx: ALSA card index
1412 * @xid: card identification
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001413 *
1414 * Create a new sound card based upon the codec and interface pcms.
1415 *
1416 * Returns 0 for success, else error.
1417 */
Liam Girdwoodbc7320c2007-02-01 12:26:07 +01001418int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001419{
Mark Brown87506542008-11-18 20:50:34 +00001420 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001421 struct snd_soc_codec *codec = card->codec;
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001422 int ret, i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001423
1424 mutex_lock(&codec->mutex);
1425
1426 /* register a sound card */
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001427 ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
1428 if (ret < 0) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001429 printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
1430 codec->name);
1431 mutex_unlock(&codec->mutex);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001432 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001433 }
1434
Mark Brown452c5ea2009-05-17 21:41:23 +01001435 codec->socdev = socdev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001436 codec->card->dev = socdev->dev;
1437 codec->card->private_data = codec;
1438 strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
1439
1440 /* create the pcms */
Mark Brown87506542008-11-18 20:50:34 +00001441 for (i = 0; i < card->num_links; i++) {
1442 ret = soc_new_pcm(socdev, &card->dai_link[i], i);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001443 if (ret < 0) {
1444 printk(KERN_ERR "asoc: can't create pcm %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001445 card->dai_link[i].stream_name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001446 mutex_unlock(&codec->mutex);
1447 return ret;
1448 }
1449 }
1450
1451 mutex_unlock(&codec->mutex);
1452 return ret;
1453}
1454EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
1455
1456/**
Mark Brown968a6022008-11-28 11:49:07 +00001457 * snd_soc_init_card - register sound card
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001458 * @socdev: the SoC audio device
1459 *
1460 * Register a SoC sound card. Also registers an AC97 device if the
1461 * codec is AC97 for ad hoc devices.
1462 *
1463 * Returns 0 for success, else error.
1464 */
Mark Brown968a6022008-11-28 11:49:07 +00001465int snd_soc_init_card(struct snd_soc_device *socdev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001466{
Mark Brown87506542008-11-18 20:50:34 +00001467 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001468 struct snd_soc_codec *codec = card->codec;
Liam Girdwood12e74f72006-10-16 21:19:48 +02001469 int ret = 0, i, ac97 = 0, err = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001470
Mark Brown87506542008-11-18 20:50:34 +00001471 for (i = 0; i < card->num_links; i++) {
1472 if (card->dai_link[i].init) {
1473 err = card->dai_link[i].init(codec);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001474 if (err < 0) {
1475 printk(KERN_ERR "asoc: failed to init %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001476 card->dai_link[i].stream_name);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001477 continue;
1478 }
1479 }
Marek Vasut474828a2009-07-22 13:01:03 +02001480 if (card->dai_link[i].codec_dai->ac97_control) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001481 ac97 = 1;
Marek Vasut474828a2009-07-22 13:01:03 +02001482 snd_ac97_dev_add_pdata(codec->ac97,
1483 card->dai_link[i].cpu_dai->ac97_pdata);
1484 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001485 }
1486 snprintf(codec->card->shortname, sizeof(codec->card->shortname),
Mark Brown87506542008-11-18 20:50:34 +00001487 "%s", card->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001488 snprintf(codec->card->longname, sizeof(codec->card->longname),
Mark Brown87506542008-11-18 20:50:34 +00001489 "%s (%s)", card->name, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001490
Mark Brown6d5701b2009-06-14 11:33:37 +01001491 /* Make sure all DAPM widgets are instantiated */
1492 snd_soc_dapm_new_widgets(codec);
1493
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001494 ret = snd_card_register(codec->card);
1495 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001496 printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001497 codec->name);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001498 goto out;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001499 }
1500
Mark Brown08c8efe2008-01-21 14:33:37 +01001501 mutex_lock(&codec->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001502#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown14fa43f2009-02-12 19:33:19 +00001503 /* Only instantiate AC97 if not already done by the adaptor
1504 * for the generic AC97 subsystem.
1505 */
1506 if (ac97 && strcmp(codec->name, "AC97") != 0) {
Liam Girdwood12e74f72006-10-16 21:19:48 +02001507 ret = soc_ac97_dev_register(codec);
1508 if (ret < 0) {
1509 printk(KERN_ERR "asoc: AC97 device register failed\n");
1510 snd_card_free(codec->card);
Mark Brown08c8efe2008-01-21 14:33:37 +01001511 mutex_unlock(&codec->mutex);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001512 goto out;
1513 }
1514 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001515#endif
1516
Liam Girdwood12e74f72006-10-16 21:19:48 +02001517 err = snd_soc_dapm_sys_add(socdev->dev);
1518 if (err < 0)
1519 printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
1520
1521 err = device_create_file(socdev->dev, &dev_attr_codec_reg);
1522 if (err < 0)
Mark Brown3ff3f642008-05-19 12:32:25 +02001523 printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
Mark Brown08c8efe2008-01-21 14:33:37 +01001524
Mark Brown6627a652009-01-23 22:55:23 +00001525 soc_init_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001526 mutex_unlock(&codec->mutex);
Mark Brown08c8efe2008-01-21 14:33:37 +01001527
1528out:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001529 return ret;
1530}
Mark Brown968a6022008-11-28 11:49:07 +00001531EXPORT_SYMBOL_GPL(snd_soc_init_card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001532
1533/**
1534 * snd_soc_free_pcms - free sound card and pcms
1535 * @socdev: the SoC audio device
1536 *
1537 * Frees sound card and pcms associated with the socdev.
1538 * Also unregister the codec if it is an AC97 device.
1539 */
1540void snd_soc_free_pcms(struct snd_soc_device *socdev)
1541{
Mark Brown6627a652009-01-23 22:55:23 +00001542 struct snd_soc_codec *codec = socdev->card->codec;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001543#ifdef CONFIG_SND_SOC_AC97_BUS
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001544 struct snd_soc_dai *codec_dai;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001545 int i;
1546#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001547
1548 mutex_lock(&codec->mutex);
Mark Brown6627a652009-01-23 22:55:23 +00001549 soc_cleanup_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001550#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown3ff3f642008-05-19 12:32:25 +02001551 for (i = 0; i < codec->num_dai; i++) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001552 codec_dai = &codec->dai[i];
Atsushi Nemotod2314e02009-03-16 23:26:20 +09001553 if (codec_dai->ac97_control && codec->ac97 &&
1554 strcmp(codec->name, "AC97") != 0) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001555 soc_ac97_dev_unregister(codec);
1556 goto free_card;
1557 }
1558 }
1559free_card:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001560#endif
1561
1562 if (codec->card)
1563 snd_card_free(codec->card);
1564 device_remove_file(socdev->dev, &dev_attr_codec_reg);
1565 mutex_unlock(&codec->mutex);
1566}
1567EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
1568
1569/**
1570 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1571 * @substream: the pcm substream
1572 * @hw: the hardware parameters
1573 *
1574 * Sets the substream runtime hardware parameters.
1575 */
1576int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1577 const struct snd_pcm_hardware *hw)
1578{
1579 struct snd_pcm_runtime *runtime = substream->runtime;
1580 runtime->hw.info = hw->info;
1581 runtime->hw.formats = hw->formats;
1582 runtime->hw.period_bytes_min = hw->period_bytes_min;
1583 runtime->hw.period_bytes_max = hw->period_bytes_max;
1584 runtime->hw.periods_min = hw->periods_min;
1585 runtime->hw.periods_max = hw->periods_max;
1586 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1587 runtime->hw.fifo_size = hw->fifo_size;
1588 return 0;
1589}
1590EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1591
1592/**
1593 * snd_soc_cnew - create new control
1594 * @_template: control template
1595 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001596 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001597 *
1598 * Create a new mixer control from a template control.
1599 *
1600 * Returns 0 for success, else error.
1601 */
1602struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
1603 void *data, char *long_name)
1604{
1605 struct snd_kcontrol_new template;
1606
1607 memcpy(&template, _template, sizeof(template));
1608 if (long_name)
1609 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001610 template.index = 0;
1611
1612 return snd_ctl_new1(&template, data);
1613}
1614EXPORT_SYMBOL_GPL(snd_soc_cnew);
1615
1616/**
Ian Molton3e8e1952009-01-09 00:23:21 +00001617 * snd_soc_add_controls - add an array of controls to a codec.
1618 * Convienience function to add a list of controls. Many codecs were
1619 * duplicating this code.
1620 *
1621 * @codec: codec to add controls to
1622 * @controls: array of controls to add
1623 * @num_controls: number of elements in the array
1624 *
1625 * Return 0 for success, else error.
1626 */
1627int snd_soc_add_controls(struct snd_soc_codec *codec,
1628 const struct snd_kcontrol_new *controls, int num_controls)
1629{
1630 struct snd_card *card = codec->card;
1631 int err, i;
1632
1633 for (i = 0; i < num_controls; i++) {
1634 const struct snd_kcontrol_new *control = &controls[i];
1635 err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
1636 if (err < 0) {
1637 dev_err(codec->dev, "%s: Failed to add %s\n",
1638 codec->name, control->name);
1639 return err;
1640 }
1641 }
1642
1643 return 0;
1644}
1645EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1646
1647/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001648 * snd_soc_info_enum_double - enumerated double mixer info callback
1649 * @kcontrol: mixer control
1650 * @uinfo: control element information
1651 *
1652 * Callback to provide information about a double enumerated
1653 * mixer control.
1654 *
1655 * Returns 0 for success.
1656 */
1657int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
1658 struct snd_ctl_elem_info *uinfo)
1659{
1660 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1661
1662 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1663 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001664 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001665
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001666 if (uinfo->value.enumerated.item > e->max - 1)
1667 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001668 strcpy(uinfo->value.enumerated.name,
1669 e->texts[uinfo->value.enumerated.item]);
1670 return 0;
1671}
1672EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
1673
1674/**
1675 * snd_soc_get_enum_double - enumerated double mixer get callback
1676 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001677 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001678 *
1679 * Callback to get the value of a double enumerated mixer.
1680 *
1681 * Returns 0 for success.
1682 */
1683int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
1684 struct snd_ctl_elem_value *ucontrol)
1685{
1686 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1687 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001688 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001689
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001690 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001691 ;
1692 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02001693 ucontrol->value.enumerated.item[0]
1694 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001695 if (e->shift_l != e->shift_r)
1696 ucontrol->value.enumerated.item[1] =
1697 (val >> e->shift_r) & (bitmask - 1);
1698
1699 return 0;
1700}
1701EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
1702
1703/**
1704 * snd_soc_put_enum_double - enumerated double mixer put callback
1705 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001706 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001707 *
1708 * Callback to set the value of a double enumerated mixer.
1709 *
1710 * Returns 0 for success.
1711 */
1712int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
1713 struct snd_ctl_elem_value *ucontrol)
1714{
1715 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1716 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001717 unsigned int val;
1718 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001719
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001720 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001721 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001722 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001723 return -EINVAL;
1724 val = ucontrol->value.enumerated.item[0] << e->shift_l;
1725 mask = (bitmask - 1) << e->shift_l;
1726 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001727 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001728 return -EINVAL;
1729 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1730 mask |= (bitmask - 1) << e->shift_r;
1731 }
1732
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001733 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001734}
1735EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
1736
1737/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001738 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1739 * @kcontrol: mixer control
1740 * @ucontrol: control element information
1741 *
1742 * Callback to get the value of a double semi enumerated mixer.
1743 *
1744 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1745 * used for handling bitfield coded enumeration for example.
1746 *
1747 * Returns 0 for success.
1748 */
1749int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
1750 struct snd_ctl_elem_value *ucontrol)
1751{
1752 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001753 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001754 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001755
1756 reg_val = snd_soc_read(codec, e->reg);
1757 val = (reg_val >> e->shift_l) & e->mask;
1758 for (mux = 0; mux < e->max; mux++) {
1759 if (val == e->values[mux])
1760 break;
1761 }
1762 ucontrol->value.enumerated.item[0] = mux;
1763 if (e->shift_l != e->shift_r) {
1764 val = (reg_val >> e->shift_r) & e->mask;
1765 for (mux = 0; mux < e->max; mux++) {
1766 if (val == e->values[mux])
1767 break;
1768 }
1769 ucontrol->value.enumerated.item[1] = mux;
1770 }
1771
1772 return 0;
1773}
1774EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
1775
1776/**
1777 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1778 * @kcontrol: mixer control
1779 * @ucontrol: control element information
1780 *
1781 * Callback to set the value of a double semi enumerated mixer.
1782 *
1783 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1784 * used for handling bitfield coded enumeration for example.
1785 *
1786 * Returns 0 for success.
1787 */
1788int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
1789 struct snd_ctl_elem_value *ucontrol)
1790{
1791 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001792 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001793 unsigned int val;
1794 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001795
1796 if (ucontrol->value.enumerated.item[0] > e->max - 1)
1797 return -EINVAL;
1798 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1799 mask = e->mask << e->shift_l;
1800 if (e->shift_l != e->shift_r) {
1801 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1802 return -EINVAL;
1803 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1804 mask |= e->mask << e->shift_r;
1805 }
1806
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001807 return snd_soc_update_bits_locked(codec, e->reg, mask, val);
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001808}
1809EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
1810
1811/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001812 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1813 * @kcontrol: mixer control
1814 * @uinfo: control element information
1815 *
1816 * Callback to provide information about an external enumerated
1817 * single mixer.
1818 *
1819 * Returns 0 for success.
1820 */
1821int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
1822 struct snd_ctl_elem_info *uinfo)
1823{
1824 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1825
1826 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1827 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001828 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001829
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001830 if (uinfo->value.enumerated.item > e->max - 1)
1831 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001832 strcpy(uinfo->value.enumerated.name,
1833 e->texts[uinfo->value.enumerated.item]);
1834 return 0;
1835}
1836EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
1837
1838/**
1839 * snd_soc_info_volsw_ext - external single mixer info callback
1840 * @kcontrol: mixer control
1841 * @uinfo: control element information
1842 *
1843 * Callback to provide information about a single external mixer control.
1844 *
1845 * Returns 0 for success.
1846 */
1847int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
1848 struct snd_ctl_elem_info *uinfo)
1849{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001850 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001851
Mark Brownfd5dfad2009-04-15 21:37:46 +01001852 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001853 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1854 else
1855 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1856
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001857 uinfo->count = 1;
1858 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001859 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001860 return 0;
1861}
1862EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
1863
1864/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001865 * snd_soc_info_volsw - single mixer info callback
1866 * @kcontrol: mixer control
1867 * @uinfo: control element information
1868 *
1869 * Callback to provide information about a single mixer control.
1870 *
1871 * Returns 0 for success.
1872 */
1873int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
1874 struct snd_ctl_elem_info *uinfo)
1875{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001876 struct soc_mixer_control *mc =
1877 (struct soc_mixer_control *)kcontrol->private_value;
1878 int max = mc->max;
Mark Brown762b8df2008-10-30 12:37:08 +00001879 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001880 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001881
Mark Brownfd5dfad2009-04-15 21:37:46 +01001882 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001883 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1884 else
1885 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1886
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001887 uinfo->count = shift == rshift ? 1 : 2;
1888 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001889 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001890 return 0;
1891}
1892EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
1893
1894/**
1895 * snd_soc_get_volsw - single mixer get callback
1896 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001897 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001898 *
1899 * Callback to get the value of a single mixer control.
1900 *
1901 * Returns 0 for success.
1902 */
1903int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
1904 struct snd_ctl_elem_value *ucontrol)
1905{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001906 struct soc_mixer_control *mc =
1907 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001908 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001909 unsigned int reg = mc->reg;
1910 unsigned int shift = mc->shift;
1911 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001912 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001913 unsigned int mask = (1 << fls(max)) - 1;
1914 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001915
1916 ucontrol->value.integer.value[0] =
1917 (snd_soc_read(codec, reg) >> shift) & mask;
1918 if (shift != rshift)
1919 ucontrol->value.integer.value[1] =
1920 (snd_soc_read(codec, reg) >> rshift) & mask;
1921 if (invert) {
1922 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001923 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001924 if (shift != rshift)
1925 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001926 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001927 }
1928
1929 return 0;
1930}
1931EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
1932
1933/**
1934 * snd_soc_put_volsw - single mixer put callback
1935 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001936 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001937 *
1938 * Callback to set the value of a single mixer control.
1939 *
1940 * Returns 0 for success.
1941 */
1942int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
1943 struct snd_ctl_elem_value *ucontrol)
1944{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001945 struct soc_mixer_control *mc =
1946 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001947 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001948 unsigned int reg = mc->reg;
1949 unsigned int shift = mc->shift;
1950 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001951 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001952 unsigned int mask = (1 << fls(max)) - 1;
1953 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001954 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001955
1956 val = (ucontrol->value.integer.value[0] & mask);
1957 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001958 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001959 val_mask = mask << shift;
1960 val = val << shift;
1961 if (shift != rshift) {
1962 val2 = (ucontrol->value.integer.value[1] & mask);
1963 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001964 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001965 val_mask |= mask << rshift;
1966 val |= val2 << rshift;
1967 }
Eero Nurkkala6c508c62009-10-30 13:34:03 +02001968 return snd_soc_update_bits_locked(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001969}
1970EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
1971
1972/**
1973 * snd_soc_info_volsw_2r - double mixer info callback
1974 * @kcontrol: mixer control
1975 * @uinfo: control element information
1976 *
1977 * Callback to provide information about a double mixer control that
1978 * spans 2 codec registers.
1979 *
1980 * Returns 0 for success.
1981 */
1982int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
1983 struct snd_ctl_elem_info *uinfo)
1984{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001985 struct soc_mixer_control *mc =
1986 (struct soc_mixer_control *)kcontrol->private_value;
1987 int max = mc->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001988
Mark Brownfd5dfad2009-04-15 21:37:46 +01001989 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001990 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1991 else
1992 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1993
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001994 uinfo->count = 2;
1995 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001996 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001997 return 0;
1998}
1999EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
2000
2001/**
2002 * snd_soc_get_volsw_2r - double mixer get callback
2003 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002004 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002005 *
2006 * Callback to get the value of a double mixer control that spans 2 registers.
2007 *
2008 * Returns 0 for success.
2009 */
2010int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
2011 struct snd_ctl_elem_value *ucontrol)
2012{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002013 struct soc_mixer_control *mc =
2014 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002015 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002016 unsigned int reg = mc->reg;
2017 unsigned int reg2 = mc->rreg;
2018 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002019 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002020 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002021 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002022
2023 ucontrol->value.integer.value[0] =
2024 (snd_soc_read(codec, reg) >> shift) & mask;
2025 ucontrol->value.integer.value[1] =
2026 (snd_soc_read(codec, reg2) >> shift) & mask;
2027 if (invert) {
2028 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002029 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002030 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002031 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002032 }
2033
2034 return 0;
2035}
2036EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2037
2038/**
2039 * snd_soc_put_volsw_2r - double mixer set callback
2040 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002041 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002042 *
2043 * Callback to set the value of a double mixer control that spans 2 registers.
2044 *
2045 * Returns 0 for success.
2046 */
2047int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2048 struct snd_ctl_elem_value *ucontrol)
2049{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002050 struct soc_mixer_control *mc =
2051 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002052 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002053 unsigned int reg = mc->reg;
2054 unsigned int reg2 = mc->rreg;
2055 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002056 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002057 unsigned int mask = (1 << fls(max)) - 1;
2058 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002059 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002060 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002061
2062 val_mask = mask << shift;
2063 val = (ucontrol->value.integer.value[0] & mask);
2064 val2 = (ucontrol->value.integer.value[1] & mask);
2065
2066 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002067 val = max - val;
2068 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002069 }
2070
2071 val = val << shift;
2072 val2 = val2 << shift;
2073
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002074 err = snd_soc_update_bits_locked(codec, reg, val_mask, val);
Mark Brown3ff3f642008-05-19 12:32:25 +02002075 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002076 return err;
2077
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002078 err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002079 return err;
2080}
2081EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2082
Mark Browne13ac2e2008-05-28 17:58:05 +01002083/**
2084 * snd_soc_info_volsw_s8 - signed mixer info callback
2085 * @kcontrol: mixer control
2086 * @uinfo: control element information
2087 *
2088 * Callback to provide information about a signed mixer control.
2089 *
2090 * Returns 0 for success.
2091 */
2092int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2093 struct snd_ctl_elem_info *uinfo)
2094{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002095 struct soc_mixer_control *mc =
2096 (struct soc_mixer_control *)kcontrol->private_value;
2097 int max = mc->max;
2098 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002099
2100 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2101 uinfo->count = 2;
2102 uinfo->value.integer.min = 0;
2103 uinfo->value.integer.max = max-min;
2104 return 0;
2105}
2106EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2107
2108/**
2109 * snd_soc_get_volsw_s8 - signed mixer get callback
2110 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002111 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002112 *
2113 * Callback to get the value of a signed mixer control.
2114 *
2115 * Returns 0 for success.
2116 */
2117int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2118 struct snd_ctl_elem_value *ucontrol)
2119{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002120 struct soc_mixer_control *mc =
2121 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002122 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002123 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002124 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002125 int val = snd_soc_read(codec, reg);
2126
2127 ucontrol->value.integer.value[0] =
2128 ((signed char)(val & 0xff))-min;
2129 ucontrol->value.integer.value[1] =
2130 ((signed char)((val >> 8) & 0xff))-min;
2131 return 0;
2132}
2133EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2134
2135/**
2136 * snd_soc_put_volsw_sgn - signed mixer put callback
2137 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002138 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002139 *
2140 * Callback to set the value of a signed mixer control.
2141 *
2142 * Returns 0 for success.
2143 */
2144int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2145 struct snd_ctl_elem_value *ucontrol)
2146{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002147 struct soc_mixer_control *mc =
2148 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002149 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002150 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002151 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002152 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002153
2154 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2155 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2156
Eero Nurkkala6c508c62009-10-30 13:34:03 +02002157 return snd_soc_update_bits_locked(codec, reg, 0xffff, val);
Mark Browne13ac2e2008-05-28 17:58:05 +01002158}
2159EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2160
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002161/**
2162 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2163 * @dai: DAI
2164 * @clk_id: DAI specific clock ID
2165 * @freq: new clock frequency in Hz
2166 * @dir: new clock direction - input/output.
2167 *
2168 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2169 */
2170int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2171 unsigned int freq, int dir)
2172{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002173 if (dai->ops && dai->ops->set_sysclk)
Eric Miao6335d052009-03-03 09:41:00 +08002174 return dai->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002175 else
2176 return -EINVAL;
2177}
2178EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2179
2180/**
2181 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2182 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002183 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002184 * @div: new clock divisor.
2185 *
2186 * Configures the clock dividers. This is used to derive the best DAI bit and
2187 * frame clocks from the system or master clock. It's best to set the DAI bit
2188 * and frame clocks as low as possible to save system power.
2189 */
2190int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2191 int div_id, int div)
2192{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002193 if (dai->ops && dai->ops->set_clkdiv)
Eric Miao6335d052009-03-03 09:41:00 +08002194 return dai->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002195 else
2196 return -EINVAL;
2197}
2198EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2199
2200/**
2201 * snd_soc_dai_set_pll - configure DAI PLL.
2202 * @dai: DAI
2203 * @pll_id: DAI specific PLL ID
Mark Brown85488032009-09-05 18:52:16 +01002204 * @source: DAI specific source for the PLL
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002205 * @freq_in: PLL input clock frequency in Hz
2206 * @freq_out: requested PLL output clock frequency in Hz
2207 *
2208 * Configures and enables PLL to generate output clock based on input clock.
2209 */
Mark Brown85488032009-09-05 18:52:16 +01002210int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2211 unsigned int freq_in, unsigned int freq_out)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002212{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002213 if (dai->ops && dai->ops->set_pll)
Mark Brown85488032009-09-05 18:52:16 +01002214 return dai->ops->set_pll(dai, pll_id, source,
2215 freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002216 else
2217 return -EINVAL;
2218}
2219EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2220
2221/**
2222 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2223 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002224 * @fmt: SND_SOC_DAIFMT_ format value.
2225 *
2226 * Configures the DAI hardware format and clocking.
2227 */
2228int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2229{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002230 if (dai->ops && dai->ops->set_fmt)
Eric Miao6335d052009-03-03 09:41:00 +08002231 return dai->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002232 else
2233 return -EINVAL;
2234}
2235EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2236
2237/**
2238 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2239 * @dai: DAI
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002240 * @tx_mask: bitmask representing active TX slots.
2241 * @rx_mask: bitmask representing active RX slots.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002242 * @slots: Number of slots in use.
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002243 * @slot_width: Width in bits for each slot.
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002244 *
2245 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2246 * specific.
2247 */
2248int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002249 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002250{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002251 if (dai->ops && dai->ops->set_tdm_slot)
Daniel Ribeiroa5479e32009-06-15 21:44:31 -03002252 return dai->ops->set_tdm_slot(dai, tx_mask, rx_mask,
2253 slots, slot_width);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002254 else
2255 return -EINVAL;
2256}
2257EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2258
2259/**
Barry Song472df3c2009-09-12 01:16:29 +08002260 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2261 * @dai: DAI
2262 * @tx_num: how many TX channels
2263 * @tx_slot: pointer to an array which imply the TX slot number channel
2264 * 0~num-1 uses
2265 * @rx_num: how many RX channels
2266 * @rx_slot: pointer to an array which imply the RX slot number channel
2267 * 0~num-1 uses
2268 *
2269 * configure the relationship between channel number and TDM slot number.
2270 */
2271int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2272 unsigned int tx_num, unsigned int *tx_slot,
2273 unsigned int rx_num, unsigned int *rx_slot)
2274{
2275 if (dai->ops && dai->ops->set_channel_map)
2276 return dai->ops->set_channel_map(dai, tx_num, tx_slot,
2277 rx_num, rx_slot);
2278 else
2279 return -EINVAL;
2280}
2281EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2282
2283/**
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002284 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2285 * @dai: DAI
2286 * @tristate: tristate enable
2287 *
2288 * Tristates the DAI so that others can use it.
2289 */
2290int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2291{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002292 if (dai->ops && dai->ops->set_tristate)
Eric Miao6335d052009-03-03 09:41:00 +08002293 return dai->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002294 else
2295 return -EINVAL;
2296}
2297EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2298
2299/**
2300 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2301 * @dai: DAI
2302 * @mute: mute enable
2303 *
2304 * Mutes the DAI DAC.
2305 */
2306int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2307{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002308 if (dai->ops && dai->ops->digital_mute)
Eric Miao6335d052009-03-03 09:41:00 +08002309 return dai->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002310 else
2311 return -EINVAL;
2312}
2313EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2314
Mark Brownc5af3a22008-11-28 13:29:45 +00002315/**
2316 * snd_soc_register_card - Register a card with the ASoC core
2317 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002318 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002319 *
2320 * Note that currently this is an internal only function: it will be
2321 * exposed to machine drivers after further backporting of ASoC v2
2322 * registration APIs.
2323 */
2324static int snd_soc_register_card(struct snd_soc_card *card)
2325{
2326 if (!card->name || !card->dev)
2327 return -EINVAL;
2328
2329 INIT_LIST_HEAD(&card->list);
2330 card->instantiated = 0;
2331
2332 mutex_lock(&client_mutex);
2333 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002334 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002335 mutex_unlock(&client_mutex);
2336
2337 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2338
2339 return 0;
2340}
2341
2342/**
2343 * snd_soc_unregister_card - Unregister a card with the ASoC core
2344 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002345 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002346 *
2347 * Note that currently this is an internal only function: it will be
2348 * exposed to machine drivers after further backporting of ASoC v2
2349 * registration APIs.
2350 */
2351static int snd_soc_unregister_card(struct snd_soc_card *card)
2352{
2353 mutex_lock(&client_mutex);
2354 list_del(&card->list);
2355 mutex_unlock(&client_mutex);
2356
2357 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2358
2359 return 0;
2360}
2361
Mark Brown91151712008-11-30 23:31:24 +00002362/**
2363 * snd_soc_register_dai - Register a DAI with the ASoC core
2364 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002365 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00002366 */
2367int snd_soc_register_dai(struct snd_soc_dai *dai)
2368{
2369 if (!dai->name)
2370 return -EINVAL;
2371
2372 /* The device should become mandatory over time */
2373 if (!dai->dev)
2374 printk(KERN_WARNING "No device for DAI %s\n", dai->name);
2375
Eric Miao6335d052009-03-03 09:41:00 +08002376 if (!dai->ops)
2377 dai->ops = &null_dai_ops;
2378
Mark Brown91151712008-11-30 23:31:24 +00002379 INIT_LIST_HEAD(&dai->list);
2380
2381 mutex_lock(&client_mutex);
2382 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002383 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00002384 mutex_unlock(&client_mutex);
2385
2386 pr_debug("Registered DAI '%s'\n", dai->name);
2387
2388 return 0;
2389}
2390EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2391
2392/**
2393 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2394 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002395 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00002396 */
2397void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2398{
2399 mutex_lock(&client_mutex);
2400 list_del(&dai->list);
2401 mutex_unlock(&client_mutex);
2402
2403 pr_debug("Unregistered DAI '%s'\n", dai->name);
2404}
2405EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2406
2407/**
2408 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2409 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002410 * @dai: Array of DAIs to register
2411 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002412 */
2413int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
2414{
2415 int i, ret;
2416
2417 for (i = 0; i < count; i++) {
2418 ret = snd_soc_register_dai(&dai[i]);
2419 if (ret != 0)
2420 goto err;
2421 }
2422
2423 return 0;
2424
2425err:
2426 for (i--; i >= 0; i--)
2427 snd_soc_unregister_dai(&dai[i]);
2428
2429 return ret;
2430}
2431EXPORT_SYMBOL_GPL(snd_soc_register_dais);
2432
2433/**
2434 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2435 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002436 * @dai: Array of DAIs to unregister
2437 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002438 */
2439void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
2440{
2441 int i;
2442
2443 for (i = 0; i < count; i++)
2444 snd_soc_unregister_dai(&dai[i]);
2445}
2446EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
2447
Mark Brown12a48a8c2008-12-03 19:40:30 +00002448/**
2449 * snd_soc_register_platform - Register a platform with the ASoC core
2450 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002451 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00002452 */
2453int snd_soc_register_platform(struct snd_soc_platform *platform)
2454{
2455 if (!platform->name)
2456 return -EINVAL;
2457
2458 INIT_LIST_HEAD(&platform->list);
2459
2460 mutex_lock(&client_mutex);
2461 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002462 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00002463 mutex_unlock(&client_mutex);
2464
2465 pr_debug("Registered platform '%s'\n", platform->name);
2466
2467 return 0;
2468}
2469EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2470
2471/**
2472 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2473 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002474 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002475 */
2476void snd_soc_unregister_platform(struct snd_soc_platform *platform)
2477{
2478 mutex_lock(&client_mutex);
2479 list_del(&platform->list);
2480 mutex_unlock(&client_mutex);
2481
2482 pr_debug("Unregistered platform '%s'\n", platform->name);
2483}
2484EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2485
Mark Brown151ab222009-05-09 16:22:58 +01002486static u64 codec_format_map[] = {
2487 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2488 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2489 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2490 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2491 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2492 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2493 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2494 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2495 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2496 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2497 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2498 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2499 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2500 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2501 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2502 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2503};
2504
2505/* Fix up the DAI formats for endianness: codecs don't actually see
2506 * the endianness of the data but we're using the CPU format
2507 * definitions which do need to include endianness so we ensure that
2508 * codec DAIs always have both big and little endian variants set.
2509 */
2510static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2511{
2512 int i;
2513
2514 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2515 if (stream->formats & codec_format_map[i])
2516 stream->formats |= codec_format_map[i];
2517}
2518
Mark Brown0d0cf002008-12-10 14:32:45 +00002519/**
2520 * snd_soc_register_codec - Register a codec with the ASoC core
2521 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002522 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002523 */
2524int snd_soc_register_codec(struct snd_soc_codec *codec)
2525{
Mark Brown151ab222009-05-09 16:22:58 +01002526 int i;
2527
Mark Brown0d0cf002008-12-10 14:32:45 +00002528 if (!codec->name)
2529 return -EINVAL;
2530
2531 /* The device should become mandatory over time */
2532 if (!codec->dev)
2533 printk(KERN_WARNING "No device for codec %s\n", codec->name);
2534
2535 INIT_LIST_HEAD(&codec->list);
2536
Mark Brown151ab222009-05-09 16:22:58 +01002537 for (i = 0; i < codec->num_dai; i++) {
2538 fixup_codec_formats(&codec->dai[i].playback);
2539 fixup_codec_formats(&codec->dai[i].capture);
2540 }
2541
Mark Brown0d0cf002008-12-10 14:32:45 +00002542 mutex_lock(&client_mutex);
2543 list_add(&codec->list, &codec_list);
2544 snd_soc_instantiate_cards();
2545 mutex_unlock(&client_mutex);
2546
2547 pr_debug("Registered codec '%s'\n", codec->name);
2548
2549 return 0;
2550}
2551EXPORT_SYMBOL_GPL(snd_soc_register_codec);
2552
2553/**
2554 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2555 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002556 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00002557 */
2558void snd_soc_unregister_codec(struct snd_soc_codec *codec)
2559{
2560 mutex_lock(&client_mutex);
2561 list_del(&codec->list);
2562 mutex_unlock(&client_mutex);
2563
2564 pr_debug("Unregistered codec '%s'\n", codec->name);
2565}
2566EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
2567
Takashi Iwaic9b3a402008-12-10 07:47:22 +01002568static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002569{
Mark Brown384c89e2008-12-03 17:34:03 +00002570#ifdef CONFIG_DEBUG_FS
2571 debugfs_root = debugfs_create_dir("asoc", NULL);
2572 if (IS_ERR(debugfs_root) || !debugfs_root) {
2573 printk(KERN_WARNING
2574 "ASoC: Failed to create debugfs directory\n");
2575 debugfs_root = NULL;
2576 }
2577#endif
2578
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002579 return platform_driver_register(&soc_driver);
2580}
2581
Mark Brown7d8c16a2008-11-30 22:11:24 +00002582static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002583{
Mark Brown384c89e2008-12-03 17:34:03 +00002584#ifdef CONFIG_DEBUG_FS
2585 debugfs_remove_recursive(debugfs_root);
2586#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02002587 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002588}
2589
2590module_init(snd_soc_init);
2591module_exit(snd_soc_exit);
2592
2593/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01002594MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002595MODULE_DESCRIPTION("ALSA SoC Core");
2596MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02002597MODULE_ALIAS("platform:soc-audio");