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 <linux/slab.h>
42 #include <sound/core.h>
43 #include <sound/pcm.h>
44 #include <sound/pcm_params.h>
45 #include <sound/soc-dapm.h>
46 #include <sound/initval.h>
48 /* dapm power sequences - make this per codec in the future */
49 static int dapm_up_seq
[] = {
50 [snd_soc_dapm_pre
] = 0,
51 [snd_soc_dapm_supply
] = 1,
52 [snd_soc_dapm_micbias
] = 2,
53 [snd_soc_dapm_aif_in
] = 3,
54 [snd_soc_dapm_aif_out
] = 3,
55 [snd_soc_dapm_mic
] = 4,
56 [snd_soc_dapm_mux
] = 5,
57 [snd_soc_dapm_value_mux
] = 5,
58 [snd_soc_dapm_dac
] = 6,
59 [snd_soc_dapm_mixer
] = 7,
60 [snd_soc_dapm_mixer_named_ctl
] = 7,
61 [snd_soc_dapm_pga
] = 8,
62 [snd_soc_dapm_adc
] = 9,
63 [snd_soc_dapm_hp
] = 10,
64 [snd_soc_dapm_spk
] = 10,
65 [snd_soc_dapm_post
] = 11,
68 static int dapm_down_seq
[] = {
69 [snd_soc_dapm_pre
] = 0,
70 [snd_soc_dapm_adc
] = 1,
71 [snd_soc_dapm_hp
] = 2,
72 [snd_soc_dapm_spk
] = 2,
73 [snd_soc_dapm_pga
] = 4,
74 [snd_soc_dapm_mixer_named_ctl
] = 5,
75 [snd_soc_dapm_mixer
] = 5,
76 [snd_soc_dapm_dac
] = 6,
77 [snd_soc_dapm_mic
] = 7,
78 [snd_soc_dapm_micbias
] = 8,
79 [snd_soc_dapm_mux
] = 9,
80 [snd_soc_dapm_value_mux
] = 9,
81 [snd_soc_dapm_aif_in
] = 10,
82 [snd_soc_dapm_aif_out
] = 10,
83 [snd_soc_dapm_supply
] = 11,
84 [snd_soc_dapm_post
] = 12,
87 static void pop_wait(u32 pop_time
)
90 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time
));
93 static void pop_dbg(u32 pop_time
, const char *fmt
, ...)
106 /* create a new dapm widget */
107 static inline struct snd_soc_dapm_widget
*dapm_cnew_widget(
108 const struct snd_soc_dapm_widget
*_widget
)
110 return kmemdup(_widget
, sizeof(*_widget
), GFP_KERNEL
);
114 * snd_soc_dapm_set_bias_level - set the bias level for the system
115 * @card: audio device
116 * @level: level to configure
118 * Configure the bias (power) levels for the SoC audio device.
120 * Returns 0 for success else error.
122 static int snd_soc_dapm_set_bias_level(struct snd_soc_card
*card
,
123 struct snd_soc_codec
*codec
, enum snd_soc_bias_level level
)
128 case SND_SOC_BIAS_ON
:
129 dev_dbg(codec
->dev
, "Setting full bias\n");
131 case SND_SOC_BIAS_PREPARE
:
132 dev_dbg(codec
->dev
, "Setting bias prepare\n");
134 case SND_SOC_BIAS_STANDBY
:
135 dev_dbg(codec
->dev
, "Setting standby bias\n");
137 case SND_SOC_BIAS_OFF
:
138 dev_dbg(codec
->dev
, "Setting bias off\n");
141 dev_err(codec
->dev
, "Setting invalid bias %d\n", level
);
145 if (card
&& card
->set_bias_level
)
146 ret
= card
->set_bias_level(card
, level
);
148 if (codec
->driver
->set_bias_level
)
149 ret
= codec
->driver
->set_bias_level(codec
, level
);
151 codec
->bias_level
= level
;
157 /* set up initial codec paths */
158 static void dapm_set_path_status(struct snd_soc_dapm_widget
*w
,
159 struct snd_soc_dapm_path
*p
, int i
)
162 case snd_soc_dapm_switch
:
163 case snd_soc_dapm_mixer
:
164 case snd_soc_dapm_mixer_named_ctl
: {
166 struct soc_mixer_control
*mc
= (struct soc_mixer_control
*)
167 w
->kcontrols
[i
].private_value
;
168 unsigned int reg
= mc
->reg
;
169 unsigned int shift
= mc
->shift
;
171 unsigned int mask
= (1 << fls(max
)) - 1;
172 unsigned int invert
= mc
->invert
;
174 val
= snd_soc_read(w
->codec
, reg
);
175 val
= (val
>> shift
) & mask
;
177 if ((invert
&& !val
) || (!invert
&& val
))
183 case snd_soc_dapm_mux
: {
184 struct soc_enum
*e
= (struct soc_enum
*)w
->kcontrols
[i
].private_value
;
185 int val
, item
, bitmask
;
187 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
189 val
= snd_soc_read(w
->codec
, e
->reg
);
190 item
= (val
>> e
->shift_l
) & (bitmask
- 1);
193 for (i
= 0; i
< e
->max
; i
++) {
194 if (!(strcmp(p
->name
, e
->texts
[i
])) && item
== i
)
199 case snd_soc_dapm_value_mux
: {
200 struct soc_enum
*e
= (struct soc_enum
*)
201 w
->kcontrols
[i
].private_value
;
204 val
= snd_soc_read(w
->codec
, e
->reg
);
205 val
= (val
>> e
->shift_l
) & e
->mask
;
206 for (item
= 0; item
< e
->max
; item
++) {
207 if (val
== e
->values
[item
])
212 for (i
= 0; i
< e
->max
; i
++) {
213 if (!(strcmp(p
->name
, e
->texts
[i
])) && item
== i
)
218 /* does not effect routing - always connected */
219 case snd_soc_dapm_pga
:
220 case snd_soc_dapm_output
:
221 case snd_soc_dapm_adc
:
222 case snd_soc_dapm_input
:
223 case snd_soc_dapm_dac
:
224 case snd_soc_dapm_micbias
:
225 case snd_soc_dapm_vmid
:
226 case snd_soc_dapm_supply
:
227 case snd_soc_dapm_aif_in
:
228 case snd_soc_dapm_aif_out
:
231 /* does effect routing - dynamically connected */
232 case snd_soc_dapm_hp
:
233 case snd_soc_dapm_mic
:
234 case snd_soc_dapm_spk
:
235 case snd_soc_dapm_line
:
236 case snd_soc_dapm_pre
:
237 case snd_soc_dapm_post
:
243 /* connect mux widget to its interconnecting audio paths */
244 static int dapm_connect_mux(struct snd_soc_codec
*codec
,
245 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
246 struct snd_soc_dapm_path
*path
, const char *control_name
,
247 const struct snd_kcontrol_new
*kcontrol
)
249 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
252 for (i
= 0; i
< e
->max
; i
++) {
253 if (!(strcmp(control_name
, e
->texts
[i
]))) {
254 list_add(&path
->list
, &codec
->dapm_paths
);
255 list_add(&path
->list_sink
, &dest
->sources
);
256 list_add(&path
->list_source
, &src
->sinks
);
257 path
->name
= (char*)e
->texts
[i
];
258 dapm_set_path_status(dest
, path
, 0);
266 /* connect mixer widget to its interconnecting audio paths */
267 static int dapm_connect_mixer(struct snd_soc_codec
*codec
,
268 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
269 struct snd_soc_dapm_path
*path
, const char *control_name
)
273 /* search for mixer kcontrol */
274 for (i
= 0; i
< dest
->num_kcontrols
; i
++) {
275 if (!strcmp(control_name
, dest
->kcontrols
[i
].name
)) {
276 list_add(&path
->list
, &codec
->dapm_paths
);
277 list_add(&path
->list_sink
, &dest
->sources
);
278 list_add(&path
->list_source
, &src
->sinks
);
279 path
->name
= dest
->kcontrols
[i
].name
;
280 dapm_set_path_status(dest
, path
, i
);
287 /* update dapm codec register bits */
288 static int dapm_update_bits(struct snd_soc_dapm_widget
*widget
)
291 unsigned int old
, new;
292 struct snd_soc_codec
*codec
= widget
->codec
;
294 /* check for valid widgets */
295 if (widget
->reg
< 0 || widget
->id
== snd_soc_dapm_input
||
296 widget
->id
== snd_soc_dapm_output
||
297 widget
->id
== snd_soc_dapm_hp
||
298 widget
->id
== snd_soc_dapm_mic
||
299 widget
->id
== snd_soc_dapm_line
||
300 widget
->id
== snd_soc_dapm_spk
)
303 power
= widget
->power
;
305 power
= (power
? 0:1);
307 old
= snd_soc_read(codec
, widget
->reg
);
308 new = (old
& ~(0x1 << widget
->shift
)) | (power
<< widget
->shift
);
312 pop_dbg(codec
->pop_time
, "pop test %s : %s in %d ms\n",
313 widget
->name
, widget
->power
? "on" : "off",
315 pop_wait(codec
->pop_time
);
316 snd_soc_write(codec
, widget
->reg
, new);
318 pr_debug("reg %x old %x new %x change %d\n", widget
->reg
,
323 /* create new dapm mixer control */
324 static int dapm_new_mixer(struct snd_soc_codec
*codec
,
325 struct snd_soc_dapm_widget
*w
)
329 struct snd_soc_dapm_path
*path
;
332 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
335 list_for_each_entry(path
, &w
->sources
, list_sink
) {
337 /* mixer/mux paths name must match control name */
338 if (path
->name
!= (char*)w
->kcontrols
[i
].name
)
341 /* add dapm control with long name.
342 * for dapm_mixer this is the concatenation of the
343 * mixer and kcontrol name.
344 * for dapm_mixer_named_ctl this is simply the
347 name_len
= strlen(w
->kcontrols
[i
].name
) + 1;
348 if (w
->id
!= snd_soc_dapm_mixer_named_ctl
)
349 name_len
+= 1 + strlen(w
->name
);
351 path
->long_name
= kmalloc(name_len
, GFP_KERNEL
);
353 if (path
->long_name
== NULL
)
358 snprintf(path
->long_name
, name_len
, "%s %s",
359 w
->name
, w
->kcontrols
[i
].name
);
361 case snd_soc_dapm_mixer_named_ctl
:
362 snprintf(path
->long_name
, name_len
, "%s",
363 w
->kcontrols
[i
].name
);
367 path
->long_name
[name_len
- 1] = '\0';
369 path
->kcontrol
= snd_soc_cnew(&w
->kcontrols
[i
], w
,
371 ret
= snd_ctl_add(codec
->card
->snd_card
, path
->kcontrol
);
373 printk(KERN_ERR
"asoc: failed to add dapm kcontrol %s: %d\n",
376 kfree(path
->long_name
);
377 path
->long_name
= NULL
;
385 /* create new dapm mux control */
386 static int dapm_new_mux(struct snd_soc_codec
*codec
,
387 struct snd_soc_dapm_widget
*w
)
389 struct snd_soc_dapm_path
*path
= NULL
;
390 struct snd_kcontrol
*kcontrol
;
393 if (!w
->num_kcontrols
) {
394 printk(KERN_ERR
"asoc: mux %s has no controls\n", w
->name
);
398 kcontrol
= snd_soc_cnew(&w
->kcontrols
[0], w
, w
->name
);
399 ret
= snd_ctl_add(codec
->card
->snd_card
, kcontrol
);
403 list_for_each_entry(path
, &w
->sources
, list_sink
)
404 path
->kcontrol
= kcontrol
;
409 printk(KERN_ERR
"asoc: failed to add kcontrol %s\n", w
->name
);
413 /* create new dapm volume control */
414 static int dapm_new_pga(struct snd_soc_codec
*codec
,
415 struct snd_soc_dapm_widget
*w
)
417 if (w
->num_kcontrols
)
418 pr_err("asoc: PGA controls not supported: '%s'\n", w
->name
);
423 /* reset 'walked' bit for each dapm path */
424 static inline void dapm_clear_walk(struct snd_soc_codec
*codec
)
426 struct snd_soc_dapm_path
*p
;
428 list_for_each_entry(p
, &codec
->dapm_paths
, list
)
432 /* We implement power down on suspend by checking the power state of
433 * the ALSA card - when we are suspending the ALSA state for the card
436 static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget
*widget
)
438 int level
= snd_power_get_state(widget
->codec
->card
->snd_card
);
441 case SNDRV_CTL_POWER_D3hot
:
442 case SNDRV_CTL_POWER_D3cold
:
443 if (widget
->ignore_suspend
)
444 pr_debug("%s ignoring suspend\n", widget
->name
);
445 return widget
->ignore_suspend
;
452 * Recursively check for a completed path to an active or physically connected
453 * output widget. Returns number of complete paths.
455 static int is_connected_output_ep(struct snd_soc_dapm_widget
*widget
)
457 struct snd_soc_dapm_path
*path
;
460 if (widget
->id
== snd_soc_dapm_supply
)
463 switch (widget
->id
) {
464 case snd_soc_dapm_adc
:
465 case snd_soc_dapm_aif_out
:
467 return snd_soc_dapm_suspend_check(widget
);
472 if (widget
->connected
) {
473 /* connected pin ? */
474 if (widget
->id
== snd_soc_dapm_output
&& !widget
->ext
)
475 return snd_soc_dapm_suspend_check(widget
);
477 /* connected jack or spk ? */
478 if (widget
->id
== snd_soc_dapm_hp
|| widget
->id
== snd_soc_dapm_spk
||
479 (widget
->id
== snd_soc_dapm_line
&& !list_empty(&widget
->sources
)))
480 return snd_soc_dapm_suspend_check(widget
);
483 list_for_each_entry(path
, &widget
->sinks
, list_source
) {
487 if (path
->sink
&& path
->connect
) {
489 con
+= is_connected_output_ep(path
->sink
);
497 * Recursively check for a completed path to an active or physically connected
498 * input widget. Returns number of complete paths.
500 static int is_connected_input_ep(struct snd_soc_dapm_widget
*widget
)
502 struct snd_soc_dapm_path
*path
;
505 if (widget
->id
== snd_soc_dapm_supply
)
508 /* active stream ? */
509 switch (widget
->id
) {
510 case snd_soc_dapm_dac
:
511 case snd_soc_dapm_aif_in
:
513 return snd_soc_dapm_suspend_check(widget
);
518 if (widget
->connected
) {
519 /* connected pin ? */
520 if (widget
->id
== snd_soc_dapm_input
&& !widget
->ext
)
521 return snd_soc_dapm_suspend_check(widget
);
523 /* connected VMID/Bias for lower pops */
524 if (widget
->id
== snd_soc_dapm_vmid
)
525 return snd_soc_dapm_suspend_check(widget
);
527 /* connected jack ? */
528 if (widget
->id
== snd_soc_dapm_mic
||
529 (widget
->id
== snd_soc_dapm_line
&& !list_empty(&widget
->sinks
)))
530 return snd_soc_dapm_suspend_check(widget
);
533 list_for_each_entry(path
, &widget
->sources
, list_sink
) {
537 if (path
->source
&& path
->connect
) {
539 con
+= is_connected_input_ep(path
->source
);
547 * Handler for generic register modifier widget.
549 int dapm_reg_event(struct snd_soc_dapm_widget
*w
,
550 struct snd_kcontrol
*kcontrol
, int event
)
554 if (SND_SOC_DAPM_EVENT_ON(event
))
559 snd_soc_update_bits(w
->codec
, -(w
->reg
+ 1),
560 w
->mask
<< w
->shift
, val
<< w
->shift
);
564 EXPORT_SYMBOL_GPL(dapm_reg_event
);
566 /* Standard power change method, used to apply power changes to most
569 static int dapm_generic_apply_power(struct snd_soc_dapm_widget
*w
)
573 /* call any power change event handlers */
575 pr_debug("power %s event for %s flags %x\n",
576 w
->power
? "on" : "off",
577 w
->name
, w
->event_flags
);
579 /* power up pre event */
580 if (w
->power
&& w
->event
&&
581 (w
->event_flags
& SND_SOC_DAPM_PRE_PMU
)) {
582 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMU
);
587 /* power down pre event */
588 if (!w
->power
&& w
->event
&&
589 (w
->event_flags
& SND_SOC_DAPM_PRE_PMD
)) {
590 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMD
);
597 /* power up post event */
598 if (w
->power
&& w
->event
&&
599 (w
->event_flags
& SND_SOC_DAPM_POST_PMU
)) {
601 NULL
, SND_SOC_DAPM_POST_PMU
);
606 /* power down post event */
607 if (!w
->power
&& w
->event
&&
608 (w
->event_flags
& SND_SOC_DAPM_POST_PMD
)) {
609 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_POST_PMD
);
617 /* Generic check to see if a widget should be powered.
619 static int dapm_generic_check_power(struct snd_soc_dapm_widget
*w
)
623 in
= is_connected_input_ep(w
);
624 dapm_clear_walk(w
->codec
);
625 out
= is_connected_output_ep(w
);
626 dapm_clear_walk(w
->codec
);
627 return out
!= 0 && in
!= 0;
630 /* Check to see if an ADC has power */
631 static int dapm_adc_check_power(struct snd_soc_dapm_widget
*w
)
636 in
= is_connected_input_ep(w
);
637 dapm_clear_walk(w
->codec
);
640 return dapm_generic_check_power(w
);
644 /* Check to see if a DAC has power */
645 static int dapm_dac_check_power(struct snd_soc_dapm_widget
*w
)
650 out
= is_connected_output_ep(w
);
651 dapm_clear_walk(w
->codec
);
654 return dapm_generic_check_power(w
);
658 /* Check to see if a power supply is needed */
659 static int dapm_supply_check_power(struct snd_soc_dapm_widget
*w
)
661 struct snd_soc_dapm_path
*path
;
664 /* Check if one of our outputs is connected */
665 list_for_each_entry(path
, &w
->sinks
, list_source
) {
666 if (path
->connected
&&
667 !path
->connected(path
->source
, path
->sink
))
670 if (path
->sink
&& path
->sink
->power_check
&&
671 path
->sink
->power_check(path
->sink
)) {
677 dapm_clear_walk(w
->codec
);
682 static int dapm_seq_compare(struct snd_soc_dapm_widget
*a
,
683 struct snd_soc_dapm_widget
*b
,
686 if (a
->codec
!= b
->codec
)
687 return (unsigned long)a
- (unsigned long)b
;
688 if (sort
[a
->id
] != sort
[b
->id
])
689 return sort
[a
->id
] - sort
[b
->id
];
690 if (a
->reg
!= b
->reg
)
691 return a
->reg
- b
->reg
;
696 /* Insert a widget in order into a DAPM power sequence. */
697 static void dapm_seq_insert(struct snd_soc_dapm_widget
*new_widget
,
698 struct list_head
*list
,
701 struct snd_soc_dapm_widget
*w
;
703 list_for_each_entry(w
, list
, power_list
)
704 if (dapm_seq_compare(new_widget
, w
, sort
) < 0) {
705 list_add_tail(&new_widget
->power_list
, &w
->power_list
);
709 list_add_tail(&new_widget
->power_list
, list
);
712 /* Apply the coalesced changes from a DAPM sequence */
713 static void dapm_seq_run_coalesced(struct snd_soc_codec
*codec
,
714 struct list_head
*pending
)
716 struct snd_soc_dapm_widget
*w
;
718 unsigned int value
= 0;
719 unsigned int mask
= 0;
720 unsigned int cur_mask
;
722 reg
= list_first_entry(pending
, struct snd_soc_dapm_widget
,
725 list_for_each_entry(w
, pending
, power_list
) {
726 cur_mask
= 1 << w
->shift
;
727 BUG_ON(reg
!= w
->reg
);
738 pop_dbg(codec
->pop_time
,
739 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
740 w
->name
, reg
, value
, mask
);
742 /* power up pre event */
743 if (w
->power
&& w
->event
&&
744 (w
->event_flags
& SND_SOC_DAPM_PRE_PMU
)) {
745 pop_dbg(codec
->pop_time
, "pop test : %s PRE_PMU\n",
747 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMU
);
749 pr_err("%s: pre event failed: %d\n",
753 /* power down pre event */
754 if (!w
->power
&& w
->event
&&
755 (w
->event_flags
& SND_SOC_DAPM_PRE_PMD
)) {
756 pop_dbg(codec
->pop_time
, "pop test : %s PRE_PMD\n",
758 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMD
);
760 pr_err("%s: pre event failed: %d\n",
766 pop_dbg(codec
->pop_time
,
767 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
768 value
, mask
, reg
, codec
->pop_time
);
769 pop_wait(codec
->pop_time
);
770 snd_soc_update_bits(codec
, reg
, mask
, value
);
773 list_for_each_entry(w
, pending
, power_list
) {
774 /* power up post event */
775 if (w
->power
&& w
->event
&&
776 (w
->event_flags
& SND_SOC_DAPM_POST_PMU
)) {
777 pop_dbg(codec
->pop_time
, "pop test : %s POST_PMU\n",
780 NULL
, SND_SOC_DAPM_POST_PMU
);
782 pr_err("%s: post event failed: %d\n",
786 /* power down post event */
787 if (!w
->power
&& w
->event
&&
788 (w
->event_flags
& SND_SOC_DAPM_POST_PMD
)) {
789 pop_dbg(codec
->pop_time
, "pop test : %s POST_PMD\n",
791 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_POST_PMD
);
793 pr_err("%s: post event failed: %d\n",
799 /* Apply a DAPM power sequence.
801 * We walk over a pre-sorted list of widgets to apply power to. In
802 * order to minimise the number of writes to the device required
803 * multiple widgets will be updated in a single write where possible.
804 * Currently anything that requires more than a single write is not
807 static void dapm_seq_run(struct snd_soc_codec
*codec
, struct list_head
*list
,
808 int event
, int sort
[])
810 struct snd_soc_dapm_widget
*w
, *n
;
813 int cur_reg
= SND_SOC_NOPM
;
816 list_for_each_entry_safe(w
, n
, list
, power_list
) {
819 /* Do we need to apply any queued changes? */
820 if (sort
[w
->id
] != cur_sort
|| w
->reg
!= cur_reg
) {
821 if (!list_empty(&pending
))
822 dapm_seq_run_coalesced(codec
, &pending
);
824 INIT_LIST_HEAD(&pending
);
826 cur_reg
= SND_SOC_NOPM
;
830 case snd_soc_dapm_pre
:
832 list_for_each_entry_safe_continue(w
, n
, list
,
835 if (event
== SND_SOC_DAPM_STREAM_START
)
837 NULL
, SND_SOC_DAPM_PRE_PMU
);
838 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
840 NULL
, SND_SOC_DAPM_PRE_PMD
);
843 case snd_soc_dapm_post
:
845 list_for_each_entry_safe_continue(w
, n
, list
,
848 if (event
== SND_SOC_DAPM_STREAM_START
)
850 NULL
, SND_SOC_DAPM_POST_PMU
);
851 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
853 NULL
, SND_SOC_DAPM_POST_PMD
);
856 case snd_soc_dapm_input
:
857 case snd_soc_dapm_output
:
858 case snd_soc_dapm_hp
:
859 case snd_soc_dapm_mic
:
860 case snd_soc_dapm_line
:
861 case snd_soc_dapm_spk
:
862 /* No register support currently */
863 ret
= dapm_generic_apply_power(w
);
867 /* Queue it up for application */
868 cur_sort
= sort
[w
->id
];
870 list_move(&w
->power_list
, &pending
);
875 pr_err("Failed to apply widget power: %d\n",
879 if (!list_empty(&pending
))
880 dapm_seq_run_coalesced(codec
, &pending
);
884 * Scan each dapm widget for complete audio path.
885 * A complete path is a route that has valid endpoints i.e.:-
887 * o DAC to output pin.
888 * o Input Pin to ADC.
889 * o Input pin to Output pin (bypass, sidetone)
890 * o DAC to ADC (loopback).
892 static int dapm_power_widgets(struct snd_soc_codec
*codec
, int event
)
894 struct snd_soc_card
*card
= codec
->card
;
895 struct snd_soc_dapm_widget
*w
;
897 LIST_HEAD(down_list
);
902 /* Check which widgets we need to power and store them in
903 * lists indicating if they should be powered up or down.
905 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
907 case snd_soc_dapm_pre
:
908 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
910 case snd_soc_dapm_post
:
911 dapm_seq_insert(w
, &up_list
, dapm_up_seq
);
919 power
= w
->power_check(w
);
925 if (w
->power
== power
)
929 dapm_seq_insert(w
, &up_list
, dapm_up_seq
);
931 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
938 /* If there are no DAPM widgets then try to figure out power from the
941 if (list_empty(&codec
->dapm_widgets
)) {
943 case SND_SOC_DAPM_STREAM_START
:
944 case SND_SOC_DAPM_STREAM_RESUME
:
947 case SND_SOC_DAPM_STREAM_SUSPEND
:
950 case SND_SOC_DAPM_STREAM_NOP
:
951 switch (codec
->bias_level
) {
952 case SND_SOC_BIAS_STANDBY
:
953 case SND_SOC_BIAS_OFF
:
966 if (sys_power
&& codec
->bias_level
== SND_SOC_BIAS_OFF
) {
967 ret
= snd_soc_dapm_set_bias_level(card
, codec
,
968 SND_SOC_BIAS_STANDBY
);
970 pr_err("Failed to turn on bias: %d\n", ret
);
973 /* If we're changing to all on or all off then prepare */
974 if ((sys_power
&& codec
->bias_level
== SND_SOC_BIAS_STANDBY
) ||
975 (!sys_power
&& codec
->bias_level
== SND_SOC_BIAS_ON
)) {
976 ret
= snd_soc_dapm_set_bias_level(card
, codec
, SND_SOC_BIAS_PREPARE
);
978 pr_err("Failed to prepare bias: %d\n", ret
);
981 /* Power down widgets first; try to avoid amplifying pops. */
982 dapm_seq_run(codec
, &down_list
, event
, dapm_down_seq
);
985 dapm_seq_run(codec
, &up_list
, event
, dapm_up_seq
);
987 /* If we just powered the last thing off drop to standby bias */
988 if (codec
->bias_level
== SND_SOC_BIAS_PREPARE
&& !sys_power
) {
989 ret
= snd_soc_dapm_set_bias_level(card
, codec
, SND_SOC_BIAS_STANDBY
);
991 pr_err("Failed to apply standby bias: %d\n", ret
);
994 /* If we're in standby and can support bias off then do that */
995 if (codec
->bias_level
== SND_SOC_BIAS_STANDBY
&&
996 codec
->idle_bias_off
) {
997 ret
= snd_soc_dapm_set_bias_level(card
, codec
, SND_SOC_BIAS_OFF
);
999 pr_err("Failed to turn off bias: %d\n", ret
);
1002 /* If we just powered up then move to active bias */
1003 if (codec
->bias_level
== SND_SOC_BIAS_PREPARE
&& sys_power
) {
1004 ret
= snd_soc_dapm_set_bias_level(card
, codec
, SND_SOC_BIAS_ON
);
1006 pr_err("Failed to apply active bias: %d\n", ret
);
1009 pop_dbg(codec
->pop_time
, "DAPM sequencing finished, waiting %dms\n",
1011 pop_wait(codec
->pop_time
);
1016 #ifdef CONFIG_DEBUG_FS
1017 static int dapm_widget_power_open_file(struct inode
*inode
, struct file
*file
)
1019 file
->private_data
= inode
->i_private
;
1023 static ssize_t
dapm_widget_power_read_file(struct file
*file
,
1024 char __user
*user_buf
,
1025 size_t count
, loff_t
*ppos
)
1027 struct snd_soc_dapm_widget
*w
= file
->private_data
;
1031 struct snd_soc_dapm_path
*p
= NULL
;
1033 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
1037 in
= is_connected_input_ep(w
);
1038 dapm_clear_walk(w
->codec
);
1039 out
= is_connected_output_ep(w
);
1040 dapm_clear_walk(w
->codec
);
1042 ret
= snprintf(buf
, PAGE_SIZE
, "%s: %s in %d out %d",
1043 w
->name
, w
->power
? "On" : "Off", in
, out
);
1046 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1047 " - R%d(0x%x) bit %d",
1048 w
->reg
, w
->reg
, w
->shift
);
1050 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "\n");
1053 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, " stream %s %s\n",
1055 w
->active
? "active" : "inactive");
1057 list_for_each_entry(p
, &w
->sources
, list_sink
) {
1058 if (p
->connected
&& !p
->connected(w
, p
->sink
))
1062 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1064 p
->name
? p
->name
: "static",
1067 list_for_each_entry(p
, &w
->sinks
, list_source
) {
1068 if (p
->connected
&& !p
->connected(w
, p
->sink
))
1072 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1074 p
->name
? p
->name
: "static",
1078 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
1084 static const struct file_operations dapm_widget_power_fops
= {
1085 .open
= dapm_widget_power_open_file
,
1086 .read
= dapm_widget_power_read_file
,
1087 .llseek
= default_llseek
,
1090 void snd_soc_dapm_debugfs_init(struct snd_soc_codec
*codec
)
1092 struct snd_soc_dapm_widget
*w
;
1095 if (!codec
->debugfs_dapm
)
1098 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1102 d
= debugfs_create_file(w
->name
, 0444,
1103 codec
->debugfs_dapm
, w
,
1104 &dapm_widget_power_fops
);
1107 "ASoC: Failed to create %s debugfs file\n",
1112 void snd_soc_dapm_debugfs_init(struct snd_soc_codec
*codec
)
1117 /* test and update the power status of a mux widget */
1118 static int dapm_mux_update_power(struct snd_soc_dapm_widget
*widget
,
1119 struct snd_kcontrol
*kcontrol
, int change
,
1120 int mux
, struct soc_enum
*e
)
1122 struct snd_soc_dapm_path
*path
;
1125 if (widget
->id
!= snd_soc_dapm_mux
&&
1126 widget
->id
!= snd_soc_dapm_value_mux
)
1132 /* find dapm widget path assoc with kcontrol */
1133 list_for_each_entry(path
, &widget
->codec
->dapm_paths
, list
) {
1134 if (path
->kcontrol
!= kcontrol
)
1137 if (!path
->name
|| !e
->texts
[mux
])
1141 /* we now need to match the string in the enum to the path */
1142 if (!(strcmp(path
->name
, e
->texts
[mux
])))
1143 path
->connect
= 1; /* new connection */
1145 path
->connect
= 0; /* old connection must be powered down */
1149 dapm_power_widgets(widget
->codec
, SND_SOC_DAPM_STREAM_NOP
);
1154 /* test and update the power status of a mixer or switch widget */
1155 static int dapm_mixer_update_power(struct snd_soc_dapm_widget
*widget
,
1156 struct snd_kcontrol
*kcontrol
, int connect
)
1158 struct snd_soc_dapm_path
*path
;
1161 if (widget
->id
!= snd_soc_dapm_mixer
&&
1162 widget
->id
!= snd_soc_dapm_mixer_named_ctl
&&
1163 widget
->id
!= snd_soc_dapm_switch
)
1166 /* find dapm widget path assoc with kcontrol */
1167 list_for_each_entry(path
, &widget
->codec
->dapm_paths
, list
) {
1168 if (path
->kcontrol
!= kcontrol
)
1171 /* found, now check type */
1173 path
->connect
= connect
;
1178 dapm_power_widgets(widget
->codec
, SND_SOC_DAPM_STREAM_NOP
);
1183 /* show dapm widget status in sys fs */
1184 static ssize_t
dapm_widget_show(struct device
*dev
,
1185 struct device_attribute
*attr
, char *buf
)
1187 struct snd_soc_pcm_runtime
*rtd
=
1188 container_of(dev
, struct snd_soc_pcm_runtime
, dev
);
1189 struct snd_soc_codec
*codec
=rtd
->codec
;
1190 struct snd_soc_dapm_widget
*w
;
1192 char *state
= "not set";
1194 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1196 /* only display widgets that burnm power */
1198 case snd_soc_dapm_hp
:
1199 case snd_soc_dapm_mic
:
1200 case snd_soc_dapm_spk
:
1201 case snd_soc_dapm_line
:
1202 case snd_soc_dapm_micbias
:
1203 case snd_soc_dapm_dac
:
1204 case snd_soc_dapm_adc
:
1205 case snd_soc_dapm_pga
:
1206 case snd_soc_dapm_mixer
:
1207 case snd_soc_dapm_mixer_named_ctl
:
1208 case snd_soc_dapm_supply
:
1210 count
+= sprintf(buf
+ count
, "%s: %s\n",
1211 w
->name
, w
->power
? "On":"Off");
1218 switch (codec
->bias_level
) {
1219 case SND_SOC_BIAS_ON
:
1222 case SND_SOC_BIAS_PREPARE
:
1225 case SND_SOC_BIAS_STANDBY
:
1228 case SND_SOC_BIAS_OFF
:
1232 count
+= sprintf(buf
+ count
, "PM State: %s\n", state
);
1237 static DEVICE_ATTR(dapm_widget
, 0444, dapm_widget_show
, NULL
);
1239 int snd_soc_dapm_sys_add(struct device
*dev
)
1241 return device_create_file(dev
, &dev_attr_dapm_widget
);
1244 static void snd_soc_dapm_sys_remove(struct device
*dev
)
1246 device_remove_file(dev
, &dev_attr_dapm_widget
);
1249 /* free all dapm widgets and resources */
1250 static void dapm_free_widgets(struct snd_soc_codec
*codec
)
1252 struct snd_soc_dapm_widget
*w
, *next_w
;
1253 struct snd_soc_dapm_path
*p
, *next_p
;
1255 list_for_each_entry_safe(w
, next_w
, &codec
->dapm_widgets
, list
) {
1260 list_for_each_entry_safe(p
, next_p
, &codec
->dapm_paths
, list
) {
1262 kfree(p
->long_name
);
1267 static int snd_soc_dapm_set_pin(struct snd_soc_codec
*codec
,
1268 const char *pin
, int status
)
1270 struct snd_soc_dapm_widget
*w
;
1272 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1273 if (!strcmp(w
->name
, pin
)) {
1274 pr_debug("dapm: %s: pin %s\n", codec
->name
, pin
);
1275 w
->connected
= status
;
1276 /* Allow disabling of forced pins */
1283 pr_err("dapm: %s: configuring unknown pin %s\n", codec
->name
, pin
);
1288 * snd_soc_dapm_sync - scan and power dapm paths
1289 * @codec: audio codec
1291 * Walks all dapm audio paths and powers widgets according to their
1292 * stream or path usage.
1294 * Returns 0 for success.
1296 int snd_soc_dapm_sync(struct snd_soc_codec
*codec
)
1298 return dapm_power_widgets(codec
, SND_SOC_DAPM_STREAM_NOP
);
1300 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync
);
1302 static int snd_soc_dapm_add_route(struct snd_soc_codec
*codec
,
1303 const struct snd_soc_dapm_route
*route
)
1305 struct snd_soc_dapm_path
*path
;
1306 struct snd_soc_dapm_widget
*wsource
= NULL
, *wsink
= NULL
, *w
;
1307 const char *sink
= route
->sink
;
1308 const char *control
= route
->control
;
1309 const char *source
= route
->source
;
1312 /* find src and dest widgets */
1313 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1315 if (!wsink
&& !(strcmp(w
->name
, sink
))) {
1319 if (!wsource
&& !(strcmp(w
->name
, source
))) {
1324 if (wsource
== NULL
|| wsink
== NULL
)
1327 path
= kzalloc(sizeof(struct snd_soc_dapm_path
), GFP_KERNEL
);
1331 path
->source
= wsource
;
1333 path
->connected
= route
->connected
;
1334 INIT_LIST_HEAD(&path
->list
);
1335 INIT_LIST_HEAD(&path
->list_source
);
1336 INIT_LIST_HEAD(&path
->list_sink
);
1338 /* check for external widgets */
1339 if (wsink
->id
== snd_soc_dapm_input
) {
1340 if (wsource
->id
== snd_soc_dapm_micbias
||
1341 wsource
->id
== snd_soc_dapm_mic
||
1342 wsource
->id
== snd_soc_dapm_line
||
1343 wsource
->id
== snd_soc_dapm_output
)
1346 if (wsource
->id
== snd_soc_dapm_output
) {
1347 if (wsink
->id
== snd_soc_dapm_spk
||
1348 wsink
->id
== snd_soc_dapm_hp
||
1349 wsink
->id
== snd_soc_dapm_line
||
1350 wsink
->id
== snd_soc_dapm_input
)
1354 /* connect static paths */
1355 if (control
== NULL
) {
1356 list_add(&path
->list
, &codec
->dapm_paths
);
1357 list_add(&path
->list_sink
, &wsink
->sources
);
1358 list_add(&path
->list_source
, &wsource
->sinks
);
1363 /* connect dynamic paths */
1365 case snd_soc_dapm_adc
:
1366 case snd_soc_dapm_dac
:
1367 case snd_soc_dapm_pga
:
1368 case snd_soc_dapm_input
:
1369 case snd_soc_dapm_output
:
1370 case snd_soc_dapm_micbias
:
1371 case snd_soc_dapm_vmid
:
1372 case snd_soc_dapm_pre
:
1373 case snd_soc_dapm_post
:
1374 case snd_soc_dapm_supply
:
1375 case snd_soc_dapm_aif_in
:
1376 case snd_soc_dapm_aif_out
:
1377 list_add(&path
->list
, &codec
->dapm_paths
);
1378 list_add(&path
->list_sink
, &wsink
->sources
);
1379 list_add(&path
->list_source
, &wsource
->sinks
);
1382 case snd_soc_dapm_mux
:
1383 case snd_soc_dapm_value_mux
:
1384 ret
= dapm_connect_mux(codec
, wsource
, wsink
, path
, control
,
1385 &wsink
->kcontrols
[0]);
1389 case snd_soc_dapm_switch
:
1390 case snd_soc_dapm_mixer
:
1391 case snd_soc_dapm_mixer_named_ctl
:
1392 ret
= dapm_connect_mixer(codec
, wsource
, wsink
, path
, control
);
1396 case snd_soc_dapm_hp
:
1397 case snd_soc_dapm_mic
:
1398 case snd_soc_dapm_line
:
1399 case snd_soc_dapm_spk
:
1400 list_add(&path
->list
, &codec
->dapm_paths
);
1401 list_add(&path
->list_sink
, &wsink
->sources
);
1402 list_add(&path
->list_source
, &wsource
->sinks
);
1409 printk(KERN_WARNING
"asoc: no dapm match for %s --> %s --> %s\n", source
,
1416 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
1418 * @route: audio routes
1419 * @num: number of routes
1421 * Connects 2 dapm widgets together via a named audio path. The sink is
1422 * the widget receiving the audio signal, whilst the source is the sender
1423 * of the audio signal.
1425 * Returns 0 for success else error. On error all resources can be freed
1426 * with a call to snd_soc_card_free().
1428 int snd_soc_dapm_add_routes(struct snd_soc_codec
*codec
,
1429 const struct snd_soc_dapm_route
*route
, int num
)
1433 for (i
= 0; i
< num
; i
++) {
1434 ret
= snd_soc_dapm_add_route(codec
, route
);
1436 printk(KERN_ERR
"Failed to add route %s->%s\n",
1446 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes
);
1449 * snd_soc_dapm_new_widgets - add new dapm widgets
1450 * @codec: audio codec
1452 * Checks the codec for any new dapm widgets and creates them if found.
1454 * Returns 0 for success.
1456 int snd_soc_dapm_new_widgets(struct snd_soc_codec
*codec
)
1458 struct snd_soc_dapm_widget
*w
;
1460 list_for_each_entry(w
, &codec
->dapm_widgets
, list
)
1466 case snd_soc_dapm_switch
:
1467 case snd_soc_dapm_mixer
:
1468 case snd_soc_dapm_mixer_named_ctl
:
1469 w
->power_check
= dapm_generic_check_power
;
1470 dapm_new_mixer(codec
, w
);
1472 case snd_soc_dapm_mux
:
1473 case snd_soc_dapm_value_mux
:
1474 w
->power_check
= dapm_generic_check_power
;
1475 dapm_new_mux(codec
, w
);
1477 case snd_soc_dapm_adc
:
1478 case snd_soc_dapm_aif_out
:
1479 w
->power_check
= dapm_adc_check_power
;
1481 case snd_soc_dapm_dac
:
1482 case snd_soc_dapm_aif_in
:
1483 w
->power_check
= dapm_dac_check_power
;
1485 case snd_soc_dapm_pga
:
1486 w
->power_check
= dapm_generic_check_power
;
1487 dapm_new_pga(codec
, w
);
1489 case snd_soc_dapm_input
:
1490 case snd_soc_dapm_output
:
1491 case snd_soc_dapm_micbias
:
1492 case snd_soc_dapm_spk
:
1493 case snd_soc_dapm_hp
:
1494 case snd_soc_dapm_mic
:
1495 case snd_soc_dapm_line
:
1496 w
->power_check
= dapm_generic_check_power
;
1498 case snd_soc_dapm_supply
:
1499 w
->power_check
= dapm_supply_check_power
;
1500 case snd_soc_dapm_vmid
:
1501 case snd_soc_dapm_pre
:
1502 case snd_soc_dapm_post
:
1508 dapm_power_widgets(codec
, SND_SOC_DAPM_STREAM_NOP
);
1511 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets
);
1514 * snd_soc_dapm_get_volsw - dapm mixer get callback
1515 * @kcontrol: mixer control
1516 * @ucontrol: control element information
1518 * Callback to get the value of a dapm mixer control.
1520 * Returns 0 for success.
1522 int snd_soc_dapm_get_volsw(struct snd_kcontrol
*kcontrol
,
1523 struct snd_ctl_elem_value
*ucontrol
)
1525 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1526 struct soc_mixer_control
*mc
=
1527 (struct soc_mixer_control
*)kcontrol
->private_value
;
1528 unsigned int reg
= mc
->reg
;
1529 unsigned int shift
= mc
->shift
;
1530 unsigned int rshift
= mc
->rshift
;
1532 unsigned int invert
= mc
->invert
;
1533 unsigned int mask
= (1 << fls(max
)) - 1;
1535 ucontrol
->value
.integer
.value
[0] =
1536 (snd_soc_read(widget
->codec
, reg
) >> shift
) & mask
;
1537 if (shift
!= rshift
)
1538 ucontrol
->value
.integer
.value
[1] =
1539 (snd_soc_read(widget
->codec
, reg
) >> rshift
) & mask
;
1541 ucontrol
->value
.integer
.value
[0] =
1542 max
- ucontrol
->value
.integer
.value
[0];
1543 if (shift
!= rshift
)
1544 ucontrol
->value
.integer
.value
[1] =
1545 max
- ucontrol
->value
.integer
.value
[1];
1550 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw
);
1553 * snd_soc_dapm_put_volsw - dapm mixer set callback
1554 * @kcontrol: mixer control
1555 * @ucontrol: control element information
1557 * Callback to set the value of a dapm mixer control.
1559 * Returns 0 for success.
1561 int snd_soc_dapm_put_volsw(struct snd_kcontrol
*kcontrol
,
1562 struct snd_ctl_elem_value
*ucontrol
)
1564 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1565 struct soc_mixer_control
*mc
=
1566 (struct soc_mixer_control
*)kcontrol
->private_value
;
1567 unsigned int reg
= mc
->reg
;
1568 unsigned int shift
= mc
->shift
;
1569 unsigned int rshift
= mc
->rshift
;
1571 unsigned int mask
= (1 << fls(max
)) - 1;
1572 unsigned int invert
= mc
->invert
;
1573 unsigned int val
, val2
, val_mask
;
1577 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1581 val_mask
= mask
<< shift
;
1583 if (shift
!= rshift
) {
1584 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
1587 val_mask
|= mask
<< rshift
;
1588 val
|= val2
<< rshift
;
1591 mutex_lock(&widget
->codec
->mutex
);
1592 widget
->value
= val
;
1594 if (snd_soc_test_bits(widget
->codec
, reg
, val_mask
, val
)) {
1596 /* new connection */
1597 connect
= invert
? 0:1;
1599 /* old connection must be powered down */
1600 connect
= invert
? 1:0;
1602 dapm_mixer_update_power(widget
, kcontrol
, connect
);
1605 if (widget
->event
) {
1606 if (widget
->event_flags
& SND_SOC_DAPM_PRE_REG
) {
1607 ret
= widget
->event(widget
, kcontrol
,
1608 SND_SOC_DAPM_PRE_REG
);
1614 ret
= snd_soc_update_bits(widget
->codec
, reg
, val_mask
, val
);
1615 if (widget
->event_flags
& SND_SOC_DAPM_POST_REG
)
1616 ret
= widget
->event(widget
, kcontrol
,
1617 SND_SOC_DAPM_POST_REG
);
1619 ret
= snd_soc_update_bits(widget
->codec
, reg
, val_mask
, val
);
1622 mutex_unlock(&widget
->codec
->mutex
);
1625 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw
);
1628 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
1629 * @kcontrol: mixer control
1630 * @ucontrol: control element information
1632 * Callback to get the value of a dapm enumerated double mixer control.
1634 * Returns 0 for success.
1636 int snd_soc_dapm_get_enum_double(struct snd_kcontrol
*kcontrol
,
1637 struct snd_ctl_elem_value
*ucontrol
)
1639 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1640 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1641 unsigned int val
, bitmask
;
1643 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
1645 val
= snd_soc_read(widget
->codec
, e
->reg
);
1646 ucontrol
->value
.enumerated
.item
[0] = (val
>> e
->shift_l
) & (bitmask
- 1);
1647 if (e
->shift_l
!= e
->shift_r
)
1648 ucontrol
->value
.enumerated
.item
[1] =
1649 (val
>> e
->shift_r
) & (bitmask
- 1);
1653 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double
);
1656 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
1657 * @kcontrol: mixer control
1658 * @ucontrol: control element information
1660 * Callback to set the value of a dapm enumerated double mixer control.
1662 * Returns 0 for success.
1664 int snd_soc_dapm_put_enum_double(struct snd_kcontrol
*kcontrol
,
1665 struct snd_ctl_elem_value
*ucontrol
)
1667 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1668 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1669 unsigned int val
, mux
, change
;
1670 unsigned int mask
, bitmask
;
1673 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
1675 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
1677 mux
= ucontrol
->value
.enumerated
.item
[0];
1678 val
= mux
<< e
->shift_l
;
1679 mask
= (bitmask
- 1) << e
->shift_l
;
1680 if (e
->shift_l
!= e
->shift_r
) {
1681 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
1683 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
1684 mask
|= (bitmask
- 1) << e
->shift_r
;
1687 mutex_lock(&widget
->codec
->mutex
);
1688 widget
->value
= val
;
1689 change
= snd_soc_test_bits(widget
->codec
, e
->reg
, mask
, val
);
1690 dapm_mux_update_power(widget
, kcontrol
, change
, mux
, e
);
1692 if (widget
->event_flags
& SND_SOC_DAPM_PRE_REG
) {
1693 ret
= widget
->event(widget
,
1694 kcontrol
, SND_SOC_DAPM_PRE_REG
);
1699 ret
= snd_soc_update_bits(widget
->codec
, e
->reg
, mask
, val
);
1701 if (widget
->event_flags
& SND_SOC_DAPM_POST_REG
)
1702 ret
= widget
->event(widget
,
1703 kcontrol
, SND_SOC_DAPM_POST_REG
);
1706 mutex_unlock(&widget
->codec
->mutex
);
1709 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double
);
1712 * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux
1713 * @kcontrol: mixer control
1714 * @ucontrol: control element information
1716 * Returns 0 for success.
1718 int snd_soc_dapm_get_enum_virt(struct snd_kcontrol
*kcontrol
,
1719 struct snd_ctl_elem_value
*ucontrol
)
1721 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1723 ucontrol
->value
.enumerated
.item
[0] = widget
->value
;
1727 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt
);
1730 * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux
1731 * @kcontrol: mixer control
1732 * @ucontrol: control element information
1734 * Returns 0 for success.
1736 int snd_soc_dapm_put_enum_virt(struct snd_kcontrol
*kcontrol
,
1737 struct snd_ctl_elem_value
*ucontrol
)
1739 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1740 struct soc_enum
*e
=
1741 (struct soc_enum
*)kcontrol
->private_value
;
1745 if (ucontrol
->value
.enumerated
.item
[0] >= e
->max
)
1748 mutex_lock(&widget
->codec
->mutex
);
1750 change
= widget
->value
!= ucontrol
->value
.enumerated
.item
[0];
1751 widget
->value
= ucontrol
->value
.enumerated
.item
[0];
1752 dapm_mux_update_power(widget
, kcontrol
, change
, widget
->value
, e
);
1754 mutex_unlock(&widget
->codec
->mutex
);
1757 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt
);
1760 * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
1762 * @kcontrol: mixer control
1763 * @ucontrol: control element information
1765 * Callback to get the value of a dapm semi enumerated double mixer control.
1767 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1768 * used for handling bitfield coded enumeration for example.
1770 * Returns 0 for success.
1772 int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol
*kcontrol
,
1773 struct snd_ctl_elem_value
*ucontrol
)
1775 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1776 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1777 unsigned int reg_val
, val
, mux
;
1779 reg_val
= snd_soc_read(widget
->codec
, e
->reg
);
1780 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
1781 for (mux
= 0; mux
< e
->max
; mux
++) {
1782 if (val
== e
->values
[mux
])
1785 ucontrol
->value
.enumerated
.item
[0] = mux
;
1786 if (e
->shift_l
!= e
->shift_r
) {
1787 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
1788 for (mux
= 0; mux
< e
->max
; mux
++) {
1789 if (val
== e
->values
[mux
])
1792 ucontrol
->value
.enumerated
.item
[1] = mux
;
1797 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double
);
1800 * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
1802 * @kcontrol: mixer control
1803 * @ucontrol: control element information
1805 * Callback to set the value of a dapm semi enumerated double mixer control.
1807 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1808 * used for handling bitfield coded enumeration for example.
1810 * Returns 0 for success.
1812 int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol
*kcontrol
,
1813 struct snd_ctl_elem_value
*ucontrol
)
1815 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1816 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1817 unsigned int val
, mux
, change
;
1821 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
1823 mux
= ucontrol
->value
.enumerated
.item
[0];
1824 val
= e
->values
[ucontrol
->value
.enumerated
.item
[0]] << e
->shift_l
;
1825 mask
= e
->mask
<< e
->shift_l
;
1826 if (e
->shift_l
!= e
->shift_r
) {
1827 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
1829 val
|= e
->values
[ucontrol
->value
.enumerated
.item
[1]] << e
->shift_r
;
1830 mask
|= e
->mask
<< e
->shift_r
;
1833 mutex_lock(&widget
->codec
->mutex
);
1834 widget
->value
= val
;
1835 change
= snd_soc_test_bits(widget
->codec
, e
->reg
, mask
, val
);
1836 dapm_mux_update_power(widget
, kcontrol
, change
, mux
, e
);
1838 if (widget
->event_flags
& SND_SOC_DAPM_PRE_REG
) {
1839 ret
= widget
->event(widget
,
1840 kcontrol
, SND_SOC_DAPM_PRE_REG
);
1845 ret
= snd_soc_update_bits(widget
->codec
, e
->reg
, mask
, val
);
1847 if (widget
->event_flags
& SND_SOC_DAPM_POST_REG
)
1848 ret
= widget
->event(widget
,
1849 kcontrol
, SND_SOC_DAPM_POST_REG
);
1852 mutex_unlock(&widget
->codec
->mutex
);
1855 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double
);
1858 * snd_soc_dapm_info_pin_switch - Info for a pin switch
1860 * @kcontrol: mixer control
1861 * @uinfo: control element information
1863 * Callback to provide information about a pin switch control.
1865 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol
*kcontrol
,
1866 struct snd_ctl_elem_info
*uinfo
)
1868 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1870 uinfo
->value
.integer
.min
= 0;
1871 uinfo
->value
.integer
.max
= 1;
1875 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch
);
1878 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
1880 * @kcontrol: mixer control
1883 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol
*kcontrol
,
1884 struct snd_ctl_elem_value
*ucontrol
)
1886 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1887 const char *pin
= (const char *)kcontrol
->private_value
;
1889 mutex_lock(&codec
->mutex
);
1891 ucontrol
->value
.integer
.value
[0] =
1892 snd_soc_dapm_get_pin_status(codec
, pin
);
1894 mutex_unlock(&codec
->mutex
);
1898 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch
);
1901 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
1903 * @kcontrol: mixer control
1906 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol
*kcontrol
,
1907 struct snd_ctl_elem_value
*ucontrol
)
1909 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1910 const char *pin
= (const char *)kcontrol
->private_value
;
1912 mutex_lock(&codec
->mutex
);
1914 if (ucontrol
->value
.integer
.value
[0])
1915 snd_soc_dapm_enable_pin(codec
, pin
);
1917 snd_soc_dapm_disable_pin(codec
, pin
);
1919 snd_soc_dapm_sync(codec
);
1921 mutex_unlock(&codec
->mutex
);
1925 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch
);
1928 * snd_soc_dapm_new_control - create new dapm control
1929 * @codec: audio codec
1930 * @widget: widget template
1932 * Creates a new dapm control based upon the template.
1934 * Returns 0 for success else error.
1936 int snd_soc_dapm_new_control(struct snd_soc_codec
*codec
,
1937 const struct snd_soc_dapm_widget
*widget
)
1939 struct snd_soc_dapm_widget
*w
;
1941 if ((w
= dapm_cnew_widget(widget
)) == NULL
)
1945 INIT_LIST_HEAD(&w
->sources
);
1946 INIT_LIST_HEAD(&w
->sinks
);
1947 INIT_LIST_HEAD(&w
->list
);
1948 list_add(&w
->list
, &codec
->dapm_widgets
);
1950 /* machine layer set ups unconnected pins and insertions */
1954 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control
);
1957 * snd_soc_dapm_new_controls - create new dapm controls
1958 * @codec: audio codec
1959 * @widget: widget array
1960 * @num: number of widgets
1962 * Creates new DAPM controls based upon the templates.
1964 * Returns 0 for success else error.
1966 int snd_soc_dapm_new_controls(struct snd_soc_codec
*codec
,
1967 const struct snd_soc_dapm_widget
*widget
,
1972 for (i
= 0; i
< num
; i
++) {
1973 ret
= snd_soc_dapm_new_control(codec
, widget
);
1976 "ASoC: Failed to create DAPM control %s: %d\n",
1984 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls
);
1988 * snd_soc_dapm_stream_event - send a stream event to the dapm core
1989 * @codec: audio codec
1990 * @stream: stream name
1991 * @event: stream event
1993 * Sends a stream event to the dapm core. The core then makes any
1994 * necessary widget power changes.
1996 * Returns 0 for success else error.
1998 int snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime
*rtd
,
1999 const char *stream
, int event
)
2001 struct snd_soc_codec
*codec
= rtd
->codec
;
2002 struct snd_soc_dapm_widget
*w
;
2007 mutex_lock(&codec
->mutex
);
2008 list_for_each_entry(w
, &codec
->dapm_widgets
, list
)
2012 pr_debug("widget %s\n %s stream %s event %d\n",
2013 w
->name
, w
->sname
, stream
, event
);
2014 if (strstr(w
->sname
, stream
)) {
2016 case SND_SOC_DAPM_STREAM_START
:
2019 case SND_SOC_DAPM_STREAM_STOP
:
2022 case SND_SOC_DAPM_STREAM_SUSPEND
:
2023 case SND_SOC_DAPM_STREAM_RESUME
:
2024 case SND_SOC_DAPM_STREAM_PAUSE_PUSH
:
2025 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE
:
2031 dapm_power_widgets(codec
, event
);
2032 mutex_unlock(&codec
->mutex
);
2035 EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_event
);
2038 * snd_soc_dapm_enable_pin - enable pin.
2042 * Enables input/output pin and its parents or children widgets iff there is
2043 * a valid audio route and active audio stream.
2044 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2045 * do any widget power switching.
2047 int snd_soc_dapm_enable_pin(struct snd_soc_codec
*codec
, const char *pin
)
2049 return snd_soc_dapm_set_pin(codec
, pin
, 1);
2051 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin
);
2054 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
2058 * Enables input/output pin regardless of any other state. This is
2059 * intended for use with microphone bias supplies used in microphone
2062 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2063 * do any widget power switching.
2065 int snd_soc_dapm_force_enable_pin(struct snd_soc_codec
*codec
, const char *pin
)
2067 struct snd_soc_dapm_widget
*w
;
2069 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
2070 if (!strcmp(w
->name
, pin
)) {
2071 pr_debug("dapm: %s: pin %s\n", codec
->name
, pin
);
2078 pr_err("dapm: %s: configuring unknown pin %s\n", codec
->name
, pin
);
2081 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin
);
2084 * snd_soc_dapm_disable_pin - disable pin.
2088 * Disables input/output pin and its parents or children widgets.
2089 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2090 * do any widget power switching.
2092 int snd_soc_dapm_disable_pin(struct snd_soc_codec
*codec
, const char *pin
)
2094 return snd_soc_dapm_set_pin(codec
, pin
, 0);
2096 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin
);
2099 * snd_soc_dapm_nc_pin - permanently disable pin.
2103 * Marks the specified pin as being not connected, disabling it along
2104 * any parent or child widgets. At present this is identical to
2105 * snd_soc_dapm_disable_pin() but in future it will be extended to do
2106 * additional things such as disabling controls which only affect
2107 * paths through the pin.
2109 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2110 * do any widget power switching.
2112 int snd_soc_dapm_nc_pin(struct snd_soc_codec
*codec
, const char *pin
)
2114 return snd_soc_dapm_set_pin(codec
, pin
, 0);
2116 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin
);
2119 * snd_soc_dapm_get_pin_status - get audio pin status
2120 * @codec: audio codec
2121 * @pin: audio signal pin endpoint (or start point)
2123 * Get audio pin status - connected or disconnected.
2125 * Returns 1 for connected otherwise 0.
2127 int snd_soc_dapm_get_pin_status(struct snd_soc_codec
*codec
, const char *pin
)
2129 struct snd_soc_dapm_widget
*w
;
2131 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
2132 if (!strcmp(w
->name
, pin
))
2133 return w
->connected
;
2138 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status
);
2141 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
2142 * @codec: audio codec
2143 * @pin: audio signal pin endpoint (or start point)
2145 * Mark the given endpoint or pin as ignoring suspend. When the
2146 * system is disabled a path between two endpoints flagged as ignoring
2147 * suspend will not be disabled. The path must already be enabled via
2148 * normal means at suspend time, it will not be turned on if it was not
2151 int snd_soc_dapm_ignore_suspend(struct snd_soc_codec
*codec
, const char *pin
)
2153 struct snd_soc_dapm_widget
*w
;
2155 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
2156 if (!strcmp(w
->name
, pin
)) {
2157 w
->ignore_suspend
= 1;
2162 pr_err("Unknown DAPM pin: %s\n", pin
);
2165 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend
);
2168 * snd_soc_dapm_free - free dapm resources
2171 * Free all dapm widgets and resources.
2173 void snd_soc_dapm_free(struct snd_soc_codec
*codec
)
2175 snd_soc_dapm_sys_remove(codec
->dev
);
2176 dapm_free_widgets(codec
);
2178 EXPORT_SYMBOL_GPL(snd_soc_dapm_free
);
2180 static void soc_dapm_shutdown_codec(struct snd_soc_codec
*codec
)
2182 struct snd_soc_dapm_widget
*w
;
2183 LIST_HEAD(down_list
);
2186 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
2188 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
2194 /* If there were no widgets to power down we're already in
2198 snd_soc_dapm_set_bias_level(NULL
, codec
, SND_SOC_BIAS_PREPARE
);
2199 dapm_seq_run(codec
, &down_list
, 0, dapm_down_seq
);
2200 snd_soc_dapm_set_bias_level(NULL
, codec
, SND_SOC_BIAS_STANDBY
);
2205 * snd_soc_dapm_shutdown - callback for system shutdown
2207 void snd_soc_dapm_shutdown(struct snd_soc_card
*card
)
2209 struct snd_soc_codec
*codec
;
2211 list_for_each_entry(codec
, &card
->codec_dev_list
, list
)
2212 soc_dapm_shutdown_codec(codec
);
2214 snd_soc_dapm_set_bias_level(card
, codec
, SND_SOC_BIAS_OFF
);
2217 /* Module information */
2218 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
2219 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
2220 MODULE_LICENSE("GPL");