2 * soc-core.c -- ALSA SoC Audio Layer
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Copyright 2005 Openedhand Ltd.
6 * Copyright (C) 2010 Slimlogic Ltd.
7 * Copyright (C) 2010 Texas Instruments Inc.
9 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
10 * with code, comments and ideas from :-
11 * Richard Purdie <richard@openedhand.com>
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 * o Add hw rules to enforce rates, etc.
20 * o More testing with other codecs/machines.
21 * o Add more codecs and platforms to ensure good API coverage.
22 * o Support TDM on PCM and I2S
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
30 #include <linux/bitops.h>
31 #include <linux/debugfs.h>
32 #include <linux/platform_device.h>
33 #include <linux/ctype.h>
34 #include <linux/slab.h>
35 #include <sound/ac97_codec.h>
36 #include <sound/core.h>
37 #include <sound/jack.h>
38 #include <sound/pcm.h>
39 #include <sound/pcm_params.h>
40 #include <sound/soc.h>
41 #include <sound/initval.h>
43 #define CREATE_TRACE_POINTS
44 #include <trace/events/asoc.h>
48 static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq
);
50 #ifdef CONFIG_DEBUG_FS
51 struct dentry
*snd_soc_debugfs_root
;
52 EXPORT_SYMBOL_GPL(snd_soc_debugfs_root
);
55 static DEFINE_MUTEX(client_mutex
);
56 static LIST_HEAD(card_list
);
57 static LIST_HEAD(dai_list
);
58 static LIST_HEAD(platform_list
);
59 static LIST_HEAD(codec_list
);
61 int soc_new_pcm(struct snd_soc_pcm_runtime
*rtd
, int num
);
64 * This is a timeout to do a DAPM powerdown after a stream is closed().
65 * It can be used to eliminate pops between different playback streams, e.g.
66 * between two audio tracks.
68 static int pmdown_time
= 5000;
69 module_param(pmdown_time
, int, 0);
70 MODULE_PARM_DESC(pmdown_time
, "DAPM stream powerdown time (msecs)");
72 /* returns the minimum number of bytes needed to represent
73 * a particular given value */
74 static int min_bytes_needed(unsigned long val
)
79 for (i
= (sizeof val
* 8) - 1; i
>= 0; --i
, ++c
)
82 c
= (sizeof val
* 8) - c
;
90 /* fill buf which is 'len' bytes with a formatted
91 * string of the form 'reg: value\n' */
92 static int format_register_str(struct snd_soc_codec
*codec
,
93 unsigned int reg
, char *buf
, size_t len
)
95 int wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
96 int regsize
= codec
->driver
->reg_word_size
* 2;
99 char regbuf
[regsize
+ 1];
101 /* since tmpbuf is allocated on the stack, warn the callers if they
102 * try to abuse this function */
105 /* +2 for ': ' and + 1 for '\n' */
106 if (wordsize
+ regsize
+ 2 + 1 != len
)
109 ret
= snd_soc_read(codec
, reg
);
111 memset(regbuf
, 'X', regsize
);
112 regbuf
[regsize
] = '\0';
114 snprintf(regbuf
, regsize
+ 1, "%.*x", regsize
, ret
);
117 /* prepare the buffer */
118 snprintf(tmpbuf
, len
+ 1, "%.*x: %s\n", wordsize
, reg
, regbuf
);
119 /* copy it back to the caller without the '\0' */
120 memcpy(buf
, tmpbuf
, len
);
125 /* codec register dump */
126 static ssize_t
soc_codec_reg_show(struct snd_soc_codec
*codec
, char *buf
,
127 size_t count
, loff_t pos
)
130 int wordsize
, regsize
;
135 wordsize
= min_bytes_needed(codec
->driver
->reg_cache_size
) * 2;
136 regsize
= codec
->driver
->reg_word_size
* 2;
138 len
= wordsize
+ regsize
+ 2 + 1;
140 if (!codec
->driver
->reg_cache_size
)
143 if (codec
->driver
->reg_cache_step
)
144 step
= codec
->driver
->reg_cache_step
;
146 for (i
= 0; i
< codec
->driver
->reg_cache_size
; i
+= step
) {
147 if (codec
->readable_register
&& !codec
->readable_register(codec
, i
))
149 if (codec
->driver
->display_register
) {
150 count
+= codec
->driver
->display_register(codec
, buf
+ count
,
151 PAGE_SIZE
- count
, i
);
153 /* only support larger than PAGE_SIZE bytes debugfs
154 * entries for the default case */
156 if (total
+ len
>= count
- 1)
158 format_register_str(codec
, i
, buf
+ total
, len
);
165 total
= min(total
, count
- 1);
170 static ssize_t
codec_reg_show(struct device
*dev
,
171 struct device_attribute
*attr
, char *buf
)
173 struct snd_soc_pcm_runtime
*rtd
=
174 container_of(dev
, struct snd_soc_pcm_runtime
, dev
);
176 return soc_codec_reg_show(rtd
->codec
, buf
, PAGE_SIZE
, 0);
179 static DEVICE_ATTR(codec_reg
, 0444, codec_reg_show
, NULL
);
181 static ssize_t
pmdown_time_show(struct device
*dev
,
182 struct device_attribute
*attr
, char *buf
)
184 struct snd_soc_pcm_runtime
*rtd
=
185 container_of(dev
, struct snd_soc_pcm_runtime
, dev
);
187 return sprintf(buf
, "%ld\n", rtd
->pmdown_time
);
190 static ssize_t
pmdown_time_set(struct device
*dev
,
191 struct device_attribute
*attr
,
192 const char *buf
, size_t count
)
194 struct snd_soc_pcm_runtime
*rtd
=
195 container_of(dev
, struct snd_soc_pcm_runtime
, dev
);
198 ret
= strict_strtol(buf
, 10, &rtd
->pmdown_time
);
205 static DEVICE_ATTR(pmdown_time
, 0644, pmdown_time_show
, pmdown_time_set
);
207 #ifdef CONFIG_DEBUG_FS
208 static int codec_reg_open_file(struct inode
*inode
, struct file
*file
)
210 file
->private_data
= inode
->i_private
;
214 static ssize_t
codec_reg_read_file(struct file
*file
, char __user
*user_buf
,
215 size_t count
, loff_t
*ppos
)
218 struct snd_soc_codec
*codec
= file
->private_data
;
221 if (*ppos
< 0 || !count
)
224 buf
= kmalloc(count
, GFP_KERNEL
);
228 ret
= soc_codec_reg_show(codec
, buf
, count
, *ppos
);
230 if (copy_to_user(user_buf
, buf
, ret
)) {
241 static ssize_t
codec_reg_write_file(struct file
*file
,
242 const char __user
*user_buf
, size_t count
, loff_t
*ppos
)
247 unsigned long reg
, value
;
249 struct snd_soc_codec
*codec
= file
->private_data
;
251 buf_size
= min(count
, (sizeof(buf
)-1));
252 if (copy_from_user(buf
, user_buf
, buf_size
))
256 if (codec
->driver
->reg_cache_step
)
257 step
= codec
->driver
->reg_cache_step
;
259 while (*start
== ' ')
261 reg
= simple_strtoul(start
, &start
, 16);
262 while (*start
== ' ')
264 if (strict_strtoul(start
, 16, &value
))
267 /* Userspace has been fiddling around behind the kernel's back */
268 add_taint(TAINT_USER
);
270 snd_soc_write(codec
, reg
, value
);
274 static const struct file_operations codec_reg_fops
= {
275 .open
= codec_reg_open_file
,
276 .read
= codec_reg_read_file
,
277 .write
= codec_reg_write_file
,
278 .llseek
= default_llseek
,
281 static void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
283 struct dentry
*debugfs_card_root
= codec
->card
->debugfs_card_root
;
285 codec
->debugfs_codec_root
= debugfs_create_dir(codec
->name
,
287 if (!codec
->debugfs_codec_root
) {
289 "ASoC: Failed to create codec debugfs directory\n");
293 debugfs_create_bool("cache_sync", 0444, codec
->debugfs_codec_root
,
295 debugfs_create_bool("cache_only", 0444, codec
->debugfs_codec_root
,
298 codec
->debugfs_reg
= debugfs_create_file("codec_reg", 0644,
299 codec
->debugfs_codec_root
,
300 codec
, &codec_reg_fops
);
301 if (!codec
->debugfs_reg
)
303 "ASoC: Failed to create codec register debugfs file\n");
305 snd_soc_dapm_debugfs_init(&codec
->dapm
, codec
->debugfs_codec_root
);
308 static void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
310 debugfs_remove_recursive(codec
->debugfs_codec_root
);
313 static ssize_t
codec_list_read_file(struct file
*file
, char __user
*user_buf
,
314 size_t count
, loff_t
*ppos
)
316 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
317 ssize_t len
, ret
= 0;
318 struct snd_soc_codec
*codec
;
323 list_for_each_entry(codec
, &codec_list
, list
) {
324 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
328 if (ret
> PAGE_SIZE
) {
335 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
342 static const struct file_operations codec_list_fops
= {
343 .read
= codec_list_read_file
,
344 .llseek
= default_llseek
,/* read accesses f_pos */
347 static ssize_t
dai_list_read_file(struct file
*file
, char __user
*user_buf
,
348 size_t count
, loff_t
*ppos
)
350 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
351 ssize_t len
, ret
= 0;
352 struct snd_soc_dai
*dai
;
357 list_for_each_entry(dai
, &dai_list
, list
) {
358 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n", dai
->name
);
361 if (ret
> PAGE_SIZE
) {
367 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
374 static const struct file_operations dai_list_fops
= {
375 .read
= dai_list_read_file
,
376 .llseek
= default_llseek
,/* read accesses f_pos */
379 static ssize_t
platform_list_read_file(struct file
*file
,
380 char __user
*user_buf
,
381 size_t count
, loff_t
*ppos
)
383 char *buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
384 ssize_t len
, ret
= 0;
385 struct snd_soc_platform
*platform
;
390 list_for_each_entry(platform
, &platform_list
, list
) {
391 len
= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "%s\n",
395 if (ret
> PAGE_SIZE
) {
401 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
408 static const struct file_operations platform_list_fops
= {
409 .read
= platform_list_read_file
,
410 .llseek
= default_llseek
,/* read accesses f_pos */
413 static void soc_init_card_debugfs(struct snd_soc_card
*card
)
415 card
->debugfs_card_root
= debugfs_create_dir(card
->name
,
416 snd_soc_debugfs_root
);
417 if (!card
->debugfs_card_root
) {
419 "ASoC: Failed to create codec debugfs directory\n");
423 card
->debugfs_pop_time
= debugfs_create_u32("dapm_pop_time", 0644,
424 card
->debugfs_card_root
,
426 if (!card
->debugfs_pop_time
)
428 "Failed to create pop time debugfs file\n");
431 static void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
433 debugfs_remove_recursive(card
->debugfs_card_root
);
438 static inline void soc_init_codec_debugfs(struct snd_soc_codec
*codec
)
442 static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec
*codec
)
446 static inline void soc_init_card_debugfs(struct snd_soc_card
*card
)
450 static inline void soc_cleanup_card_debugfs(struct snd_soc_card
*card
)
455 #ifdef CONFIG_SND_SOC_AC97_BUS
456 /* unregister ac97 codec */
457 static int soc_ac97_dev_unregister(struct snd_soc_codec
*codec
)
459 if (codec
->ac97
->dev
.bus
)
460 device_unregister(&codec
->ac97
->dev
);
464 /* stop no dev release warning */
465 static void soc_ac97_device_release(struct device
*dev
){}
467 /* register ac97 codec to bus */
468 static int soc_ac97_dev_register(struct snd_soc_codec
*codec
)
472 codec
->ac97
->dev
.bus
= &ac97_bus_type
;
473 codec
->ac97
->dev
.parent
= codec
->card
->dev
;
474 codec
->ac97
->dev
.release
= soc_ac97_device_release
;
476 dev_set_name(&codec
->ac97
->dev
, "%d-%d:%s",
477 codec
->card
->snd_card
->number
, 0, codec
->name
);
478 err
= device_register(&codec
->ac97
->dev
);
480 snd_printk(KERN_ERR
"Can't register ac97 bus\n");
481 codec
->ac97
->dev
.bus
= NULL
;
488 #ifdef CONFIG_PM_SLEEP
489 /* powers down audio subsystem for suspend */
490 int snd_soc_suspend(struct device
*dev
)
492 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
493 struct snd_soc_codec
*codec
;
496 /* If the initialization of this soc device failed, there is no codec
497 * associated with it. Just bail out in this case.
499 if (list_empty(&card
->codec_dev_list
))
502 /* Due to the resume being scheduled into a workqueue we could
503 * suspend before that's finished - wait for it to complete.
505 snd_power_lock(card
->snd_card
);
506 snd_power_wait(card
->snd_card
, SNDRV_CTL_POWER_D0
);
507 snd_power_unlock(card
->snd_card
);
509 /* we're going to block userspace touching us until resume completes */
510 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D3hot
);
512 /* mute any active DACs */
513 for (i
= 0; i
< card
->num_rtd
; i
++) {
514 struct snd_soc_dai
*dai
= card
->rtd
[i
].codec_dai
;
515 struct snd_soc_dai_driver
*drv
= dai
->driver
;
517 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
520 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
521 drv
->ops
->digital_mute(dai
, 1);
524 /* suspend all pcms */
525 for (i
= 0; i
< card
->num_rtd
; i
++) {
526 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
529 snd_pcm_suspend_all(card
->rtd
[i
].pcm
);
532 if (card
->suspend_pre
)
533 card
->suspend_pre(card
);
535 for (i
= 0; i
< card
->num_rtd
; i
++) {
536 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
537 struct snd_soc_platform
*platform
= card
->rtd
[i
].platform
;
539 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
542 if (cpu_dai
->driver
->suspend
&& !cpu_dai
->driver
->ac97_control
)
543 cpu_dai
->driver
->suspend(cpu_dai
);
544 if (platform
->driver
->suspend
&& !platform
->suspended
) {
545 platform
->driver
->suspend(cpu_dai
);
546 platform
->suspended
= 1;
550 /* close any waiting streams and save state */
551 for (i
= 0; i
< card
->num_rtd
; i
++) {
552 flush_delayed_work_sync(&card
->rtd
[i
].delayed_work
);
553 card
->rtd
[i
].codec
->dapm
.suspend_bias_level
= card
->rtd
[i
].codec
->dapm
.bias_level
;
556 for (i
= 0; i
< card
->num_rtd
; i
++) {
557 struct snd_soc_dai_driver
*driver
= card
->rtd
[i
].codec_dai
->driver
;
559 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
562 if (driver
->playback
.stream_name
!= NULL
)
563 snd_soc_dapm_stream_event(&card
->rtd
[i
], driver
->playback
.stream_name
,
564 SND_SOC_DAPM_STREAM_SUSPEND
);
566 if (driver
->capture
.stream_name
!= NULL
)
567 snd_soc_dapm_stream_event(&card
->rtd
[i
], driver
->capture
.stream_name
,
568 SND_SOC_DAPM_STREAM_SUSPEND
);
571 /* suspend all CODECs */
572 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
) {
573 /* If there are paths active then the CODEC will be held with
574 * bias _ON and should not be suspended. */
575 if (!codec
->suspended
&& codec
->driver
->suspend
) {
576 switch (codec
->dapm
.bias_level
) {
577 case SND_SOC_BIAS_STANDBY
:
578 case SND_SOC_BIAS_OFF
:
579 codec
->driver
->suspend(codec
, PMSG_SUSPEND
);
580 codec
->suspended
= 1;
581 codec
->cache_sync
= 1;
584 dev_dbg(codec
->dev
, "CODEC is on over suspend\n");
590 for (i
= 0; i
< card
->num_rtd
; i
++) {
591 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
593 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
596 if (cpu_dai
->driver
->suspend
&& cpu_dai
->driver
->ac97_control
)
597 cpu_dai
->driver
->suspend(cpu_dai
);
600 if (card
->suspend_post
)
601 card
->suspend_post(card
);
605 EXPORT_SYMBOL_GPL(snd_soc_suspend
);
607 /* deferred resume work, so resume can complete before we finished
608 * setting our codec back up, which can be very slow on I2C
610 static void soc_resume_deferred(struct work_struct
*work
)
612 struct snd_soc_card
*card
=
613 container_of(work
, struct snd_soc_card
, deferred_resume_work
);
614 struct snd_soc_codec
*codec
;
617 /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time,
618 * so userspace apps are blocked from touching us
621 dev_dbg(card
->dev
, "starting resume work\n");
623 /* Bring us up into D2 so that DAPM starts enabling things */
624 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D2
);
626 if (card
->resume_pre
)
627 card
->resume_pre(card
);
629 /* resume AC97 DAIs */
630 for (i
= 0; i
< card
->num_rtd
; i
++) {
631 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
633 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
636 if (cpu_dai
->driver
->resume
&& cpu_dai
->driver
->ac97_control
)
637 cpu_dai
->driver
->resume(cpu_dai
);
640 list_for_each_entry(codec
, &card
->codec_dev_list
, card_list
) {
641 /* If the CODEC was idle over suspend then it will have been
642 * left with bias OFF or STANDBY and suspended so we must now
643 * resume. Otherwise the suspend was suppressed.
645 if (codec
->driver
->resume
&& codec
->suspended
) {
646 switch (codec
->dapm
.bias_level
) {
647 case SND_SOC_BIAS_STANDBY
:
648 case SND_SOC_BIAS_OFF
:
649 codec
->driver
->resume(codec
);
650 codec
->suspended
= 0;
653 dev_dbg(codec
->dev
, "CODEC was on over suspend\n");
659 for (i
= 0; i
< card
->num_rtd
; i
++) {
660 struct snd_soc_dai_driver
*driver
= card
->rtd
[i
].codec_dai
->driver
;
662 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
665 if (driver
->playback
.stream_name
!= NULL
)
666 snd_soc_dapm_stream_event(&card
->rtd
[i
], driver
->playback
.stream_name
,
667 SND_SOC_DAPM_STREAM_RESUME
);
669 if (driver
->capture
.stream_name
!= NULL
)
670 snd_soc_dapm_stream_event(&card
->rtd
[i
], driver
->capture
.stream_name
,
671 SND_SOC_DAPM_STREAM_RESUME
);
674 /* unmute any active DACs */
675 for (i
= 0; i
< card
->num_rtd
; i
++) {
676 struct snd_soc_dai
*dai
= card
->rtd
[i
].codec_dai
;
677 struct snd_soc_dai_driver
*drv
= dai
->driver
;
679 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
682 if (drv
->ops
->digital_mute
&& dai
->playback_active
)
683 drv
->ops
->digital_mute(dai
, 0);
686 for (i
= 0; i
< card
->num_rtd
; i
++) {
687 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
688 struct snd_soc_platform
*platform
= card
->rtd
[i
].platform
;
690 if (card
->rtd
[i
].dai_link
->ignore_suspend
)
693 if (cpu_dai
->driver
->resume
&& !cpu_dai
->driver
->ac97_control
)
694 cpu_dai
->driver
->resume(cpu_dai
);
695 if (platform
->driver
->resume
&& platform
->suspended
) {
696 platform
->driver
->resume(cpu_dai
);
697 platform
->suspended
= 0;
701 if (card
->resume_post
)
702 card
->resume_post(card
);
704 dev_dbg(card
->dev
, "resume work completed\n");
706 /* userspace can access us now we are back as we were before */
707 snd_power_change_state(card
->snd_card
, SNDRV_CTL_POWER_D0
);
710 /* powers up audio subsystem after a suspend */
711 int snd_soc_resume(struct device
*dev
)
713 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
714 int i
, ac97_control
= 0;
716 /* AC97 devices might have other drivers hanging off them so
717 * need to resume immediately. Other drivers don't have that
718 * problem and may take a substantial amount of time to resume
719 * due to I/O costs and anti-pop so handle them out of line.
721 for (i
= 0; i
< card
->num_rtd
; i
++) {
722 struct snd_soc_dai
*cpu_dai
= card
->rtd
[i
].cpu_dai
;
723 ac97_control
|= cpu_dai
->driver
->ac97_control
;
726 dev_dbg(dev
, "Resuming AC97 immediately\n");
727 soc_resume_deferred(&card
->deferred_resume_work
);
729 dev_dbg(dev
, "Scheduling resume work\n");
730 if (!schedule_work(&card
->deferred_resume_work
))
731 dev_err(dev
, "resume work item may be lost\n");
736 EXPORT_SYMBOL_GPL(snd_soc_resume
);
738 #define snd_soc_suspend NULL
739 #define snd_soc_resume NULL
742 static struct snd_soc_dai_ops null_dai_ops
= {
745 static int soc_bind_dai_link(struct snd_soc_card
*card
, int num
)
747 struct snd_soc_dai_link
*dai_link
= &card
->dai_link
[num
];
748 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
749 struct snd_soc_codec
*codec
;
750 struct snd_soc_platform
*platform
;
751 struct snd_soc_dai
*codec_dai
, *cpu_dai
;
752 const char *platform_name
;
756 dev_dbg(card
->dev
, "binding %s at idx %d\n", dai_link
->name
, num
);
758 /* do we already have the CPU DAI for this link ? */
762 /* no, then find CPU DAI from registered DAIs*/
763 list_for_each_entry(cpu_dai
, &dai_list
, list
) {
764 if (!strcmp(cpu_dai
->name
, dai_link
->cpu_dai_name
)) {
765 rtd
->cpu_dai
= cpu_dai
;
769 dev_dbg(card
->dev
, "CPU DAI %s not registered\n",
770 dai_link
->cpu_dai_name
);
773 /* do we already have the CODEC for this link ? */
778 /* no, then find CODEC from registered CODECs*/
779 list_for_each_entry(codec
, &codec_list
, list
) {
780 if (!strcmp(codec
->name
, dai_link
->codec_name
)) {
783 /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/
784 list_for_each_entry(codec_dai
, &dai_list
, list
) {
785 if (codec
->dev
== codec_dai
->dev
&&
786 !strcmp(codec_dai
->name
, dai_link
->codec_dai_name
)) {
787 rtd
->codec_dai
= codec_dai
;
791 dev_dbg(card
->dev
, "CODEC DAI %s not registered\n",
792 dai_link
->codec_dai_name
);
797 dev_dbg(card
->dev
, "CODEC %s not registered\n",
798 dai_link
->codec_name
);
801 /* do we need a platform? */
805 /* if there's no platform we match on the empty platform */
806 platform_name
= dai_link
->platform_name
;
808 platform_name
= "snd-soc-dummy";
810 /* no, then find one from the set of registered platforms */
811 list_for_each_entry(platform
, &platform_list
, list
) {
812 if (!strcmp(platform
->name
, platform_name
)) {
813 rtd
->platform
= platform
;
818 dev_dbg(card
->dev
, "platform %s not registered\n",
819 dai_link
->platform_name
);
823 /* mark rtd as complete if we found all 4 of our client devices */
824 if (rtd
->codec
&& rtd
->codec_dai
&& rtd
->platform
&& rtd
->cpu_dai
) {
831 static void soc_remove_codec(struct snd_soc_codec
*codec
)
835 if (codec
->driver
->remove
) {
836 err
= codec
->driver
->remove(codec
);
839 "asoc: failed to remove %s: %d\n",
843 /* Make sure all DAPM widgets are freed */
844 snd_soc_dapm_free(&codec
->dapm
);
846 soc_cleanup_codec_debugfs(codec
);
848 list_del(&codec
->card_list
);
849 module_put(codec
->dev
->driver
->owner
);
852 static void soc_remove_dai_link(struct snd_soc_card
*card
, int num
, int order
)
854 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
855 struct snd_soc_codec
*codec
= rtd
->codec
;
856 struct snd_soc_platform
*platform
= rtd
->platform
;
857 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
, *cpu_dai
= rtd
->cpu_dai
;
860 /* unregister the rtd device */
861 if (rtd
->dev_registered
) {
862 device_remove_file(&rtd
->dev
, &dev_attr_pmdown_time
);
863 device_remove_file(&rtd
->dev
, &dev_attr_codec_reg
);
864 device_unregister(&rtd
->dev
);
865 rtd
->dev_registered
= 0;
868 /* remove the CODEC DAI */
869 if (codec_dai
&& codec_dai
->probed
&&
870 codec_dai
->driver
->remove_order
== order
) {
871 if (codec_dai
->driver
->remove
) {
872 err
= codec_dai
->driver
->remove(codec_dai
);
874 printk(KERN_ERR
"asoc: failed to remove %s\n", codec_dai
->name
);
876 codec_dai
->probed
= 0;
877 list_del(&codec_dai
->card_list
);
880 /* remove the platform */
881 if (platform
&& platform
->probed
&&
882 platform
->driver
->remove_order
== order
) {
883 if (platform
->driver
->remove
) {
884 err
= platform
->driver
->remove(platform
);
886 printk(KERN_ERR
"asoc: failed to remove %s\n", platform
->name
);
888 platform
->probed
= 0;
889 list_del(&platform
->card_list
);
890 module_put(platform
->dev
->driver
->owner
);
893 /* remove the CODEC */
894 if (codec
&& codec
->probed
&&
895 codec
->driver
->remove_order
== order
)
896 soc_remove_codec(codec
);
898 /* remove the cpu_dai */
899 if (cpu_dai
&& cpu_dai
->probed
&&
900 cpu_dai
->driver
->remove_order
== order
) {
901 if (cpu_dai
->driver
->remove
) {
902 err
= cpu_dai
->driver
->remove(cpu_dai
);
904 printk(KERN_ERR
"asoc: failed to remove %s\n", cpu_dai
->name
);
907 list_del(&cpu_dai
->card_list
);
908 module_put(cpu_dai
->dev
->driver
->owner
);
912 static void soc_remove_dai_links(struct snd_soc_card
*card
)
916 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
918 for (dai
= 0; dai
< card
->num_rtd
; dai
++)
919 soc_remove_dai_link(card
, dai
, order
);
924 static void soc_set_name_prefix(struct snd_soc_card
*card
,
925 struct snd_soc_codec
*codec
)
929 if (card
->codec_conf
== NULL
)
932 for (i
= 0; i
< card
->num_configs
; i
++) {
933 struct snd_soc_codec_conf
*map
= &card
->codec_conf
[i
];
934 if (map
->dev_name
&& !strcmp(codec
->name
, map
->dev_name
)) {
935 codec
->name_prefix
= map
->name_prefix
;
941 static int soc_probe_codec(struct snd_soc_card
*card
,
942 struct snd_soc_codec
*codec
)
945 const struct snd_soc_codec_driver
*driver
= codec
->driver
;
948 codec
->dapm
.card
= card
;
949 soc_set_name_prefix(card
, codec
);
951 if (!try_module_get(codec
->dev
->driver
->owner
))
954 soc_init_codec_debugfs(codec
);
956 if (driver
->dapm_widgets
)
957 snd_soc_dapm_new_controls(&codec
->dapm
, driver
->dapm_widgets
,
958 driver
->num_dapm_widgets
);
961 ret
= driver
->probe(codec
);
964 "asoc: failed to probe CODEC %s: %d\n",
970 if (driver
->controls
)
971 snd_soc_add_controls(codec
, driver
->controls
,
972 driver
->num_controls
);
973 if (driver
->dapm_routes
)
974 snd_soc_dapm_add_routes(&codec
->dapm
, driver
->dapm_routes
,
975 driver
->num_dapm_routes
);
977 /* mark codec as probed and add to card codec list */
979 list_add(&codec
->card_list
, &card
->codec_dev_list
);
980 list_add(&codec
->dapm
.list
, &card
->dapm_list
);
985 soc_cleanup_codec_debugfs(codec
);
986 module_put(codec
->dev
->driver
->owner
);
991 static int soc_probe_platform(struct snd_soc_card
*card
,
992 struct snd_soc_platform
*platform
)
995 const struct snd_soc_platform_driver
*driver
= platform
->driver
;
997 platform
->card
= card
;
998 platform
->dapm
.card
= card
;
1000 if (!try_module_get(platform
->dev
->driver
->owner
))
1003 if (driver
->dapm_widgets
)
1004 snd_soc_dapm_new_controls(&platform
->dapm
,
1005 driver
->dapm_widgets
, driver
->num_dapm_widgets
);
1007 if (driver
->probe
) {
1008 ret
= driver
->probe(platform
);
1010 dev_err(platform
->dev
,
1011 "asoc: failed to probe platform %s: %d\n",
1012 platform
->name
, ret
);
1017 if (driver
->controls
)
1018 snd_soc_add_platform_controls(platform
, driver
->controls
,
1019 driver
->num_controls
);
1020 if (driver
->dapm_routes
)
1021 snd_soc_dapm_add_routes(&platform
->dapm
, driver
->dapm_routes
,
1022 driver
->num_dapm_routes
);
1024 /* mark platform as probed and add to card platform list */
1025 platform
->probed
= 1;
1026 list_add(&platform
->card_list
, &card
->platform_dev_list
);
1027 list_add(&platform
->dapm
.list
, &card
->dapm_list
);
1032 module_put(platform
->dev
->driver
->owner
);
1037 static void rtd_release(struct device
*dev
) {}
1039 static int soc_post_component_init(struct snd_soc_card
*card
,
1040 struct snd_soc_codec
*codec
,
1041 int num
, int dailess
)
1043 struct snd_soc_dai_link
*dai_link
= NULL
;
1044 struct snd_soc_aux_dev
*aux_dev
= NULL
;
1045 struct snd_soc_pcm_runtime
*rtd
;
1046 const char *temp
, *name
;
1050 dai_link
= &card
->dai_link
[num
];
1051 rtd
= &card
->rtd
[num
];
1052 name
= dai_link
->name
;
1054 aux_dev
= &card
->aux_dev
[num
];
1055 rtd
= &card
->rtd_aux
[num
];
1056 name
= aux_dev
->name
;
1060 /* machine controls, routes and widgets are not prefixed */
1061 temp
= codec
->name_prefix
;
1062 codec
->name_prefix
= NULL
;
1064 /* do machine specific initialization */
1065 if (!dailess
&& dai_link
->init
)
1066 ret
= dai_link
->init(rtd
);
1067 else if (dailess
&& aux_dev
->init
)
1068 ret
= aux_dev
->init(&codec
->dapm
);
1070 dev_err(card
->dev
, "asoc: failed to init %s: %d\n", name
, ret
);
1073 codec
->name_prefix
= temp
;
1075 /* Make sure all DAPM widgets are instantiated */
1076 snd_soc_dapm_new_widgets(&codec
->dapm
);
1078 /* register the rtd device */
1080 rtd
->dev
.parent
= card
->dev
;
1081 rtd
->dev
.release
= rtd_release
;
1082 rtd
->dev
.init_name
= name
;
1083 mutex_init(&rtd
->pcm_mutex
);
1084 ret
= device_register(&rtd
->dev
);
1087 "asoc: failed to register runtime device: %d\n", ret
);
1090 rtd
->dev_registered
= 1;
1092 /* add DAPM sysfs entries for this codec */
1093 ret
= snd_soc_dapm_sys_add(&rtd
->dev
);
1096 "asoc: failed to add codec dapm sysfs entries: %d\n",
1099 /* add codec sysfs entries */
1100 ret
= device_create_file(&rtd
->dev
, &dev_attr_codec_reg
);
1103 "asoc: failed to add codec sysfs files: %d\n", ret
);
1108 static int soc_probe_dai_link(struct snd_soc_card
*card
, int num
, int order
)
1110 struct snd_soc_dai_link
*dai_link
= &card
->dai_link
[num
];
1111 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[num
];
1112 struct snd_soc_codec
*codec
= rtd
->codec
;
1113 struct snd_soc_platform
*platform
= rtd
->platform
;
1114 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
, *cpu_dai
= rtd
->cpu_dai
;
1117 dev_dbg(card
->dev
, "probe %s dai link %d late %d\n",
1118 card
->name
, num
, order
);
1120 /* config components */
1121 codec_dai
->codec
= codec
;
1122 cpu_dai
->platform
= platform
;
1123 codec_dai
->card
= card
;
1124 cpu_dai
->card
= card
;
1126 /* set default power off timeout */
1127 rtd
->pmdown_time
= pmdown_time
;
1129 /* probe the cpu_dai */
1130 if (!cpu_dai
->probed
&&
1131 cpu_dai
->driver
->probe_order
== order
) {
1132 if (!try_module_get(cpu_dai
->dev
->driver
->owner
))
1135 if (cpu_dai
->driver
->probe
) {
1136 ret
= cpu_dai
->driver
->probe(cpu_dai
);
1138 printk(KERN_ERR
"asoc: failed to probe CPU DAI %s\n",
1140 module_put(cpu_dai
->dev
->driver
->owner
);
1144 cpu_dai
->probed
= 1;
1145 /* mark cpu_dai as probed and add to card dai list */
1146 list_add(&cpu_dai
->card_list
, &card
->dai_dev_list
);
1149 /* probe the CODEC */
1150 if (!codec
->probed
&&
1151 codec
->driver
->probe_order
== order
) {
1152 ret
= soc_probe_codec(card
, codec
);
1157 /* probe the platform */
1158 if (!platform
->probed
&&
1159 platform
->driver
->probe_order
== order
) {
1160 ret
= soc_probe_platform(card
, platform
);
1165 /* probe the CODEC DAI */
1166 if (!codec_dai
->probed
&& codec_dai
->driver
->probe_order
== order
) {
1167 if (codec_dai
->driver
->probe
) {
1168 ret
= codec_dai
->driver
->probe(codec_dai
);
1170 printk(KERN_ERR
"asoc: failed to probe CODEC DAI %s\n",
1176 /* mark codec_dai as probed and add to card dai list */
1177 codec_dai
->probed
= 1;
1178 list_add(&codec_dai
->card_list
, &card
->dai_dev_list
);
1181 /* complete DAI probe during last probe */
1182 if (order
!= SND_SOC_COMP_ORDER_LAST
)
1185 ret
= soc_post_component_init(card
, codec
, num
, 0);
1189 ret
= device_create_file(&rtd
->dev
, &dev_attr_pmdown_time
);
1191 printk(KERN_WARNING
"asoc: failed to add pmdown_time sysfs\n");
1193 /* create the pcm */
1194 ret
= soc_new_pcm(rtd
, num
);
1196 printk(KERN_ERR
"asoc: can't create pcm %s\n", dai_link
->stream_name
);
1200 /* add platform data for AC97 devices */
1201 if (rtd
->codec_dai
->driver
->ac97_control
)
1202 snd_ac97_dev_add_pdata(codec
->ac97
, rtd
->cpu_dai
->ac97_pdata
);
1207 #ifdef CONFIG_SND_SOC_AC97_BUS
1208 static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime
*rtd
)
1212 /* Only instantiate AC97 if not already done by the adaptor
1213 * for the generic AC97 subsystem.
1215 if (rtd
->codec_dai
->driver
->ac97_control
&& !rtd
->codec
->ac97_registered
) {
1217 * It is possible that the AC97 device is already registered to
1218 * the device subsystem. This happens when the device is created
1219 * via snd_ac97_mixer(). Currently only SoC codec that does so
1220 * is the generic AC97 glue but others migh emerge.
1222 * In those cases we don't try to register the device again.
1224 if (!rtd
->codec
->ac97_created
)
1227 ret
= soc_ac97_dev_register(rtd
->codec
);
1229 printk(KERN_ERR
"asoc: AC97 device register failed\n");
1233 rtd
->codec
->ac97_registered
= 1;
1238 static void soc_unregister_ac97_dai_link(struct snd_soc_codec
*codec
)
1240 if (codec
->ac97_registered
) {
1241 soc_ac97_dev_unregister(codec
);
1242 codec
->ac97_registered
= 0;
1247 static int soc_probe_aux_dev(struct snd_soc_card
*card
, int num
)
1249 struct snd_soc_aux_dev
*aux_dev
= &card
->aux_dev
[num
];
1250 struct snd_soc_codec
*codec
;
1253 /* find CODEC from registered CODECs*/
1254 list_for_each_entry(codec
, &codec_list
, list
) {
1255 if (!strcmp(codec
->name
, aux_dev
->codec_name
)) {
1256 if (codec
->probed
) {
1258 "asoc: codec already probed");
1265 /* codec not found */
1266 dev_err(card
->dev
, "asoc: codec %s not found", aux_dev
->codec_name
);
1270 ret
= soc_probe_codec(card
, codec
);
1274 ret
= soc_post_component_init(card
, codec
, num
, 1);
1280 static void soc_remove_aux_dev(struct snd_soc_card
*card
, int num
)
1282 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd_aux
[num
];
1283 struct snd_soc_codec
*codec
= rtd
->codec
;
1285 /* unregister the rtd device */
1286 if (rtd
->dev_registered
) {
1287 device_remove_file(&rtd
->dev
, &dev_attr_codec_reg
);
1288 device_unregister(&rtd
->dev
);
1289 rtd
->dev_registered
= 0;
1292 if (codec
&& codec
->probed
)
1293 soc_remove_codec(codec
);
1296 static int snd_soc_init_codec_cache(struct snd_soc_codec
*codec
,
1297 enum snd_soc_compress_type compress_type
)
1301 if (codec
->cache_init
)
1304 /* override the compress_type if necessary */
1305 if (compress_type
&& codec
->compress_type
!= compress_type
)
1306 codec
->compress_type
= compress_type
;
1307 ret
= snd_soc_cache_init(codec
);
1309 dev_err(codec
->dev
, "Failed to set cache compression type: %d\n",
1313 codec
->cache_init
= 1;
1317 static void snd_soc_instantiate_card(struct snd_soc_card
*card
)
1319 struct snd_soc_codec
*codec
;
1320 struct snd_soc_codec_conf
*codec_conf
;
1321 enum snd_soc_compress_type compress_type
;
1324 mutex_lock(&card
->mutex
);
1326 if (card
->instantiated
) {
1327 mutex_unlock(&card
->mutex
);
1332 for (i
= 0; i
< card
->num_links
; i
++)
1333 soc_bind_dai_link(card
, i
);
1335 /* bind completed ? */
1336 if (card
->num_rtd
!= card
->num_links
) {
1337 mutex_unlock(&card
->mutex
);
1341 /* initialize the register cache for each available codec */
1342 list_for_each_entry(codec
, &codec_list
, list
) {
1343 if (codec
->cache_init
)
1345 /* by default we don't override the compress_type */
1347 /* check to see if we need to override the compress_type */
1348 for (i
= 0; i
< card
->num_configs
; ++i
) {
1349 codec_conf
= &card
->codec_conf
[i
];
1350 if (!strcmp(codec
->name
, codec_conf
->dev_name
)) {
1351 compress_type
= codec_conf
->compress_type
;
1352 if (compress_type
&& compress_type
1353 != codec
->compress_type
)
1357 ret
= snd_soc_init_codec_cache(codec
, compress_type
);
1359 mutex_unlock(&card
->mutex
);
1364 /* card bind complete so register a sound card */
1365 ret
= snd_card_create(SNDRV_DEFAULT_IDX1
, SNDRV_DEFAULT_STR1
,
1366 card
->owner
, 0, &card
->snd_card
);
1368 printk(KERN_ERR
"asoc: can't create sound card for card %s\n",
1370 mutex_unlock(&card
->mutex
);
1373 card
->snd_card
->dev
= card
->dev
;
1375 card
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
1376 card
->dapm
.dev
= card
->dev
;
1377 card
->dapm
.card
= card
;
1378 list_add(&card
->dapm
.list
, &card
->dapm_list
);
1380 #ifdef CONFIG_DEBUG_FS
1381 snd_soc_dapm_debugfs_init(&card
->dapm
, card
->debugfs_card_root
);
1384 #ifdef CONFIG_PM_SLEEP
1385 /* deferred resume work */
1386 INIT_WORK(&card
->deferred_resume_work
, soc_resume_deferred
);
1389 if (card
->dapm_widgets
)
1390 snd_soc_dapm_new_controls(&card
->dapm
, card
->dapm_widgets
,
1391 card
->num_dapm_widgets
);
1393 /* initialise the sound card only once */
1395 ret
= card
->probe(card
);
1397 goto card_probe_error
;
1400 /* early DAI link probe */
1401 for (order
= SND_SOC_COMP_ORDER_FIRST
; order
<= SND_SOC_COMP_ORDER_LAST
;
1403 for (i
= 0; i
< card
->num_links
; i
++) {
1404 ret
= soc_probe_dai_link(card
, i
, order
);
1406 pr_err("asoc: failed to instantiate card %s: %d\n",
1413 for (i
= 0; i
< card
->num_aux_devs
; i
++) {
1414 ret
= soc_probe_aux_dev(card
, i
);
1416 pr_err("asoc: failed to add auxiliary devices %s: %d\n",
1418 goto probe_aux_dev_err
;
1422 /* We should have a non-codec control add function but we don't */
1424 snd_soc_add_controls(list_first_entry(&card
->codec_dev_list
,
1425 struct snd_soc_codec
,
1428 card
->num_controls
);
1430 if (card
->dapm_routes
)
1431 snd_soc_dapm_add_routes(&card
->dapm
, card
->dapm_routes
,
1432 card
->num_dapm_routes
);
1434 snprintf(card
->snd_card
->shortname
, sizeof(card
->snd_card
->shortname
),
1436 snprintf(card
->snd_card
->longname
, sizeof(card
->snd_card
->longname
),
1437 "%s", card
->long_name
? card
->long_name
: card
->name
);
1438 snprintf(card
->snd_card
->driver
, sizeof(card
->snd_card
->driver
),
1439 "%s", card
->driver_name
? card
->driver_name
: card
->name
);
1440 for (i
= 0; i
< ARRAY_SIZE(card
->snd_card
->driver
); i
++) {
1441 switch (card
->snd_card
->driver
[i
]) {
1447 if (!isalnum(card
->snd_card
->driver
[i
]))
1448 card
->snd_card
->driver
[i
] = '_';
1453 if (card
->late_probe
) {
1454 ret
= card
->late_probe(card
);
1456 dev_err(card
->dev
, "%s late_probe() failed: %d\n",
1458 goto probe_aux_dev_err
;
1462 ret
= snd_card_register(card
->snd_card
);
1464 printk(KERN_ERR
"asoc: failed to register soundcard for %s\n", card
->name
);
1465 goto probe_aux_dev_err
;
1468 #ifdef CONFIG_SND_SOC_AC97_BUS
1469 /* register any AC97 codecs */
1470 for (i
= 0; i
< card
->num_rtd
; i
++) {
1471 ret
= soc_register_ac97_dai_link(&card
->rtd
[i
]);
1473 printk(KERN_ERR
"asoc: failed to register AC97 %s\n", card
->name
);
1475 soc_unregister_ac97_dai_link(card
->rtd
[i
].codec
);
1476 goto probe_aux_dev_err
;
1481 card
->instantiated
= 1;
1482 mutex_unlock(&card
->mutex
);
1486 for (i
= 0; i
< card
->num_aux_devs
; i
++)
1487 soc_remove_aux_dev(card
, i
);
1490 soc_remove_dai_links(card
);
1496 snd_card_free(card
->snd_card
);
1498 mutex_unlock(&card
->mutex
);
1502 * Attempt to initialise any uninitialised cards. Must be called with
1505 static void snd_soc_instantiate_cards(void)
1507 struct snd_soc_card
*card
;
1508 list_for_each_entry(card
, &card_list
, list
)
1509 snd_soc_instantiate_card(card
);
1512 /* probes a new socdev */
1513 static int soc_probe(struct platform_device
*pdev
)
1515 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
1519 * no card, so machine driver should be registering card
1520 * we should not be here in that case so ret error
1525 /* Bodge while we unpick instantiation */
1526 card
->dev
= &pdev
->dev
;
1528 ret
= snd_soc_register_card(card
);
1530 dev_err(&pdev
->dev
, "Failed to register card\n");
1537 static int soc_cleanup_card_resources(struct snd_soc_card
*card
)
1541 /* make sure any delayed work runs */
1542 for (i
= 0; i
< card
->num_rtd
; i
++) {
1543 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[i
];
1544 flush_delayed_work_sync(&rtd
->delayed_work
);
1547 /* remove auxiliary devices */
1548 for (i
= 0; i
< card
->num_aux_devs
; i
++)
1549 soc_remove_aux_dev(card
, i
);
1551 /* remove and free each DAI */
1552 soc_remove_dai_links(card
);
1554 soc_cleanup_card_debugfs(card
);
1556 /* remove the card */
1560 snd_soc_dapm_free(&card
->dapm
);
1563 snd_card_free(card
->snd_card
);
1568 /* removes a socdev */
1569 static int soc_remove(struct platform_device
*pdev
)
1571 struct snd_soc_card
*card
= platform_get_drvdata(pdev
);
1573 snd_soc_unregister_card(card
);
1577 int snd_soc_poweroff(struct device
*dev
)
1579 struct snd_soc_card
*card
= dev_get_drvdata(dev
);
1582 if (!card
->instantiated
)
1585 /* Flush out pmdown_time work - we actually do want to run it
1586 * now, we're shutting down so no imminent restart. */
1587 for (i
= 0; i
< card
->num_rtd
; i
++) {
1588 struct snd_soc_pcm_runtime
*rtd
= &card
->rtd
[i
];
1589 flush_delayed_work_sync(&rtd
->delayed_work
);
1592 snd_soc_dapm_shutdown(card
);
1596 EXPORT_SYMBOL_GPL(snd_soc_poweroff
);
1598 const struct dev_pm_ops snd_soc_pm_ops
= {
1599 .suspend
= snd_soc_suspend
,
1600 .resume
= snd_soc_resume
,
1601 .poweroff
= snd_soc_poweroff
,
1603 EXPORT_SYMBOL_GPL(snd_soc_pm_ops
);
1605 /* ASoC platform driver */
1606 static struct platform_driver soc_driver
= {
1608 .name
= "soc-audio",
1609 .owner
= THIS_MODULE
,
1610 .pm
= &snd_soc_pm_ops
,
1613 .remove
= soc_remove
,
1617 * snd_soc_codec_volatile_register: Report if a register is volatile.
1619 * @codec: CODEC to query.
1620 * @reg: Register to query.
1622 * Boolean function indiciating if a CODEC register is volatile.
1624 int snd_soc_codec_volatile_register(struct snd_soc_codec
*codec
,
1627 if (codec
->volatile_register
)
1628 return codec
->volatile_register(codec
, reg
);
1632 EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register
);
1635 * snd_soc_codec_readable_register: Report if a register is readable.
1637 * @codec: CODEC to query.
1638 * @reg: Register to query.
1640 * Boolean function indicating if a CODEC register is readable.
1642 int snd_soc_codec_readable_register(struct snd_soc_codec
*codec
,
1645 if (codec
->readable_register
)
1646 return codec
->readable_register(codec
, reg
);
1650 EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register
);
1653 * snd_soc_codec_writable_register: Report if a register is writable.
1655 * @codec: CODEC to query.
1656 * @reg: Register to query.
1658 * Boolean function indicating if a CODEC register is writable.
1660 int snd_soc_codec_writable_register(struct snd_soc_codec
*codec
,
1663 if (codec
->writable_register
)
1664 return codec
->writable_register(codec
, reg
);
1668 EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register
);
1670 int snd_soc_platform_read(struct snd_soc_platform
*platform
,
1675 if (!platform
->driver
->read
) {
1676 dev_err(platform
->dev
, "platform has no read back\n");
1680 ret
= platform
->driver
->read(platform
, reg
);
1681 dev_dbg(platform
->dev
, "read %x => %x\n", reg
, ret
);
1682 trace_snd_soc_preg_read(platform
, reg
, ret
);
1686 EXPORT_SYMBOL_GPL(snd_soc_platform_read
);
1688 int snd_soc_platform_write(struct snd_soc_platform
*platform
,
1689 unsigned int reg
, unsigned int val
)
1691 if (!platform
->driver
->write
) {
1692 dev_err(platform
->dev
, "platform has no write back\n");
1696 dev_dbg(platform
->dev
, "write %x = %x\n", reg
, val
);
1697 trace_snd_soc_preg_write(platform
, reg
, val
);
1698 return platform
->driver
->write(platform
, reg
, val
);
1700 EXPORT_SYMBOL_GPL(snd_soc_platform_write
);
1703 * snd_soc_new_ac97_codec - initailise AC97 device
1704 * @codec: audio codec
1705 * @ops: AC97 bus operations
1706 * @num: AC97 codec number
1708 * Initialises AC97 codec resources for use by ad-hoc devices only.
1710 int snd_soc_new_ac97_codec(struct snd_soc_codec
*codec
,
1711 struct snd_ac97_bus_ops
*ops
, int num
)
1713 mutex_lock(&codec
->mutex
);
1715 codec
->ac97
= kzalloc(sizeof(struct snd_ac97
), GFP_KERNEL
);
1716 if (codec
->ac97
== NULL
) {
1717 mutex_unlock(&codec
->mutex
);
1721 codec
->ac97
->bus
= kzalloc(sizeof(struct snd_ac97_bus
), GFP_KERNEL
);
1722 if (codec
->ac97
->bus
== NULL
) {
1725 mutex_unlock(&codec
->mutex
);
1729 codec
->ac97
->bus
->ops
= ops
;
1730 codec
->ac97
->num
= num
;
1733 * Mark the AC97 device to be created by us. This way we ensure that the
1734 * device will be registered with the device subsystem later on.
1736 codec
->ac97_created
= 1;
1738 mutex_unlock(&codec
->mutex
);
1741 EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec
);
1744 * snd_soc_free_ac97_codec - free AC97 codec device
1745 * @codec: audio codec
1747 * Frees AC97 codec device resources.
1749 void snd_soc_free_ac97_codec(struct snd_soc_codec
*codec
)
1751 mutex_lock(&codec
->mutex
);
1752 #ifdef CONFIG_SND_SOC_AC97_BUS
1753 soc_unregister_ac97_dai_link(codec
);
1755 kfree(codec
->ac97
->bus
);
1758 codec
->ac97_created
= 0;
1759 mutex_unlock(&codec
->mutex
);
1761 EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec
);
1763 unsigned int snd_soc_read(struct snd_soc_codec
*codec
, unsigned int reg
)
1767 ret
= codec
->read(codec
, reg
);
1768 dev_dbg(codec
->dev
, "read %x => %x\n", reg
, ret
);
1769 trace_snd_soc_reg_read(codec
, reg
, ret
);
1773 EXPORT_SYMBOL_GPL(snd_soc_read
);
1775 unsigned int snd_soc_write(struct snd_soc_codec
*codec
,
1776 unsigned int reg
, unsigned int val
)
1778 dev_dbg(codec
->dev
, "write %x = %x\n", reg
, val
);
1779 trace_snd_soc_reg_write(codec
, reg
, val
);
1780 return codec
->write(codec
, reg
, val
);
1782 EXPORT_SYMBOL_GPL(snd_soc_write
);
1784 unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec
*codec
,
1785 unsigned int reg
, const void *data
, size_t len
)
1787 return codec
->bulk_write_raw(codec
, reg
, data
, len
);
1789 EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw
);
1792 * snd_soc_update_bits - update codec register bits
1793 * @codec: audio codec
1794 * @reg: codec register
1795 * @mask: register mask
1798 * Writes new register value.
1800 * Returns 1 for change, 0 for no change, or negative error code.
1802 int snd_soc_update_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
1803 unsigned int mask
, unsigned int value
)
1806 unsigned int old
, new;
1809 ret
= snd_soc_read(codec
, reg
);
1814 new = (old
& ~mask
) | (value
& mask
);
1815 change
= old
!= new;
1817 ret
= snd_soc_write(codec
, reg
, new);
1824 EXPORT_SYMBOL_GPL(snd_soc_update_bits
);
1827 * snd_soc_update_bits_locked - update codec register bits
1828 * @codec: audio codec
1829 * @reg: codec register
1830 * @mask: register mask
1833 * Writes new register value, and takes the codec mutex.
1835 * Returns 1 for change else 0.
1837 int snd_soc_update_bits_locked(struct snd_soc_codec
*codec
,
1838 unsigned short reg
, unsigned int mask
,
1843 mutex_lock(&codec
->mutex
);
1844 change
= snd_soc_update_bits(codec
, reg
, mask
, value
);
1845 mutex_unlock(&codec
->mutex
);
1849 EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked
);
1852 * snd_soc_test_bits - test register for change
1853 * @codec: audio codec
1854 * @reg: codec register
1855 * @mask: register mask
1858 * Tests a register with a new value and checks if the new value is
1859 * different from the old value.
1861 * Returns 1 for change else 0.
1863 int snd_soc_test_bits(struct snd_soc_codec
*codec
, unsigned short reg
,
1864 unsigned int mask
, unsigned int value
)
1867 unsigned int old
, new;
1869 old
= snd_soc_read(codec
, reg
);
1870 new = (old
& ~mask
) | value
;
1871 change
= old
!= new;
1875 EXPORT_SYMBOL_GPL(snd_soc_test_bits
);
1878 * snd_soc_set_runtime_hwparams - set the runtime hardware parameters
1879 * @substream: the pcm substream
1880 * @hw: the hardware parameters
1882 * Sets the substream runtime hardware parameters.
1884 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream
*substream
,
1885 const struct snd_pcm_hardware
*hw
)
1887 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1888 runtime
->hw
.info
= hw
->info
;
1889 runtime
->hw
.formats
= hw
->formats
;
1890 runtime
->hw
.period_bytes_min
= hw
->period_bytes_min
;
1891 runtime
->hw
.period_bytes_max
= hw
->period_bytes_max
;
1892 runtime
->hw
.periods_min
= hw
->periods_min
;
1893 runtime
->hw
.periods_max
= hw
->periods_max
;
1894 runtime
->hw
.buffer_bytes_max
= hw
->buffer_bytes_max
;
1895 runtime
->hw
.fifo_size
= hw
->fifo_size
;
1898 EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams
);
1901 * snd_soc_cnew - create new control
1902 * @_template: control template
1903 * @data: control private data
1904 * @long_name: control long name
1905 * @prefix: control name prefix
1907 * Create a new mixer control from a template control.
1909 * Returns 0 for success, else error.
1911 struct snd_kcontrol
*snd_soc_cnew(const struct snd_kcontrol_new
*_template
,
1912 void *data
, char *long_name
,
1915 struct snd_kcontrol_new
template;
1916 struct snd_kcontrol
*kcontrol
;
1920 memcpy(&template, _template
, sizeof(template));
1924 long_name
= template.name
;
1927 name_len
= strlen(long_name
) + strlen(prefix
) + 2;
1928 name
= kmalloc(name_len
, GFP_KERNEL
);
1932 snprintf(name
, name_len
, "%s %s", prefix
, long_name
);
1934 template.name
= name
;
1936 template.name
= long_name
;
1939 kcontrol
= snd_ctl_new1(&template, data
);
1945 EXPORT_SYMBOL_GPL(snd_soc_cnew
);
1948 * snd_soc_add_controls - add an array of controls to a codec.
1949 * Convienience function to add a list of controls. Many codecs were
1950 * duplicating this code.
1952 * @codec: codec to add controls to
1953 * @controls: array of controls to add
1954 * @num_controls: number of elements in the array
1956 * Return 0 for success, else error.
1958 int snd_soc_add_controls(struct snd_soc_codec
*codec
,
1959 const struct snd_kcontrol_new
*controls
, int num_controls
)
1961 struct snd_card
*card
= codec
->card
->snd_card
;
1964 for (i
= 0; i
< num_controls
; i
++) {
1965 const struct snd_kcontrol_new
*control
= &controls
[i
];
1966 err
= snd_ctl_add(card
, snd_soc_cnew(control
, codec
,
1968 codec
->name_prefix
));
1970 dev_err(codec
->dev
, "%s: Failed to add %s: %d\n",
1971 codec
->name
, control
->name
, err
);
1978 EXPORT_SYMBOL_GPL(snd_soc_add_controls
);
1981 * snd_soc_add_platform_controls - add an array of controls to a platform.
1982 * Convienience function to add a list of controls.
1984 * @platform: platform to add controls to
1985 * @controls: array of controls to add
1986 * @num_controls: number of elements in the array
1988 * Return 0 for success, else error.
1990 int snd_soc_add_platform_controls(struct snd_soc_platform
*platform
,
1991 const struct snd_kcontrol_new
*controls
, int num_controls
)
1993 struct snd_card
*card
= platform
->card
->snd_card
;
1996 for (i
= 0; i
< num_controls
; i
++) {
1997 const struct snd_kcontrol_new
*control
= &controls
[i
];
1998 err
= snd_ctl_add(card
, snd_soc_cnew(control
, platform
,
1999 control
->name
, NULL
));
2001 dev_err(platform
->dev
, "Failed to add %s %d\n",control
->name
, err
);
2008 EXPORT_SYMBOL_GPL(snd_soc_add_platform_controls
);
2011 * snd_soc_info_enum_double - enumerated double mixer info callback
2012 * @kcontrol: mixer control
2013 * @uinfo: control element information
2015 * Callback to provide information about a double enumerated
2018 * Returns 0 for success.
2020 int snd_soc_info_enum_double(struct snd_kcontrol
*kcontrol
,
2021 struct snd_ctl_elem_info
*uinfo
)
2023 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2025 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2026 uinfo
->count
= e
->shift_l
== e
->shift_r
? 1 : 2;
2027 uinfo
->value
.enumerated
.items
= e
->max
;
2029 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
2030 uinfo
->value
.enumerated
.item
= e
->max
- 1;
2031 strcpy(uinfo
->value
.enumerated
.name
,
2032 e
->texts
[uinfo
->value
.enumerated
.item
]);
2035 EXPORT_SYMBOL_GPL(snd_soc_info_enum_double
);
2038 * snd_soc_get_enum_double - enumerated double mixer get callback
2039 * @kcontrol: mixer control
2040 * @ucontrol: control element information
2042 * Callback to get the value of a double enumerated mixer.
2044 * Returns 0 for success.
2046 int snd_soc_get_enum_double(struct snd_kcontrol
*kcontrol
,
2047 struct snd_ctl_elem_value
*ucontrol
)
2049 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2050 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2051 unsigned int val
, bitmask
;
2053 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
2055 val
= snd_soc_read(codec
, e
->reg
);
2056 ucontrol
->value
.enumerated
.item
[0]
2057 = (val
>> e
->shift_l
) & (bitmask
- 1);
2058 if (e
->shift_l
!= e
->shift_r
)
2059 ucontrol
->value
.enumerated
.item
[1] =
2060 (val
>> e
->shift_r
) & (bitmask
- 1);
2064 EXPORT_SYMBOL_GPL(snd_soc_get_enum_double
);
2067 * snd_soc_put_enum_double - enumerated double mixer put callback
2068 * @kcontrol: mixer control
2069 * @ucontrol: control element information
2071 * Callback to set the value of a double enumerated mixer.
2073 * Returns 0 for success.
2075 int snd_soc_put_enum_double(struct snd_kcontrol
*kcontrol
,
2076 struct snd_ctl_elem_value
*ucontrol
)
2078 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2079 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2081 unsigned int mask
, bitmask
;
2083 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
2085 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
2087 val
= ucontrol
->value
.enumerated
.item
[0] << e
->shift_l
;
2088 mask
= (bitmask
- 1) << e
->shift_l
;
2089 if (e
->shift_l
!= e
->shift_r
) {
2090 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2092 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
2093 mask
|= (bitmask
- 1) << e
->shift_r
;
2096 return snd_soc_update_bits_locked(codec
, e
->reg
, mask
, val
);
2098 EXPORT_SYMBOL_GPL(snd_soc_put_enum_double
);
2101 * snd_soc_get_value_enum_double - semi enumerated double mixer get callback
2102 * @kcontrol: mixer control
2103 * @ucontrol: control element information
2105 * Callback to get the value of a double semi enumerated mixer.
2107 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2108 * used for handling bitfield coded enumeration for example.
2110 * Returns 0 for success.
2112 int snd_soc_get_value_enum_double(struct snd_kcontrol
*kcontrol
,
2113 struct snd_ctl_elem_value
*ucontrol
)
2115 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2116 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2117 unsigned int reg_val
, val
, mux
;
2119 reg_val
= snd_soc_read(codec
, e
->reg
);
2120 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
2121 for (mux
= 0; mux
< e
->max
; mux
++) {
2122 if (val
== e
->values
[mux
])
2125 ucontrol
->value
.enumerated
.item
[0] = mux
;
2126 if (e
->shift_l
!= e
->shift_r
) {
2127 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
2128 for (mux
= 0; mux
< e
->max
; mux
++) {
2129 if (val
== e
->values
[mux
])
2132 ucontrol
->value
.enumerated
.item
[1] = mux
;
2137 EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double
);
2140 * snd_soc_put_value_enum_double - semi enumerated double mixer put callback
2141 * @kcontrol: mixer control
2142 * @ucontrol: control element information
2144 * Callback to set the value of a double semi enumerated mixer.
2146 * Semi enumerated mixer: the enumerated items are referred as values. Can be
2147 * used for handling bitfield coded enumeration for example.
2149 * Returns 0 for success.
2151 int snd_soc_put_value_enum_double(struct snd_kcontrol
*kcontrol
,
2152 struct snd_ctl_elem_value
*ucontrol
)
2154 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2155 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2159 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
2161 val
= e
->values
[ucontrol
->value
.enumerated
.item
[0]] << e
->shift_l
;
2162 mask
= e
->mask
<< e
->shift_l
;
2163 if (e
->shift_l
!= e
->shift_r
) {
2164 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2166 val
|= e
->values
[ucontrol
->value
.enumerated
.item
[1]] << e
->shift_r
;
2167 mask
|= e
->mask
<< e
->shift_r
;
2170 return snd_soc_update_bits_locked(codec
, e
->reg
, mask
, val
);
2172 EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double
);
2175 * snd_soc_info_enum_ext - external enumerated single mixer info callback
2176 * @kcontrol: mixer control
2177 * @uinfo: control element information
2179 * Callback to provide information about an external enumerated
2182 * Returns 0 for success.
2184 int snd_soc_info_enum_ext(struct snd_kcontrol
*kcontrol
,
2185 struct snd_ctl_elem_info
*uinfo
)
2187 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2189 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2191 uinfo
->value
.enumerated
.items
= e
->max
;
2193 if (uinfo
->value
.enumerated
.item
> e
->max
- 1)
2194 uinfo
->value
.enumerated
.item
= e
->max
- 1;
2195 strcpy(uinfo
->value
.enumerated
.name
,
2196 e
->texts
[uinfo
->value
.enumerated
.item
]);
2199 EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext
);
2202 * snd_soc_info_volsw_ext - external single mixer info callback
2203 * @kcontrol: mixer control
2204 * @uinfo: control element information
2206 * Callback to provide information about a single external mixer control.
2208 * Returns 0 for success.
2210 int snd_soc_info_volsw_ext(struct snd_kcontrol
*kcontrol
,
2211 struct snd_ctl_elem_info
*uinfo
)
2213 int max
= kcontrol
->private_value
;
2215 if (max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2216 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2218 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2221 uinfo
->value
.integer
.min
= 0;
2222 uinfo
->value
.integer
.max
= max
;
2225 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext
);
2228 * snd_soc_info_volsw - single mixer info callback
2229 * @kcontrol: mixer control
2230 * @uinfo: control element information
2232 * Callback to provide information about a single mixer control.
2234 * Returns 0 for success.
2236 int snd_soc_info_volsw(struct snd_kcontrol
*kcontrol
,
2237 struct snd_ctl_elem_info
*uinfo
)
2239 struct soc_mixer_control
*mc
=
2240 (struct soc_mixer_control
*)kcontrol
->private_value
;
2242 unsigned int shift
= mc
->shift
;
2243 unsigned int rshift
= mc
->rshift
;
2245 if (!mc
->platform_max
)
2246 mc
->platform_max
= mc
->max
;
2247 platform_max
= mc
->platform_max
;
2249 if (platform_max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2250 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2252 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2254 uinfo
->count
= shift
== rshift
? 1 : 2;
2255 uinfo
->value
.integer
.min
= 0;
2256 uinfo
->value
.integer
.max
= platform_max
;
2259 EXPORT_SYMBOL_GPL(snd_soc_info_volsw
);
2262 * snd_soc_get_volsw - single mixer get callback
2263 * @kcontrol: mixer control
2264 * @ucontrol: control element information
2266 * Callback to get the value of a single mixer control.
2268 * Returns 0 for success.
2270 int snd_soc_get_volsw(struct snd_kcontrol
*kcontrol
,
2271 struct snd_ctl_elem_value
*ucontrol
)
2273 struct soc_mixer_control
*mc
=
2274 (struct soc_mixer_control
*)kcontrol
->private_value
;
2275 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2276 unsigned int reg
= mc
->reg
;
2277 unsigned int shift
= mc
->shift
;
2278 unsigned int rshift
= mc
->rshift
;
2280 unsigned int mask
= (1 << fls(max
)) - 1;
2281 unsigned int invert
= mc
->invert
;
2283 ucontrol
->value
.integer
.value
[0] =
2284 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
2285 if (shift
!= rshift
)
2286 ucontrol
->value
.integer
.value
[1] =
2287 (snd_soc_read(codec
, reg
) >> rshift
) & mask
;
2289 ucontrol
->value
.integer
.value
[0] =
2290 max
- ucontrol
->value
.integer
.value
[0];
2291 if (shift
!= rshift
)
2292 ucontrol
->value
.integer
.value
[1] =
2293 max
- ucontrol
->value
.integer
.value
[1];
2298 EXPORT_SYMBOL_GPL(snd_soc_get_volsw
);
2301 * snd_soc_put_volsw - single mixer put callback
2302 * @kcontrol: mixer control
2303 * @ucontrol: control element information
2305 * Callback to set the value of a single mixer control.
2307 * Returns 0 for success.
2309 int snd_soc_put_volsw(struct snd_kcontrol
*kcontrol
,
2310 struct snd_ctl_elem_value
*ucontrol
)
2312 struct soc_mixer_control
*mc
=
2313 (struct soc_mixer_control
*)kcontrol
->private_value
;
2314 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2315 unsigned int reg
= mc
->reg
;
2316 unsigned int shift
= mc
->shift
;
2317 unsigned int rshift
= mc
->rshift
;
2319 unsigned int mask
= (1 << fls(max
)) - 1;
2320 unsigned int invert
= mc
->invert
;
2321 unsigned int val
, val2
, val_mask
;
2323 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
2326 val_mask
= mask
<< shift
;
2328 if (shift
!= rshift
) {
2329 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
2332 val_mask
|= mask
<< rshift
;
2333 val
|= val2
<< rshift
;
2335 return snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2337 EXPORT_SYMBOL_GPL(snd_soc_put_volsw
);
2340 * snd_soc_info_volsw_2r - double mixer info callback
2341 * @kcontrol: mixer control
2342 * @uinfo: control element information
2344 * Callback to provide information about a double mixer control that
2345 * spans 2 codec registers.
2347 * Returns 0 for success.
2349 int snd_soc_info_volsw_2r(struct snd_kcontrol
*kcontrol
,
2350 struct snd_ctl_elem_info
*uinfo
)
2352 struct soc_mixer_control
*mc
=
2353 (struct soc_mixer_control
*)kcontrol
->private_value
;
2356 if (!mc
->platform_max
)
2357 mc
->platform_max
= mc
->max
;
2358 platform_max
= mc
->platform_max
;
2360 if (platform_max
== 1 && !strstr(kcontrol
->id
.name
, " Volume"))
2361 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2363 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2366 uinfo
->value
.integer
.min
= 0;
2367 uinfo
->value
.integer
.max
= platform_max
;
2370 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r
);
2373 * snd_soc_get_volsw_2r - double mixer get callback
2374 * @kcontrol: mixer control
2375 * @ucontrol: control element information
2377 * Callback to get the value of a double mixer control that spans 2 registers.
2379 * Returns 0 for success.
2381 int snd_soc_get_volsw_2r(struct snd_kcontrol
*kcontrol
,
2382 struct snd_ctl_elem_value
*ucontrol
)
2384 struct soc_mixer_control
*mc
=
2385 (struct soc_mixer_control
*)kcontrol
->private_value
;
2386 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2387 unsigned int reg
= mc
->reg
;
2388 unsigned int reg2
= mc
->rreg
;
2389 unsigned int shift
= mc
->shift
;
2391 unsigned int mask
= (1 << fls(max
)) - 1;
2392 unsigned int invert
= mc
->invert
;
2394 ucontrol
->value
.integer
.value
[0] =
2395 (snd_soc_read(codec
, reg
) >> shift
) & mask
;
2396 ucontrol
->value
.integer
.value
[1] =
2397 (snd_soc_read(codec
, reg2
) >> shift
) & mask
;
2399 ucontrol
->value
.integer
.value
[0] =
2400 max
- ucontrol
->value
.integer
.value
[0];
2401 ucontrol
->value
.integer
.value
[1] =
2402 max
- ucontrol
->value
.integer
.value
[1];
2407 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r
);
2410 * snd_soc_put_volsw_2r - double mixer set callback
2411 * @kcontrol: mixer control
2412 * @ucontrol: control element information
2414 * Callback to set the value of a double mixer control that spans 2 registers.
2416 * Returns 0 for success.
2418 int snd_soc_put_volsw_2r(struct snd_kcontrol
*kcontrol
,
2419 struct snd_ctl_elem_value
*ucontrol
)
2421 struct soc_mixer_control
*mc
=
2422 (struct soc_mixer_control
*)kcontrol
->private_value
;
2423 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2424 unsigned int reg
= mc
->reg
;
2425 unsigned int reg2
= mc
->rreg
;
2426 unsigned int shift
= mc
->shift
;
2428 unsigned int mask
= (1 << fls(max
)) - 1;
2429 unsigned int invert
= mc
->invert
;
2431 unsigned int val
, val2
, val_mask
;
2433 val_mask
= mask
<< shift
;
2434 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
2435 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
2443 val2
= val2
<< shift
;
2445 err
= snd_soc_update_bits_locked(codec
, reg
, val_mask
, val
);
2449 err
= snd_soc_update_bits_locked(codec
, reg2
, val_mask
, val2
);
2452 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r
);
2455 * snd_soc_info_volsw_s8 - signed mixer info callback
2456 * @kcontrol: mixer control
2457 * @uinfo: control element information
2459 * Callback to provide information about a signed mixer control.
2461 * Returns 0 for success.
2463 int snd_soc_info_volsw_s8(struct snd_kcontrol
*kcontrol
,
2464 struct snd_ctl_elem_info
*uinfo
)
2466 struct soc_mixer_control
*mc
=
2467 (struct soc_mixer_control
*)kcontrol
->private_value
;
2471 if (!mc
->platform_max
)
2472 mc
->platform_max
= mc
->max
;
2473 platform_max
= mc
->platform_max
;
2475 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2477 uinfo
->value
.integer
.min
= 0;
2478 uinfo
->value
.integer
.max
= platform_max
- min
;
2481 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8
);
2484 * snd_soc_get_volsw_s8 - signed mixer get callback
2485 * @kcontrol: mixer control
2486 * @ucontrol: control element information
2488 * Callback to get the value of a signed mixer control.
2490 * Returns 0 for success.
2492 int snd_soc_get_volsw_s8(struct snd_kcontrol
*kcontrol
,
2493 struct snd_ctl_elem_value
*ucontrol
)
2495 struct soc_mixer_control
*mc
=
2496 (struct soc_mixer_control
*)kcontrol
->private_value
;
2497 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2498 unsigned int reg
= mc
->reg
;
2500 int val
= snd_soc_read(codec
, reg
);
2502 ucontrol
->value
.integer
.value
[0] =
2503 ((signed char)(val
& 0xff))-min
;
2504 ucontrol
->value
.integer
.value
[1] =
2505 ((signed char)((val
>> 8) & 0xff))-min
;
2508 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8
);
2511 * snd_soc_put_volsw_sgn - signed mixer put callback
2512 * @kcontrol: mixer control
2513 * @ucontrol: control element information
2515 * Callback to set the value of a signed mixer control.
2517 * Returns 0 for success.
2519 int snd_soc_put_volsw_s8(struct snd_kcontrol
*kcontrol
,
2520 struct snd_ctl_elem_value
*ucontrol
)
2522 struct soc_mixer_control
*mc
=
2523 (struct soc_mixer_control
*)kcontrol
->private_value
;
2524 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2525 unsigned int reg
= mc
->reg
;
2529 val
= (ucontrol
->value
.integer
.value
[0]+min
) & 0xff;
2530 val
|= ((ucontrol
->value
.integer
.value
[1]+min
) & 0xff) << 8;
2532 return snd_soc_update_bits_locked(codec
, reg
, 0xffff, val
);
2534 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8
);
2537 * snd_soc_limit_volume - Set new limit to an existing volume control.
2539 * @codec: where to look for the control
2540 * @name: Name of the control
2541 * @max: new maximum limit
2543 * Return 0 for success, else error.
2545 int snd_soc_limit_volume(struct snd_soc_codec
*codec
,
2546 const char *name
, int max
)
2548 struct snd_card
*card
= codec
->card
->snd_card
;
2549 struct snd_kcontrol
*kctl
;
2550 struct soc_mixer_control
*mc
;
2554 /* Sanity check for name and max */
2555 if (unlikely(!name
|| max
<= 0))
2558 list_for_each_entry(kctl
, &card
->controls
, list
) {
2559 if (!strncmp(kctl
->id
.name
, name
, sizeof(kctl
->id
.name
))) {
2565 mc
= (struct soc_mixer_control
*)kctl
->private_value
;
2566 if (max
<= mc
->max
) {
2567 mc
->platform_max
= max
;
2573 EXPORT_SYMBOL_GPL(snd_soc_limit_volume
);
2576 * snd_soc_info_volsw_2r_sx - double with tlv and variable data size
2577 * mixer info callback
2578 * @kcontrol: mixer control
2579 * @uinfo: control element information
2581 * Returns 0 for success.
2583 int snd_soc_info_volsw_2r_sx(struct snd_kcontrol
*kcontrol
,
2584 struct snd_ctl_elem_info
*uinfo
)
2586 struct soc_mixer_control
*mc
=
2587 (struct soc_mixer_control
*)kcontrol
->private_value
;
2591 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
2593 uinfo
->value
.integer
.min
= 0;
2594 uinfo
->value
.integer
.max
= max
-min
;
2598 EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx
);
2601 * snd_soc_get_volsw_2r_sx - double with tlv and variable data size
2602 * mixer get callback
2603 * @kcontrol: mixer control
2604 * @uinfo: control element information
2606 * Returns 0 for success.
2608 int snd_soc_get_volsw_2r_sx(struct snd_kcontrol
*kcontrol
,
2609 struct snd_ctl_elem_value
*ucontrol
)
2611 struct soc_mixer_control
*mc
=
2612 (struct soc_mixer_control
*)kcontrol
->private_value
;
2613 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2614 unsigned int mask
= (1<<mc
->shift
)-1;
2616 int val
= snd_soc_read(codec
, mc
->reg
) & mask
;
2617 int valr
= snd_soc_read(codec
, mc
->rreg
) & mask
;
2619 ucontrol
->value
.integer
.value
[0] = ((val
& 0xff)-min
) & mask
;
2620 ucontrol
->value
.integer
.value
[1] = ((valr
& 0xff)-min
) & mask
;
2623 EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx
);
2626 * snd_soc_put_volsw_2r_sx - double with tlv and variable data size
2627 * mixer put callback
2628 * @kcontrol: mixer control
2629 * @uinfo: control element information
2631 * Returns 0 for success.
2633 int snd_soc_put_volsw_2r_sx(struct snd_kcontrol
*kcontrol
,
2634 struct snd_ctl_elem_value
*ucontrol
)
2636 struct soc_mixer_control
*mc
=
2637 (struct soc_mixer_control
*)kcontrol
->private_value
;
2638 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2639 unsigned int mask
= (1<<mc
->shift
)-1;
2642 unsigned int val
, valr
, oval
, ovalr
;
2644 val
= ((ucontrol
->value
.integer
.value
[0]+min
) & 0xff);
2646 valr
= ((ucontrol
->value
.integer
.value
[1]+min
) & 0xff);
2649 oval
= snd_soc_read(codec
, mc
->reg
) & mask
;
2650 ovalr
= snd_soc_read(codec
, mc
->rreg
) & mask
;
2654 ret
= snd_soc_write(codec
, mc
->reg
, val
);
2658 if (ovalr
!= valr
) {
2659 ret
= snd_soc_write(codec
, mc
->rreg
, valr
);
2666 EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx
);
2669 * snd_soc_dai_set_sysclk - configure DAI system or master clock.
2671 * @clk_id: DAI specific clock ID
2672 * @freq: new clock frequency in Hz
2673 * @dir: new clock direction - input/output.
2675 * Configures the DAI master (MCLK) or system (SYSCLK) clocking.
2677 int snd_soc_dai_set_sysclk(struct snd_soc_dai
*dai
, int clk_id
,
2678 unsigned int freq
, int dir
)
2680 if (dai
->driver
&& dai
->driver
->ops
->set_sysclk
)
2681 return dai
->driver
->ops
->set_sysclk(dai
, clk_id
, freq
, dir
);
2682 else if (dai
->codec
&& dai
->codec
->driver
->set_sysclk
)
2683 return dai
->codec
->driver
->set_sysclk(dai
->codec
, clk_id
,
2688 EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk
);
2691 * snd_soc_codec_set_sysclk - configure CODEC system or master clock.
2693 * @clk_id: DAI specific clock ID
2694 * @freq: new clock frequency in Hz
2695 * @dir: new clock direction - input/output.
2697 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
2699 int snd_soc_codec_set_sysclk(struct snd_soc_codec
*codec
, int clk_id
,
2700 unsigned int freq
, int dir
)
2702 if (codec
->driver
->set_sysclk
)
2703 return codec
->driver
->set_sysclk(codec
, clk_id
, freq
, dir
);
2707 EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk
);
2710 * snd_soc_dai_set_clkdiv - configure DAI clock dividers.
2712 * @div_id: DAI specific clock divider ID
2713 * @div: new clock divisor.
2715 * Configures the clock dividers. This is used to derive the best DAI bit and
2716 * frame clocks from the system or master clock. It's best to set the DAI bit
2717 * and frame clocks as low as possible to save system power.
2719 int snd_soc_dai_set_clkdiv(struct snd_soc_dai
*dai
,
2720 int div_id
, int div
)
2722 if (dai
->driver
&& dai
->driver
->ops
->set_clkdiv
)
2723 return dai
->driver
->ops
->set_clkdiv(dai
, div_id
, div
);
2727 EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv
);
2730 * snd_soc_dai_set_pll - configure DAI PLL.
2732 * @pll_id: DAI specific PLL ID
2733 * @source: DAI specific source for the PLL
2734 * @freq_in: PLL input clock frequency in Hz
2735 * @freq_out: requested PLL output clock frequency in Hz
2737 * Configures and enables PLL to generate output clock based on input clock.
2739 int snd_soc_dai_set_pll(struct snd_soc_dai
*dai
, int pll_id
, int source
,
2740 unsigned int freq_in
, unsigned int freq_out
)
2742 if (dai
->driver
&& dai
->driver
->ops
->set_pll
)
2743 return dai
->driver
->ops
->set_pll(dai
, pll_id
, source
,
2745 else if (dai
->codec
&& dai
->codec
->driver
->set_pll
)
2746 return dai
->codec
->driver
->set_pll(dai
->codec
, pll_id
, source
,
2751 EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll
);
2754 * snd_soc_codec_set_pll - configure codec PLL.
2756 * @pll_id: DAI specific PLL ID
2757 * @source: DAI specific source for the PLL
2758 * @freq_in: PLL input clock frequency in Hz
2759 * @freq_out: requested PLL output clock frequency in Hz
2761 * Configures and enables PLL to generate output clock based on input clock.
2763 int snd_soc_codec_set_pll(struct snd_soc_codec
*codec
, int pll_id
, int source
,
2764 unsigned int freq_in
, unsigned int freq_out
)
2766 if (codec
->driver
->set_pll
)
2767 return codec
->driver
->set_pll(codec
, pll_id
, source
,
2772 EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll
);
2775 * snd_soc_dai_set_fmt - configure DAI hardware audio format.
2777 * @fmt: SND_SOC_DAIFMT_ format value.
2779 * Configures the DAI hardware format and clocking.
2781 int snd_soc_dai_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
2783 if (dai
->driver
&& dai
->driver
->ops
->set_fmt
)
2784 return dai
->driver
->ops
->set_fmt(dai
, fmt
);
2788 EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt
);
2791 * snd_soc_dai_set_tdm_slot - configure DAI TDM.
2793 * @tx_mask: bitmask representing active TX slots.
2794 * @rx_mask: bitmask representing active RX slots.
2795 * @slots: Number of slots in use.
2796 * @slot_width: Width in bits for each slot.
2798 * Configures a DAI for TDM operation. Both mask and slots are codec and DAI
2801 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai
*dai
,
2802 unsigned int tx_mask
, unsigned int rx_mask
, int slots
, int slot_width
)
2804 if (dai
->driver
&& dai
->driver
->ops
->set_tdm_slot
)
2805 return dai
->driver
->ops
->set_tdm_slot(dai
, tx_mask
, rx_mask
,
2810 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot
);
2813 * snd_soc_dai_set_channel_map - configure DAI audio channel map
2815 * @tx_num: how many TX channels
2816 * @tx_slot: pointer to an array which imply the TX slot number channel
2818 * @rx_num: how many RX channels
2819 * @rx_slot: pointer to an array which imply the RX slot number channel
2822 * configure the relationship between channel number and TDM slot number.
2824 int snd_soc_dai_set_channel_map(struct snd_soc_dai
*dai
,
2825 unsigned int tx_num
, unsigned int *tx_slot
,
2826 unsigned int rx_num
, unsigned int *rx_slot
)
2828 if (dai
->driver
&& dai
->driver
->ops
->set_channel_map
)
2829 return dai
->driver
->ops
->set_channel_map(dai
, tx_num
, tx_slot
,
2834 EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map
);
2837 * snd_soc_dai_set_tristate - configure DAI system or master clock.
2839 * @tristate: tristate enable
2841 * Tristates the DAI so that others can use it.
2843 int snd_soc_dai_set_tristate(struct snd_soc_dai
*dai
, int tristate
)
2845 if (dai
->driver
&& dai
->driver
->ops
->set_tristate
)
2846 return dai
->driver
->ops
->set_tristate(dai
, tristate
);
2850 EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate
);
2853 * snd_soc_dai_digital_mute - configure DAI system or master clock.
2855 * @mute: mute enable
2857 * Mutes the DAI DAC.
2859 int snd_soc_dai_digital_mute(struct snd_soc_dai
*dai
, int mute
)
2861 if (dai
->driver
&& dai
->driver
->ops
->digital_mute
)
2862 return dai
->driver
->ops
->digital_mute(dai
, mute
);
2866 EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute
);
2869 * snd_soc_register_card - Register a card with the ASoC core
2871 * @card: Card to register
2874 int snd_soc_register_card(struct snd_soc_card
*card
)
2878 if (!card
->name
|| !card
->dev
)
2881 dev_set_drvdata(card
->dev
, card
);
2883 snd_soc_initialize_card_lists(card
);
2885 soc_init_card_debugfs(card
);
2887 card
->rtd
= kzalloc(sizeof(struct snd_soc_pcm_runtime
) *
2888 (card
->num_links
+ card
->num_aux_devs
),
2890 if (card
->rtd
== NULL
)
2892 card
->rtd_aux
= &card
->rtd
[card
->num_links
];
2894 for (i
= 0; i
< card
->num_links
; i
++)
2895 card
->rtd
[i
].dai_link
= &card
->dai_link
[i
];
2897 INIT_LIST_HEAD(&card
->list
);
2898 card
->instantiated
= 0;
2899 mutex_init(&card
->mutex
);
2901 mutex_lock(&client_mutex
);
2902 list_add(&card
->list
, &card_list
);
2903 snd_soc_instantiate_cards();
2904 mutex_unlock(&client_mutex
);
2906 dev_dbg(card
->dev
, "Registered card '%s'\n", card
->name
);
2910 EXPORT_SYMBOL_GPL(snd_soc_register_card
);
2913 * snd_soc_unregister_card - Unregister a card with the ASoC core
2915 * @card: Card to unregister
2918 int snd_soc_unregister_card(struct snd_soc_card
*card
)
2920 if (card
->instantiated
)
2921 soc_cleanup_card_resources(card
);
2922 mutex_lock(&client_mutex
);
2923 list_del(&card
->list
);
2924 mutex_unlock(&client_mutex
);
2925 dev_dbg(card
->dev
, "Unregistered card '%s'\n", card
->name
);
2929 EXPORT_SYMBOL_GPL(snd_soc_unregister_card
);
2932 * Simplify DAI link configuration by removing ".-1" from device names
2933 * and sanitizing names.
2935 static char *fmt_single_name(struct device
*dev
, int *id
)
2937 char *found
, name
[NAME_SIZE
];
2940 if (dev_name(dev
) == NULL
)
2943 strlcpy(name
, dev_name(dev
), NAME_SIZE
);
2945 /* are we a "%s.%d" name (platform and SPI components) */
2946 found
= strstr(name
, dev
->driver
->name
);
2949 if (sscanf(&found
[strlen(dev
->driver
->name
)], ".%d", id
) == 1) {
2951 /* discard ID from name if ID == -1 */
2953 found
[strlen(dev
->driver
->name
)] = '\0';
2957 /* I2C component devices are named "bus-addr" */
2958 if (sscanf(name
, "%x-%x", &id1
, &id2
) == 2) {
2959 char tmp
[NAME_SIZE
];
2961 /* create unique ID number from I2C addr and bus */
2962 *id
= ((id1
& 0xffff) << 16) + id2
;
2964 /* sanitize component name for DAI link creation */
2965 snprintf(tmp
, NAME_SIZE
, "%s.%s", dev
->driver
->name
, name
);
2966 strlcpy(name
, tmp
, NAME_SIZE
);
2971 return kstrdup(name
, GFP_KERNEL
);
2975 * Simplify DAI link naming for single devices with multiple DAIs by removing
2976 * any ".-1" and using the DAI name (instead of device name).
2978 static inline char *fmt_multiple_name(struct device
*dev
,
2979 struct snd_soc_dai_driver
*dai_drv
)
2981 if (dai_drv
->name
== NULL
) {
2982 printk(KERN_ERR
"asoc: error - multiple DAI %s registered with no name\n",
2987 return kstrdup(dai_drv
->name
, GFP_KERNEL
);
2991 * snd_soc_register_dai - Register a DAI with the ASoC core
2993 * @dai: DAI to register
2995 int snd_soc_register_dai(struct device
*dev
,
2996 struct snd_soc_dai_driver
*dai_drv
)
2998 struct snd_soc_dai
*dai
;
3000 dev_dbg(dev
, "dai register %s\n", dev_name(dev
));
3002 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
3006 /* create DAI component name */
3007 dai
->name
= fmt_single_name(dev
, &dai
->id
);
3008 if (dai
->name
== NULL
) {
3014 dai
->driver
= dai_drv
;
3015 if (!dai
->driver
->ops
)
3016 dai
->driver
->ops
= &null_dai_ops
;
3018 mutex_lock(&client_mutex
);
3019 list_add(&dai
->list
, &dai_list
);
3020 snd_soc_instantiate_cards();
3021 mutex_unlock(&client_mutex
);
3023 pr_debug("Registered DAI '%s'\n", dai
->name
);
3027 EXPORT_SYMBOL_GPL(snd_soc_register_dai
);
3030 * snd_soc_unregister_dai - Unregister a DAI from the ASoC core
3032 * @dai: DAI to unregister
3034 void snd_soc_unregister_dai(struct device
*dev
)
3036 struct snd_soc_dai
*dai
;
3038 list_for_each_entry(dai
, &dai_list
, list
) {
3039 if (dev
== dai
->dev
)
3045 mutex_lock(&client_mutex
);
3046 list_del(&dai
->list
);
3047 mutex_unlock(&client_mutex
);
3049 pr_debug("Unregistered DAI '%s'\n", dai
->name
);
3053 EXPORT_SYMBOL_GPL(snd_soc_unregister_dai
);
3056 * snd_soc_register_dais - Register multiple DAIs with the ASoC core
3058 * @dai: Array of DAIs to register
3059 * @count: Number of DAIs
3061 int snd_soc_register_dais(struct device
*dev
,
3062 struct snd_soc_dai_driver
*dai_drv
, size_t count
)
3064 struct snd_soc_dai
*dai
;
3067 dev_dbg(dev
, "dai register %s #%Zu\n", dev_name(dev
), count
);
3069 for (i
= 0; i
< count
; i
++) {
3071 dai
= kzalloc(sizeof(struct snd_soc_dai
), GFP_KERNEL
);
3077 /* create DAI component name */
3078 dai
->name
= fmt_multiple_name(dev
, &dai_drv
[i
]);
3079 if (dai
->name
== NULL
) {
3086 dai
->driver
= &dai_drv
[i
];
3087 if (dai
->driver
->id
)
3088 dai
->id
= dai
->driver
->id
;
3091 if (!dai
->driver
->ops
)
3092 dai
->driver
->ops
= &null_dai_ops
;
3094 mutex_lock(&client_mutex
);
3095 list_add(&dai
->list
, &dai_list
);
3096 mutex_unlock(&client_mutex
);
3098 pr_debug("Registered DAI '%s'\n", dai
->name
);
3101 mutex_lock(&client_mutex
);
3102 snd_soc_instantiate_cards();
3103 mutex_unlock(&client_mutex
);
3107 for (i
--; i
>= 0; i
--)
3108 snd_soc_unregister_dai(dev
);
3112 EXPORT_SYMBOL_GPL(snd_soc_register_dais
);
3115 * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core
3117 * @dai: Array of DAIs to unregister
3118 * @count: Number of DAIs
3120 void snd_soc_unregister_dais(struct device
*dev
, size_t count
)
3124 for (i
= 0; i
< count
; i
++)
3125 snd_soc_unregister_dai(dev
);
3127 EXPORT_SYMBOL_GPL(snd_soc_unregister_dais
);
3130 * snd_soc_register_platform - Register a platform with the ASoC core
3132 * @platform: platform to register
3134 int snd_soc_register_platform(struct device
*dev
,
3135 struct snd_soc_platform_driver
*platform_drv
)
3137 struct snd_soc_platform
*platform
;
3139 dev_dbg(dev
, "platform register %s\n", dev_name(dev
));
3141 platform
= kzalloc(sizeof(struct snd_soc_platform
), GFP_KERNEL
);
3142 if (platform
== NULL
)
3145 /* create platform component name */
3146 platform
->name
= fmt_single_name(dev
, &platform
->id
);
3147 if (platform
->name
== NULL
) {
3152 platform
->dev
= dev
;
3153 platform
->driver
= platform_drv
;
3154 platform
->dapm
.dev
= dev
;
3155 platform
->dapm
.platform
= platform
;
3157 mutex_lock(&client_mutex
);
3158 list_add(&platform
->list
, &platform_list
);
3159 snd_soc_instantiate_cards();
3160 mutex_unlock(&client_mutex
);
3162 pr_debug("Registered platform '%s'\n", platform
->name
);
3166 EXPORT_SYMBOL_GPL(snd_soc_register_platform
);
3169 * snd_soc_unregister_platform - Unregister a platform from the ASoC core
3171 * @platform: platform to unregister
3173 void snd_soc_unregister_platform(struct device
*dev
)
3175 struct snd_soc_platform
*platform
;
3177 list_for_each_entry(platform
, &platform_list
, list
) {
3178 if (dev
== platform
->dev
)
3184 mutex_lock(&client_mutex
);
3185 list_del(&platform
->list
);
3186 mutex_unlock(&client_mutex
);
3188 pr_debug("Unregistered platform '%s'\n", platform
->name
);
3189 kfree(platform
->name
);
3192 EXPORT_SYMBOL_GPL(snd_soc_unregister_platform
);
3194 static u64 codec_format_map
[] = {
3195 SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
,
3196 SNDRV_PCM_FMTBIT_U16_LE
| SNDRV_PCM_FMTBIT_U16_BE
,
3197 SNDRV_PCM_FMTBIT_S24_LE
| SNDRV_PCM_FMTBIT_S24_BE
,
3198 SNDRV_PCM_FMTBIT_U24_LE
| SNDRV_PCM_FMTBIT_U24_BE
,
3199 SNDRV_PCM_FMTBIT_S32_LE
| SNDRV_PCM_FMTBIT_S32_BE
,
3200 SNDRV_PCM_FMTBIT_U32_LE
| SNDRV_PCM_FMTBIT_U32_BE
,
3201 SNDRV_PCM_FMTBIT_S24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
3202 SNDRV_PCM_FMTBIT_U24_3LE
| SNDRV_PCM_FMTBIT_U24_3BE
,
3203 SNDRV_PCM_FMTBIT_S20_3LE
| SNDRV_PCM_FMTBIT_S20_3BE
,
3204 SNDRV_PCM_FMTBIT_U20_3LE
| SNDRV_PCM_FMTBIT_U20_3BE
,
3205 SNDRV_PCM_FMTBIT_S18_3LE
| SNDRV_PCM_FMTBIT_S18_3BE
,
3206 SNDRV_PCM_FMTBIT_U18_3LE
| SNDRV_PCM_FMTBIT_U18_3BE
,
3207 SNDRV_PCM_FMTBIT_FLOAT_LE
| SNDRV_PCM_FMTBIT_FLOAT_BE
,
3208 SNDRV_PCM_FMTBIT_FLOAT64_LE
| SNDRV_PCM_FMTBIT_FLOAT64_BE
,
3209 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE
3210 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE
,
3213 /* Fix up the DAI formats for endianness: codecs don't actually see
3214 * the endianness of the data but we're using the CPU format
3215 * definitions which do need to include endianness so we ensure that
3216 * codec DAIs always have both big and little endian variants set.
3218 static void fixup_codec_formats(struct snd_soc_pcm_stream
*stream
)
3222 for (i
= 0; i
< ARRAY_SIZE(codec_format_map
); i
++)
3223 if (stream
->formats
& codec_format_map
[i
])
3224 stream
->formats
|= codec_format_map
[i
];
3228 * snd_soc_register_codec - Register a codec with the ASoC core
3230 * @codec: codec to register
3232 int snd_soc_register_codec(struct device
*dev
,
3233 const struct snd_soc_codec_driver
*codec_drv
,
3234 struct snd_soc_dai_driver
*dai_drv
,
3238 struct snd_soc_codec
*codec
;
3241 dev_dbg(dev
, "codec register %s\n", dev_name(dev
));
3243 codec
= kzalloc(sizeof(struct snd_soc_codec
), GFP_KERNEL
);
3247 /* create CODEC component name */
3248 codec
->name
= fmt_single_name(dev
, &codec
->id
);
3249 if (codec
->name
== NULL
) {
3254 if (codec_drv
->compress_type
)
3255 codec
->compress_type
= codec_drv
->compress_type
;
3257 codec
->compress_type
= SND_SOC_FLAT_COMPRESSION
;
3259 codec
->write
= codec_drv
->write
;
3260 codec
->read
= codec_drv
->read
;
3261 codec
->volatile_register
= codec_drv
->volatile_register
;
3262 codec
->readable_register
= codec_drv
->readable_register
;
3263 codec
->writable_register
= codec_drv
->writable_register
;
3264 codec
->dapm
.bias_level
= SND_SOC_BIAS_OFF
;
3265 codec
->dapm
.dev
= dev
;
3266 codec
->dapm
.codec
= codec
;
3267 codec
->dapm
.seq_notifier
= codec_drv
->seq_notifier
;
3269 codec
->driver
= codec_drv
;
3270 codec
->num_dai
= num_dai
;
3271 mutex_init(&codec
->mutex
);
3273 /* allocate CODEC register cache */
3274 if (codec_drv
->reg_cache_size
&& codec_drv
->reg_word_size
) {
3275 reg_size
= codec_drv
->reg_cache_size
* codec_drv
->reg_word_size
;
3276 codec
->reg_size
= reg_size
;
3277 /* it is necessary to make a copy of the default register cache
3278 * because in the case of using a compression type that requires
3279 * the default register cache to be marked as __devinitconst the
3280 * kernel might have freed the array by the time we initialize
3283 if (codec_drv
->reg_cache_default
) {
3284 codec
->reg_def_copy
= kmemdup(codec_drv
->reg_cache_default
,
3285 reg_size
, GFP_KERNEL
);
3286 if (!codec
->reg_def_copy
) {
3293 if (codec_drv
->reg_access_size
&& codec_drv
->reg_access_default
) {
3294 if (!codec
->volatile_register
)
3295 codec
->volatile_register
= snd_soc_default_volatile_register
;
3296 if (!codec
->readable_register
)
3297 codec
->readable_register
= snd_soc_default_readable_register
;
3298 if (!codec
->writable_register
)
3299 codec
->writable_register
= snd_soc_default_writable_register
;
3302 for (i
= 0; i
< num_dai
; i
++) {
3303 fixup_codec_formats(&dai_drv
[i
].playback
);
3304 fixup_codec_formats(&dai_drv
[i
].capture
);
3307 /* register any DAIs */
3309 ret
= snd_soc_register_dais(dev
, dai_drv
, num_dai
);
3314 mutex_lock(&client_mutex
);
3315 list_add(&codec
->list
, &codec_list
);
3316 snd_soc_instantiate_cards();
3317 mutex_unlock(&client_mutex
);
3319 pr_debug("Registered codec '%s'\n", codec
->name
);
3323 kfree(codec
->reg_def_copy
);
3324 codec
->reg_def_copy
= NULL
;
3329 EXPORT_SYMBOL_GPL(snd_soc_register_codec
);
3332 * snd_soc_unregister_codec - Unregister a codec from the ASoC core
3334 * @codec: codec to unregister
3336 void snd_soc_unregister_codec(struct device
*dev
)
3338 struct snd_soc_codec
*codec
;
3341 list_for_each_entry(codec
, &codec_list
, list
) {
3342 if (dev
== codec
->dev
)
3349 for (i
= 0; i
< codec
->num_dai
; i
++)
3350 snd_soc_unregister_dai(dev
);
3352 mutex_lock(&client_mutex
);
3353 list_del(&codec
->list
);
3354 mutex_unlock(&client_mutex
);
3356 pr_debug("Unregistered codec '%s'\n", codec
->name
);
3358 snd_soc_cache_exit(codec
);
3359 kfree(codec
->reg_def_copy
);
3363 EXPORT_SYMBOL_GPL(snd_soc_unregister_codec
);
3365 static int __init
snd_soc_init(void)
3367 #ifdef CONFIG_DEBUG_FS
3368 snd_soc_debugfs_root
= debugfs_create_dir("asoc", NULL
);
3369 if (IS_ERR(snd_soc_debugfs_root
) || !snd_soc_debugfs_root
) {
3371 "ASoC: Failed to create debugfs directory\n");
3372 snd_soc_debugfs_root
= NULL
;
3375 if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root
, NULL
,
3377 pr_warn("ASoC: Failed to create CODEC list debugfs file\n");
3379 if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root
, NULL
,
3381 pr_warn("ASoC: Failed to create DAI list debugfs file\n");
3383 if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root
, NULL
,
3384 &platform_list_fops
))
3385 pr_warn("ASoC: Failed to create platform list debugfs file\n");
3388 snd_soc_util_init();
3390 return platform_driver_register(&soc_driver
);
3392 module_init(snd_soc_init
);
3394 static void __exit
snd_soc_exit(void)
3396 snd_soc_util_exit();
3398 #ifdef CONFIG_DEBUG_FS
3399 debugfs_remove_recursive(snd_soc_debugfs_root
);
3401 platform_driver_unregister(&soc_driver
);
3403 module_exit(snd_soc_exit
);
3405 /* Module information */
3406 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
3407 MODULE_DESCRIPTION("ALSA SoC Core");
3408 MODULE_LICENSE("GPL");
3409 MODULE_ALIAS("platform:soc-audio");