ASoC: Fix WM8961 suspend function type
[deliverable/linux.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>
db2a4165
FM
31#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
db2a4165
FM
38static DEFINE_MUTEX(pcm_mutex);
39static DEFINE_MUTEX(io_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 */
622static int soc_suspend(struct platform_device *pdev, pm_message_t state)
623{
3ff3f64b 624 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
87506549 625 struct snd_soc_card *card = socdev->card;
87689d56 626 struct snd_soc_platform *platform = card->platform;
3ff3f64b 627 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
6627a653 628 struct snd_soc_codec *codec = card->codec;
db2a4165
FM
629 int i;
630
e3509ff0
DM
631 /* 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
6ed25978
AG
637 /* 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
db2a4165 647 /* mute any active DAC's */
dee89c4d
MB
648 for (i = 0; i < card->num_links; i++) {
649 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
6335d055
EM
650 if (dai->ops->digital_mute && dai->playback.active)
651 dai->ops->digital_mute(dai, 1);
db2a4165
FM
652 }
653
4ccab3e7 654 /* suspend all pcms */
87506549
MB
655 for (i = 0; i < card->num_links; i++)
656 snd_pcm_suspend_all(card->dai_link[i].pcm);
4ccab3e7 657
87506549
MB
658 if (card->suspend_pre)
659 card->suspend_pre(pdev, state);
db2a4165 660
87506549
MB
661 for (i = 0; i < card->num_links; i++) {
662 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
3ba9e10a 663 if (cpu_dai->suspend && !cpu_dai->ac97_control)
dc7d7b83 664 cpu_dai->suspend(cpu_dai);
db2a4165 665 if (platform->suspend)
07c84d04 666 platform->suspend(cpu_dai);
db2a4165
FM
667 }
668
669 /* close any waiting streams and save state */
6308419a 670 run_delayed_work(&card->delayed_work);
0be9898a 671 codec->suspend_bias_level = codec->bias_level;
db2a4165 672
3ff3f64b 673 for (i = 0; i < codec->num_dai; i++) {
db2a4165
FM
674 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
87506549
MB
687 for (i = 0; i < card->num_links; i++) {
688 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
3ba9e10a 689 if (cpu_dai->suspend && cpu_dai->ac97_control)
dc7d7b83 690 cpu_dai->suspend(cpu_dai);
db2a4165
FM
691 }
692
87506549
MB
693 if (card->suspend_post)
694 card->suspend_post(pdev, state);
db2a4165
FM
695
696 return 0;
697}
698
6ed25978
AG
699/* 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)
db2a4165 703{
6308419a
MB
704 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;
87689d56 708 struct snd_soc_platform *platform = card->platform;
3ff3f64b 709 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
6627a653 710 struct snd_soc_codec *codec = card->codec;
6ed25978 711 struct platform_device *pdev = to_platform_device(socdev->dev);
db2a4165
FM
712 int i;
713
6ed25978
AG
714 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
715 * so userspace apps are blocked from touching us
716 */
717
fde22f27 718 dev_dbg(socdev->dev, "starting resume work\n");
6ed25978 719
87506549
MB
720 if (card->resume_pre)
721 card->resume_pre(pdev);
db2a4165 722
87506549
MB
723 for (i = 0; i < card->num_links; i++) {
724 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
3ba9e10a 725 if (cpu_dai->resume && cpu_dai->ac97_control)
dc7d7b83 726 cpu_dai->resume(cpu_dai);
db2a4165
FM
727 }
728
729 if (codec_dev->resume)
730 codec_dev->resume(pdev);
731
3ff3f64b
MB
732 for (i = 0; i < codec->num_dai; i++) {
733 char *stream = codec->dai[i].playback.stream_name;
db2a4165
FM
734 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
3ff3f64b 743 /* unmute any active DACs */
dee89c4d
MB
744 for (i = 0; i < card->num_links; i++) {
745 struct snd_soc_dai *dai = card->dai_link[i].codec_dai;
6335d055
EM
746 if (dai->ops->digital_mute && dai->playback.active)
747 dai->ops->digital_mute(dai, 0);
db2a4165
FM
748 }
749
87506549
MB
750 for (i = 0; i < card->num_links; i++) {
751 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
3ba9e10a 752 if (cpu_dai->resume && !cpu_dai->ac97_control)
dc7d7b83 753 cpu_dai->resume(cpu_dai);
db2a4165 754 if (platform->resume)
07c84d04 755 platform->resume(cpu_dai);
db2a4165
FM
756 }
757
87506549
MB
758 if (card->resume_post)
759 card->resume_post(pdev);
db2a4165 760
fde22f27 761 dev_dbg(socdev->dev, "resume work completed\n");
6ed25978
AG
762
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);
6308419a 771 struct snd_soc_card *card = socdev->card;
64ab9baa 772 struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai;
6ed25978 773
64ab9baa
MB
774 /* 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 }
6ed25978 787
db2a4165
FM
788 return 0;
789}
790
831dc0f1
MB
791/**
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
db2a4165
FM
830#else
831#define soc_suspend NULL
832#define soc_resume NULL
833#endif
834
435c5e25 835static void snd_soc_instantiate_card(struct snd_soc_card *card)
db2a4165 836{
435c5e25
MB
837 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;
6b05eda6 843 int i, found, ret, ac97;
435c5e25
MB
844
845 if (card->instantiated)
846 return;
847
848 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;
858 }
6308419a 859
6b05eda6 860 ac97 = 0;
435c5e25
MB
861 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 }
6b05eda6
MB
873
874 if (card->dai_link[i].cpu_dai->ac97_control)
875 ac97 = 1;
c5af3a2e
MB
876 }
877
6b05eda6
MB
878 /* 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
435c5e25
MB
899 /* 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 */
87506549
MB
904 if (card->probe) {
905 ret = card->probe(pdev);
3ff3f64b 906 if (ret < 0)
435c5e25 907 return;
db2a4165
FM
908 }
909
87506549
MB
910 for (i = 0; i < card->num_links; i++) {
911 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
db2a4165 912 if (cpu_dai->probe) {
bdb92876 913 ret = cpu_dai->probe(pdev, cpu_dai);
3ff3f64b 914 if (ret < 0)
db2a4165
FM
915 goto cpu_dai_err;
916 }
917 }
918
919 if (codec_dev->probe) {
920 ret = codec_dev->probe(pdev);
3ff3f64b 921 if (ret < 0)
db2a4165
FM
922 goto cpu_dai_err;
923 }
924
925 if (platform->probe) {
926 ret = platform->probe(pdev);
3ff3f64b 927 if (ret < 0)
db2a4165
FM
928 goto platform_err;
929 }
930
931 /* DAPM stream work */
6308419a 932 INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work);
1301a964 933#ifdef CONFIG_PM
6ed25978 934 /* deferred resume work */
6308419a 935 INIT_WORK(&card->deferred_resume_work, soc_resume_deferred);
1301a964 936#endif
6ed25978 937
435c5e25
MB
938 card->instantiated = 1;
939
940 return;
db2a4165 941
db2a4165
FM
942platform_err:
943 if (codec_dev->remove)
944 codec_dev->remove(pdev);
945
946cpu_dai_err:
18b9b3d9 947 for (i--; i >= 0; i--) {
87506549 948 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
db2a4165 949 if (cpu_dai->remove)
bdb92876 950 cpu_dai->remove(pdev, cpu_dai);
db2a4165
FM
951 }
952
87506549
MB
953 if (card->remove)
954 card->remove(pdev);
435c5e25 955}
db2a4165 956
435c5e25
MB
957/*
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;
db2a4165
FM
987}
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);
87506549 994 struct snd_soc_card *card = socdev->card;
87689d56 995 struct snd_soc_platform *platform = card->platform;
db2a4165
FM
996 struct snd_soc_codec_device *codec_dev = socdev->codec_dev;
997
914dc182
MR
998 if (!card->instantiated)
999 return 0;
1000
6308419a 1001 run_delayed_work(&card->delayed_work);
965ac42c 1002
db2a4165
FM
1003 if (platform->remove)
1004 platform->remove(pdev);
1005
1006 if (codec_dev->remove)
1007 codec_dev->remove(pdev);
1008
87506549
MB
1009 for (i = 0; i < card->num_links; i++) {
1010 struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai;
db2a4165 1011 if (cpu_dai->remove)
bdb92876 1012 cpu_dai->remove(pdev, cpu_dai);
db2a4165
FM
1013 }
1014
87506549
MB
1015 if (card->remove)
1016 card->remove(pdev);
db2a4165 1017
c5af3a2e
MB
1018 snd_soc_unregister_card(card);
1019
db2a4165
FM
1020 return 0;
1021}
1022
51737470
MB
1023static void soc_shutdown(struct platform_device *pdev)
1024{
1025 struct snd_soc_device *socdev = platform_get_drvdata(pdev);
1026 struct snd_soc_card *card = socdev->card;
1027
1028 if (!card->instantiated)
1029 return;
1030
1031 /* Flush out pmdown_time work - we actually do want to run it
1032 * now, we're shutting down so no imminent restart. */
1033 run_delayed_work(&card->delayed_work);
1034
1035 snd_soc_dapm_shutdown(socdev);
1036}
1037
db2a4165
FM
1038/* ASoC platform driver */
1039static struct platform_driver soc_driver = {
1040 .driver = {
1041 .name = "soc-audio",
8b45a209 1042 .owner = THIS_MODULE,
db2a4165
FM
1043 },
1044 .probe = soc_probe,
1045 .remove = soc_remove,
1046 .suspend = soc_suspend,
1047 .resume = soc_resume,
51737470 1048 .shutdown = soc_shutdown,
db2a4165
FM
1049};
1050
1051/* create a new pcm */
1052static int soc_new_pcm(struct snd_soc_device *socdev,
1053 struct snd_soc_dai_link *dai_link, int num)
1054{
87689d56 1055 struct snd_soc_card *card = socdev->card;
6627a653 1056 struct snd_soc_codec *codec = card->codec;
87689d56 1057 struct snd_soc_platform *platform = card->platform;
3c4b266f
LG
1058 struct snd_soc_dai *codec_dai = dai_link->codec_dai;
1059 struct snd_soc_dai *cpu_dai = dai_link->cpu_dai;
db2a4165
FM
1060 struct snd_soc_pcm_runtime *rtd;
1061 struct snd_pcm *pcm;
1062 char new_name[64];
1063 int ret = 0, playback = 0, capture = 0;
1064
1065 rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL);
1066 if (rtd == NULL)
1067 return -ENOMEM;
cb666e5b
LG
1068
1069 rtd->dai = dai_link;
db2a4165 1070 rtd->socdev = socdev;
6627a653 1071 codec_dai->codec = card->codec;
db2a4165
FM
1072
1073 /* check client and interface hw capabilities */
3ba9e10a
MB
1074 sprintf(new_name, "%s %s-%d", dai_link->stream_name, codec_dai->name,
1075 num);
db2a4165
FM
1076
1077 if (codec_dai->playback.channels_min)
1078 playback = 1;
1079 if (codec_dai->capture.channels_min)
1080 capture = 1;
1081
1082 ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback,
1083 capture, &pcm);
1084 if (ret < 0) {
3ff3f64b
MB
1085 printk(KERN_ERR "asoc: can't create pcm for codec %s\n",
1086 codec->name);
db2a4165
FM
1087 kfree(rtd);
1088 return ret;
1089 }
1090
4ccab3e7 1091 dai_link->pcm = pcm;
db2a4165 1092 pcm->private_data = rtd;
87689d56
MB
1093 soc_pcm_ops.mmap = platform->pcm_ops->mmap;
1094 soc_pcm_ops.pointer = platform->pcm_ops->pointer;
1095 soc_pcm_ops.ioctl = platform->pcm_ops->ioctl;
1096 soc_pcm_ops.copy = platform->pcm_ops->copy;
1097 soc_pcm_ops.silence = platform->pcm_ops->silence;
1098 soc_pcm_ops.ack = platform->pcm_ops->ack;
1099 soc_pcm_ops.page = platform->pcm_ops->page;
db2a4165
FM
1100
1101 if (playback)
1102 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops);
1103
1104 if (capture)
1105 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops);
1106
87689d56 1107 ret = platform->pcm_new(codec->card, codec_dai, pcm);
db2a4165
FM
1108 if (ret < 0) {
1109 printk(KERN_ERR "asoc: platform pcm constructor failed\n");
1110 kfree(rtd);
1111 return ret;
1112 }
1113
87689d56 1114 pcm->private_free = platform->pcm_free;
db2a4165
FM
1115 printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name,
1116 cpu_dai->name);
1117 return ret;
1118}
1119
1120/* codec register dump */
6627a653 1121static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
db2a4165 1122{
db2a4165
FM
1123 int i, step = 1, count = 0;
1124
1125 if (!codec->reg_cache_size)
1126 return 0;
1127
1128 if (codec->reg_cache_step)
1129 step = codec->reg_cache_step;
1130
1131 count += sprintf(buf, "%s registers\n", codec->name);
58cd33c0
MB
1132 for (i = 0; i < codec->reg_cache_size; i += step) {
1133 count += sprintf(buf + count, "%2x: ", i);
1134 if (count >= PAGE_SIZE - 1)
1135 break;
1136
1137 if (codec->display_register)
1138 count += codec->display_register(codec, buf + count,
1139 PAGE_SIZE - count, i);
1140 else
1141 count += snprintf(buf + count, PAGE_SIZE - count,
1142 "%4x", codec->read(codec, i));
1143
1144 if (count >= PAGE_SIZE - 1)
1145 break;
1146
1147 count += snprintf(buf + count, PAGE_SIZE - count, "\n");
1148 if (count >= PAGE_SIZE - 1)
1149 break;
1150 }
1151
1152 /* Truncate count; min() would cause a warning */
1153 if (count >= PAGE_SIZE)
1154 count = PAGE_SIZE - 1;
db2a4165
FM
1155
1156 return count;
1157}
12ef193d
TK
1158static ssize_t codec_reg_show(struct device *dev,
1159 struct device_attribute *attr, char *buf)
1160{
1161 struct snd_soc_device *devdata = dev_get_drvdata(dev);
6627a653 1162 return soc_codec_reg_show(devdata->card->codec, buf);
12ef193d
TK
1163}
1164
db2a4165
FM
1165static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL);
1166
12ef193d
TK
1167#ifdef CONFIG_DEBUG_FS
1168static int codec_reg_open_file(struct inode *inode, struct file *file)
1169{
1170 file->private_data = inode->i_private;
1171 return 0;
1172}
1173
1174static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf,
1175 size_t count, loff_t *ppos)
1176{
1177 ssize_t ret;
384c89e2 1178 struct snd_soc_codec *codec = file->private_data;
12ef193d
TK
1179 char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1180 if (!buf)
1181 return -ENOMEM;
6627a653 1182 ret = soc_codec_reg_show(codec, buf);
12ef193d
TK
1183 if (ret >= 0)
1184 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1185 kfree(buf);
1186 return ret;
1187}
1188
1189static ssize_t codec_reg_write_file(struct file *file,
1190 const char __user *user_buf, size_t count, loff_t *ppos)
1191{
1192 char buf[32];
1193 int buf_size;
1194 char *start = buf;
1195 unsigned long reg, value;
1196 int step = 1;
384c89e2 1197 struct snd_soc_codec *codec = file->private_data;
12ef193d
TK
1198
1199 buf_size = min(count, (sizeof(buf)-1));
1200 if (copy_from_user(buf, user_buf, buf_size))
1201 return -EFAULT;
1202 buf[buf_size] = 0;
1203
1204 if (codec->reg_cache_step)
1205 step = codec->reg_cache_step;
1206
1207 while (*start == ' ')
1208 start++;
1209 reg = simple_strtoul(start, &start, 16);
1210 if ((reg >= codec->reg_cache_size) || (reg % step))
1211 return -EINVAL;
1212 while (*start == ' ')
1213 start++;
1214 if (strict_strtoul(start, 16, &value))
1215 return -EINVAL;
1216 codec->write(codec, reg, value);
1217 return buf_size;
1218}
1219
1220static const struct file_operations codec_reg_fops = {
1221 .open = codec_reg_open_file,
1222 .read = codec_reg_read_file,
1223 .write = codec_reg_write_file,
1224};
1225
384c89e2 1226static void soc_init_codec_debugfs(struct snd_soc_codec *codec)
12ef193d 1227{
384c89e2
MB
1228 codec->debugfs_reg = debugfs_create_file("codec_reg", 0644,
1229 debugfs_root, codec,
1230 &codec_reg_fops);
1231 if (!codec->debugfs_reg)
1232 printk(KERN_WARNING
1233 "ASoC: Failed to create codec register debugfs file\n");
1234
1235 codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0744,
1236 debugfs_root,
1237 &codec->pop_time);
1238 if (!codec->debugfs_pop_time)
1239 printk(KERN_WARNING
1240 "Failed to create pop time debugfs file\n");
12ef193d
TK
1241}
1242
384c89e2 1243static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
12ef193d 1244{
384c89e2
MB
1245 debugfs_remove(codec->debugfs_pop_time);
1246 debugfs_remove(codec->debugfs_reg);
12ef193d
TK
1247}
1248
1249#else
1250
384c89e2 1251static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec)
12ef193d
TK
1252{
1253}
1254
384c89e2 1255static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec)
12ef193d
TK
1256{
1257}
1258#endif
1259
db2a4165
FM
1260/**
1261 * snd_soc_new_ac97_codec - initailise AC97 device
1262 * @codec: audio codec
1263 * @ops: AC97 bus operations
1264 * @num: AC97 codec number
1265 *
1266 * Initialises AC97 codec resources for use by ad-hoc devices only.
1267 */
1268int snd_soc_new_ac97_codec(struct snd_soc_codec *codec,
1269 struct snd_ac97_bus_ops *ops, int num)
1270{
1271 mutex_lock(&codec->mutex);
1272
1273 codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
1274 if (codec->ac97 == NULL) {
1275 mutex_unlock(&codec->mutex);
1276 return -ENOMEM;
1277 }
1278
1279 codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL);
1280 if (codec->ac97->bus == NULL) {
1281 kfree(codec->ac97);
1282 codec->ac97 = NULL;
1283 mutex_unlock(&codec->mutex);
1284 return -ENOMEM;
1285 }
1286
1287 codec->ac97->bus->ops = ops;
1288 codec->ac97->num = num;
1289 mutex_unlock(&codec->mutex);
1290 return 0;
1291}
1292EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec);
1293
1294/**
1295 * snd_soc_free_ac97_codec - free AC97 codec device
1296 * @codec: audio codec
1297 *
1298 * Frees AC97 codec device resources.
1299 */
1300void snd_soc_free_ac97_codec(struct snd_soc_codec *codec)
1301{
1302 mutex_lock(&codec->mutex);
1303 kfree(codec->ac97->bus);
1304 kfree(codec->ac97);
1305 codec->ac97 = NULL;
1306 mutex_unlock(&codec->mutex);
1307}
1308EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec);
1309
1310/**
1311 * snd_soc_update_bits - update codec register bits
1312 * @codec: audio codec
1313 * @reg: codec register
1314 * @mask: register mask
1315 * @value: new value
1316 *
1317 * Writes new register value.
1318 *
1319 * Returns 1 for change else 0.
1320 */
1321int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg,
46f5822f 1322 unsigned int mask, unsigned int value)
db2a4165
FM
1323{
1324 int change;
46f5822f 1325 unsigned int old, new;
db2a4165
FM
1326
1327 mutex_lock(&io_mutex);
1328 old = snd_soc_read(codec, reg);
1329 new = (old & ~mask) | value;
1330 change = old != new;
1331 if (change)
1332 snd_soc_write(codec, reg, new);
1333
1334 mutex_unlock(&io_mutex);
1335 return change;
1336}
1337EXPORT_SYMBOL_GPL(snd_soc_update_bits);
1338
1339/**
1340 * snd_soc_test_bits - test register for change
1341 * @codec: audio codec
1342 * @reg: codec register
1343 * @mask: register mask
1344 * @value: new value
1345 *
1346 * Tests a register with a new value and checks if the new value is
1347 * different from the old value.
1348 *
1349 * Returns 1 for change else 0.
1350 */
1351int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg,
46f5822f 1352 unsigned int mask, unsigned int value)
db2a4165
FM
1353{
1354 int change;
46f5822f 1355 unsigned int old, new;
db2a4165
FM
1356
1357 mutex_lock(&io_mutex);
1358 old = snd_soc_read(codec, reg);
1359 new = (old & ~mask) | value;
1360 change = old != new;
1361 mutex_unlock(&io_mutex);
1362
1363 return change;
1364}
1365EXPORT_SYMBOL_GPL(snd_soc_test_bits);
1366
db2a4165
FM
1367/**
1368 * snd_soc_new_pcms - create new sound card and pcms
1369 * @socdev: the SoC audio device
ac11a2b3
MB
1370 * @idx: ALSA card index
1371 * @xid: card identification
db2a4165
FM
1372 *
1373 * Create a new sound card based upon the codec and interface pcms.
1374 *
1375 * Returns 0 for success, else error.
1376 */
bc7320c5 1377int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid)
db2a4165 1378{
87506549 1379 struct snd_soc_card *card = socdev->card;
6627a653 1380 struct snd_soc_codec *codec = card->codec;
bd7dd77c 1381 int ret, i;
db2a4165
FM
1382
1383 mutex_lock(&codec->mutex);
1384
1385 /* register a sound card */
bd7dd77c
TI
1386 ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card);
1387 if (ret < 0) {
db2a4165
FM
1388 printk(KERN_ERR "asoc: can't create sound card for codec %s\n",
1389 codec->name);
1390 mutex_unlock(&codec->mutex);
bd7dd77c 1391 return ret;
db2a4165
FM
1392 }
1393
452c5eaa 1394 codec->socdev = socdev;
db2a4165
FM
1395 codec->card->dev = socdev->dev;
1396 codec->card->private_data = codec;
1397 strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver));
1398
1399 /* create the pcms */
87506549
MB
1400 for (i = 0; i < card->num_links; i++) {
1401 ret = soc_new_pcm(socdev, &card->dai_link[i], i);
db2a4165
FM
1402 if (ret < 0) {
1403 printk(KERN_ERR "asoc: can't create pcm %s\n",
87506549 1404 card->dai_link[i].stream_name);
db2a4165
FM
1405 mutex_unlock(&codec->mutex);
1406 return ret;
1407 }
1408 }
1409
1410 mutex_unlock(&codec->mutex);
1411 return ret;
1412}
1413EXPORT_SYMBOL_GPL(snd_soc_new_pcms);
1414
1415/**
968a6025 1416 * snd_soc_init_card - register sound card
db2a4165
FM
1417 * @socdev: the SoC audio device
1418 *
1419 * Register a SoC sound card. Also registers an AC97 device if the
1420 * codec is AC97 for ad hoc devices.
1421 *
1422 * Returns 0 for success, else error.
1423 */
968a6025 1424int snd_soc_init_card(struct snd_soc_device *socdev)
db2a4165 1425{
87506549 1426 struct snd_soc_card *card = socdev->card;
6627a653 1427 struct snd_soc_codec *codec = card->codec;
12e74f7d 1428 int ret = 0, i, ac97 = 0, err = 0;
db2a4165 1429
87506549
MB
1430 for (i = 0; i < card->num_links; i++) {
1431 if (card->dai_link[i].init) {
1432 err = card->dai_link[i].init(codec);
12e74f7d
LG
1433 if (err < 0) {
1434 printk(KERN_ERR "asoc: failed to init %s\n",
87506549 1435 card->dai_link[i].stream_name);
12e74f7d
LG
1436 continue;
1437 }
1438 }
3ba9e10a 1439 if (card->dai_link[i].codec_dai->ac97_control)
db2a4165
FM
1440 ac97 = 1;
1441 }
1442 snprintf(codec->card->shortname, sizeof(codec->card->shortname),
87506549 1443 "%s", card->name);
db2a4165 1444 snprintf(codec->card->longname, sizeof(codec->card->longname),
87506549 1445 "%s (%s)", card->name, codec->name);
db2a4165 1446
6d5701b2
MB
1447 /* Make sure all DAPM widgets are instantiated */
1448 snd_soc_dapm_new_widgets(codec);
1449
db2a4165
FM
1450 ret = snd_card_register(codec->card);
1451 if (ret < 0) {
3ff3f64b 1452 printk(KERN_ERR "asoc: failed to register soundcard for %s\n",
db2a4165 1453 codec->name);
12e74f7d 1454 goto out;
db2a4165
FM
1455 }
1456
08c8efe6 1457 mutex_lock(&codec->mutex);
db2a4165 1458#ifdef CONFIG_SND_SOC_AC97_BUS
14fa43f5
MB
1459 /* Only instantiate AC97 if not already done by the adaptor
1460 * for the generic AC97 subsystem.
1461 */
1462 if (ac97 && strcmp(codec->name, "AC97") != 0) {
12e74f7d
LG
1463 ret = soc_ac97_dev_register(codec);
1464 if (ret < 0) {
1465 printk(KERN_ERR "asoc: AC97 device register failed\n");
1466 snd_card_free(codec->card);
08c8efe6 1467 mutex_unlock(&codec->mutex);
12e74f7d
LG
1468 goto out;
1469 }
1470 }
db2a4165
FM
1471#endif
1472
12e74f7d
LG
1473 err = snd_soc_dapm_sys_add(socdev->dev);
1474 if (err < 0)
1475 printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n");
1476
1477 err = device_create_file(socdev->dev, &dev_attr_codec_reg);
1478 if (err < 0)
3ff3f64b 1479 printk(KERN_WARNING "asoc: failed to add codec sysfs files\n");
08c8efe6 1480
6627a653 1481 soc_init_codec_debugfs(codec);
db2a4165 1482 mutex_unlock(&codec->mutex);
08c8efe6
MB
1483
1484out:
db2a4165
FM
1485 return ret;
1486}
968a6025 1487EXPORT_SYMBOL_GPL(snd_soc_init_card);
db2a4165
FM
1488
1489/**
1490 * snd_soc_free_pcms - free sound card and pcms
1491 * @socdev: the SoC audio device
1492 *
1493 * Frees sound card and pcms associated with the socdev.
1494 * Also unregister the codec if it is an AC97 device.
1495 */
1496void snd_soc_free_pcms(struct snd_soc_device *socdev)
1497{
6627a653 1498 struct snd_soc_codec *codec = socdev->card->codec;
a68660e0 1499#ifdef CONFIG_SND_SOC_AC97_BUS
3c4b266f 1500 struct snd_soc_dai *codec_dai;
a68660e0
LG
1501 int i;
1502#endif
db2a4165
FM
1503
1504 mutex_lock(&codec->mutex);
6627a653 1505 soc_cleanup_codec_debugfs(codec);
db2a4165 1506#ifdef CONFIG_SND_SOC_AC97_BUS
3ff3f64b 1507 for (i = 0; i < codec->num_dai; i++) {
a68660e0 1508 codec_dai = &codec->dai[i];
d2314e0e
AN
1509 if (codec_dai->ac97_control && codec->ac97 &&
1510 strcmp(codec->name, "AC97") != 0) {
a68660e0
LG
1511 soc_ac97_dev_unregister(codec);
1512 goto free_card;
1513 }
1514 }
1515free_card:
db2a4165
FM
1516#endif
1517
1518 if (codec->card)
1519 snd_card_free(codec->card);
1520 device_remove_file(socdev->dev, &dev_attr_codec_reg);
1521 mutex_unlock(&codec->mutex);
1522}
1523EXPORT_SYMBOL_GPL(snd_soc_free_pcms);
1524
1525/**
1526 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1527 * @substream: the pcm substream
1528 * @hw: the hardware parameters
1529 *
1530 * Sets the substream runtime hardware parameters.
1531 */
1532int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
1533 const struct snd_pcm_hardware *hw)
1534{
1535 struct snd_pcm_runtime *runtime = substream->runtime;
1536 runtime->hw.info = hw->info;
1537 runtime->hw.formats = hw->formats;
1538 runtime->hw.period_bytes_min = hw->period_bytes_min;
1539 runtime->hw.period_bytes_max = hw->period_bytes_max;
1540 runtime->hw.periods_min = hw->periods_min;
1541 runtime->hw.periods_max = hw->periods_max;
1542 runtime->hw.buffer_bytes_max = hw->buffer_bytes_max;
1543 runtime->hw.fifo_size = hw->fifo_size;
1544 return 0;
1545}
1546EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams);
1547
1548/**
1549 * snd_soc_cnew - create new control
1550 * @_template: control template
1551 * @data: control private data
ac11a2b3 1552 * @long_name: control long name
db2a4165
FM
1553 *
1554 * Create a new mixer control from a template control.
1555 *
1556 * Returns 0 for success, else error.
1557 */
1558struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
1559 void *data, char *long_name)
1560{
1561 struct snd_kcontrol_new template;
1562
1563 memcpy(&template, _template, sizeof(template));
1564 if (long_name)
1565 template.name = long_name;
db2a4165
FM
1566 template.index = 0;
1567
1568 return snd_ctl_new1(&template, data);
1569}
1570EXPORT_SYMBOL_GPL(snd_soc_cnew);
1571
3e8e1952
IM
1572/**
1573 * snd_soc_add_controls - add an array of controls to a codec.
1574 * Convienience function to add a list of controls. Many codecs were
1575 * duplicating this code.
1576 *
1577 * @codec: codec to add controls to
1578 * @controls: array of controls to add
1579 * @num_controls: number of elements in the array
1580 *
1581 * Return 0 for success, else error.
1582 */
1583int snd_soc_add_controls(struct snd_soc_codec *codec,
1584 const struct snd_kcontrol_new *controls, int num_controls)
1585{
1586 struct snd_card *card = codec->card;
1587 int err, i;
1588
1589 for (i = 0; i < num_controls; i++) {
1590 const struct snd_kcontrol_new *control = &controls[i];
1591 err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL));
1592 if (err < 0) {
1593 dev_err(codec->dev, "%s: Failed to add %s\n",
1594 codec->name, control->name);
1595 return err;
1596 }
1597 }
1598
1599 return 0;
1600}
1601EXPORT_SYMBOL_GPL(snd_soc_add_controls);
1602
db2a4165
FM
1603/**
1604 * snd_soc_info_enum_double - enumerated double mixer info callback
1605 * @kcontrol: mixer control
1606 * @uinfo: control element information
1607 *
1608 * Callback to provide information about a double enumerated
1609 * mixer control.
1610 *
1611 * Returns 0 for success.
1612 */
1613int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
1614 struct snd_ctl_elem_info *uinfo)
1615{
1616 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1617
1618 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1619 uinfo->count = e->shift_l == e->shift_r ? 1 : 2;
f8ba0b7b 1620 uinfo->value.enumerated.items = e->max;
db2a4165 1621
f8ba0b7b
JS
1622 if (uinfo->value.enumerated.item > e->max - 1)
1623 uinfo->value.enumerated.item = e->max - 1;
db2a4165
FM
1624 strcpy(uinfo->value.enumerated.name,
1625 e->texts[uinfo->value.enumerated.item]);
1626 return 0;
1627}
1628EXPORT_SYMBOL_GPL(snd_soc_info_enum_double);
1629
1630/**
1631 * snd_soc_get_enum_double - enumerated double mixer get callback
1632 * @kcontrol: mixer control
ac11a2b3 1633 * @ucontrol: control element information
db2a4165
FM
1634 *
1635 * Callback to get the value of a double enumerated mixer.
1636 *
1637 * Returns 0 for success.
1638 */
1639int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
1640 struct snd_ctl_elem_value *ucontrol)
1641{
1642 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1643 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
46f5822f 1644 unsigned int val, bitmask;
db2a4165 1645
f8ba0b7b 1646 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
db2a4165
FM
1647 ;
1648 val = snd_soc_read(codec, e->reg);
3ff3f64b
MB
1649 ucontrol->value.enumerated.item[0]
1650 = (val >> e->shift_l) & (bitmask - 1);
db2a4165
FM
1651 if (e->shift_l != e->shift_r)
1652 ucontrol->value.enumerated.item[1] =
1653 (val >> e->shift_r) & (bitmask - 1);
1654
1655 return 0;
1656}
1657EXPORT_SYMBOL_GPL(snd_soc_get_enum_double);
1658
1659/**
1660 * snd_soc_put_enum_double - enumerated double mixer put callback
1661 * @kcontrol: mixer control
ac11a2b3 1662 * @ucontrol: control element information
db2a4165
FM
1663 *
1664 * Callback to set the value of a double enumerated mixer.
1665 *
1666 * Returns 0 for success.
1667 */
1668int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
1669 struct snd_ctl_elem_value *ucontrol)
1670{
1671 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
1672 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
46f5822f
DR
1673 unsigned int val;
1674 unsigned int mask, bitmask;
db2a4165 1675
f8ba0b7b 1676 for (bitmask = 1; bitmask < e->max; bitmask <<= 1)
db2a4165 1677 ;
f8ba0b7b 1678 if (ucontrol->value.enumerated.item[0] > e->max - 1)
db2a4165
FM
1679 return -EINVAL;
1680 val = ucontrol->value.enumerated.item[0] << e->shift_l;
1681 mask = (bitmask - 1) << e->shift_l;
1682 if (e->shift_l != e->shift_r) {
f8ba0b7b 1683 if (ucontrol->value.enumerated.item[1] > e->max - 1)
db2a4165
FM
1684 return -EINVAL;
1685 val |= ucontrol->value.enumerated.item[1] << e->shift_r;
1686 mask |= (bitmask - 1) << e->shift_r;
1687 }
1688
1689 return snd_soc_update_bits(codec, e->reg, mask, val);
1690}
1691EXPORT_SYMBOL_GPL(snd_soc_put_enum_double);
1692
2e72f8e3
PU
1693/**
1694 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
1695 * @kcontrol: mixer control
1696 * @ucontrol: control element information
1697 *
1698 * Callback to get the value of a double semi enumerated mixer.
1699 *
1700 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1701 * used for handling bitfield coded enumeration for example.
1702 *
1703 * Returns 0 for success.
1704 */
1705int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol,
1706 struct snd_ctl_elem_value *ucontrol)
1707{
1708 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
74155556 1709 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
46f5822f 1710 unsigned int reg_val, val, mux;
2e72f8e3
PU
1711
1712 reg_val = snd_soc_read(codec, e->reg);
1713 val = (reg_val >> e->shift_l) & e->mask;
1714 for (mux = 0; mux < e->max; mux++) {
1715 if (val == e->values[mux])
1716 break;
1717 }
1718 ucontrol->value.enumerated.item[0] = mux;
1719 if (e->shift_l != e->shift_r) {
1720 val = (reg_val >> e->shift_r) & e->mask;
1721 for (mux = 0; mux < e->max; mux++) {
1722 if (val == e->values[mux])
1723 break;
1724 }
1725 ucontrol->value.enumerated.item[1] = mux;
1726 }
1727
1728 return 0;
1729}
1730EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double);
1731
1732/**
1733 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
1734 * @kcontrol: mixer control
1735 * @ucontrol: control element information
1736 *
1737 * Callback to set the value of a double semi enumerated mixer.
1738 *
1739 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1740 * used for handling bitfield coded enumeration for example.
1741 *
1742 * Returns 0 for success.
1743 */
1744int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol,
1745 struct snd_ctl_elem_value *ucontrol)
1746{
1747 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
74155556 1748 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
46f5822f
DR
1749 unsigned int val;
1750 unsigned int mask;
2e72f8e3
PU
1751
1752 if (ucontrol->value.enumerated.item[0] > e->max - 1)
1753 return -EINVAL;
1754 val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
1755 mask = e->mask << e->shift_l;
1756 if (e->shift_l != e->shift_r) {
1757 if (ucontrol->value.enumerated.item[1] > e->max - 1)
1758 return -EINVAL;
1759 val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
1760 mask |= e->mask << e->shift_r;
1761 }
1762
1763 return snd_soc_update_bits(codec, e->reg, mask, val);
1764}
1765EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double);
1766
db2a4165
FM
1767/**
1768 * snd_soc_info_enum_ext - external enumerated single mixer info callback
1769 * @kcontrol: mixer control
1770 * @uinfo: control element information
1771 *
1772 * Callback to provide information about an external enumerated
1773 * single mixer.
1774 *
1775 * Returns 0 for success.
1776 */
1777int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol,
1778 struct snd_ctl_elem_info *uinfo)
1779{
1780 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
1781
1782 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1783 uinfo->count = 1;
f8ba0b7b 1784 uinfo->value.enumerated.items = e->max;
db2a4165 1785
f8ba0b7b
JS
1786 if (uinfo->value.enumerated.item > e->max - 1)
1787 uinfo->value.enumerated.item = e->max - 1;
db2a4165
FM
1788 strcpy(uinfo->value.enumerated.name,
1789 e->texts[uinfo->value.enumerated.item]);
1790 return 0;
1791}
1792EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext);
1793
1794/**
1795 * snd_soc_info_volsw_ext - external single mixer info callback
1796 * @kcontrol: mixer control
1797 * @uinfo: control element information
1798 *
1799 * Callback to provide information about a single external mixer control.
1800 *
1801 * Returns 0 for success.
1802 */
1803int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol,
1804 struct snd_ctl_elem_info *uinfo)
1805{
a7a4ac86
PZ
1806 int max = kcontrol->private_value;
1807
fd5dfad9 1808 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
a7a4ac86
PZ
1809 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1810 else
1811 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
db2a4165 1812
db2a4165
FM
1813 uinfo->count = 1;
1814 uinfo->value.integer.min = 0;
a7a4ac86 1815 uinfo->value.integer.max = max;
db2a4165
FM
1816 return 0;
1817}
1818EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext);
1819
db2a4165
FM
1820/**
1821 * snd_soc_info_volsw - single mixer info callback
1822 * @kcontrol: mixer control
1823 * @uinfo: control element information
1824 *
1825 * Callback to provide information about a single mixer control.
1826 *
1827 * Returns 0 for success.
1828 */
1829int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
1830 struct snd_ctl_elem_info *uinfo)
1831{
4eaa9819
JS
1832 struct soc_mixer_control *mc =
1833 (struct soc_mixer_control *)kcontrol->private_value;
1834 int max = mc->max;
762b8df7 1835 unsigned int shift = mc->shift;
815ecf8d 1836 unsigned int rshift = mc->rshift;
db2a4165 1837
fd5dfad9 1838 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
a7a4ac86
PZ
1839 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1840 else
1841 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1842
db2a4165
FM
1843 uinfo->count = shift == rshift ? 1 : 2;
1844 uinfo->value.integer.min = 0;
a7a4ac86 1845 uinfo->value.integer.max = max;
db2a4165
FM
1846 return 0;
1847}
1848EXPORT_SYMBOL_GPL(snd_soc_info_volsw);
1849
1850/**
1851 * snd_soc_get_volsw - single mixer get callback
1852 * @kcontrol: mixer control
ac11a2b3 1853 * @ucontrol: control element information
db2a4165
FM
1854 *
1855 * Callback to get the value of a single mixer control.
1856 *
1857 * Returns 0 for success.
1858 */
1859int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
1860 struct snd_ctl_elem_value *ucontrol)
1861{
4eaa9819
JS
1862 struct soc_mixer_control *mc =
1863 (struct soc_mixer_control *)kcontrol->private_value;
db2a4165 1864 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d
JS
1865 unsigned int reg = mc->reg;
1866 unsigned int shift = mc->shift;
1867 unsigned int rshift = mc->rshift;
4eaa9819 1868 int max = mc->max;
815ecf8d
JS
1869 unsigned int mask = (1 << fls(max)) - 1;
1870 unsigned int invert = mc->invert;
db2a4165
FM
1871
1872 ucontrol->value.integer.value[0] =
1873 (snd_soc_read(codec, reg) >> shift) & mask;
1874 if (shift != rshift)
1875 ucontrol->value.integer.value[1] =
1876 (snd_soc_read(codec, reg) >> rshift) & mask;
1877 if (invert) {
1878 ucontrol->value.integer.value[0] =
a7a4ac86 1879 max - ucontrol->value.integer.value[0];
db2a4165
FM
1880 if (shift != rshift)
1881 ucontrol->value.integer.value[1] =
a7a4ac86 1882 max - ucontrol->value.integer.value[1];
db2a4165
FM
1883 }
1884
1885 return 0;
1886}
1887EXPORT_SYMBOL_GPL(snd_soc_get_volsw);
1888
1889/**
1890 * snd_soc_put_volsw - single mixer put callback
1891 * @kcontrol: mixer control
ac11a2b3 1892 * @ucontrol: control element information
db2a4165
FM
1893 *
1894 * Callback to set the value of a single mixer control.
1895 *
1896 * Returns 0 for success.
1897 */
1898int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
1899 struct snd_ctl_elem_value *ucontrol)
1900{
4eaa9819
JS
1901 struct soc_mixer_control *mc =
1902 (struct soc_mixer_control *)kcontrol->private_value;
db2a4165 1903 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d
JS
1904 unsigned int reg = mc->reg;
1905 unsigned int shift = mc->shift;
1906 unsigned int rshift = mc->rshift;
4eaa9819 1907 int max = mc->max;
815ecf8d
JS
1908 unsigned int mask = (1 << fls(max)) - 1;
1909 unsigned int invert = mc->invert;
46f5822f 1910 unsigned int val, val2, val_mask;
db2a4165
FM
1911
1912 val = (ucontrol->value.integer.value[0] & mask);
1913 if (invert)
a7a4ac86 1914 val = max - val;
db2a4165
FM
1915 val_mask = mask << shift;
1916 val = val << shift;
1917 if (shift != rshift) {
1918 val2 = (ucontrol->value.integer.value[1] & mask);
1919 if (invert)
a7a4ac86 1920 val2 = max - val2;
db2a4165
FM
1921 val_mask |= mask << rshift;
1922 val |= val2 << rshift;
1923 }
a7a4ac86 1924 return snd_soc_update_bits(codec, reg, val_mask, val);
db2a4165
FM
1925}
1926EXPORT_SYMBOL_GPL(snd_soc_put_volsw);
1927
1928/**
1929 * snd_soc_info_volsw_2r - double mixer info callback
1930 * @kcontrol: mixer control
1931 * @uinfo: control element information
1932 *
1933 * Callback to provide information about a double mixer control that
1934 * spans 2 codec registers.
1935 *
1936 * Returns 0 for success.
1937 */
1938int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol,
1939 struct snd_ctl_elem_info *uinfo)
1940{
4eaa9819
JS
1941 struct soc_mixer_control *mc =
1942 (struct soc_mixer_control *)kcontrol->private_value;
1943 int max = mc->max;
a7a4ac86 1944
fd5dfad9 1945 if (max == 1 && !strstr(kcontrol->id.name, " Volume"))
a7a4ac86
PZ
1946 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1947 else
1948 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
db2a4165 1949
db2a4165
FM
1950 uinfo->count = 2;
1951 uinfo->value.integer.min = 0;
a7a4ac86 1952 uinfo->value.integer.max = max;
db2a4165
FM
1953 return 0;
1954}
1955EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r);
1956
1957/**
1958 * snd_soc_get_volsw_2r - double mixer get callback
1959 * @kcontrol: mixer control
ac11a2b3 1960 * @ucontrol: control element information
db2a4165
FM
1961 *
1962 * Callback to get the value of a double mixer control that spans 2 registers.
1963 *
1964 * Returns 0 for success.
1965 */
1966int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol,
1967 struct snd_ctl_elem_value *ucontrol)
1968{
4eaa9819
JS
1969 struct soc_mixer_control *mc =
1970 (struct soc_mixer_control *)kcontrol->private_value;
db2a4165 1971 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d
JS
1972 unsigned int reg = mc->reg;
1973 unsigned int reg2 = mc->rreg;
1974 unsigned int shift = mc->shift;
4eaa9819 1975 int max = mc->max;
46f5822f 1976 unsigned int mask = (1 << fls(max)) - 1;
815ecf8d 1977 unsigned int invert = mc->invert;
db2a4165
FM
1978
1979 ucontrol->value.integer.value[0] =
1980 (snd_soc_read(codec, reg) >> shift) & mask;
1981 ucontrol->value.integer.value[1] =
1982 (snd_soc_read(codec, reg2) >> shift) & mask;
1983 if (invert) {
1984 ucontrol->value.integer.value[0] =
a7a4ac86 1985 max - ucontrol->value.integer.value[0];
db2a4165 1986 ucontrol->value.integer.value[1] =
a7a4ac86 1987 max - ucontrol->value.integer.value[1];
db2a4165
FM
1988 }
1989
1990 return 0;
1991}
1992EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r);
1993
1994/**
1995 * snd_soc_put_volsw_2r - double mixer set callback
1996 * @kcontrol: mixer control
ac11a2b3 1997 * @ucontrol: control element information
db2a4165
FM
1998 *
1999 * Callback to set the value of a double mixer control that spans 2 registers.
2000 *
2001 * Returns 0 for success.
2002 */
2003int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol,
2004 struct snd_ctl_elem_value *ucontrol)
2005{
4eaa9819
JS
2006 struct soc_mixer_control *mc =
2007 (struct soc_mixer_control *)kcontrol->private_value;
db2a4165 2008 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d
JS
2009 unsigned int reg = mc->reg;
2010 unsigned int reg2 = mc->rreg;
2011 unsigned int shift = mc->shift;
4eaa9819 2012 int max = mc->max;
815ecf8d
JS
2013 unsigned int mask = (1 << fls(max)) - 1;
2014 unsigned int invert = mc->invert;
db2a4165 2015 int err;
46f5822f 2016 unsigned int val, val2, val_mask;
db2a4165
FM
2017
2018 val_mask = mask << shift;
2019 val = (ucontrol->value.integer.value[0] & mask);
2020 val2 = (ucontrol->value.integer.value[1] & mask);
2021
2022 if (invert) {
a7a4ac86
PZ
2023 val = max - val;
2024 val2 = max - val2;
db2a4165
FM
2025 }
2026
2027 val = val << shift;
2028 val2 = val2 << shift;
2029
3ff3f64b
MB
2030 err = snd_soc_update_bits(codec, reg, val_mask, val);
2031 if (err < 0)
db2a4165
FM
2032 return err;
2033
2034 err = snd_soc_update_bits(codec, reg2, val_mask, val2);
2035 return err;
2036}
2037EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r);
2038
e13ac2e9
MB
2039/**
2040 * snd_soc_info_volsw_s8 - signed mixer info callback
2041 * @kcontrol: mixer control
2042 * @uinfo: control element information
2043 *
2044 * Callback to provide information about a signed mixer control.
2045 *
2046 * Returns 0 for success.
2047 */
2048int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol,
2049 struct snd_ctl_elem_info *uinfo)
2050{
4eaa9819
JS
2051 struct soc_mixer_control *mc =
2052 (struct soc_mixer_control *)kcontrol->private_value;
2053 int max = mc->max;
2054 int min = mc->min;
e13ac2e9
MB
2055
2056 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2057 uinfo->count = 2;
2058 uinfo->value.integer.min = 0;
2059 uinfo->value.integer.max = max-min;
2060 return 0;
2061}
2062EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8);
2063
2064/**
2065 * snd_soc_get_volsw_s8 - signed mixer get callback
2066 * @kcontrol: mixer control
ac11a2b3 2067 * @ucontrol: control element information
e13ac2e9
MB
2068 *
2069 * Callback to get the value of a signed mixer control.
2070 *
2071 * Returns 0 for success.
2072 */
2073int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol,
2074 struct snd_ctl_elem_value *ucontrol)
2075{
4eaa9819
JS
2076 struct soc_mixer_control *mc =
2077 (struct soc_mixer_control *)kcontrol->private_value;
e13ac2e9 2078 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d 2079 unsigned int reg = mc->reg;
4eaa9819 2080 int min = mc->min;
e13ac2e9
MB
2081 int val = snd_soc_read(codec, reg);
2082
2083 ucontrol->value.integer.value[0] =
2084 ((signed char)(val & 0xff))-min;
2085 ucontrol->value.integer.value[1] =
2086 ((signed char)((val >> 8) & 0xff))-min;
2087 return 0;
2088}
2089EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8);
2090
2091/**
2092 * snd_soc_put_volsw_sgn - signed mixer put callback
2093 * @kcontrol: mixer control
ac11a2b3 2094 * @ucontrol: control element information
e13ac2e9
MB
2095 *
2096 * Callback to set the value of a signed mixer control.
2097 *
2098 * Returns 0 for success.
2099 */
2100int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol,
2101 struct snd_ctl_elem_value *ucontrol)
2102{
4eaa9819
JS
2103 struct soc_mixer_control *mc =
2104 (struct soc_mixer_control *)kcontrol->private_value;
e13ac2e9 2105 struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
815ecf8d 2106 unsigned int reg = mc->reg;
4eaa9819 2107 int min = mc->min;
46f5822f 2108 unsigned int val;
e13ac2e9
MB
2109
2110 val = (ucontrol->value.integer.value[0]+min) & 0xff;
2111 val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8;
2112
2113 return snd_soc_update_bits(codec, reg, 0xffff, val);
2114}
2115EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8);
2116
8c6529db
LG
2117/**
2118 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2119 * @dai: DAI
2120 * @clk_id: DAI specific clock ID
2121 * @freq: new clock frequency in Hz
2122 * @dir: new clock direction - input/output.
2123 *
2124 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2125 */
2126int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,
2127 unsigned int freq, int dir)
2128{
3f1a4d82 2129 if (dai->ops && dai->ops->set_sysclk)
6335d055 2130 return dai->ops->set_sysclk(dai, clk_id, freq, dir);
8c6529db
LG
2131 else
2132 return -EINVAL;
2133}
2134EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk);
2135
2136/**
2137 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2138 * @dai: DAI
ac11a2b3 2139 * @div_id: DAI specific clock divider ID
8c6529db
LG
2140 * @div: new clock divisor.
2141 *
2142 * Configures the clock dividers. This is used to derive the best DAI bit and
2143 * frame clocks from the system or master clock. It's best to set the DAI bit
2144 * and frame clocks as low as possible to save system power.
2145 */
2146int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,
2147 int div_id, int div)
2148{
3f1a4d82 2149 if (dai->ops && dai->ops->set_clkdiv)
6335d055 2150 return dai->ops->set_clkdiv(dai, div_id, div);
8c6529db
LG
2151 else
2152 return -EINVAL;
2153}
2154EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv);
2155
2156/**
2157 * snd_soc_dai_set_pll - configure DAI PLL.
2158 * @dai: DAI
2159 * @pll_id: DAI specific PLL ID
2160 * @freq_in: PLL input clock frequency in Hz
2161 * @freq_out: requested PLL output clock frequency in Hz
2162 *
2163 * Configures and enables PLL to generate output clock based on input clock.
2164 */
2165int snd_soc_dai_set_pll(struct snd_soc_dai *dai,
2166 int pll_id, unsigned int freq_in, unsigned int freq_out)
2167{
3f1a4d82 2168 if (dai->ops && dai->ops->set_pll)
6335d055 2169 return dai->ops->set_pll(dai, pll_id, freq_in, freq_out);
8c6529db
LG
2170 else
2171 return -EINVAL;
2172}
2173EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll);
2174
2175/**
2176 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2177 * @dai: DAI
8c6529db
LG
2178 * @fmt: SND_SOC_DAIFMT_ format value.
2179 *
2180 * Configures the DAI hardware format and clocking.
2181 */
2182int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
2183{
3f1a4d82 2184 if (dai->ops && dai->ops->set_fmt)
6335d055 2185 return dai->ops->set_fmt(dai, fmt);
8c6529db
LG
2186 else
2187 return -EINVAL;
2188}
2189EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt);
2190
2191/**
2192 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2193 * @dai: DAI
2194 * @mask: DAI specific mask representing used slots.
2195 * @slots: Number of slots in use.
2196 *
2197 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2198 * specific.
2199 */
2200int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,
2201 unsigned int mask, int slots)
2202{
3f1a4d82 2203 if (dai->ops && dai->ops->set_tdm_slot)
6335d055 2204 return dai->ops->set_tdm_slot(dai, mask, slots);
8c6529db
LG
2205 else
2206 return -EINVAL;
2207}
2208EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot);
2209
2210/**
2211 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2212 * @dai: DAI
2213 * @tristate: tristate enable
2214 *
2215 * Tristates the DAI so that others can use it.
2216 */
2217int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate)
2218{
3f1a4d82 2219 if (dai->ops && dai->ops->set_tristate)
6335d055 2220 return dai->ops->set_tristate(dai, tristate);
8c6529db
LG
2221 else
2222 return -EINVAL;
2223}
2224EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate);
2225
2226/**
2227 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2228 * @dai: DAI
2229 * @mute: mute enable
2230 *
2231 * Mutes the DAI DAC.
2232 */
2233int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute)
2234{
3f1a4d82 2235 if (dai->ops && dai->ops->digital_mute)
6335d055 2236 return dai->ops->digital_mute(dai, mute);
8c6529db
LG
2237 else
2238 return -EINVAL;
2239}
2240EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute);
2241
c5af3a2e
MB
2242/**
2243 * snd_soc_register_card - Register a card with the ASoC core
2244 *
ac11a2b3 2245 * @card: Card to register
c5af3a2e
MB
2246 *
2247 * Note that currently this is an internal only function: it will be
2248 * exposed to machine drivers after further backporting of ASoC v2
2249 * registration APIs.
2250 */
2251static int snd_soc_register_card(struct snd_soc_card *card)
2252{
2253 if (!card->name || !card->dev)
2254 return -EINVAL;
2255
2256 INIT_LIST_HEAD(&card->list);
2257 card->instantiated = 0;
2258
2259 mutex_lock(&client_mutex);
2260 list_add(&card->list, &card_list);
435c5e25 2261 snd_soc_instantiate_cards();
c5af3a2e
MB
2262 mutex_unlock(&client_mutex);
2263
2264 dev_dbg(card->dev, "Registered card '%s'\n", card->name);
2265
2266 return 0;
2267}
2268
2269/**
2270 * snd_soc_unregister_card - Unregister a card with the ASoC core
2271 *
ac11a2b3 2272 * @card: Card to unregister
c5af3a2e
MB
2273 *
2274 * Note that currently this is an internal only function: it will be
2275 * exposed to machine drivers after further backporting of ASoC v2
2276 * registration APIs.
2277 */
2278static int snd_soc_unregister_card(struct snd_soc_card *card)
2279{
2280 mutex_lock(&client_mutex);
2281 list_del(&card->list);
2282 mutex_unlock(&client_mutex);
2283
2284 dev_dbg(card->dev, "Unregistered card '%s'\n", card->name);
2285
2286 return 0;
2287}
2288
6335d055
EM
2289static struct snd_soc_dai_ops null_dai_ops = {
2290};
2291
9115171a
MB
2292/**
2293 * snd_soc_register_dai - Register a DAI with the ASoC core
2294 *
ac11a2b3 2295 * @dai: DAI to register
9115171a
MB
2296 */
2297int snd_soc_register_dai(struct snd_soc_dai *dai)
2298{
2299 if (!dai->name)
2300 return -EINVAL;
2301
2302 /* The device should become mandatory over time */
2303 if (!dai->dev)
2304 printk(KERN_WARNING "No device for DAI %s\n", dai->name);
2305
6335d055
EM
2306 if (!dai->ops)
2307 dai->ops = &null_dai_ops;
2308
9115171a
MB
2309 INIT_LIST_HEAD(&dai->list);
2310
2311 mutex_lock(&client_mutex);
2312 list_add(&dai->list, &dai_list);
435c5e25 2313 snd_soc_instantiate_cards();
9115171a
MB
2314 mutex_unlock(&client_mutex);
2315
2316 pr_debug("Registered DAI '%s'\n", dai->name);
2317
2318 return 0;
2319}
2320EXPORT_SYMBOL_GPL(snd_soc_register_dai);
2321
2322/**
2323 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
2324 *
ac11a2b3 2325 * @dai: DAI to unregister
9115171a
MB
2326 */
2327void snd_soc_unregister_dai(struct snd_soc_dai *dai)
2328{
2329 mutex_lock(&client_mutex);
2330 list_del(&dai->list);
2331 mutex_unlock(&client_mutex);
2332
2333 pr_debug("Unregistered DAI '%s'\n", dai->name);
2334}
2335EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
2336
2337/**
2338 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
2339 *
ac11a2b3
MB
2340 * @dai: Array of DAIs to register
2341 * @count: Number of DAIs
9115171a
MB
2342 */
2343int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count)
2344{
2345 int i, ret;
2346
2347 for (i = 0; i < count; i++) {
2348 ret = snd_soc_register_dai(&dai[i]);
2349 if (ret != 0)
2350 goto err;
2351 }
2352
2353 return 0;
2354
2355err:
2356 for (i--; i >= 0; i--)
2357 snd_soc_unregister_dai(&dai[i]);
2358
2359 return ret;
2360}
2361EXPORT_SYMBOL_GPL(snd_soc_register_dais);
2362
2363/**
2364 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
2365 *
ac11a2b3
MB
2366 * @dai: Array of DAIs to unregister
2367 * @count: Number of DAIs
9115171a
MB
2368 */
2369void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count)
2370{
2371 int i;
2372
2373 for (i = 0; i < count; i++)
2374 snd_soc_unregister_dai(&dai[i]);
2375}
2376EXPORT_SYMBOL_GPL(snd_soc_unregister_dais);
2377
12a48a8c
MB
2378/**
2379 * snd_soc_register_platform - Register a platform with the ASoC core
2380 *
ac11a2b3 2381 * @platform: platform to register
12a48a8c
MB
2382 */
2383int snd_soc_register_platform(struct snd_soc_platform *platform)
2384{
2385 if (!platform->name)
2386 return -EINVAL;
2387
2388 INIT_LIST_HEAD(&platform->list);
2389
2390 mutex_lock(&client_mutex);
2391 list_add(&platform->list, &platform_list);
435c5e25 2392 snd_soc_instantiate_cards();
12a48a8c
MB
2393 mutex_unlock(&client_mutex);
2394
2395 pr_debug("Registered platform '%s'\n", platform->name);
2396
2397 return 0;
2398}
2399EXPORT_SYMBOL_GPL(snd_soc_register_platform);
2400
2401/**
2402 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
2403 *
ac11a2b3 2404 * @platform: platform to unregister
12a48a8c
MB
2405 */
2406void snd_soc_unregister_platform(struct snd_soc_platform *platform)
2407{
2408 mutex_lock(&client_mutex);
2409 list_del(&platform->list);
2410 mutex_unlock(&client_mutex);
2411
2412 pr_debug("Unregistered platform '%s'\n", platform->name);
2413}
2414EXPORT_SYMBOL_GPL(snd_soc_unregister_platform);
2415
151ab22c
MB
2416static u64 codec_format_map[] = {
2417 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE,
2418 SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE,
2419 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE,
2420 SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE,
2421 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE,
2422 SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE,
2423 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2424 SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE,
2425 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE,
2426 SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE,
2427 SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE,
2428 SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE,
2429 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE,
2430 SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE,
2431 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
2432 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE,
2433};
2434
2435/* Fix up the DAI formats for endianness: codecs don't actually see
2436 * the endianness of the data but we're using the CPU format
2437 * definitions which do need to include endianness so we ensure that
2438 * codec DAIs always have both big and little endian variants set.
2439 */
2440static void fixup_codec_formats(struct snd_soc_pcm_stream *stream)
2441{
2442 int i;
2443
2444 for (i = 0; i < ARRAY_SIZE(codec_format_map); i++)
2445 if (stream->formats & codec_format_map[i])
2446 stream->formats |= codec_format_map[i];
2447}
2448
0d0cf00a
MB
2449/**
2450 * snd_soc_register_codec - Register a codec with the ASoC core
2451 *
ac11a2b3 2452 * @codec: codec to register
0d0cf00a
MB
2453 */
2454int snd_soc_register_codec(struct snd_soc_codec *codec)
2455{
151ab22c
MB
2456 int i;
2457
0d0cf00a
MB
2458 if (!codec->name)
2459 return -EINVAL;
2460
2461 /* The device should become mandatory over time */
2462 if (!codec->dev)
2463 printk(KERN_WARNING "No device for codec %s\n", codec->name);
2464
2465 INIT_LIST_HEAD(&codec->list);
2466
151ab22c
MB
2467 for (i = 0; i < codec->num_dai; i++) {
2468 fixup_codec_formats(&codec->dai[i].playback);
2469 fixup_codec_formats(&codec->dai[i].capture);
2470 }
2471
0d0cf00a
MB
2472 mutex_lock(&client_mutex);
2473 list_add(&codec->list, &codec_list);
2474 snd_soc_instantiate_cards();
2475 mutex_unlock(&client_mutex);
2476
2477 pr_debug("Registered codec '%s'\n", codec->name);
2478
2479 return 0;
2480}
2481EXPORT_SYMBOL_GPL(snd_soc_register_codec);
2482
2483/**
2484 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
2485 *
ac11a2b3 2486 * @codec: codec to unregister
0d0cf00a
MB
2487 */
2488void snd_soc_unregister_codec(struct snd_soc_codec *codec)
2489{
2490 mutex_lock(&client_mutex);
2491 list_del(&codec->list);
2492 mutex_unlock(&client_mutex);
2493
2494 pr_debug("Unregistered codec '%s'\n", codec->name);
2495}
2496EXPORT_SYMBOL_GPL(snd_soc_unregister_codec);
2497
c9b3a40f 2498static int __init snd_soc_init(void)
db2a4165 2499{
384c89e2
MB
2500#ifdef CONFIG_DEBUG_FS
2501 debugfs_root = debugfs_create_dir("asoc", NULL);
2502 if (IS_ERR(debugfs_root) || !debugfs_root) {
2503 printk(KERN_WARNING
2504 "ASoC: Failed to create debugfs directory\n");
2505 debugfs_root = NULL;
2506 }
2507#endif
2508
db2a4165
FM
2509 return platform_driver_register(&soc_driver);
2510}
2511
7d8c16a6 2512static void __exit snd_soc_exit(void)
db2a4165 2513{
384c89e2
MB
2514#ifdef CONFIG_DEBUG_FS
2515 debugfs_remove_recursive(debugfs_root);
2516#endif
3ff3f64b 2517 platform_driver_unregister(&soc_driver);
db2a4165
FM
2518}
2519
2520module_init(snd_soc_init);
2521module_exit(snd_soc_exit);
2522
2523/* Module information */
d331124d 2524MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
db2a4165
FM
2525MODULE_DESCRIPTION("ALSA SoC Core");
2526MODULE_LICENSE("GPL");
8b45a209 2527MODULE_ALIAS("platform:soc-audio");
This page took 0.611137 seconds and 5 git commands to generate.