blob: 44141178ff4a9f425941e57fc45c2ea5ecf305d0 [file] [log] [blame]
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001/*
2 * soc-core.c -- ALSA SoC Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwood0664d882006-12-18 14:39:02 +01005 * Copyright 2005 Openedhand Ltd.
6 *
Liam Girdwoodd3311242008-10-12 13:17:36 +01007 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Liam Girdwood0664d882006-12-18 14:39:02 +01008 * with code, comments and ideas from :-
9 * Richard Purdie <richard@openedhand.com>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020010 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
Frank Mandarinodb2a4162006-10-06 18:31:09 +020016 * TODO:
17 * o Add hw rules to enforce rates, etc.
18 * o More testing with other codecs/machines.
19 * o Add more codecs and platforms to ensure good API coverage.
20 * o Support TDM on PCM and I2S
21 */
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/pm.h>
28#include <linux/bitops.h>
Troy Kisky12ef1932008-10-13 17:42:14 -070029#include <linux/debugfs.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020030#include <linux/platform_device.h>
Frank Mandarinodb2a4162006-10-06 18:31:09 +020031#include <sound/core.h>
32#include <sound/pcm.h>
33#include <sound/pcm_params.h>
34#include <sound/soc.h>
35#include <sound/soc-dapm.h>
36#include <sound/initval.h>
37
Frank Mandarinodb2a4162006-10-06 18:31:09 +020038static DEFINE_MUTEX(pcm_mutex);
39static DEFINE_MUTEX(io_mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +020040static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
41
Mark Brown384c89e2008-12-03 17:34:03 +000042#ifdef CONFIG_DEBUG_FS
43static struct dentry *debugfs_root;
44#endif
45
Mark Brownc5af3a22008-11-28 13:29:45 +000046static DEFINE_MUTEX(client_mutex);
47static LIST_HEAD(card_list);
Mark Brown91151712008-11-30 23:31:24 +000048static LIST_HEAD(dai_list);
Mark Brown12a48a8c2008-12-03 19:40:30 +000049static LIST_HEAD(platform_list);
Mark Brown0d0cf002008-12-10 14:32:45 +000050static LIST_HEAD(codec_list);
Mark Brownc5af3a22008-11-28 13:29:45 +000051
52static int snd_soc_register_card(struct snd_soc_card *card);
53static int snd_soc_unregister_card(struct snd_soc_card *card);
54
Frank Mandarinodb2a4162006-10-06 18:31:09 +020055/*
56 * This is a timeout to do a DAPM powerdown after a stream is closed().
57 * It can be used to eliminate pops between different playback streams, e.g.
58 * between two audio tracks.
59 */
60static int pmdown_time = 5000;
61module_param(pmdown_time, int, 0);
62MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)");
63
Liam Girdwood965ac422007-01-31 14:14:57 +010064/*
65 * This function forces any delayed work to be queued and run.
66 */
67static int run_delayed_work(struct delayed_work *dwork)
68{
69 int ret;
70
71 /* cancel any work waiting to be queued. */
72 ret = cancel_delayed_work(dwork);
73
74 /* if there was any work waiting then we run it now and
75 * wait for it's completion */
76 if (ret) {
77 schedule_delayed_work(dwork, 0);
78 flush_scheduled_work();
79 }
80 return ret;
81}
82
Frank Mandarinodb2a4162006-10-06 18:31:09 +020083#ifdef CONFIG_SND_SOC_AC97_BUS
84/* unregister ac97 codec */
85static int soc_ac97_dev_unregister(struct snd_soc_codec *codec)
86{
87 if (codec->ac97->dev.bus)
88 device_unregister(&codec->ac97->dev);
89 return 0;
90}
91
92/* stop no dev release warning */
93static void soc_ac97_device_release(struct device *dev){}
94
95/* register ac97 codec to bus */
96static int soc_ac97_dev_register(struct snd_soc_codec *codec)
97{
98 int err;
99
100 codec->ac97->dev.bus = &ac97_bus_type;
Mark Brown4ac5c612009-04-01 19:35:01 +0100101 codec->ac97->dev.parent = codec->card->dev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200102 codec->ac97->dev.release = soc_ac97_device_release;
103
Kay Sieversbb072bf2008-11-02 03:50:35 +0100104 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
105 codec->card->number, 0, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200106 err = device_register(&codec->ac97->dev);
107 if (err < 0) {
108 snd_printk(KERN_ERR "Can't register ac97 bus\n");
109 codec->ac97->dev.bus = NULL;
110 return err;
111 }
112 return 0;
113}
114#endif
115
Mark Brown06f409d2009-04-07 18:10:13 +0100116static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
117{
118 struct snd_soc_pcm_runtime *rtd = substream->private_data;
119 struct snd_soc_device *socdev = rtd->socdev;
120 struct snd_soc_card *card = socdev->card;
121 struct snd_soc_dai_link *machine = rtd->dai;
122 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
123 struct snd_soc_dai *codec_dai = machine->codec_dai;
124 int ret;
125
126 if (codec_dai->symmetric_rates || cpu_dai->symmetric_rates ||
127 machine->symmetric_rates) {
128 dev_dbg(card->dev, "Symmetry forces %dHz rate\n",
129 machine->rate);
130
131 ret = snd_pcm_hw_constraint_minmax(substream->runtime,
132 SNDRV_PCM_HW_PARAM_RATE,
133 machine->rate,
134 machine->rate);
135 if (ret < 0) {
136 dev_err(card->dev,
137 "Unable to apply rate symmetry constraint: %d\n", ret);
138 return ret;
139 }
140 }
141
142 return 0;
143}
144
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200145/*
146 * Called by ALSA when a PCM substream is opened, the runtime->hw record is
147 * then initialized and any private data can be allocated. This also calls
148 * startup for the cpu DAI, platform, machine and codec DAI.
149 */
150static int soc_pcm_open(struct snd_pcm_substream *substream)
151{
152 struct snd_soc_pcm_runtime *rtd = substream->private_data;
153 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000154 struct snd_soc_card *card = socdev->card;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200155 struct snd_pcm_runtime *runtime = substream->runtime;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100156 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000157 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100158 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
159 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200160 int ret = 0;
161
162 mutex_lock(&pcm_mutex);
163
164 /* startup the audio subsystem */
Eric Miao6335d052009-03-03 09:41:00 +0800165 if (cpu_dai->ops->startup) {
166 ret = cpu_dai->ops->startup(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200167 if (ret < 0) {
168 printk(KERN_ERR "asoc: can't open interface %s\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100169 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200170 goto out;
171 }
172 }
173
174 if (platform->pcm_ops->open) {
175 ret = platform->pcm_ops->open(substream);
176 if (ret < 0) {
177 printk(KERN_ERR "asoc: can't open platform %s\n", platform->name);
178 goto platform_err;
179 }
180 }
181
Eric Miao6335d052009-03-03 09:41:00 +0800182 if (codec_dai->ops->startup) {
183 ret = codec_dai->ops->startup(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100184 if (ret < 0) {
185 printk(KERN_ERR "asoc: can't open codec %s\n",
186 codec_dai->name);
187 goto codec_dai_err;
188 }
189 }
190
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200191 if (machine->ops && machine->ops->startup) {
192 ret = machine->ops->startup(substream);
193 if (ret < 0) {
194 printk(KERN_ERR "asoc: %s startup failed\n", machine->name);
195 goto machine_err;
196 }
197 }
198
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200199 /* Check that the codec and cpu DAI's are compatible */
200 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
201 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200202 max(codec_dai->playback.rate_min,
203 cpu_dai->playback.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200204 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200205 min(codec_dai->playback.rate_max,
206 cpu_dai->playback.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200207 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100208 max(codec_dai->playback.channels_min,
209 cpu_dai->playback.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200210 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100211 min(codec_dai->playback.channels_max,
212 cpu_dai->playback.channels_max);
213 runtime->hw.formats =
214 codec_dai->playback.formats & cpu_dai->playback.formats;
215 runtime->hw.rates =
216 codec_dai->playback.rates & cpu_dai->playback.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200217 } else {
218 runtime->hw.rate_min =
Mark Brown3ff3f642008-05-19 12:32:25 +0200219 max(codec_dai->capture.rate_min,
220 cpu_dai->capture.rate_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200221 runtime->hw.rate_max =
Mark Brown3ff3f642008-05-19 12:32:25 +0200222 min(codec_dai->capture.rate_max,
223 cpu_dai->capture.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200224 runtime->hw.channels_min =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100225 max(codec_dai->capture.channels_min,
226 cpu_dai->capture.channels_min);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200227 runtime->hw.channels_max =
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100228 min(codec_dai->capture.channels_max,
229 cpu_dai->capture.channels_max);
230 runtime->hw.formats =
231 codec_dai->capture.formats & cpu_dai->capture.formats;
232 runtime->hw.rates =
233 codec_dai->capture.rates & cpu_dai->capture.rates;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200234 }
235
236 snd_pcm_limit_hw_rates(runtime);
237 if (!runtime->hw.rates) {
238 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100239 codec_dai->name, cpu_dai->name);
240 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200241 }
242 if (!runtime->hw.formats) {
243 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100244 codec_dai->name, cpu_dai->name);
245 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200246 }
247 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
248 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100249 codec_dai->name, cpu_dai->name);
250 goto machine_err;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200251 }
252
Mark Brown06f409d2009-04-07 18:10:13 +0100253 /* Symmetry only applies if we've already got an active stream. */
254 if (cpu_dai->active || codec_dai->active) {
255 ret = soc_pcm_apply_symmetry(substream);
256 if (ret != 0)
257 goto machine_err;
258 }
259
Mark Brownf24368c2008-10-21 21:45:08 +0100260 pr_debug("asoc: %s <-> %s info:\n", codec_dai->name, cpu_dai->name);
261 pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates);
262 pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min,
263 runtime->hw.channels_max);
264 pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min,
265 runtime->hw.rate_max);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200266
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200267 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100268 cpu_dai->playback.active = codec_dai->playback.active = 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200269 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100270 cpu_dai->capture.active = codec_dai->capture.active = 1;
271 cpu_dai->active = codec_dai->active = 1;
272 cpu_dai->runtime = runtime;
Mark Brown6627a652009-01-23 22:55:23 +0000273 card->codec->active++;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200274 mutex_unlock(&pcm_mutex);
275 return 0;
276
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100277machine_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200278 if (machine->ops && machine->ops->shutdown)
279 machine->ops->shutdown(substream);
280
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100281codec_dai_err:
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200282 if (platform->pcm_ops->close)
283 platform->pcm_ops->close(substream);
284
285platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800286 if (cpu_dai->ops->shutdown)
287 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200288out:
289 mutex_unlock(&pcm_mutex);
290 return ret;
291}
292
293/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200294 * Power down the audio subsystem pmdown_time msecs after close is called.
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200295 * This is to ensure there are no pops or clicks in between any music tracks
296 * due to DAPM power cycling.
297 */
Andrew Morton4484bb22006-12-15 09:30:07 +0100298static void close_delayed_work(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200299{
Mark Brown63084192008-12-02 15:08:03 +0000300 struct snd_soc_card *card = container_of(work, struct snd_soc_card,
301 delayed_work.work);
Mark Brown6627a652009-01-23 22:55:23 +0000302 struct snd_soc_codec *codec = card->codec;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100303 struct snd_soc_dai *codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200304 int i;
305
306 mutex_lock(&pcm_mutex);
Mark Brown3ff3f642008-05-19 12:32:25 +0200307 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200308 codec_dai = &codec->dai[i];
309
Mark Brownf24368c2008-10-21 21:45:08 +0100310 pr_debug("pop wq checking: %s status: %s waiting: %s\n",
311 codec_dai->playback.stream_name,
312 codec_dai->playback.active ? "active" : "inactive",
313 codec_dai->pop_wait ? "yes" : "no");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200314
315 /* are we waiting on this codec DAI stream */
316 if (codec_dai->pop_wait == 1) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200317 codec_dai->pop_wait = 0;
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100318 snd_soc_dapm_stream_event(codec,
319 codec_dai->playback.stream_name,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200320 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200321 }
322 }
323 mutex_unlock(&pcm_mutex);
324}
325
326/*
327 * Called by ALSA when a PCM substream is closed. Private data can be
328 * freed here. The cpu DAI, codec DAI, machine and platform are also
329 * shutdown.
330 */
331static int soc_codec_close(struct snd_pcm_substream *substream)
332{
333 struct snd_soc_pcm_runtime *rtd = substream->private_data;
334 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000335 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100336 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000337 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100338 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
339 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000340 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200341
342 mutex_lock(&pcm_mutex);
343
344 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100345 cpu_dai->playback.active = codec_dai->playback.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200346 else
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100347 cpu_dai->capture.active = codec_dai->capture.active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200348
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100349 if (codec_dai->playback.active == 0 &&
350 codec_dai->capture.active == 0) {
351 cpu_dai->active = codec_dai->active = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200352 }
353 codec->active--;
354
Mark Brown6010b2d2008-09-06 18:33:24 +0100355 /* Muting the DAC suppresses artifacts caused during digital
356 * shutdown, for example from stopping clocks.
357 */
358 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
359 snd_soc_dai_digital_mute(codec_dai, 1);
360
Eric Miao6335d052009-03-03 09:41:00 +0800361 if (cpu_dai->ops->shutdown)
362 cpu_dai->ops->shutdown(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200363
Eric Miao6335d052009-03-03 09:41:00 +0800364 if (codec_dai->ops->shutdown)
365 codec_dai->ops->shutdown(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200366
367 if (machine->ops && machine->ops->shutdown)
368 machine->ops->shutdown(substream);
369
370 if (platform->pcm_ops->close)
371 platform->pcm_ops->close(substream);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100372 cpu_dai->runtime = NULL;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200373
374 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
375 /* start delayed pop wq here for playback streams */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100376 codec_dai->pop_wait = 1;
Mark Brown63084192008-12-02 15:08:03 +0000377 schedule_delayed_work(&card->delayed_work,
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200378 msecs_to_jiffies(pmdown_time));
379 } else {
380 /* capture streams can be powered down now */
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100381 snd_soc_dapm_stream_event(codec,
Liam Girdwood0b4d2212008-01-10 14:36:20 +0100382 codec_dai->capture.stream_name,
383 SND_SOC_DAPM_STREAM_STOP);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200384 }
385
386 mutex_unlock(&pcm_mutex);
387 return 0;
388}
389
390/*
391 * Called by ALSA when the PCM substream is prepared, can set format, sample
392 * rate, etc. This function is non atomic and can be called multiple times,
393 * it can refer to the runtime info.
394 */
395static int soc_pcm_prepare(struct snd_pcm_substream *substream)
396{
397 struct snd_soc_pcm_runtime *rtd = substream->private_data;
398 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown63084192008-12-02 15:08:03 +0000399 struct snd_soc_card *card = socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100400 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000401 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100402 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
403 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000404 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200405 int ret = 0;
406
407 mutex_lock(&pcm_mutex);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100408
409 if (machine->ops && machine->ops->prepare) {
410 ret = machine->ops->prepare(substream);
411 if (ret < 0) {
412 printk(KERN_ERR "asoc: machine prepare error\n");
413 goto out;
414 }
415 }
416
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200417 if (platform->pcm_ops->prepare) {
418 ret = platform->pcm_ops->prepare(substream);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200419 if (ret < 0) {
420 printk(KERN_ERR "asoc: platform prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200421 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200422 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200423 }
424
Eric Miao6335d052009-03-03 09:41:00 +0800425 if (codec_dai->ops->prepare) {
426 ret = codec_dai->ops->prepare(substream, codec_dai);
Liam Girdwooda71a4682006-10-19 20:35:56 +0200427 if (ret < 0) {
428 printk(KERN_ERR "asoc: codec DAI prepare error\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200429 goto out;
Liam Girdwooda71a4682006-10-19 20:35:56 +0200430 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200431 }
432
Eric Miao6335d052009-03-03 09:41:00 +0800433 if (cpu_dai->ops->prepare) {
434 ret = cpu_dai->ops->prepare(substream, cpu_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100435 if (ret < 0) {
436 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
437 goto out;
438 }
439 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200440
Mark Brownd45f6212008-10-14 13:58:36 +0100441 /* cancel any delayed stream shutdown that is pending */
442 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
443 codec_dai->pop_wait) {
444 codec_dai->pop_wait = 0;
Mark Brown63084192008-12-02 15:08:03 +0000445 cancel_delayed_work(&card->delayed_work);
Mark Brownd45f6212008-10-14 13:58:36 +0100446 }
447
Mark Brown452c5ea2009-05-17 21:41:23 +0100448 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
449 snd_soc_dapm_stream_event(codec,
450 codec_dai->playback.stream_name,
451 SND_SOC_DAPM_STREAM_START);
452 else
453 snd_soc_dapm_stream_event(codec,
454 codec_dai->capture.stream_name,
455 SND_SOC_DAPM_STREAM_START);
Mark Brownd45f6212008-10-14 13:58:36 +0100456
Mark Brown452c5ea2009-05-17 21:41:23 +0100457 snd_soc_dai_digital_mute(codec_dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200458
459out:
460 mutex_unlock(&pcm_mutex);
461 return ret;
462}
463
464/*
465 * Called by ALSA when the hardware params are set by application. This
466 * function can also be called multiple times and can allocate buffers
467 * (using snd_pcm_lib_* ). It's non-atomic.
468 */
469static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
470 struct snd_pcm_hw_params *params)
471{
472 struct snd_soc_pcm_runtime *rtd = substream->private_data;
473 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100474 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000475 struct snd_soc_card *card = socdev->card;
476 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100477 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
478 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200479 int ret = 0;
480
481 mutex_lock(&pcm_mutex);
482
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100483 if (machine->ops && machine->ops->hw_params) {
484 ret = machine->ops->hw_params(substream, params);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200485 if (ret < 0) {
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100486 printk(KERN_ERR "asoc: machine hw_params failed\n");
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200487 goto out;
488 }
489 }
490
Eric Miao6335d052009-03-03 09:41:00 +0800491 if (codec_dai->ops->hw_params) {
492 ret = codec_dai->ops->hw_params(substream, params, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100493 if (ret < 0) {
494 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
495 codec_dai->name);
496 goto codec_err;
497 }
498 }
499
Eric Miao6335d052009-03-03 09:41:00 +0800500 if (cpu_dai->ops->hw_params) {
501 ret = cpu_dai->ops->hw_params(substream, params, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200502 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200503 printk(KERN_ERR "asoc: interface %s hw params failed\n",
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100504 cpu_dai->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200505 goto interface_err;
506 }
507 }
508
509 if (platform->pcm_ops->hw_params) {
510 ret = platform->pcm_ops->hw_params(substream, params);
511 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +0200512 printk(KERN_ERR "asoc: platform %s hw params failed\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200513 platform->name);
514 goto platform_err;
515 }
516 }
517
Mark Brown06f409d2009-04-07 18:10:13 +0100518 machine->rate = params_rate(params);
519
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200520out:
521 mutex_unlock(&pcm_mutex);
522 return ret;
523
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200524platform_err:
Eric Miao6335d052009-03-03 09:41:00 +0800525 if (cpu_dai->ops->hw_free)
526 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200527
528interface_err:
Eric Miao6335d052009-03-03 09:41:00 +0800529 if (codec_dai->ops->hw_free)
530 codec_dai->ops->hw_free(substream, codec_dai);
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100531
532codec_err:
Mark Brown3ff3f642008-05-19 12:32:25 +0200533 if (machine->ops && machine->ops->hw_free)
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100534 machine->ops->hw_free(substream);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200535
536 mutex_unlock(&pcm_mutex);
537 return ret;
538}
539
540/*
541 * Free's resources allocated by hw_params, can be called multiple times
542 */
543static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
544{
545 struct snd_soc_pcm_runtime *rtd = substream->private_data;
546 struct snd_soc_device *socdev = rtd->socdev;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100547 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000548 struct snd_soc_card *card = socdev->card;
549 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100550 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
551 struct snd_soc_dai *codec_dai = machine->codec_dai;
Mark Brown6627a652009-01-23 22:55:23 +0000552 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200553
554 mutex_lock(&pcm_mutex);
555
556 /* apply codec digital mute */
Liam Girdwood8c6529d2008-07-08 13:19:13 +0100557 if (!codec->active)
558 snd_soc_dai_digital_mute(codec_dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200559
560 /* free any machine hw params */
561 if (machine->ops && machine->ops->hw_free)
562 machine->ops->hw_free(substream);
563
564 /* free any DMA resources */
565 if (platform->pcm_ops->hw_free)
566 platform->pcm_ops->hw_free(substream);
567
568 /* now free hw params for the DAI's */
Eric Miao6335d052009-03-03 09:41:00 +0800569 if (codec_dai->ops->hw_free)
570 codec_dai->ops->hw_free(substream, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200571
Eric Miao6335d052009-03-03 09:41:00 +0800572 if (cpu_dai->ops->hw_free)
573 cpu_dai->ops->hw_free(substream, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200574
575 mutex_unlock(&pcm_mutex);
576 return 0;
577}
578
579static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
580{
581 struct snd_soc_pcm_runtime *rtd = substream->private_data;
582 struct snd_soc_device *socdev = rtd->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000583 struct snd_soc_card *card= socdev->card;
Liam Girdwoodcb666e52007-02-02 17:13:49 +0100584 struct snd_soc_dai_link *machine = rtd->dai;
Mark Brown87689d52008-12-02 16:01:14 +0000585 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +0100586 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
587 struct snd_soc_dai *codec_dai = machine->codec_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200588 int ret;
589
Eric Miao6335d052009-03-03 09:41:00 +0800590 if (codec_dai->ops->trigger) {
591 ret = codec_dai->ops->trigger(substream, cmd, codec_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200592 if (ret < 0)
593 return ret;
594 }
595
596 if (platform->pcm_ops->trigger) {
597 ret = platform->pcm_ops->trigger(substream, cmd);
598 if (ret < 0)
599 return ret;
600 }
601
Eric Miao6335d052009-03-03 09:41:00 +0800602 if (cpu_dai->ops->trigger) {
603 ret = cpu_dai->ops->trigger(substream, cmd, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200604 if (ret < 0)
605 return ret;
606 }
607 return 0;
608}
609
610/* ASoC PCM operations */
611static struct snd_pcm_ops soc_pcm_ops = {
612 .open = soc_pcm_open,
613 .close = soc_codec_close,
614 .hw_params = soc_pcm_hw_params,
615 .hw_free = soc_pcm_hw_free,
616 .prepare = soc_pcm_prepare,
617 .trigger = soc_pcm_trigger,
618};
619
620#ifdef CONFIG_PM
621/* powers down audio subsystem for suspend */
622static int soc_suspend(struct platform_device *pdev, pm_message_t state)
623{
Mark Brown3ff3f642008-05-19 12:32:25 +0200624 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +0000625 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +0000626 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200627 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000628 struct snd_soc_codec *codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200629 int i;
630
Daniel Macke3509ff2009-06-03 17:44:49 +0200631 /* If the initialization of this soc device failed, there is no codec
632 * associated with it. Just bail out in this case.
633 */
634 if (!codec)
635 return 0;
636
Andy Green6ed25972008-06-13 16:24:05 +0100637 /* Due to the resume being scheduled into a workqueue we could
638 * suspend before that's finished - wait for it to complete.
639 */
640 snd_power_lock(codec->card);
641 snd_power_wait(codec->card, SNDRV_CTL_POWER_D0);
642 snd_power_unlock(codec->card);
643
644 /* we're going to block userspace touching us until resume completes */
645 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D3hot);
646
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200647 /* mute any active DAC's */
Mark Browndee89c42008-11-18 22:11:38 +0000648 for (i = 0; i < card->num_links; i++) {
649 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800650 if (dai->ops->digital_mute && dai->playback.active)
651 dai->ops->digital_mute(dai, 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200652 }
653
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100654 /* suspend all pcms */
Mark Brown87506542008-11-18 20:50:34 +0000655 for (i = 0; i < card->num_links; i++)
656 snd_pcm_suspend_all(card->dai_link[i].pcm);
Liam Girdwood4ccab3e2008-01-10 14:39:01 +0100657
Mark Brown87506542008-11-18 20:50:34 +0000658 if (card->suspend_pre)
659 card->suspend_pre(pdev, state);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200660
Mark Brown87506542008-11-18 20:50:34 +0000661 for (i = 0; i < card->num_links; i++) {
662 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000663 if (cpu_dai->suspend && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000664 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200665 if (platform->suspend)
Mark Brown07c84d02008-12-03 18:17:28 +0000666 platform->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200667 }
668
669 /* close any waiting streams and save state */
Mark Brown63084192008-12-02 15:08:03 +0000670 run_delayed_work(&card->delayed_work);
Mark Brown0be98982008-05-19 12:31:28 +0200671 codec->suspend_bias_level = codec->bias_level;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200672
Mark Brown3ff3f642008-05-19 12:32:25 +0200673 for (i = 0; i < codec->num_dai; i++) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200674 char *stream = codec->dai[i].playback.stream_name;
675 if (stream != NULL)
676 snd_soc_dapm_stream_event(codec, stream,
677 SND_SOC_DAPM_STREAM_SUSPEND);
678 stream = codec->dai[i].capture.stream_name;
679 if (stream != NULL)
680 snd_soc_dapm_stream_event(codec, stream,
681 SND_SOC_DAPM_STREAM_SUSPEND);
682 }
683
684 if (codec_dev->suspend)
685 codec_dev->suspend(pdev, state);
686
Mark Brown87506542008-11-18 20:50:34 +0000687 for (i = 0; i < card->num_links; i++) {
688 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000689 if (cpu_dai->suspend && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000690 cpu_dai->suspend(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200691 }
692
Mark Brown87506542008-11-18 20:50:34 +0000693 if (card->suspend_post)
694 card->suspend_post(pdev, state);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200695
696 return 0;
697}
698
Andy Green6ed25972008-06-13 16:24:05 +0100699/* deferred resume work, so resume can complete before we finished
700 * setting our codec back up, which can be very slow on I2C
701 */
702static void soc_resume_deferred(struct work_struct *work)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200703{
Mark Brown63084192008-12-02 15:08:03 +0000704 struct snd_soc_card *card = container_of(work,
705 struct snd_soc_card,
706 deferred_resume_work);
707 struct snd_soc_device *socdev = card->socdev;
Mark Brown87689d52008-12-02 16:01:14 +0000708 struct snd_soc_platform *platform = card->platform;
Mark Brown3ff3f642008-05-19 12:32:25 +0200709 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
Mark Brown6627a652009-01-23 22:55:23 +0000710 struct snd_soc_codec *codec = card->codec;
Andy Green6ed25972008-06-13 16:24:05 +0100711 struct platform_device *pdev = to_platform_device(socdev->dev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200712 int i;
713
Andy Green6ed25972008-06-13 16:24:05 +0100714 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
715 * so userspace apps are blocked from touching us
716 */
717
Mark Brownfde22f22008-11-24 18:08:18 +0000718 dev_dbg(socdev->dev, "starting resume work\n");
Andy Green6ed25972008-06-13 16:24:05 +0100719
Mark Brown87506542008-11-18 20:50:34 +0000720 if (card->resume_pre)
721 card->resume_pre(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200722
Mark Brown87506542008-11-18 20:50:34 +0000723 for (i = 0; i < card->num_links; i++) {
724 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000725 if (cpu_dai->resume && cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000726 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200727 }
728
729 if (codec_dev->resume)
730 codec_dev->resume(pdev);
731
Mark Brown3ff3f642008-05-19 12:32:25 +0200732 for (i = 0; i < codec->num_dai; i++) {
733 char *stream = codec->dai[i].playback.stream_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200734 if (stream != NULL)
735 snd_soc_dapm_stream_event(codec, stream,
736 SND_SOC_DAPM_STREAM_RESUME);
737 stream = codec->dai[i].capture.stream_name;
738 if (stream != NULL)
739 snd_soc_dapm_stream_event(codec, stream,
740 SND_SOC_DAPM_STREAM_RESUME);
741 }
742
Mark Brown3ff3f642008-05-19 12:32:25 +0200743 /* unmute any active DACs */
Mark Browndee89c42008-11-18 22:11:38 +0000744 for (i = 0; i < card->num_links; i++) {
745 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
Eric Miao6335d052009-03-03 09:41:00 +0800746 if (dai->ops->digital_mute && dai->playback.active)
747 dai->ops->digital_mute(dai, 0);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200748 }
749
Mark Brown87506542008-11-18 20:50:34 +0000750 for (i = 0; i < card->num_links; i++) {
751 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Mark Brown3ba9e10a2008-11-24 18:01:05 +0000752 if (cpu_dai->resume && !cpu_dai->ac97_control)
Mark Browndc7d7b82008-12-03 18:21:52 +0000753 cpu_dai->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200754 if (platform->resume)
Mark Brown07c84d02008-12-03 18:17:28 +0000755 platform->resume(cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200756 }
757
Mark Brown87506542008-11-18 20:50:34 +0000758 if (card->resume_post)
759 card->resume_post(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200760
Mark Brownfde22f22008-11-24 18:08:18 +0000761 dev_dbg(socdev->dev, "resume work completed\n");
Andy Green6ed25972008-06-13 16:24:05 +0100762
763 /* userspace can access us now we are back as we were before */
764 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0);
765}
766
767/* powers up audio subsystem after a suspend */
768static int soc_resume(struct platform_device *pdev)
769{
770 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown63084192008-12-02 15:08:03 +0000771 struct snd_soc_card *card = socdev->card;
Mark Brown64ab9ba2009-03-31 11:27:03 +0100772 struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai;
Andy Green6ed25972008-06-13 16:24:05 +0100773
Mark Brown64ab9ba2009-03-31 11:27:03 +0100774 /* AC97 devices might have other drivers hanging off them so
775 * need to resume immediately. Other drivers don't have that
776 * problem and may take a substantial amount of time to resume
777 * due to I/O costs and anti-pop so handle them out of line.
778 */
779 if (cpu_dai->ac97_control) {
780 dev_dbg(socdev->dev, "Resuming AC97 immediately\n");
781 soc_resume_deferred(&card->deferred_resume_work);
782 } else {
783 dev_dbg(socdev->dev, "Scheduling resume work\n");
784 if (!schedule_work(&card->deferred_resume_work))
785 dev_err(socdev->dev, "resume work item may be lost\n");
786 }
Andy Green6ed25972008-06-13 16:24:05 +0100787
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200788 return 0;
789}
790
Mark Brown831dc0f2009-06-13 19:55:02 +0100791/**
792 * snd_soc_suspend_device: Notify core of device suspend
793 *
794 * @dev: Device being suspended.
795 *
796 * In order to ensure that the entire audio subsystem is suspended in a
797 * coordinated fashion ASoC devices should suspend themselves when
798 * called by ASoC. When the standard kernel suspend process asks the
799 * device to suspend it should call this function to initiate a suspend
800 * of the entire ASoC card.
801 *
802 * \note Currently this function is stubbed out.
803 */
804int snd_soc_suspend_device(struct device *dev)
805{
806 return 0;
807}
808EXPORT_SYMBOL_GPL(snd_soc_suspend_device);
809
810/**
811 * snd_soc_resume_device: Notify core of device resume
812 *
813 * @dev: Device being resumed.
814 *
815 * In order to ensure that the entire audio subsystem is resumed in a
816 * coordinated fashion ASoC devices should resume themselves when called
817 * by ASoC. When the standard kernel resume process asks the device
818 * to resume it should call this function. Once all the components of
819 * the card have notified that they are ready to be resumed the card
820 * will be resumed.
821 *
822 * \note Currently this function is stubbed out.
823 */
824int snd_soc_resume_device(struct device *dev)
825{
826 return 0;
827}
828EXPORT_SYMBOL_GPL(snd_soc_resume_device);
829
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200830#else
831#define soc_suspend NULL
832#define soc_resume NULL
833#endif
834
Mark Brown435c5e22008-12-04 15:32:53 +0000835static void snd_soc_instantiate_card(struct snd_soc_card *card)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200836{
Mark Brown435c5e22008-12-04 15:32:53 +0000837 struct platform_device *pdev = container_of(card->dev,
838 struct platform_device,
839 dev);
840 struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev;
841 struct snd_soc_platform *platform;
842 struct snd_soc_dai *dai;
Mark Brown6b05eda2008-12-08 19:26:48 +0000843 int i, found, ret, ac97;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200844
Mark Brown435c5e22008-12-04 15:32:53 +0000845 if (card->instantiated)
846 return;
Mark Brown63084192008-12-02 15:08:03 +0000847
Mark Brown435c5e22008-12-04 15:32:53 +0000848 found = 0;
849 list_for_each_entry(platform, &platform_list, list)
850 if (card->platform == platform) {
851 found = 1;
852 break;
853 }
854 if (!found) {
855 dev_dbg(card->dev, "Platform %s not registered\n",
856 card->platform->name);
857 return;
Mark Brownc5af3a22008-11-28 13:29:45 +0000858 }
859
Mark Brown6b05eda2008-12-08 19:26:48 +0000860 ac97 = 0;
Mark Brown435c5e22008-12-04 15:32:53 +0000861 for (i = 0; i < card->num_links; i++) {
862 found = 0;
863 list_for_each_entry(dai, &dai_list, list)
864 if (card->dai_link[i].cpu_dai == dai) {
865 found = 1;
866 break;
867 }
868 if (!found) {
869 dev_dbg(card->dev, "DAI %s not registered\n",
870 card->dai_link[i].cpu_dai->name);
871 return;
872 }
Mark Brown6b05eda2008-12-08 19:26:48 +0000873
874 if (card->dai_link[i].cpu_dai->ac97_control)
875 ac97 = 1;
Mark Brown435c5e22008-12-04 15:32:53 +0000876 }
877
Mark Brown6b05eda2008-12-08 19:26:48 +0000878 /* If we have AC97 in the system then don't wait for the
879 * codec. This will need revisiting if we have to handle
880 * systems with mixed AC97 and non-AC97 parts. Only check for
881 * DAIs currently; we can't do this per link since some AC97
882 * codecs have non-AC97 DAIs.
883 */
884 if (!ac97)
885 for (i = 0; i < card->num_links; i++) {
886 found = 0;
887 list_for_each_entry(dai, &dai_list, list)
888 if (card->dai_link[i].codec_dai == dai) {
889 found = 1;
890 break;
891 }
892 if (!found) {
893 dev_dbg(card->dev, "DAI %s not registered\n",
894 card->dai_link[i].codec_dai->name);
895 return;
896 }
897 }
898
Mark Brown435c5e22008-12-04 15:32:53 +0000899 /* Note that we do not current check for codec components */
900
901 dev_dbg(card->dev, "All components present, instantiating\n");
902
903 /* Found everything, bring it up */
Mark Brown87506542008-11-18 20:50:34 +0000904 if (card->probe) {
905 ret = card->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200906 if (ret < 0)
Mark Brown435c5e22008-12-04 15:32:53 +0000907 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200908 }
909
Mark Brown87506542008-11-18 20:50:34 +0000910 for (i = 0; i < card->num_links; i++) {
911 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200912 if (cpu_dai->probe) {
Mark Brownbdb92872008-06-11 13:47:10 +0100913 ret = cpu_dai->probe(pdev, cpu_dai);
Mark Brown3ff3f642008-05-19 12:32:25 +0200914 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200915 goto cpu_dai_err;
916 }
917 }
918
919 if (codec_dev->probe) {
920 ret = codec_dev->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200921 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200922 goto cpu_dai_err;
923 }
924
925 if (platform->probe) {
926 ret = platform->probe(pdev);
Mark Brown3ff3f642008-05-19 12:32:25 +0200927 if (ret < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200928 goto platform_err;
929 }
930
931 /* DAPM stream work */
Mark Brown63084192008-12-02 15:08:03 +0000932 INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
Randy Dunlap1301a962008-06-17 19:19:34 +0100933#ifdef CONFIG_PM
Andy Green6ed25972008-06-13 16:24:05 +0100934 /* deferred resume work */
Mark Brown63084192008-12-02 15:08:03 +0000935 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
Randy Dunlap1301a962008-06-17 19:19:34 +0100936#endif
Andy Green6ed25972008-06-13 16:24:05 +0100937
Mark Brown435c5e22008-12-04 15:32:53 +0000938 card->instantiated = 1;
939
940 return;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200941
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200942platform_err:
943 if (codec_dev->remove)
944 codec_dev->remove(pdev);
945
946cpu_dai_err:
Liam Girdwood18b9b3d2007-01-30 17:18:45 +0100947 for (i--; i >= 0; i--) {
Mark Brown87506542008-11-18 20:50:34 +0000948 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200949 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +0100950 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200951 }
952
Mark Brown87506542008-11-18 20:50:34 +0000953 if (card->remove)
954 card->remove(pdev);
Mark Brown435c5e22008-12-04 15:32:53 +0000955}
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200956
Mark Brown435c5e22008-12-04 15:32:53 +0000957/*
958 * Attempt to initialise any uninitalised cards. Must be called with
959 * client_mutex.
960 */
961static void snd_soc_instantiate_cards(void)
962{
963 struct snd_soc_card *card;
964 list_for_each_entry(card, &card_list, list)
965 snd_soc_instantiate_card(card);
966}
967
968/* probes a new socdev */
969static int soc_probe(struct platform_device *pdev)
970{
971 int ret = 0;
972 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
973 struct snd_soc_card *card = socdev->card;
974
975 /* Bodge while we push things out of socdev */
976 card->socdev = socdev;
977
978 /* Bodge while we unpick instantiation */
979 card->dev = &pdev->dev;
980 ret = snd_soc_register_card(card);
981 if (ret != 0) {
982 dev_err(&pdev->dev, "Failed to register card\n");
983 return ret;
984 }
985
986 return 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200987}
988
989/* removes a socdev */
990static int soc_remove(struct platform_device *pdev)
991{
992 int i;
993 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
Mark Brown87506542008-11-18 20:50:34 +0000994 struct snd_soc_card *card = socdev->card;
Mark Brown87689d52008-12-02 16:01:14 +0000995 struct snd_soc_platform *platform = card->platform;
Frank Mandarinodb2a4162006-10-06 18:31:09 +0200996 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
997
Mike Rapoport914dc182009-05-11 13:04:55 +0300998 if (!card->instantiated)
999 return 0;
1000
Mark Brown63084192008-12-02 15:08:03 +00001001 run_delayed_work(&card->delayed_work);
Liam Girdwood965ac422007-01-31 14:14:57 +01001002
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001003 if (platform->remove)
1004 platform->remove(pdev);
1005
1006 if (codec_dev->remove)
1007 codec_dev->remove(pdev);
1008
Mark Brown87506542008-11-18 20:50:34 +00001009 for (i = 0; i < card->num_links; i++) {
1010 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001011 if (cpu_dai->remove)
Mark Brownbdb92872008-06-11 13:47:10 +01001012 cpu_dai->remove(pdev, cpu_dai);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001013 }
1014
Mark Brown87506542008-11-18 20:50:34 +00001015 if (card->remove)
1016 card->remove(pdev);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001017
Mark Brownc5af3a22008-11-28 13:29:45 +00001018 snd_soc_unregister_card(card);
1019
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001020 return 0;
1021}
1022
1023/* ASoC platform driver */
1024static struct platform_driver soc_driver = {
1025 .driver = {
1026 .name = "soc-audio",
Kay Sievers8b45a202008-04-14 13:33:36 +02001027 .owner = THIS_MODULE,
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001028 },
1029 .probe = soc_probe,
1030 .remove = soc_remove,
1031 .suspend = soc_suspend,
1032 .resume = soc_resume,
1033};
1034
1035/* create a new pcm */
1036static int soc_new_pcm(struct snd_soc_device *socdev,
1037 struct snd_soc_dai_link *dai_link, int num)
1038{
Mark Brown87689d52008-12-02 16:01:14 +00001039 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001040 struct snd_soc_codec *codec = card->codec;
Mark Brown87689d52008-12-02 16:01:14 +00001041 struct snd_soc_platform *platform = card->platform;
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001042 struct snd_soc_dai *codec_dai = dai_link->codec_dai;
1043 struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001044 struct snd_soc_pcm_runtime *rtd;
1045 struct snd_pcm *pcm;
1046 char new_name[64];
1047 int ret = 0, playback = 0, capture = 0;
1048
1049 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
1050 if (rtd == NULL)
1051 return -ENOMEM;
Liam Girdwoodcb666e52007-02-02 17:13:49 +01001052
1053 rtd->dai = dai_link;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001054 rtd->socdev = socdev;
Mark Brown6627a652009-01-23 22:55:23 +00001055 codec_dai->codec = card->codec;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001056
1057 /* check client and interface hw capabilities */
Mark Brown3ba9e10a2008-11-24 18:01:05 +00001058 sprintf(new_name, "%s %s-%d", dai_link->stream_name, codec_dai->name,
1059 num);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001060
1061 if (codec_dai->playback.channels_min)
1062 playback = 1;
1063 if (codec_dai->capture.channels_min)
1064 capture = 1;
1065
1066 ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
1067 capture, &pcm);
1068 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001069 printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
1070 codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001071 kfree(rtd);
1072 return ret;
1073 }
1074
Liam Girdwood4ccab3e2008-01-10 14:39:01 +01001075 dai_link->pcm = pcm;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001076 pcm->private_data = rtd;
Mark Brown87689d52008-12-02 16:01:14 +00001077 soc_pcm_ops.mmap = platform->pcm_ops->mmap;
1078 soc_pcm_ops.pointer = platform->pcm_ops->pointer;
1079 soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
1080 soc_pcm_ops.copy = platform->pcm_ops->copy;
1081 soc_pcm_ops.silence = platform->pcm_ops->silence;
1082 soc_pcm_ops.ack = platform->pcm_ops->ack;
1083 soc_pcm_ops.page = platform->pcm_ops->page;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001084
1085 if (playback)
1086 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
1087
1088 if (capture)
1089 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
1090
Mark Brown87689d52008-12-02 16:01:14 +00001091 ret = platform->pcm_new(codec->card, codec_dai, pcm);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001092 if (ret < 0) {
1093 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
1094 kfree(rtd);
1095 return ret;
1096 }
1097
Mark Brown87689d52008-12-02 16:01:14 +00001098 pcm->private_free = platform->pcm_free;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001099 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
1100 cpu_dai->name);
1101 return ret;
1102}
1103
1104/* codec register dump */
Mark Brown6627a652009-01-23 22:55:23 +00001105static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001106{
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001107 int i, step = 1, count = 0;
1108
1109 if (!codec->reg_cache_size)
1110 return 0;
1111
1112 if (codec->reg_cache_step)
1113 step = codec->reg_cache_step;
1114
1115 count += sprintf(buf, "%s registers\n", codec->name);
Mark Brown58cd33c2008-07-29 11:42:25 +01001116 for (i = 0; i < codec->reg_cache_size; i += step) {
1117 count += sprintf(buf + count, "%2x: ", i);
1118 if (count >= PAGE_SIZE - 1)
1119 break;
1120
1121 if (codec->display_register)
1122 count += codec->display_register(codec, buf + count,
1123 PAGE_SIZE - count, i);
1124 else
1125 count += snprintf(buf + count, PAGE_SIZE - count,
1126 "%4x", codec->read(codec, i));
1127
1128 if (count >= PAGE_SIZE - 1)
1129 break;
1130
1131 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
1132 if (count >= PAGE_SIZE - 1)
1133 break;
1134 }
1135
1136 /* Truncate count; min() would cause a warning */
1137 if (count >= PAGE_SIZE)
1138 count = PAGE_SIZE - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001139
1140 return count;
1141}
Troy Kisky12ef1932008-10-13 17:42:14 -07001142static ssize_t codec_reg_show(struct device *dev,
1143 struct device_attribute *attr, char *buf)
1144{
1145 struct snd_soc_device *devdata = dev_get_drvdata(dev);
Mark Brown6627a652009-01-23 22:55:23 +00001146 return soc_codec_reg_show(devdata->card->codec, buf);
Troy Kisky12ef1932008-10-13 17:42:14 -07001147}
1148
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001149static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
1150
Troy Kisky12ef1932008-10-13 17:42:14 -07001151#ifdef CONFIG_DEBUG_FS
1152static int codec_reg_open_file(struct inode *inode, struct file *file)
1153{
1154 file->private_data = inode->i_private;
1155 return 0;
1156}
1157
1158static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
1159 size_t count, loff_t *ppos)
1160{
1161 ssize_t ret;
Mark Brown384c89e2008-12-03 17:34:03 +00001162 struct snd_soc_codec *codec = file->private_data;
Troy Kisky12ef1932008-10-13 17:42:14 -07001163 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1164 if (!buf)
1165 return -ENOMEM;
Mark Brown6627a652009-01-23 22:55:23 +00001166 ret = soc_codec_reg_show(codec, buf);
Troy Kisky12ef1932008-10-13 17:42:14 -07001167 if (ret >= 0)
1168 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1169 kfree(buf);
1170 return ret;
1171}
1172
1173static ssize_t codec_reg_write_file(struct file *file,
1174 const char __user *user_buf, size_t count, loff_t *ppos)
1175{
1176 char buf[32];
1177 int buf_size;
1178 char *start = buf;
1179 unsigned long reg, value;
1180 int step = 1;
Mark Brown384c89e2008-12-03 17:34:03 +00001181 struct snd_soc_codec *codec = file->private_data;
Troy Kisky12ef1932008-10-13 17:42:14 -07001182
1183 buf_size = min(count, (sizeof(buf)-1));
1184 if (copy_from_user(buf, user_buf, buf_size))
1185 return -EFAULT;
1186 buf[buf_size] = 0;
1187
1188 if (codec->reg_cache_step)
1189 step = codec->reg_cache_step;
1190
1191 while (*start == ' ')
1192 start++;
1193 reg = simple_strtoul(start, &start, 16);
1194 if ((reg >= codec->reg_cache_size) || (reg % step))
1195 return -EINVAL;
1196 while (*start == ' ')
1197 start++;
1198 if (strict_strtoul(start, 16, &value))
1199 return -EINVAL;
1200 codec->write(codec, reg, value);
1201 return buf_size;
1202}
1203
1204static const struct file_operations codec_reg_fops = {
1205 .open = codec_reg_open_file,
1206 .read = codec_reg_read_file,
1207 .write = codec_reg_write_file,
1208};
1209
Mark Brown384c89e2008-12-03 17:34:03 +00001210static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001211{
Mark Brown384c89e2008-12-03 17:34:03 +00001212 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
1213 debugfs_root, codec,
1214 &codec_reg_fops);
1215 if (!codec->debugfs_reg)
1216 printk(KERN_WARNING
1217 "ASoC: Failed to create codec register debugfs file\n");
Troy Kisky12ef1932008-10-13 17:42:14 -07001218
Mark Brown384c89e2008-12-03 17:34:03 +00001219 codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0744,
1220 debugfs_root,
1221 &codec->pop_time);
1222 if (!codec->debugfs_pop_time)
1223 printk(KERN_WARNING
1224 "Failed to create pop time debugfs file\n");
Troy Kisky12ef1932008-10-13 17:42:14 -07001225}
1226
Mark Brown384c89e2008-12-03 17:34:03 +00001227static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001228{
Mark Brown384c89e2008-12-03 17:34:03 +00001229 debugfs_remove(codec->debugfs_pop_time);
1230 debugfs_remove(codec->debugfs_reg);
Troy Kisky12ef1932008-10-13 17:42:14 -07001231}
1232
1233#else
1234
Mark Brown384c89e2008-12-03 17:34:03 +00001235static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001236{
1237}
1238
Mark Brown384c89e2008-12-03 17:34:03 +00001239static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
Troy Kisky12ef1932008-10-13 17:42:14 -07001240{
1241}
1242#endif
1243
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001244/**
1245 * snd_soc_new_ac97_codec - initailise AC97 device
1246 * @codec: audio codec
1247 * @ops: AC97 bus operations
1248 * @num: AC97 codec number
1249 *
1250 * Initialises AC97 codec resources for use by ad-hoc devices only.
1251 */
1252int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1253 struct snd_ac97_bus_ops *ops, int num)
1254{
1255 mutex_lock(&codec->mutex);
1256
1257 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1258 if (codec->ac97 == NULL) {
1259 mutex_unlock(&codec->mutex);
1260 return -ENOMEM;
1261 }
1262
1263 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1264 if (codec->ac97->bus == NULL) {
1265 kfree(codec->ac97);
1266 codec->ac97 = NULL;
1267 mutex_unlock(&codec->mutex);
1268 return -ENOMEM;
1269 }
1270
1271 codec->ac97->bus->ops = ops;
1272 codec->ac97->num = num;
1273 mutex_unlock(&codec->mutex);
1274 return 0;
1275}
1276EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1277
1278/**
1279 * snd_soc_free_ac97_codec - free AC97 codec device
1280 * @codec: audio codec
1281 *
1282 * Frees AC97 codec device resources.
1283 */
1284void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1285{
1286 mutex_lock(&codec->mutex);
1287 kfree(codec->ac97->bus);
1288 kfree(codec->ac97);
1289 codec->ac97 = NULL;
1290 mutex_unlock(&codec->mutex);
1291}
1292EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1293
1294/**
1295 * snd_soc_update_bits - update codec register bits
1296 * @codec: audio codec
1297 * @reg: codec register
1298 * @mask: register mask
1299 * @value: new value
1300 *
1301 * Writes new register value.
1302 *
1303 * Returns 1 for change else 0.
1304 */
1305int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001306 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001307{
1308 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001309 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001310
1311 mutex_lock(&io_mutex);
1312 old = snd_soc_read(codec, reg);
1313 new = (old & ~mask) | value;
1314 change = old != new;
1315 if (change)
1316 snd_soc_write(codec, reg, new);
1317
1318 mutex_unlock(&io_mutex);
1319 return change;
1320}
1321EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1322
1323/**
1324 * snd_soc_test_bits - test register for change
1325 * @codec: audio codec
1326 * @reg: codec register
1327 * @mask: register mask
1328 * @value: new value
1329 *
1330 * Tests a register with a new value and checks if the new value is
1331 * different from the old value.
1332 *
1333 * Returns 1 for change else 0.
1334 */
1335int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001336 unsigned int mask, unsigned int value)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001337{
1338 int change;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001339 unsigned int old, new;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001340
1341 mutex_lock(&io_mutex);
1342 old = snd_soc_read(codec, reg);
1343 new = (old & ~mask) | value;
1344 change = old != new;
1345 mutex_unlock(&io_mutex);
1346
1347 return change;
1348}
1349EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1350
1351/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001352 * snd_soc_new_pcms - create new sound card and pcms
1353 * @socdev: the SoC audio device
Mark Brownac11a2b2009-01-01 12:18:17 +00001354 * @idx: ALSA card index
1355 * @xid: card identification
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001356 *
1357 * Create a new sound card based upon the codec and interface pcms.
1358 *
1359 * Returns 0 for success, else error.
1360 */
Liam Girdwoodbc7320c2007-02-01 12:26:07 +01001361int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001362{
Mark Brown87506542008-11-18 20:50:34 +00001363 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001364 struct snd_soc_codec *codec = card->codec;
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001365 int ret, i;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001366
1367 mutex_lock(&codec->mutex);
1368
1369 /* register a sound card */
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001370 ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
1371 if (ret < 0) {
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001372 printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
1373 codec->name);
1374 mutex_unlock(&codec->mutex);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001375 return ret;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001376 }
1377
Mark Brown452c5ea2009-05-17 21:41:23 +01001378 codec->socdev = socdev;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001379 codec->card->dev = socdev->dev;
1380 codec->card->private_data = codec;
1381 strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
1382
1383 /* create the pcms */
Mark Brown87506542008-11-18 20:50:34 +00001384 for (i = 0; i < card->num_links; i++) {
1385 ret = soc_new_pcm(socdev, &card->dai_link[i], i);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001386 if (ret < 0) {
1387 printk(KERN_ERR "asoc: can't create pcm %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001388 card->dai_link[i].stream_name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001389 mutex_unlock(&codec->mutex);
1390 return ret;
1391 }
1392 }
1393
1394 mutex_unlock(&codec->mutex);
1395 return ret;
1396}
1397EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
1398
1399/**
Mark Brown968a6022008-11-28 11:49:07 +00001400 * snd_soc_init_card - register sound card
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001401 * @socdev: the SoC audio device
1402 *
1403 * Register a SoC sound card. Also registers an AC97 device if the
1404 * codec is AC97 for ad hoc devices.
1405 *
1406 * Returns 0 for success, else error.
1407 */
Mark Brown968a6022008-11-28 11:49:07 +00001408int snd_soc_init_card(struct snd_soc_device *socdev)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001409{
Mark Brown87506542008-11-18 20:50:34 +00001410 struct snd_soc_card *card = socdev->card;
Mark Brown6627a652009-01-23 22:55:23 +00001411 struct snd_soc_codec *codec = card->codec;
Liam Girdwood12e74f72006-10-16 21:19:48 +02001412 int ret = 0, i, ac97 = 0, err = 0;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001413
Mark Brown87506542008-11-18 20:50:34 +00001414 for (i = 0; i < card->num_links; i++) {
1415 if (card->dai_link[i].init) {
1416 err = card->dai_link[i].init(codec);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001417 if (err < 0) {
1418 printk(KERN_ERR "asoc: failed to init %s\n",
Mark Brown87506542008-11-18 20:50:34 +00001419 card->dai_link[i].stream_name);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001420 continue;
1421 }
1422 }
Mark Brown3ba9e10a2008-11-24 18:01:05 +00001423 if (card->dai_link[i].codec_dai->ac97_control)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001424 ac97 = 1;
1425 }
1426 snprintf(codec->card->shortname, sizeof(codec->card->shortname),
Mark Brown87506542008-11-18 20:50:34 +00001427 "%s", card->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001428 snprintf(codec->card->longname, sizeof(codec->card->longname),
Mark Brown87506542008-11-18 20:50:34 +00001429 "%s (%s)", card->name, codec->name);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001430
1431 ret = snd_card_register(codec->card);
1432 if (ret < 0) {
Mark Brown3ff3f642008-05-19 12:32:25 +02001433 printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001434 codec->name);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001435 goto out;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001436 }
1437
Mark Brown08c8efe2008-01-21 14:33:37 +01001438 mutex_lock(&codec->mutex);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001439#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown14fa43f2009-02-12 19:33:19 +00001440 /* Only instantiate AC97 if not already done by the adaptor
1441 * for the generic AC97 subsystem.
1442 */
1443 if (ac97 && strcmp(codec->name, "AC97") != 0) {
Liam Girdwood12e74f72006-10-16 21:19:48 +02001444 ret = soc_ac97_dev_register(codec);
1445 if (ret < 0) {
1446 printk(KERN_ERR "asoc: AC97 device register failed\n");
1447 snd_card_free(codec->card);
Mark Brown08c8efe2008-01-21 14:33:37 +01001448 mutex_unlock(&codec->mutex);
Liam Girdwood12e74f72006-10-16 21:19:48 +02001449 goto out;
1450 }
1451 }
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001452#endif
1453
Liam Girdwood12e74f72006-10-16 21:19:48 +02001454 err = snd_soc_dapm_sys_add(socdev->dev);
1455 if (err < 0)
1456 printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
1457
1458 err = device_create_file(socdev->dev, &dev_attr_codec_reg);
1459 if (err < 0)
Mark Brown3ff3f642008-05-19 12:32:25 +02001460 printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
Mark Brown08c8efe2008-01-21 14:33:37 +01001461
Mark Brown6627a652009-01-23 22:55:23 +00001462 soc_init_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001463 mutex_unlock(&codec->mutex);
Mark Brown08c8efe2008-01-21 14:33:37 +01001464
1465out:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001466 return ret;
1467}
Mark Brown968a6022008-11-28 11:49:07 +00001468EXPORT_SYMBOL_GPL(snd_soc_init_card);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001469
1470/**
1471 * snd_soc_free_pcms - free sound card and pcms
1472 * @socdev: the SoC audio device
1473 *
1474 * Frees sound card and pcms associated with the socdev.
1475 * Also unregister the codec if it is an AC97 device.
1476 */
1477void snd_soc_free_pcms(struct snd_soc_device *socdev)
1478{
Mark Brown6627a652009-01-23 22:55:23 +00001479 struct snd_soc_codec *codec = socdev->card->codec;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001480#ifdef CONFIG_SND_SOC_AC97_BUS
Liam Girdwood3c4b2662008-07-07 16:07:17 +01001481 struct snd_soc_dai *codec_dai;
Liam Girdwooda68660e2007-05-10 19:27:27 +02001482 int i;
1483#endif
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001484
1485 mutex_lock(&codec->mutex);
Mark Brown6627a652009-01-23 22:55:23 +00001486 soc_cleanup_codec_debugfs(codec);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001487#ifdef CONFIG_SND_SOC_AC97_BUS
Mark Brown3ff3f642008-05-19 12:32:25 +02001488 for (i = 0; i < codec->num_dai; i++) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001489 codec_dai = &codec->dai[i];
Atsushi Nemotod2314e02009-03-16 23:26:20 +09001490 if (codec_dai->ac97_control && codec->ac97 &&
1491 strcmp(codec->name, "AC97") != 0) {
Liam Girdwooda68660e2007-05-10 19:27:27 +02001492 soc_ac97_dev_unregister(codec);
1493 goto free_card;
1494 }
1495 }
1496free_card:
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001497#endif
1498
1499 if (codec->card)
1500 snd_card_free(codec->card);
1501 device_remove_file(socdev->dev, &dev_attr_codec_reg);
1502 mutex_unlock(&codec->mutex);
1503}
1504EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
1505
1506/**
1507 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1508 * @substream: the pcm substream
1509 * @hw: the hardware parameters
1510 *
1511 * Sets the substream runtime hardware parameters.
1512 */
1513int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1514 const struct snd_pcm_hardware *hw)
1515{
1516 struct snd_pcm_runtime *runtime = substream->runtime;
1517 runtime->hw.info = hw->info;
1518 runtime->hw.formats = hw->formats;
1519 runtime->hw.period_bytes_min = hw->period_bytes_min;
1520 runtime->hw.period_bytes_max = hw->period_bytes_max;
1521 runtime->hw.periods_min = hw->periods_min;
1522 runtime->hw.periods_max = hw->periods_max;
1523 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1524 runtime->hw.fifo_size = hw->fifo_size;
1525 return 0;
1526}
1527EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1528
1529/**
1530 * snd_soc_cnew - create new control
1531 * @_template: control template
1532 * @data: control private data
Mark Brownac11a2b2009-01-01 12:18:17 +00001533 * @long_name: control long name
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001534 *
1535 * Create a new mixer control from a template control.
1536 *
1537 * Returns 0 for success, else error.
1538 */
1539struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
1540 void *data, char *long_name)
1541{
1542 struct snd_kcontrol_new template;
1543
1544 memcpy(&template, _template, sizeof(template));
1545 if (long_name)
1546 template.name = long_name;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001547 template.index = 0;
1548
1549 return snd_ctl_new1(&template, data);
1550}
1551EXPORT_SYMBOL_GPL(snd_soc_cnew);
1552
1553/**
Ian Molton3e8e1952009-01-09 00:23:21 +00001554 * snd_soc_add_controls - add an array of controls to a codec.
1555 * Convienience function to add a list of controls. Many codecs were
1556 * duplicating this code.
1557 *
1558 * @codec: codec to add controls to
1559 * @controls: array of controls to add
1560 * @num_controls: number of elements in the array
1561 *
1562 * Return 0 for success, else error.
1563 */
1564int snd_soc_add_controls(struct snd_soc_codec *codec,
1565 const struct snd_kcontrol_new *controls, int num_controls)
1566{
1567 struct snd_card *card = codec->card;
1568 int err, i;
1569
1570 for (i = 0; i < num_controls; i++) {
1571 const struct snd_kcontrol_new *control = &controls[i];
1572 err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
1573 if (err < 0) {
1574 dev_err(codec->dev, "%s: Failed to add %s\n",
1575 codec->name, control->name);
1576 return err;
1577 }
1578 }
1579
1580 return 0;
1581}
1582EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1583
1584/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001585 * snd_soc_info_enum_double - enumerated double mixer info callback
1586 * @kcontrol: mixer control
1587 * @uinfo: control element information
1588 *
1589 * Callback to provide information about a double enumerated
1590 * mixer control.
1591 *
1592 * Returns 0 for success.
1593 */
1594int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
1595 struct snd_ctl_elem_info *uinfo)
1596{
1597 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1598
1599 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1600 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001601 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001602
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001603 if (uinfo->value.enumerated.item > e->max - 1)
1604 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001605 strcpy(uinfo->value.enumerated.name,
1606 e->texts[uinfo->value.enumerated.item]);
1607 return 0;
1608}
1609EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
1610
1611/**
1612 * snd_soc_get_enum_double - enumerated double mixer get callback
1613 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001614 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001615 *
1616 * Callback to get the value of a double enumerated mixer.
1617 *
1618 * Returns 0 for success.
1619 */
1620int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
1621 struct snd_ctl_elem_value *ucontrol)
1622{
1623 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1624 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001625 unsigned int val, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001626
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001627 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001628 ;
1629 val = snd_soc_read(codec, e->reg);
Mark Brown3ff3f642008-05-19 12:32:25 +02001630 ucontrol->value.enumerated.item[0]
1631 = (val >> e->shift_l) & (bitmask - 1);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001632 if (e->shift_l != e->shift_r)
1633 ucontrol->value.enumerated.item[1] =
1634 (val >> e->shift_r) & (bitmask - 1);
1635
1636 return 0;
1637}
1638EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
1639
1640/**
1641 * snd_soc_put_enum_double - enumerated double mixer put callback
1642 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001643 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001644 *
1645 * Callback to set the value of a double enumerated mixer.
1646 *
1647 * Returns 0 for success.
1648 */
1649int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
1650 struct snd_ctl_elem_value *ucontrol)
1651{
1652 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1653 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001654 unsigned int val;
1655 unsigned int mask, bitmask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001656
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001657 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001658 ;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001659 if (ucontrol->value.enumerated.item[0] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001660 return -EINVAL;
1661 val = ucontrol->value.enumerated.item[0] << e->shift_l;
1662 mask = (bitmask - 1) << e->shift_l;
1663 if (e->shift_l != e->shift_r) {
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001664 if (ucontrol->value.enumerated.item[1] > e->max - 1)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001665 return -EINVAL;
1666 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1667 mask |= (bitmask - 1) << e->shift_r;
1668 }
1669
1670 return snd_soc_update_bits(codec, e->reg, mask, val);
1671}
1672EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
1673
1674/**
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001675 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1676 * @kcontrol: mixer control
1677 * @ucontrol: control element information
1678 *
1679 * Callback to get the value of a double semi enumerated mixer.
1680 *
1681 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1682 * used for handling bitfield coded enumeration for example.
1683 *
1684 * Returns 0 for success.
1685 */
1686int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
1687 struct snd_ctl_elem_value *ucontrol)
1688{
1689 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001690 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001691 unsigned int reg_val, val, mux;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001692
1693 reg_val = snd_soc_read(codec, e->reg);
1694 val = (reg_val >> e->shift_l) & e->mask;
1695 for (mux = 0; mux < e->max; mux++) {
1696 if (val == e->values[mux])
1697 break;
1698 }
1699 ucontrol->value.enumerated.item[0] = mux;
1700 if (e->shift_l != e->shift_r) {
1701 val = (reg_val >> e->shift_r) & e->mask;
1702 for (mux = 0; mux < e->max; mux++) {
1703 if (val == e->values[mux])
1704 break;
1705 }
1706 ucontrol->value.enumerated.item[1] = mux;
1707 }
1708
1709 return 0;
1710}
1711EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
1712
1713/**
1714 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1715 * @kcontrol: mixer control
1716 * @ucontrol: control element information
1717 *
1718 * Callback to set the value of a double semi enumerated mixer.
1719 *
1720 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1721 * used for handling bitfield coded enumeration for example.
1722 *
1723 * Returns 0 for success.
1724 */
1725int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
1726 struct snd_ctl_elem_value *ucontrol)
1727{
1728 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Peter Ujfalusi74155552009-01-08 13:34:29 +02001729 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001730 unsigned int val;
1731 unsigned int mask;
Peter Ujfalusi2e72f8e2009-01-05 09:54:57 +02001732
1733 if (ucontrol->value.enumerated.item[0] > e->max - 1)
1734 return -EINVAL;
1735 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1736 mask = e->mask << e->shift_l;
1737 if (e->shift_l != e->shift_r) {
1738 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1739 return -EINVAL;
1740 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1741 mask |= e->mask << e->shift_r;
1742 }
1743
1744 return snd_soc_update_bits(codec, e->reg, mask, val);
1745}
1746EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
1747
1748/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001749 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1750 * @kcontrol: mixer control
1751 * @uinfo: control element information
1752 *
1753 * Callback to provide information about an external enumerated
1754 * single mixer.
1755 *
1756 * Returns 0 for success.
1757 */
1758int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
1759 struct snd_ctl_elem_info *uinfo)
1760{
1761 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1762
1763 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1764 uinfo->count = 1;
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001765 uinfo->value.enumerated.items = e->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001766
Jon Smirlf8ba0b72008-07-29 11:42:27 +01001767 if (uinfo->value.enumerated.item > e->max - 1)
1768 uinfo->value.enumerated.item = e->max - 1;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001769 strcpy(uinfo->value.enumerated.name,
1770 e->texts[uinfo->value.enumerated.item]);
1771 return 0;
1772}
1773EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
1774
1775/**
1776 * snd_soc_info_volsw_ext - external single mixer info callback
1777 * @kcontrol: mixer control
1778 * @uinfo: control element information
1779 *
1780 * Callback to provide information about a single external mixer control.
1781 *
1782 * Returns 0 for success.
1783 */
1784int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
1785 struct snd_ctl_elem_info *uinfo)
1786{
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001787 int max = kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001788
Mark Brownfd5dfad2009-04-15 21:37:46 +01001789 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001790 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1791 else
1792 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1793
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001794 uinfo->count = 1;
1795 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001796 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001797 return 0;
1798}
1799EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
1800
1801/**
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001802 * snd_soc_info_volsw - single mixer info callback
1803 * @kcontrol: mixer control
1804 * @uinfo: control element information
1805 *
1806 * Callback to provide information about a single mixer control.
1807 *
1808 * Returns 0 for success.
1809 */
1810int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
1811 struct snd_ctl_elem_info *uinfo)
1812{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001813 struct soc_mixer_control *mc =
1814 (struct soc_mixer_control *)kcontrol->private_value;
1815 int max = mc->max;
Mark Brown762b8df2008-10-30 12:37:08 +00001816 unsigned int shift = mc->shift;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001817 unsigned int rshift = mc->rshift;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001818
Mark Brownfd5dfad2009-04-15 21:37:46 +01001819 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001820 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1821 else
1822 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1823
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001824 uinfo->count = shift == rshift ? 1 : 2;
1825 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001826 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001827 return 0;
1828}
1829EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
1830
1831/**
1832 * snd_soc_get_volsw - single mixer get callback
1833 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001834 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001835 *
1836 * Callback to get the value of a single mixer control.
1837 *
1838 * Returns 0 for success.
1839 */
1840int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
1841 struct snd_ctl_elem_value *ucontrol)
1842{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001843 struct soc_mixer_control *mc =
1844 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001845 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001846 unsigned int reg = mc->reg;
1847 unsigned int shift = mc->shift;
1848 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001849 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001850 unsigned int mask = (1 << fls(max)) - 1;
1851 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001852
1853 ucontrol->value.integer.value[0] =
1854 (snd_soc_read(codec, reg) >> shift) & mask;
1855 if (shift != rshift)
1856 ucontrol->value.integer.value[1] =
1857 (snd_soc_read(codec, reg) >> rshift) & mask;
1858 if (invert) {
1859 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001860 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001861 if (shift != rshift)
1862 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001863 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001864 }
1865
1866 return 0;
1867}
1868EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
1869
1870/**
1871 * snd_soc_put_volsw - single mixer put callback
1872 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001873 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001874 *
1875 * Callback to set the value of a single mixer control.
1876 *
1877 * Returns 0 for success.
1878 */
1879int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
1880 struct snd_ctl_elem_value *ucontrol)
1881{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001882 struct soc_mixer_control *mc =
1883 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001884 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001885 unsigned int reg = mc->reg;
1886 unsigned int shift = mc->shift;
1887 unsigned int rshift = mc->rshift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001888 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001889 unsigned int mask = (1 << fls(max)) - 1;
1890 unsigned int invert = mc->invert;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001891 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001892
1893 val = (ucontrol->value.integer.value[0] & mask);
1894 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001895 val = max - val;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001896 val_mask = mask << shift;
1897 val = val << shift;
1898 if (shift != rshift) {
1899 val2 = (ucontrol->value.integer.value[1] & mask);
1900 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001901 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001902 val_mask |= mask << rshift;
1903 val |= val2 << rshift;
1904 }
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001905 return snd_soc_update_bits(codec, reg, val_mask, val);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001906}
1907EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
1908
1909/**
1910 * snd_soc_info_volsw_2r - double mixer info callback
1911 * @kcontrol: mixer control
1912 * @uinfo: control element information
1913 *
1914 * Callback to provide information about a double mixer control that
1915 * spans 2 codec registers.
1916 *
1917 * Returns 0 for success.
1918 */
1919int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
1920 struct snd_ctl_elem_info *uinfo)
1921{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001922 struct soc_mixer_control *mc =
1923 (struct soc_mixer_control *)kcontrol->private_value;
1924 int max = mc->max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001925
Mark Brownfd5dfad2009-04-15 21:37:46 +01001926 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001927 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1928 else
1929 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1930
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001931 uinfo->count = 2;
1932 uinfo->value.integer.min = 0;
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001933 uinfo->value.integer.max = max;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001934 return 0;
1935}
1936EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
1937
1938/**
1939 * snd_soc_get_volsw_2r - double mixer get callback
1940 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001941 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001942 *
1943 * Callback to get the value of a double mixer control that spans 2 registers.
1944 *
1945 * Returns 0 for success.
1946 */
1947int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
1948 struct snd_ctl_elem_value *ucontrol)
1949{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001950 struct soc_mixer_control *mc =
1951 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001952 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001953 unsigned int reg = mc->reg;
1954 unsigned int reg2 = mc->rreg;
1955 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001956 int max = mc->max;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001957 unsigned int mask = (1 << fls(max)) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001958 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001959
1960 ucontrol->value.integer.value[0] =
1961 (snd_soc_read(codec, reg) >> shift) & mask;
1962 ucontrol->value.integer.value[1] =
1963 (snd_soc_read(codec, reg2) >> shift) & mask;
1964 if (invert) {
1965 ucontrol->value.integer.value[0] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001966 max - ucontrol->value.integer.value[0];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001967 ucontrol->value.integer.value[1] =
Philipp Zabela7a4ac82008-01-10 14:37:42 +01001968 max - ucontrol->value.integer.value[1];
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001969 }
1970
1971 return 0;
1972}
1973EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
1974
1975/**
1976 * snd_soc_put_volsw_2r - double mixer set callback
1977 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00001978 * @ucontrol: control element information
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001979 *
1980 * Callback to set the value of a double mixer control that spans 2 registers.
1981 *
1982 * Returns 0 for success.
1983 */
1984int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
1985 struct snd_ctl_elem_value *ucontrol)
1986{
Jon Smirl4eaa9812008-07-29 11:42:26 +01001987 struct soc_mixer_control *mc =
1988 (struct soc_mixer_control *)kcontrol->private_value;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001989 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001990 unsigned int reg = mc->reg;
1991 unsigned int reg2 = mc->rreg;
1992 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01001993 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04001994 unsigned int mask = (1 << fls(max)) - 1;
1995 unsigned int invert = mc->invert;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001996 int err;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03001997 unsigned int val, val2, val_mask;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02001998
1999 val_mask = mask << shift;
2000 val = (ucontrol->value.integer.value[0] & mask);
2001 val2 = (ucontrol->value.integer.value[1] & mask);
2002
2003 if (invert) {
Philipp Zabela7a4ac82008-01-10 14:37:42 +01002004 val = max - val;
2005 val2 = max - val2;
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002006 }
2007
2008 val = val << shift;
2009 val2 = val2 << shift;
2010
Mark Brown3ff3f642008-05-19 12:32:25 +02002011 err = snd_soc_update_bits(codec, reg, val_mask, val);
2012 if (err < 0)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002013 return err;
2014
2015 err = snd_soc_update_bits(codec, reg2, val_mask, val2);
2016 return err;
2017}
2018EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2019
Mark Browne13ac2e2008-05-28 17:58:05 +01002020/**
2021 * snd_soc_info_volsw_s8 - signed mixer info callback
2022 * @kcontrol: mixer control
2023 * @uinfo: control element information
2024 *
2025 * Callback to provide information about a signed mixer control.
2026 *
2027 * Returns 0 for success.
2028 */
2029int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2030 struct snd_ctl_elem_info *uinfo)
2031{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002032 struct soc_mixer_control *mc =
2033 (struct soc_mixer_control *)kcontrol->private_value;
2034 int max = mc->max;
2035 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002036
2037 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2038 uinfo->count = 2;
2039 uinfo->value.integer.min = 0;
2040 uinfo->value.integer.max = max-min;
2041 return 0;
2042}
2043EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2044
2045/**
2046 * snd_soc_get_volsw_s8 - signed mixer get callback
2047 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002048 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002049 *
2050 * Callback to get the value of a signed mixer control.
2051 *
2052 * Returns 0 for success.
2053 */
2054int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2055 struct snd_ctl_elem_value *ucontrol)
2056{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002057 struct soc_mixer_control *mc =
2058 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002059 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002060 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002061 int min = mc->min;
Mark Browne13ac2e2008-05-28 17:58:05 +01002062 int val = snd_soc_read(codec, reg);
2063
2064 ucontrol->value.integer.value[0] =
2065 ((signed char)(val & 0xff))-min;
2066 ucontrol->value.integer.value[1] =
2067 ((signed char)((val >> 8) & 0xff))-min;
2068 return 0;
2069}
2070EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2071
2072/**
2073 * snd_soc_put_volsw_sgn - signed mixer put callback
2074 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002075 * @ucontrol: control element information
Mark Browne13ac2e2008-05-28 17:58:05 +01002076 *
2077 * Callback to set the value of a signed mixer control.
2078 *
2079 * Returns 0 for success.
2080 */
2081int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2082 struct snd_ctl_elem_value *ucontrol)
2083{
Jon Smirl4eaa9812008-07-29 11:42:26 +01002084 struct soc_mixer_control *mc =
2085 (struct soc_mixer_control *)kcontrol->private_value;
Mark Browne13ac2e2008-05-28 17:58:05 +01002086 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002087 unsigned int reg = mc->reg;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002088 int min = mc->min;
Daniel Ribeiro46f58222009-06-07 02:49:11 -03002089 unsigned int val;
Mark Browne13ac2e2008-05-28 17:58:05 +01002090
2091 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2092 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2093
2094 return snd_soc_update_bits(codec, reg, 0xffff, val);
2095}
2096EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2097
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002098/**
2099 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2100 * @dai: DAI
2101 * @clk_id: DAI specific clock ID
2102 * @freq: new clock frequency in Hz
2103 * @dir: new clock direction - input/output.
2104 *
2105 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2106 */
2107int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2108 unsigned int freq, int dir)
2109{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002110 if (dai->ops && dai->ops->set_sysclk)
Eric Miao6335d052009-03-03 09:41:00 +08002111 return dai->ops->set_sysclk(dai, clk_id, freq, dir);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002112 else
2113 return -EINVAL;
2114}
2115EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2116
2117/**
2118 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2119 * @dai: DAI
Mark Brownac11a2b2009-01-01 12:18:17 +00002120 * @div_id: DAI specific clock divider ID
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002121 * @div: new clock divisor.
2122 *
2123 * Configures the clock dividers. This is used to derive the best DAI bit and
2124 * frame clocks from the system or master clock. It's best to set the DAI bit
2125 * and frame clocks as low as possible to save system power.
2126 */
2127int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2128 int div_id, int div)
2129{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002130 if (dai->ops && dai->ops->set_clkdiv)
Eric Miao6335d052009-03-03 09:41:00 +08002131 return dai->ops->set_clkdiv(dai, div_id, div);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002132 else
2133 return -EINVAL;
2134}
2135EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2136
2137/**
2138 * snd_soc_dai_set_pll - configure DAI PLL.
2139 * @dai: DAI
2140 * @pll_id: DAI specific PLL ID
2141 * @freq_in: PLL input clock frequency in Hz
2142 * @freq_out: requested PLL output clock frequency in Hz
2143 *
2144 * Configures and enables PLL to generate output clock based on input clock.
2145 */
2146int snd_soc_dai_set_pll(struct snd_soc_dai *dai,
2147 int pll_id, unsigned int freq_in, unsigned int freq_out)
2148{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002149 if (dai->ops && dai->ops->set_pll)
Eric Miao6335d052009-03-03 09:41:00 +08002150 return dai->ops->set_pll(dai, pll_id, freq_in, freq_out);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002151 else
2152 return -EINVAL;
2153}
2154EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2155
2156/**
2157 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2158 * @dai: DAI
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002159 * @fmt: SND_SOC_DAIFMT_ format value.
2160 *
2161 * Configures the DAI hardware format and clocking.
2162 */
2163int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2164{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002165 if (dai->ops && dai->ops->set_fmt)
Eric Miao6335d052009-03-03 09:41:00 +08002166 return dai->ops->set_fmt(dai, fmt);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002167 else
2168 return -EINVAL;
2169}
2170EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2171
2172/**
2173 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2174 * @dai: DAI
2175 * @mask: DAI specific mask representing used slots.
2176 * @slots: Number of slots in use.
2177 *
2178 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2179 * specific.
2180 */
2181int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
2182 unsigned int mask, int slots)
2183{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002184 if (dai->ops && dai->ops->set_tdm_slot)
Eric Miao6335d052009-03-03 09:41:00 +08002185 return dai->ops->set_tdm_slot(dai, mask, slots);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002186 else
2187 return -EINVAL;
2188}
2189EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2190
2191/**
2192 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2193 * @dai: DAI
2194 * @tristate: tristate enable
2195 *
2196 * Tristates the DAI so that others can use it.
2197 */
2198int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2199{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002200 if (dai->ops && dai->ops->set_tristate)
Eric Miao6335d052009-03-03 09:41:00 +08002201 return dai->ops->set_tristate(dai, tristate);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002202 else
2203 return -EINVAL;
2204}
2205EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2206
2207/**
2208 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2209 * @dai: DAI
2210 * @mute: mute enable
2211 *
2212 * Mutes the DAI DAC.
2213 */
2214int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2215{
Mark Brown3f1a4d82009-04-15 21:35:26 +01002216 if (dai->ops && dai->ops->digital_mute)
Eric Miao6335d052009-03-03 09:41:00 +08002217 return dai->ops->digital_mute(dai, mute);
Liam Girdwood8c6529d2008-07-08 13:19:13 +01002218 else
2219 return -EINVAL;
2220}
2221EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2222
Mark Brownc5af3a22008-11-28 13:29:45 +00002223/**
2224 * snd_soc_register_card - Register a card with the ASoC core
2225 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002226 * @card: Card to register
Mark Brownc5af3a22008-11-28 13:29:45 +00002227 *
2228 * Note that currently this is an internal only function: it will be
2229 * exposed to machine drivers after further backporting of ASoC v2
2230 * registration APIs.
2231 */
2232static int snd_soc_register_card(struct snd_soc_card *card)
2233{
2234 if (!card->name || !card->dev)
2235 return -EINVAL;
2236
2237 INIT_LIST_HEAD(&card->list);
2238 card->instantiated = 0;
2239
2240 mutex_lock(&client_mutex);
2241 list_add(&card->list, &card_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002242 snd_soc_instantiate_cards();
Mark Brownc5af3a22008-11-28 13:29:45 +00002243 mutex_unlock(&client_mutex);
2244
2245 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2246
2247 return 0;
2248}
2249
2250/**
2251 * snd_soc_unregister_card - Unregister a card with the ASoC core
2252 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002253 * @card: Card to unregister
Mark Brownc5af3a22008-11-28 13:29:45 +00002254 *
2255 * Note that currently this is an internal only function: it will be
2256 * exposed to machine drivers after further backporting of ASoC v2
2257 * registration APIs.
2258 */
2259static int snd_soc_unregister_card(struct snd_soc_card *card)
2260{
2261 mutex_lock(&client_mutex);
2262 list_del(&card->list);
2263 mutex_unlock(&client_mutex);
2264
2265 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2266
2267 return 0;
2268}
2269
Eric Miao6335d052009-03-03 09:41:00 +08002270static struct snd_soc_dai_ops null_dai_ops = {
2271};
2272
Mark Brown91151712008-11-30 23:31:24 +00002273/**
2274 * snd_soc_register_dai - Register a DAI with the ASoC core
2275 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002276 * @dai: DAI to register
Mark Brown91151712008-11-30 23:31:24 +00002277 */
2278int snd_soc_register_dai(struct snd_soc_dai *dai)
2279{
2280 if (!dai->name)
2281 return -EINVAL;
2282
2283 /* The device should become mandatory over time */
2284 if (!dai->dev)
2285 printk(KERN_WARNING "No device for DAI %s\n", dai->name);
2286
Eric Miao6335d052009-03-03 09:41:00 +08002287 if (!dai->ops)
2288 dai->ops = &null_dai_ops;
2289
Mark Brown91151712008-11-30 23:31:24 +00002290 INIT_LIST_HEAD(&dai->list);
2291
2292 mutex_lock(&client_mutex);
2293 list_add(&dai->list, &dai_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002294 snd_soc_instantiate_cards();
Mark Brown91151712008-11-30 23:31:24 +00002295 mutex_unlock(&client_mutex);
2296
2297 pr_debug("Registered DAI '%s'\n", dai->name);
2298
2299 return 0;
2300}
2301EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2302
2303/**
2304 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2305 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002306 * @dai: DAI to unregister
Mark Brown91151712008-11-30 23:31:24 +00002307 */
2308void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2309{
2310 mutex_lock(&client_mutex);
2311 list_del(&dai->list);
2312 mutex_unlock(&client_mutex);
2313
2314 pr_debug("Unregistered DAI '%s'\n", dai->name);
2315}
2316EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2317
2318/**
2319 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2320 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002321 * @dai: Array of DAIs to register
2322 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002323 */
2324int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
2325{
2326 int i, ret;
2327
2328 for (i = 0; i < count; i++) {
2329 ret = snd_soc_register_dai(&dai[i]);
2330 if (ret != 0)
2331 goto err;
2332 }
2333
2334 return 0;
2335
2336err:
2337 for (i--; i >= 0; i--)
2338 snd_soc_unregister_dai(&dai[i]);
2339
2340 return ret;
2341}
2342EXPORT_SYMBOL_GPL(snd_soc_register_dais);
2343
2344/**
2345 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2346 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002347 * @dai: Array of DAIs to unregister
2348 * @count: Number of DAIs
Mark Brown91151712008-11-30 23:31:24 +00002349 */
2350void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
2351{
2352 int i;
2353
2354 for (i = 0; i < count; i++)
2355 snd_soc_unregister_dai(&dai[i]);
2356}
2357EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
2358
Mark Brown12a48a8c2008-12-03 19:40:30 +00002359/**
2360 * snd_soc_register_platform - Register a platform with the ASoC core
2361 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002362 * @platform: platform to register
Mark Brown12a48a8c2008-12-03 19:40:30 +00002363 */
2364int snd_soc_register_platform(struct snd_soc_platform *platform)
2365{
2366 if (!platform->name)
2367 return -EINVAL;
2368
2369 INIT_LIST_HEAD(&platform->list);
2370
2371 mutex_lock(&client_mutex);
2372 list_add(&platform->list, &platform_list);
Mark Brown435c5e22008-12-04 15:32:53 +00002373 snd_soc_instantiate_cards();
Mark Brown12a48a8c2008-12-03 19:40:30 +00002374 mutex_unlock(&client_mutex);
2375
2376 pr_debug("Registered platform '%s'\n", platform->name);
2377
2378 return 0;
2379}
2380EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2381
2382/**
2383 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2384 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002385 * @platform: platform to unregister
Mark Brown12a48a8c2008-12-03 19:40:30 +00002386 */
2387void snd_soc_unregister_platform(struct snd_soc_platform *platform)
2388{
2389 mutex_lock(&client_mutex);
2390 list_del(&platform->list);
2391 mutex_unlock(&client_mutex);
2392
2393 pr_debug("Unregistered platform '%s'\n", platform->name);
2394}
2395EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2396
Mark Brown151ab222009-05-09 16:22:58 +01002397static u64 codec_format_map[] = {
2398 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2399 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2400 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2401 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2402 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2403 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2404 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2405 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2406 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2407 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2408 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2409 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2410 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2411 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2412 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2413 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2414};
2415
2416/* Fix up the DAI formats for endianness: codecs don't actually see
2417 * the endianness of the data but we're using the CPU format
2418 * definitions which do need to include endianness so we ensure that
2419 * codec DAIs always have both big and little endian variants set.
2420 */
2421static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2422{
2423 int i;
2424
2425 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2426 if (stream->formats & codec_format_map[i])
2427 stream->formats |= codec_format_map[i];
2428}
2429
Mark Brown0d0cf002008-12-10 14:32:45 +00002430/**
2431 * snd_soc_register_codec - Register a codec with the ASoC core
2432 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002433 * @codec: codec to register
Mark Brown0d0cf002008-12-10 14:32:45 +00002434 */
2435int snd_soc_register_codec(struct snd_soc_codec *codec)
2436{
Mark Brown151ab222009-05-09 16:22:58 +01002437 int i;
2438
Mark Brown0d0cf002008-12-10 14:32:45 +00002439 if (!codec->name)
2440 return -EINVAL;
2441
2442 /* The device should become mandatory over time */
2443 if (!codec->dev)
2444 printk(KERN_WARNING "No device for codec %s\n", codec->name);
2445
2446 INIT_LIST_HEAD(&codec->list);
2447
Mark Brown151ab222009-05-09 16:22:58 +01002448 for (i = 0; i < codec->num_dai; i++) {
2449 fixup_codec_formats(&codec->dai[i].playback);
2450 fixup_codec_formats(&codec->dai[i].capture);
2451 }
2452
Mark Brown0d0cf002008-12-10 14:32:45 +00002453 mutex_lock(&client_mutex);
2454 list_add(&codec->list, &codec_list);
2455 snd_soc_instantiate_cards();
2456 mutex_unlock(&client_mutex);
2457
2458 pr_debug("Registered codec '%s'\n", codec->name);
2459
2460 return 0;
2461}
2462EXPORT_SYMBOL_GPL(snd_soc_register_codec);
2463
2464/**
2465 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2466 *
Mark Brownac11a2b2009-01-01 12:18:17 +00002467 * @codec: codec to unregister
Mark Brown0d0cf002008-12-10 14:32:45 +00002468 */
2469void snd_soc_unregister_codec(struct snd_soc_codec *codec)
2470{
2471 mutex_lock(&client_mutex);
2472 list_del(&codec->list);
2473 mutex_unlock(&client_mutex);
2474
2475 pr_debug("Unregistered codec '%s'\n", codec->name);
2476}
2477EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
2478
Takashi Iwaic9b3a402008-12-10 07:47:22 +01002479static int __init snd_soc_init(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002480{
Mark Brown384c89e2008-12-03 17:34:03 +00002481#ifdef CONFIG_DEBUG_FS
2482 debugfs_root = debugfs_create_dir("asoc", NULL);
2483 if (IS_ERR(debugfs_root) || !debugfs_root) {
2484 printk(KERN_WARNING
2485 "ASoC: Failed to create debugfs directory\n");
2486 debugfs_root = NULL;
2487 }
2488#endif
2489
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002490 return platform_driver_register(&soc_driver);
2491}
2492
Mark Brown7d8c16a2008-11-30 22:11:24 +00002493static void __exit snd_soc_exit(void)
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002494{
Mark Brown384c89e2008-12-03 17:34:03 +00002495#ifdef CONFIG_DEBUG_FS
2496 debugfs_remove_recursive(debugfs_root);
2497#endif
Mark Brown3ff3f642008-05-19 12:32:25 +02002498 platform_driver_unregister(&soc_driver);
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002499}
2500
2501module_init(snd_soc_init);
2502module_exit(snd_soc_exit);
2503
2504/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01002505MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Frank Mandarinodb2a4162006-10-06 18:31:09 +02002506MODULE_DESCRIPTION("ALSA SoC Core");
2507MODULE_LICENSE("GPL");
Kay Sievers8b45a202008-04-14 13:33:36 +02002508MODULE_ALIAS("platform:soc-audio");