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.h>
46 #include <sound/initval.h>
48 #include <trace/events/asoc.h>
50 /* dapm power sequences - make this per codec in the future */
51 static int dapm_up_seq
[] = {
52 [snd_soc_dapm_pre
] = 0,
53 [snd_soc_dapm_supply
] = 1,
54 [snd_soc_dapm_micbias
] = 2,
55 [snd_soc_dapm_aif_in
] = 3,
56 [snd_soc_dapm_aif_out
] = 3,
57 [snd_soc_dapm_mic
] = 4,
58 [snd_soc_dapm_mux
] = 5,
59 [snd_soc_dapm_virt_mux
] = 5,
60 [snd_soc_dapm_value_mux
] = 5,
61 [snd_soc_dapm_dac
] = 6,
62 [snd_soc_dapm_mixer
] = 7,
63 [snd_soc_dapm_mixer_named_ctl
] = 7,
64 [snd_soc_dapm_pga
] = 8,
65 [snd_soc_dapm_adc
] = 9,
66 [snd_soc_dapm_out_drv
] = 10,
67 [snd_soc_dapm_hp
] = 10,
68 [snd_soc_dapm_spk
] = 10,
69 [snd_soc_dapm_post
] = 11,
72 static int dapm_down_seq
[] = {
73 [snd_soc_dapm_pre
] = 0,
74 [snd_soc_dapm_adc
] = 1,
75 [snd_soc_dapm_hp
] = 2,
76 [snd_soc_dapm_spk
] = 2,
77 [snd_soc_dapm_out_drv
] = 2,
78 [snd_soc_dapm_pga
] = 4,
79 [snd_soc_dapm_mixer_named_ctl
] = 5,
80 [snd_soc_dapm_mixer
] = 5,
81 [snd_soc_dapm_dac
] = 6,
82 [snd_soc_dapm_mic
] = 7,
83 [snd_soc_dapm_micbias
] = 8,
84 [snd_soc_dapm_mux
] = 9,
85 [snd_soc_dapm_virt_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(struct device
*dev
, u32 pop_time
, const char *fmt
, ...)
107 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
112 vsnprintf(buf
, PAGE_SIZE
, fmt
, args
);
113 dev_info(dev
, "%s", buf
);
119 /* create a new dapm widget */
120 static inline struct snd_soc_dapm_widget
*dapm_cnew_widget(
121 const struct snd_soc_dapm_widget
*_widget
)
123 return kmemdup(_widget
, sizeof(*_widget
), GFP_KERNEL
);
127 * snd_soc_dapm_set_bias_level - set the bias level for the system
128 * @card: audio device
129 * @level: level to configure
131 * Configure the bias (power) levels for the SoC audio device.
133 * Returns 0 for success else error.
135 static int snd_soc_dapm_set_bias_level(struct snd_soc_card
*card
,
136 struct snd_soc_dapm_context
*dapm
,
137 enum snd_soc_bias_level level
)
142 case SND_SOC_BIAS_ON
:
143 dev_dbg(dapm
->dev
, "Setting full bias\n");
145 case SND_SOC_BIAS_PREPARE
:
146 dev_dbg(dapm
->dev
, "Setting bias prepare\n");
148 case SND_SOC_BIAS_STANDBY
:
149 dev_dbg(dapm
->dev
, "Setting standby bias\n");
151 case SND_SOC_BIAS_OFF
:
152 dev_dbg(dapm
->dev
, "Setting bias off\n");
155 dev_err(dapm
->dev
, "Setting invalid bias %d\n", level
);
159 trace_snd_soc_bias_level_start(card
, level
);
161 if (card
&& card
->set_bias_level
)
162 ret
= card
->set_bias_level(card
, level
);
164 if (dapm
->codec
&& dapm
->codec
->driver
->set_bias_level
)
165 ret
= dapm
->codec
->driver
->set_bias_level(dapm
->codec
, level
);
167 dapm
->bias_level
= level
;
170 if (card
&& card
->set_bias_level_post
)
171 ret
= card
->set_bias_level_post(card
, level
);
174 trace_snd_soc_bias_level_done(card
, level
);
179 /* set up initial codec paths */
180 static void dapm_set_path_status(struct snd_soc_dapm_widget
*w
,
181 struct snd_soc_dapm_path
*p
, int i
)
184 case snd_soc_dapm_switch
:
185 case snd_soc_dapm_mixer
:
186 case snd_soc_dapm_mixer_named_ctl
: {
188 struct soc_mixer_control
*mc
= (struct soc_mixer_control
*)
189 w
->kcontrols
[i
].private_value
;
190 unsigned int reg
= mc
->reg
;
191 unsigned int shift
= mc
->shift
;
193 unsigned int mask
= (1 << fls(max
)) - 1;
194 unsigned int invert
= mc
->invert
;
196 val
= snd_soc_read(w
->codec
, reg
);
197 val
= (val
>> shift
) & mask
;
199 if ((invert
&& !val
) || (!invert
&& val
))
205 case snd_soc_dapm_mux
: {
206 struct soc_enum
*e
= (struct soc_enum
*)w
->kcontrols
[i
].private_value
;
207 int val
, item
, bitmask
;
209 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
211 val
= snd_soc_read(w
->codec
, e
->reg
);
212 item
= (val
>> e
->shift_l
) & (bitmask
- 1);
215 for (i
= 0; i
< e
->max
; i
++) {
216 if (!(strcmp(p
->name
, e
->texts
[i
])) && item
== i
)
221 case snd_soc_dapm_virt_mux
: {
222 struct soc_enum
*e
= (struct soc_enum
*)w
->kcontrols
[i
].private_value
;
225 /* since a virtual mux has no backing registers to
226 * decide which path to connect, it will try to match
227 * with the first enumeration. This is to ensure
228 * that the default mux choice (the first) will be
229 * correctly powered up during initialization.
231 if (!strcmp(p
->name
, e
->texts
[0]))
235 case snd_soc_dapm_value_mux
: {
236 struct soc_enum
*e
= (struct soc_enum
*)
237 w
->kcontrols
[i
].private_value
;
240 val
= snd_soc_read(w
->codec
, e
->reg
);
241 val
= (val
>> e
->shift_l
) & e
->mask
;
242 for (item
= 0; item
< e
->max
; item
++) {
243 if (val
== e
->values
[item
])
248 for (i
= 0; i
< e
->max
; i
++) {
249 if (!(strcmp(p
->name
, e
->texts
[i
])) && item
== i
)
254 /* does not effect routing - always connected */
255 case snd_soc_dapm_pga
:
256 case snd_soc_dapm_out_drv
:
257 case snd_soc_dapm_output
:
258 case snd_soc_dapm_adc
:
259 case snd_soc_dapm_input
:
260 case snd_soc_dapm_dac
:
261 case snd_soc_dapm_micbias
:
262 case snd_soc_dapm_vmid
:
263 case snd_soc_dapm_supply
:
264 case snd_soc_dapm_aif_in
:
265 case snd_soc_dapm_aif_out
:
268 /* does effect routing - dynamically connected */
269 case snd_soc_dapm_hp
:
270 case snd_soc_dapm_mic
:
271 case snd_soc_dapm_spk
:
272 case snd_soc_dapm_line
:
273 case snd_soc_dapm_pre
:
274 case snd_soc_dapm_post
:
280 /* connect mux widget to its interconnecting audio paths */
281 static int dapm_connect_mux(struct snd_soc_dapm_context
*dapm
,
282 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
283 struct snd_soc_dapm_path
*path
, const char *control_name
,
284 const struct snd_kcontrol_new
*kcontrol
)
286 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
289 for (i
= 0; i
< e
->max
; i
++) {
290 if (!(strcmp(control_name
, e
->texts
[i
]))) {
291 list_add(&path
->list
, &dapm
->card
->paths
);
292 list_add(&path
->list_sink
, &dest
->sources
);
293 list_add(&path
->list_source
, &src
->sinks
);
294 path
->name
= (char*)e
->texts
[i
];
295 dapm_set_path_status(dest
, path
, 0);
303 /* connect mixer widget to its interconnecting audio paths */
304 static int dapm_connect_mixer(struct snd_soc_dapm_context
*dapm
,
305 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
306 struct snd_soc_dapm_path
*path
, const char *control_name
)
310 /* search for mixer kcontrol */
311 for (i
= 0; i
< dest
->num_kcontrols
; i
++) {
312 if (!strcmp(control_name
, dest
->kcontrols
[i
].name
)) {
313 list_add(&path
->list
, &dapm
->card
->paths
);
314 list_add(&path
->list_sink
, &dest
->sources
);
315 list_add(&path
->list_source
, &src
->sinks
);
316 path
->name
= dest
->kcontrols
[i
].name
;
317 dapm_set_path_status(dest
, path
, i
);
324 /* update dapm codec register bits */
325 static int dapm_update_bits(struct snd_soc_dapm_widget
*widget
)
328 unsigned int old
, new;
329 struct snd_soc_codec
*codec
= widget
->codec
;
330 struct snd_soc_dapm_context
*dapm
= widget
->dapm
;
331 struct snd_soc_card
*card
= dapm
->card
;
333 /* check for valid widgets */
334 if (widget
->reg
< 0 || widget
->id
== snd_soc_dapm_input
||
335 widget
->id
== snd_soc_dapm_output
||
336 widget
->id
== snd_soc_dapm_hp
||
337 widget
->id
== snd_soc_dapm_mic
||
338 widget
->id
== snd_soc_dapm_line
||
339 widget
->id
== snd_soc_dapm_spk
)
342 power
= widget
->power
;
344 power
= (power
? 0:1);
346 old
= snd_soc_read(codec
, widget
->reg
);
347 new = (old
& ~(0x1 << widget
->shift
)) | (power
<< widget
->shift
);
351 pop_dbg(dapm
->dev
, card
->pop_time
,
352 "pop test %s : %s in %d ms\n",
353 widget
->name
, widget
->power
? "on" : "off",
355 pop_wait(card
->pop_time
);
356 snd_soc_write(codec
, widget
->reg
, new);
358 dev_dbg(dapm
->dev
, "reg %x old %x new %x change %d\n", widget
->reg
,
363 /* create new dapm mixer control */
364 static int dapm_new_mixer(struct snd_soc_dapm_context
*dapm
,
365 struct snd_soc_dapm_widget
*w
)
369 struct snd_soc_dapm_path
*path
;
370 struct snd_card
*card
= dapm
->codec
->card
->snd_card
;
373 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
376 list_for_each_entry(path
, &w
->sources
, list_sink
) {
378 /* mixer/mux paths name must match control name */
379 if (path
->name
!= (char*)w
->kcontrols
[i
].name
)
382 /* add dapm control with long name.
383 * for dapm_mixer this is the concatenation of the
384 * mixer and kcontrol name.
385 * for dapm_mixer_named_ctl this is simply the
388 name_len
= strlen(w
->kcontrols
[i
].name
) + 1;
389 if (w
->id
!= snd_soc_dapm_mixer_named_ctl
)
390 name_len
+= 1 + strlen(w
->name
);
392 path
->long_name
= kmalloc(name_len
, GFP_KERNEL
);
394 if (path
->long_name
== NULL
)
399 snprintf(path
->long_name
, name_len
, "%s %s",
400 w
->name
, w
->kcontrols
[i
].name
);
402 case snd_soc_dapm_mixer_named_ctl
:
403 snprintf(path
->long_name
, name_len
, "%s",
404 w
->kcontrols
[i
].name
);
408 path
->long_name
[name_len
- 1] = '\0';
410 path
->kcontrol
= snd_soc_cnew(&w
->kcontrols
[i
], w
,
412 ret
= snd_ctl_add(card
, path
->kcontrol
);
415 "asoc: failed to add dapm kcontrol %s: %d\n",
416 path
->long_name
, ret
);
417 kfree(path
->long_name
);
418 path
->long_name
= NULL
;
426 /* create new dapm mux control */
427 static int dapm_new_mux(struct snd_soc_dapm_context
*dapm
,
428 struct snd_soc_dapm_widget
*w
)
430 struct snd_soc_dapm_path
*path
= NULL
;
431 struct snd_kcontrol
*kcontrol
;
432 struct snd_card
*card
= dapm
->codec
->card
->snd_card
;
435 if (!w
->num_kcontrols
) {
436 dev_err(dapm
->dev
, "asoc: mux %s has no controls\n", w
->name
);
440 kcontrol
= snd_soc_cnew(&w
->kcontrols
[0], w
, w
->name
);
441 ret
= snd_ctl_add(card
, kcontrol
);
446 list_for_each_entry(path
, &w
->sources
, list_sink
)
447 path
->kcontrol
= kcontrol
;
452 dev_err(dapm
->dev
, "asoc: failed to add kcontrol %s\n", w
->name
);
456 /* create new dapm volume control */
457 static int dapm_new_pga(struct snd_soc_dapm_context
*dapm
,
458 struct snd_soc_dapm_widget
*w
)
460 if (w
->num_kcontrols
)
461 dev_err(w
->dapm
->dev
,
462 "asoc: PGA controls not supported: '%s'\n", w
->name
);
467 /* reset 'walked' bit for each dapm path */
468 static inline void dapm_clear_walk(struct snd_soc_dapm_context
*dapm
)
470 struct snd_soc_dapm_path
*p
;
472 list_for_each_entry(p
, &dapm
->card
->paths
, list
)
476 /* We implement power down on suspend by checking the power state of
477 * the ALSA card - when we are suspending the ALSA state for the card
480 static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget
*widget
)
482 int level
= snd_power_get_state(widget
->dapm
->codec
->card
->snd_card
);
485 case SNDRV_CTL_POWER_D3hot
:
486 case SNDRV_CTL_POWER_D3cold
:
487 if (widget
->ignore_suspend
)
488 dev_dbg(widget
->dapm
->dev
, "%s ignoring suspend\n",
490 return widget
->ignore_suspend
;
497 * Recursively check for a completed path to an active or physically connected
498 * output widget. Returns number of complete paths.
500 static int is_connected_output_ep(struct snd_soc_dapm_widget
*widget
)
502 struct snd_soc_dapm_path
*path
;
505 if (widget
->id
== snd_soc_dapm_supply
)
508 switch (widget
->id
) {
509 case snd_soc_dapm_adc
:
510 case snd_soc_dapm_aif_out
:
512 return snd_soc_dapm_suspend_check(widget
);
517 if (widget
->connected
) {
518 /* connected pin ? */
519 if (widget
->id
== snd_soc_dapm_output
&& !widget
->ext
)
520 return snd_soc_dapm_suspend_check(widget
);
522 /* connected jack or spk ? */
523 if (widget
->id
== snd_soc_dapm_hp
|| widget
->id
== snd_soc_dapm_spk
||
524 (widget
->id
== snd_soc_dapm_line
&& !list_empty(&widget
->sources
)))
525 return snd_soc_dapm_suspend_check(widget
);
528 list_for_each_entry(path
, &widget
->sinks
, list_source
) {
532 if (path
->sink
&& path
->connect
) {
534 con
+= is_connected_output_ep(path
->sink
);
542 * Recursively check for a completed path to an active or physically connected
543 * input widget. Returns number of complete paths.
545 static int is_connected_input_ep(struct snd_soc_dapm_widget
*widget
)
547 struct snd_soc_dapm_path
*path
;
550 if (widget
->id
== snd_soc_dapm_supply
)
553 /* active stream ? */
554 switch (widget
->id
) {
555 case snd_soc_dapm_dac
:
556 case snd_soc_dapm_aif_in
:
558 return snd_soc_dapm_suspend_check(widget
);
563 if (widget
->connected
) {
564 /* connected pin ? */
565 if (widget
->id
== snd_soc_dapm_input
&& !widget
->ext
)
566 return snd_soc_dapm_suspend_check(widget
);
568 /* connected VMID/Bias for lower pops */
569 if (widget
->id
== snd_soc_dapm_vmid
)
570 return snd_soc_dapm_suspend_check(widget
);
572 /* connected jack ? */
573 if (widget
->id
== snd_soc_dapm_mic
||
574 (widget
->id
== snd_soc_dapm_line
&& !list_empty(&widget
->sinks
)))
575 return snd_soc_dapm_suspend_check(widget
);
578 list_for_each_entry(path
, &widget
->sources
, list_sink
) {
582 if (path
->source
&& path
->connect
) {
584 con
+= is_connected_input_ep(path
->source
);
592 * Handler for generic register modifier widget.
594 int dapm_reg_event(struct snd_soc_dapm_widget
*w
,
595 struct snd_kcontrol
*kcontrol
, int event
)
599 if (SND_SOC_DAPM_EVENT_ON(event
))
604 snd_soc_update_bits(w
->codec
, -(w
->reg
+ 1),
605 w
->mask
<< w
->shift
, val
<< w
->shift
);
609 EXPORT_SYMBOL_GPL(dapm_reg_event
);
611 /* Standard power change method, used to apply power changes to most
614 static int dapm_generic_apply_power(struct snd_soc_dapm_widget
*w
)
618 /* call any power change event handlers */
620 dev_dbg(w
->dapm
->dev
, "power %s event for %s flags %x\n",
621 w
->power
? "on" : "off",
622 w
->name
, w
->event_flags
);
624 /* power up pre event */
625 if (w
->power
&& w
->event
&&
626 (w
->event_flags
& SND_SOC_DAPM_PRE_PMU
)) {
627 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMU
);
632 /* power down pre event */
633 if (!w
->power
&& w
->event
&&
634 (w
->event_flags
& SND_SOC_DAPM_PRE_PMD
)) {
635 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_PRE_PMD
);
642 /* power up post event */
643 if (w
->power
&& w
->event
&&
644 (w
->event_flags
& SND_SOC_DAPM_POST_PMU
)) {
646 NULL
, SND_SOC_DAPM_POST_PMU
);
651 /* power down post event */
652 if (!w
->power
&& w
->event
&&
653 (w
->event_flags
& SND_SOC_DAPM_POST_PMD
)) {
654 ret
= w
->event(w
, NULL
, SND_SOC_DAPM_POST_PMD
);
662 /* Generic check to see if a widget should be powered.
664 static int dapm_generic_check_power(struct snd_soc_dapm_widget
*w
)
668 in
= is_connected_input_ep(w
);
669 dapm_clear_walk(w
->dapm
);
670 out
= is_connected_output_ep(w
);
671 dapm_clear_walk(w
->dapm
);
672 return out
!= 0 && in
!= 0;
675 /* Check to see if an ADC has power */
676 static int dapm_adc_check_power(struct snd_soc_dapm_widget
*w
)
681 in
= is_connected_input_ep(w
);
682 dapm_clear_walk(w
->dapm
);
685 return dapm_generic_check_power(w
);
689 /* Check to see if a DAC has power */
690 static int dapm_dac_check_power(struct snd_soc_dapm_widget
*w
)
695 out
= is_connected_output_ep(w
);
696 dapm_clear_walk(w
->dapm
);
699 return dapm_generic_check_power(w
);
703 /* Check to see if a power supply is needed */
704 static int dapm_supply_check_power(struct snd_soc_dapm_widget
*w
)
706 struct snd_soc_dapm_path
*path
;
709 /* Check if one of our outputs is connected */
710 list_for_each_entry(path
, &w
->sinks
, list_source
) {
711 if (path
->connected
&&
712 !path
->connected(path
->source
, path
->sink
))
718 if (path
->sink
->force
) {
723 if (path
->sink
->power_check
&&
724 path
->sink
->power_check(path
->sink
)) {
730 dapm_clear_walk(w
->dapm
);
735 static int dapm_seq_compare(struct snd_soc_dapm_widget
*a
,
736 struct snd_soc_dapm_widget
*b
,
739 if (sort
[a
->id
] != sort
[b
->id
])
740 return sort
[a
->id
] - sort
[b
->id
];
741 if (a
->reg
!= b
->reg
)
742 return a
->reg
- b
->reg
;
743 if (a
->dapm
!= b
->dapm
)
744 return (unsigned long)a
->dapm
- (unsigned long)b
->dapm
;
749 /* Insert a widget in order into a DAPM power sequence. */
750 static void dapm_seq_insert(struct snd_soc_dapm_widget
*new_widget
,
751 struct list_head
*list
,
754 struct snd_soc_dapm_widget
*w
;
756 list_for_each_entry(w
, list
, power_list
)
757 if (dapm_seq_compare(new_widget
, w
, sort
) < 0) {
758 list_add_tail(&new_widget
->power_list
, &w
->power_list
);
762 list_add_tail(&new_widget
->power_list
, list
);
765 static void dapm_seq_check_event(struct snd_soc_dapm_context
*dapm
,
766 struct snd_soc_dapm_widget
*w
, int event
)
768 struct snd_soc_card
*card
= dapm
->card
;
773 case SND_SOC_DAPM_PRE_PMU
:
777 case SND_SOC_DAPM_POST_PMU
:
778 ev_name
= "POST_PMU";
781 case SND_SOC_DAPM_PRE_PMD
:
785 case SND_SOC_DAPM_POST_PMD
:
786 ev_name
= "POST_PMD";
794 if (w
->power
!= power
)
797 if (w
->event
&& (w
->event_flags
& event
)) {
798 pop_dbg(dapm
->dev
, card
->pop_time
, "pop test : %s %s\n",
800 trace_snd_soc_dapm_widget_event_start(w
, event
);
801 ret
= w
->event(w
, NULL
, event
);
802 trace_snd_soc_dapm_widget_event_done(w
, event
);
804 pr_err("%s: %s event failed: %d\n",
805 ev_name
, w
->name
, ret
);
809 /* Apply the coalesced changes from a DAPM sequence */
810 static void dapm_seq_run_coalesced(struct snd_soc_dapm_context
*dapm
,
811 struct list_head
*pending
)
813 struct snd_soc_card
*card
= dapm
->card
;
814 struct snd_soc_dapm_widget
*w
;
816 unsigned int value
= 0;
817 unsigned int mask
= 0;
818 unsigned int cur_mask
;
820 reg
= list_first_entry(pending
, struct snd_soc_dapm_widget
,
823 list_for_each_entry(w
, pending
, power_list
) {
824 cur_mask
= 1 << w
->shift
;
825 BUG_ON(reg
!= w
->reg
);
836 pop_dbg(dapm
->dev
, card
->pop_time
,
837 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
838 w
->name
, reg
, value
, mask
);
840 /* Check for events */
841 dapm_seq_check_event(dapm
, w
, SND_SOC_DAPM_PRE_PMU
);
842 dapm_seq_check_event(dapm
, w
, SND_SOC_DAPM_PRE_PMD
);
846 pop_dbg(dapm
->dev
, card
->pop_time
,
847 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
848 value
, mask
, reg
, card
->pop_time
);
849 pop_wait(card
->pop_time
);
850 snd_soc_update_bits(dapm
->codec
, reg
, mask
, value
);
853 list_for_each_entry(w
, pending
, power_list
) {
854 dapm_seq_check_event(dapm
, w
, SND_SOC_DAPM_POST_PMU
);
855 dapm_seq_check_event(dapm
, w
, SND_SOC_DAPM_POST_PMD
);
859 /* Apply a DAPM power sequence.
861 * We walk over a pre-sorted list of widgets to apply power to. In
862 * order to minimise the number of writes to the device required
863 * multiple widgets will be updated in a single write where possible.
864 * Currently anything that requires more than a single write is not
867 static void dapm_seq_run(struct snd_soc_dapm_context
*dapm
,
868 struct list_head
*list
, int event
, int sort
[])
870 struct snd_soc_dapm_widget
*w
, *n
;
873 int cur_reg
= SND_SOC_NOPM
;
874 struct snd_soc_dapm_context
*cur_dapm
= NULL
;
877 list_for_each_entry_safe(w
, n
, list
, power_list
) {
880 /* Do we need to apply any queued changes? */
881 if (sort
[w
->id
] != cur_sort
|| w
->reg
!= cur_reg
||
882 w
->dapm
!= cur_dapm
) {
883 if (!list_empty(&pending
))
884 dapm_seq_run_coalesced(cur_dapm
, &pending
);
886 INIT_LIST_HEAD(&pending
);
888 cur_reg
= SND_SOC_NOPM
;
893 case snd_soc_dapm_pre
:
895 list_for_each_entry_safe_continue(w
, n
, list
,
898 if (event
== SND_SOC_DAPM_STREAM_START
)
900 NULL
, SND_SOC_DAPM_PRE_PMU
);
901 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
903 NULL
, SND_SOC_DAPM_PRE_PMD
);
906 case snd_soc_dapm_post
:
908 list_for_each_entry_safe_continue(w
, n
, list
,
911 if (event
== SND_SOC_DAPM_STREAM_START
)
913 NULL
, SND_SOC_DAPM_POST_PMU
);
914 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
916 NULL
, SND_SOC_DAPM_POST_PMD
);
919 case snd_soc_dapm_input
:
920 case snd_soc_dapm_output
:
921 case snd_soc_dapm_hp
:
922 case snd_soc_dapm_mic
:
923 case snd_soc_dapm_line
:
924 case snd_soc_dapm_spk
:
925 /* No register support currently */
926 ret
= dapm_generic_apply_power(w
);
930 /* Queue it up for application */
931 cur_sort
= sort
[w
->id
];
934 list_move(&w
->power_list
, &pending
);
939 dev_err(w
->dapm
->dev
,
940 "Failed to apply widget power: %d\n", ret
);
943 if (!list_empty(&pending
))
944 dapm_seq_run_coalesced(dapm
, &pending
);
947 static void dapm_widget_update(struct snd_soc_dapm_context
*dapm
)
949 struct snd_soc_dapm_update
*update
= dapm
->update
;
950 struct snd_soc_dapm_widget
*w
;
959 (w
->event_flags
& SND_SOC_DAPM_PRE_REG
)) {
960 ret
= w
->event(w
, update
->kcontrol
, SND_SOC_DAPM_PRE_REG
);
962 pr_err("%s DAPM pre-event failed: %d\n",
966 ret
= snd_soc_update_bits(w
->codec
, update
->reg
, update
->mask
,
969 pr_err("%s DAPM update failed: %d\n", w
->name
, ret
);
972 (w
->event_flags
& SND_SOC_DAPM_POST_REG
)) {
973 ret
= w
->event(w
, update
->kcontrol
, SND_SOC_DAPM_POST_REG
);
975 pr_err("%s DAPM post-event failed: %d\n",
983 * Scan each dapm widget for complete audio path.
984 * A complete path is a route that has valid endpoints i.e.:-
986 * o DAC to output pin.
987 * o Input Pin to ADC.
988 * o Input pin to Output pin (bypass, sidetone)
989 * o DAC to ADC (loopback).
991 static int dapm_power_widgets(struct snd_soc_dapm_context
*dapm
, int event
)
993 struct snd_soc_card
*card
= dapm
->codec
->card
;
994 struct snd_soc_dapm_widget
*w
;
995 struct snd_soc_dapm_context
*d
;
997 LIST_HEAD(down_list
);
1001 trace_snd_soc_dapm_start(card
);
1003 list_for_each_entry(d
, &card
->dapm_list
, list
)
1007 /* Check which widgets we need to power and store them in
1008 * lists indicating if they should be powered up or down.
1010 list_for_each_entry(w
, &card
->widgets
, list
) {
1012 case snd_soc_dapm_pre
:
1013 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
1015 case snd_soc_dapm_post
:
1016 dapm_seq_insert(w
, &up_list
, dapm_up_seq
);
1020 if (!w
->power_check
)
1024 power
= w
->power_check(w
);
1028 w
->dapm
->dev_power
= 1;
1030 if (w
->power
== power
)
1033 trace_snd_soc_dapm_widget_power(w
, power
);
1036 dapm_seq_insert(w
, &up_list
, dapm_up_seq
);
1038 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
1045 /* If there are no DAPM widgets then try to figure out power from the
1048 if (!dapm
->n_widgets
) {
1050 case SND_SOC_DAPM_STREAM_START
:
1051 case SND_SOC_DAPM_STREAM_RESUME
:
1052 dapm
->dev_power
= 1;
1054 case SND_SOC_DAPM_STREAM_STOP
:
1055 dapm
->dev_power
= !!dapm
->codec
->active
;
1057 case SND_SOC_DAPM_STREAM_SUSPEND
:
1058 dapm
->dev_power
= 0;
1060 case SND_SOC_DAPM_STREAM_NOP
:
1061 switch (dapm
->bias_level
) {
1062 case SND_SOC_BIAS_STANDBY
:
1063 case SND_SOC_BIAS_OFF
:
1064 dapm
->dev_power
= 0;
1067 dapm
->dev_power
= 1;
1076 list_for_each_entry(d
, &dapm
->card
->dapm_list
, list
) {
1077 if (d
->dev_power
&& d
->bias_level
== SND_SOC_BIAS_OFF
) {
1078 ret
= snd_soc_dapm_set_bias_level(card
, d
,
1079 SND_SOC_BIAS_STANDBY
);
1082 "Failed to turn on bias: %d\n", ret
);
1085 /* If we're changing to all on or all off then prepare */
1086 if ((d
->dev_power
&& d
->bias_level
== SND_SOC_BIAS_STANDBY
) ||
1087 (!d
->dev_power
&& d
->bias_level
== SND_SOC_BIAS_ON
)) {
1088 ret
= snd_soc_dapm_set_bias_level(card
, d
,
1089 SND_SOC_BIAS_PREPARE
);
1092 "Failed to prepare bias: %d\n", ret
);
1096 /* Power down widgets first; try to avoid amplifying pops. */
1097 dapm_seq_run(dapm
, &down_list
, event
, dapm_down_seq
);
1099 dapm_widget_update(dapm
);
1102 dapm_seq_run(dapm
, &up_list
, event
, dapm_up_seq
);
1104 list_for_each_entry(d
, &dapm
->card
->dapm_list
, list
) {
1105 /* If we just powered the last thing off drop to standby bias */
1106 if (d
->bias_level
== SND_SOC_BIAS_PREPARE
&& !d
->dev_power
) {
1107 ret
= snd_soc_dapm_set_bias_level(card
, d
,
1108 SND_SOC_BIAS_STANDBY
);
1111 "Failed to apply standby bias: %d\n",
1115 /* If we're in standby and can support bias off then do that */
1116 if (d
->bias_level
== SND_SOC_BIAS_STANDBY
&&
1118 ret
= snd_soc_dapm_set_bias_level(card
, d
,
1122 "Failed to turn off bias: %d\n", ret
);
1125 /* If we just powered up then move to active bias */
1126 if (d
->bias_level
== SND_SOC_BIAS_PREPARE
&& d
->dev_power
) {
1127 ret
= snd_soc_dapm_set_bias_level(card
, d
,
1131 "Failed to apply active bias: %d\n",
1136 pop_dbg(dapm
->dev
, card
->pop_time
,
1137 "DAPM sequencing finished, waiting %dms\n", card
->pop_time
);
1138 pop_wait(card
->pop_time
);
1140 trace_snd_soc_dapm_done(card
);
1145 #ifdef CONFIG_DEBUG_FS
1146 static int dapm_widget_power_open_file(struct inode
*inode
, struct file
*file
)
1148 file
->private_data
= inode
->i_private
;
1152 static ssize_t
dapm_widget_power_read_file(struct file
*file
,
1153 char __user
*user_buf
,
1154 size_t count
, loff_t
*ppos
)
1156 struct snd_soc_dapm_widget
*w
= file
->private_data
;
1160 struct snd_soc_dapm_path
*p
= NULL
;
1162 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
1166 in
= is_connected_input_ep(w
);
1167 dapm_clear_walk(w
->dapm
);
1168 out
= is_connected_output_ep(w
);
1169 dapm_clear_walk(w
->dapm
);
1171 ret
= snprintf(buf
, PAGE_SIZE
, "%s: %s in %d out %d",
1172 w
->name
, w
->power
? "On" : "Off", in
, out
);
1175 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1176 " - R%d(0x%x) bit %d",
1177 w
->reg
, w
->reg
, w
->shift
);
1179 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "\n");
1182 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, " stream %s %s\n",
1184 w
->active
? "active" : "inactive");
1186 list_for_each_entry(p
, &w
->sources
, list_sink
) {
1187 if (p
->connected
&& !p
->connected(w
, p
->sink
))
1191 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1193 p
->name
? p
->name
: "static",
1196 list_for_each_entry(p
, &w
->sinks
, list_source
) {
1197 if (p
->connected
&& !p
->connected(w
, p
->sink
))
1201 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1203 p
->name
? p
->name
: "static",
1207 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
1213 static const struct file_operations dapm_widget_power_fops
= {
1214 .open
= dapm_widget_power_open_file
,
1215 .read
= dapm_widget_power_read_file
,
1216 .llseek
= default_llseek
,
1219 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context
*dapm
)
1221 struct snd_soc_dapm_widget
*w
;
1224 if (!dapm
->debugfs_dapm
)
1227 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
1228 if (!w
->name
|| w
->dapm
!= dapm
)
1231 d
= debugfs_create_file(w
->name
, 0444,
1232 dapm
->debugfs_dapm
, w
,
1233 &dapm_widget_power_fops
);
1235 dev_warn(w
->dapm
->dev
,
1236 "ASoC: Failed to create %s debugfs file\n",
1241 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context
*dapm
)
1246 /* test and update the power status of a mux widget */
1247 static int dapm_mux_update_power(struct snd_soc_dapm_widget
*widget
,
1248 struct snd_kcontrol
*kcontrol
, int change
,
1249 int mux
, struct soc_enum
*e
)
1251 struct snd_soc_dapm_path
*path
;
1254 if (widget
->id
!= snd_soc_dapm_mux
&&
1255 widget
->id
!= snd_soc_dapm_virt_mux
&&
1256 widget
->id
!= snd_soc_dapm_value_mux
)
1262 /* find dapm widget path assoc with kcontrol */
1263 list_for_each_entry(path
, &widget
->dapm
->card
->paths
, list
) {
1264 if (path
->kcontrol
!= kcontrol
)
1267 if (!path
->name
|| !e
->texts
[mux
])
1271 /* we now need to match the string in the enum to the path */
1272 if (!(strcmp(path
->name
, e
->texts
[mux
])))
1273 path
->connect
= 1; /* new connection */
1275 path
->connect
= 0; /* old connection must be powered down */
1279 dapm_power_widgets(widget
->dapm
, SND_SOC_DAPM_STREAM_NOP
);
1284 /* test and update the power status of a mixer or switch widget */
1285 static int dapm_mixer_update_power(struct snd_soc_dapm_widget
*widget
,
1286 struct snd_kcontrol
*kcontrol
, int connect
)
1288 struct snd_soc_dapm_path
*path
;
1291 if (widget
->id
!= snd_soc_dapm_mixer
&&
1292 widget
->id
!= snd_soc_dapm_mixer_named_ctl
&&
1293 widget
->id
!= snd_soc_dapm_switch
)
1296 /* find dapm widget path assoc with kcontrol */
1297 list_for_each_entry(path
, &widget
->dapm
->card
->paths
, list
) {
1298 if (path
->kcontrol
!= kcontrol
)
1301 /* found, now check type */
1303 path
->connect
= connect
;
1308 dapm_power_widgets(widget
->dapm
, SND_SOC_DAPM_STREAM_NOP
);
1313 /* show dapm widget status in sys fs */
1314 static ssize_t
dapm_widget_show(struct device
*dev
,
1315 struct device_attribute
*attr
, char *buf
)
1317 struct snd_soc_pcm_runtime
*rtd
=
1318 container_of(dev
, struct snd_soc_pcm_runtime
, dev
);
1319 struct snd_soc_codec
*codec
=rtd
->codec
;
1320 struct snd_soc_dapm_widget
*w
;
1322 char *state
= "not set";
1324 list_for_each_entry(w
, &codec
->card
->widgets
, list
) {
1325 if (w
->dapm
!= &codec
->dapm
)
1328 /* only display widgets that burnm power */
1330 case snd_soc_dapm_hp
:
1331 case snd_soc_dapm_mic
:
1332 case snd_soc_dapm_spk
:
1333 case snd_soc_dapm_line
:
1334 case snd_soc_dapm_micbias
:
1335 case snd_soc_dapm_dac
:
1336 case snd_soc_dapm_adc
:
1337 case snd_soc_dapm_pga
:
1338 case snd_soc_dapm_out_drv
:
1339 case snd_soc_dapm_mixer
:
1340 case snd_soc_dapm_mixer_named_ctl
:
1341 case snd_soc_dapm_supply
:
1343 count
+= sprintf(buf
+ count
, "%s: %s\n",
1344 w
->name
, w
->power
? "On":"Off");
1351 switch (codec
->dapm
.bias_level
) {
1352 case SND_SOC_BIAS_ON
:
1355 case SND_SOC_BIAS_PREPARE
:
1358 case SND_SOC_BIAS_STANDBY
:
1361 case SND_SOC_BIAS_OFF
:
1365 count
+= sprintf(buf
+ count
, "PM State: %s\n", state
);
1370 static DEVICE_ATTR(dapm_widget
, 0444, dapm_widget_show
, NULL
);
1372 int snd_soc_dapm_sys_add(struct device
*dev
)
1374 return device_create_file(dev
, &dev_attr_dapm_widget
);
1377 static void snd_soc_dapm_sys_remove(struct device
*dev
)
1379 device_remove_file(dev
, &dev_attr_dapm_widget
);
1382 /* free all dapm widgets and resources */
1383 static void dapm_free_widgets(struct snd_soc_dapm_context
*dapm
)
1385 struct snd_soc_dapm_widget
*w
, *next_w
;
1386 struct snd_soc_dapm_path
*p
, *next_p
;
1388 list_for_each_entry_safe(w
, next_w
, &dapm
->card
->widgets
, list
) {
1389 if (w
->dapm
!= dapm
)
1393 * remove source and sink paths associated to this widget.
1394 * While removing the path, remove reference to it from both
1395 * source and sink widgets so that path is removed only once.
1397 list_for_each_entry_safe(p
, next_p
, &w
->sources
, list_sink
) {
1398 list_del(&p
->list_sink
);
1399 list_del(&p
->list_source
);
1401 kfree(p
->long_name
);
1404 list_for_each_entry_safe(p
, next_p
, &w
->sinks
, list_source
) {
1405 list_del(&p
->list_sink
);
1406 list_del(&p
->list_source
);
1408 kfree(p
->long_name
);
1416 static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context
*dapm
,
1417 const char *pin
, int status
)
1419 struct snd_soc_dapm_widget
*w
;
1421 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
1422 if (w
->dapm
!= dapm
)
1424 if (!strcmp(w
->name
, pin
)) {
1425 dev_dbg(w
->dapm
->dev
, "dapm: pin %s = %d\n",
1427 w
->connected
= status
;
1428 /* Allow disabling of forced pins */
1435 dev_err(dapm
->dev
, "dapm: unknown pin %s\n", pin
);
1440 * snd_soc_dapm_sync - scan and power dapm paths
1441 * @dapm: DAPM context
1443 * Walks all dapm audio paths and powers widgets according to their
1444 * stream or path usage.
1446 * Returns 0 for success.
1448 int snd_soc_dapm_sync(struct snd_soc_dapm_context
*dapm
)
1450 return dapm_power_widgets(dapm
, SND_SOC_DAPM_STREAM_NOP
);
1452 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync
);
1454 static int snd_soc_dapm_add_route(struct snd_soc_dapm_context
*dapm
,
1455 const struct snd_soc_dapm_route
*route
)
1457 struct snd_soc_dapm_path
*path
;
1458 struct snd_soc_dapm_widget
*wsource
= NULL
, *wsink
= NULL
, *w
;
1459 struct snd_soc_dapm_widget
*wtsource
= NULL
, *wtsink
= NULL
;
1461 const char *control
= route
->control
;
1463 char prefixed_sink
[80];
1464 char prefixed_source
[80];
1467 if (dapm
->codec
->name_prefix
) {
1468 snprintf(prefixed_sink
, sizeof(prefixed_sink
), "%s %s",
1469 dapm
->codec
->name_prefix
, route
->sink
);
1470 sink
= prefixed_sink
;
1471 snprintf(prefixed_source
, sizeof(prefixed_source
), "%s %s",
1472 dapm
->codec
->name_prefix
, route
->source
);
1473 source
= prefixed_source
;
1476 source
= route
->source
;
1480 * find src and dest widgets over all widgets but favor a widget from
1481 * current DAPM context
1483 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
1484 if (!wsink
&& !(strcmp(w
->name
, sink
))) {
1486 if (w
->dapm
== dapm
)
1490 if (!wsource
&& !(strcmp(w
->name
, source
))) {
1492 if (w
->dapm
== dapm
)
1496 /* use widget from another DAPM context if not found from this */
1502 if (wsource
== NULL
|| wsink
== NULL
)
1505 path
= kzalloc(sizeof(struct snd_soc_dapm_path
), GFP_KERNEL
);
1509 path
->source
= wsource
;
1511 path
->connected
= route
->connected
;
1512 INIT_LIST_HEAD(&path
->list
);
1513 INIT_LIST_HEAD(&path
->list_source
);
1514 INIT_LIST_HEAD(&path
->list_sink
);
1516 /* check for external widgets */
1517 if (wsink
->id
== snd_soc_dapm_input
) {
1518 if (wsource
->id
== snd_soc_dapm_micbias
||
1519 wsource
->id
== snd_soc_dapm_mic
||
1520 wsource
->id
== snd_soc_dapm_line
||
1521 wsource
->id
== snd_soc_dapm_output
)
1524 if (wsource
->id
== snd_soc_dapm_output
) {
1525 if (wsink
->id
== snd_soc_dapm_spk
||
1526 wsink
->id
== snd_soc_dapm_hp
||
1527 wsink
->id
== snd_soc_dapm_line
||
1528 wsink
->id
== snd_soc_dapm_input
)
1532 /* connect static paths */
1533 if (control
== NULL
) {
1534 list_add(&path
->list
, &dapm
->card
->paths
);
1535 list_add(&path
->list_sink
, &wsink
->sources
);
1536 list_add(&path
->list_source
, &wsource
->sinks
);
1541 /* connect dynamic paths */
1543 case snd_soc_dapm_adc
:
1544 case snd_soc_dapm_dac
:
1545 case snd_soc_dapm_pga
:
1546 case snd_soc_dapm_out_drv
:
1547 case snd_soc_dapm_input
:
1548 case snd_soc_dapm_output
:
1549 case snd_soc_dapm_micbias
:
1550 case snd_soc_dapm_vmid
:
1551 case snd_soc_dapm_pre
:
1552 case snd_soc_dapm_post
:
1553 case snd_soc_dapm_supply
:
1554 case snd_soc_dapm_aif_in
:
1555 case snd_soc_dapm_aif_out
:
1556 list_add(&path
->list
, &dapm
->card
->paths
);
1557 list_add(&path
->list_sink
, &wsink
->sources
);
1558 list_add(&path
->list_source
, &wsource
->sinks
);
1561 case snd_soc_dapm_mux
:
1562 case snd_soc_dapm_virt_mux
:
1563 case snd_soc_dapm_value_mux
:
1564 ret
= dapm_connect_mux(dapm
, wsource
, wsink
, path
, control
,
1565 &wsink
->kcontrols
[0]);
1569 case snd_soc_dapm_switch
:
1570 case snd_soc_dapm_mixer
:
1571 case snd_soc_dapm_mixer_named_ctl
:
1572 ret
= dapm_connect_mixer(dapm
, wsource
, wsink
, path
, control
);
1576 case snd_soc_dapm_hp
:
1577 case snd_soc_dapm_mic
:
1578 case snd_soc_dapm_line
:
1579 case snd_soc_dapm_spk
:
1580 list_add(&path
->list
, &dapm
->card
->paths
);
1581 list_add(&path
->list_sink
, &wsink
->sources
);
1582 list_add(&path
->list_source
, &wsource
->sinks
);
1589 dev_warn(dapm
->dev
, "asoc: no dapm match for %s --> %s --> %s\n",
1590 source
, control
, sink
);
1596 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
1597 * @dapm: DAPM context
1598 * @route: audio routes
1599 * @num: number of routes
1601 * Connects 2 dapm widgets together via a named audio path. The sink is
1602 * the widget receiving the audio signal, whilst the source is the sender
1603 * of the audio signal.
1605 * Returns 0 for success else error. On error all resources can be freed
1606 * with a call to snd_soc_card_free().
1608 int snd_soc_dapm_add_routes(struct snd_soc_dapm_context
*dapm
,
1609 const struct snd_soc_dapm_route
*route
, int num
)
1613 for (i
= 0; i
< num
; i
++) {
1614 ret
= snd_soc_dapm_add_route(dapm
, route
);
1616 dev_err(dapm
->dev
, "Failed to add route %s->%s\n",
1617 route
->source
, route
->sink
);
1625 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes
);
1628 * snd_soc_dapm_new_widgets - add new dapm widgets
1629 * @dapm: DAPM context
1631 * Checks the codec for any new dapm widgets and creates them if found.
1633 * Returns 0 for success.
1635 int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context
*dapm
)
1637 struct snd_soc_dapm_widget
*w
;
1640 list_for_each_entry(w
, &dapm
->card
->widgets
, list
)
1646 case snd_soc_dapm_switch
:
1647 case snd_soc_dapm_mixer
:
1648 case snd_soc_dapm_mixer_named_ctl
:
1649 w
->power_check
= dapm_generic_check_power
;
1650 dapm_new_mixer(dapm
, w
);
1652 case snd_soc_dapm_mux
:
1653 case snd_soc_dapm_virt_mux
:
1654 case snd_soc_dapm_value_mux
:
1655 w
->power_check
= dapm_generic_check_power
;
1656 dapm_new_mux(dapm
, w
);
1658 case snd_soc_dapm_adc
:
1659 case snd_soc_dapm_aif_out
:
1660 w
->power_check
= dapm_adc_check_power
;
1662 case snd_soc_dapm_dac
:
1663 case snd_soc_dapm_aif_in
:
1664 w
->power_check
= dapm_dac_check_power
;
1666 case snd_soc_dapm_pga
:
1667 case snd_soc_dapm_out_drv
:
1668 w
->power_check
= dapm_generic_check_power
;
1669 dapm_new_pga(dapm
, w
);
1671 case snd_soc_dapm_input
:
1672 case snd_soc_dapm_output
:
1673 case snd_soc_dapm_micbias
:
1674 case snd_soc_dapm_spk
:
1675 case snd_soc_dapm_hp
:
1676 case snd_soc_dapm_mic
:
1677 case snd_soc_dapm_line
:
1678 w
->power_check
= dapm_generic_check_power
;
1680 case snd_soc_dapm_supply
:
1681 w
->power_check
= dapm_supply_check_power
;
1682 case snd_soc_dapm_vmid
:
1683 case snd_soc_dapm_pre
:
1684 case snd_soc_dapm_post
:
1688 /* Read the initial power state from the device */
1690 val
= snd_soc_read(w
->codec
, w
->reg
);
1691 val
&= 1 << w
->shift
;
1702 dapm_power_widgets(dapm
, SND_SOC_DAPM_STREAM_NOP
);
1705 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets
);
1708 * snd_soc_dapm_get_volsw - dapm mixer get callback
1709 * @kcontrol: mixer control
1710 * @ucontrol: control element information
1712 * Callback to get the value of a dapm mixer control.
1714 * Returns 0 for success.
1716 int snd_soc_dapm_get_volsw(struct snd_kcontrol
*kcontrol
,
1717 struct snd_ctl_elem_value
*ucontrol
)
1719 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1720 struct soc_mixer_control
*mc
=
1721 (struct soc_mixer_control
*)kcontrol
->private_value
;
1722 unsigned int reg
= mc
->reg
;
1723 unsigned int shift
= mc
->shift
;
1724 unsigned int rshift
= mc
->rshift
;
1726 unsigned int invert
= mc
->invert
;
1727 unsigned int mask
= (1 << fls(max
)) - 1;
1729 ucontrol
->value
.integer
.value
[0] =
1730 (snd_soc_read(widget
->codec
, reg
) >> shift
) & mask
;
1731 if (shift
!= rshift
)
1732 ucontrol
->value
.integer
.value
[1] =
1733 (snd_soc_read(widget
->codec
, reg
) >> rshift
) & mask
;
1735 ucontrol
->value
.integer
.value
[0] =
1736 max
- ucontrol
->value
.integer
.value
[0];
1737 if (shift
!= rshift
)
1738 ucontrol
->value
.integer
.value
[1] =
1739 max
- ucontrol
->value
.integer
.value
[1];
1744 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw
);
1747 * snd_soc_dapm_put_volsw - dapm mixer set callback
1748 * @kcontrol: mixer control
1749 * @ucontrol: control element information
1751 * Callback to set the value of a dapm mixer control.
1753 * Returns 0 for success.
1755 int snd_soc_dapm_put_volsw(struct snd_kcontrol
*kcontrol
,
1756 struct snd_ctl_elem_value
*ucontrol
)
1758 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1759 struct soc_mixer_control
*mc
=
1760 (struct soc_mixer_control
*)kcontrol
->private_value
;
1761 unsigned int reg
= mc
->reg
;
1762 unsigned int shift
= mc
->shift
;
1764 unsigned int mask
= (1 << fls(max
)) - 1;
1765 unsigned int invert
= mc
->invert
;
1767 int connect
, change
;
1768 struct snd_soc_dapm_update update
;
1770 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1774 mask
= mask
<< shift
;
1777 mutex_lock(&widget
->codec
->mutex
);
1778 widget
->value
= val
;
1780 change
= snd_soc_test_bits(widget
->codec
, reg
, mask
, val
);
1783 /* new connection */
1784 connect
= invert
? 0:1;
1786 /* old connection must be powered down */
1787 connect
= invert
? 1:0;
1789 update
.kcontrol
= kcontrol
;
1790 update
.widget
= widget
;
1794 widget
->dapm
->update
= &update
;
1796 dapm_mixer_update_power(widget
, kcontrol
, connect
);
1798 widget
->dapm
->update
= NULL
;
1801 mutex_unlock(&widget
->codec
->mutex
);
1804 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw
);
1807 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
1808 * @kcontrol: mixer control
1809 * @ucontrol: control element information
1811 * Callback to get the value of a dapm enumerated double mixer control.
1813 * Returns 0 for success.
1815 int snd_soc_dapm_get_enum_double(struct snd_kcontrol
*kcontrol
,
1816 struct snd_ctl_elem_value
*ucontrol
)
1818 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1819 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1820 unsigned int val
, bitmask
;
1822 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
1824 val
= snd_soc_read(widget
->codec
, e
->reg
);
1825 ucontrol
->value
.enumerated
.item
[0] = (val
>> e
->shift_l
) & (bitmask
- 1);
1826 if (e
->shift_l
!= e
->shift_r
)
1827 ucontrol
->value
.enumerated
.item
[1] =
1828 (val
>> e
->shift_r
) & (bitmask
- 1);
1832 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double
);
1835 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
1836 * @kcontrol: mixer control
1837 * @ucontrol: control element information
1839 * Callback to set the value of a dapm enumerated double mixer control.
1841 * Returns 0 for success.
1843 int snd_soc_dapm_put_enum_double(struct snd_kcontrol
*kcontrol
,
1844 struct snd_ctl_elem_value
*ucontrol
)
1846 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1847 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1848 unsigned int val
, mux
, change
;
1849 unsigned int mask
, bitmask
;
1850 struct snd_soc_dapm_update update
;
1852 for (bitmask
= 1; bitmask
< e
->max
; bitmask
<<= 1)
1854 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
1856 mux
= ucontrol
->value
.enumerated
.item
[0];
1857 val
= mux
<< e
->shift_l
;
1858 mask
= (bitmask
- 1) << e
->shift_l
;
1859 if (e
->shift_l
!= e
->shift_r
) {
1860 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
1862 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
1863 mask
|= (bitmask
- 1) << e
->shift_r
;
1866 mutex_lock(&widget
->codec
->mutex
);
1867 widget
->value
= val
;
1868 change
= snd_soc_test_bits(widget
->codec
, e
->reg
, mask
, val
);
1870 update
.kcontrol
= kcontrol
;
1871 update
.widget
= widget
;
1872 update
.reg
= e
->reg
;
1875 widget
->dapm
->update
= &update
;
1877 dapm_mux_update_power(widget
, kcontrol
, change
, mux
, e
);
1879 widget
->dapm
->update
= NULL
;
1881 mutex_unlock(&widget
->codec
->mutex
);
1884 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double
);
1887 * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux
1888 * @kcontrol: mixer control
1889 * @ucontrol: control element information
1891 * Returns 0 for success.
1893 int snd_soc_dapm_get_enum_virt(struct snd_kcontrol
*kcontrol
,
1894 struct snd_ctl_elem_value
*ucontrol
)
1896 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1898 ucontrol
->value
.enumerated
.item
[0] = widget
->value
;
1902 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt
);
1905 * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux
1906 * @kcontrol: mixer control
1907 * @ucontrol: control element information
1909 * Returns 0 for success.
1911 int snd_soc_dapm_put_enum_virt(struct snd_kcontrol
*kcontrol
,
1912 struct snd_ctl_elem_value
*ucontrol
)
1914 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1915 struct soc_enum
*e
=
1916 (struct soc_enum
*)kcontrol
->private_value
;
1920 if (ucontrol
->value
.enumerated
.item
[0] >= e
->max
)
1923 mutex_lock(&widget
->codec
->mutex
);
1925 change
= widget
->value
!= ucontrol
->value
.enumerated
.item
[0];
1926 widget
->value
= ucontrol
->value
.enumerated
.item
[0];
1927 dapm_mux_update_power(widget
, kcontrol
, change
, widget
->value
, e
);
1929 mutex_unlock(&widget
->codec
->mutex
);
1932 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt
);
1935 * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
1937 * @kcontrol: mixer control
1938 * @ucontrol: control element information
1940 * Callback to get the value of a dapm semi enumerated double mixer control.
1942 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1943 * used for handling bitfield coded enumeration for example.
1945 * Returns 0 for success.
1947 int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol
*kcontrol
,
1948 struct snd_ctl_elem_value
*ucontrol
)
1950 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1951 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1952 unsigned int reg_val
, val
, mux
;
1954 reg_val
= snd_soc_read(widget
->codec
, e
->reg
);
1955 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
1956 for (mux
= 0; mux
< e
->max
; mux
++) {
1957 if (val
== e
->values
[mux
])
1960 ucontrol
->value
.enumerated
.item
[0] = mux
;
1961 if (e
->shift_l
!= e
->shift_r
) {
1962 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
1963 for (mux
= 0; mux
< e
->max
; mux
++) {
1964 if (val
== e
->values
[mux
])
1967 ucontrol
->value
.enumerated
.item
[1] = mux
;
1972 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double
);
1975 * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
1977 * @kcontrol: mixer control
1978 * @ucontrol: control element information
1980 * Callback to set the value of a dapm semi enumerated double mixer control.
1982 * Semi enumerated mixer: the enumerated items are referred as values. Can be
1983 * used for handling bitfield coded enumeration for example.
1985 * Returns 0 for success.
1987 int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol
*kcontrol
,
1988 struct snd_ctl_elem_value
*ucontrol
)
1990 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1991 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1992 unsigned int val
, mux
, change
;
1994 struct snd_soc_dapm_update update
;
1996 if (ucontrol
->value
.enumerated
.item
[0] > e
->max
- 1)
1998 mux
= ucontrol
->value
.enumerated
.item
[0];
1999 val
= e
->values
[ucontrol
->value
.enumerated
.item
[0]] << e
->shift_l
;
2000 mask
= e
->mask
<< e
->shift_l
;
2001 if (e
->shift_l
!= e
->shift_r
) {
2002 if (ucontrol
->value
.enumerated
.item
[1] > e
->max
- 1)
2004 val
|= e
->values
[ucontrol
->value
.enumerated
.item
[1]] << e
->shift_r
;
2005 mask
|= e
->mask
<< e
->shift_r
;
2008 mutex_lock(&widget
->codec
->mutex
);
2009 widget
->value
= val
;
2010 change
= snd_soc_test_bits(widget
->codec
, e
->reg
, mask
, val
);
2012 update
.kcontrol
= kcontrol
;
2013 update
.widget
= widget
;
2014 update
.reg
= e
->reg
;
2017 widget
->dapm
->update
= &update
;
2019 dapm_mux_update_power(widget
, kcontrol
, change
, mux
, e
);
2021 widget
->dapm
->update
= NULL
;
2023 mutex_unlock(&widget
->codec
->mutex
);
2026 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double
);
2029 * snd_soc_dapm_info_pin_switch - Info for a pin switch
2031 * @kcontrol: mixer control
2032 * @uinfo: control element information
2034 * Callback to provide information about a pin switch control.
2036 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol
*kcontrol
,
2037 struct snd_ctl_elem_info
*uinfo
)
2039 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2041 uinfo
->value
.integer
.min
= 0;
2042 uinfo
->value
.integer
.max
= 1;
2046 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch
);
2049 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
2051 * @kcontrol: mixer control
2054 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol
*kcontrol
,
2055 struct snd_ctl_elem_value
*ucontrol
)
2057 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2058 const char *pin
= (const char *)kcontrol
->private_value
;
2060 mutex_lock(&codec
->mutex
);
2062 ucontrol
->value
.integer
.value
[0] =
2063 snd_soc_dapm_get_pin_status(&codec
->dapm
, pin
);
2065 mutex_unlock(&codec
->mutex
);
2069 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch
);
2072 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
2074 * @kcontrol: mixer control
2077 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol
*kcontrol
,
2078 struct snd_ctl_elem_value
*ucontrol
)
2080 struct snd_soc_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2081 const char *pin
= (const char *)kcontrol
->private_value
;
2083 mutex_lock(&codec
->mutex
);
2085 if (ucontrol
->value
.integer
.value
[0])
2086 snd_soc_dapm_enable_pin(&codec
->dapm
, pin
);
2088 snd_soc_dapm_disable_pin(&codec
->dapm
, pin
);
2090 snd_soc_dapm_sync(&codec
->dapm
);
2092 mutex_unlock(&codec
->mutex
);
2096 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch
);
2099 * snd_soc_dapm_new_control - create new dapm control
2100 * @dapm: DAPM context
2101 * @widget: widget template
2103 * Creates a new dapm control based upon the template.
2105 * Returns 0 for success else error.
2107 int snd_soc_dapm_new_control(struct snd_soc_dapm_context
*dapm
,
2108 const struct snd_soc_dapm_widget
*widget
)
2110 struct snd_soc_dapm_widget
*w
;
2113 if ((w
= dapm_cnew_widget(widget
)) == NULL
)
2116 name_len
= strlen(widget
->name
) + 1;
2117 if (dapm
->codec
->name_prefix
)
2118 name_len
+= 1 + strlen(dapm
->codec
->name_prefix
);
2119 w
->name
= kmalloc(name_len
, GFP_KERNEL
);
2120 if (w
->name
== NULL
) {
2124 if (dapm
->codec
->name_prefix
)
2125 snprintf(w
->name
, name_len
, "%s %s",
2126 dapm
->codec
->name_prefix
, widget
->name
);
2128 snprintf(w
->name
, name_len
, "%s", widget
->name
);
2132 w
->codec
= dapm
->codec
;
2133 INIT_LIST_HEAD(&w
->sources
);
2134 INIT_LIST_HEAD(&w
->sinks
);
2135 INIT_LIST_HEAD(&w
->list
);
2136 list_add(&w
->list
, &dapm
->card
->widgets
);
2138 /* machine layer set ups unconnected pins and insertions */
2142 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control
);
2145 * snd_soc_dapm_new_controls - create new dapm controls
2146 * @dapm: DAPM context
2147 * @widget: widget array
2148 * @num: number of widgets
2150 * Creates new DAPM controls based upon the templates.
2152 * Returns 0 for success else error.
2154 int snd_soc_dapm_new_controls(struct snd_soc_dapm_context
*dapm
,
2155 const struct snd_soc_dapm_widget
*widget
,
2160 for (i
= 0; i
< num
; i
++) {
2161 ret
= snd_soc_dapm_new_control(dapm
, widget
);
2164 "ASoC: Failed to create DAPM control %s: %d\n",
2172 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls
);
2174 static void soc_dapm_stream_event(struct snd_soc_dapm_context
*dapm
,
2175 const char *stream
, int event
)
2177 struct snd_soc_dapm_widget
*w
;
2179 list_for_each_entry(w
, &dapm
->card
->widgets
, list
)
2181 if (!w
->sname
|| w
->dapm
!= dapm
)
2183 dev_dbg(w
->dapm
->dev
, "widget %s\n %s stream %s event %d\n",
2184 w
->name
, w
->sname
, stream
, event
);
2185 if (strstr(w
->sname
, stream
)) {
2187 case SND_SOC_DAPM_STREAM_START
:
2190 case SND_SOC_DAPM_STREAM_STOP
:
2193 case SND_SOC_DAPM_STREAM_SUSPEND
:
2194 case SND_SOC_DAPM_STREAM_RESUME
:
2195 case SND_SOC_DAPM_STREAM_PAUSE_PUSH
:
2196 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE
:
2202 dapm_power_widgets(dapm
, event
);
2206 * snd_soc_dapm_stream_event - send a stream event to the dapm core
2207 * @rtd: PCM runtime data
2208 * @stream: stream name
2209 * @event: stream event
2211 * Sends a stream event to the dapm core. The core then makes any
2212 * necessary widget power changes.
2214 * Returns 0 for success else error.
2216 int snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime
*rtd
,
2217 const char *stream
, int event
)
2219 struct snd_soc_codec
*codec
= rtd
->codec
;
2224 mutex_lock(&codec
->mutex
);
2225 soc_dapm_stream_event(&codec
->dapm
, stream
, event
);
2226 mutex_unlock(&codec
->mutex
);
2229 EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_event
);
2232 * snd_soc_dapm_enable_pin - enable pin.
2233 * @dapm: DAPM context
2236 * Enables input/output pin and its parents or children widgets iff there is
2237 * a valid audio route and active audio stream.
2238 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2239 * do any widget power switching.
2241 int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context
*dapm
, const char *pin
)
2243 return snd_soc_dapm_set_pin(dapm
, pin
, 1);
2245 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin
);
2248 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
2249 * @dapm: DAPM context
2252 * Enables input/output pin regardless of any other state. This is
2253 * intended for use with microphone bias supplies used in microphone
2256 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2257 * do any widget power switching.
2259 int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context
*dapm
,
2262 struct snd_soc_dapm_widget
*w
;
2264 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
2265 if (w
->dapm
!= dapm
)
2267 if (!strcmp(w
->name
, pin
)) {
2268 dev_dbg(w
->dapm
->dev
,
2269 "dapm: force enable pin %s\n", pin
);
2276 dev_err(dapm
->dev
, "dapm: unknown pin %s\n", pin
);
2279 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin
);
2282 * snd_soc_dapm_disable_pin - disable pin.
2283 * @dapm: DAPM context
2286 * Disables input/output pin and its parents or children widgets.
2287 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2288 * do any widget power switching.
2290 int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context
*dapm
,
2293 return snd_soc_dapm_set_pin(dapm
, pin
, 0);
2295 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin
);
2298 * snd_soc_dapm_nc_pin - permanently disable pin.
2299 * @dapm: DAPM context
2302 * Marks the specified pin as being not connected, disabling it along
2303 * any parent or child widgets. At present this is identical to
2304 * snd_soc_dapm_disable_pin() but in future it will be extended to do
2305 * additional things such as disabling controls which only affect
2306 * paths through the pin.
2308 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
2309 * do any widget power switching.
2311 int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context
*dapm
, const char *pin
)
2313 return snd_soc_dapm_set_pin(dapm
, pin
, 0);
2315 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin
);
2318 * snd_soc_dapm_get_pin_status - get audio pin status
2319 * @dapm: DAPM context
2320 * @pin: audio signal pin endpoint (or start point)
2322 * Get audio pin status - connected or disconnected.
2324 * Returns 1 for connected otherwise 0.
2326 int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context
*dapm
,
2329 struct snd_soc_dapm_widget
*w
;
2331 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
2332 if (w
->dapm
!= dapm
)
2334 if (!strcmp(w
->name
, pin
))
2335 return w
->connected
;
2340 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status
);
2343 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
2344 * @dapm: DAPM context
2345 * @pin: audio signal pin endpoint (or start point)
2347 * Mark the given endpoint or pin as ignoring suspend. When the
2348 * system is disabled a path between two endpoints flagged as ignoring
2349 * suspend will not be disabled. The path must already be enabled via
2350 * normal means at suspend time, it will not be turned on if it was not
2353 int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context
*dapm
,
2356 struct snd_soc_dapm_widget
*w
;
2358 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
2359 if (w
->dapm
!= dapm
)
2361 if (!strcmp(w
->name
, pin
)) {
2362 w
->ignore_suspend
= 1;
2367 dev_err(dapm
->dev
, "dapm: unknown pin %s\n", pin
);
2370 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend
);
2373 * snd_soc_dapm_free - free dapm resources
2376 * Free all dapm widgets and resources.
2378 void snd_soc_dapm_free(struct snd_soc_dapm_context
*dapm
)
2380 snd_soc_dapm_sys_remove(dapm
->dev
);
2381 dapm_free_widgets(dapm
);
2382 list_del(&dapm
->list
);
2384 EXPORT_SYMBOL_GPL(snd_soc_dapm_free
);
2386 static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context
*dapm
)
2388 struct snd_soc_dapm_widget
*w
;
2389 LIST_HEAD(down_list
);
2392 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
2393 if (w
->dapm
!= dapm
)
2396 dapm_seq_insert(w
, &down_list
, dapm_down_seq
);
2402 /* If there were no widgets to power down we're already in
2406 snd_soc_dapm_set_bias_level(NULL
, dapm
, SND_SOC_BIAS_PREPARE
);
2407 dapm_seq_run(dapm
, &down_list
, 0, dapm_down_seq
);
2408 snd_soc_dapm_set_bias_level(NULL
, dapm
, SND_SOC_BIAS_STANDBY
);
2413 * snd_soc_dapm_shutdown - callback for system shutdown
2415 void snd_soc_dapm_shutdown(struct snd_soc_card
*card
)
2417 struct snd_soc_codec
*codec
;
2419 list_for_each_entry(codec
, &card
->codec_dev_list
, list
) {
2420 soc_dapm_shutdown_codec(&codec
->dapm
);
2421 snd_soc_dapm_set_bias_level(card
, &codec
->dapm
, SND_SOC_BIAS_OFF
);
2425 /* Module information */
2426 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
2427 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
2428 MODULE_LICENSE("GPL");