2 * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
13 * o Changes power status of internal codec blocks depending on the
14 * dynamic configuration of codec internal audio paths and active
16 * o Platform power domain - can support external components i.e. amps and
17 * mic/meadphone insertion events.
18 * o Automatic Mic Bias support
19 * o Jack insertion power event initiation - e.g. hp insertion will enable
21 * o Delayed powerdown of audio susbsystem to reduce pops between a quick
25 * o DAPM power change sequencing - allow for configurable per
27 * o Support for analogue bias optimisation.
28 * o Support for reduced codec oversampling rates.
29 * o Support for reduced codec bias currents.
32 #include <linux/module.h>
33 #include <linux/moduleparam.h>
34 #include <linux/init.h>
35 #include <linux/delay.h>
37 #include <linux/bitops.h>
38 #include <linux/platform_device.h>
39 #include <linux/jiffies.h>
40 #include <linux/debugfs.h>
41 #include <sound/core.h>
42 #include <sound/pcm.h>
43 #include <sound/pcm_params.h>
44 #include <sound/soc-dapm.h>
45 #include <sound/initval.h>
49 #define dump_dapm(codec, action) dbg_dump_dapm(codec, action)
51 #define dump_dapm(codec, action)
54 /* dapm power sequences - make this per codec in the future */
55 static int dapm_up_seq
[] = {
56 [snd_soc_dapm_pre
] = 0,
57 [snd_soc_dapm_supply
] = 1,
58 [snd_soc_dapm_micbias
] = 2,
59 [snd_soc_dapm_aif_in
] = 3,
60 [snd_soc_dapm_aif_out
] = 3,
61 [snd_soc_dapm_mic
] = 4,
62 [snd_soc_dapm_mux
] = 5,
63 [snd_soc_dapm_value_mux
] = 5,
64 [snd_soc_dapm_dac
] = 6,
65 [snd_soc_dapm_mixer
] = 7,
66 [snd_soc_dapm_mixer_named_ctl
] = 7,
67 [snd_soc_dapm_pga
] = 8,
68 [snd_soc_dapm_adc
] = 9,
69 [snd_soc_dapm_hp
] = 10,
70 [snd_soc_dapm_spk
] = 10,
71 [snd_soc_dapm_post
] = 11,
74 static int dapm_down_seq
[] = {
75 [snd_soc_dapm_pre
] = 0,
76 [snd_soc_dapm_adc
] = 1,
77 [snd_soc_dapm_hp
] = 2,
78 [snd_soc_dapm_spk
] = 2,
79 [snd_soc_dapm_pga
] = 4,
80 [snd_soc_dapm_mixer_named_ctl
] = 5,
81 [snd_soc_dapm_mixer
] = 5,
82 [snd_soc_dapm_dac
] = 6,
83 [snd_soc_dapm_mic
] = 7,
84 [snd_soc_dapm_micbias
] = 8,
85 [snd_soc_dapm_mux
] = 9,
86 [snd_soc_dapm_value_mux
] = 9,
87 [snd_soc_dapm_aif_in
] = 10,
88 [snd_soc_dapm_aif_out
] = 10,
89 [snd_soc_dapm_supply
] = 11,
90 [snd_soc_dapm_post
] = 12,
93 static void pop_wait(u32 pop_time
)
96 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time
));
99 static void pop_dbg(u32 pop_time
, const char *fmt
, ...)
113 /* create a new dapm widget */
114 static inline struct snd_soc_dapm_widget
*dapm_cnew_widget(
115 const struct snd_soc_dapm_widget
*_widget
)
117 return kmemdup(_widget
, sizeof(*_widget
), GFP_KERNEL
);
121 * snd_soc_dapm_set_bias_level - set the bias level for the system
122 * @socdev: audio device
123 * @level: level to configure
125 * Configure the bias (power) levels for the SoC audio device.
127 * Returns 0 for success else error.
129 static int snd_soc_dapm_set_bias_level(struct snd_soc_device
*socdev
,
130 enum snd_soc_bias_level level
)
132 struct snd_soc_card
*card
= socdev
->card
;
133 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
137 case SND_SOC_BIAS_ON
:
138 dev_dbg(socdev
->dev
, "Setting full bias\n");
140 case SND_SOC_BIAS_PREPARE
:
141 dev_dbg(socdev
->dev
, "Setting bias prepare\n");
143 case SND_SOC_BIAS_STANDBY
:
144 dev_dbg(socdev
->dev
, "Setting standby bias\n");
146 case SND_SOC_BIAS_OFF
:
147 dev_dbg(socdev
->dev
, "Setting bias off\n");
150 dev_err(socdev
->dev
, "Setting invalid bias %d\n", level
);
154 if (card
->set_bias_level
)
155 ret
= card
->set_bias_level(card
, level
);
157 if (codec
->set_bias_level
)
158 ret
= codec
->set_bias_level(codec
, level
);
160 codec
->bias_level
= level
;
166 /* set up initial codec paths */
167 static void dapm_set_path_status(struct snd_soc_dapm_widget
*w
,
168 struct snd_soc_dapm_path
*p
, int i
)
171 case snd_soc_dapm_switch
:
172 case snd_soc_dapm_mixer
:
173 case snd_soc_dapm_mixer_named_ctl
: {
175 struct soc_mixer_control
*mc
= (struct soc_mixer_control
*)
176 w
->kcontrols
[i
].private_value
;
177 unsigned int reg
= mc
->reg
;
178 unsigned int shift
= mc
->shift
;
180 unsigned int mask
= (1 << fls(max
)) - 1;
181 unsigned int invert
= mc
->invert
;
183 val
= snd_soc_read(w
->codec
, reg
);
184 val
= (val
>> shift
) & mask
;
186 if ((invert
&& !val
) || (!invert
&& val
))
192 case snd_soc_dapm_mux
: {
193 struct soc_enum
*e
= (struct soc_enum
*)w
->kcontrols
[i
].private_value
;
194 int val
, item
, bitmask
;
196 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
198 val
= snd_soc_read(w
->codec
, e
->reg
);
199 item
= (val
>> e
->shift_l
) & (bitmask
- 1);
202 for (i
= 0; i
< e
->max
; i
++) {
203 if (!(strcmp(p
->name
, e
->texts
[i
])) && item
== i
)
208 case snd_soc_dapm_value_mux
: {
209 struct soc_enum
*e
= (struct soc_enum
*)
210 w
->kcontrols
[i
].private_value
;
213 val
= snd_soc_read(w
->codec
, e
->reg
);
214 val
= (val
>> e
->shift_l
) & e
->mask
;
215 for (item
= 0; item
< e
->max
; item
++) {
216 if (val
== e
->values
[item
])
221 for (i
= 0; i
< e
->max
; i
++) {
222 if (!(strcmp(p
->name
, e
->texts
[i
])) && item
== i
)
227 /* does not effect routing - always connected */
228 case snd_soc_dapm_pga
:
229 case snd_soc_dapm_output
:
230 case snd_soc_dapm_adc
:
231 case snd_soc_dapm_input
:
232 case snd_soc_dapm_dac
:
233 case snd_soc_dapm_micbias
:
234 case snd_soc_dapm_vmid
:
235 case snd_soc_dapm_supply
:
236 case snd_soc_dapm_aif_in
:
237 case snd_soc_dapm_aif_out
:
240 /* does effect routing - dynamically connected */
241 case snd_soc_dapm_hp
:
242 case snd_soc_dapm_mic
:
243 case snd_soc_dapm_spk
:
244 case snd_soc_dapm_line
:
245 case snd_soc_dapm_pre
:
246 case snd_soc_dapm_post
:
252 /* connect mux widget to its interconnecting audio paths */
253 static int dapm_connect_mux(struct snd_soc_codec
*codec
,
254 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
255 struct snd_soc_dapm_path
*path
, const char *control_name
,
256 const struct snd_kcontrol_new
*kcontrol
)
258 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
261 for (i
= 0; i
< e
->max
; i
++) {
262 if (!(strcmp(control_name
, e
->texts
[i
]))) {
263 list_add(&path
->list
, &codec
->dapm_paths
);
264 list_add(&path
->list_sink
, &dest
->sources
);
265 list_add(&path
->list_source
, &src
->sinks
);
266 path
->name
= (char*)e
->texts
[i
];
267 dapm_set_path_status(dest
, path
, 0);
275 /* connect mixer widget to its interconnecting audio paths */
276 static int dapm_connect_mixer(struct snd_soc_codec
*codec
,
277 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
278 struct snd_soc_dapm_path
*path
, const char *control_name
)
282 /* search for mixer kcontrol */
283 for (i
= 0; i
< dest
->num_kcontrols
; i
++) {
284 if (!strcmp(control_name
, dest
->kcontrols
[i
].name
)) {
285 list_add(&path
->list
, &codec
->dapm_paths
);
286 list_add(&path
->list_sink
, &dest
->sources
);
287 list_add(&path
->list_source
, &src
->sinks
);
288 path
->name
= dest
->kcontrols
[i
].name
;
289 dapm_set_path_status(dest
, path
, i
);
296 /* update dapm codec register bits */
297 static int dapm_update_bits(struct snd_soc_dapm_widget
*widget
)
300 unsigned int old
, new;
301 struct snd_soc_codec
*codec
= widget
->codec
;
303 /* check for valid widgets */
304 if (widget
->reg
< 0 || widget
->id
== snd_soc_dapm_input
||
305 widget
->id
== snd_soc_dapm_output
||
306 widget
->id
== snd_soc_dapm_hp
||
307 widget
->id
== snd_soc_dapm_mic
||
308 widget
->id
== snd_soc_dapm_line
||
309 widget
->id
== snd_soc_dapm_spk
)
312 power
= widget
->power
;
314 power
= (power
? 0:1);
316 old
= snd_soc_read(codec
, widget
->reg
);
317 new = (old
& ~(0x1 << widget
->shift
)) | (power
<< widget
->shift
);
321 pop_dbg(codec
->pop_time
, "pop test %s : %s in %d ms\n",
322 widget
->name
, widget
->power
? "on" : "off",
324 snd_soc_write(codec
, widget
->reg
, new);
325 pop_wait(codec
->pop_time
);
327 pr_debug("reg %x old %x new %x change %d\n", widget
->reg
,
332 /* ramps the volume up or down to minimise pops before or after a
333 * DAPM power event */
334 static int dapm_set_pga(struct snd_soc_dapm_widget
*widget
, int power
)
336 const struct snd_kcontrol_new
*k
= widget
->kcontrols
;
338 if (widget
->muted
&& !power
)
340 if (!widget
->muted
&& power
)
343 if (widget
->num_kcontrols
&& k
) {
344 struct soc_mixer_control
*mc
=
345 (struct soc_mixer_control
*)k
->private_value
;
346 unsigned int reg
= mc
->reg
;
347 unsigned int shift
= mc
->shift
;
349 unsigned int mask
= (1 << fls(max
)) - 1;
350 unsigned int invert
= mc
->invert
;
354 /* power up has happended, increase volume to last level */
356 for (i
= max
; i
> widget
->saved_value
; i
--)
357 snd_soc_update_bits(widget
->codec
, reg
, mask
, i
);
359 for (i
= 0; i
< widget
->saved_value
; i
++)
360 snd_soc_update_bits(widget
->codec
, reg
, mask
, i
);
364 /* power down is about to occur, decrease volume to mute */
365 int val
= snd_soc_read(widget
->codec
, reg
);
366 int i
= widget
->saved_value
= (val
>> shift
) & mask
;
368 for (; i
< mask
; i
++)
369 snd_soc_update_bits(widget
->codec
, reg
, mask
, i
);
372 snd_soc_update_bits(widget
->codec
, reg
, mask
, i
);
380 /* create new dapm mixer control */
381 static int dapm_new_mixer(struct snd_soc_codec
*codec
,
382 struct snd_soc_dapm_widget
*w
)
386 struct snd_soc_dapm_path
*path
;
389 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
392 list_for_each_entry(path
, &w
->sources
, list_sink
) {
394 /* mixer/mux paths name must match control name */
395 if (path
->name
!= (char*)w
->kcontrols
[i
].name
)
398 /* add dapm control with long name.
399 * for dapm_mixer this is the concatenation of the
400 * mixer and kcontrol name.
401 * for dapm_mixer_named_ctl this is simply the
404 name_len
= strlen(w
->kcontrols
[i
].name
) + 1;
405 if (w
->id
!= snd_soc_dapm_mixer_named_ctl
)
406 name_len
+= 1 + strlen(w
->name
);
408 path
->long_name
= kmalloc(name_len
, GFP_KERNEL
);
410 if (path
->long_name
== NULL
)
415 snprintf(path
->long_name
, name_len
, "%s %s",
416 w
->name
, w
->kcontrols
[i
].name
);
418 case snd_soc_dapm_mixer_named_ctl
:
419 snprintf(path
->long_name
, name_len
, "%s",
420 w
->kcontrols
[i
].name
);
424 path
->long_name
[name_len
- 1] = '\0';
426 path
->kcontrol
= snd_soc_cnew(&w
->kcontrols
[i
], w
,
428 ret
= snd_ctl_add(codec
->card
, path
->kcontrol
);
430 printk(KERN_ERR
"asoc: failed to add dapm kcontrol %s: %d\n",
433 kfree(path
->long_name
);
434 path
->long_name
= NULL
;
442 /* create new dapm mux control */
443 static int dapm_new_mux(struct snd_soc_codec
*codec
,
444 struct snd_soc_dapm_widget
*w
)
446 struct snd_soc_dapm_path
*path
= NULL
;
447 struct snd_kcontrol
*kcontrol
;
450 if (!w
->num_kcontrols
) {
451 printk(KERN_ERR
"asoc: mux %s has no controls\n", w
->name
);
455 kcontrol
= snd_soc_cnew(&w
->kcontrols
[0], w
, w
->name
);
456 ret
= snd_ctl_add(codec
->card
, kcontrol
);
460 list_for_each_entry(path
, &w
->sources
, list_sink
)
461 path
->kcontrol
= kcontrol
;
466 printk(KERN_ERR
"asoc: failed to add kcontrol %s\n", w
->name
);
470 /* create new dapm volume control */
471 static int dapm_new_pga(struct snd_soc_codec
*codec
,
472 struct snd_soc_dapm_widget
*w
)
474 struct snd_kcontrol
*kcontrol
;
477 if (!w
->num_kcontrols
)
480 kcontrol
= snd_soc_cnew(&w
->kcontrols
[0], w
, w
->name
);
481 ret
= snd_ctl_add(codec
->card
, kcontrol
);
483 printk(KERN_ERR
"asoc: failed to add kcontrol %s\n", w
->name
);
490 /* reset 'walked' bit for each dapm path */
491 static inline void dapm_clear_walk(struct snd_soc_codec
*codec
)
493 struct snd_soc_dapm_path
*p
;
495 list_for_each_entry(p
, &codec
->dapm_paths
, list
)
500 * Recursively check for a completed path to an active or physically connected
501 * output widget. Returns number of complete paths.
503 static int is_connected_output_ep(struct snd_soc_dapm_widget
*widget
)
505 struct snd_soc_dapm_path
*path
;
508 if (widget
->id
== snd_soc_dapm_supply
)
511 switch (widget
->id
) {
512 case snd_soc_dapm_adc
:
513 case snd_soc_dapm_aif_out
:
520 if (widget
->connected
) {
521 /* connected pin ? */
522 if (widget
->id
== snd_soc_dapm_output
&& !widget
->ext
)
525 /* connected jack or spk ? */
526 if (widget
->id
== snd_soc_dapm_hp
|| widget
->id
== snd_soc_dapm_spk
||
527 (widget
->id
== snd_soc_dapm_line
&& !list_empty(&widget
->sources
)))
531 list_for_each_entry(path
, &widget
->sinks
, list_source
) {
535 if (path
->sink
&& path
->connect
) {
537 con
+= is_connected_output_ep(path
->sink
);
545 * Recursively check for a completed path to an active or physically connected
546 * input widget. Returns number of complete paths.
548 static int is_connected_input_ep(struct snd_soc_dapm_widget
*widget
)
550 struct snd_soc_dapm_path
*path
;
553 if (widget
->id
== snd_soc_dapm_supply
)
556 /* active stream ? */
557 switch (widget
->id
) {
558 case snd_soc_dapm_dac
:
559 case snd_soc_dapm_aif_in
:
566 if (widget
->connected
) {
567 /* connected pin ? */
568 if (widget
->id
== snd_soc_dapm_input
&& !widget
->ext
)
571 /* connected VMID/Bias for lower pops */
572 if (widget
->id
== snd_soc_dapm_vmid
)
575 /* connected jack ? */
576 if (widget
->id
== snd_soc_dapm_mic
||
577 (widget
->id
== snd_soc_dapm_line
&& !list_empty(&widget
->sinks
)))
581 list_for_each_entry(path
, &widget
->sources
, list_sink
) {
585 if (path
->source
&& path
->connect
) {
587 con
+= is_connected_input_ep(path
->source
);
595 * Handler for generic register modifier widget.
597 int dapm_reg_event(struct snd_soc_dapm_widget
*w
,
598 struct snd_kcontrol
*kcontrol
, int event
)
602 if (SND_SOC_DAPM_EVENT_ON(event
))
607 snd_soc_update_bits(w
->codec
, -(w
->reg
+ 1),
608 w
->mask
<< w
->shift
, val
<< w
->shift
);
612 EXPORT_SYMBOL_GPL(dapm_reg_event
);
614 /* Standard power change method, used to apply power changes to most
617 static int dapm_generic_apply_power(struct snd_soc_dapm_widget
*w
)
621 /* call any power change event handlers */
623 pr_debug("power %s event for %s flags %x\n",
624 w
->power
? "on" : "off",
625 w
->name
, w
->event_flags
);
627 /* power up pre event */
628 if (w
->power
&& w
->event
&&
629 (w
->event_flags
& SND_SOC_DAPM_PRE_PMU
)) {
630 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMU
);
635 /* power down pre event */
636 if (!w
->power
&& w
->event
&&
637 (w
->event_flags
& SND_SOC_DAPM_PRE_PMD
)) {
638 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMD
);
643 /* Lower PGA volume to reduce pops */
644 if (w
->id
== snd_soc_dapm_pga
&& !w
->power
)
645 dapm_set_pga(w
, w
->power
);
649 /* Raise PGA volume to reduce pops */
650 if (w
->id
== snd_soc_dapm_pga
&& w
->power
)
651 dapm_set_pga(w
, w
->power
);
653 /* power up post event */
654 if (w
->power
&& w
->event
&&
655 (w
->event_flags
& SND_SOC_DAPM_POST_PMU
)) {
657 NULL
, SND_SOC_DAPM_POST_PMU
);
662 /* power down post event */
663 if (!w
->power
&& w
->event
&&
664 (w
->event_flags
& SND_SOC_DAPM_POST_PMD
)) {
665 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_POST_PMD
);
673 /* Generic check to see if a widget should be powered.
675 static int dapm_generic_check_power(struct snd_soc_dapm_widget
*w
)
679 in
= is_connected_input_ep(w
);
680 dapm_clear_walk(w
->codec
);
681 out
= is_connected_output_ep(w
);
682 dapm_clear_walk(w
->codec
);
683 return out
!= 0 && in
!= 0;
686 /* Check to see if an ADC has power */
687 static int dapm_adc_check_power(struct snd_soc_dapm_widget
*w
)
692 in
= is_connected_input_ep(w
);
693 dapm_clear_walk(w
->codec
);
696 return dapm_generic_check_power(w
);
700 /* Check to see if a DAC has power */
701 static int dapm_dac_check_power(struct snd_soc_dapm_widget
*w
)
706 out
= is_connected_output_ep(w
);
707 dapm_clear_walk(w
->codec
);
710 return dapm_generic_check_power(w
);
714 /* Check to see if a power supply is needed */
715 static int dapm_supply_check_power(struct snd_soc_dapm_widget
*w
)
717 struct snd_soc_dapm_path
*path
;
720 /* Check if one of our outputs is connected */
721 list_for_each_entry(path
, &w
->sinks
, list_source
) {
722 if (path
->connected
&&
723 !path
->connected(path
->source
, path
->sink
))
726 if (path
->sink
&& path
->sink
->power_check
&&
727 path
->sink
->power_check(path
->sink
)) {
733 dapm_clear_walk(w
->codec
);
738 static int dapm_seq_compare(struct snd_soc_dapm_widget
*a
,
739 struct snd_soc_dapm_widget
*b
,
742 if (sort
[a
->id
] != sort
[b
->id
])
743 return sort
[a
->id
] - sort
[b
->id
];
744 if (a
->reg
!= b
->reg
)
745 return a
->reg
- b
->reg
;
750 /* Insert a widget in order into a DAPM power sequence. */
751 static void dapm_seq_insert(struct snd_soc_dapm_widget
*new_widget
,
752 struct list_head
*list
,
755 struct snd_soc_dapm_widget
*w
;
757 list_for_each_entry(w
, list
, power_list
)
758 if (dapm_seq_compare(new_widget
, w
, sort
) < 0) {
759 list_add_tail(&new_widget
->power_list
, &w
->power_list
);
763 list_add_tail(&new_widget
->power_list
, list
);
766 /* Apply the coalesced changes from a DAPM sequence */
767 static void dapm_seq_run_coalesced(struct snd_soc_codec
*codec
,
768 struct list_head
*pending
)
770 struct snd_soc_dapm_widget
*w
;
772 unsigned int value
= 0;
773 unsigned int mask
= 0;
774 unsigned int cur_mask
;
776 reg
= list_first_entry(pending
, struct snd_soc_dapm_widget
,
779 list_for_each_entry(w
, pending
, power_list
) {
780 cur_mask
= 1 << w
->shift
;
781 BUG_ON(reg
!= w
->reg
);
792 pop_dbg(codec
->pop_time
,
793 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
794 w
->name
, reg
, value
, mask
);
796 /* power up pre event */
797 if (w
->power
&& w
->event
&&
798 (w
->event_flags
& SND_SOC_DAPM_PRE_PMU
)) {
799 pop_dbg(codec
->pop_time
, "pop test : %s PRE_PMU\n",
801 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMU
);
803 pr_err("%s: pre event failed: %d\n",
807 /* power down pre event */
808 if (!w
->power
&& w
->event
&&
809 (w
->event_flags
& SND_SOC_DAPM_PRE_PMD
)) {
810 pop_dbg(codec
->pop_time
, "pop test : %s PRE_PMD\n",
812 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMD
);
814 pr_err("%s: pre event failed: %d\n",
818 /* Lower PGA volume to reduce pops */
819 if (w
->id
== snd_soc_dapm_pga
&& !w
->power
)
820 dapm_set_pga(w
, w
->power
);
824 pop_dbg(codec
->pop_time
,
825 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
826 value
, mask
, reg
, codec
->pop_time
);
827 pop_wait(codec
->pop_time
);
828 snd_soc_update_bits(codec
, reg
, mask
, value
);
831 list_for_each_entry(w
, pending
, power_list
) {
832 /* Raise PGA volume to reduce pops */
833 if (w
->id
== snd_soc_dapm_pga
&& w
->power
)
834 dapm_set_pga(w
, w
->power
);
836 /* power up post event */
837 if (w
->power
&& w
->event
&&
838 (w
->event_flags
& SND_SOC_DAPM_POST_PMU
)) {
839 pop_dbg(codec
->pop_time
, "pop test : %s POST_PMU\n",
842 NULL
, SND_SOC_DAPM_POST_PMU
);
844 pr_err("%s: post event failed: %d\n",
848 /* power down post event */
849 if (!w
->power
&& w
->event
&&
850 (w
->event_flags
& SND_SOC_DAPM_POST_PMD
)) {
851 pop_dbg(codec
->pop_time
, "pop test : %s POST_PMD\n",
853 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_POST_PMD
);
855 pr_err("%s: post event failed: %d\n",
861 /* Apply a DAPM power sequence.
863 * We walk over a pre-sorted list of widgets to apply power to. In
864 * order to minimise the number of writes to the device required
865 * multiple widgets will be updated in a single write where possible.
866 * Currently anything that requires more than a single write is not
869 static void dapm_seq_run(struct snd_soc_codec
*codec
, struct list_head
*list
,
870 int event
, int sort
[])
872 struct snd_soc_dapm_widget
*w
, *n
;
875 int cur_reg
= SND_SOC_NOPM
;
878 list_for_each_entry_safe(w
, n
, list
, power_list
) {
881 /* Do we need to apply any queued changes? */
882 if (sort
[w
->id
] != cur_sort
|| w
->reg
!= cur_reg
) {
883 if (!list_empty(&pending
))
884 dapm_seq_run_coalesced(codec
, &pending
);
886 INIT_LIST_HEAD(&pending
);
888 cur_reg
= SND_SOC_NOPM
;
892 case snd_soc_dapm_pre
:
894 list_for_each_entry_safe_continue(w
, n
, list
,
897 if (event
== SND_SOC_DAPM_STREAM_START
)
899 NULL
, SND_SOC_DAPM_PRE_PMU
);
900 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
902 NULL
, SND_SOC_DAPM_PRE_PMD
);
905 case snd_soc_dapm_post
:
907 list_for_each_entry_safe_continue(w
, n
, list
,
910 if (event
== SND_SOC_DAPM_STREAM_START
)
912 NULL
, SND_SOC_DAPM_POST_PMU
);
913 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
915 NULL
, SND_SOC_DAPM_POST_PMD
);
918 case snd_soc_dapm_input
:
919 case snd_soc_dapm_output
:
920 case snd_soc_dapm_hp
:
921 case snd_soc_dapm_mic
:
922 case snd_soc_dapm_line
:
923 case snd_soc_dapm_spk
:
924 /* No register support currently */
925 ret
= dapm_generic_apply_power(w
);
929 /* Queue it up for application */
930 cur_sort
= sort
[w
->id
];
932 list_move(&w
->power_list
, &pending
);
937 pr_err("Failed to apply widget power: %d\n",
941 if (!list_empty(&pending
))
942 dapm_seq_run_coalesced(codec
, &pending
);
946 * Scan each dapm widget for complete audio path.
947 * A complete path is a route that has valid endpoints i.e.:-
949 * o DAC to output pin.
950 * o Input Pin to ADC.
951 * o Input pin to Output pin (bypass, sidetone)
952 * o DAC to ADC (loopback).
954 static int dapm_power_widgets(struct snd_soc_codec
*codec
, int event
)
956 struct snd_soc_device
*socdev
= codec
->socdev
;
957 struct snd_soc_dapm_widget
*w
;
959 LIST_HEAD(down_list
);
964 /* Check which widgets we need to power and store them in
965 * lists indicating if they should be powered up or down.
967 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
969 case snd_soc_dapm_pre
:
970 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
972 case snd_soc_dapm_post
:
973 dapm_seq_insert(w
, &up_list
, dapm_up_seq
);
980 /* If we're suspending then pull down all the
983 case SND_SOC_DAPM_STREAM_SUSPEND
:
988 power
= w
->power_check(w
);
994 if (w
->power
== power
)
998 dapm_seq_insert(w
, &up_list
, dapm_up_seq
);
1000 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
1007 /* If there are no DAPM widgets then try to figure out power from the
1010 if (list_empty(&codec
->dapm_widgets
)) {
1012 case SND_SOC_DAPM_STREAM_START
:
1013 case SND_SOC_DAPM_STREAM_RESUME
:
1016 case SND_SOC_DAPM_STREAM_SUSPEND
:
1019 case SND_SOC_DAPM_STREAM_NOP
:
1020 sys_power
= codec
->bias_level
!= SND_SOC_BIAS_STANDBY
;
1027 /* If we're changing to all on or all off then prepare */
1028 if ((sys_power
&& codec
->bias_level
== SND_SOC_BIAS_STANDBY
) ||
1029 (!sys_power
&& codec
->bias_level
== SND_SOC_BIAS_ON
)) {
1030 ret
= snd_soc_dapm_set_bias_level(socdev
,
1031 SND_SOC_BIAS_PREPARE
);
1033 pr_err("Failed to prepare bias: %d\n", ret
);
1036 /* Power down widgets first; try to avoid amplifying pops. */
1037 dapm_seq_run(codec
, &down_list
, event
, dapm_down_seq
);
1040 dapm_seq_run(codec
, &up_list
, event
, dapm_up_seq
);
1042 /* If we just powered the last thing off drop to standby bias */
1043 if (codec
->bias_level
== SND_SOC_BIAS_PREPARE
&& !sys_power
) {
1044 ret
= snd_soc_dapm_set_bias_level(socdev
,
1045 SND_SOC_BIAS_STANDBY
);
1047 pr_err("Failed to apply standby bias: %d\n", ret
);
1050 /* If we just powered up then move to active bias */
1051 if (codec
->bias_level
== SND_SOC_BIAS_PREPARE
&& sys_power
) {
1052 ret
= snd_soc_dapm_set_bias_level(socdev
,
1055 pr_err("Failed to apply active bias: %d\n", ret
);
1058 pop_dbg(codec
->pop_time
, "DAPM sequencing finished, waiting %dms\n",
1065 static void dbg_dump_dapm(struct snd_soc_codec
* codec
, const char *action
)
1067 struct snd_soc_dapm_widget
*w
;
1068 struct snd_soc_dapm_path
*p
= NULL
;
1071 printk("DAPM %s %s\n", codec
->name
, action
);
1073 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1075 /* only display widgets that effect routing */
1077 case snd_soc_dapm_pre
:
1078 case snd_soc_dapm_post
:
1079 case snd_soc_dapm_vmid
:
1081 case snd_soc_dapm_mux
:
1082 case snd_soc_dapm_value_mux
:
1083 case snd_soc_dapm_output
:
1084 case snd_soc_dapm_input
:
1085 case snd_soc_dapm_switch
:
1086 case snd_soc_dapm_hp
:
1087 case snd_soc_dapm_mic
:
1088 case snd_soc_dapm_spk
:
1089 case snd_soc_dapm_line
:
1090 case snd_soc_dapm_micbias
:
1091 case snd_soc_dapm_dac
:
1092 case snd_soc_dapm_adc
:
1093 case snd_soc_dapm_pga
:
1094 case snd_soc_dapm_mixer
:
1095 case snd_soc_dapm_mixer_named_ctl
:
1096 case snd_soc_dapm_supply
:
1097 case snd_soc_dapm_aif_in
:
1098 case snd_soc_dapm_aif_out
:
1100 in
= is_connected_input_ep(w
);
1101 dapm_clear_walk(w
->codec
);
1102 out
= is_connected_output_ep(w
);
1103 dapm_clear_walk(w
->codec
);
1104 printk("%s: %s in %d out %d\n", w
->name
,
1105 w
->power
? "On":"Off",in
, out
);
1107 list_for_each_entry(p
, &w
->sources
, list_sink
) {
1109 printk(" in %s %s\n", p
->name
? p
->name
: "static",
1112 list_for_each_entry(p
, &w
->sinks
, list_source
) {
1114 printk(" out %s %s\n", p
->name
? p
->name
: "static",
1124 #ifdef CONFIG_DEBUG_FS
1125 static int dapm_widget_power_open_file(struct inode
*inode
, struct file
*file
)
1127 file
->private_data
= inode
->i_private
;
1131 static ssize_t
dapm_widget_power_read_file(struct file
*file
,
1132 char __user
*user_buf
,
1133 size_t count
, loff_t
*ppos
)
1135 struct snd_soc_dapm_widget
*w
= file
->private_data
;
1139 struct snd_soc_dapm_path
*p
= NULL
;
1141 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
1145 in
= is_connected_input_ep(w
);
1146 dapm_clear_walk(w
->codec
);
1147 out
= is_connected_output_ep(w
);
1148 dapm_clear_walk(w
->codec
);
1150 ret
= snprintf(buf
, PAGE_SIZE
, "%s: %s in %d out %d\n",
1151 w
->name
, w
->power
? "On" : "Off", in
, out
);
1154 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, " stream %s %s\n",
1156 w
->active
? "active" : "inactive");
1158 list_for_each_entry(p
, &w
->sources
, list_sink
) {
1159 if (p
->connected
&& !p
->connected(w
, p
->sink
))
1163 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1165 p
->name
? p
->name
: "static",
1168 list_for_each_entry(p
, &w
->sinks
, list_source
) {
1169 if (p
->connected
&& !p
->connected(w
, p
->sink
))
1173 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1175 p
->name
? p
->name
: "static",
1179 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
1185 static const struct file_operations dapm_widget_power_fops
= {
1186 .open
= dapm_widget_power_open_file
,
1187 .read
= dapm_widget_power_read_file
,
1190 void snd_soc_dapm_debugfs_init(struct snd_soc_codec
*codec
)
1192 struct snd_soc_dapm_widget
*w
;
1195 if (!codec
->debugfs_dapm
)
1198 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1202 d
= debugfs_create_file(w
->name
, 0444,
1203 codec
->debugfs_dapm
, w
,
1204 &dapm_widget_power_fops
);
1207 "ASoC: Failed to create %s debugfs file\n",
1212 void snd_soc_dapm_debugfs_init(struct snd_soc_codec
*codec
)
1217 /* test and update the power status of a mux widget */
1218 static int dapm_mux_update_power(struct snd_soc_dapm_widget
*widget
,
1219 struct snd_kcontrol
*kcontrol
, int change
,
1220 int mux
, struct soc_enum
*e
)
1222 struct snd_soc_dapm_path
*path
;
1225 if (widget
->id
!= snd_soc_dapm_mux
&&
1226 widget
->id
!= snd_soc_dapm_value_mux
)
1232 /* find dapm widget path assoc with kcontrol */
1233 list_for_each_entry(path
, &widget
->codec
->dapm_paths
, list
) {
1234 if (path
->kcontrol
!= kcontrol
)
1237 if (!path
->name
|| !e
->texts
[mux
])
1241 /* we now need to match the string in the enum to the path */
1242 if (!(strcmp(path
->name
, e
->texts
[mux
])))
1243 path
->connect
= 1; /* new connection */
1245 path
->connect
= 0; /* old connection must be powered down */
1249 dapm_power_widgets(widget
->codec
, SND_SOC_DAPM_STREAM_NOP
);
1250 dump_dapm(widget
->codec
, "mux power update");
1256 /* test and update the power status of a mixer or switch widget */
1257 static int dapm_mixer_update_power(struct snd_soc_dapm_widget
*widget
,
1258 struct snd_kcontrol
*kcontrol
, int reg
,
1259 int val_mask
, int val
, int invert
)
1261 struct snd_soc_dapm_path
*path
;
1264 if (widget
->id
!= snd_soc_dapm_mixer
&&
1265 widget
->id
!= snd_soc_dapm_mixer_named_ctl
&&
1266 widget
->id
!= snd_soc_dapm_switch
)
1269 if (!snd_soc_test_bits(widget
->codec
, reg
, val_mask
, val
))
1272 /* find dapm widget path assoc with kcontrol */
1273 list_for_each_entry(path
, &widget
->codec
->dapm_paths
, list
) {
1274 if (path
->kcontrol
!= kcontrol
)
1277 /* found, now check type */
1280 /* new connection */
1281 path
->connect
= invert
? 0:1;
1283 /* old connection must be powered down */
1284 path
->connect
= invert
? 1:0;
1289 dapm_power_widgets(widget
->codec
, SND_SOC_DAPM_STREAM_NOP
);
1290 dump_dapm(widget
->codec
, "mixer power update");
1296 /* show dapm widget status in sys fs */
1297 static ssize_t
dapm_widget_show(struct device
*dev
,
1298 struct device_attribute
*attr
, char *buf
)
1300 struct snd_soc_device
*devdata
= dev_get_drvdata(dev
);
1301 struct snd_soc_codec
*codec
= devdata
->card
->codec
;
1302 struct snd_soc_dapm_widget
*w
;
1304 char *state
= "not set";
1306 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1308 /* only display widgets that burnm power */
1310 case snd_soc_dapm_hp
:
1311 case snd_soc_dapm_mic
:
1312 case snd_soc_dapm_spk
:
1313 case snd_soc_dapm_line
:
1314 case snd_soc_dapm_micbias
:
1315 case snd_soc_dapm_dac
:
1316 case snd_soc_dapm_adc
:
1317 case snd_soc_dapm_pga
:
1318 case snd_soc_dapm_mixer
:
1319 case snd_soc_dapm_mixer_named_ctl
:
1320 case snd_soc_dapm_supply
:
1322 count
+= sprintf(buf
+ count
, "%s: %s\n",
1323 w
->name
, w
->power
? "On":"Off");
1330 switch (codec
->bias_level
) {
1331 case SND_SOC_BIAS_ON
:
1334 case SND_SOC_BIAS_PREPARE
:
1337 case SND_SOC_BIAS_STANDBY
:
1340 case SND_SOC_BIAS_OFF
:
1344 count
+= sprintf(buf
+ count
, "PM State: %s\n", state
);
1349 static DEVICE_ATTR(dapm_widget
, 0444, dapm_widget_show
, NULL
);
1351 int snd_soc_dapm_sys_add(struct device
*dev
)
1353 return device_create_file(dev
, &dev_attr_dapm_widget
);
1356 static void snd_soc_dapm_sys_remove(struct device
*dev
)
1358 device_remove_file(dev
, &dev_attr_dapm_widget
);
1361 /* free all dapm widgets and resources */
1362 static void dapm_free_widgets(struct snd_soc_codec
*codec
)
1364 struct snd_soc_dapm_widget
*w
, *next_w
;
1365 struct snd_soc_dapm_path
*p
, *next_p
;
1367 list_for_each_entry_safe(w
, next_w
, &codec
->dapm_widgets
, list
) {
1372 list_for_each_entry_safe(p
, next_p
, &codec
->dapm_paths
, list
) {
1374 kfree(p
->long_name
);
1379 static int snd_soc_dapm_set_pin(struct snd_soc_codec
*codec
,
1380 const char *pin
, int status
)
1382 struct snd_soc_dapm_widget
*w
;
1384 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1385 if (!strcmp(w
->name
, pin
)) {
1386 pr_debug("dapm: %s: pin %s\n", codec
->name
, pin
);
1387 w
->connected
= status
;
1392 pr_err("dapm: %s: configuring unknown pin %s\n", codec
->name
, pin
);
1397 * snd_soc_dapm_sync - scan and power dapm paths
1398 * @codec: audio codec
1400 * Walks all dapm audio paths and powers widgets according to their
1401 * stream or path usage.
1403 * Returns 0 for success.
1405 int snd_soc_dapm_sync(struct snd_soc_codec
*codec
)
1407 int ret
= dapm_power_widgets(codec
, SND_SOC_DAPM_STREAM_NOP
);
1408 dump_dapm(codec
, "sync");
1411 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync
);
1413 static int snd_soc_dapm_add_route(struct snd_soc_codec
*codec
,
1414 const struct snd_soc_dapm_route
*route
)
1416 struct snd_soc_dapm_path
*path
;
1417 struct snd_soc_dapm_widget
*wsource
= NULL
, *wsink
= NULL
, *w
;
1418 const char *sink
= route
->sink
;
1419 const char *control
= route
->control
;
1420 const char *source
= route
->source
;
1423 /* find src and dest widgets */
1424 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1426 if (!wsink
&& !(strcmp(w
->name
, sink
))) {
1430 if (!wsource
&& !(strcmp(w
->name
, source
))) {
1435 if (wsource
== NULL
|| wsink
== NULL
)
1438 path
= kzalloc(sizeof(struct snd_soc_dapm_path
), GFP_KERNEL
);
1442 path
->source
= wsource
;
1444 path
->connected
= route
->connected
;
1445 INIT_LIST_HEAD(&path
->list
);
1446 INIT_LIST_HEAD(&path
->list_source
);
1447 INIT_LIST_HEAD(&path
->list_sink
);
1449 /* check for external widgets */
1450 if (wsink
->id
== snd_soc_dapm_input
) {
1451 if (wsource
->id
== snd_soc_dapm_micbias
||
1452 wsource
->id
== snd_soc_dapm_mic
||
1453 wsource
->id
== snd_soc_dapm_line
||
1454 wsource
->id
== snd_soc_dapm_output
)
1457 if (wsource
->id
== snd_soc_dapm_output
) {
1458 if (wsink
->id
== snd_soc_dapm_spk
||
1459 wsink
->id
== snd_soc_dapm_hp
||
1460 wsink
->id
== snd_soc_dapm_line
||
1461 wsink
->id
== snd_soc_dapm_input
)
1465 /* connect static paths */
1466 if (control
== NULL
) {
1467 list_add(&path
->list
, &codec
->dapm_paths
);
1468 list_add(&path
->list_sink
, &wsink
->sources
);
1469 list_add(&path
->list_source
, &wsource
->sinks
);
1474 /* connect dynamic paths */
1476 case snd_soc_dapm_adc
:
1477 case snd_soc_dapm_dac
:
1478 case snd_soc_dapm_pga
:
1479 case snd_soc_dapm_input
:
1480 case snd_soc_dapm_output
:
1481 case snd_soc_dapm_micbias
:
1482 case snd_soc_dapm_vmid
:
1483 case snd_soc_dapm_pre
:
1484 case snd_soc_dapm_post
:
1485 case snd_soc_dapm_supply
:
1486 case snd_soc_dapm_aif_in
:
1487 case snd_soc_dapm_aif_out
:
1488 list_add(&path
->list
, &codec
->dapm_paths
);
1489 list_add(&path
->list_sink
, &wsink
->sources
);
1490 list_add(&path
->list_source
, &wsource
->sinks
);
1493 case snd_soc_dapm_mux
:
1494 case snd_soc_dapm_value_mux
:
1495 ret
= dapm_connect_mux(codec
, wsource
, wsink
, path
, control
,
1496 &wsink
->kcontrols
[0]);
1500 case snd_soc_dapm_switch
:
1501 case snd_soc_dapm_mixer
:
1502 case snd_soc_dapm_mixer_named_ctl
:
1503 ret
= dapm_connect_mixer(codec
, wsource
, wsink
, path
, control
);
1507 case snd_soc_dapm_hp
:
1508 case snd_soc_dapm_mic
:
1509 case snd_soc_dapm_line
:
1510 case snd_soc_dapm_spk
:
1511 list_add(&path
->list
, &codec
->dapm_paths
);
1512 list_add(&path
->list_sink
, &wsink
->sources
);
1513 list_add(&path
->list_source
, &wsource
->sinks
);
1520 printk(KERN_WARNING
"asoc: no dapm match for %s --> %s --> %s\n", source
,
1527 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
1529 * @route: audio routes
1530 * @num: number of routes
1532 * Connects 2 dapm widgets together via a named audio path. The sink is
1533 * the widget receiving the audio signal, whilst the source is the sender
1534 * of the audio signal.
1536 * Returns 0 for success else error. On error all resources can be freed
1537 * with a call to snd_soc_card_free().
1539 int snd_soc_dapm_add_routes(struct snd_soc_codec
*codec
,
1540 const struct snd_soc_dapm_route
*route
, int num
)
1544 for (i
= 0; i
< num
; i
++) {
1545 ret
= snd_soc_dapm_add_route(codec
, route
);
1547 printk(KERN_ERR
"Failed to add route %s->%s\n",
1557 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes
);
1560 * snd_soc_dapm_new_widgets - add new dapm widgets
1561 * @codec: audio codec
1563 * Checks the codec for any new dapm widgets and creates them if found.
1565 * Returns 0 for success.
1567 int snd_soc_dapm_new_widgets(struct snd_soc_codec
*codec
)
1569 struct snd_soc_dapm_widget
*w
;
1571 list_for_each_entry(w
, &codec
->dapm_widgets
, list
)
1577 case snd_soc_dapm_switch
:
1578 case snd_soc_dapm_mixer
:
1579 case snd_soc_dapm_mixer_named_ctl
:
1580 w
->power_check
= dapm_generic_check_power
;
1581 dapm_new_mixer(codec
, w
);
1583 case snd_soc_dapm_mux
:
1584 case snd_soc_dapm_value_mux
:
1585 w
->power_check
= dapm_generic_check_power
;
1586 dapm_new_mux(codec
, w
);
1588 case snd_soc_dapm_adc
:
1589 case snd_soc_dapm_aif_out
:
1590 w
->power_check
= dapm_adc_check_power
;
1592 case snd_soc_dapm_dac
:
1593 case snd_soc_dapm_aif_in
:
1594 w
->power_check
= dapm_dac_check_power
;
1596 case snd_soc_dapm_pga
:
1597 w
->power_check
= dapm_generic_check_power
;
1598 dapm_new_pga(codec
, w
);
1600 case snd_soc_dapm_input
:
1601 case snd_soc_dapm_output
:
1602 case snd_soc_dapm_micbias
:
1603 case snd_soc_dapm_spk
:
1604 case snd_soc_dapm_hp
:
1605 case snd_soc_dapm_mic
:
1606 case snd_soc_dapm_line
:
1607 w
->power_check
= dapm_generic_check_power
;
1609 case snd_soc_dapm_supply
:
1610 w
->power_check
= dapm_supply_check_power
;
1611 case snd_soc_dapm_vmid
:
1612 case snd_soc_dapm_pre
:
1613 case snd_soc_dapm_post
:
1619 dapm_power_widgets(codec
, SND_SOC_DAPM_STREAM_NOP
);
1622 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets
);
1625 * snd_soc_dapm_get_volsw - dapm mixer get callback
1626 * @kcontrol: mixer control
1627 * @ucontrol: control element information
1629 * Callback to get the value of a dapm mixer control.
1631 * Returns 0 for success.
1633 int snd_soc_dapm_get_volsw(struct snd_kcontrol
*kcontrol
,
1634 struct snd_ctl_elem_value
*ucontrol
)
1636 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1637 struct soc_mixer_control
*mc
=
1638 (struct soc_mixer_control
*)kcontrol
->private_value
;
1639 unsigned int reg
= mc
->reg
;
1640 unsigned int shift
= mc
->shift
;
1641 unsigned int rshift
= mc
->rshift
;
1643 unsigned int invert
= mc
->invert
;
1644 unsigned int mask
= (1 << fls(max
)) - 1;
1646 /* return the saved value if we are powered down */
1647 if (widget
->id
== snd_soc_dapm_pga
&& !widget
->power
) {
1648 ucontrol
->value
.integer
.value
[0] = widget
->saved_value
;
1652 ucontrol
->value
.integer
.value
[0] =
1653 (snd_soc_read(widget
->codec
, reg
) >> shift
) & mask
;
1654 if (shift
!= rshift
)
1655 ucontrol
->value
.integer
.value
[1] =
1656 (snd_soc_read(widget
->codec
, reg
) >> rshift
) & mask
;
1658 ucontrol
->value
.integer
.value
[0] =
1659 max
- ucontrol
->value
.integer
.value
[0];
1660 if (shift
!= rshift
)
1661 ucontrol
->value
.integer
.value
[1] =
1662 max
- ucontrol
->value
.integer
.value
[1];
1667 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw
);
1670 * snd_soc_dapm_put_volsw - dapm mixer set callback
1671 * @kcontrol: mixer control
1672 * @ucontrol: control element information
1674 * Callback to set the value of a dapm mixer control.
1676 * Returns 0 for success.
1678 int snd_soc_dapm_put_volsw(struct snd_kcontrol
*kcontrol
,
1679 struct snd_ctl_elem_value
*ucontrol
)
1681 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1682 struct soc_mixer_control
*mc
=
1683 (struct soc_mixer_control
*)kcontrol
->private_value
;
1684 unsigned int reg
= mc
->reg
;
1685 unsigned int shift
= mc
->shift
;
1686 unsigned int rshift
= mc
->rshift
;
1688 unsigned int mask
= (1 << fls(max
)) - 1;
1689 unsigned int invert
= mc
->invert
;
1690 unsigned int val
, val2
, val_mask
;
1693 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1697 val_mask
= mask
<< shift
;
1699 if (shift
!= rshift
) {
1700 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
1703 val_mask
|= mask
<< rshift
;
1704 val
|= val2
<< rshift
;
1707 mutex_lock(&widget
->codec
->mutex
);
1708 widget
->value
= val
;
1710 /* save volume value if the widget is powered down */
1711 if (widget
->id
== snd_soc_dapm_pga
&& !widget
->power
) {
1712 widget
->saved_value
= val
;
1713 mutex_unlock(&widget
->codec
->mutex
);
1717 dapm_mixer_update_power(widget
, kcontrol
, reg
, val_mask
, val
, invert
);
1718 if (widget
->event
) {
1719 if (widget
->event_flags
& SND_SOC_DAPM_PRE_REG
) {
1720 ret
= widget
->event(widget
, kcontrol
,
1721 SND_SOC_DAPM_PRE_REG
);
1727 ret
= snd_soc_update_bits(widget
->codec
, reg
, val_mask
, val
);
1728 if (widget
->event_flags
& SND_SOC_DAPM_POST_REG
)
1729 ret
= widget
->event(widget
, kcontrol
,
1730 SND_SOC_DAPM_POST_REG
);
1732 ret
= snd_soc_update_bits(widget
->codec
, reg
, val_mask
, val
);
1735 mutex_unlock(&widget
->codec
->mutex
);
1738 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw
);
1741 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
1742 * @kcontrol: mixer control
1743 * @ucontrol: control element information
1745 * Callback to get the value of a dapm enumerated double mixer control.
1747 * Returns 0 for success.
1749 int snd_soc_dapm_get_enum_double(struct snd_kcontrol
*kcontrol
,
1750 struct snd_ctl_elem_value
*ucontrol
)
1752 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1753 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1754 unsigned int val
, bitmask
;
1756 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
1758 val
= snd_soc_read(widget
->codec
, e
->reg
);
1759 ucontrol
->value
.enumerated
.item
[0] = (val
>> e
->shift_l
) & (bitmask
- 1);
1760 if (e
->shift_l
!= e
->shift_r
)
1761 ucontrol
->value
.enumerated
.item
[1] =
1762 (val
>> e
->shift_r
) & (bitmask
- 1);
1766 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double
);
1769 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
1770 * @kcontrol: mixer control
1771 * @ucontrol: control element information
1773 * Callback to set the value of a dapm enumerated double mixer control.
1775 * Returns 0 for success.
1777 int snd_soc_dapm_put_enum_double(struct snd_kcontrol
*kcontrol
,
1778 struct snd_ctl_elem_value
*ucontrol
)
1780 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1781 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1782 unsigned int val
, mux
, change
;
1783 unsigned int mask
, bitmask
;
1786 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
1788 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
1790 mux
= ucontrol
->value
.enumerated
.item
[0];
1791 val
= mux
<< e
->shift_l
;
1792 mask
= (bitmask
- 1) << e
->shift_l
;
1793 if (e
->shift_l
!= e
->shift_r
) {
1794 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
1796 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
1797 mask
|= (bitmask
- 1) << e
->shift_r
;
1800 mutex_lock(&widget
->codec
->mutex
);
1801 widget
->value
= val
;
1802 change
= snd_soc_test_bits(widget
->codec
, e
->reg
, mask
, val
);
1803 dapm_mux_update_power(widget
, kcontrol
, change
, mux
, e
);
1805 if (widget
->event_flags
& SND_SOC_DAPM_PRE_REG
) {
1806 ret
= widget
->event(widget
,
1807 kcontrol
, SND_SOC_DAPM_PRE_REG
);
1812 ret
= snd_soc_update_bits(widget
->codec
, e
->reg
, mask
, val
);
1814 if (widget
->event_flags
& SND_SOC_DAPM_POST_REG
)
1815 ret
= widget
->event(widget
,
1816 kcontrol
, SND_SOC_DAPM_POST_REG
);
1819 mutex_unlock(&widget
->codec
->mutex
);
1822 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double
);
1825 * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux
1826 * @kcontrol: mixer control
1827 * @ucontrol: control element information
1829 * Returns 0 for success.
1831 int snd_soc_dapm_get_enum_virt(struct snd_kcontrol
*kcontrol
,
1832 struct snd_ctl_elem_value
*ucontrol
)
1834 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1836 ucontrol
->value
.enumerated
.item
[0] = widget
->value
;
1840 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt
);
1843 * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux
1844 * @kcontrol: mixer control
1845 * @ucontrol: control element information
1847 * Returns 0 for success.
1849 int snd_soc_dapm_put_enum_virt(struct snd_kcontrol
*kcontrol
,
1850 struct snd_ctl_elem_value
*ucontrol
)
1852 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1853 struct soc_enum
*e
=
1854 (struct soc_enum
*)kcontrol
->private_value
;
1858 if (ucontrol
->value
.enumerated
.item
[0] >= e
->max
)
1861 mutex_lock(&widget
->codec
->mutex
);
1863 change
= widget
->value
!= ucontrol
->value
.enumerated
.item
[0];
1864 widget
->value
= ucontrol
->value
.enumerated
.item
[0];
1865 dapm_mux_update_power(widget
, kcontrol
, change
, widget
->value
, e
);
1867 mutex_unlock(&widget
->codec
->mutex
);
1870 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt
);
1873 * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
1875 * @kcontrol: mixer control
1876 * @ucontrol: control element information
1878 * Callback to get the value of a dapm semi enumerated double mixer control.
1880 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1881 * used for handling bitfield coded enumeration for example.
1883 * Returns 0 for success.
1885 int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol
*kcontrol
,
1886 struct snd_ctl_elem_value
*ucontrol
)
1888 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1889 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1890 unsigned int reg_val
, val
, mux
;
1892 reg_val
= snd_soc_read(widget
->codec
, e
->reg
);
1893 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
1894 for (mux
= 0; mux
< e
->max
; mux
++) {
1895 if (val
== e
->values
[mux
])
1898 ucontrol
->value
.enumerated
.item
[0] = mux
;
1899 if (e
->shift_l
!= e
->shift_r
) {
1900 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
1901 for (mux
= 0; mux
< e
->max
; mux
++) {
1902 if (val
== e
->values
[mux
])
1905 ucontrol
->value
.enumerated
.item
[1] = mux
;
1910 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double
);
1913 * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
1915 * @kcontrol: mixer control
1916 * @ucontrol: control element information
1918 * Callback to set the value of a dapm semi enumerated double mixer control.
1920 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1921 * used for handling bitfield coded enumeration for example.
1923 * Returns 0 for success.
1925 int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol
*kcontrol
,
1926 struct snd_ctl_elem_value
*ucontrol
)
1928 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1929 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1930 unsigned int val
, mux
, change
;
1934 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
1936 mux
= ucontrol
->value
.enumerated
.item
[0];
1937 val
= e
->values
[ucontrol
->value
.enumerated
.item
[0]] << e
->shift_l
;
1938 mask
= e
->mask
<< e
->shift_l
;
1939 if (e
->shift_l
!= e
->shift_r
) {
1940 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
1942 val
|= e
->values
[ucontrol
->value
.enumerated
.item
[1]] << e
->shift_r
;
1943 mask
|= e
->mask
<< e
->shift_r
;
1946 mutex_lock(&widget
->codec
->mutex
);
1947 widget
->value
= val
;
1948 change
= snd_soc_test_bits(widget
->codec
, e
->reg
, mask
, val
);
1949 dapm_mux_update_power(widget
, kcontrol
, change
, mux
, e
);
1951 if (widget
->event_flags
& SND_SOC_DAPM_PRE_REG
) {
1952 ret
= widget
->event(widget
,
1953 kcontrol
, SND_SOC_DAPM_PRE_REG
);
1958 ret
= snd_soc_update_bits(widget
->codec
, e
->reg
, mask
, val
);
1960 if (widget
->event_flags
& SND_SOC_DAPM_POST_REG
)
1961 ret
= widget
->event(widget
,
1962 kcontrol
, SND_SOC_DAPM_POST_REG
);
1965 mutex_unlock(&widget
->codec
->mutex
);
1968 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double
);
1971 * snd_soc_dapm_info_pin_switch - Info for a pin switch
1973 * @kcontrol: mixer control
1974 * @uinfo: control element information
1976 * Callback to provide information about a pin switch control.
1978 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol
*kcontrol
,
1979 struct snd_ctl_elem_info
*uinfo
)
1981 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1983 uinfo
->value
.integer
.min
= 0;
1984 uinfo
->value
.integer
.max
= 1;
1988 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch
);
1991 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
1993 * @kcontrol: mixer control
1996 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol
*kcontrol
,
1997 struct snd_ctl_elem_value
*ucontrol
)
1999 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2000 const char *pin
= (const char *)kcontrol
->private_value
;
2002 mutex_lock(&codec
->mutex
);
2004 ucontrol
->value
.integer
.value
[0] =
2005 snd_soc_dapm_get_pin_status(codec
, pin
);
2007 mutex_unlock(&codec
->mutex
);
2011 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch
);
2014 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
2016 * @kcontrol: mixer control
2019 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol
*kcontrol
,
2020 struct snd_ctl_elem_value
*ucontrol
)
2022 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2023 const char *pin
= (const char *)kcontrol
->private_value
;
2025 mutex_lock(&codec
->mutex
);
2027 if (ucontrol
->value
.integer
.value
[0])
2028 snd_soc_dapm_enable_pin(codec
, pin
);
2030 snd_soc_dapm_disable_pin(codec
, pin
);
2032 snd_soc_dapm_sync(codec
);
2034 mutex_unlock(&codec
->mutex
);
2038 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch
);
2041 * snd_soc_dapm_new_control - create new dapm control
2042 * @codec: audio codec
2043 * @widget: widget template
2045 * Creates a new dapm control based upon the template.
2047 * Returns 0 for success else error.
2049 int snd_soc_dapm_new_control(struct snd_soc_codec
*codec
,
2050 const struct snd_soc_dapm_widget
*widget
)
2052 struct snd_soc_dapm_widget
*w
;
2054 if ((w
= dapm_cnew_widget(widget
)) == NULL
)
2058 INIT_LIST_HEAD(&w
->sources
);
2059 INIT_LIST_HEAD(&w
->sinks
);
2060 INIT_LIST_HEAD(&w
->list
);
2061 list_add(&w
->list
, &codec
->dapm_widgets
);
2063 /* machine layer set ups unconnected pins and insertions */
2067 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control
);
2070 * snd_soc_dapm_new_controls - create new dapm controls
2071 * @codec: audio codec
2072 * @widget: widget array
2073 * @num: number of widgets
2075 * Creates new DAPM controls based upon the templates.
2077 * Returns 0 for success else error.
2079 int snd_soc_dapm_new_controls(struct snd_soc_codec
*codec
,
2080 const struct snd_soc_dapm_widget
*widget
,
2085 for (i
= 0; i
< num
; i
++) {
2086 ret
= snd_soc_dapm_new_control(codec
, widget
);
2089 "ASoC: Failed to create DAPM control %s: %d\n",
2097 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls
);
2101 * snd_soc_dapm_stream_event - send a stream event to the dapm core
2102 * @codec: audio codec
2103 * @stream: stream name
2104 * @event: stream event
2106 * Sends a stream event to the dapm core. The core then makes any
2107 * necessary widget power changes.
2109 * Returns 0 for success else error.
2111 int snd_soc_dapm_stream_event(struct snd_soc_codec
*codec
,
2112 char *stream
, int event
)
2114 struct snd_soc_dapm_widget
*w
;
2119 mutex_lock(&codec
->mutex
);
2120 list_for_each_entry(w
, &codec
->dapm_widgets
, list
)
2124 pr_debug("widget %s\n %s stream %s event %d\n",
2125 w
->name
, w
->sname
, stream
, event
);
2126 if (strstr(w
->sname
, stream
)) {
2128 case SND_SOC_DAPM_STREAM_START
:
2131 case SND_SOC_DAPM_STREAM_STOP
:
2134 case SND_SOC_DAPM_STREAM_SUSPEND
:
2139 case SND_SOC_DAPM_STREAM_RESUME
:
2145 case SND_SOC_DAPM_STREAM_PAUSE_PUSH
:
2147 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE
:
2153 dapm_power_widgets(codec
, event
);
2154 mutex_unlock(&codec
->mutex
);
2155 dump_dapm(codec
, __func__
);
2158 EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_event
);
2161 * snd_soc_dapm_enable_pin - enable pin.
2165 * Enables input/output pin and its parents or children widgets iff there is
2166 * a valid audio route and active audio stream.
2167 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2168 * do any widget power switching.
2170 int snd_soc_dapm_enable_pin(struct snd_soc_codec
*codec
, const char *pin
)
2172 return snd_soc_dapm_set_pin(codec
, pin
, 1);
2174 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin
);
2177 * snd_soc_dapm_disable_pin - disable pin.
2181 * Disables input/output pin and its parents or children widgets.
2182 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2183 * do any widget power switching.
2185 int snd_soc_dapm_disable_pin(struct snd_soc_codec
*codec
, const char *pin
)
2187 return snd_soc_dapm_set_pin(codec
, pin
, 0);
2189 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin
);
2192 * snd_soc_dapm_nc_pin - permanently disable pin.
2196 * Marks the specified pin as being not connected, disabling it along
2197 * any parent or child widgets. At present this is identical to
2198 * snd_soc_dapm_disable_pin() but in future it will be extended to do
2199 * additional things such as disabling controls which only affect
2200 * paths through the pin.
2202 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2203 * do any widget power switching.
2205 int snd_soc_dapm_nc_pin(struct snd_soc_codec
*codec
, const char *pin
)
2207 return snd_soc_dapm_set_pin(codec
, pin
, 0);
2209 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin
);
2212 * snd_soc_dapm_get_pin_status - get audio pin status
2213 * @codec: audio codec
2214 * @pin: audio signal pin endpoint (or start point)
2216 * Get audio pin status - connected or disconnected.
2218 * Returns 1 for connected otherwise 0.
2220 int snd_soc_dapm_get_pin_status(struct snd_soc_codec
*codec
, const char *pin
)
2222 struct snd_soc_dapm_widget
*w
;
2224 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
2225 if (!strcmp(w
->name
, pin
))
2226 return w
->connected
;
2231 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status
);
2234 * snd_soc_dapm_free - free dapm resources
2235 * @socdev: SoC device
2237 * Free all dapm widgets and resources.
2239 void snd_soc_dapm_free(struct snd_soc_device
*socdev
)
2241 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
2243 snd_soc_dapm_sys_remove(socdev
->dev
);
2244 dapm_free_widgets(codec
);
2246 EXPORT_SYMBOL_GPL(snd_soc_dapm_free
);
2249 * snd_soc_dapm_shutdown - callback for system shutdown
2251 void snd_soc_dapm_shutdown(struct snd_soc_device
*socdev
)
2253 struct snd_soc_codec
*codec
= socdev
->card
->codec
;
2254 struct snd_soc_dapm_widget
*w
;
2255 LIST_HEAD(down_list
);
2258 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
2260 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
2266 /* If there were no widgets to power down we're already in
2270 snd_soc_dapm_set_bias_level(socdev
, SND_SOC_BIAS_PREPARE
);
2271 dapm_seq_run(codec
, &down_list
, 0, dapm_down_seq
);
2272 snd_soc_dapm_set_bias_level(socdev
, SND_SOC_BIAS_STANDBY
);
2275 snd_soc_dapm_set_bias_level(socdev
, SND_SOC_BIAS_OFF
);
2278 /* Module information */
2279 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
2280 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
2281 MODULE_LICENSE("GPL");