]> bbs.cooldavid.org Git - net-next-2.6.git/blame - sound/soc/soc-core.c
ASoC: remove io_mutex
[net-next-2.6.git] / sound / soc / soc-core.c
CommitLineData
db2a4165
FM
1/*
2 * soc-core.c -- ALSA SoC Audio Layer
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
0664d888
LG
5 * Copyright 2005 Openedhand Ltd.
6 *
d331124d 7 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
0664d888
LG
8 * with code, comments and ideas from :-
9 * Richard Purdie <richard@openedhand.com>
db2a4165
FM
10 *
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 *
db2a4165
FM
16 * 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>
12ef193d 29#include <linux/debugfs.h>
db2a4165 30#include <linux/platform_device.h>
474828a4 31#include <sound/ac97_codec.h>
db2a4165
FM
32#include <sound/core.h>
33#include <sound/pcm.h>
34#include <sound/pcm_params.h>
35#include <sound/soc.h>
36#include <sound/soc-dapm.h>
37#include <sound/initval.h>
38
db2a4165 39static DEFINE_MUTEX(pcm_mutex);
db2a4165
FM
40static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq);
41
384c89e2
MB
42#ifdef CONFIG_DEBUG_FS
43static struct dentry *debugfs_root;
44#endif
45
c5af3a2e
MB
46static DEFINE_MUTEX(client_mutex);
47static LIST_HEAD(card_list);
9115171a 48static LIST_HEAD(dai_list);
12a48a8c 49static LIST_HEAD(platform_list);
0d0cf00a 50static LIST_HEAD(codec_list);
c5af3a2e
MB
51
52static int snd_soc_register_card(struct snd_soc_card *card);
53static int snd_soc_unregister_card(struct snd_soc_card *card);
54
db2a4165
FM
55/*
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
965ac42c
LG
64/*
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
db2a4165
FM
83#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;
4ac5c61f 101 codec->ac97->dev.parent = codec->card->dev;
db2a4165
FM
102 codec->ac97->dev.release = soc_ac97_device_release;
103
bb072bf0
KS
104 dev_set_name(&codec->ac97->dev, "%d-%d:%s",
105 codec->card->number, 0, codec->name);
db2a4165
FM
106 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
06f409d7
MB
116static 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
db2a4165
FM
145/*
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;
87689d56 154 struct snd_soc_card *card = socdev->card;
db2a4165 155 struct snd_pcm_runtime *runtime = substream->runtime;
cb666e5b 156 struct snd_soc_dai_link *machine = rtd->dai;
87689d56 157 struct snd_soc_platform *platform = card->platform;
3c4b266f
LG
158 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
159 struct snd_soc_dai *codec_dai = machine->codec_dai;
db2a4165
FM
160 int ret = 0;
161
162 mutex_lock(&pcm_mutex);
163
164 /* startup the audio subsystem */
6335d055
EM
165 if (cpu_dai->ops->startup) {
166 ret = cpu_dai->ops->startup(substream, cpu_dai);
db2a4165
FM
167 if (ret < 0) {
168 printk(KERN_ERR "asoc: can't open interface %s\n",
cb666e5b 169 cpu_dai->name);
db2a4165
FM
170 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
6335d055
EM
182 if (codec_dai->ops->startup) {
183 ret = codec_dai->ops->startup(substream, codec_dai);
db2a4165 184 if (ret < 0) {
cb666e5b
LG
185 printk(KERN_ERR "asoc: can't open codec %s\n",
186 codec_dai->name);
187 goto codec_dai_err;
db2a4165
FM
188 }
189 }
190
cb666e5b
LG
191 if (machine->ops && machine->ops->startup) {
192 ret = machine->ops->startup(substream);
db2a4165 193 if (ret < 0) {
cb666e5b
LG
194 printk(KERN_ERR "asoc: %s startup failed\n", machine->name);
195 goto machine_err;
db2a4165
FM
196 }
197 }
198
db2a4165
FM
199 /* Check that the codec and cpu DAI's are compatible */
200 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
201 runtime->hw.rate_min =
3ff3f64b
MB
202 max(codec_dai->playback.rate_min,
203 cpu_dai->playback.rate_min);
db2a4165 204 runtime->hw.rate_max =
3ff3f64b
MB
205 min(codec_dai->playback.rate_max,
206 cpu_dai->playback.rate_max);
db2a4165 207 runtime->hw.channels_min =
cb666e5b
LG
208 max(codec_dai->playback.channels_min,
209 cpu_dai->playback.channels_min);
db2a4165 210 runtime->hw.channels_max =
cb666e5b
LG
211 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;
db2a4165
FM
217 } else {
218 runtime->hw.rate_min =
3ff3f64b
MB
219 max(codec_dai->capture.rate_min,
220 cpu_dai->capture.rate_min);
db2a4165 221 runtime->hw.rate_max =
3ff3f64b
MB
222 min(codec_dai->capture.rate_max,
223 cpu_dai->capture.rate_max);
db2a4165 224 runtime->hw.channels_min =
cb666e5b
LG
225 max(codec_dai->capture.channels_min,
226 cpu_dai->capture.channels_min);
db2a4165 227 runtime->hw.channels_max =
cb666e5b
LG
228 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;
db2a4165
FM
234 }
235
236 snd_pcm_limit_hw_rates(runtime);
237 if (!runtime->hw.rates) {
238 printk(KERN_ERR "asoc: %s <-> %s No matching rates\n",
cb666e5b
LG
239 codec_dai->name, cpu_dai->name);
240 goto machine_err;
db2a4165
FM
241 }
242 if (!runtime->hw.formats) {
243 printk(KERN_ERR "asoc: %s <-> %s No matching formats\n",
cb666e5b
LG
244 codec_dai->name, cpu_dai->name);
245 goto machine_err;
db2a4165
FM
246 }
247 if (!runtime->hw.channels_min || !runtime->hw.channels_max) {
248 printk(KERN_ERR "asoc: %s <-> %s No matching channels\n",
cb666e5b
LG
249 codec_dai->name, cpu_dai->name);
250 goto machine_err;
db2a4165
FM
251 }
252
06f409d7
MB
253 /* 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
f24368c2
MB
260 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);
db2a4165 266
db2a4165 267 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
cb666e5b 268 cpu_dai->playback.active = codec_dai->playback.active = 1;
db2a4165 269 else
cb666e5b
LG
270 cpu_dai->capture.active = codec_dai->capture.active = 1;
271 cpu_dai->active = codec_dai->active = 1;
272 cpu_dai->runtime = runtime;
6627a653 273 card->codec->active++;
db2a4165
FM
274 mutex_unlock(&pcm_mutex);
275 return 0;
276
cb666e5b 277machine_err:
db2a4165
FM
278 if (machine->ops && machine->ops->shutdown)
279 machine->ops->shutdown(substream);
280
cb666e5b 281codec_dai_err:
db2a4165
FM
282 if (platform->pcm_ops->close)
283 platform->pcm_ops->close(substream);
284
285platform_err:
6335d055
EM
286 if (cpu_dai->ops->shutdown)
287 cpu_dai->ops->shutdown(substream, cpu_dai);
db2a4165
FM
288out:
289 mutex_unlock(&pcm_mutex);
290 return ret;
291}
292
293/*
3a4fa0a2 294 * Power down the audio subsystem pmdown_time msecs after close is called.
db2a4165
FM
295 * This is to ensure there are no pops or clicks in between any music tracks
296 * due to DAPM power cycling.
297 */
4484bb2e 298static void close_delayed_work(struct work_struct *work)
db2a4165 299{
6308419a
MB
300 struct snd_soc_card *card = container_of(work, struct snd_soc_card,
301 delayed_work.work);
6627a653 302 struct snd_soc_codec *codec = card->codec;
3c4b266f 303 struct snd_soc_dai *codec_dai;
db2a4165
FM
304 int i;
305
306 mutex_lock(&pcm_mutex);
3ff3f64b 307 for (i = 0; i < codec->num_dai; i++) {
db2a4165
FM
308 codec_dai = &codec->dai[i];
309
f24368c2
MB
310 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");
db2a4165
FM
314
315 /* are we waiting on this codec DAI stream */
316 if (codec_dai->pop_wait == 1) {
db2a4165 317 codec_dai->pop_wait = 0;
0b4d221b
LG
318 snd_soc_dapm_stream_event(codec,
319 codec_dai->playback.stream_name,
db2a4165 320 SND_SOC_DAPM_STREAM_STOP);
db2a4165
FM
321 }
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;
6308419a 335 struct snd_soc_card *card = socdev->card;
cb666e5b 336 struct snd_soc_dai_link *machine = rtd->dai;
87689d56 337 struct snd_soc_platform *platform = card->platform;
3c4b266f
LG
338 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
339 struct snd_soc_dai *codec_dai = machine->codec_dai;
6627a653 340 struct snd_soc_codec *codec = card->codec;
db2a4165
FM
341
342 mutex_lock(&pcm_mutex);
343
344 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
cb666e5b 345 cpu_dai->playback.active = codec_dai->playback.active = 0;
db2a4165 346 else
cb666e5b 347 cpu_dai->capture.active = codec_dai->capture.active = 0;
db2a4165 348
cb666e5b
LG
349 if (codec_dai->playback.active == 0 &&
350 codec_dai->capture.active == 0) {
351 cpu_dai->active = codec_dai->active = 0;
db2a4165
FM
352 }
353 codec->active--;
354
6010b2da
MB
355 /* 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
6335d055
EM
361 if (cpu_dai->ops->shutdown)
362 cpu_dai->ops->shutdown(substream, cpu_dai);
db2a4165 363
6335d055
EM
364 if (codec_dai->ops->shutdown)
365 codec_dai->ops->shutdown(substream, codec_dai);
db2a4165
FM
366
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);
cb666e5b 372 cpu_dai->runtime = NULL;
db2a4165
FM
373
374 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
375 /* start delayed pop wq here for playback streams */
cb666e5b 376 codec_dai->pop_wait = 1;
6308419a 377 schedule_delayed_work(&card->delayed_work,
db2a4165
FM
378 msecs_to_jiffies(pmdown_time));
379 } else {
380 /* capture streams can be powered down now */
cb666e5b 381 snd_soc_dapm_stream_event(codec,
0b4d221b
LG
382 codec_dai->capture.stream_name,
383 SND_SOC_DAPM_STREAM_STOP);
db2a4165
FM
384 }
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;
6308419a 399 struct snd_soc_card *card = socdev->card;
cb666e5b 400 struct snd_soc_dai_link *machine = rtd->dai;
87689d56 401 struct snd_soc_platform *platform = card->platform;
3c4b266f
LG
402 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
403 struct snd_soc_dai *codec_dai = machine->codec_dai;
6627a653 404 struct snd_soc_codec *codec = card->codec;
db2a4165
FM
405 int ret = 0;
406
407 mutex_lock(&pcm_mutex);
cb666e5b
LG
408
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
db2a4165
FM
417 if (platform->pcm_ops->prepare) {
418 ret = platform->pcm_ops->prepare(substream);
a71a468a
LG
419 if (ret < 0) {
420 printk(KERN_ERR "asoc: platform prepare error\n");
db2a4165 421 goto out;
a71a468a 422 }
db2a4165
FM
423 }
424
6335d055
EM
425 if (codec_dai->ops->prepare) {
426 ret = codec_dai->ops->prepare(substream, codec_dai);
a71a468a
LG
427 if (ret < 0) {
428 printk(KERN_ERR "asoc: codec DAI prepare error\n");
db2a4165 429 goto out;
a71a468a 430 }
db2a4165
FM
431 }
432
6335d055
EM
433 if (cpu_dai->ops->prepare) {
434 ret = cpu_dai->ops->prepare(substream, cpu_dai);
cb666e5b
LG
435 if (ret < 0) {
436 printk(KERN_ERR "asoc: cpu DAI prepare error\n");
437 goto out;
438 }
439 }
db2a4165 440
d45f6219
MB
441 /* 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;
6308419a 445 cancel_delayed_work(&card->delayed_work);
d45f6219 446 }
db2a4165 447
452c5eaa
MB
448 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);
8c6529db 456
452c5eaa 457 snd_soc_dai_digital_mute(codec_dai, 0);
db2a4165
FM
458
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;
cb666e5b 474 struct snd_soc_dai_link *machine = rtd->dai;
87689d56
MB
475 struct snd_soc_card *card = socdev->card;
476 struct snd_soc_platform *platform = card->platform;
3c4b266f
LG
477 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
478 struct snd_soc_dai *codec_dai = machine->codec_dai;
db2a4165
FM
479 int ret = 0;
480
481 mutex_lock(&pcm_mutex);
482
cb666e5b
LG
483 if (machine->ops && machine->ops->hw_params) {
484 ret = machine->ops->hw_params(substream, params);
485 if (ret < 0) {
486 printk(KERN_ERR "asoc: machine hw_params failed\n");
db2a4165 487 goto out;
cb666e5b 488 }
db2a4165
FM
489 }
490
6335d055
EM
491 if (codec_dai->ops->hw_params) {
492 ret = codec_dai->ops->hw_params(substream, params, codec_dai);
db2a4165
FM
493 if (ret < 0) {
494 printk(KERN_ERR "asoc: can't set codec %s hw params\n",
cb666e5b
LG
495 codec_dai->name);
496 goto codec_err;
db2a4165
FM
497 }
498 }
499
6335d055
EM
500 if (cpu_dai->ops->hw_params) {
501 ret = cpu_dai->ops->hw_params(substream, params, cpu_dai);
db2a4165 502 if (ret < 0) {
3ff3f64b 503 printk(KERN_ERR "asoc: interface %s hw params failed\n",
cb666e5b 504 cpu_dai->name);
db2a4165
FM
505 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) {
3ff3f64b 512 printk(KERN_ERR "asoc: platform %s hw params failed\n",
db2a4165
FM
513 platform->name);
514 goto platform_err;
515 }
516 }
517
06f409d7
MB
518 machine->rate = params_rate(params);
519
db2a4165
FM
520out:
521 mutex_unlock(&pcm_mutex);
522 return ret;
523
db2a4165 524platform_err:
6335d055
EM
525 if (cpu_dai->ops->hw_free)
526 cpu_dai->ops->hw_free(substream, cpu_dai);
db2a4165
FM
527
528interface_err:
6335d055
EM
529 if (codec_dai->ops->hw_free)
530 codec_dai->ops->hw_free(substream, codec_dai);
cb666e5b
LG
531
532codec_err:
3ff3f64b 533 if (machine->ops && machine->ops->hw_free)
cb666e5b 534 machine->ops->hw_free(substream);
db2a4165
FM
535
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;
cb666e5b 547 struct snd_soc_dai_link *machine = rtd->dai;
87689d56
MB
548 struct snd_soc_card *card = socdev->card;
549 struct snd_soc_platform *platform = card->platform;
3c4b266f
LG
550 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
551 struct snd_soc_dai *codec_dai = machine->codec_dai;
6627a653 552 struct snd_soc_codec *codec = card->codec;
db2a4165
FM
553
554 mutex_lock(&pcm_mutex);
555
556 /* apply codec digital mute */
8c6529db
LG
557 if (!codec->active)
558 snd_soc_dai_digital_mute(codec_dai, 1);
db2a4165
FM
559
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 */
6335d055
EM
569 if (codec_dai->ops->hw_free)
570 codec_dai->ops->hw_free(substream, codec_dai);
db2a4165 571
6335d055
EM
572 if (cpu_dai->ops->hw_free)
573 cpu_dai->ops->hw_free(substream, cpu_dai);
db2a4165
FM
574
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;
87689d56 583 struct snd_soc_card *card= socdev->card;
cb666e5b 584 struct snd_soc_dai_link *machine = rtd->dai;
87689d56 585 struct snd_soc_platform *platform = card->platform;
3c4b266f
LG
586 struct snd_soc_dai *cpu_dai = machine->cpu_dai;
587 struct snd_soc_dai *codec_dai = machine->codec_dai;
db2a4165
FM
588 int ret;
589
6335d055
EM
590 if (codec_dai->ops->trigger) {
591 ret = codec_dai->ops->trigger(substream, cmd, codec_dai);
db2a4165
FM
592 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
6335d055
EM
602 if (cpu_dai->ops->trigger) {
603 ret = cpu_dai->ops->trigger(substream, cmd, cpu_dai);
db2a4165
FM
604 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 */
416356fc 622static int soc_suspend(struct device *dev)
db2a4165 623{
416356fc 624 struct platform_device *pdev = to_platform_device(dev);
3ff3f64b 625 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
87506549 626 struct snd_soc_card *card = socdev->card;
87689d56 627 struct snd_soc_platform *platform = card->platform;
3ff3f64b 628 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
6627a653 629 struct snd_soc_codec *codec = card->codec;
db2a4165
FM
630 int i;
631
e3509ff0
DM
632 /* If the initialization of this soc device failed, there is no codec
633 * associated with it. Just bail out in this case.
634 */
635 if (!codec)
636 return 0;
637
6ed25978
AG
638 /* Due to the resume being scheduled into a workqueue we could
639 * suspend before that's finished - wait for it to complete.
640 */
641 snd_power_lock(codec->card);
642 snd_power_wait(codec->card, SNDRV_CTL_POWER_D0);
643 snd_power_unlock(codec->card);
644
645 /* we're going to block userspace touching us until resume completes */
646 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D3hot);
647
db2a4165 648 /* mute any active DAC's */
dee89c4d
MB
649 for (i = 0; i < card->num_links; i++) {
650 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
6335d055
EM
651 if (dai->ops->digital_mute && dai->playback.active)
652 dai->ops->digital_mute(dai, 1);
db2a4165
FM
653 }
654
4ccab3e7 655 /* suspend all pcms */
87506549
MB
656 for (i = 0; i < card->num_links; i++)
657 snd_pcm_suspend_all(card->dai_link[i].pcm);
4ccab3e7 658
87506549 659 if (card->suspend_pre)
416356fc 660 card->suspend_pre(pdev, PMSG_SUSPEND);
db2a4165 661
87506549
MB
662 for (i = 0; i < card->num_links; i++) {
663 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
3ba9e10a 664 if (cpu_dai->suspend && !cpu_dai->ac97_control)
dc7d7b83 665 cpu_dai->suspend(cpu_dai);
db2a4165 666 if (platform->suspend)
07c84d04 667 platform->suspend(cpu_dai);
db2a4165
FM
668 }
669
670 /* close any waiting streams and save state */
6308419a 671 run_delayed_work(&card->delayed_work);
0be9898a 672 codec->suspend_bias_level = codec->bias_level;
db2a4165 673
3ff3f64b 674 for (i = 0; i < codec->num_dai; i++) {
db2a4165
FM
675 char *stream = codec->dai[i].playback.stream_name;
676 if (stream != NULL)
677 snd_soc_dapm_stream_event(codec, stream,
678 SND_SOC_DAPM_STREAM_SUSPEND);
679 stream = codec->dai[i].capture.stream_name;
680 if (stream != NULL)
681 snd_soc_dapm_stream_event(codec, stream,
682 SND_SOC_DAPM_STREAM_SUSPEND);
683 }
684
685 if (codec_dev->suspend)
416356fc 686 codec_dev->suspend(pdev, PMSG_SUSPEND);
db2a4165 687
87506549
MB
688 for (i = 0; i < card->num_links; i++) {
689 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
3ba9e10a 690 if (cpu_dai->suspend && cpu_dai->ac97_control)
dc7d7b83 691 cpu_dai->suspend(cpu_dai);
db2a4165
FM
692 }
693
87506549 694 if (card->suspend_post)
416356fc 695 card->suspend_post(pdev, PMSG_SUSPEND);
db2a4165
FM
696
697 return 0;
698}
699
6ed25978
AG
700/* deferred resume work, so resume can complete before we finished
701 * setting our codec back up, which can be very slow on I2C
702 */
703static void soc_resume_deferred(struct work_struct *work)
db2a4165 704{
6308419a
MB
705 struct snd_soc_card *card = container_of(work,
706 struct snd_soc_card,
707 deferred_resume_work);
708 struct snd_soc_device *socdev = card->socdev;
87689d56 709 struct snd_soc_platform *platform = card->platform;
3ff3f64b 710 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
6627a653 711 struct snd_soc_codec *codec = card->codec;
6ed25978 712 struct platform_device *pdev = to_platform_device(socdev->dev);
db2a4165
FM
713 int i;
714
6ed25978
AG
715 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
716 * so userspace apps are blocked from touching us
717 */
718
fde22f27 719 dev_dbg(socdev->dev, "starting resume work\n");
6ed25978 720
87506549
MB
721 if (card->resume_pre)
722 card->resume_pre(pdev);
db2a4165 723
87506549
MB
724 for (i = 0; i < card->num_links; i++) {
725 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
3ba9e10a 726 if (cpu_dai->resume && cpu_dai->ac97_control)
dc7d7b83 727 cpu_dai->resume(cpu_dai);
db2a4165
FM
728 }
729
730 if (codec_dev->resume)
731 codec_dev->resume(pdev);
732
3ff3f64b
MB
733 for (i = 0; i < codec->num_dai; i++) {
734 char *stream = codec->dai[i].playback.stream_name;
db2a4165
FM
735 if (stream != NULL)
736 snd_soc_dapm_stream_event(codec, stream,
737 SND_SOC_DAPM_STREAM_RESUME);
738 stream = codec->dai[i].capture.stream_name;
739 if (stream != NULL)
740 snd_soc_dapm_stream_event(codec, stream,
741 SND_SOC_DAPM_STREAM_RESUME);
742 }
743
3ff3f64b 744 /* unmute any active DACs */
dee89c4d
MB
745 for (i = 0; i < card->num_links; i++) {
746 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
6335d055
EM
747 if (dai->ops->digital_mute && dai->playback.active)
748 dai->ops->digital_mute(dai, 0);
db2a4165
FM
749 }
750
87506549
MB
751 for (i = 0; i < card->num_links; i++) {
752 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
3ba9e10a 753 if (cpu_dai->resume && !cpu_dai->ac97_control)
dc7d7b83 754 cpu_dai->resume(cpu_dai);
db2a4165 755 if (platform->resume)
07c84d04 756 platform->resume(cpu_dai);
db2a4165
FM
757 }
758
87506549
MB
759 if (card->resume_post)
760 card->resume_post(pdev);
db2a4165 761
fde22f27 762 dev_dbg(socdev->dev, "resume work completed\n");
6ed25978
AG
763
764 /* userspace can access us now we are back as we were before */
765 snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0);
766}
767
768/* powers up audio subsystem after a suspend */
416356fc 769static int soc_resume(struct device *dev)
6ed25978 770{
416356fc 771 struct platform_device *pdev = to_platform_device(dev);
6ed25978 772 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
6308419a 773 struct snd_soc_card *card = socdev->card;
64ab9baa 774 struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai;
6ed25978 775
64ab9baa
MB
776 /* AC97 devices might have other drivers hanging off them so
777 * need to resume immediately. Other drivers don't have that
778 * problem and may take a substantial amount of time to resume
779 * due to I/O costs and anti-pop so handle them out of line.
780 */
781 if (cpu_dai->ac97_control) {
782 dev_dbg(socdev->dev, "Resuming AC97 immediately\n");
783 soc_resume_deferred(&card->deferred_resume_work);
784 } else {
785 dev_dbg(socdev->dev, "Scheduling resume work\n");
786 if (!schedule_work(&card->deferred_resume_work))
787 dev_err(socdev->dev, "resume work item may be lost\n");
788 }
6ed25978 789
db2a4165
FM
790 return 0;
791}
db2a4165
FM
792#else
793#define soc_suspend NULL
794#define soc_resume NULL
795#endif
796
02a06d30
BS
797static struct snd_soc_dai_ops null_dai_ops = {
798};
799
435c5e25 800static void snd_soc_instantiate_card(struct snd_soc_card *card)
db2a4165 801{
435c5e25
MB
802 struct platform_device *pdev = container_of(card->dev,
803 struct platform_device,
804 dev);
805 struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev;
806 struct snd_soc_platform *platform;
807 struct snd_soc_dai *dai;
6b05eda6 808 int i, found, ret, ac97;
435c5e25
MB
809
810 if (card->instantiated)
811 return;
812
813 found = 0;
814 list_for_each_entry(platform, &platform_list, list)
815 if (card->platform == platform) {
816 found = 1;
817 break;
818 }
819 if (!found) {
820 dev_dbg(card->dev, "Platform %s not registered\n",
821 card->platform->name);
822 return;
823 }
6308419a 824
6b05eda6 825 ac97 = 0;
435c5e25
MB
826 for (i = 0; i < card->num_links; i++) {
827 found = 0;
828 list_for_each_entry(dai, &dai_list, list)
829 if (card->dai_link[i].cpu_dai == dai) {
830 found = 1;
831 break;
832 }
833 if (!found) {
834 dev_dbg(card->dev, "DAI %s not registered\n",
835 card->dai_link[i].cpu_dai->name);
836 return;
837 }
6b05eda6
MB
838
839 if (card->dai_link[i].cpu_dai->ac97_control)
840 ac97 = 1;
c5af3a2e
MB
841 }
842
02a06d30
BS
843 for (i = 0; i < card->num_links; i++) {
844 if (!card->dai_link[i].codec_dai->ops)
845 card->dai_link[i].codec_dai->ops = &null_dai_ops;
846 }
847
6b05eda6
MB
848 /* If we have AC97 in the system then don't wait for the
849 * codec. This will need revisiting if we have to handle
850 * systems with mixed AC97 and non-AC97 parts. Only check for
851 * DAIs currently; we can't do this per link since some AC97
852 * codecs have non-AC97 DAIs.
853 */
854 if (!ac97)
855 for (i = 0; i < card->num_links; i++) {
856 found = 0;
857 list_for_each_entry(dai, &dai_list, list)
858 if (card->dai_link[i].codec_dai == dai) {
859 found = 1;
860 break;
861 }
862 if (!found) {
863 dev_dbg(card->dev, "DAI %s not registered\n",
864 card->dai_link[i].codec_dai->name);
865 return;
866 }
867 }
868
435c5e25
MB
869 /* Note that we do not current check for codec components */
870
871 dev_dbg(card->dev, "All components present, instantiating\n");
872
873 /* Found everything, bring it up */
87506549
MB
874 if (card->probe) {
875 ret = card->probe(pdev);
3ff3f64b 876 if (ret < 0)
435c5e25 877 return;
db2a4165
FM
878 }
879
87506549
MB
880 for (i = 0; i < card->num_links; i++) {
881 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
db2a4165 882 if (cpu_dai->probe) {
bdb92876 883 ret = cpu_dai->probe(pdev, cpu_dai);
3ff3f64b 884 if (ret < 0)
db2a4165
FM
885 goto cpu_dai_err;
886 }
887 }
888
889 if (codec_dev->probe) {
890 ret = codec_dev->probe(pdev);
3ff3f64b 891 if (ret < 0)
db2a4165
FM
892 goto cpu_dai_err;
893 }
894
895 if (platform->probe) {
896 ret = platform->probe(pdev);
3ff3f64b 897 if (ret < 0)
db2a4165
FM
898 goto platform_err;
899 }
900
901 /* DAPM stream work */
6308419a 902 INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
1301a964 903#ifdef CONFIG_PM
6ed25978 904 /* deferred resume work */
6308419a 905 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
1301a964 906#endif
6ed25978 907
435c5e25
MB
908 card->instantiated = 1;
909
910 return;
db2a4165 911
db2a4165
FM
912platform_err:
913 if (codec_dev->remove)
914 codec_dev->remove(pdev);
915
916cpu_dai_err:
18b9b3d9 917 for (i--; i >= 0; i--) {
87506549 918 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
db2a4165 919 if (cpu_dai->remove)
bdb92876 920 cpu_dai->remove(pdev, cpu_dai);
db2a4165
FM
921 }
922
87506549
MB
923 if (card->remove)
924 card->remove(pdev);
435c5e25 925}
db2a4165 926
435c5e25
MB
927/*
928 * Attempt to initialise any uninitalised cards. Must be called with
929 * client_mutex.
930 */
931static void snd_soc_instantiate_cards(void)
932{
933 struct snd_soc_card *card;
934 list_for_each_entry(card, &card_list, list)
935 snd_soc_instantiate_card(card);
936}
937
938/* probes a new socdev */
939static int soc_probe(struct platform_device *pdev)
940{
941 int ret = 0;
942 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
943 struct snd_soc_card *card = socdev->card;
944
945 /* Bodge while we push things out of socdev */
946 card->socdev = socdev;
947
948 /* Bodge while we unpick instantiation */
949 card->dev = &pdev->dev;
950 ret = snd_soc_register_card(card);
951 if (ret != 0) {
952 dev_err(&pdev->dev, "Failed to register card\n");
953 return ret;
954 }
955
956 return 0;
db2a4165
FM
957}
958
959/* removes a socdev */
960static int soc_remove(struct platform_device *pdev)
961{
962 int i;
963 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
87506549 964 struct snd_soc_card *card = socdev->card;
87689d56 965 struct snd_soc_platform *platform = card->platform;
db2a4165
FM
966 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
967
914dc182
MR
968 if (!card->instantiated)
969 return 0;
970
6308419a 971 run_delayed_work(&card->delayed_work);
965ac42c 972
db2a4165
FM
973 if (platform->remove)
974 platform->remove(pdev);
975
976 if (codec_dev->remove)
977 codec_dev->remove(pdev);
978
87506549
MB
979 for (i = 0; i < card->num_links; i++) {
980 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
db2a4165 981 if (cpu_dai->remove)
bdb92876 982 cpu_dai->remove(pdev, cpu_dai);
db2a4165
FM
983 }
984
87506549
MB
985 if (card->remove)
986 card->remove(pdev);
db2a4165 987
c5af3a2e
MB
988 snd_soc_unregister_card(card);
989
db2a4165
FM
990 return 0;
991}
992
416356fc 993static int soc_poweroff(struct device *dev)
51737470 994{
416356fc 995 struct platform_device *pdev = to_platform_device(dev);
51737470
MB
996 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
997 struct snd_soc_card *card = socdev->card;
998
999 if (!card->instantiated)
416356fc 1000 return 0;
51737470
MB
1001
1002 /* Flush out pmdown_time work - we actually do want to run it
1003 * now, we're shutting down so no imminent restart. */
1004 run_delayed_work(&card->delayed_work);
1005
1006 snd_soc_dapm_shutdown(socdev);
416356fc
MB
1007
1008 return 0;
51737470
MB
1009}
1010
416356fc
MB
1011static struct dev_pm_ops soc_pm_ops = {
1012 .suspend = soc_suspend,
1013 .resume = soc_resume,
1014 .poweroff = soc_poweroff,
1015};
1016
db2a4165
FM
1017/* ASoC platform driver */
1018static struct platform_driver soc_driver = {
1019 .driver = {
1020 .name = "soc-audio",
8b45a209 1021 .owner = THIS_MODULE,
416356fc 1022 .pm = &soc_pm_ops,
db2a4165
FM
1023 },
1024 .probe = soc_probe,
1025 .remove = soc_remove,
db2a4165
FM
1026};
1027
1028/* create a new pcm */
1029static int soc_new_pcm(struct snd_soc_device *socdev,
1030 struct snd_soc_dai_link *dai_link, int num)
1031{
87689d56 1032 struct snd_soc_card *card = socdev->card;
6627a653 1033 struct snd_soc_codec *codec = card->codec;
87689d56 1034 struct snd_soc_platform *platform = card->platform;
3c4b266f
LG
1035 struct snd_soc_dai *codec_dai = dai_link->codec_dai;
1036 struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
db2a4165
FM
1037 struct snd_soc_pcm_runtime *rtd;
1038 struct snd_pcm *pcm;
1039 char new_name[64];
1040 int ret = 0, playback = 0, capture = 0;
1041
1042 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
1043 if (rtd == NULL)
1044 return -ENOMEM;
cb666e5b
LG
1045
1046 rtd->dai = dai_link;
db2a4165 1047 rtd->socdev = socdev;
6627a653 1048 codec_dai->codec = card->codec;
db2a4165
FM
1049
1050 /* check client and interface hw capabilities */
3ba9e10a
MB
1051 sprintf(new_name, "%s %s-%d", dai_link->stream_name, codec_dai->name,
1052 num);
db2a4165
FM
1053
1054 if (codec_dai->playback.channels_min)
1055 playback = 1;
1056 if (codec_dai->capture.channels_min)
1057 capture = 1;
1058
1059 ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
1060 capture, &pcm);
1061 if (ret < 0) {
3ff3f64b
MB
1062 printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
1063 codec->name);
db2a4165
FM
1064 kfree(rtd);
1065 return ret;
1066 }
1067
4ccab3e7 1068 dai_link->pcm = pcm;
db2a4165 1069 pcm->private_data = rtd;
87689d56
MB
1070 soc_pcm_ops.mmap = platform->pcm_ops->mmap;
1071 soc_pcm_ops.pointer = platform->pcm_ops->pointer;
1072 soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
1073 soc_pcm_ops.copy = platform->pcm_ops->copy;
1074 soc_pcm_ops.silence = platform->pcm_ops->silence;
1075 soc_pcm_ops.ack = platform->pcm_ops->ack;
1076 soc_pcm_ops.page = platform->pcm_ops->page;
db2a4165
FM
1077
1078 if (playback)
1079 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
1080
1081 if (capture)
1082 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
1083
87689d56 1084 ret = platform->pcm_new(codec->card, codec_dai, pcm);
db2a4165
FM
1085 if (ret < 0) {
1086 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
1087 kfree(rtd);
1088 return ret;
1089 }
1090
87689d56 1091 pcm->private_free = platform->pcm_free;
db2a4165
FM
1092 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
1093 cpu_dai->name);
1094 return ret;
1095}
1096
096e49d5
MB
1097/**
1098 * snd_soc_codec_volatile_register: Report if a register is volatile.
1099 *
1100 * @codec: CODEC to query.
1101 * @reg: Register to query.
1102 *
1103 * Boolean function indiciating if a CODEC register is volatile.
1104 */
1105int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
1106{
1107 if (codec->volatile_register)
1108 return codec->volatile_register(reg);
1109 else
1110 return 0;
1111}
1112EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register);
1113
db2a4165 1114/* codec register dump */
6627a653 1115static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
db2a4165 1116{
db2a4165
FM
1117 int i, step = 1, count = 0;
1118
1119 if (!codec->reg_cache_size)
1120 return 0;
1121
1122 if (codec->reg_cache_step)
1123 step = codec->reg_cache_step;
1124
1125 count += sprintf(buf, "%s registers\n", codec->name);
58cd33c0 1126 for (i = 0; i < codec->reg_cache_size; i += step) {
77ee09c6
MB
1127 if (codec->readable_register && !codec->readable_register(i))
1128 continue;
1129
58cd33c0
MB
1130 count += sprintf(buf + count, "%2x: ", i);
1131 if (count >= PAGE_SIZE - 1)
1132 break;
1133
1134 if (codec->display_register)
1135 count += codec->display_register(codec, buf + count,
1136 PAGE_SIZE - count, i);
1137 else
1138 count += snprintf(buf + count, PAGE_SIZE - count,
1139 "%4x", codec->read(codec, i));
1140
1141 if (count >= PAGE_SIZE - 1)
1142 break;
1143
1144 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
1145 if (count >= PAGE_SIZE - 1)
1146 break;
1147 }
1148
1149 /* Truncate count; min() would cause a warning */
1150 if (count >= PAGE_SIZE)
1151 count = PAGE_SIZE - 1;
db2a4165
FM
1152
1153 return count;
1154}
12ef193d
TK
1155static ssize_t codec_reg_show(struct device *dev,
1156 struct device_attribute *attr, char *buf)
1157{
1158 struct snd_soc_device *devdata = dev_get_drvdata(dev);
6627a653 1159 return soc_codec_reg_show(devdata->card->codec, buf);
12ef193d
TK
1160}
1161
db2a4165
FM
1162static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
1163
12ef193d
TK
1164#ifdef CONFIG_DEBUG_FS
1165static int codec_reg_open_file(struct inode *inode, struct file *file)
1166{
1167 file->private_data = inode->i_private;
1168 return 0;
1169}
1170
1171static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
1172 size_t count, loff_t *ppos)
1173{
1174 ssize_t ret;
384c89e2 1175 struct snd_soc_codec *codec = file->private_data;
12ef193d
TK
1176 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1177 if (!buf)
1178 return -ENOMEM;
6627a653 1179 ret = soc_codec_reg_show(codec, buf);
12ef193d
TK
1180 if (ret >= 0)
1181 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1182 kfree(buf);
1183 return ret;
1184}
1185
1186static ssize_t codec_reg_write_file(struct file *file,
1187 const char __user *user_buf, size_t count, loff_t *ppos)
1188{
1189 char buf[32];
1190 int buf_size;
1191 char *start = buf;
1192 unsigned long reg, value;
1193 int step = 1;
384c89e2 1194 struct snd_soc_codec *codec = file->private_data;
12ef193d
TK
1195
1196 buf_size = min(count, (sizeof(buf)-1));
1197 if (copy_from_user(buf, user_buf, buf_size))
1198 return -EFAULT;
1199 buf[buf_size] = 0;
1200
1201 if (codec->reg_cache_step)
1202 step = codec->reg_cache_step;
1203
1204 while (*start == ' ')
1205 start++;
1206 reg = simple_strtoul(start, &start, 16);
1207 if ((reg >= codec->reg_cache_size) || (reg % step))
1208 return -EINVAL;
1209 while (*start == ' ')
1210 start++;
1211 if (strict_strtoul(start, 16, &value))
1212 return -EINVAL;
1213 codec->write(codec, reg, value);
1214 return buf_size;
1215}
1216
1217static const struct file_operations codec_reg_fops = {
1218 .open = codec_reg_open_file,
1219 .read = codec_reg_read_file,
1220 .write = codec_reg_write_file,
1221};
1222
384c89e2 1223static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
12ef193d 1224{
88439ac7
PU
1225 char codec_root[128];
1226
ce3e3737
PU
1227 if (codec->dev)
1228 snprintf(codec_root, sizeof(codec_root),
1229 "%s.%s", codec->name, dev_name(codec->dev));
1230 else
1231 snprintf(codec_root, sizeof(codec_root),
1232 "%s", codec->name);
88439ac7
PU
1233
1234 codec->debugfs_codec_root = debugfs_create_dir(codec_root,
1235 debugfs_root);
1236 if (!codec->debugfs_codec_root) {
1237 printk(KERN_WARNING
1238 "ASoC: Failed to create codec debugfs directory\n");
1239 return;
1240 }
1241
384c89e2 1242 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
88439ac7
PU
1243 codec->debugfs_codec_root,
1244 codec, &codec_reg_fops);
384c89e2
MB
1245 if (!codec->debugfs_reg)
1246 printk(KERN_WARNING
1247 "ASoC: Failed to create codec register debugfs file\n");
1248
1249 codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0744,
88439ac7 1250 codec->debugfs_codec_root,
384c89e2
MB
1251 &codec->pop_time);
1252 if (!codec->debugfs_pop_time)
1253 printk(KERN_WARNING
1254 "Failed to create pop time debugfs file\n");
79fb9387 1255
88439ac7
PU
1256 codec->debugfs_dapm = debugfs_create_dir("dapm",
1257 codec->debugfs_codec_root);
79fb9387
MB
1258 if (!codec->debugfs_dapm)
1259 printk(KERN_WARNING
1260 "Failed to create DAPM debugfs directory\n");
1261
1262 snd_soc_dapm_debugfs_init(codec);
12ef193d
TK
1263}
1264
384c89e2 1265static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
12ef193d 1266{
88439ac7 1267 debugfs_remove_recursive(codec->debugfs_codec_root);
12ef193d
TK
1268}
1269
1270#else
1271
384c89e2 1272static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
12ef193d
TK
1273{
1274}
1275
384c89e2 1276static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
12ef193d
TK
1277{
1278}
1279#endif
1280
db2a4165
FM
1281/**
1282 * snd_soc_new_ac97_codec - initailise AC97 device
1283 * @codec: audio codec
1284 * @ops: AC97 bus operations
1285 * @num: AC97 codec number
1286 *
1287 * Initialises AC97 codec resources for use by ad-hoc devices only.
1288 */
1289int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1290 struct snd_ac97_bus_ops *ops, int num)
1291{
1292 mutex_lock(&codec->mutex);
1293
1294 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1295 if (codec->ac97 == NULL) {
1296 mutex_unlock(&codec->mutex);
1297 return -ENOMEM;
1298 }
1299
1300 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1301 if (codec->ac97->bus == NULL) {
1302 kfree(codec->ac97);
1303 codec->ac97 = NULL;
1304 mutex_unlock(&codec->mutex);
1305 return -ENOMEM;
1306 }
1307
1308 codec->ac97->bus->ops = ops;
1309 codec->ac97->num = num;
1310 mutex_unlock(&codec->mutex);
1311 return 0;
1312}
1313EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1314
1315/**
1316 * snd_soc_free_ac97_codec - free AC97 codec device
1317 * @codec: audio codec
1318 *
1319 * Frees AC97 codec device resources.
1320 */
1321void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1322{
1323 mutex_lock(&codec->mutex);
1324 kfree(codec->ac97->bus);
1325 kfree(codec->ac97);
1326 codec->ac97 = NULL;
1327 mutex_unlock(&codec->mutex);
1328}
1329EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1330
1331/**
1332 * snd_soc_update_bits - update codec register bits
1333 * @codec: audio codec
1334 * @reg: codec register
1335 * @mask: register mask
1336 * @value: new value
1337 *
1338 * Writes new register value.
1339 *
1340 * Returns 1 for change else 0.
1341 */
1342int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
46f5822f 1343 unsigned int mask, unsigned int value)
db2a4165
FM
1344{
1345 int change;
46f5822f 1346 unsigned int old, new;
db2a4165 1347
db2a4165
FM
1348 old = snd_soc_read(codec, reg);
1349 new = (old & ~mask) | value;
1350 change = old != new;
1351 if (change)
1352 snd_soc_write(codec, reg, new);
1353
db2a4165
FM
1354 return change;
1355}
1356EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1357
1358/**
1359 * snd_soc_test_bits - test register for change
1360 * @codec: audio codec
1361 * @reg: codec register
1362 * @mask: register mask
1363 * @value: new value
1364 *
1365 * Tests a register with a new value and checks if the new value is
1366 * different from the old value.
1367 *
1368 * Returns 1 for change else 0.
1369 */
1370int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
46f5822f 1371 unsigned int mask, unsigned int value)
db2a4165
FM
1372{
1373 int change;
46f5822f 1374 unsigned int old, new;
db2a4165 1375
db2a4165
FM
1376 old = snd_soc_read(codec, reg);
1377 new = (old & ~mask) | value;
1378 change = old != new;
db2a4165
FM
1379
1380 return change;
1381}
1382EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1383
db2a4165
FM
1384/**
1385 * snd_soc_new_pcms - create new sound card and pcms
1386 * @socdev: the SoC audio device
ac11a2b3
MB
1387 * @idx: ALSA card index
1388 * @xid: card identification
db2a4165
FM
1389 *
1390 * Create a new sound card based upon the codec and interface pcms.
1391 *
1392 * Returns 0 for success, else error.
1393 */
bc7320c5 1394int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
db2a4165 1395{
87506549 1396 struct snd_soc_card *card = socdev->card;
6627a653 1397 struct snd_soc_codec *codec = card->codec;
bd7dd77c 1398 int ret, i;
db2a4165
FM
1399
1400 mutex_lock(&codec->mutex);
1401
1402 /* register a sound card */
bd7dd77c
TI
1403 ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
1404 if (ret < 0) {
db2a4165
FM
1405 printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
1406 codec->name);
1407 mutex_unlock(&codec->mutex);
bd7dd77c 1408 return ret;
db2a4165
FM
1409 }
1410
452c5eaa 1411 codec->socdev = socdev;
db2a4165
FM
1412 codec->card->dev = socdev->dev;
1413 codec->card->private_data = codec;
1414 strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
1415
1416 /* create the pcms */
87506549
MB
1417 for (i = 0; i < card->num_links; i++) {
1418 ret = soc_new_pcm(socdev, &card->dai_link[i], i);
db2a4165
FM
1419 if (ret < 0) {
1420 printk(KERN_ERR "asoc: can't create pcm %s\n",
87506549 1421 card->dai_link[i].stream_name);
db2a4165
FM
1422 mutex_unlock(&codec->mutex);
1423 return ret;
1424 }
1425 }
1426
1427 mutex_unlock(&codec->mutex);
1428 return ret;
1429}
1430EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
1431
1432/**
968a6025 1433 * snd_soc_init_card - register sound card
db2a4165
FM
1434 * @socdev: the SoC audio device
1435 *
1436 * Register a SoC sound card. Also registers an AC97 device if the
1437 * codec is AC97 for ad hoc devices.
1438 *
1439 * Returns 0 for success, else error.
1440 */
968a6025 1441int snd_soc_init_card(struct snd_soc_device *socdev)
db2a4165 1442{
87506549 1443 struct snd_soc_card *card = socdev->card;
6627a653 1444 struct snd_soc_codec *codec = card->codec;
12e74f7d 1445 int ret = 0, i, ac97 = 0, err = 0;
db2a4165 1446
87506549
MB
1447 for (i = 0; i < card->num_links; i++) {
1448 if (card->dai_link[i].init) {
1449 err = card->dai_link[i].init(codec);
12e74f7d
LG
1450 if (err < 0) {
1451 printk(KERN_ERR "asoc: failed to init %s\n",
87506549 1452 card->dai_link[i].stream_name);
12e74f7d
LG
1453 continue;
1454 }
1455 }
474828a4 1456 if (card->dai_link[i].codec_dai->ac97_control) {
db2a4165 1457 ac97 = 1;
474828a4
MV
1458 snd_ac97_dev_add_pdata(codec->ac97,
1459 card->dai_link[i].cpu_dai->ac97_pdata);
1460 }
db2a4165
FM
1461 }
1462 snprintf(codec->card->shortname, sizeof(codec->card->shortname),
87506549 1463 "%s", card->name);
db2a4165 1464 snprintf(codec->card->longname, sizeof(codec->card->longname),
87506549 1465 "%s (%s)", card->name, codec->name);
db2a4165 1466
6d5701b2
MB
1467 /* Make sure all DAPM widgets are instantiated */
1468 snd_soc_dapm_new_widgets(codec);
1469
db2a4165
FM
1470 ret = snd_card_register(codec->card);
1471 if (ret < 0) {
3ff3f64b 1472 printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
db2a4165 1473 codec->name);
12e74f7d 1474 goto out;
db2a4165
FM
1475 }
1476
08c8efe6 1477 mutex_lock(&codec->mutex);
db2a4165 1478#ifdef CONFIG_SND_SOC_AC97_BUS
14fa43f5
MB
1479 /* Only instantiate AC97 if not already done by the adaptor
1480 * for the generic AC97 subsystem.
1481 */
1482 if (ac97 && strcmp(codec->name, "AC97") != 0) {
12e74f7d
LG
1483 ret = soc_ac97_dev_register(codec);
1484 if (ret < 0) {
1485 printk(KERN_ERR "asoc: AC97 device register failed\n");
1486 snd_card_free(codec->card);
08c8efe6 1487 mutex_unlock(&codec->mutex);
12e74f7d
LG
1488 goto out;
1489 }
1490 }
db2a4165
FM
1491#endif
1492
12e74f7d
LG
1493 err = snd_soc_dapm_sys_add(socdev->dev);
1494 if (err < 0)
1495 printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
1496
1497 err = device_create_file(socdev->dev, &dev_attr_codec_reg);
1498 if (err < 0)
3ff3f64b 1499 printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
08c8efe6 1500
6627a653 1501 soc_init_codec_debugfs(codec);
db2a4165 1502 mutex_unlock(&codec->mutex);
08c8efe6
MB
1503
1504out:
db2a4165
FM
1505 return ret;
1506}
968a6025 1507EXPORT_SYMBOL_GPL(snd_soc_init_card);
db2a4165
FM
1508
1509/**
1510 * snd_soc_free_pcms - free sound card and pcms
1511 * @socdev: the SoC audio device
1512 *
1513 * Frees sound card and pcms associated with the socdev.
1514 * Also unregister the codec if it is an AC97 device.
1515 */
1516void snd_soc_free_pcms(struct snd_soc_device *socdev)
1517{
6627a653 1518 struct snd_soc_codec *codec = socdev->card->codec;
a68660e0 1519#ifdef CONFIG_SND_SOC_AC97_BUS
3c4b266f 1520 struct snd_soc_dai *codec_dai;
a68660e0
LG
1521 int i;
1522#endif
db2a4165
FM
1523
1524 mutex_lock(&codec->mutex);
6627a653 1525 soc_cleanup_codec_debugfs(codec);
db2a4165 1526#ifdef CONFIG_SND_SOC_AC97_BUS
3ff3f64b 1527 for (i = 0; i < codec->num_dai; i++) {
a68660e0 1528 codec_dai = &codec->dai[i];
d2314e0e
AN
1529 if (codec_dai->ac97_control && codec->ac97 &&
1530 strcmp(codec->name, "AC97") != 0) {
a68660e0
LG
1531 soc_ac97_dev_unregister(codec);
1532 goto free_card;
1533 }
1534 }
1535free_card:
db2a4165
FM
1536#endif
1537
1538 if (codec->card)
1539 snd_card_free(codec->card);
1540 device_remove_file(socdev->dev, &dev_attr_codec_reg);
1541 mutex_unlock(&codec->mutex);
1542}
1543EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
1544
1545/**
1546 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1547 * @substream: the pcm substream
1548 * @hw: the hardware parameters
1549 *
1550 * Sets the substream runtime hardware parameters.
1551 */
1552int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1553 const struct snd_pcm_hardware *hw)
1554{
1555 struct snd_pcm_runtime *runtime = substream->runtime;
1556 runtime->hw.info = hw->info;
1557 runtime->hw.formats = hw->formats;
1558 runtime->hw.period_bytes_min = hw->period_bytes_min;
1559 runtime->hw.period_bytes_max = hw->period_bytes_max;
1560 runtime->hw.periods_min = hw->periods_min;
1561 runtime->hw.periods_max = hw->periods_max;
1562 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1563 runtime->hw.fifo_size = hw->fifo_size;
1564 return 0;
1565}
1566EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1567
1568/**
1569 * snd_soc_cnew - create new control
1570 * @_template: control template
1571 * @data: control private data
ac11a2b3 1572 * @long_name: control long name
db2a4165
FM
1573 *
1574 * Create a new mixer control from a template control.
1575 *
1576 * Returns 0 for success, else error.
1577 */
1578struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
1579 void *data, char *long_name)
1580{
1581 struct snd_kcontrol_new template;
1582
1583 memcpy(&template, _template, sizeof(template));
1584 if (long_name)
1585 template.name = long_name;
db2a4165
FM
1586 template.index = 0;
1587
1588 return snd_ctl_new1(&template, data);
1589}
1590EXPORT_SYMBOL_GPL(snd_soc_cnew);
1591
3e8e1952
IM
1592/**
1593 * snd_soc_add_controls - add an array of controls to a codec.
1594 * Convienience function to add a list of controls. Many codecs were
1595 * duplicating this code.
1596 *
1597 * @codec: codec to add controls to
1598 * @controls: array of controls to add
1599 * @num_controls: number of elements in the array
1600 *
1601 * Return 0 for success, else error.
1602 */
1603int snd_soc_add_controls(struct snd_soc_codec *codec,
1604 const struct snd_kcontrol_new *controls, int num_controls)
1605{
1606 struct snd_card *card = codec->card;
1607 int err, i;
1608
1609 for (i = 0; i < num_controls; i++) {
1610 const struct snd_kcontrol_new *control = &controls[i];
1611 err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
1612 if (err < 0) {
1613 dev_err(codec->dev, "%s: Failed to add %s\n",
1614 codec->name, control->name);
1615 return err;
1616 }
1617 }
1618
1619 return 0;
1620}
1621EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1622
db2a4165
FM
1623/**
1624 * snd_soc_info_enum_double - enumerated double mixer info callback
1625 * @kcontrol: mixer control
1626 * @uinfo: control element information
1627 *
1628 * Callback to provide information about a double enumerated
1629 * mixer control.
1630 *
1631 * Returns 0 for success.
1632 */
1633int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
1634 struct snd_ctl_elem_info *uinfo)
1635{
1636 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1637
1638 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1639 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
f8ba0b7b 1640 uinfo->value.enumerated.items = e->max;
db2a4165 1641
f8ba0b7b
JS
1642 if (uinfo->value.enumerated.item > e->max - 1)
1643 uinfo->value.enumerated.item = e->max - 1;
db2a4165
FM
1644 strcpy(uinfo->value.enumerated.name,
1645 e->texts[uinfo->value.enumerated.item]);
1646 return 0;
1647}
1648EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
1649
1650/**
1651 * snd_soc_get_enum_double - enumerated double mixer get callback
1652 * @kcontrol: mixer control
ac11a2b3 1653 * @ucontrol: control element information
db2a4165
FM
1654 *
1655 * Callback to get the value of a double enumerated mixer.
1656 *
1657 * Returns 0 for success.
1658 */
1659int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
1660 struct snd_ctl_elem_value *ucontrol)
1661{
1662 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1663 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
46f5822f 1664 unsigned int val, bitmask;
db2a4165 1665
f8ba0b7b 1666 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
db2a4165
FM
1667 ;
1668 val = snd_soc_read(codec, e->reg);
3ff3f64b
MB
1669 ucontrol->value.enumerated.item[0]
1670 = (val >> e->shift_l) & (bitmask - 1);
db2a4165
FM
1671 if (e->shift_l != e->shift_r)
1672 ucontrol->value.enumerated.item[1] =
1673 (val >> e->shift_r) & (bitmask - 1);
1674
1675 return 0;
1676}
1677EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
1678
1679/**
1680 * snd_soc_put_enum_double - enumerated double mixer put callback
1681 * @kcontrol: mixer control
ac11a2b3 1682 * @ucontrol: control element information
db2a4165
FM
1683 *
1684 * Callback to set the value of a double enumerated mixer.
1685 *
1686 * Returns 0 for success.
1687 */
1688int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
1689 struct snd_ctl_elem_value *ucontrol)
1690{
1691 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1692 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
46f5822f
DR
1693 unsigned int val;
1694 unsigned int mask, bitmask;
db2a4165 1695
f8ba0b7b 1696 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
db2a4165 1697 ;
f8ba0b7b 1698 if (ucontrol->value.enumerated.item[0] > e->max - 1)
db2a4165
FM
1699 return -EINVAL;
1700 val = ucontrol->value.enumerated.item[0] << e->shift_l;
1701 mask = (bitmask - 1) << e->shift_l;
1702 if (e->shift_l != e->shift_r) {
f8ba0b7b 1703 if (ucontrol->value.enumerated.item[1] > e->max - 1)
db2a4165
FM
1704 return -EINVAL;
1705 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1706 mask |= (bitmask - 1) << e->shift_r;
1707 }
1708
1709 return snd_soc_update_bits(codec, e->reg, mask, val);
1710}
1711EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
1712
2e72f8e3
PU
1713/**
1714 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1715 * @kcontrol: mixer control
1716 * @ucontrol: control element information
1717 *
1718 * Callback to get 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_get_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);
74155556 1729 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
46f5822f 1730 unsigned int reg_val, val, mux;
2e72f8e3
PU
1731
1732 reg_val = snd_soc_read(codec, e->reg);
1733 val = (reg_val >> e->shift_l) & e->mask;
1734 for (mux = 0; mux < e->max; mux++) {
1735 if (val == e->values[mux])
1736 break;
1737 }
1738 ucontrol->value.enumerated.item[0] = mux;
1739 if (e->shift_l != e->shift_r) {
1740 val = (reg_val >> e->shift_r) & e->mask;
1741 for (mux = 0; mux < e->max; mux++) {
1742 if (val == e->values[mux])
1743 break;
1744 }
1745 ucontrol->value.enumerated.item[1] = mux;
1746 }
1747
1748 return 0;
1749}
1750EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
1751
1752/**
1753 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1754 * @kcontrol: mixer control
1755 * @ucontrol: control element information
1756 *
1757 * Callback to set the value of a double semi enumerated mixer.
1758 *
1759 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1760 * used for handling bitfield coded enumeration for example.
1761 *
1762 * Returns 0 for success.
1763 */
1764int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
1765 struct snd_ctl_elem_value *ucontrol)
1766{
1767 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
74155556 1768 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
46f5822f
DR
1769 unsigned int val;
1770 unsigned int mask;
2e72f8e3
PU
1771
1772 if (ucontrol->value.enumerated.item[0] > e->max - 1)
1773 return -EINVAL;
1774 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1775 mask = e->mask << e->shift_l;
1776 if (e->shift_l != e->shift_r) {
1777 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1778 return -EINVAL;
1779 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1780 mask |= e->mask << e->shift_r;
1781 }
1782
1783 return snd_soc_update_bits(codec, e->reg, mask, val);
1784}
1785EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
1786
db2a4165
FM
1787/**
1788 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1789 * @kcontrol: mixer control
1790 * @uinfo: control element information
1791 *
1792 * Callback to provide information about an external enumerated
1793 * single mixer.
1794 *
1795 * Returns 0 for success.
1796 */
1797int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
1798 struct snd_ctl_elem_info *uinfo)
1799{
1800 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1801
1802 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1803 uinfo->count = 1;
f8ba0b7b 1804 uinfo->value.enumerated.items = e->max;
db2a4165 1805
f8ba0b7b
JS
1806 if (uinfo->value.enumerated.item > e->max - 1)
1807 uinfo->value.enumerated.item = e->max - 1;
db2a4165
FM
1808 strcpy(uinfo->value.enumerated.name,
1809 e->texts[uinfo->value.enumerated.item]);
1810 return 0;
1811}
1812EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
1813
1814/**
1815 * snd_soc_info_volsw_ext - external single mixer info callback
1816 * @kcontrol: mixer control
1817 * @uinfo: control element information
1818 *
1819 * Callback to provide information about a single external mixer control.
1820 *
1821 * Returns 0 for success.
1822 */
1823int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
1824 struct snd_ctl_elem_info *uinfo)
1825{
a7a4ac86
PZ
1826 int max = kcontrol->private_value;
1827
fd5dfad9 1828 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
a7a4ac86
PZ
1829 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1830 else
1831 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
db2a4165 1832
db2a4165
FM
1833 uinfo->count = 1;
1834 uinfo->value.integer.min = 0;
a7a4ac86 1835 uinfo->value.integer.max = max;
db2a4165
FM
1836 return 0;
1837}
1838EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
1839
db2a4165
FM
1840/**
1841 * snd_soc_info_volsw - single mixer info callback
1842 * @kcontrol: mixer control
1843 * @uinfo: control element information
1844 *
1845 * Callback to provide information about a single mixer control.
1846 *
1847 * Returns 0 for success.
1848 */
1849int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
1850 struct snd_ctl_elem_info *uinfo)
1851{
4eaa9819
JS
1852 struct soc_mixer_control *mc =
1853 (struct soc_mixer_control *)kcontrol->private_value;
1854 int max = mc->max;
762b8df7 1855 unsigned int shift = mc->shift;
815ecf8d 1856 unsigned int rshift = mc->rshift;
db2a4165 1857
fd5dfad9 1858 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
a7a4ac86
PZ
1859 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1860 else
1861 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1862
db2a4165
FM
1863 uinfo->count = shift == rshift ? 1 : 2;
1864 uinfo->value.integer.min = 0;
a7a4ac86 1865 uinfo->value.integer.max = max;
db2a4165
FM
1866 return 0;
1867}
1868EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
1869
1870/**
1871 * snd_soc_get_volsw - single mixer get callback
1872 * @kcontrol: mixer control
ac11a2b3 1873 * @ucontrol: control element information
db2a4165
FM
1874 *
1875 * Callback to get the value of a single mixer control.
1876 *
1877 * Returns 0 for success.
1878 */
1879int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
1880 struct snd_ctl_elem_value *ucontrol)
1881{
4eaa9819
JS
1882 struct soc_mixer_control *mc =
1883 (struct soc_mixer_control *)kcontrol->private_value;
db2a4165 1884 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d
JS
1885 unsigned int reg = mc->reg;
1886 unsigned int shift = mc->shift;
1887 unsigned int rshift = mc->rshift;
4eaa9819 1888 int max = mc->max;
815ecf8d
JS
1889 unsigned int mask = (1 << fls(max)) - 1;
1890 unsigned int invert = mc->invert;
db2a4165
FM
1891
1892 ucontrol->value.integer.value[0] =
1893 (snd_soc_read(codec, reg) >> shift) & mask;
1894 if (shift != rshift)
1895 ucontrol->value.integer.value[1] =
1896 (snd_soc_read(codec, reg) >> rshift) & mask;
1897 if (invert) {
1898 ucontrol->value.integer.value[0] =
a7a4ac86 1899 max - ucontrol->value.integer.value[0];
db2a4165
FM
1900 if (shift != rshift)
1901 ucontrol->value.integer.value[1] =
a7a4ac86 1902 max - ucontrol->value.integer.value[1];
db2a4165
FM
1903 }
1904
1905 return 0;
1906}
1907EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
1908
1909/**
1910 * snd_soc_put_volsw - single mixer put callback
1911 * @kcontrol: mixer control
ac11a2b3 1912 * @ucontrol: control element information
db2a4165
FM
1913 *
1914 * Callback to set the value of a single mixer control.
1915 *
1916 * Returns 0 for success.
1917 */
1918int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
1919 struct snd_ctl_elem_value *ucontrol)
1920{
4eaa9819
JS
1921 struct soc_mixer_control *mc =
1922 (struct soc_mixer_control *)kcontrol->private_value;
db2a4165 1923 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d
JS
1924 unsigned int reg = mc->reg;
1925 unsigned int shift = mc->shift;
1926 unsigned int rshift = mc->rshift;
4eaa9819 1927 int max = mc->max;
815ecf8d
JS
1928 unsigned int mask = (1 << fls(max)) - 1;
1929 unsigned int invert = mc->invert;
46f5822f 1930 unsigned int val, val2, val_mask;
db2a4165
FM
1931
1932 val = (ucontrol->value.integer.value[0] & mask);
1933 if (invert)
a7a4ac86 1934 val = max - val;
db2a4165
FM
1935 val_mask = mask << shift;
1936 val = val << shift;
1937 if (shift != rshift) {
1938 val2 = (ucontrol->value.integer.value[1] & mask);
1939 if (invert)
a7a4ac86 1940 val2 = max - val2;
db2a4165
FM
1941 val_mask |= mask << rshift;
1942 val |= val2 << rshift;
1943 }
a7a4ac86 1944 return snd_soc_update_bits(codec, reg, val_mask, val);
db2a4165
FM
1945}
1946EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
1947
1948/**
1949 * snd_soc_info_volsw_2r - double mixer info callback
1950 * @kcontrol: mixer control
1951 * @uinfo: control element information
1952 *
1953 * Callback to provide information about a double mixer control that
1954 * spans 2 codec registers.
1955 *
1956 * Returns 0 for success.
1957 */
1958int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
1959 struct snd_ctl_elem_info *uinfo)
1960{
4eaa9819
JS
1961 struct soc_mixer_control *mc =
1962 (struct soc_mixer_control *)kcontrol->private_value;
1963 int max = mc->max;
a7a4ac86 1964
fd5dfad9 1965 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
a7a4ac86
PZ
1966 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1967 else
1968 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
db2a4165 1969
db2a4165
FM
1970 uinfo->count = 2;
1971 uinfo->value.integer.min = 0;
a7a4ac86 1972 uinfo->value.integer.max = max;
db2a4165
FM
1973 return 0;
1974}
1975EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
1976
1977/**
1978 * snd_soc_get_volsw_2r - double mixer get callback
1979 * @kcontrol: mixer control
ac11a2b3 1980 * @ucontrol: control element information
db2a4165
FM
1981 *
1982 * Callback to get the value of a double mixer control that spans 2 registers.
1983 *
1984 * Returns 0 for success.
1985 */
1986int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
1987 struct snd_ctl_elem_value *ucontrol)
1988{
4eaa9819
JS
1989 struct soc_mixer_control *mc =
1990 (struct soc_mixer_control *)kcontrol->private_value;
db2a4165 1991 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d
JS
1992 unsigned int reg = mc->reg;
1993 unsigned int reg2 = mc->rreg;
1994 unsigned int shift = mc->shift;
4eaa9819 1995 int max = mc->max;
46f5822f 1996 unsigned int mask = (1 << fls(max)) - 1;
815ecf8d 1997 unsigned int invert = mc->invert;
db2a4165
FM
1998
1999 ucontrol->value.integer.value[0] =
2000 (snd_soc_read(codec, reg) >> shift) & mask;
2001 ucontrol->value.integer.value[1] =
2002 (snd_soc_read(codec, reg2) >> shift) & mask;
2003 if (invert) {
2004 ucontrol->value.integer.value[0] =
a7a4ac86 2005 max - ucontrol->value.integer.value[0];
db2a4165 2006 ucontrol->value.integer.value[1] =
a7a4ac86 2007 max - ucontrol->value.integer.value[1];
db2a4165
FM
2008 }
2009
2010 return 0;
2011}
2012EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
2013
2014/**
2015 * snd_soc_put_volsw_2r - double mixer set callback
2016 * @kcontrol: mixer control
ac11a2b3 2017 * @ucontrol: control element information
db2a4165
FM
2018 *
2019 * Callback to set the value of a double mixer control that spans 2 registers.
2020 *
2021 * Returns 0 for success.
2022 */
2023int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2024 struct snd_ctl_elem_value *ucontrol)
2025{
4eaa9819
JS
2026 struct soc_mixer_control *mc =
2027 (struct soc_mixer_control *)kcontrol->private_value;
db2a4165 2028 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d
JS
2029 unsigned int reg = mc->reg;
2030 unsigned int reg2 = mc->rreg;
2031 unsigned int shift = mc->shift;
4eaa9819 2032 int max = mc->max;
815ecf8d
JS
2033 unsigned int mask = (1 << fls(max)) - 1;
2034 unsigned int invert = mc->invert;
db2a4165 2035 int err;
46f5822f 2036 unsigned int val, val2, val_mask;
db2a4165
FM
2037
2038 val_mask = mask << shift;
2039 val = (ucontrol->value.integer.value[0] & mask);
2040 val2 = (ucontrol->value.integer.value[1] & mask);
2041
2042 if (invert) {
a7a4ac86
PZ
2043 val = max - val;
2044 val2 = max - val2;
db2a4165
FM
2045 }
2046
2047 val = val << shift;
2048 val2 = val2 << shift;
2049
3ff3f64b
MB
2050 err = snd_soc_update_bits(codec, reg, val_mask, val);
2051 if (err < 0)
db2a4165
FM
2052 return err;
2053
2054 err = snd_soc_update_bits(codec, reg2, val_mask, val2);
2055 return err;
2056}
2057EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2058
e13ac2e9
MB
2059/**
2060 * snd_soc_info_volsw_s8 - signed mixer info callback
2061 * @kcontrol: mixer control
2062 * @uinfo: control element information
2063 *
2064 * Callback to provide information about a signed mixer control.
2065 *
2066 * Returns 0 for success.
2067 */
2068int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2069 struct snd_ctl_elem_info *uinfo)
2070{
4eaa9819
JS
2071 struct soc_mixer_control *mc =
2072 (struct soc_mixer_control *)kcontrol->private_value;
2073 int max = mc->max;
2074 int min = mc->min;
e13ac2e9
MB
2075
2076 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2077 uinfo->count = 2;
2078 uinfo->value.integer.min = 0;
2079 uinfo->value.integer.max = max-min;
2080 return 0;
2081}
2082EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2083
2084/**
2085 * snd_soc_get_volsw_s8 - signed mixer get callback
2086 * @kcontrol: mixer control
ac11a2b3 2087 * @ucontrol: control element information
e13ac2e9
MB
2088 *
2089 * Callback to get the value of a signed mixer control.
2090 *
2091 * Returns 0 for success.
2092 */
2093int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2094 struct snd_ctl_elem_value *ucontrol)
2095{
4eaa9819
JS
2096 struct soc_mixer_control *mc =
2097 (struct soc_mixer_control *)kcontrol->private_value;
e13ac2e9 2098 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d 2099 unsigned int reg = mc->reg;
4eaa9819 2100 int min = mc->min;
e13ac2e9
MB
2101 int val = snd_soc_read(codec, reg);
2102
2103 ucontrol->value.integer.value[0] =
2104 ((signed char)(val & 0xff))-min;
2105 ucontrol->value.integer.value[1] =
2106 ((signed char)((val >> 8) & 0xff))-min;
2107 return 0;
2108}
2109EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2110
2111/**
2112 * snd_soc_put_volsw_sgn - signed mixer put callback
2113 * @kcontrol: mixer control
ac11a2b3 2114 * @ucontrol: control element information
e13ac2e9
MB
2115 *
2116 * Callback to set the value of a signed mixer control.
2117 *
2118 * Returns 0 for success.
2119 */
2120int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2121 struct snd_ctl_elem_value *ucontrol)
2122{
4eaa9819
JS
2123 struct soc_mixer_control *mc =
2124 (struct soc_mixer_control *)kcontrol->private_value;
e13ac2e9 2125 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d 2126 unsigned int reg = mc->reg;
4eaa9819 2127 int min = mc->min;
46f5822f 2128 unsigned int val;
e13ac2e9
MB
2129
2130 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2131 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2132
2133 return snd_soc_update_bits(codec, reg, 0xffff, val);
2134}
2135EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2136
8c6529db
LG
2137/**
2138 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2139 * @dai: DAI
2140 * @clk_id: DAI specific clock ID
2141 * @freq: new clock frequency in Hz
2142 * @dir: new clock direction - input/output.
2143 *
2144 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2145 */
2146int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2147 unsigned int freq, int dir)
2148{
3f1a4d82 2149 if (dai->ops && dai->ops->set_sysclk)
6335d055 2150 return dai->ops->set_sysclk(dai, clk_id, freq, dir);
8c6529db
LG
2151 else
2152 return -EINVAL;
2153}
2154EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2155
2156/**
2157 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2158 * @dai: DAI
ac11a2b3 2159 * @div_id: DAI specific clock divider ID
8c6529db
LG
2160 * @div: new clock divisor.
2161 *
2162 * Configures the clock dividers. This is used to derive the best DAI bit and
2163 * frame clocks from the system or master clock. It's best to set the DAI bit
2164 * and frame clocks as low as possible to save system power.
2165 */
2166int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2167 int div_id, int div)
2168{
3f1a4d82 2169 if (dai->ops && dai->ops->set_clkdiv)
6335d055 2170 return dai->ops->set_clkdiv(dai, div_id, div);
8c6529db
LG
2171 else
2172 return -EINVAL;
2173}
2174EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2175
2176/**
2177 * snd_soc_dai_set_pll - configure DAI PLL.
2178 * @dai: DAI
2179 * @pll_id: DAI specific PLL ID
85488037 2180 * @source: DAI specific source for the PLL
8c6529db
LG
2181 * @freq_in: PLL input clock frequency in Hz
2182 * @freq_out: requested PLL output clock frequency in Hz
2183 *
2184 * Configures and enables PLL to generate output clock based on input clock.
2185 */
85488037
MB
2186int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source,
2187 unsigned int freq_in, unsigned int freq_out)
8c6529db 2188{
3f1a4d82 2189 if (dai->ops && dai->ops->set_pll)
85488037
MB
2190 return dai->ops->set_pll(dai, pll_id, source,
2191 freq_in, freq_out);
8c6529db
LG
2192 else
2193 return -EINVAL;
2194}
2195EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2196
2197/**
2198 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2199 * @dai: DAI
8c6529db
LG
2200 * @fmt: SND_SOC_DAIFMT_ format value.
2201 *
2202 * Configures the DAI hardware format and clocking.
2203 */
2204int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2205{
3f1a4d82 2206 if (dai->ops && dai->ops->set_fmt)
6335d055 2207 return dai->ops->set_fmt(dai, fmt);
8c6529db
LG
2208 else
2209 return -EINVAL;
2210}
2211EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2212
2213/**
2214 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2215 * @dai: DAI
a5479e38
DR
2216 * @tx_mask: bitmask representing active TX slots.
2217 * @rx_mask: bitmask representing active RX slots.
8c6529db 2218 * @slots: Number of slots in use.
a5479e38 2219 * @slot_width: Width in bits for each slot.
8c6529db
LG
2220 *
2221 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2222 * specific.
2223 */
2224int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
a5479e38 2225 unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width)
8c6529db 2226{
3f1a4d82 2227 if (dai->ops && dai->ops->set_tdm_slot)
a5479e38
DR
2228 return dai->ops->set_tdm_slot(dai, tx_mask, rx_mask,
2229 slots, slot_width);
8c6529db
LG
2230 else
2231 return -EINVAL;
2232}
2233EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2234
472df3cb
BS
2235/**
2236 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2237 * @dai: DAI
2238 * @tx_num: how many TX channels
2239 * @tx_slot: pointer to an array which imply the TX slot number channel
2240 * 0~num-1 uses
2241 * @rx_num: how many RX channels
2242 * @rx_slot: pointer to an array which imply the RX slot number channel
2243 * 0~num-1 uses
2244 *
2245 * configure the relationship between channel number and TDM slot number.
2246 */
2247int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai,
2248 unsigned int tx_num, unsigned int *tx_slot,
2249 unsigned int rx_num, unsigned int *rx_slot)
2250{
2251 if (dai->ops && dai->ops->set_channel_map)
2252 return dai->ops->set_channel_map(dai, tx_num, tx_slot,
2253 rx_num, rx_slot);
2254 else
2255 return -EINVAL;
2256}
2257EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map);
2258
8c6529db
LG
2259/**
2260 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2261 * @dai: DAI
2262 * @tristate: tristate enable
2263 *
2264 * Tristates the DAI so that others can use it.
2265 */
2266int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2267{
3f1a4d82 2268 if (dai->ops && dai->ops->set_tristate)
6335d055 2269 return dai->ops->set_tristate(dai, tristate);
8c6529db
LG
2270 else
2271 return -EINVAL;
2272}
2273EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2274
2275/**
2276 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2277 * @dai: DAI
2278 * @mute: mute enable
2279 *
2280 * Mutes the DAI DAC.
2281 */
2282int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2283{
3f1a4d82 2284 if (dai->ops && dai->ops->digital_mute)
6335d055 2285 return dai->ops->digital_mute(dai, mute);
8c6529db
LG
2286 else
2287 return -EINVAL;
2288}
2289EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2290
c5af3a2e
MB
2291/**
2292 * snd_soc_register_card - Register a card with the ASoC core
2293 *
ac11a2b3 2294 * @card: Card to register
c5af3a2e
MB
2295 *
2296 * Note that currently this is an internal only function: it will be
2297 * exposed to machine drivers after further backporting of ASoC v2
2298 * registration APIs.
2299 */
2300static int snd_soc_register_card(struct snd_soc_card *card)
2301{
2302 if (!card->name || !card->dev)
2303 return -EINVAL;
2304
2305 INIT_LIST_HEAD(&card->list);
2306 card->instantiated = 0;
2307
2308 mutex_lock(&client_mutex);
2309 list_add(&card->list, &card_list);
435c5e25 2310 snd_soc_instantiate_cards();
c5af3a2e
MB
2311 mutex_unlock(&client_mutex);
2312
2313 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2314
2315 return 0;
2316}
2317
2318/**
2319 * snd_soc_unregister_card - Unregister a card with the ASoC core
2320 *
ac11a2b3 2321 * @card: Card to unregister
c5af3a2e
MB
2322 *
2323 * Note that currently this is an internal only function: it will be
2324 * exposed to machine drivers after further backporting of ASoC v2
2325 * registration APIs.
2326 */
2327static int snd_soc_unregister_card(struct snd_soc_card *card)
2328{
2329 mutex_lock(&client_mutex);
2330 list_del(&card->list);
2331 mutex_unlock(&client_mutex);
2332
2333 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2334
2335 return 0;
2336}
2337
9115171a
MB
2338/**
2339 * snd_soc_register_dai - Register a DAI with the ASoC core
2340 *
ac11a2b3 2341 * @dai: DAI to register
9115171a
MB
2342 */
2343int snd_soc_register_dai(struct snd_soc_dai *dai)
2344{
2345 if (!dai->name)
2346 return -EINVAL;
2347
2348 /* The device should become mandatory over time */
2349 if (!dai->dev)
2350 printk(KERN_WARNING "No device for DAI %s\n", dai->name);
2351
6335d055
EM
2352 if (!dai->ops)
2353 dai->ops = &null_dai_ops;
2354
9115171a
MB
2355 INIT_LIST_HEAD(&dai->list);
2356
2357 mutex_lock(&client_mutex);
2358 list_add(&dai->list, &dai_list);
435c5e25 2359 snd_soc_instantiate_cards();
9115171a
MB
2360 mutex_unlock(&client_mutex);
2361
2362 pr_debug("Registered DAI '%s'\n", dai->name);
2363
2364 return 0;
2365}
2366EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2367
2368/**
2369 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2370 *
ac11a2b3 2371 * @dai: DAI to unregister
9115171a
MB
2372 */
2373void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2374{
2375 mutex_lock(&client_mutex);
2376 list_del(&dai->list);
2377 mutex_unlock(&client_mutex);
2378
2379 pr_debug("Unregistered DAI '%s'\n", dai->name);
2380}
2381EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2382
2383/**
2384 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2385 *
ac11a2b3
MB
2386 * @dai: Array of DAIs to register
2387 * @count: Number of DAIs
9115171a
MB
2388 */
2389int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
2390{
2391 int i, ret;
2392
2393 for (i = 0; i < count; i++) {
2394 ret = snd_soc_register_dai(&dai[i]);
2395 if (ret != 0)
2396 goto err;
2397 }
2398
2399 return 0;
2400
2401err:
2402 for (i--; i >= 0; i--)
2403 snd_soc_unregister_dai(&dai[i]);
2404
2405 return ret;
2406}
2407EXPORT_SYMBOL_GPL(snd_soc_register_dais);
2408
2409/**
2410 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2411 *
ac11a2b3
MB
2412 * @dai: Array of DAIs to unregister
2413 * @count: Number of DAIs
9115171a
MB
2414 */
2415void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
2416{
2417 int i;
2418
2419 for (i = 0; i < count; i++)
2420 snd_soc_unregister_dai(&dai[i]);
2421}
2422EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
2423
12a48a8c
MB
2424/**
2425 * snd_soc_register_platform - Register a platform with the ASoC core
2426 *
ac11a2b3 2427 * @platform: platform to register
12a48a8c
MB
2428 */
2429int snd_soc_register_platform(struct snd_soc_platform *platform)
2430{
2431 if (!platform->name)
2432 return -EINVAL;
2433
2434 INIT_LIST_HEAD(&platform->list);
2435
2436 mutex_lock(&client_mutex);
2437 list_add(&platform->list, &platform_list);
435c5e25 2438 snd_soc_instantiate_cards();
12a48a8c
MB
2439 mutex_unlock(&client_mutex);
2440
2441 pr_debug("Registered platform '%s'\n", platform->name);
2442
2443 return 0;
2444}
2445EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2446
2447/**
2448 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2449 *
ac11a2b3 2450 * @platform: platform to unregister
12a48a8c
MB
2451 */
2452void snd_soc_unregister_platform(struct snd_soc_platform *platform)
2453{
2454 mutex_lock(&client_mutex);
2455 list_del(&platform->list);
2456 mutex_unlock(&client_mutex);
2457
2458 pr_debug("Unregistered platform '%s'\n", platform->name);
2459}
2460EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2461
151ab22c
MB
2462static u64 codec_format_map[] = {
2463 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2464 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2465 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2466 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2467 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2468 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2469 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2470 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2471 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2472 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2473 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2474 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2475 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2476 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2477 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2478 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2479};
2480
2481/* Fix up the DAI formats for endianness: codecs don't actually see
2482 * the endianness of the data but we're using the CPU format
2483 * definitions which do need to include endianness so we ensure that
2484 * codec DAIs always have both big and little endian variants set.
2485 */
2486static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2487{
2488 int i;
2489
2490 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2491 if (stream->formats & codec_format_map[i])
2492 stream->formats |= codec_format_map[i];
2493}
2494
0d0cf00a
MB
2495/**
2496 * snd_soc_register_codec - Register a codec with the ASoC core
2497 *
ac11a2b3 2498 * @codec: codec to register
0d0cf00a
MB
2499 */
2500int snd_soc_register_codec(struct snd_soc_codec *codec)
2501{
151ab22c
MB
2502 int i;
2503
0d0cf00a
MB
2504 if (!codec->name)
2505 return -EINVAL;
2506
2507 /* The device should become mandatory over time */
2508 if (!codec->dev)
2509 printk(KERN_WARNING "No device for codec %s\n", codec->name);
2510
2511 INIT_LIST_HEAD(&codec->list);
2512
151ab22c
MB
2513 for (i = 0; i < codec->num_dai; i++) {
2514 fixup_codec_formats(&codec->dai[i].playback);
2515 fixup_codec_formats(&codec->dai[i].capture);
2516 }
2517
0d0cf00a
MB
2518 mutex_lock(&client_mutex);
2519 list_add(&codec->list, &codec_list);
2520 snd_soc_instantiate_cards();
2521 mutex_unlock(&client_mutex);
2522
2523 pr_debug("Registered codec '%s'\n", codec->name);
2524
2525 return 0;
2526}
2527EXPORT_SYMBOL_GPL(snd_soc_register_codec);
2528
2529/**
2530 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2531 *
ac11a2b3 2532 * @codec: codec to unregister
0d0cf00a
MB
2533 */
2534void snd_soc_unregister_codec(struct snd_soc_codec *codec)
2535{
2536 mutex_lock(&client_mutex);
2537 list_del(&codec->list);
2538 mutex_unlock(&client_mutex);
2539
2540 pr_debug("Unregistered codec '%s'\n", codec->name);
2541}
2542EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
2543
c9b3a40f 2544static int __init snd_soc_init(void)
db2a4165 2545{
384c89e2
MB
2546#ifdef CONFIG_DEBUG_FS
2547 debugfs_root = debugfs_create_dir("asoc", NULL);
2548 if (IS_ERR(debugfs_root) || !debugfs_root) {
2549 printk(KERN_WARNING
2550 "ASoC: Failed to create debugfs directory\n");
2551 debugfs_root = NULL;
2552 }
2553#endif
2554
db2a4165
FM
2555 return platform_driver_register(&soc_driver);
2556}
2557
7d8c16a6 2558static void __exit snd_soc_exit(void)
db2a4165 2559{
384c89e2
MB
2560#ifdef CONFIG_DEBUG_FS
2561 debugfs_remove_recursive(debugfs_root);
2562#endif
3ff3f64b 2563 platform_driver_unregister(&soc_driver);
db2a4165
FM
2564}
2565
2566module_init(snd_soc_init);
2567module_exit(snd_soc_exit);
2568
2569/* Module information */
d331124d 2570MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
db2a4165
FM
2571MODULE_DESCRIPTION("ALSA SoC Core");
2572MODULE_LICENSE("GPL");
8b45a209 2573MODULE_ALIAS("platform:soc-audio");