2 * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Author: Liam Girdwood
6 * liam.girdwood@wolfsonmicro.com or linux@wolfsonmicro.com
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 * 12th Aug 2005 Initial version.
15 * 25th Oct 2005 Implemented path power domain.
16 * 18th Dec 2005 Implemented machine and stream level power domain.
19 * o Changes power status of internal codec blocks depending on the
20 * dynamic configuration of codec internal audio paths and active
22 * o Platform power domain - can support external components i.e. amps and
23 * mic/meadphone insertion events.
24 * o Automatic Mic Bias support
25 * o Jack insertion power event initiation - e.g. hp insertion will enable
27 * o Delayed powerdown of audio susbsytem to reduce pops between a quick
31 * o DAPM power change sequencing - allow for configurable per
33 * o Support for analogue bias optimisation.
34 * o Support for reduced codec oversampling rates.
35 * o Support for reduced codec bias currents.
38 #include <linux/module.h>
39 #include <linux/moduleparam.h>
40 #include <linux/init.h>
41 #include <linux/delay.h>
43 #include <linux/bitops.h>
44 #include <linux/platform_device.h>
45 #include <linux/jiffies.h>
46 #include <sound/driver.h>
47 #include <sound/core.h>
48 #include <sound/pcm.h>
49 #include <sound/pcm_params.h>
50 #include <sound/soc-dapm.h>
51 #include <sound/initval.h>
56 #define dump_dapm(codec, action) dbg_dump_dapm(codec, action)
57 #define dbg(format, arg...) printk(format, ## arg)
59 #define dump_dapm(codec, action)
60 #define dbg(format, arg...)
65 #define POP_TIME 500 /* 500 msecs - change if pop debug is too fast */
66 #define pop_wait(time) schedule_timeout_interruptible(msecs_to_jiffies(time))
67 #define pop_dbg(format, arg...) printk(format, ## arg); pop_wait(POP_TIME)
69 #define pop_dbg(format, arg...)
70 #define pop_wait(time)
73 /* dapm power sequences - make this per codec in the future */
74 static int dapm_up_seq
[] = {
75 snd_soc_dapm_pre
, snd_soc_dapm_micbias
, snd_soc_dapm_mic
,
76 snd_soc_dapm_mux
, snd_soc_dapm_dac
, snd_soc_dapm_mixer
, snd_soc_dapm_pga
,
77 snd_soc_dapm_adc
, snd_soc_dapm_hp
, snd_soc_dapm_spk
, snd_soc_dapm_post
79 static int dapm_down_seq
[] = {
80 snd_soc_dapm_pre
, snd_soc_dapm_adc
, snd_soc_dapm_hp
, snd_soc_dapm_spk
,
81 snd_soc_dapm_pga
, snd_soc_dapm_mixer
, snd_soc_dapm_dac
, snd_soc_dapm_mic
,
82 snd_soc_dapm_micbias
, snd_soc_dapm_mux
, snd_soc_dapm_post
85 static int dapm_status
= 1;
86 module_param(dapm_status
, int, 0);
87 MODULE_PARM_DESC(dapm_status
, "enable DPM sysfs entries");
89 /* create a new dapm widget */
90 static inline struct snd_soc_dapm_widget
*dapm_cnew_widget(
91 const struct snd_soc_dapm_widget
*_widget
)
93 return kmemdup(_widget
, sizeof(*_widget
), GFP_KERNEL
);
96 /* set up initial codec paths */
97 static void dapm_set_path_status(struct snd_soc_dapm_widget
*w
,
98 struct snd_soc_dapm_path
*p
, int i
)
101 case snd_soc_dapm_switch
:
102 case snd_soc_dapm_mixer
: {
104 int reg
= w
->kcontrols
[i
].private_value
& 0xff;
105 int shift
= (w
->kcontrols
[i
].private_value
>> 8) & 0x0f;
106 int mask
= (w
->kcontrols
[i
].private_value
>> 16) & 0xff;
107 int invert
= (w
->kcontrols
[i
].private_value
>> 24) & 0x01;
109 val
= snd_soc_read(w
->codec
, reg
);
110 val
= (val
>> shift
) & mask
;
112 if ((invert
&& !val
) || (!invert
&& val
))
118 case snd_soc_dapm_mux
: {
119 struct soc_enum
*e
= (struct soc_enum
*)w
->kcontrols
[i
].private_value
;
120 int val
, item
, bitmask
;
122 for (bitmask
= 1; bitmask
< e
->mask
; bitmask
<<= 1)
124 val
= snd_soc_read(w
->codec
, e
->reg
);
125 item
= (val
>> e
->shift_l
) & (bitmask
- 1);
128 for (i
= 0; i
< e
->mask
; i
++) {
129 if (!(strcmp(p
->name
, e
->texts
[i
])) && item
== i
)
134 /* does not effect routing - always connected */
135 case snd_soc_dapm_pga
:
136 case snd_soc_dapm_output
:
137 case snd_soc_dapm_adc
:
138 case snd_soc_dapm_input
:
139 case snd_soc_dapm_dac
:
140 case snd_soc_dapm_micbias
:
141 case snd_soc_dapm_vmid
:
144 /* does effect routing - dynamically connected */
145 case snd_soc_dapm_hp
:
146 case snd_soc_dapm_mic
:
147 case snd_soc_dapm_spk
:
148 case snd_soc_dapm_line
:
149 case snd_soc_dapm_pre
:
150 case snd_soc_dapm_post
:
156 /* connect mux widget to it's interconnecting audio paths */
157 static int dapm_connect_mux(struct snd_soc_codec
*codec
,
158 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
159 struct snd_soc_dapm_path
*path
, const char *control_name
,
160 const struct snd_kcontrol_new
*kcontrol
)
162 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
165 for (i
= 0; i
< e
->mask
; i
++) {
166 if (!(strcmp(control_name
, e
->texts
[i
]))) {
167 list_add(&path
->list
, &codec
->dapm_paths
);
168 list_add(&path
->list_sink
, &dest
->sources
);
169 list_add(&path
->list_source
, &src
->sinks
);
170 path
->name
= (char*)e
->texts
[i
];
171 dapm_set_path_status(dest
, path
, 0);
179 /* connect mixer widget to it's interconnecting audio paths */
180 static int dapm_connect_mixer(struct snd_soc_codec
*codec
,
181 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
182 struct snd_soc_dapm_path
*path
, const char *control_name
)
186 /* search for mixer kcontrol */
187 for (i
= 0; i
< dest
->num_kcontrols
; i
++) {
188 if (!strcmp(control_name
, dest
->kcontrols
[i
].name
)) {
189 list_add(&path
->list
, &codec
->dapm_paths
);
190 list_add(&path
->list_sink
, &dest
->sources
);
191 list_add(&path
->list_source
, &src
->sinks
);
192 path
->name
= dest
->kcontrols
[i
].name
;
193 dapm_set_path_status(dest
, path
, i
);
200 /* update dapm codec register bits */
201 static int dapm_update_bits(struct snd_soc_dapm_widget
*widget
)
204 unsigned short old
, new;
205 struct snd_soc_codec
*codec
= widget
->codec
;
207 /* check for valid widgets */
208 if (widget
->reg
< 0 || widget
->id
== snd_soc_dapm_input
||
209 widget
->id
== snd_soc_dapm_output
||
210 widget
->id
== snd_soc_dapm_hp
||
211 widget
->id
== snd_soc_dapm_mic
||
212 widget
->id
== snd_soc_dapm_line
||
213 widget
->id
== snd_soc_dapm_spk
)
216 power
= widget
->power
;
218 power
= (power
? 0:1);
220 old
= snd_soc_read(codec
, widget
->reg
);
221 new = (old
& ~(0x1 << widget
->shift
)) | (power
<< widget
->shift
);
225 pop_dbg("pop test %s : %s in %d ms\n", widget
->name
,
226 widget
->power
? "on" : "off", POP_TIME
);
227 snd_soc_write(codec
, widget
->reg
, new);
230 dbg("reg old %x new %x change %d\n", old
, new, change
);
234 /* ramps the volume up or down to minimise pops before or after a
235 * DAPM power event */
236 static int dapm_set_pga(struct snd_soc_dapm_widget
*widget
, int power
)
238 const struct snd_kcontrol_new
*k
= widget
->kcontrols
;
240 if (widget
->muted
&& !power
)
242 if (!widget
->muted
&& power
)
245 if (widget
->num_kcontrols
&& k
) {
246 int reg
= k
->private_value
& 0xff;
247 int shift
= (k
->private_value
>> 8) & 0x0f;
248 int mask
= (k
->private_value
>> 16) & 0xff;
249 int invert
= (k
->private_value
>> 24) & 0x01;
253 /* power up has happended, increase volume to last level */
255 for (i
= mask
; i
> widget
->saved_value
; i
--)
256 snd_soc_update_bits(widget
->codec
, reg
, mask
, i
);
258 for (i
= 0; i
< widget
->saved_value
; i
++)
259 snd_soc_update_bits(widget
->codec
, reg
, mask
, i
);
263 /* power down is about to occur, decrease volume to mute */
264 int val
= snd_soc_read(widget
->codec
, reg
);
265 int i
= widget
->saved_value
= (val
>> shift
) & mask
;
267 for (; i
< mask
; i
++)
268 snd_soc_update_bits(widget
->codec
, reg
, mask
, i
);
271 snd_soc_update_bits(widget
->codec
, reg
, mask
, i
);
279 /* create new dapm mixer control */
280 static int dapm_new_mixer(struct snd_soc_codec
*codec
,
281 struct snd_soc_dapm_widget
*w
)
285 struct snd_soc_dapm_path
*path
;
288 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
291 list_for_each_entry(path
, &w
->sources
, list_sink
) {
293 /* mixer/mux paths name must match control name */
294 if (path
->name
!= (char*)w
->kcontrols
[i
].name
)
297 /* add dapm control with long name */
298 snprintf(name
, 32, "%s %s", w
->name
, w
->kcontrols
[i
].name
);
299 path
->long_name
= kstrdup (name
, GFP_KERNEL
);
300 if (path
->long_name
== NULL
)
303 path
->kcontrol
= snd_soc_cnew(&w
->kcontrols
[i
], w
,
305 ret
= snd_ctl_add(codec
->card
, path
->kcontrol
);
307 printk(KERN_ERR
"asoc: failed to add dapm kcontrol %s\n",
309 kfree(path
->long_name
);
310 path
->long_name
= NULL
;
318 /* create new dapm mux control */
319 static int dapm_new_mux(struct snd_soc_codec
*codec
,
320 struct snd_soc_dapm_widget
*w
)
322 struct snd_soc_dapm_path
*path
= NULL
;
323 struct snd_kcontrol
*kcontrol
;
326 if (!w
->num_kcontrols
) {
327 printk(KERN_ERR
"asoc: mux %s has no controls\n", w
->name
);
331 kcontrol
= snd_soc_cnew(&w
->kcontrols
[0], w
, w
->name
);
332 ret
= snd_ctl_add(codec
->card
, kcontrol
);
336 list_for_each_entry(path
, &w
->sources
, list_sink
)
337 path
->kcontrol
= kcontrol
;
342 printk(KERN_ERR
"asoc: failed to add kcontrol %s\n", w
->name
);
346 /* create new dapm volume control */
347 static int dapm_new_pga(struct snd_soc_codec
*codec
,
348 struct snd_soc_dapm_widget
*w
)
350 struct snd_kcontrol
*kcontrol
;
353 if (!w
->num_kcontrols
)
356 kcontrol
= snd_soc_cnew(&w
->kcontrols
[0], w
, w
->name
);
357 ret
= snd_ctl_add(codec
->card
, kcontrol
);
359 printk(KERN_ERR
"asoc: failed to add kcontrol %s\n", w
->name
);
366 /* reset 'walked' bit for each dapm path */
367 static inline void dapm_clear_walk(struct snd_soc_codec
*codec
)
369 struct snd_soc_dapm_path
*p
;
371 list_for_each_entry(p
, &codec
->dapm_paths
, list
)
376 * Recursively check for a completed path to an active or physically connected
377 * output widget. Returns number of complete paths.
379 static int is_connected_output_ep(struct snd_soc_dapm_widget
*widget
)
381 struct snd_soc_dapm_path
*path
;
384 if (widget
->id
== snd_soc_dapm_adc
&& widget
->active
)
387 if (widget
->connected
) {
388 /* connected pin ? */
389 if (widget
->id
== snd_soc_dapm_output
&& !widget
->ext
)
392 /* connected jack or spk ? */
393 if (widget
->id
== snd_soc_dapm_hp
|| widget
->id
== snd_soc_dapm_spk
||
394 widget
->id
== snd_soc_dapm_line
)
398 list_for_each_entry(path
, &widget
->sinks
, list_source
) {
402 if (path
->sink
&& path
->connect
) {
404 con
+= is_connected_output_ep(path
->sink
);
412 * Recursively check for a completed path to an active or physically connected
413 * input widget. Returns number of complete paths.
415 static int is_connected_input_ep(struct snd_soc_dapm_widget
*widget
)
417 struct snd_soc_dapm_path
*path
;
420 /* active stream ? */
421 if (widget
->id
== snd_soc_dapm_dac
&& widget
->active
)
424 if (widget
->connected
) {
425 /* connected pin ? */
426 if (widget
->id
== snd_soc_dapm_input
&& !widget
->ext
)
429 /* connected VMID/Bias for lower pops */
430 if (widget
->id
== snd_soc_dapm_vmid
)
433 /* connected jack ? */
434 if (widget
->id
== snd_soc_dapm_mic
|| widget
->id
== snd_soc_dapm_line
)
438 list_for_each_entry(path
, &widget
->sources
, list_sink
) {
442 if (path
->source
&& path
->connect
) {
444 con
+= is_connected_input_ep(path
->source
);
452 * Scan each dapm widget for complete audio path.
453 * A complete path is a route that has valid endpoints i.e.:-
455 * o DAC to output pin.
456 * o Input Pin to ADC.
457 * o Input pin to Output pin (bypass, sidetone)
458 * o DAC to ADC (loopback).
460 static int dapm_power_widgets(struct snd_soc_codec
*codec
, int event
)
462 struct snd_soc_dapm_widget
*w
;
463 int in
, out
, i
, c
= 1, *seq
= NULL
, ret
= 0, power_change
, power
;
465 /* do we have a sequenced stream event */
466 if (event
== SND_SOC_DAPM_STREAM_START
) {
467 c
= ARRAY_SIZE(dapm_up_seq
);
469 } else if (event
== SND_SOC_DAPM_STREAM_STOP
) {
470 c
= ARRAY_SIZE(dapm_down_seq
);
474 for(i
= 0; i
< c
; i
++) {
475 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
477 /* is widget in stream order */
478 if (seq
&& seq
[i
] && w
->id
!= seq
[i
])
481 /* vmid - no action */
482 if (w
->id
== snd_soc_dapm_vmid
)
486 if (w
->id
== snd_soc_dapm_adc
&& w
->active
) {
487 in
= is_connected_input_ep(w
);
488 dapm_clear_walk(w
->codec
);
489 w
->power
= (in
!= 0) ? 1 : 0;
495 if (w
->id
== snd_soc_dapm_dac
&& w
->active
) {
496 out
= is_connected_output_ep(w
);
497 dapm_clear_walk(w
->codec
);
498 w
->power
= (out
!= 0) ? 1 : 0;
503 /* programmable gain/attenuation */
504 if (w
->id
== snd_soc_dapm_pga
) {
506 in
= is_connected_input_ep(w
);
507 dapm_clear_walk(w
->codec
);
508 out
= is_connected_output_ep(w
);
509 dapm_clear_walk(w
->codec
);
510 w
->power
= on
= (out
!= 0 && in
!= 0) ? 1 : 0;
513 dapm_set_pga(w
, on
); /* lower volume to reduce pops */
516 dapm_set_pga(w
, on
); /* restore volume from zero */
521 /* pre and post event widgets */
522 if (w
->id
== snd_soc_dapm_pre
) {
526 if (event
== SND_SOC_DAPM_STREAM_START
) {
527 ret
= w
->event(w
, SND_SOC_DAPM_PRE_PMU
);
530 } else if (event
== SND_SOC_DAPM_STREAM_STOP
) {
531 ret
= w
->event(w
, SND_SOC_DAPM_PRE_PMD
);
537 if (w
->id
== snd_soc_dapm_post
) {
541 if (event
== SND_SOC_DAPM_STREAM_START
) {
542 ret
= w
->event(w
, SND_SOC_DAPM_POST_PMU
);
545 } else if (event
== SND_SOC_DAPM_STREAM_STOP
) {
546 ret
= w
->event(w
, SND_SOC_DAPM_POST_PMD
);
553 /* all other widgets */
554 in
= is_connected_input_ep(w
);
555 dapm_clear_walk(w
->codec
);
556 out
= is_connected_output_ep(w
);
557 dapm_clear_walk(w
->codec
);
558 power
= (out
!= 0 && in
!= 0) ? 1 : 0;
559 power_change
= (w
->power
== power
) ? 0: 1;
562 /* call any power change event handlers */
565 dbg("power %s event for %s flags %x\n",
566 w
->power
? "on" : "off", w
->name
, w
->event_flags
);
569 if (w
->event_flags
& SND_SOC_DAPM_PRE_PMU
) {
570 ret
= w
->event(w
, SND_SOC_DAPM_PRE_PMU
);
575 if (w
->event_flags
& SND_SOC_DAPM_POST_PMU
){
576 ret
= w
->event(w
, SND_SOC_DAPM_POST_PMU
);
581 /* power down event */
582 if (w
->event_flags
& SND_SOC_DAPM_PRE_PMD
) {
583 ret
= w
->event(w
, SND_SOC_DAPM_PRE_PMD
);
588 if (w
->event_flags
& SND_SOC_DAPM_POST_PMD
) {
589 ret
= w
->event(w
, SND_SOC_DAPM_POST_PMD
);
595 /* no event handler */
605 static void dbg_dump_dapm(struct snd_soc_codec
* codec
, const char *action
)
607 struct snd_soc_dapm_widget
*w
;
608 struct snd_soc_dapm_path
*p
= NULL
;
611 printk("DAPM %s %s\n", codec
->name
, action
);
613 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
615 /* only display widgets that effect routing */
617 case snd_soc_dapm_pre
:
618 case snd_soc_dapm_post
:
619 case snd_soc_dapm_vmid
:
621 case snd_soc_dapm_mux
:
622 case snd_soc_dapm_output
:
623 case snd_soc_dapm_input
:
624 case snd_soc_dapm_switch
:
625 case snd_soc_dapm_hp
:
626 case snd_soc_dapm_mic
:
627 case snd_soc_dapm_spk
:
628 case snd_soc_dapm_line
:
629 case snd_soc_dapm_micbias
:
630 case snd_soc_dapm_dac
:
631 case snd_soc_dapm_adc
:
632 case snd_soc_dapm_pga
:
633 case snd_soc_dapm_mixer
:
635 in
= is_connected_input_ep(w
);
636 dapm_clear_walk(w
->codec
);
637 out
= is_connected_output_ep(w
);
638 dapm_clear_walk(w
->codec
);
639 printk("%s: %s in %d out %d\n", w
->name
,
640 w
->power
? "On":"Off",in
, out
);
642 list_for_each_entry(p
, &w
->sources
, list_sink
) {
644 printk(" in %s %s\n", p
->name
? p
->name
: "static",
647 list_for_each_entry(p
, &w
->sinks
, list_source
) {
649 printk(" out %s %s\n", p
->name
? p
->name
: "static",
659 /* test and update the power status of a mux widget */
660 static int dapm_mux_update_power(struct snd_soc_dapm_widget
*widget
,
661 struct snd_kcontrol
*kcontrol
, int mask
,
662 int val
, struct soc_enum
* e
)
664 struct snd_soc_dapm_path
*path
;
667 if (widget
->id
!= snd_soc_dapm_mux
)
670 if (!snd_soc_test_bits(widget
->codec
, e
->reg
, mask
, val
))
673 /* find dapm widget path assoc with kcontrol */
674 list_for_each_entry(path
, &widget
->codec
->dapm_paths
, list
) {
675 if (path
->kcontrol
!= kcontrol
)
678 if (!path
->name
|| ! e
->texts
[val
])
682 /* we now need to match the string in the enum to the path */
683 if (!(strcmp(path
->name
, e
->texts
[val
])))
684 path
->connect
= 1; /* new connection */
686 path
->connect
= 0; /* old connection must be powered down */
690 dapm_power_widgets(widget
->codec
, SND_SOC_DAPM_STREAM_NOP
);
695 /* test and update the power status of a mixer widget */
696 static int dapm_mixer_update_power(struct snd_soc_dapm_widget
*widget
,
697 struct snd_kcontrol
*kcontrol
, int reg
,
698 int val_mask
, int val
, int invert
)
700 struct snd_soc_dapm_path
*path
;
703 if (widget
->id
!= snd_soc_dapm_mixer
)
706 if (!snd_soc_test_bits(widget
->codec
, reg
, val_mask
, val
))
709 /* find dapm widget path assoc with kcontrol */
710 list_for_each_entry(path
, &widget
->codec
->dapm_paths
, list
) {
711 if (path
->kcontrol
!= kcontrol
)
714 /* found, now check type */
718 path
->connect
= invert
? 0:1;
720 /* old connection must be powered down */
721 path
->connect
= invert
? 1:0;
726 dapm_power_widgets(widget
->codec
, SND_SOC_DAPM_STREAM_NOP
);
731 /* show dapm widget status in sys fs */
732 static ssize_t
dapm_widget_show(struct device
*dev
,
733 struct device_attribute
*attr
, char *buf
)
735 struct snd_soc_device
*devdata
= dev_get_drvdata(dev
);
736 struct snd_soc_codec
*codec
= devdata
->codec
;
737 struct snd_soc_dapm_widget
*w
;
739 char *state
= "not set";
741 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
743 /* only display widgets that burnm power */
745 case snd_soc_dapm_hp
:
746 case snd_soc_dapm_mic
:
747 case snd_soc_dapm_spk
:
748 case snd_soc_dapm_line
:
749 case snd_soc_dapm_micbias
:
750 case snd_soc_dapm_dac
:
751 case snd_soc_dapm_adc
:
752 case snd_soc_dapm_pga
:
753 case snd_soc_dapm_mixer
:
755 count
+= sprintf(buf
+ count
, "%s: %s\n",
756 w
->name
, w
->power
? "On":"Off");
763 switch(codec
->dapm_state
){
764 case SNDRV_CTL_POWER_D0
:
767 case SNDRV_CTL_POWER_D1
:
770 case SNDRV_CTL_POWER_D2
:
773 case SNDRV_CTL_POWER_D3hot
:
776 case SNDRV_CTL_POWER_D3cold
:
780 count
+= sprintf(buf
+ count
, "PM State: %s\n", state
);
785 static DEVICE_ATTR(dapm_widget
, 0444, dapm_widget_show
, NULL
);
787 int snd_soc_dapm_sys_add(struct device
*dev
)
792 ret
= device_create_file(dev
, &dev_attr_dapm_widget
);
797 static void snd_soc_dapm_sys_remove(struct device
*dev
)
800 device_remove_file(dev
, &dev_attr_dapm_widget
);
803 /* free all dapm widgets and resources */
804 static void dapm_free_widgets(struct snd_soc_codec
*codec
)
806 struct snd_soc_dapm_widget
*w
, *next_w
;
807 struct snd_soc_dapm_path
*p
, *next_p
;
809 list_for_each_entry_safe(w
, next_w
, &codec
->dapm_widgets
, list
) {
814 list_for_each_entry_safe(p
, next_p
, &codec
->dapm_paths
, list
) {
822 * snd_soc_dapm_sync_endpoints - scan and power dapm paths
823 * @codec: audio codec
825 * Walks all dapm audio paths and powers widgets according to their
826 * stream or path usage.
828 * Returns 0 for success.
830 int snd_soc_dapm_sync_endpoints(struct snd_soc_codec
*codec
)
832 return dapm_power_widgets(codec
, SND_SOC_DAPM_STREAM_NOP
);
834 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_endpoints
);
837 * snd_soc_dapm_connect_input - connect dapm widgets
838 * @codec: audio codec
839 * @sink: name of target widget
840 * @control: mixer control name
841 * @source: name of source name
843 * Connects 2 dapm widgets together via a named audio path. The sink is
844 * the widget receiving the audio signal, whilst the source is the sender
845 * of the audio signal.
847 * Returns 0 for success else error.
849 int snd_soc_dapm_connect_input(struct snd_soc_codec
*codec
, const char *sink
,
850 const char * control
, const char *source
)
852 struct snd_soc_dapm_path
*path
;
853 struct snd_soc_dapm_widget
*wsource
= NULL
, *wsink
= NULL
, *w
;
856 /* find src and dest widgets */
857 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
859 if (!wsink
&& !(strcmp(w
->name
, sink
))) {
863 if (!wsource
&& !(strcmp(w
->name
, source
))) {
868 if (wsource
== NULL
|| wsink
== NULL
)
871 path
= kzalloc(sizeof(struct snd_soc_dapm_path
), GFP_KERNEL
);
875 path
->source
= wsource
;
877 INIT_LIST_HEAD(&path
->list
);
878 INIT_LIST_HEAD(&path
->list_source
);
879 INIT_LIST_HEAD(&path
->list_sink
);
881 /* check for external widgets */
882 if (wsink
->id
== snd_soc_dapm_input
) {
883 if (wsource
->id
== snd_soc_dapm_micbias
||
884 wsource
->id
== snd_soc_dapm_mic
||
885 wsink
->id
== snd_soc_dapm_line
)
888 if (wsource
->id
== snd_soc_dapm_output
) {
889 if (wsink
->id
== snd_soc_dapm_spk
||
890 wsink
->id
== snd_soc_dapm_hp
||
891 wsink
->id
== snd_soc_dapm_line
)
895 /* connect static paths */
896 if (control
== NULL
) {
897 list_add(&path
->list
, &codec
->dapm_paths
);
898 list_add(&path
->list_sink
, &wsink
->sources
);
899 list_add(&path
->list_source
, &wsource
->sinks
);
904 /* connect dynamic paths */
906 case snd_soc_dapm_adc
:
907 case snd_soc_dapm_dac
:
908 case snd_soc_dapm_pga
:
909 case snd_soc_dapm_input
:
910 case snd_soc_dapm_output
:
911 case snd_soc_dapm_micbias
:
912 case snd_soc_dapm_vmid
:
913 case snd_soc_dapm_pre
:
914 case snd_soc_dapm_post
:
915 list_add(&path
->list
, &codec
->dapm_paths
);
916 list_add(&path
->list_sink
, &wsink
->sources
);
917 list_add(&path
->list_source
, &wsource
->sinks
);
920 case snd_soc_dapm_mux
:
921 ret
= dapm_connect_mux(codec
, wsource
, wsink
, path
, control
,
922 &wsink
->kcontrols
[0]);
926 case snd_soc_dapm_switch
:
927 case snd_soc_dapm_mixer
:
928 ret
= dapm_connect_mixer(codec
, wsource
, wsink
, path
, control
);
932 case snd_soc_dapm_hp
:
933 case snd_soc_dapm_mic
:
934 case snd_soc_dapm_line
:
935 case snd_soc_dapm_spk
:
936 list_add(&path
->list
, &codec
->dapm_paths
);
937 list_add(&path
->list_sink
, &wsink
->sources
);
938 list_add(&path
->list_source
, &wsource
->sinks
);
945 printk(KERN_WARNING
"asoc: no dapm match for %s --> %s --> %s\n", source
,
950 EXPORT_SYMBOL_GPL(snd_soc_dapm_connect_input
);
953 * snd_soc_dapm_new_widgets - add new dapm widgets
954 * @codec: audio codec
956 * Checks the codec for any new dapm widgets and creates them if found.
958 * Returns 0 for success.
960 int snd_soc_dapm_new_widgets(struct snd_soc_codec
*codec
)
962 struct snd_soc_dapm_widget
*w
;
964 mutex_lock(&codec
->mutex
);
965 list_for_each_entry(w
, &codec
->dapm_widgets
, list
)
971 case snd_soc_dapm_switch
:
972 case snd_soc_dapm_mixer
:
973 dapm_new_mixer(codec
, w
);
975 case snd_soc_dapm_mux
:
976 dapm_new_mux(codec
, w
);
978 case snd_soc_dapm_adc
:
979 case snd_soc_dapm_dac
:
980 case snd_soc_dapm_pga
:
981 dapm_new_pga(codec
, w
);
983 case snd_soc_dapm_input
:
984 case snd_soc_dapm_output
:
985 case snd_soc_dapm_micbias
:
986 case snd_soc_dapm_spk
:
987 case snd_soc_dapm_hp
:
988 case snd_soc_dapm_mic
:
989 case snd_soc_dapm_line
:
990 case snd_soc_dapm_vmid
:
991 case snd_soc_dapm_pre
:
992 case snd_soc_dapm_post
:
998 dapm_power_widgets(codec
, SND_SOC_DAPM_STREAM_NOP
);
999 mutex_unlock(&codec
->mutex
);
1002 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets
);
1005 * snd_soc_dapm_get_volsw - dapm mixer get callback
1006 * @kcontrol: mixer control
1007 * @uinfo: control element information
1009 * Callback to get the value of a dapm mixer control.
1011 * Returns 0 for success.
1013 int snd_soc_dapm_get_volsw(struct snd_kcontrol
*kcontrol
,
1014 struct snd_ctl_elem_value
*ucontrol
)
1016 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1017 int reg
= kcontrol
->private_value
& 0xff;
1018 int shift
= (kcontrol
->private_value
>> 8) & 0x0f;
1019 int rshift
= (kcontrol
->private_value
>> 12) & 0x0f;
1020 int mask
= (kcontrol
->private_value
>> 16) & 0xff;
1021 int invert
= (kcontrol
->private_value
>> 24) & 0x01;
1023 /* return the saved value if we are powered down */
1024 if (widget
->id
== snd_soc_dapm_pga
&& !widget
->power
) {
1025 ucontrol
->value
.integer
.value
[0] = widget
->saved_value
;
1029 ucontrol
->value
.integer
.value
[0] =
1030 (snd_soc_read(widget
->codec
, reg
) >> shift
) & mask
;
1031 if (shift
!= rshift
)
1032 ucontrol
->value
.integer
.value
[1] =
1033 (snd_soc_read(widget
->codec
, reg
) >> rshift
) & mask
;
1035 ucontrol
->value
.integer
.value
[0] =
1036 mask
- ucontrol
->value
.integer
.value
[0];
1037 if (shift
!= rshift
)
1038 ucontrol
->value
.integer
.value
[1] =
1039 mask
- ucontrol
->value
.integer
.value
[1];
1044 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw
);
1047 * snd_soc_dapm_put_volsw - dapm mixer set callback
1048 * @kcontrol: mixer control
1049 * @uinfo: control element information
1051 * Callback to set the value of a dapm mixer control.
1053 * Returns 0 for success.
1055 int snd_soc_dapm_put_volsw(struct snd_kcontrol
*kcontrol
,
1056 struct snd_ctl_elem_value
*ucontrol
)
1058 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1059 int reg
= kcontrol
->private_value
& 0xff;
1060 int shift
= (kcontrol
->private_value
>> 8) & 0x0f;
1061 int rshift
= (kcontrol
->private_value
>> 12) & 0x0f;
1062 int mask
= (kcontrol
->private_value
>> 16) & 0xff;
1063 int invert
= (kcontrol
->private_value
>> 24) & 0x01;
1064 unsigned short val
, val2
, val_mask
;
1067 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1071 val_mask
= mask
<< shift
;
1073 if (shift
!= rshift
) {
1074 val2
= (ucontrol
->value
.integer
.value
[1] & mask
);
1077 val_mask
|= mask
<< rshift
;
1078 val
|= val2
<< rshift
;
1081 mutex_lock(&widget
->codec
->mutex
);
1082 widget
->value
= val
;
1084 /* save volume value if the widget is powered down */
1085 if (widget
->id
== snd_soc_dapm_pga
&& !widget
->power
) {
1086 widget
->saved_value
= val
;
1087 mutex_unlock(&widget
->codec
->mutex
);
1091 dapm_mixer_update_power(widget
, kcontrol
, reg
, val_mask
, val
, invert
);
1092 if (widget
->event
) {
1093 if (widget
->event_flags
& SND_SOC_DAPM_PRE_REG
) {
1094 ret
= widget
->event(widget
, SND_SOC_DAPM_PRE_REG
);
1098 ret
= snd_soc_update_bits(widget
->codec
, reg
, val_mask
, val
);
1099 if (widget
->event_flags
& SND_SOC_DAPM_POST_REG
)
1100 ret
= widget
->event(widget
, SND_SOC_DAPM_POST_REG
);
1102 ret
= snd_soc_update_bits(widget
->codec
, reg
, val_mask
, val
);
1105 mutex_unlock(&widget
->codec
->mutex
);
1108 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw
);
1111 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
1112 * @kcontrol: mixer control
1113 * @uinfo: control element information
1115 * Callback to get the value of a dapm enumerated double mixer control.
1117 * Returns 0 for success.
1119 int snd_soc_dapm_get_enum_double(struct snd_kcontrol
*kcontrol
,
1120 struct snd_ctl_elem_value
*ucontrol
)
1122 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1123 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1124 unsigned short val
, bitmask
;
1126 for (bitmask
= 1; bitmask
< e
->mask
; bitmask
<<= 1)
1128 val
= snd_soc_read(widget
->codec
, e
->reg
);
1129 ucontrol
->value
.enumerated
.item
[0] = (val
>> e
->shift_l
) & (bitmask
- 1);
1130 if (e
->shift_l
!= e
->shift_r
)
1131 ucontrol
->value
.enumerated
.item
[1] =
1132 (val
>> e
->shift_r
) & (bitmask
- 1);
1136 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double
);
1139 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
1140 * @kcontrol: mixer control
1141 * @uinfo: control element information
1143 * Callback to set the value of a dapm enumerated double mixer control.
1145 * Returns 0 for success.
1147 int snd_soc_dapm_put_enum_double(struct snd_kcontrol
*kcontrol
,
1148 struct snd_ctl_elem_value
*ucontrol
)
1150 struct snd_soc_dapm_widget
*widget
= snd_kcontrol_chip(kcontrol
);
1151 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
1152 unsigned short val
, mux
;
1153 unsigned short mask
, bitmask
;
1156 for (bitmask
= 1; bitmask
< e
->mask
; bitmask
<<= 1)
1158 if (ucontrol
->value
.enumerated
.item
[0] > e
->mask
- 1)
1160 mux
= ucontrol
->value
.enumerated
.item
[0];
1161 val
= mux
<< e
->shift_l
;
1162 mask
= (bitmask
- 1) << e
->shift_l
;
1163 if (e
->shift_l
!= e
->shift_r
) {
1164 if (ucontrol
->value
.enumerated
.item
[1] > e
->mask
- 1)
1166 val
|= ucontrol
->value
.enumerated
.item
[1] << e
->shift_r
;
1167 mask
|= (bitmask
- 1) << e
->shift_r
;
1170 mutex_lock(&widget
->codec
->mutex
);
1171 widget
->value
= val
;
1172 dapm_mux_update_power(widget
, kcontrol
, mask
, mux
, e
);
1173 if (widget
->event
) {
1174 if (widget
->event_flags
& SND_SOC_DAPM_PRE_REG
) {
1175 ret
= widget
->event(widget
, SND_SOC_DAPM_PRE_REG
);
1179 ret
= snd_soc_update_bits(widget
->codec
, e
->reg
, mask
, val
);
1180 if (widget
->event_flags
& SND_SOC_DAPM_POST_REG
)
1181 ret
= widget
->event(widget
, SND_SOC_DAPM_POST_REG
);
1183 ret
= snd_soc_update_bits(widget
->codec
, e
->reg
, mask
, val
);
1186 mutex_unlock(&widget
->codec
->mutex
);
1189 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double
);
1192 * snd_soc_dapm_new_control - create new dapm control
1193 * @codec: audio codec
1194 * @widget: widget template
1196 * Creates a new dapm control based upon the template.
1198 * Returns 0 for success else error.
1200 int snd_soc_dapm_new_control(struct snd_soc_codec
*codec
,
1201 const struct snd_soc_dapm_widget
*widget
)
1203 struct snd_soc_dapm_widget
*w
;
1205 if ((w
= dapm_cnew_widget(widget
)) == NULL
)
1209 INIT_LIST_HEAD(&w
->sources
);
1210 INIT_LIST_HEAD(&w
->sinks
);
1211 INIT_LIST_HEAD(&w
->list
);
1212 list_add(&w
->list
, &codec
->dapm_widgets
);
1214 /* machine layer set ups unconnected pins and insertions */
1218 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control
);
1221 * snd_soc_dapm_stream_event - send a stream event to the dapm core
1222 * @codec: audio codec
1223 * @stream: stream name
1224 * @event: stream event
1226 * Sends a stream event to the dapm core. The core then makes any
1227 * necessary widget power changes.
1229 * Returns 0 for success else error.
1231 int snd_soc_dapm_stream_event(struct snd_soc_codec
*codec
,
1232 char *stream
, int event
)
1234 struct snd_soc_dapm_widget
*w
;
1239 mutex_lock(&codec
->mutex
);
1240 list_for_each_entry(w
, &codec
->dapm_widgets
, list
)
1244 dbg("widget %s\n %s stream %s event %d\n", w
->name
, w
->sname
,
1246 if (strstr(w
->sname
, stream
)) {
1248 case SND_SOC_DAPM_STREAM_START
:
1251 case SND_SOC_DAPM_STREAM_STOP
:
1254 case SND_SOC_DAPM_STREAM_SUSPEND
:
1259 case SND_SOC_DAPM_STREAM_RESUME
:
1265 case SND_SOC_DAPM_STREAM_PAUSE_PUSH
:
1267 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE
:
1272 mutex_unlock(&codec
->mutex
);
1274 dapm_power_widgets(codec
, event
);
1275 dump_dapm(codec
, __FUNCTION__
);
1278 EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_event
);
1281 * snd_soc_dapm_set_endpoint - set audio endpoint status
1282 * @codec: audio codec
1283 * @endpoint: audio signal endpoint (or start point)
1284 * @status: point status
1286 * Set audio endpoint status - connected or disconnected.
1288 * Returns 0 for success else error.
1290 int snd_soc_dapm_set_endpoint(struct snd_soc_codec
*codec
,
1291 char *endpoint
, int status
)
1293 struct snd_soc_dapm_widget
*w
;
1295 list_for_each_entry(w
, &codec
->dapm_widgets
, list
) {
1296 if (!strcmp(w
->name
, endpoint
)) {
1297 w
->connected
= status
;
1303 EXPORT_SYMBOL_GPL(snd_soc_dapm_set_endpoint
);
1306 * snd_soc_dapm_free - free dapm resources
1307 * @socdev: SoC device
1309 * Free all dapm widgets and resources.
1311 void snd_soc_dapm_free(struct snd_soc_device
*socdev
)
1313 struct snd_soc_codec
*codec
= socdev
->codec
;
1315 snd_soc_dapm_sys_remove(socdev
->dev
);
1316 dapm_free_widgets(codec
);
1318 EXPORT_SYMBOL_GPL(snd_soc_dapm_free
);
1320 /* Module information */
1321 MODULE_AUTHOR("Liam Girdwood, liam.girdwood@wolfsonmicro.com, www.wolfsonmicro.com");
1322 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
1323 MODULE_LICENSE("GPL");