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/headphone insertion events.
18 * o Automatic Mic Bias support
19 * o Jack insertion power event initiation - e.g. hp insertion will enable
21 * o Delayed power down of audio subsystem to reduce pops between a quick
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <linux/init.h>
29 #include <linux/async.h>
30 #include <linux/delay.h>
32 #include <linux/bitops.h>
33 #include <linux/platform_device.h>
34 #include <linux/jiffies.h>
35 #include <linux/debugfs.h>
36 #include <linux/pm_runtime.h>
37 #include <linux/regulator/consumer.h>
38 #include <linux/clk.h>
39 #include <linux/slab.h>
40 #include <sound/core.h>
41 #include <sound/pcm.h>
42 #include <sound/pcm_params.h>
43 #include <sound/soc.h>
44 #include <sound/initval.h>
46 #include <trace/events/asoc.h>
48 #define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++;
50 static int snd_soc_dapm_add_path(struct snd_soc_dapm_context
*dapm
,
51 struct snd_soc_dapm_widget
*wsource
, struct snd_soc_dapm_widget
*wsink
,
53 int (*connected
)(struct snd_soc_dapm_widget
*source
,
54 struct snd_soc_dapm_widget
*sink
));
55 static struct snd_soc_dapm_widget
*
56 snd_soc_dapm_new_control(struct snd_soc_dapm_context
*dapm
,
57 const struct snd_soc_dapm_widget
*widget
);
59 /* dapm power sequences - make this per codec in the future */
60 static int dapm_up_seq
[] = {
61 [snd_soc_dapm_pre
] = 0,
62 [snd_soc_dapm_regulator_supply
] = 1,
63 [snd_soc_dapm_clock_supply
] = 1,
64 [snd_soc_dapm_supply
] = 2,
65 [snd_soc_dapm_micbias
] = 3,
66 [snd_soc_dapm_dai_link
] = 2,
67 [snd_soc_dapm_dai_in
] = 4,
68 [snd_soc_dapm_dai_out
] = 4,
69 [snd_soc_dapm_aif_in
] = 4,
70 [snd_soc_dapm_aif_out
] = 4,
71 [snd_soc_dapm_mic
] = 5,
72 [snd_soc_dapm_mux
] = 6,
73 [snd_soc_dapm_dac
] = 7,
74 [snd_soc_dapm_switch
] = 8,
75 [snd_soc_dapm_mixer
] = 8,
76 [snd_soc_dapm_mixer_named_ctl
] = 8,
77 [snd_soc_dapm_pga
] = 9,
78 [snd_soc_dapm_adc
] = 10,
79 [snd_soc_dapm_out_drv
] = 11,
80 [snd_soc_dapm_hp
] = 11,
81 [snd_soc_dapm_spk
] = 11,
82 [snd_soc_dapm_line
] = 11,
83 [snd_soc_dapm_kcontrol
] = 12,
84 [snd_soc_dapm_post
] = 13,
87 static int dapm_down_seq
[] = {
88 [snd_soc_dapm_pre
] = 0,
89 [snd_soc_dapm_kcontrol
] = 1,
90 [snd_soc_dapm_adc
] = 2,
91 [snd_soc_dapm_hp
] = 3,
92 [snd_soc_dapm_spk
] = 3,
93 [snd_soc_dapm_line
] = 3,
94 [snd_soc_dapm_out_drv
] = 3,
95 [snd_soc_dapm_pga
] = 4,
96 [snd_soc_dapm_switch
] = 5,
97 [snd_soc_dapm_mixer_named_ctl
] = 5,
98 [snd_soc_dapm_mixer
] = 5,
99 [snd_soc_dapm_dac
] = 6,
100 [snd_soc_dapm_mic
] = 7,
101 [snd_soc_dapm_micbias
] = 8,
102 [snd_soc_dapm_mux
] = 9,
103 [snd_soc_dapm_aif_in
] = 10,
104 [snd_soc_dapm_aif_out
] = 10,
105 [snd_soc_dapm_dai_in
] = 10,
106 [snd_soc_dapm_dai_out
] = 10,
107 [snd_soc_dapm_dai_link
] = 11,
108 [snd_soc_dapm_supply
] = 12,
109 [snd_soc_dapm_clock_supply
] = 13,
110 [snd_soc_dapm_regulator_supply
] = 13,
111 [snd_soc_dapm_post
] = 14,
114 static void dapm_assert_locked(struct snd_soc_dapm_context
*dapm
)
116 if (dapm
->card
&& dapm
->card
->instantiated
)
117 lockdep_assert_held(&dapm
->card
->dapm_mutex
);
120 static void pop_wait(u32 pop_time
)
123 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time
));
126 static void pop_dbg(struct device
*dev
, u32 pop_time
, const char *fmt
, ...)
134 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
139 vsnprintf(buf
, PAGE_SIZE
, fmt
, args
);
140 dev_info(dev
, "%s", buf
);
146 static bool dapm_dirty_widget(struct snd_soc_dapm_widget
*w
)
148 return !list_empty(&w
->dirty
);
151 static void dapm_mark_dirty(struct snd_soc_dapm_widget
*w
, const char *reason
)
153 dapm_assert_locked(w
->dapm
);
155 if (!dapm_dirty_widget(w
)) {
156 dev_vdbg(w
->dapm
->dev
, "Marking %s dirty due to %s\n",
158 list_add_tail(&w
->dirty
, &w
->dapm
->card
->dapm_dirty
);
162 void dapm_mark_io_dirty(struct snd_soc_dapm_context
*dapm
)
164 struct snd_soc_card
*card
= dapm
->card
;
165 struct snd_soc_dapm_widget
*w
;
167 mutex_lock(&card
->dapm_mutex
);
169 list_for_each_entry(w
, &card
->widgets
, list
) {
171 case snd_soc_dapm_input
:
172 case snd_soc_dapm_output
:
173 dapm_mark_dirty(w
, "Rechecking inputs and outputs");
180 mutex_unlock(&card
->dapm_mutex
);
182 EXPORT_SYMBOL_GPL(dapm_mark_io_dirty
);
184 /* create a new dapm widget */
185 static inline struct snd_soc_dapm_widget
*dapm_cnew_widget(
186 const struct snd_soc_dapm_widget
*_widget
)
188 return kmemdup(_widget
, sizeof(*_widget
), GFP_KERNEL
);
191 struct dapm_kcontrol_data
{
193 struct snd_soc_dapm_widget
*widget
;
194 struct list_head paths
;
195 struct snd_soc_dapm_widget_list
*wlist
;
198 static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget
*widget
,
199 struct snd_kcontrol
*kcontrol
)
201 struct dapm_kcontrol_data
*data
;
202 struct soc_mixer_control
*mc
;
204 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
206 dev_err(widget
->dapm
->dev
,
207 "ASoC: can't allocate kcontrol data for %s\n",
212 INIT_LIST_HEAD(&data
->paths
);
214 switch (widget
->id
) {
215 case snd_soc_dapm_switch
:
216 case snd_soc_dapm_mixer
:
217 case snd_soc_dapm_mixer_named_ctl
:
218 mc
= (struct soc_mixer_control
*)kcontrol
->private_value
;
220 if (mc
->autodisable
) {
221 struct snd_soc_dapm_widget
template;
223 memset(&template, 0, sizeof(template));
224 template.reg
= mc
->reg
;
225 template.mask
= (1 << fls(mc
->max
)) - 1;
226 template.shift
= mc
->shift
;
228 template.off_val
= mc
->max
;
230 template.off_val
= 0;
231 template.on_val
= template.off_val
;
232 template.id
= snd_soc_dapm_kcontrol
;
233 template.name
= kcontrol
->id
.name
;
235 data
->value
= template.on_val
;
237 data
->widget
= snd_soc_dapm_new_control(widget
->dapm
,
249 kcontrol
->private_data
= data
;
254 static void dapm_kcontrol_free(struct snd_kcontrol
*kctl
)
256 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kctl
);
261 static struct snd_soc_dapm_widget_list
*dapm_kcontrol_get_wlist(
262 const struct snd_kcontrol
*kcontrol
)
264 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
269 static int dapm_kcontrol_add_widget(struct snd_kcontrol
*kcontrol
,
270 struct snd_soc_dapm_widget
*widget
)
272 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
273 struct snd_soc_dapm_widget_list
*new_wlist
;
277 n
= data
->wlist
->num_widgets
+ 1;
281 new_wlist
= krealloc(data
->wlist
,
282 sizeof(*new_wlist
) + sizeof(widget
) * n
, GFP_KERNEL
);
286 new_wlist
->widgets
[n
- 1] = widget
;
287 new_wlist
->num_widgets
= n
;
289 data
->wlist
= new_wlist
;
294 static void dapm_kcontrol_add_path(const struct snd_kcontrol
*kcontrol
,
295 struct snd_soc_dapm_path
*path
)
297 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
299 list_add_tail(&path
->list_kcontrol
, &data
->paths
);
302 snd_soc_dapm_add_path(data
->widget
->dapm
, data
->widget
,
303 path
->source
, NULL
, NULL
);
307 static bool dapm_kcontrol_is_powered(const struct snd_kcontrol
*kcontrol
)
309 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
314 return data
->widget
->power
;
317 static struct list_head
*dapm_kcontrol_get_path_list(
318 const struct snd_kcontrol
*kcontrol
)
320 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
325 #define dapm_kcontrol_for_each_path(path, kcontrol) \
326 list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \
329 static unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol
*kcontrol
)
331 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
336 static bool dapm_kcontrol_set_value(const struct snd_kcontrol
*kcontrol
,
339 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
341 if (data
->value
== value
)
345 data
->widget
->on_val
= value
;
353 * snd_soc_dapm_kcontrol_codec() - Returns the codec associated to a kcontrol
354 * @kcontrol: The kcontrol
356 struct snd_soc_codec
*snd_soc_dapm_kcontrol_codec(struct snd_kcontrol
*kcontrol
)
358 return dapm_kcontrol_get_wlist(kcontrol
)->widgets
[0]->codec
;
360 EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_codec
);
362 static void dapm_reset(struct snd_soc_card
*card
)
364 struct snd_soc_dapm_widget
*w
;
366 lockdep_assert_held(&card
->dapm_mutex
);
368 memset(&card
->dapm_stats
, 0, sizeof(card
->dapm_stats
));
370 list_for_each_entry(w
, &card
->widgets
, list
) {
371 w
->new_power
= w
->power
;
372 w
->power_checked
= false;
378 static int soc_widget_read(struct snd_soc_dapm_widget
*w
, int reg
,
381 if (!w
->dapm
->component
)
383 return snd_soc_component_read(w
->dapm
->component
, reg
, value
);
386 static int soc_widget_update_bits(struct snd_soc_dapm_widget
*w
,
387 int reg
, unsigned int mask
, unsigned int value
)
389 if (!w
->dapm
->component
)
391 return snd_soc_component_update_bits_async(w
->dapm
->component
, reg
,
395 static void soc_dapm_async_complete(struct snd_soc_dapm_context
*dapm
)
398 snd_soc_component_async_complete(dapm
->component
);
402 * snd_soc_dapm_set_bias_level - set the bias level for the system
403 * @dapm: DAPM context
404 * @level: level to configure
406 * Configure the bias (power) levels for the SoC audio device.
408 * Returns 0 for success else error.
410 static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context
*dapm
,
411 enum snd_soc_bias_level level
)
413 struct snd_soc_card
*card
= dapm
->card
;
416 trace_snd_soc_bias_level_start(card
, level
);
418 if (card
&& card
->set_bias_level
)
419 ret
= card
->set_bias_level(card
, dapm
, level
);
424 if (dapm
->codec
->driver
->set_bias_level
)
425 ret
= dapm
->codec
->driver
->set_bias_level(dapm
->codec
,
428 dapm
->bias_level
= level
;
429 } else if (!card
|| dapm
!= &card
->dapm
) {
430 dapm
->bias_level
= level
;
436 if (card
&& card
->set_bias_level_post
)
437 ret
= card
->set_bias_level_post(card
, dapm
, level
);
439 trace_snd_soc_bias_level_done(card
, level
);
444 /* connect mux widget to its interconnecting audio paths */
445 static int dapm_connect_mux(struct snd_soc_dapm_context
*dapm
,
446 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
447 struct snd_soc_dapm_path
*path
, const char *control_name
,
448 const struct snd_kcontrol_new
*kcontrol
)
450 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
451 unsigned int val
, item
;
454 if (e
->reg
!= SND_SOC_NOPM
) {
455 soc_widget_read(dest
, e
->reg
, &val
);
456 val
= (val
>> e
->shift_l
) & e
->mask
;
457 item
= snd_soc_enum_val_to_item(e
, val
);
459 /* since a virtual mux has no backing registers to
460 * decide which path to connect, it will try to match
461 * with the first enumeration. This is to ensure
462 * that the default mux choice (the first) will be
463 * correctly powered up during initialization.
468 for (i
= 0; i
< e
->items
; i
++) {
469 if (!(strcmp(control_name
, e
->texts
[i
]))) {
470 list_add(&path
->list
, &dapm
->card
->paths
);
471 list_add(&path
->list_sink
, &dest
->sources
);
472 list_add(&path
->list_source
, &src
->sinks
);
473 path
->name
= (char*)e
->texts
[i
];
485 /* set up initial codec paths */
486 static void dapm_set_mixer_path_status(struct snd_soc_dapm_widget
*w
,
487 struct snd_soc_dapm_path
*p
, int i
)
489 struct soc_mixer_control
*mc
= (struct soc_mixer_control
*)
490 w
->kcontrol_news
[i
].private_value
;
491 unsigned int reg
= mc
->reg
;
492 unsigned int shift
= mc
->shift
;
493 unsigned int max
= mc
->max
;
494 unsigned int mask
= (1 << fls(max
)) - 1;
495 unsigned int invert
= mc
->invert
;
498 if (reg
!= SND_SOC_NOPM
) {
499 soc_widget_read(w
, reg
, &val
);
500 val
= (val
>> shift
) & mask
;
509 /* connect mixer widget to its interconnecting audio paths */
510 static int dapm_connect_mixer(struct snd_soc_dapm_context
*dapm
,
511 struct snd_soc_dapm_widget
*src
, struct snd_soc_dapm_widget
*dest
,
512 struct snd_soc_dapm_path
*path
, const char *control_name
)
516 /* search for mixer kcontrol */
517 for (i
= 0; i
< dest
->num_kcontrols
; i
++) {
518 if (!strcmp(control_name
, dest
->kcontrol_news
[i
].name
)) {
519 list_add(&path
->list
, &dapm
->card
->paths
);
520 list_add(&path
->list_sink
, &dest
->sources
);
521 list_add(&path
->list_source
, &src
->sinks
);
522 path
->name
= dest
->kcontrol_news
[i
].name
;
523 dapm_set_mixer_path_status(dest
, path
, i
);
530 static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context
*dapm
,
531 struct snd_soc_dapm_widget
*kcontrolw
,
532 const struct snd_kcontrol_new
*kcontrol_new
,
533 struct snd_kcontrol
**kcontrol
)
535 struct snd_soc_dapm_widget
*w
;
540 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
541 if (w
== kcontrolw
|| w
->dapm
!= kcontrolw
->dapm
)
543 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
544 if (&w
->kcontrol_news
[i
] == kcontrol_new
) {
546 *kcontrol
= w
->kcontrols
[i
];
556 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
557 * create it. Either way, add the widget into the control's widget list
559 static int dapm_create_or_share_mixmux_kcontrol(struct snd_soc_dapm_widget
*w
,
562 struct snd_soc_dapm_context
*dapm
= w
->dapm
;
563 struct snd_card
*card
= dapm
->card
->snd_card
;
567 struct snd_kcontrol
*kcontrol
;
568 bool wname_in_long_name
, kcname_in_long_name
;
574 prefix
= dapm
->codec
->name_prefix
;
579 prefix_len
= strlen(prefix
) + 1;
583 shared
= dapm_is_shared_kcontrol(dapm
, w
, &w
->kcontrol_news
[kci
],
588 wname_in_long_name
= false;
589 kcname_in_long_name
= true;
592 case snd_soc_dapm_switch
:
593 case snd_soc_dapm_mixer
:
594 wname_in_long_name
= true;
595 kcname_in_long_name
= true;
597 case snd_soc_dapm_mixer_named_ctl
:
598 wname_in_long_name
= false;
599 kcname_in_long_name
= true;
601 case snd_soc_dapm_mux
:
602 wname_in_long_name
= true;
603 kcname_in_long_name
= false;
610 if (wname_in_long_name
&& kcname_in_long_name
) {
612 * The control will get a prefix from the control
613 * creation process but we're also using the same
614 * prefix for widgets so cut the prefix off the
615 * front of the widget name.
617 long_name
= kasprintf(GFP_KERNEL
, "%s %s",
618 w
->name
+ prefix_len
,
619 w
->kcontrol_news
[kci
].name
);
620 if (long_name
== NULL
)
624 } else if (wname_in_long_name
) {
626 name
= w
->name
+ prefix_len
;
629 name
= w
->kcontrol_news
[kci
].name
;
632 kcontrol
= snd_soc_cnew(&w
->kcontrol_news
[kci
], NULL
, name
,
637 kcontrol
->private_free
= dapm_kcontrol_free
;
639 ret
= dapm_kcontrol_data_alloc(w
, kcontrol
);
641 snd_ctl_free_one(kcontrol
);
645 ret
= snd_ctl_add(card
, kcontrol
);
648 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
654 ret
= dapm_kcontrol_add_widget(kcontrol
, w
);
658 w
->kcontrols
[kci
] = kcontrol
;
663 /* create new dapm mixer control */
664 static int dapm_new_mixer(struct snd_soc_dapm_widget
*w
)
667 struct snd_soc_dapm_path
*path
;
670 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
672 list_for_each_entry(path
, &w
->sources
, list_sink
) {
673 /* mixer/mux paths name must match control name */
674 if (path
->name
!= (char *)w
->kcontrol_news
[i
].name
)
677 if (w
->kcontrols
[i
]) {
678 dapm_kcontrol_add_path(w
->kcontrols
[i
], path
);
682 ret
= dapm_create_or_share_mixmux_kcontrol(w
, i
);
686 dapm_kcontrol_add_path(w
->kcontrols
[i
], path
);
693 /* create new dapm mux control */
694 static int dapm_new_mux(struct snd_soc_dapm_widget
*w
)
696 struct snd_soc_dapm_context
*dapm
= w
->dapm
;
697 struct snd_soc_dapm_path
*path
;
700 if (w
->num_kcontrols
!= 1) {
702 "ASoC: mux %s has incorrect number of controls\n",
707 if (list_empty(&w
->sources
)) {
708 dev_err(dapm
->dev
, "ASoC: mux %s has no paths\n", w
->name
);
712 ret
= dapm_create_or_share_mixmux_kcontrol(w
, 0);
716 list_for_each_entry(path
, &w
->sources
, list_sink
)
717 dapm_kcontrol_add_path(w
->kcontrols
[0], path
);
722 /* create new dapm volume control */
723 static int dapm_new_pga(struct snd_soc_dapm_widget
*w
)
725 if (w
->num_kcontrols
)
726 dev_err(w
->dapm
->dev
,
727 "ASoC: PGA controls not supported: '%s'\n", w
->name
);
732 /* reset 'walked' bit for each dapm path */
733 static void dapm_clear_walk_output(struct snd_soc_dapm_context
*dapm
,
734 struct list_head
*sink
)
736 struct snd_soc_dapm_path
*p
;
738 list_for_each_entry(p
, sink
, list_source
) {
741 dapm_clear_walk_output(dapm
, &p
->sink
->sinks
);
746 static void dapm_clear_walk_input(struct snd_soc_dapm_context
*dapm
,
747 struct list_head
*source
)
749 struct snd_soc_dapm_path
*p
;
751 list_for_each_entry(p
, source
, list_sink
) {
754 dapm_clear_walk_input(dapm
, &p
->source
->sources
);
760 /* We implement power down on suspend by checking the power state of
761 * the ALSA card - when we are suspending the ALSA state for the card
764 static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget
*widget
)
766 int level
= snd_power_get_state(widget
->dapm
->card
->snd_card
);
769 case SNDRV_CTL_POWER_D3hot
:
770 case SNDRV_CTL_POWER_D3cold
:
771 if (widget
->ignore_suspend
)
772 dev_dbg(widget
->dapm
->dev
, "ASoC: %s ignoring suspend\n",
774 return widget
->ignore_suspend
;
780 /* add widget to list if it's not already in the list */
781 static int dapm_list_add_widget(struct snd_soc_dapm_widget_list
**list
,
782 struct snd_soc_dapm_widget
*w
)
784 struct snd_soc_dapm_widget_list
*wlist
;
785 int wlistsize
, wlistentries
, i
;
792 /* is this widget already in the list */
793 for (i
= 0; i
< wlist
->num_widgets
; i
++) {
794 if (wlist
->widgets
[i
] == w
)
798 /* allocate some new space */
799 wlistentries
= wlist
->num_widgets
+ 1;
800 wlistsize
= sizeof(struct snd_soc_dapm_widget_list
) +
801 wlistentries
* sizeof(struct snd_soc_dapm_widget
*);
802 *list
= krealloc(wlist
, wlistsize
, GFP_KERNEL
);
804 dev_err(w
->dapm
->dev
, "ASoC: can't allocate widget list for %s\n",
810 /* insert the widget */
811 dev_dbg(w
->dapm
->dev
, "ASoC: added %s in widget list pos %d\n",
812 w
->name
, wlist
->num_widgets
);
814 wlist
->widgets
[wlist
->num_widgets
] = w
;
815 wlist
->num_widgets
++;
820 * Recursively check for a completed path to an active or physically connected
821 * output widget. Returns number of complete paths.
823 static int is_connected_output_ep(struct snd_soc_dapm_widget
*widget
,
824 struct snd_soc_dapm_widget_list
**list
)
826 struct snd_soc_dapm_path
*path
;
829 if (widget
->outputs
>= 0)
830 return widget
->outputs
;
832 DAPM_UPDATE_STAT(widget
, path_checks
);
834 switch (widget
->id
) {
835 case snd_soc_dapm_supply
:
836 case snd_soc_dapm_regulator_supply
:
837 case snd_soc_dapm_clock_supply
:
838 case snd_soc_dapm_kcontrol
:
844 switch (widget
->id
) {
845 case snd_soc_dapm_adc
:
846 case snd_soc_dapm_aif_out
:
847 case snd_soc_dapm_dai_out
:
848 if (widget
->active
) {
849 widget
->outputs
= snd_soc_dapm_suspend_check(widget
);
850 return widget
->outputs
;
856 if (widget
->connected
) {
857 /* connected pin ? */
858 if (widget
->id
== snd_soc_dapm_output
&& !widget
->ext
) {
859 widget
->outputs
= snd_soc_dapm_suspend_check(widget
);
860 return widget
->outputs
;
863 /* connected jack or spk ? */
864 if (widget
->id
== snd_soc_dapm_hp
||
865 widget
->id
== snd_soc_dapm_spk
||
866 (widget
->id
== snd_soc_dapm_line
&&
867 !list_empty(&widget
->sources
))) {
868 widget
->outputs
= snd_soc_dapm_suspend_check(widget
);
869 return widget
->outputs
;
873 list_for_each_entry(path
, &widget
->sinks
, list_source
) {
874 DAPM_UPDATE_STAT(widget
, neighbour_checks
);
885 trace_snd_soc_dapm_output_path(widget
, path
);
887 if (path
->sink
&& path
->connect
) {
891 /* do we need to add this widget to the list ? */
894 err
= dapm_list_add_widget(list
, path
->sink
);
896 dev_err(widget
->dapm
->dev
,
897 "ASoC: could not add widget %s\n",
904 con
+= is_connected_output_ep(path
->sink
, list
);
910 widget
->outputs
= con
;
916 * Recursively check for a completed path to an active or physically connected
917 * input widget. Returns number of complete paths.
919 static int is_connected_input_ep(struct snd_soc_dapm_widget
*widget
,
920 struct snd_soc_dapm_widget_list
**list
)
922 struct snd_soc_dapm_path
*path
;
925 if (widget
->inputs
>= 0)
926 return widget
->inputs
;
928 DAPM_UPDATE_STAT(widget
, path_checks
);
930 switch (widget
->id
) {
931 case snd_soc_dapm_supply
:
932 case snd_soc_dapm_regulator_supply
:
933 case snd_soc_dapm_clock_supply
:
934 case snd_soc_dapm_kcontrol
:
940 /* active stream ? */
941 switch (widget
->id
) {
942 case snd_soc_dapm_dac
:
943 case snd_soc_dapm_aif_in
:
944 case snd_soc_dapm_dai_in
:
945 if (widget
->active
) {
946 widget
->inputs
= snd_soc_dapm_suspend_check(widget
);
947 return widget
->inputs
;
953 if (widget
->connected
) {
954 /* connected pin ? */
955 if (widget
->id
== snd_soc_dapm_input
&& !widget
->ext
) {
956 widget
->inputs
= snd_soc_dapm_suspend_check(widget
);
957 return widget
->inputs
;
960 /* connected VMID/Bias for lower pops */
961 if (widget
->id
== snd_soc_dapm_vmid
) {
962 widget
->inputs
= snd_soc_dapm_suspend_check(widget
);
963 return widget
->inputs
;
966 /* connected jack ? */
967 if (widget
->id
== snd_soc_dapm_mic
||
968 (widget
->id
== snd_soc_dapm_line
&&
969 !list_empty(&widget
->sinks
))) {
970 widget
->inputs
= snd_soc_dapm_suspend_check(widget
);
971 return widget
->inputs
;
974 /* signal generator */
975 if (widget
->id
== snd_soc_dapm_siggen
) {
976 widget
->inputs
= snd_soc_dapm_suspend_check(widget
);
977 return widget
->inputs
;
981 list_for_each_entry(path
, &widget
->sources
, list_sink
) {
982 DAPM_UPDATE_STAT(widget
, neighbour_checks
);
993 trace_snd_soc_dapm_input_path(widget
, path
);
995 if (path
->source
&& path
->connect
) {
999 /* do we need to add this widget to the list ? */
1002 err
= dapm_list_add_widget(list
, path
->source
);
1004 dev_err(widget
->dapm
->dev
,
1005 "ASoC: could not add widget %s\n",
1012 con
+= is_connected_input_ep(path
->source
, list
);
1018 widget
->inputs
= con
;
1024 * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1025 * @dai: the soc DAI.
1026 * @stream: stream direction.
1027 * @list: list of active widgets for this stream.
1029 * Queries DAPM graph as to whether an valid audio stream path exists for
1030 * the initial stream specified by name. This takes into account
1031 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1033 * Returns the number of valid paths or negative error.
1035 int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai
*dai
, int stream
,
1036 struct snd_soc_dapm_widget_list
**list
)
1038 struct snd_soc_card
*card
= dai
->card
;
1041 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
1044 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1045 paths
= is_connected_output_ep(dai
->playback_widget
, list
);
1046 dapm_clear_walk_output(&card
->dapm
,
1047 &dai
->playback_widget
->sinks
);
1049 paths
= is_connected_input_ep(dai
->capture_widget
, list
);
1050 dapm_clear_walk_input(&card
->dapm
,
1051 &dai
->capture_widget
->sources
);
1054 trace_snd_soc_dapm_connected(paths
, stream
);
1055 mutex_unlock(&card
->dapm_mutex
);
1061 * Handler for regulator supply widget.
1063 int dapm_regulator_event(struct snd_soc_dapm_widget
*w
,
1064 struct snd_kcontrol
*kcontrol
, int event
)
1068 soc_dapm_async_complete(w
->dapm
);
1070 if (SND_SOC_DAPM_EVENT_ON(event
)) {
1071 if (w
->on_val
& SND_SOC_DAPM_REGULATOR_BYPASS
) {
1072 ret
= regulator_allow_bypass(w
->regulator
, false);
1074 dev_warn(w
->dapm
->dev
,
1075 "ASoC: Failed to unbypass %s: %d\n",
1079 return regulator_enable(w
->regulator
);
1081 if (w
->on_val
& SND_SOC_DAPM_REGULATOR_BYPASS
) {
1082 ret
= regulator_allow_bypass(w
->regulator
, true);
1084 dev_warn(w
->dapm
->dev
,
1085 "ASoC: Failed to bypass %s: %d\n",
1089 return regulator_disable_deferred(w
->regulator
, w
->shift
);
1092 EXPORT_SYMBOL_GPL(dapm_regulator_event
);
1095 * Handler for clock supply widget.
1097 int dapm_clock_event(struct snd_soc_dapm_widget
*w
,
1098 struct snd_kcontrol
*kcontrol
, int event
)
1103 soc_dapm_async_complete(w
->dapm
);
1105 #ifdef CONFIG_HAVE_CLK
1106 if (SND_SOC_DAPM_EVENT_ON(event
)) {
1107 return clk_prepare_enable(w
->clk
);
1109 clk_disable_unprepare(w
->clk
);
1115 EXPORT_SYMBOL_GPL(dapm_clock_event
);
1117 static int dapm_widget_power_check(struct snd_soc_dapm_widget
*w
)
1119 if (w
->power_checked
)
1120 return w
->new_power
;
1125 w
->new_power
= w
->power_check(w
);
1127 w
->power_checked
= true;
1129 return w
->new_power
;
1132 /* Generic check to see if a widget should be powered.
1134 static int dapm_generic_check_power(struct snd_soc_dapm_widget
*w
)
1138 DAPM_UPDATE_STAT(w
, power_checks
);
1140 in
= is_connected_input_ep(w
, NULL
);
1141 dapm_clear_walk_input(w
->dapm
, &w
->sources
);
1142 out
= is_connected_output_ep(w
, NULL
);
1143 dapm_clear_walk_output(w
->dapm
, &w
->sinks
);
1144 return out
!= 0 && in
!= 0;
1147 /* Check to see if an ADC has power */
1148 static int dapm_adc_check_power(struct snd_soc_dapm_widget
*w
)
1152 DAPM_UPDATE_STAT(w
, power_checks
);
1155 in
= is_connected_input_ep(w
, NULL
);
1156 dapm_clear_walk_input(w
->dapm
, &w
->sources
);
1159 return dapm_generic_check_power(w
);
1163 /* Check to see if a DAC has power */
1164 static int dapm_dac_check_power(struct snd_soc_dapm_widget
*w
)
1168 DAPM_UPDATE_STAT(w
, power_checks
);
1171 out
= is_connected_output_ep(w
, NULL
);
1172 dapm_clear_walk_output(w
->dapm
, &w
->sinks
);
1175 return dapm_generic_check_power(w
);
1179 /* Check to see if a power supply is needed */
1180 static int dapm_supply_check_power(struct snd_soc_dapm_widget
*w
)
1182 struct snd_soc_dapm_path
*path
;
1184 DAPM_UPDATE_STAT(w
, power_checks
);
1186 /* Check if one of our outputs is connected */
1187 list_for_each_entry(path
, &w
->sinks
, list_source
) {
1188 DAPM_UPDATE_STAT(w
, neighbour_checks
);
1193 if (path
->connected
&&
1194 !path
->connected(path
->source
, path
->sink
))
1200 if (dapm_widget_power_check(path
->sink
))
1207 static int dapm_always_on_check_power(struct snd_soc_dapm_widget
*w
)
1212 static int dapm_seq_compare(struct snd_soc_dapm_widget
*a
,
1213 struct snd_soc_dapm_widget
*b
,
1221 sort
= dapm_down_seq
;
1223 if (sort
[a
->id
] != sort
[b
->id
])
1224 return sort
[a
->id
] - sort
[b
->id
];
1225 if (a
->subseq
!= b
->subseq
) {
1227 return a
->subseq
- b
->subseq
;
1229 return b
->subseq
- a
->subseq
;
1231 if (a
->reg
!= b
->reg
)
1232 return a
->reg
- b
->reg
;
1233 if (a
->dapm
!= b
->dapm
)
1234 return (unsigned long)a
->dapm
- (unsigned long)b
->dapm
;
1239 /* Insert a widget in order into a DAPM power sequence. */
1240 static void dapm_seq_insert(struct snd_soc_dapm_widget
*new_widget
,
1241 struct list_head
*list
,
1244 struct snd_soc_dapm_widget
*w
;
1246 list_for_each_entry(w
, list
, power_list
)
1247 if (dapm_seq_compare(new_widget
, w
, power_up
) < 0) {
1248 list_add_tail(&new_widget
->power_list
, &w
->power_list
);
1252 list_add_tail(&new_widget
->power_list
, list
);
1255 static void dapm_seq_check_event(struct snd_soc_card
*card
,
1256 struct snd_soc_dapm_widget
*w
, int event
)
1258 const char *ev_name
;
1262 case SND_SOC_DAPM_PRE_PMU
:
1263 ev_name
= "PRE_PMU";
1266 case SND_SOC_DAPM_POST_PMU
:
1267 ev_name
= "POST_PMU";
1270 case SND_SOC_DAPM_PRE_PMD
:
1271 ev_name
= "PRE_PMD";
1274 case SND_SOC_DAPM_POST_PMD
:
1275 ev_name
= "POST_PMD";
1278 case SND_SOC_DAPM_WILL_PMU
:
1279 ev_name
= "WILL_PMU";
1282 case SND_SOC_DAPM_WILL_PMD
:
1283 ev_name
= "WILL_PMD";
1287 WARN(1, "Unknown event %d\n", event
);
1291 if (w
->new_power
!= power
)
1294 if (w
->event
&& (w
->event_flags
& event
)) {
1295 pop_dbg(w
->dapm
->dev
, card
->pop_time
, "pop test : %s %s\n",
1297 soc_dapm_async_complete(w
->dapm
);
1298 trace_snd_soc_dapm_widget_event_start(w
, event
);
1299 ret
= w
->event(w
, NULL
, event
);
1300 trace_snd_soc_dapm_widget_event_done(w
, event
);
1302 dev_err(w
->dapm
->dev
, "ASoC: %s: %s event failed: %d\n",
1303 ev_name
, w
->name
, ret
);
1307 /* Apply the coalesced changes from a DAPM sequence */
1308 static void dapm_seq_run_coalesced(struct snd_soc_card
*card
,
1309 struct list_head
*pending
)
1311 struct snd_soc_dapm_widget
*w
;
1313 unsigned int value
= 0;
1314 unsigned int mask
= 0;
1316 reg
= list_first_entry(pending
, struct snd_soc_dapm_widget
,
1319 list_for_each_entry(w
, pending
, power_list
) {
1320 WARN_ON(reg
!= w
->reg
);
1321 w
->power
= w
->new_power
;
1323 mask
|= w
->mask
<< w
->shift
;
1325 value
|= w
->on_val
<< w
->shift
;
1327 value
|= w
->off_val
<< w
->shift
;
1329 pop_dbg(w
->dapm
->dev
, card
->pop_time
,
1330 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1331 w
->name
, reg
, value
, mask
);
1333 /* Check for events */
1334 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_PRE_PMU
);
1335 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_PRE_PMD
);
1339 /* Any widget will do, they should all be updating the
1342 w
= list_first_entry(pending
, struct snd_soc_dapm_widget
,
1345 pop_dbg(w
->dapm
->dev
, card
->pop_time
,
1346 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
1347 value
, mask
, reg
, card
->pop_time
);
1348 pop_wait(card
->pop_time
);
1349 soc_widget_update_bits(w
, reg
, mask
, value
);
1352 list_for_each_entry(w
, pending
, power_list
) {
1353 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_POST_PMU
);
1354 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_POST_PMD
);
1358 /* Apply a DAPM power sequence.
1360 * We walk over a pre-sorted list of widgets to apply power to. In
1361 * order to minimise the number of writes to the device required
1362 * multiple widgets will be updated in a single write where possible.
1363 * Currently anything that requires more than a single write is not
1366 static void dapm_seq_run(struct snd_soc_card
*card
,
1367 struct list_head
*list
, int event
, bool power_up
)
1369 struct snd_soc_dapm_widget
*w
, *n
;
1370 struct snd_soc_dapm_context
*d
;
1373 int cur_subseq
= -1;
1374 int cur_reg
= SND_SOC_NOPM
;
1375 struct snd_soc_dapm_context
*cur_dapm
= NULL
;
1382 sort
= dapm_down_seq
;
1384 list_for_each_entry_safe(w
, n
, list
, power_list
) {
1387 /* Do we need to apply any queued changes? */
1388 if (sort
[w
->id
] != cur_sort
|| w
->reg
!= cur_reg
||
1389 w
->dapm
!= cur_dapm
|| w
->subseq
!= cur_subseq
) {
1390 if (!list_empty(&pending
))
1391 dapm_seq_run_coalesced(card
, &pending
);
1393 if (cur_dapm
&& cur_dapm
->seq_notifier
) {
1394 for (i
= 0; i
< ARRAY_SIZE(dapm_up_seq
); i
++)
1395 if (sort
[i
] == cur_sort
)
1396 cur_dapm
->seq_notifier(cur_dapm
,
1401 if (cur_dapm
&& w
->dapm
!= cur_dapm
)
1402 soc_dapm_async_complete(cur_dapm
);
1404 INIT_LIST_HEAD(&pending
);
1406 cur_subseq
= INT_MIN
;
1407 cur_reg
= SND_SOC_NOPM
;
1412 case snd_soc_dapm_pre
:
1414 list_for_each_entry_safe_continue(w
, n
, list
,
1417 if (event
== SND_SOC_DAPM_STREAM_START
)
1419 NULL
, SND_SOC_DAPM_PRE_PMU
);
1420 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
1422 NULL
, SND_SOC_DAPM_PRE_PMD
);
1425 case snd_soc_dapm_post
:
1427 list_for_each_entry_safe_continue(w
, n
, list
,
1430 if (event
== SND_SOC_DAPM_STREAM_START
)
1432 NULL
, SND_SOC_DAPM_POST_PMU
);
1433 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
1435 NULL
, SND_SOC_DAPM_POST_PMD
);
1439 /* Queue it up for application */
1440 cur_sort
= sort
[w
->id
];
1441 cur_subseq
= w
->subseq
;
1444 list_move(&w
->power_list
, &pending
);
1449 dev_err(w
->dapm
->dev
,
1450 "ASoC: Failed to apply widget power: %d\n", ret
);
1453 if (!list_empty(&pending
))
1454 dapm_seq_run_coalesced(card
, &pending
);
1456 if (cur_dapm
&& cur_dapm
->seq_notifier
) {
1457 for (i
= 0; i
< ARRAY_SIZE(dapm_up_seq
); i
++)
1458 if (sort
[i
] == cur_sort
)
1459 cur_dapm
->seq_notifier(cur_dapm
,
1463 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1464 soc_dapm_async_complete(d
);
1468 static void dapm_widget_update(struct snd_soc_card
*card
)
1470 struct snd_soc_dapm_update
*update
= card
->update
;
1471 struct snd_soc_dapm_widget_list
*wlist
;
1472 struct snd_soc_dapm_widget
*w
= NULL
;
1476 if (!update
|| !dapm_kcontrol_is_powered(update
->kcontrol
))
1479 wlist
= dapm_kcontrol_get_wlist(update
->kcontrol
);
1481 for (wi
= 0; wi
< wlist
->num_widgets
; wi
++) {
1482 w
= wlist
->widgets
[wi
];
1484 if (w
->event
&& (w
->event_flags
& SND_SOC_DAPM_PRE_REG
)) {
1485 ret
= w
->event(w
, update
->kcontrol
, SND_SOC_DAPM_PRE_REG
);
1487 dev_err(w
->dapm
->dev
, "ASoC: %s DAPM pre-event failed: %d\n",
1495 ret
= soc_widget_update_bits(w
, update
->reg
, update
->mask
, update
->val
);
1497 dev_err(w
->dapm
->dev
, "ASoC: %s DAPM update failed: %d\n",
1500 for (wi
= 0; wi
< wlist
->num_widgets
; wi
++) {
1501 w
= wlist
->widgets
[wi
];
1503 if (w
->event
&& (w
->event_flags
& SND_SOC_DAPM_POST_REG
)) {
1504 ret
= w
->event(w
, update
->kcontrol
, SND_SOC_DAPM_POST_REG
);
1506 dev_err(w
->dapm
->dev
, "ASoC: %s DAPM post-event failed: %d\n",
1512 /* Async callback run prior to DAPM sequences - brings to _PREPARE if
1513 * they're changing state.
1515 static void dapm_pre_sequence_async(void *data
, async_cookie_t cookie
)
1517 struct snd_soc_dapm_context
*d
= data
;
1520 /* If we're off and we're not supposed to be go into STANDBY */
1521 if (d
->bias_level
== SND_SOC_BIAS_OFF
&&
1522 d
->target_bias_level
!= SND_SOC_BIAS_OFF
) {
1524 pm_runtime_get_sync(d
->dev
);
1526 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_STANDBY
);
1529 "ASoC: Failed to turn on bias: %d\n", ret
);
1532 /* Prepare for a transition to ON or away from ON */
1533 if ((d
->target_bias_level
== SND_SOC_BIAS_ON
&&
1534 d
->bias_level
!= SND_SOC_BIAS_ON
) ||
1535 (d
->target_bias_level
!= SND_SOC_BIAS_ON
&&
1536 d
->bias_level
== SND_SOC_BIAS_ON
)) {
1537 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_PREPARE
);
1540 "ASoC: Failed to prepare bias: %d\n", ret
);
1544 /* Async callback run prior to DAPM sequences - brings to their final
1547 static void dapm_post_sequence_async(void *data
, async_cookie_t cookie
)
1549 struct snd_soc_dapm_context
*d
= data
;
1552 /* If we just powered the last thing off drop to standby bias */
1553 if (d
->bias_level
== SND_SOC_BIAS_PREPARE
&&
1554 (d
->target_bias_level
== SND_SOC_BIAS_STANDBY
||
1555 d
->target_bias_level
== SND_SOC_BIAS_OFF
)) {
1556 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_STANDBY
);
1558 dev_err(d
->dev
, "ASoC: Failed to apply standby bias: %d\n",
1562 /* If we're in standby and can support bias off then do that */
1563 if (d
->bias_level
== SND_SOC_BIAS_STANDBY
&&
1564 d
->target_bias_level
== SND_SOC_BIAS_OFF
) {
1565 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_OFF
);
1567 dev_err(d
->dev
, "ASoC: Failed to turn off bias: %d\n",
1571 pm_runtime_put(d
->dev
);
1574 /* If we just powered up then move to active bias */
1575 if (d
->bias_level
== SND_SOC_BIAS_PREPARE
&&
1576 d
->target_bias_level
== SND_SOC_BIAS_ON
) {
1577 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_ON
);
1579 dev_err(d
->dev
, "ASoC: Failed to apply active bias: %d\n",
1584 static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget
*peer
,
1585 bool power
, bool connect
)
1587 /* If a connection is being made or broken then that update
1588 * will have marked the peer dirty, otherwise the widgets are
1589 * not connected and this update has no impact. */
1593 /* If the peer is already in the state we're moving to then we
1594 * won't have an impact on it. */
1595 if (power
!= peer
->power
)
1596 dapm_mark_dirty(peer
, "peer state change");
1599 static void dapm_widget_set_power(struct snd_soc_dapm_widget
*w
, bool power
,
1600 struct list_head
*up_list
,
1601 struct list_head
*down_list
)
1603 struct snd_soc_dapm_path
*path
;
1605 if (w
->power
== power
)
1608 trace_snd_soc_dapm_widget_power(w
, power
);
1610 /* If we changed our power state perhaps our neigbours changed
1613 list_for_each_entry(path
, &w
->sources
, list_sink
) {
1615 dapm_widget_set_peer_power(path
->source
, power
,
1620 case snd_soc_dapm_supply
:
1621 case snd_soc_dapm_regulator_supply
:
1622 case snd_soc_dapm_clock_supply
:
1623 case snd_soc_dapm_kcontrol
:
1624 /* Supplies can't affect their outputs, only their inputs */
1627 list_for_each_entry(path
, &w
->sinks
, list_source
) {
1629 dapm_widget_set_peer_power(path
->sink
, power
,
1637 dapm_seq_insert(w
, up_list
, true);
1639 dapm_seq_insert(w
, down_list
, false);
1642 static void dapm_power_one_widget(struct snd_soc_dapm_widget
*w
,
1643 struct list_head
*up_list
,
1644 struct list_head
*down_list
)
1649 case snd_soc_dapm_pre
:
1650 dapm_seq_insert(w
, down_list
, false);
1652 case snd_soc_dapm_post
:
1653 dapm_seq_insert(w
, up_list
, true);
1657 power
= dapm_widget_power_check(w
);
1659 dapm_widget_set_power(w
, power
, up_list
, down_list
);
1665 * Scan each dapm widget for complete audio path.
1666 * A complete path is a route that has valid endpoints i.e.:-
1668 * o DAC to output pin.
1669 * o Input Pin to ADC.
1670 * o Input pin to Output pin (bypass, sidetone)
1671 * o DAC to ADC (loopback).
1673 static int dapm_power_widgets(struct snd_soc_card
*card
, int event
)
1675 struct snd_soc_dapm_widget
*w
;
1676 struct snd_soc_dapm_context
*d
;
1678 LIST_HEAD(down_list
);
1679 ASYNC_DOMAIN_EXCLUSIVE(async_domain
);
1680 enum snd_soc_bias_level bias
;
1682 lockdep_assert_held(&card
->dapm_mutex
);
1684 trace_snd_soc_dapm_start(card
);
1686 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1687 if (d
->idle_bias_off
)
1688 d
->target_bias_level
= SND_SOC_BIAS_OFF
;
1690 d
->target_bias_level
= SND_SOC_BIAS_STANDBY
;
1695 /* Check which widgets we need to power and store them in
1696 * lists indicating if they should be powered up or down. We
1697 * only check widgets that have been flagged as dirty but note
1698 * that new widgets may be added to the dirty list while we
1701 list_for_each_entry(w
, &card
->dapm_dirty
, dirty
) {
1702 dapm_power_one_widget(w
, &up_list
, &down_list
);
1705 list_for_each_entry(w
, &card
->widgets
, list
) {
1707 case snd_soc_dapm_pre
:
1708 case snd_soc_dapm_post
:
1709 /* These widgets always need to be powered */
1712 list_del_init(&w
->dirty
);
1719 /* Supplies and micbiases only bring the
1720 * context up to STANDBY as unless something
1721 * else is active and passing audio they
1722 * generally don't require full power. Signal
1723 * generators are virtual pins and have no
1724 * power impact themselves.
1727 case snd_soc_dapm_siggen
:
1728 case snd_soc_dapm_vmid
:
1730 case snd_soc_dapm_supply
:
1731 case snd_soc_dapm_regulator_supply
:
1732 case snd_soc_dapm_clock_supply
:
1733 case snd_soc_dapm_micbias
:
1734 if (d
->target_bias_level
< SND_SOC_BIAS_STANDBY
)
1735 d
->target_bias_level
= SND_SOC_BIAS_STANDBY
;
1738 d
->target_bias_level
= SND_SOC_BIAS_ON
;
1745 /* Force all contexts in the card to the same bias state if
1746 * they're not ground referenced.
1748 bias
= SND_SOC_BIAS_OFF
;
1749 list_for_each_entry(d
, &card
->dapm_list
, list
)
1750 if (d
->target_bias_level
> bias
)
1751 bias
= d
->target_bias_level
;
1752 list_for_each_entry(d
, &card
->dapm_list
, list
)
1753 if (!d
->idle_bias_off
)
1754 d
->target_bias_level
= bias
;
1756 trace_snd_soc_dapm_walk_done(card
);
1758 /* Run card bias changes at first */
1759 dapm_pre_sequence_async(&card
->dapm
, 0);
1760 /* Run other bias changes in parallel */
1761 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1762 if (d
!= &card
->dapm
)
1763 async_schedule_domain(dapm_pre_sequence_async
, d
,
1766 async_synchronize_full_domain(&async_domain
);
1768 list_for_each_entry(w
, &down_list
, power_list
) {
1769 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_WILL_PMD
);
1772 list_for_each_entry(w
, &up_list
, power_list
) {
1773 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_WILL_PMU
);
1776 /* Power down widgets first; try to avoid amplifying pops. */
1777 dapm_seq_run(card
, &down_list
, event
, false);
1779 dapm_widget_update(card
);
1782 dapm_seq_run(card
, &up_list
, event
, true);
1784 /* Run all the bias changes in parallel */
1785 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1786 if (d
!= &card
->dapm
)
1787 async_schedule_domain(dapm_post_sequence_async
, d
,
1790 async_synchronize_full_domain(&async_domain
);
1791 /* Run card bias changes at last */
1792 dapm_post_sequence_async(&card
->dapm
, 0);
1794 /* do we need to notify any clients that DAPM event is complete */
1795 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1796 if (d
->stream_event
)
1797 d
->stream_event(d
, event
);
1800 pop_dbg(card
->dev
, card
->pop_time
,
1801 "DAPM sequencing finished, waiting %dms\n", card
->pop_time
);
1802 pop_wait(card
->pop_time
);
1804 trace_snd_soc_dapm_done(card
);
1809 #ifdef CONFIG_DEBUG_FS
1810 static ssize_t
dapm_widget_power_read_file(struct file
*file
,
1811 char __user
*user_buf
,
1812 size_t count
, loff_t
*ppos
)
1814 struct snd_soc_dapm_widget
*w
= file
->private_data
;
1818 struct snd_soc_dapm_path
*p
= NULL
;
1820 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
1824 in
= is_connected_input_ep(w
, NULL
);
1825 dapm_clear_walk_input(w
->dapm
, &w
->sources
);
1826 out
= is_connected_output_ep(w
, NULL
);
1827 dapm_clear_walk_output(w
->dapm
, &w
->sinks
);
1829 ret
= snprintf(buf
, PAGE_SIZE
, "%s: %s%s in %d out %d",
1830 w
->name
, w
->power
? "On" : "Off",
1831 w
->force
? " (forced)" : "", in
, out
);
1834 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1835 " - R%d(0x%x) mask 0x%x",
1836 w
->reg
, w
->reg
, w
->mask
<< w
->shift
);
1838 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "\n");
1841 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, " stream %s %s\n",
1843 w
->active
? "active" : "inactive");
1845 list_for_each_entry(p
, &w
->sources
, list_sink
) {
1846 if (p
->connected
&& !p
->connected(w
, p
->source
))
1850 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1851 " in \"%s\" \"%s\"\n",
1852 p
->name
? p
->name
: "static",
1855 list_for_each_entry(p
, &w
->sinks
, list_source
) {
1856 if (p
->connected
&& !p
->connected(w
, p
->sink
))
1860 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1861 " out \"%s\" \"%s\"\n",
1862 p
->name
? p
->name
: "static",
1866 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
1872 static const struct file_operations dapm_widget_power_fops
= {
1873 .open
= simple_open
,
1874 .read
= dapm_widget_power_read_file
,
1875 .llseek
= default_llseek
,
1878 static ssize_t
dapm_bias_read_file(struct file
*file
, char __user
*user_buf
,
1879 size_t count
, loff_t
*ppos
)
1881 struct snd_soc_dapm_context
*dapm
= file
->private_data
;
1884 switch (dapm
->bias_level
) {
1885 case SND_SOC_BIAS_ON
:
1888 case SND_SOC_BIAS_PREPARE
:
1889 level
= "Prepare\n";
1891 case SND_SOC_BIAS_STANDBY
:
1892 level
= "Standby\n";
1894 case SND_SOC_BIAS_OFF
:
1898 WARN(1, "Unknown bias_level %d\n", dapm
->bias_level
);
1899 level
= "Unknown\n";
1903 return simple_read_from_buffer(user_buf
, count
, ppos
, level
,
1907 static const struct file_operations dapm_bias_fops
= {
1908 .open
= simple_open
,
1909 .read
= dapm_bias_read_file
,
1910 .llseek
= default_llseek
,
1913 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context
*dapm
,
1914 struct dentry
*parent
)
1918 dapm
->debugfs_dapm
= debugfs_create_dir("dapm", parent
);
1920 if (!dapm
->debugfs_dapm
) {
1922 "ASoC: Failed to create DAPM debugfs directory\n");
1926 d
= debugfs_create_file("bias_level", 0444,
1927 dapm
->debugfs_dapm
, dapm
,
1931 "ASoC: Failed to create bias level debugfs file\n");
1934 static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget
*w
)
1936 struct snd_soc_dapm_context
*dapm
= w
->dapm
;
1939 if (!dapm
->debugfs_dapm
|| !w
->name
)
1942 d
= debugfs_create_file(w
->name
, 0444,
1943 dapm
->debugfs_dapm
, w
,
1944 &dapm_widget_power_fops
);
1946 dev_warn(w
->dapm
->dev
,
1947 "ASoC: Failed to create %s debugfs file\n",
1951 static void dapm_debugfs_cleanup(struct snd_soc_dapm_context
*dapm
)
1953 debugfs_remove_recursive(dapm
->debugfs_dapm
);
1957 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context
*dapm
,
1958 struct dentry
*parent
)
1962 static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget
*w
)
1966 static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context
*dapm
)
1972 /* test and update the power status of a mux widget */
1973 static int soc_dapm_mux_update_power(struct snd_soc_card
*card
,
1974 struct snd_kcontrol
*kcontrol
, int mux
, struct soc_enum
*e
)
1976 struct snd_soc_dapm_path
*path
;
1979 lockdep_assert_held(&card
->dapm_mutex
);
1981 /* find dapm widget path assoc with kcontrol */
1982 dapm_kcontrol_for_each_path(path
, kcontrol
) {
1983 if (!path
->name
|| !e
->texts
[mux
])
1987 /* we now need to match the string in the enum to the path */
1988 if (!(strcmp(path
->name
, e
->texts
[mux
]))) {
1989 path
->connect
= 1; /* new connection */
1990 dapm_mark_dirty(path
->source
, "mux connection");
1993 dapm_mark_dirty(path
->source
,
1994 "mux disconnection");
1995 path
->connect
= 0; /* old connection must be powered down */
1997 dapm_mark_dirty(path
->sink
, "mux change");
2001 dapm_power_widgets(card
, SND_SOC_DAPM_STREAM_NOP
);
2006 int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context
*dapm
,
2007 struct snd_kcontrol
*kcontrol
, int mux
, struct soc_enum
*e
,
2008 struct snd_soc_dapm_update
*update
)
2010 struct snd_soc_card
*card
= dapm
->card
;
2013 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2014 card
->update
= update
;
2015 ret
= soc_dapm_mux_update_power(card
, kcontrol
, mux
, e
);
2016 card
->update
= NULL
;
2017 mutex_unlock(&card
->dapm_mutex
);
2019 soc_dpcm_runtime_update(card
);
2022 EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power
);
2024 /* test and update the power status of a mixer or switch widget */
2025 static int soc_dapm_mixer_update_power(struct snd_soc_card
*card
,
2026 struct snd_kcontrol
*kcontrol
, int connect
)
2028 struct snd_soc_dapm_path
*path
;
2031 lockdep_assert_held(&card
->dapm_mutex
);
2033 /* find dapm widget path assoc with kcontrol */
2034 dapm_kcontrol_for_each_path(path
, kcontrol
) {
2036 path
->connect
= connect
;
2037 dapm_mark_dirty(path
->source
, "mixer connection");
2038 dapm_mark_dirty(path
->sink
, "mixer update");
2042 dapm_power_widgets(card
, SND_SOC_DAPM_STREAM_NOP
);
2047 int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context
*dapm
,
2048 struct snd_kcontrol
*kcontrol
, int connect
,
2049 struct snd_soc_dapm_update
*update
)
2051 struct snd_soc_card
*card
= dapm
->card
;
2054 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2055 card
->update
= update
;
2056 ret
= soc_dapm_mixer_update_power(card
, kcontrol
, connect
);
2057 card
->update
= NULL
;
2058 mutex_unlock(&card
->dapm_mutex
);
2060 soc_dpcm_runtime_update(card
);
2063 EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power
);
2065 /* show dapm widget status in sys fs */
2066 static ssize_t
dapm_widget_show(struct device
*dev
,
2067 struct device_attribute
*attr
, char *buf
)
2069 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
2070 struct snd_soc_codec
*codec
=rtd
->codec
;
2071 struct snd_soc_dapm_widget
*w
;
2073 char *state
= "not set";
2075 list_for_each_entry(w
, &codec
->card
->widgets
, list
) {
2076 if (w
->dapm
!= &codec
->dapm
)
2079 /* only display widgets that burnm power */
2081 case snd_soc_dapm_hp
:
2082 case snd_soc_dapm_mic
:
2083 case snd_soc_dapm_spk
:
2084 case snd_soc_dapm_line
:
2085 case snd_soc_dapm_micbias
:
2086 case snd_soc_dapm_dac
:
2087 case snd_soc_dapm_adc
:
2088 case snd_soc_dapm_pga
:
2089 case snd_soc_dapm_out_drv
:
2090 case snd_soc_dapm_mixer
:
2091 case snd_soc_dapm_mixer_named_ctl
:
2092 case snd_soc_dapm_supply
:
2093 case snd_soc_dapm_regulator_supply
:
2094 case snd_soc_dapm_clock_supply
:
2096 count
+= sprintf(buf
+ count
, "%s: %s\n",
2097 w
->name
, w
->power
? "On":"Off");
2104 switch (codec
->dapm
.bias_level
) {
2105 case SND_SOC_BIAS_ON
:
2108 case SND_SOC_BIAS_PREPARE
:
2111 case SND_SOC_BIAS_STANDBY
:
2114 case SND_SOC_BIAS_OFF
:
2118 count
+= sprintf(buf
+ count
, "PM State: %s\n", state
);
2123 static DEVICE_ATTR(dapm_widget
, 0444, dapm_widget_show
, NULL
);
2125 int snd_soc_dapm_sys_add(struct device
*dev
)
2127 return device_create_file(dev
, &dev_attr_dapm_widget
);
2130 static void snd_soc_dapm_sys_remove(struct device
*dev
)
2132 device_remove_file(dev
, &dev_attr_dapm_widget
);
2135 static void dapm_free_path(struct snd_soc_dapm_path
*path
)
2137 list_del(&path
->list_sink
);
2138 list_del(&path
->list_source
);
2139 list_del(&path
->list_kcontrol
);
2140 list_del(&path
->list
);
2144 /* free all dapm widgets and resources */
2145 static void dapm_free_widgets(struct snd_soc_dapm_context
*dapm
)
2147 struct snd_soc_dapm_widget
*w
, *next_w
;
2148 struct snd_soc_dapm_path
*p
, *next_p
;
2150 list_for_each_entry_safe(w
, next_w
, &dapm
->card
->widgets
, list
) {
2151 if (w
->dapm
!= dapm
)
2155 * remove source and sink paths associated to this widget.
2156 * While removing the path, remove reference to it from both
2157 * source and sink widgets so that path is removed only once.
2159 list_for_each_entry_safe(p
, next_p
, &w
->sources
, list_sink
)
2162 list_for_each_entry_safe(p
, next_p
, &w
->sinks
, list_source
)
2165 kfree(w
->kcontrols
);
2171 static struct snd_soc_dapm_widget
*dapm_find_widget(
2172 struct snd_soc_dapm_context
*dapm
, const char *pin
,
2173 bool search_other_contexts
)
2175 struct snd_soc_dapm_widget
*w
;
2176 struct snd_soc_dapm_widget
*fallback
= NULL
;
2178 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
2179 if (!strcmp(w
->name
, pin
)) {
2180 if (w
->dapm
== dapm
)
2187 if (search_other_contexts
)
2193 static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context
*dapm
,
2194 const char *pin
, int status
)
2196 struct snd_soc_dapm_widget
*w
= dapm_find_widget(dapm
, pin
, true);
2198 dapm_assert_locked(dapm
);
2201 dev_err(dapm
->dev
, "ASoC: DAPM unknown pin %s\n", pin
);
2205 if (w
->connected
!= status
)
2206 dapm_mark_dirty(w
, "pin configuration");
2208 w
->connected
= status
;
2216 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2217 * @dapm: DAPM context
2219 * Walks all dapm audio paths and powers widgets according to their
2220 * stream or path usage.
2222 * Requires external locking.
2224 * Returns 0 for success.
2226 int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context
*dapm
)
2229 * Suppress early reports (eg, jacks syncing their state) to avoid
2230 * silly DAPM runs during card startup.
2232 if (!dapm
->card
|| !dapm
->card
->instantiated
)
2235 return dapm_power_widgets(dapm
->card
, SND_SOC_DAPM_STREAM_NOP
);
2237 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked
);
2240 * snd_soc_dapm_sync - scan and power dapm paths
2241 * @dapm: DAPM context
2243 * Walks all dapm audio paths and powers widgets according to their
2244 * stream or path usage.
2246 * Returns 0 for success.
2248 int snd_soc_dapm_sync(struct snd_soc_dapm_context
*dapm
)
2252 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2253 ret
= snd_soc_dapm_sync_unlocked(dapm
);
2254 mutex_unlock(&dapm
->card
->dapm_mutex
);
2257 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync
);
2259 static int snd_soc_dapm_add_path(struct snd_soc_dapm_context
*dapm
,
2260 struct snd_soc_dapm_widget
*wsource
, struct snd_soc_dapm_widget
*wsink
,
2261 const char *control
,
2262 int (*connected
)(struct snd_soc_dapm_widget
*source
,
2263 struct snd_soc_dapm_widget
*sink
))
2265 struct snd_soc_dapm_path
*path
;
2268 path
= kzalloc(sizeof(struct snd_soc_dapm_path
), GFP_KERNEL
);
2272 path
->source
= wsource
;
2274 path
->connected
= connected
;
2275 INIT_LIST_HEAD(&path
->list
);
2276 INIT_LIST_HEAD(&path
->list_kcontrol
);
2277 INIT_LIST_HEAD(&path
->list_source
);
2278 INIT_LIST_HEAD(&path
->list_sink
);
2280 /* check for external widgets */
2281 if (wsink
->id
== snd_soc_dapm_input
) {
2282 if (wsource
->id
== snd_soc_dapm_micbias
||
2283 wsource
->id
== snd_soc_dapm_mic
||
2284 wsource
->id
== snd_soc_dapm_line
||
2285 wsource
->id
== snd_soc_dapm_output
)
2288 if (wsource
->id
== snd_soc_dapm_output
) {
2289 if (wsink
->id
== snd_soc_dapm_spk
||
2290 wsink
->id
== snd_soc_dapm_hp
||
2291 wsink
->id
== snd_soc_dapm_line
||
2292 wsink
->id
== snd_soc_dapm_input
)
2296 dapm_mark_dirty(wsource
, "Route added");
2297 dapm_mark_dirty(wsink
, "Route added");
2299 /* connect static paths */
2300 if (control
== NULL
) {
2301 list_add(&path
->list
, &dapm
->card
->paths
);
2302 list_add(&path
->list_sink
, &wsink
->sources
);
2303 list_add(&path
->list_source
, &wsource
->sinks
);
2308 /* connect dynamic paths */
2309 switch (wsink
->id
) {
2310 case snd_soc_dapm_adc
:
2311 case snd_soc_dapm_dac
:
2312 case snd_soc_dapm_pga
:
2313 case snd_soc_dapm_out_drv
:
2314 case snd_soc_dapm_input
:
2315 case snd_soc_dapm_output
:
2316 case snd_soc_dapm_siggen
:
2317 case snd_soc_dapm_micbias
:
2318 case snd_soc_dapm_vmid
:
2319 case snd_soc_dapm_pre
:
2320 case snd_soc_dapm_post
:
2321 case snd_soc_dapm_supply
:
2322 case snd_soc_dapm_regulator_supply
:
2323 case snd_soc_dapm_clock_supply
:
2324 case snd_soc_dapm_aif_in
:
2325 case snd_soc_dapm_aif_out
:
2326 case snd_soc_dapm_dai_in
:
2327 case snd_soc_dapm_dai_out
:
2328 case snd_soc_dapm_dai_link
:
2329 case snd_soc_dapm_kcontrol
:
2330 list_add(&path
->list
, &dapm
->card
->paths
);
2331 list_add(&path
->list_sink
, &wsink
->sources
);
2332 list_add(&path
->list_source
, &wsource
->sinks
);
2335 case snd_soc_dapm_mux
:
2336 ret
= dapm_connect_mux(dapm
, wsource
, wsink
, path
, control
,
2337 &wsink
->kcontrol_news
[0]);
2341 case snd_soc_dapm_switch
:
2342 case snd_soc_dapm_mixer
:
2343 case snd_soc_dapm_mixer_named_ctl
:
2344 ret
= dapm_connect_mixer(dapm
, wsource
, wsink
, path
, control
);
2348 case snd_soc_dapm_hp
:
2349 case snd_soc_dapm_mic
:
2350 case snd_soc_dapm_line
:
2351 case snd_soc_dapm_spk
:
2352 list_add(&path
->list
, &dapm
->card
->paths
);
2353 list_add(&path
->list_sink
, &wsink
->sources
);
2354 list_add(&path
->list_source
, &wsource
->sinks
);
2365 static int snd_soc_dapm_add_route(struct snd_soc_dapm_context
*dapm
,
2366 const struct snd_soc_dapm_route
*route
)
2368 struct snd_soc_dapm_widget
*wsource
= NULL
, *wsink
= NULL
, *w
;
2369 struct snd_soc_dapm_widget
*wtsource
= NULL
, *wtsink
= NULL
;
2372 char prefixed_sink
[80];
2373 char prefixed_source
[80];
2376 if (dapm
->codec
&& dapm
->codec
->name_prefix
) {
2377 snprintf(prefixed_sink
, sizeof(prefixed_sink
), "%s %s",
2378 dapm
->codec
->name_prefix
, route
->sink
);
2379 sink
= prefixed_sink
;
2380 snprintf(prefixed_source
, sizeof(prefixed_source
), "%s %s",
2381 dapm
->codec
->name_prefix
, route
->source
);
2382 source
= prefixed_source
;
2385 source
= route
->source
;
2389 * find src and dest widgets over all widgets but favor a widget from
2390 * current DAPM context
2392 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
2393 if (!wsink
&& !(strcmp(w
->name
, sink
))) {
2395 if (w
->dapm
== dapm
)
2399 if (!wsource
&& !(strcmp(w
->name
, source
))) {
2401 if (w
->dapm
== dapm
)
2405 /* use widget from another DAPM context if not found from this */
2411 if (wsource
== NULL
) {
2412 dev_err(dapm
->dev
, "ASoC: no source widget found for %s\n",
2416 if (wsink
== NULL
) {
2417 dev_err(dapm
->dev
, "ASoC: no sink widget found for %s\n",
2422 ret
= snd_soc_dapm_add_path(dapm
, wsource
, wsink
, route
->control
,
2429 dev_warn(dapm
->dev
, "ASoC: no dapm match for %s --> %s --> %s\n",
2430 source
, route
->control
, sink
);
2434 static int snd_soc_dapm_del_route(struct snd_soc_dapm_context
*dapm
,
2435 const struct snd_soc_dapm_route
*route
)
2437 struct snd_soc_dapm_path
*path
, *p
;
2440 char prefixed_sink
[80];
2441 char prefixed_source
[80];
2443 if (route
->control
) {
2445 "ASoC: Removal of routes with controls not supported\n");
2449 if (dapm
->codec
&& dapm
->codec
->name_prefix
) {
2450 snprintf(prefixed_sink
, sizeof(prefixed_sink
), "%s %s",
2451 dapm
->codec
->name_prefix
, route
->sink
);
2452 sink
= prefixed_sink
;
2453 snprintf(prefixed_source
, sizeof(prefixed_source
), "%s %s",
2454 dapm
->codec
->name_prefix
, route
->source
);
2455 source
= prefixed_source
;
2458 source
= route
->source
;
2462 list_for_each_entry(p
, &dapm
->card
->paths
, list
) {
2463 if (strcmp(p
->source
->name
, source
) != 0)
2465 if (strcmp(p
->sink
->name
, sink
) != 0)
2472 dapm_mark_dirty(path
->source
, "Route removed");
2473 dapm_mark_dirty(path
->sink
, "Route removed");
2475 dapm_free_path(path
);
2477 dev_warn(dapm
->dev
, "ASoC: Route %s->%s does not exist\n",
2485 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
2486 * @dapm: DAPM context
2487 * @route: audio routes
2488 * @num: number of routes
2490 * Connects 2 dapm widgets together via a named audio path. The sink is
2491 * the widget receiving the audio signal, whilst the source is the sender
2492 * of the audio signal.
2494 * Returns 0 for success else error. On error all resources can be freed
2495 * with a call to snd_soc_card_free().
2497 int snd_soc_dapm_add_routes(struct snd_soc_dapm_context
*dapm
,
2498 const struct snd_soc_dapm_route
*route
, int num
)
2502 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
2503 for (i
= 0; i
< num
; i
++) {
2504 r
= snd_soc_dapm_add_route(dapm
, route
);
2506 dev_err(dapm
->dev
, "ASoC: Failed to add route %s -> %s -> %s\n",
2508 route
->control
? route
->control
: "direct",
2514 mutex_unlock(&dapm
->card
->dapm_mutex
);
2518 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes
);
2521 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2522 * @dapm: DAPM context
2523 * @route: audio routes
2524 * @num: number of routes
2526 * Removes routes from the DAPM context.
2528 int snd_soc_dapm_del_routes(struct snd_soc_dapm_context
*dapm
,
2529 const struct snd_soc_dapm_route
*route
, int num
)
2533 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
2534 for (i
= 0; i
< num
; i
++) {
2535 snd_soc_dapm_del_route(dapm
, route
);
2538 mutex_unlock(&dapm
->card
->dapm_mutex
);
2542 EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes
);
2544 static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context
*dapm
,
2545 const struct snd_soc_dapm_route
*route
)
2547 struct snd_soc_dapm_widget
*source
= dapm_find_widget(dapm
,
2550 struct snd_soc_dapm_widget
*sink
= dapm_find_widget(dapm
,
2553 struct snd_soc_dapm_path
*path
;
2557 dev_err(dapm
->dev
, "ASoC: Unable to find source %s for weak route\n",
2563 dev_err(dapm
->dev
, "ASoC: Unable to find sink %s for weak route\n",
2568 if (route
->control
|| route
->connected
)
2569 dev_warn(dapm
->dev
, "ASoC: Ignoring control for weak route %s->%s\n",
2570 route
->source
, route
->sink
);
2572 list_for_each_entry(path
, &source
->sinks
, list_source
) {
2573 if (path
->sink
== sink
) {
2580 dev_err(dapm
->dev
, "ASoC: No path found for weak route %s->%s\n",
2581 route
->source
, route
->sink
);
2583 dev_warn(dapm
->dev
, "ASoC: %d paths found for weak route %s->%s\n",
2584 count
, route
->source
, route
->sink
);
2590 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2591 * @dapm: DAPM context
2592 * @route: audio routes
2593 * @num: number of routes
2595 * Mark existing routes matching those specified in the passed array
2596 * as being weak, meaning that they are ignored for the purpose of
2597 * power decisions. The main intended use case is for sidetone paths
2598 * which couple audio between other independent paths if they are both
2599 * active in order to make the combination work better at the user
2600 * level but which aren't intended to be "used".
2602 * Note that CODEC drivers should not use this as sidetone type paths
2603 * can frequently also be used as bypass paths.
2605 int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context
*dapm
,
2606 const struct snd_soc_dapm_route
*route
, int num
)
2611 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
2612 for (i
= 0; i
< num
; i
++) {
2613 err
= snd_soc_dapm_weak_route(dapm
, route
);
2618 mutex_unlock(&dapm
->card
->dapm_mutex
);
2622 EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes
);
2625 * snd_soc_dapm_new_widgets - add new dapm widgets
2626 * @dapm: DAPM context
2628 * Checks the codec for any new dapm widgets and creates them if found.
2630 * Returns 0 for success.
2632 int snd_soc_dapm_new_widgets(struct snd_soc_card
*card
)
2634 struct snd_soc_dapm_widget
*w
;
2637 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
2639 list_for_each_entry(w
, &card
->widgets
, list
)
2644 if (w
->num_kcontrols
) {
2645 w
->kcontrols
= kzalloc(w
->num_kcontrols
*
2646 sizeof(struct snd_kcontrol
*),
2648 if (!w
->kcontrols
) {
2649 mutex_unlock(&card
->dapm_mutex
);
2655 case snd_soc_dapm_switch
:
2656 case snd_soc_dapm_mixer
:
2657 case snd_soc_dapm_mixer_named_ctl
:
2660 case snd_soc_dapm_mux
:
2663 case snd_soc_dapm_pga
:
2664 case snd_soc_dapm_out_drv
:
2671 /* Read the initial power state from the device */
2673 soc_widget_read(w
, w
->reg
, &val
);
2674 val
= val
>> w
->shift
;
2676 if (val
== w
->on_val
)
2682 dapm_mark_dirty(w
, "new widget");
2683 dapm_debugfs_add_widget(w
);
2686 dapm_power_widgets(card
, SND_SOC_DAPM_STREAM_NOP
);
2687 mutex_unlock(&card
->dapm_mutex
);
2690 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets
);
2693 * snd_soc_dapm_get_volsw - dapm mixer get callback
2694 * @kcontrol: mixer control
2695 * @ucontrol: control element information
2697 * Callback to get the value of a dapm mixer control.
2699 * Returns 0 for success.
2701 int snd_soc_dapm_get_volsw(struct snd_kcontrol
*kcontrol
,
2702 struct snd_ctl_elem_value
*ucontrol
)
2704 struct snd_soc_codec
*codec
= snd_soc_dapm_kcontrol_codec(kcontrol
);
2705 struct snd_soc_card
*card
= codec
->card
;
2706 struct soc_mixer_control
*mc
=
2707 (struct soc_mixer_control
*)kcontrol
->private_value
;
2709 unsigned int shift
= mc
->shift
;
2711 unsigned int mask
= (1 << fls(max
)) - 1;
2712 unsigned int invert
= mc
->invert
;
2715 if (snd_soc_volsw_is_stereo(mc
))
2716 dev_warn(codec
->dapm
.dev
,
2717 "ASoC: Control '%s' is stereo, which is not supported\n",
2720 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2721 if (dapm_kcontrol_is_powered(kcontrol
) && reg
!= SND_SOC_NOPM
)
2722 val
= (snd_soc_read(codec
, reg
) >> shift
) & mask
;
2724 val
= dapm_kcontrol_get_value(kcontrol
);
2725 mutex_unlock(&card
->dapm_mutex
);
2728 ucontrol
->value
.integer
.value
[0] = max
- val
;
2730 ucontrol
->value
.integer
.value
[0] = val
;
2734 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw
);
2737 * snd_soc_dapm_put_volsw - dapm mixer set callback
2738 * @kcontrol: mixer control
2739 * @ucontrol: control element information
2741 * Callback to set the value of a dapm mixer control.
2743 * Returns 0 for success.
2745 int snd_soc_dapm_put_volsw(struct snd_kcontrol
*kcontrol
,
2746 struct snd_ctl_elem_value
*ucontrol
)
2748 struct snd_soc_codec
*codec
= snd_soc_dapm_kcontrol_codec(kcontrol
);
2749 struct snd_soc_card
*card
= codec
->card
;
2750 struct soc_mixer_control
*mc
=
2751 (struct soc_mixer_control
*)kcontrol
->private_value
;
2753 unsigned int shift
= mc
->shift
;
2755 unsigned int mask
= (1 << fls(max
)) - 1;
2756 unsigned int invert
= mc
->invert
;
2758 int connect
, change
, reg_change
= 0;
2759 struct snd_soc_dapm_update update
;
2762 if (snd_soc_volsw_is_stereo(mc
))
2763 dev_warn(codec
->dapm
.dev
,
2764 "ASoC: Control '%s' is stereo, which is not supported\n",
2767 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
2773 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2775 change
= dapm_kcontrol_set_value(kcontrol
, val
);
2777 if (reg
!= SND_SOC_NOPM
) {
2778 mask
= mask
<< shift
;
2781 reg_change
= snd_soc_test_bits(codec
, reg
, mask
, val
);
2784 if (change
|| reg_change
) {
2786 update
.kcontrol
= kcontrol
;
2790 card
->update
= &update
;
2792 change
|= reg_change
;
2794 ret
= soc_dapm_mixer_update_power(card
, kcontrol
, connect
);
2796 card
->update
= NULL
;
2799 mutex_unlock(&card
->dapm_mutex
);
2802 soc_dpcm_runtime_update(card
);
2806 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw
);
2809 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
2810 * @kcontrol: mixer control
2811 * @ucontrol: control element information
2813 * Callback to get the value of a dapm enumerated double mixer control.
2815 * Returns 0 for success.
2817 int snd_soc_dapm_get_enum_double(struct snd_kcontrol
*kcontrol
,
2818 struct snd_ctl_elem_value
*ucontrol
)
2820 struct snd_soc_codec
*codec
= snd_soc_dapm_kcontrol_codec(kcontrol
);
2821 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2822 unsigned int reg_val
, val
;
2824 if (e
->reg
!= SND_SOC_NOPM
)
2825 reg_val
= snd_soc_read(codec
, e
->reg
);
2827 reg_val
= dapm_kcontrol_get_value(kcontrol
);
2829 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
2830 ucontrol
->value
.enumerated
.item
[0] = snd_soc_enum_val_to_item(e
, val
);
2831 if (e
->shift_l
!= e
->shift_r
) {
2832 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
2833 val
= snd_soc_enum_val_to_item(e
, val
);
2834 ucontrol
->value
.enumerated
.item
[1] = val
;
2839 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double
);
2842 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
2843 * @kcontrol: mixer control
2844 * @ucontrol: control element information
2846 * Callback to set the value of a dapm enumerated double mixer control.
2848 * Returns 0 for success.
2850 int snd_soc_dapm_put_enum_double(struct snd_kcontrol
*kcontrol
,
2851 struct snd_ctl_elem_value
*ucontrol
)
2853 struct snd_soc_codec
*codec
= snd_soc_dapm_kcontrol_codec(kcontrol
);
2854 struct snd_soc_card
*card
= codec
->card
;
2855 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
2856 unsigned int *item
= ucontrol
->value
.enumerated
.item
;
2857 unsigned int val
, change
;
2859 struct snd_soc_dapm_update update
;
2862 if (item
[0] >= e
->items
)
2865 val
= snd_soc_enum_item_to_val(e
, item
[0]) << e
->shift_l
;
2866 mask
= e
->mask
<< e
->shift_l
;
2867 if (e
->shift_l
!= e
->shift_r
) {
2868 if (item
[1] > e
->items
)
2870 val
|= snd_soc_enum_item_to_val(e
, item
[1]) << e
->shift_l
;
2871 mask
|= e
->mask
<< e
->shift_r
;
2874 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2876 if (e
->reg
!= SND_SOC_NOPM
)
2877 change
= snd_soc_test_bits(codec
, e
->reg
, mask
, val
);
2879 change
= dapm_kcontrol_set_value(kcontrol
, val
);
2882 if (e
->reg
!= SND_SOC_NOPM
) {
2883 update
.kcontrol
= kcontrol
;
2884 update
.reg
= e
->reg
;
2887 card
->update
= &update
;
2890 ret
= soc_dapm_mux_update_power(card
, kcontrol
, item
[0], e
);
2892 card
->update
= NULL
;
2895 mutex_unlock(&card
->dapm_mutex
);
2898 soc_dpcm_runtime_update(card
);
2902 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double
);
2905 * snd_soc_dapm_info_pin_switch - Info for a pin switch
2907 * @kcontrol: mixer control
2908 * @uinfo: control element information
2910 * Callback to provide information about a pin switch control.
2912 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol
*kcontrol
,
2913 struct snd_ctl_elem_info
*uinfo
)
2915 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
2917 uinfo
->value
.integer
.min
= 0;
2918 uinfo
->value
.integer
.max
= 1;
2922 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch
);
2925 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
2927 * @kcontrol: mixer control
2930 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol
*kcontrol
,
2931 struct snd_ctl_elem_value
*ucontrol
)
2933 struct snd_soc_card
*card
= snd_kcontrol_chip(kcontrol
);
2934 const char *pin
= (const char *)kcontrol
->private_value
;
2936 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2938 ucontrol
->value
.integer
.value
[0] =
2939 snd_soc_dapm_get_pin_status(&card
->dapm
, pin
);
2941 mutex_unlock(&card
->dapm_mutex
);
2945 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch
);
2948 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
2950 * @kcontrol: mixer control
2953 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol
*kcontrol
,
2954 struct snd_ctl_elem_value
*ucontrol
)
2956 struct snd_soc_card
*card
= snd_kcontrol_chip(kcontrol
);
2957 const char *pin
= (const char *)kcontrol
->private_value
;
2959 if (ucontrol
->value
.integer
.value
[0])
2960 snd_soc_dapm_enable_pin(&card
->dapm
, pin
);
2962 snd_soc_dapm_disable_pin(&card
->dapm
, pin
);
2964 snd_soc_dapm_sync(&card
->dapm
);
2967 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch
);
2969 static struct snd_soc_dapm_widget
*
2970 snd_soc_dapm_new_control(struct snd_soc_dapm_context
*dapm
,
2971 const struct snd_soc_dapm_widget
*widget
)
2973 struct snd_soc_dapm_widget
*w
;
2976 if ((w
= dapm_cnew_widget(widget
)) == NULL
)
2980 case snd_soc_dapm_regulator_supply
:
2981 w
->regulator
= devm_regulator_get(dapm
->dev
, w
->name
);
2982 if (IS_ERR(w
->regulator
)) {
2983 ret
= PTR_ERR(w
->regulator
);
2984 dev_err(dapm
->dev
, "ASoC: Failed to request %s: %d\n",
2989 if (w
->on_val
& SND_SOC_DAPM_REGULATOR_BYPASS
) {
2990 ret
= regulator_allow_bypass(w
->regulator
, true);
2992 dev_warn(w
->dapm
->dev
,
2993 "ASoC: Failed to bypass %s: %d\n",
2997 case snd_soc_dapm_clock_supply
:
2998 #ifdef CONFIG_CLKDEV_LOOKUP
2999 w
->clk
= devm_clk_get(dapm
->dev
, w
->name
);
3000 if (IS_ERR(w
->clk
)) {
3001 ret
= PTR_ERR(w
->clk
);
3002 dev_err(dapm
->dev
, "ASoC: Failed to request %s: %d\n",
3014 if (dapm
->codec
&& dapm
->codec
->name_prefix
)
3015 w
->name
= kasprintf(GFP_KERNEL
, "%s %s",
3016 dapm
->codec
->name_prefix
, widget
->name
);
3018 w
->name
= kasprintf(GFP_KERNEL
, "%s", widget
->name
);
3020 if (w
->name
== NULL
) {
3026 case snd_soc_dapm_switch
:
3027 case snd_soc_dapm_mixer
:
3028 case snd_soc_dapm_mixer_named_ctl
:
3029 w
->power_check
= dapm_generic_check_power
;
3031 case snd_soc_dapm_mux
:
3032 w
->power_check
= dapm_generic_check_power
;
3034 case snd_soc_dapm_dai_out
:
3035 w
->power_check
= dapm_adc_check_power
;
3037 case snd_soc_dapm_dai_in
:
3038 w
->power_check
= dapm_dac_check_power
;
3040 case snd_soc_dapm_adc
:
3041 case snd_soc_dapm_aif_out
:
3042 case snd_soc_dapm_dac
:
3043 case snd_soc_dapm_aif_in
:
3044 case snd_soc_dapm_pga
:
3045 case snd_soc_dapm_out_drv
:
3046 case snd_soc_dapm_input
:
3047 case snd_soc_dapm_output
:
3048 case snd_soc_dapm_micbias
:
3049 case snd_soc_dapm_spk
:
3050 case snd_soc_dapm_hp
:
3051 case snd_soc_dapm_mic
:
3052 case snd_soc_dapm_line
:
3053 case snd_soc_dapm_dai_link
:
3054 w
->power_check
= dapm_generic_check_power
;
3056 case snd_soc_dapm_supply
:
3057 case snd_soc_dapm_regulator_supply
:
3058 case snd_soc_dapm_clock_supply
:
3059 case snd_soc_dapm_kcontrol
:
3060 w
->power_check
= dapm_supply_check_power
;
3063 w
->power_check
= dapm_always_on_check_power
;
3068 w
->codec
= dapm
->codec
;
3069 w
->platform
= dapm
->platform
;
3070 INIT_LIST_HEAD(&w
->sources
);
3071 INIT_LIST_HEAD(&w
->sinks
);
3072 INIT_LIST_HEAD(&w
->list
);
3073 INIT_LIST_HEAD(&w
->dirty
);
3074 list_add(&w
->list
, &dapm
->card
->widgets
);
3076 /* machine layer set ups unconnected pins and insertions */
3082 * snd_soc_dapm_new_controls - create new dapm controls
3083 * @dapm: DAPM context
3084 * @widget: widget array
3085 * @num: number of widgets
3087 * Creates new DAPM controls based upon the templates.
3089 * Returns 0 for success else error.
3091 int snd_soc_dapm_new_controls(struct snd_soc_dapm_context
*dapm
,
3092 const struct snd_soc_dapm_widget
*widget
,
3095 struct snd_soc_dapm_widget
*w
;
3099 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
3100 for (i
= 0; i
< num
; i
++) {
3101 w
= snd_soc_dapm_new_control(dapm
, widget
);
3104 "ASoC: Failed to create DAPM control %s\n",
3111 mutex_unlock(&dapm
->card
->dapm_mutex
);
3114 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls
);
3116 static int snd_soc_dai_link_event(struct snd_soc_dapm_widget
*w
,
3117 struct snd_kcontrol
*kcontrol
, int event
)
3119 struct snd_soc_dapm_path
*source_p
, *sink_p
;
3120 struct snd_soc_dai
*source
, *sink
;
3121 const struct snd_soc_pcm_stream
*config
= w
->params
;
3122 struct snd_pcm_substream substream
;
3123 struct snd_pcm_hw_params
*params
= NULL
;
3127 if (WARN_ON(!config
) ||
3128 WARN_ON(list_empty(&w
->sources
) || list_empty(&w
->sinks
)))
3131 /* We only support a single source and sink, pick the first */
3132 source_p
= list_first_entry(&w
->sources
, struct snd_soc_dapm_path
,
3134 sink_p
= list_first_entry(&w
->sinks
, struct snd_soc_dapm_path
,
3137 if (WARN_ON(!source_p
|| !sink_p
) ||
3138 WARN_ON(!sink_p
->source
|| !source_p
->sink
) ||
3139 WARN_ON(!source_p
->source
|| !sink_p
->sink
))
3142 source
= source_p
->source
->priv
;
3143 sink
= sink_p
->sink
->priv
;
3145 /* Be a little careful as we don't want to overflow the mask array */
3146 if (config
->formats
) {
3147 fmt
= ffs(config
->formats
) - 1;
3149 dev_warn(w
->dapm
->dev
, "ASoC: Invalid format %llx specified\n",
3154 /* Currently very limited parameter selection */
3155 params
= kzalloc(sizeof(*params
), GFP_KERNEL
);
3160 snd_mask_set(hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
), fmt
);
3162 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
)->min
=
3164 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
)->max
=
3167 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
)->min
3168 = config
->channels_min
;
3169 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
)->max
3170 = config
->channels_max
;
3172 memset(&substream
, 0, sizeof(substream
));
3175 case SND_SOC_DAPM_PRE_PMU
:
3176 if (source
->driver
->ops
&& source
->driver
->ops
->hw_params
) {
3177 substream
.stream
= SNDRV_PCM_STREAM_CAPTURE
;
3178 ret
= source
->driver
->ops
->hw_params(&substream
,
3181 dev_err(source
->dev
,
3182 "ASoC: hw_params() failed: %d\n", ret
);
3187 if (sink
->driver
->ops
&& sink
->driver
->ops
->hw_params
) {
3188 substream
.stream
= SNDRV_PCM_STREAM_PLAYBACK
;
3189 ret
= sink
->driver
->ops
->hw_params(&substream
, params
,
3193 "ASoC: hw_params() failed: %d\n", ret
);
3199 case SND_SOC_DAPM_POST_PMU
:
3200 ret
= snd_soc_dai_digital_mute(sink
, 0,
3201 SNDRV_PCM_STREAM_PLAYBACK
);
3202 if (ret
!= 0 && ret
!= -ENOTSUPP
)
3203 dev_warn(sink
->dev
, "ASoC: Failed to unmute: %d\n", ret
);
3207 case SND_SOC_DAPM_PRE_PMD
:
3208 ret
= snd_soc_dai_digital_mute(sink
, 1,
3209 SNDRV_PCM_STREAM_PLAYBACK
);
3210 if (ret
!= 0 && ret
!= -ENOTSUPP
)
3211 dev_warn(sink
->dev
, "ASoC: Failed to mute: %d\n", ret
);
3216 WARN(1, "Unknown event %d\n", event
);
3225 int snd_soc_dapm_new_pcm(struct snd_soc_card
*card
,
3226 const struct snd_soc_pcm_stream
*params
,
3227 struct snd_soc_dapm_widget
*source
,
3228 struct snd_soc_dapm_widget
*sink
)
3230 struct snd_soc_dapm_widget
template;
3231 struct snd_soc_dapm_widget
*w
;
3236 len
= strlen(source
->name
) + strlen(sink
->name
) + 2;
3237 link_name
= devm_kzalloc(card
->dev
, len
, GFP_KERNEL
);
3240 snprintf(link_name
, len
, "%s-%s", source
->name
, sink
->name
);
3242 memset(&template, 0, sizeof(template));
3243 template.reg
= SND_SOC_NOPM
;
3244 template.id
= snd_soc_dapm_dai_link
;
3245 template.name
= link_name
;
3246 template.event
= snd_soc_dai_link_event
;
3247 template.event_flags
= SND_SOC_DAPM_PRE_PMU
| SND_SOC_DAPM_POST_PMU
|
3248 SND_SOC_DAPM_PRE_PMD
;
3250 dev_dbg(card
->dev
, "ASoC: adding %s widget\n", link_name
);
3252 w
= snd_soc_dapm_new_control(&card
->dapm
, &template);
3254 dev_err(card
->dev
, "ASoC: Failed to create %s widget\n",
3261 ret
= snd_soc_dapm_add_path(&card
->dapm
, source
, w
, NULL
, NULL
);
3264 return snd_soc_dapm_add_path(&card
->dapm
, w
, sink
, NULL
, NULL
);
3267 int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context
*dapm
,
3268 struct snd_soc_dai
*dai
)
3270 struct snd_soc_dapm_widget
template;
3271 struct snd_soc_dapm_widget
*w
;
3273 WARN_ON(dapm
->dev
!= dai
->dev
);
3275 memset(&template, 0, sizeof(template));
3276 template.reg
= SND_SOC_NOPM
;
3278 if (dai
->driver
->playback
.stream_name
) {
3279 template.id
= snd_soc_dapm_dai_in
;
3280 template.name
= dai
->driver
->playback
.stream_name
;
3281 template.sname
= dai
->driver
->playback
.stream_name
;
3283 dev_dbg(dai
->dev
, "ASoC: adding %s widget\n",
3286 w
= snd_soc_dapm_new_control(dapm
, &template);
3288 dev_err(dapm
->dev
, "ASoC: Failed to create %s widget\n",
3289 dai
->driver
->playback
.stream_name
);
3294 dai
->playback_widget
= w
;
3297 if (dai
->driver
->capture
.stream_name
) {
3298 template.id
= snd_soc_dapm_dai_out
;
3299 template.name
= dai
->driver
->capture
.stream_name
;
3300 template.sname
= dai
->driver
->capture
.stream_name
;
3302 dev_dbg(dai
->dev
, "ASoC: adding %s widget\n",
3305 w
= snd_soc_dapm_new_control(dapm
, &template);
3307 dev_err(dapm
->dev
, "ASoC: Failed to create %s widget\n",
3308 dai
->driver
->capture
.stream_name
);
3313 dai
->capture_widget
= w
;
3319 int snd_soc_dapm_link_dai_widgets(struct snd_soc_card
*card
)
3321 struct snd_soc_dapm_widget
*dai_w
, *w
;
3322 struct snd_soc_dapm_widget
*src
, *sink
;
3323 struct snd_soc_dai
*dai
;
3325 /* For each DAI widget... */
3326 list_for_each_entry(dai_w
, &card
->widgets
, list
) {
3327 switch (dai_w
->id
) {
3328 case snd_soc_dapm_dai_in
:
3329 case snd_soc_dapm_dai_out
:
3337 /* ...find all widgets with the same stream and link them */
3338 list_for_each_entry(w
, &card
->widgets
, list
) {
3339 if (w
->dapm
!= dai_w
->dapm
)
3343 case snd_soc_dapm_dai_in
:
3344 case snd_soc_dapm_dai_out
:
3350 if (!w
->sname
|| !strstr(w
->sname
, dai_w
->name
))
3353 if (dai_w
->id
== snd_soc_dapm_dai_in
) {
3360 dev_dbg(dai
->dev
, "%s -> %s\n", src
->name
, sink
->name
);
3361 snd_soc_dapm_add_path(w
->dapm
, src
, sink
, NULL
, NULL
);
3368 void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card
*card
)
3370 struct snd_soc_pcm_runtime
*rtd
= card
->rtd
;
3371 struct snd_soc_dapm_widget
*sink
, *source
;
3372 struct snd_soc_dai
*cpu_dai
, *codec_dai
;
3375 /* for each BE DAI link... */
3376 for (i
= 0; i
< card
->num_rtd
; i
++) {
3377 rtd
= &card
->rtd
[i
];
3378 cpu_dai
= rtd
->cpu_dai
;
3379 codec_dai
= rtd
->codec_dai
;
3382 * dynamic FE links have no fixed DAI mapping.
3383 * CODEC<->CODEC links have no direct connection.
3385 if (rtd
->dai_link
->dynamic
|| rtd
->dai_link
->params
)
3388 /* there is no point in connecting BE DAI links with dummies */
3389 if (snd_soc_dai_is_dummy(codec_dai
) ||
3390 snd_soc_dai_is_dummy(cpu_dai
))
3393 /* connect BE DAI playback if widgets are valid */
3394 if (codec_dai
->playback_widget
&& cpu_dai
->playback_widget
) {
3395 source
= cpu_dai
->playback_widget
;
3396 sink
= codec_dai
->playback_widget
;
3397 dev_dbg(rtd
->dev
, "connected DAI link %s:%s -> %s:%s\n",
3398 cpu_dai
->codec
->name
, source
->name
,
3399 codec_dai
->platform
->name
, sink
->name
);
3401 snd_soc_dapm_add_path(&card
->dapm
, source
, sink
,
3405 /* connect BE DAI capture if widgets are valid */
3406 if (codec_dai
->capture_widget
&& cpu_dai
->capture_widget
) {
3407 source
= codec_dai
->capture_widget
;
3408 sink
= cpu_dai
->capture_widget
;
3409 dev_dbg(rtd
->dev
, "connected DAI link %s:%s -> %s:%s\n",
3410 codec_dai
->codec
->name
, source
->name
,
3411 cpu_dai
->platform
->name
, sink
->name
);
3413 snd_soc_dapm_add_path(&card
->dapm
, source
, sink
,
3419 static void soc_dapm_dai_stream_event(struct snd_soc_dai
*dai
, int stream
,
3422 struct snd_soc_dapm_widget
*w
;
3424 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
3425 w
= dai
->playback_widget
;
3427 w
= dai
->capture_widget
;
3430 dapm_mark_dirty(w
, "stream event");
3433 case SND_SOC_DAPM_STREAM_START
:
3436 case SND_SOC_DAPM_STREAM_STOP
:
3439 case SND_SOC_DAPM_STREAM_SUSPEND
:
3440 case SND_SOC_DAPM_STREAM_RESUME
:
3441 case SND_SOC_DAPM_STREAM_PAUSE_PUSH
:
3442 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE
:
3448 static void soc_dapm_stream_event(struct snd_soc_pcm_runtime
*rtd
, int stream
,
3451 soc_dapm_dai_stream_event(rtd
->cpu_dai
, stream
, event
);
3452 soc_dapm_dai_stream_event(rtd
->codec_dai
, stream
, event
);
3454 dapm_power_widgets(rtd
->card
, event
);
3458 * snd_soc_dapm_stream_event - send a stream event to the dapm core
3459 * @rtd: PCM runtime data
3460 * @stream: stream name
3461 * @event: stream event
3463 * Sends a stream event to the dapm core. The core then makes any
3464 * necessary widget power changes.
3466 * Returns 0 for success else error.
3468 void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime
*rtd
, int stream
,
3471 struct snd_soc_card
*card
= rtd
->card
;
3473 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3474 soc_dapm_stream_event(rtd
, stream
, event
);
3475 mutex_unlock(&card
->dapm_mutex
);
3479 * snd_soc_dapm_enable_pin_unlocked - enable pin.
3480 * @dapm: DAPM context
3483 * Enables input/output pin and its parents or children widgets iff there is
3484 * a valid audio route and active audio stream.
3486 * Requires external locking.
3488 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3489 * do any widget power switching.
3491 int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context
*dapm
,
3494 return snd_soc_dapm_set_pin(dapm
, pin
, 1);
3496 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked
);
3499 * snd_soc_dapm_enable_pin - enable pin.
3500 * @dapm: DAPM context
3503 * Enables input/output pin and its parents or children widgets iff there is
3504 * a valid audio route and active audio stream.
3506 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3507 * do any widget power switching.
3509 int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context
*dapm
, const char *pin
)
3513 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3515 ret
= snd_soc_dapm_set_pin(dapm
, pin
, 1);
3517 mutex_unlock(&dapm
->card
->dapm_mutex
);
3521 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin
);
3524 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
3525 * @dapm: DAPM context
3528 * Enables input/output pin regardless of any other state. This is
3529 * intended for use with microphone bias supplies used in microphone
3532 * Requires external locking.
3534 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3535 * do any widget power switching.
3537 int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context
*dapm
,
3540 struct snd_soc_dapm_widget
*w
= dapm_find_widget(dapm
, pin
, true);
3543 dev_err(dapm
->dev
, "ASoC: unknown pin %s\n", pin
);
3547 dev_dbg(w
->dapm
->dev
, "ASoC: force enable pin %s\n", pin
);
3550 dapm_mark_dirty(w
, "force enable");
3554 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked
);
3557 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
3558 * @dapm: DAPM context
3561 * Enables input/output pin regardless of any other state. This is
3562 * intended for use with microphone bias supplies used in microphone
3565 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3566 * do any widget power switching.
3568 int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context
*dapm
,
3573 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3575 ret
= snd_soc_dapm_force_enable_pin_unlocked(dapm
, pin
);
3577 mutex_unlock(&dapm
->card
->dapm_mutex
);
3581 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin
);
3584 * snd_soc_dapm_disable_pin_unlocked - disable pin.
3585 * @dapm: DAPM context
3588 * Disables input/output pin and its parents or children widgets.
3590 * Requires external locking.
3592 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3593 * do any widget power switching.
3595 int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context
*dapm
,
3598 return snd_soc_dapm_set_pin(dapm
, pin
, 0);
3600 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked
);
3603 * snd_soc_dapm_disable_pin - disable pin.
3604 * @dapm: DAPM context
3607 * Disables input/output pin and its parents or children widgets.
3609 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3610 * do any widget power switching.
3612 int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context
*dapm
,
3617 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3619 ret
= snd_soc_dapm_set_pin(dapm
, pin
, 0);
3621 mutex_unlock(&dapm
->card
->dapm_mutex
);
3625 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin
);
3628 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
3629 * @dapm: DAPM context
3632 * Marks the specified pin as being not connected, disabling it along
3633 * any parent or child widgets. At present this is identical to
3634 * snd_soc_dapm_disable_pin() but in future it will be extended to do
3635 * additional things such as disabling controls which only affect
3636 * paths through the pin.
3638 * Requires external locking.
3640 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3641 * do any widget power switching.
3643 int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context
*dapm
,
3646 return snd_soc_dapm_set_pin(dapm
, pin
, 0);
3648 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked
);
3651 * snd_soc_dapm_nc_pin - permanently disable pin.
3652 * @dapm: DAPM context
3655 * Marks the specified pin as being not connected, disabling it along
3656 * any parent or child widgets. At present this is identical to
3657 * snd_soc_dapm_disable_pin() but in future it will be extended to do
3658 * additional things such as disabling controls which only affect
3659 * paths through the pin.
3661 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3662 * do any widget power switching.
3664 int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context
*dapm
, const char *pin
)
3668 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3670 ret
= snd_soc_dapm_set_pin(dapm
, pin
, 0);
3672 mutex_unlock(&dapm
->card
->dapm_mutex
);
3676 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin
);
3679 * snd_soc_dapm_get_pin_status - get audio pin status
3680 * @dapm: DAPM context
3681 * @pin: audio signal pin endpoint (or start point)
3683 * Get audio pin status - connected or disconnected.
3685 * Returns 1 for connected otherwise 0.
3687 int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context
*dapm
,
3690 struct snd_soc_dapm_widget
*w
= dapm_find_widget(dapm
, pin
, true);
3693 return w
->connected
;
3697 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status
);
3700 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
3701 * @dapm: DAPM context
3702 * @pin: audio signal pin endpoint (or start point)
3704 * Mark the given endpoint or pin as ignoring suspend. When the
3705 * system is disabled a path between two endpoints flagged as ignoring
3706 * suspend will not be disabled. The path must already be enabled via
3707 * normal means at suspend time, it will not be turned on if it was not
3710 int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context
*dapm
,
3713 struct snd_soc_dapm_widget
*w
= dapm_find_widget(dapm
, pin
, false);
3716 dev_err(dapm
->dev
, "ASoC: unknown pin %s\n", pin
);
3720 w
->ignore_suspend
= 1;
3724 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend
);
3726 static bool snd_soc_dapm_widget_in_card_paths(struct snd_soc_card
*card
,
3727 struct snd_soc_dapm_widget
*w
)
3729 struct snd_soc_dapm_path
*p
;
3731 list_for_each_entry(p
, &card
->paths
, list
) {
3732 if ((p
->source
== w
) || (p
->sink
== w
)) {
3734 "... Path %s(id:%d dapm:%p) - %s(id:%d dapm:%p)\n",
3735 p
->source
->name
, p
->source
->id
, p
->source
->dapm
,
3736 p
->sink
->name
, p
->sink
->id
, p
->sink
->dapm
);
3738 /* Connected to something other than the codec */
3739 if (p
->source
->dapm
!= p
->sink
->dapm
)
3742 * Loopback connection from codec external pin to
3743 * codec external pin
3745 if (p
->sink
->id
== snd_soc_dapm_input
) {
3746 switch (p
->source
->id
) {
3747 case snd_soc_dapm_output
:
3748 case snd_soc_dapm_micbias
:
3761 * snd_soc_dapm_auto_nc_codec_pins - call snd_soc_dapm_nc_pin for unused pins
3762 * @codec: The codec whose pins should be processed
3764 * Automatically call snd_soc_dapm_nc_pin() for any external pins in the codec
3765 * which are unused. Pins are used if they are connected externally to the
3766 * codec, whether that be to some other device, or a loop-back connection to
3769 void snd_soc_dapm_auto_nc_codec_pins(struct snd_soc_codec
*codec
)
3771 struct snd_soc_card
*card
= codec
->card
;
3772 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
3773 struct snd_soc_dapm_widget
*w
;
3775 dev_dbg(codec
->dev
, "ASoC: Auto NC: DAPMs: card:%p codec:%p\n",
3776 &card
->dapm
, &codec
->dapm
);
3778 list_for_each_entry(w
, &card
->widgets
, list
) {
3779 if (w
->dapm
!= dapm
)
3782 case snd_soc_dapm_input
:
3783 case snd_soc_dapm_output
:
3784 case snd_soc_dapm_micbias
:
3785 dev_dbg(codec
->dev
, "ASoC: Auto NC: Checking widget %s\n",
3787 if (!snd_soc_dapm_widget_in_card_paths(card
, w
)) {
3789 "... Not in map; disabling\n");
3790 snd_soc_dapm_nc_pin(dapm
, w
->name
);
3800 * snd_soc_dapm_free - free dapm resources
3801 * @dapm: DAPM context
3803 * Free all dapm widgets and resources.
3805 void snd_soc_dapm_free(struct snd_soc_dapm_context
*dapm
)
3807 snd_soc_dapm_sys_remove(dapm
->dev
);
3808 dapm_debugfs_cleanup(dapm
);
3809 dapm_free_widgets(dapm
);
3810 list_del(&dapm
->list
);
3812 EXPORT_SYMBOL_GPL(snd_soc_dapm_free
);
3814 static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context
*dapm
)
3816 struct snd_soc_card
*card
= dapm
->card
;
3817 struct snd_soc_dapm_widget
*w
;
3818 LIST_HEAD(down_list
);
3821 mutex_lock(&card
->dapm_mutex
);
3823 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
3824 if (w
->dapm
!= dapm
)
3827 dapm_seq_insert(w
, &down_list
, false);
3833 /* If there were no widgets to power down we're already in
3837 if (dapm
->bias_level
== SND_SOC_BIAS_ON
)
3838 snd_soc_dapm_set_bias_level(dapm
,
3839 SND_SOC_BIAS_PREPARE
);
3840 dapm_seq_run(card
, &down_list
, 0, false);
3841 if (dapm
->bias_level
== SND_SOC_BIAS_PREPARE
)
3842 snd_soc_dapm_set_bias_level(dapm
,
3843 SND_SOC_BIAS_STANDBY
);
3846 mutex_unlock(&card
->dapm_mutex
);
3850 * snd_soc_dapm_shutdown - callback for system shutdown
3852 void snd_soc_dapm_shutdown(struct snd_soc_card
*card
)
3854 struct snd_soc_dapm_context
*dapm
;
3856 list_for_each_entry(dapm
, &card
->dapm_list
, list
) {
3857 if (dapm
!= &card
->dapm
) {
3858 soc_dapm_shutdown_dapm(dapm
);
3859 if (dapm
->bias_level
== SND_SOC_BIAS_STANDBY
)
3860 snd_soc_dapm_set_bias_level(dapm
,
3865 soc_dapm_shutdown_dapm(&card
->dapm
);
3866 if (card
->dapm
.bias_level
== SND_SOC_BIAS_STANDBY
)
3867 snd_soc_dapm_set_bias_level(&card
->dapm
,
3871 /* Module information */
3872 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
3873 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
3874 MODULE_LICENSE("GPL");