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 #define SND_SOC_DAPM_DIR_REVERSE(x) ((x == SND_SOC_DAPM_DIR_IN) ? \
51 SND_SOC_DAPM_DIR_OUT : SND_SOC_DAPM_DIR_IN)
53 #define snd_soc_dapm_for_each_direction(dir) \
54 for ((dir) = SND_SOC_DAPM_DIR_IN; (dir) <= SND_SOC_DAPM_DIR_OUT; \
57 static int snd_soc_dapm_add_path(struct snd_soc_dapm_context
*dapm
,
58 struct snd_soc_dapm_widget
*wsource
, struct snd_soc_dapm_widget
*wsink
,
60 int (*connected
)(struct snd_soc_dapm_widget
*source
,
61 struct snd_soc_dapm_widget
*sink
));
63 struct snd_soc_dapm_widget
*
64 snd_soc_dapm_new_control(struct snd_soc_dapm_context
*dapm
,
65 const struct snd_soc_dapm_widget
*widget
);
67 struct snd_soc_dapm_widget
*
68 snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context
*dapm
,
69 const struct snd_soc_dapm_widget
*widget
);
71 /* dapm power sequences - make this per codec in the future */
72 static int dapm_up_seq
[] = {
73 [snd_soc_dapm_pre
] = 0,
74 [snd_soc_dapm_regulator_supply
] = 1,
75 [snd_soc_dapm_clock_supply
] = 1,
76 [snd_soc_dapm_supply
] = 2,
77 [snd_soc_dapm_micbias
] = 3,
78 [snd_soc_dapm_dai_link
] = 2,
79 [snd_soc_dapm_dai_in
] = 4,
80 [snd_soc_dapm_dai_out
] = 4,
81 [snd_soc_dapm_aif_in
] = 4,
82 [snd_soc_dapm_aif_out
] = 4,
83 [snd_soc_dapm_mic
] = 5,
84 [snd_soc_dapm_mux
] = 6,
85 [snd_soc_dapm_demux
] = 6,
86 [snd_soc_dapm_dac
] = 7,
87 [snd_soc_dapm_switch
] = 8,
88 [snd_soc_dapm_mixer
] = 8,
89 [snd_soc_dapm_mixer_named_ctl
] = 8,
90 [snd_soc_dapm_pga
] = 9,
91 [snd_soc_dapm_adc
] = 10,
92 [snd_soc_dapm_out_drv
] = 11,
93 [snd_soc_dapm_hp
] = 11,
94 [snd_soc_dapm_spk
] = 11,
95 [snd_soc_dapm_line
] = 11,
96 [snd_soc_dapm_kcontrol
] = 12,
97 [snd_soc_dapm_post
] = 13,
100 static int dapm_down_seq
[] = {
101 [snd_soc_dapm_pre
] = 0,
102 [snd_soc_dapm_kcontrol
] = 1,
103 [snd_soc_dapm_adc
] = 2,
104 [snd_soc_dapm_hp
] = 3,
105 [snd_soc_dapm_spk
] = 3,
106 [snd_soc_dapm_line
] = 3,
107 [snd_soc_dapm_out_drv
] = 3,
108 [snd_soc_dapm_pga
] = 4,
109 [snd_soc_dapm_switch
] = 5,
110 [snd_soc_dapm_mixer_named_ctl
] = 5,
111 [snd_soc_dapm_mixer
] = 5,
112 [snd_soc_dapm_dac
] = 6,
113 [snd_soc_dapm_mic
] = 7,
114 [snd_soc_dapm_micbias
] = 8,
115 [snd_soc_dapm_mux
] = 9,
116 [snd_soc_dapm_demux
] = 9,
117 [snd_soc_dapm_aif_in
] = 10,
118 [snd_soc_dapm_aif_out
] = 10,
119 [snd_soc_dapm_dai_in
] = 10,
120 [snd_soc_dapm_dai_out
] = 10,
121 [snd_soc_dapm_dai_link
] = 11,
122 [snd_soc_dapm_supply
] = 12,
123 [snd_soc_dapm_clock_supply
] = 13,
124 [snd_soc_dapm_regulator_supply
] = 13,
125 [snd_soc_dapm_post
] = 14,
128 static void dapm_assert_locked(struct snd_soc_dapm_context
*dapm
)
130 if (dapm
->card
&& dapm
->card
->instantiated
)
131 lockdep_assert_held(&dapm
->card
->dapm_mutex
);
134 static void pop_wait(u32 pop_time
)
137 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time
));
140 static void pop_dbg(struct device
*dev
, u32 pop_time
, const char *fmt
, ...)
148 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
153 vsnprintf(buf
, PAGE_SIZE
, fmt
, args
);
154 dev_info(dev
, "%s", buf
);
160 static bool dapm_dirty_widget(struct snd_soc_dapm_widget
*w
)
162 return !list_empty(&w
->dirty
);
165 static void dapm_mark_dirty(struct snd_soc_dapm_widget
*w
, const char *reason
)
167 dapm_assert_locked(w
->dapm
);
169 if (!dapm_dirty_widget(w
)) {
170 dev_vdbg(w
->dapm
->dev
, "Marking %s dirty due to %s\n",
172 list_add_tail(&w
->dirty
, &w
->dapm
->card
->dapm_dirty
);
177 * Common implementation for dapm_widget_invalidate_input_paths() and
178 * dapm_widget_invalidate_output_paths(). The function is inlined since the
179 * combined size of the two specialized functions is only marginally larger then
180 * the size of the generic function and at the same time the fast path of the
181 * specialized functions is significantly smaller than the generic function.
183 static __always_inline
void dapm_widget_invalidate_paths(
184 struct snd_soc_dapm_widget
*w
, enum snd_soc_dapm_direction dir
)
186 enum snd_soc_dapm_direction rdir
= SND_SOC_DAPM_DIR_REVERSE(dir
);
187 struct snd_soc_dapm_widget
*node
;
188 struct snd_soc_dapm_path
*p
;
191 dapm_assert_locked(w
->dapm
);
193 if (w
->endpoints
[dir
] == -1)
196 list_add_tail(&w
->work_list
, &list
);
197 w
->endpoints
[dir
] = -1;
199 list_for_each_entry(w
, &list
, work_list
) {
200 snd_soc_dapm_widget_for_each_path(w
, dir
, p
) {
201 if (p
->is_supply
|| p
->weak
|| !p
->connect
)
203 node
= p
->node
[rdir
];
204 if (node
->endpoints
[dir
] != -1) {
205 node
->endpoints
[dir
] = -1;
206 list_add_tail(&node
->work_list
, &list
);
213 * dapm_widget_invalidate_input_paths() - Invalidate the cached number of
215 * @w: The widget for which to invalidate the cached number of input paths
217 * Resets the cached number of inputs for the specified widget and all widgets
218 * that can be reached via outcoming paths from the widget.
220 * This function must be called if the number of output paths for a widget might
221 * have changed. E.g. if the source state of a widget changes or a path is added
222 * or activated with the widget as the sink.
224 static void dapm_widget_invalidate_input_paths(struct snd_soc_dapm_widget
*w
)
226 dapm_widget_invalidate_paths(w
, SND_SOC_DAPM_DIR_IN
);
230 * dapm_widget_invalidate_output_paths() - Invalidate the cached number of
232 * @w: The widget for which to invalidate the cached number of output paths
234 * Resets the cached number of outputs for the specified widget and all widgets
235 * that can be reached via incoming paths from the widget.
237 * This function must be called if the number of output paths for a widget might
238 * have changed. E.g. if the sink state of a widget changes or a path is added
239 * or activated with the widget as the source.
241 static void dapm_widget_invalidate_output_paths(struct snd_soc_dapm_widget
*w
)
243 dapm_widget_invalidate_paths(w
, SND_SOC_DAPM_DIR_OUT
);
247 * dapm_path_invalidate() - Invalidates the cached number of inputs and outputs
248 * for the widgets connected to a path
249 * @p: The path to invalidate
251 * Resets the cached number of inputs for the sink of the path and the cached
252 * number of outputs for the source of the path.
254 * This function must be called when a path is added, removed or the connected
257 static void dapm_path_invalidate(struct snd_soc_dapm_path
*p
)
260 * Weak paths or supply paths do not influence the number of input or
261 * output paths of their neighbors.
263 if (p
->weak
|| p
->is_supply
)
267 * The number of connected endpoints is the sum of the number of
268 * connected endpoints of all neighbors. If a node with 0 connected
269 * endpoints is either connected or disconnected that sum won't change,
270 * so there is no need to re-check the path.
272 if (p
->source
->endpoints
[SND_SOC_DAPM_DIR_IN
] != 0)
273 dapm_widget_invalidate_input_paths(p
->sink
);
274 if (p
->sink
->endpoints
[SND_SOC_DAPM_DIR_OUT
] != 0)
275 dapm_widget_invalidate_output_paths(p
->source
);
278 void dapm_mark_endpoints_dirty(struct snd_soc_card
*card
)
280 struct snd_soc_dapm_widget
*w
;
282 mutex_lock(&card
->dapm_mutex
);
284 list_for_each_entry(w
, &card
->widgets
, list
) {
286 dapm_mark_dirty(w
, "Rechecking endpoints");
287 if (w
->is_ep
& SND_SOC_DAPM_EP_SINK
)
288 dapm_widget_invalidate_output_paths(w
);
289 if (w
->is_ep
& SND_SOC_DAPM_EP_SOURCE
)
290 dapm_widget_invalidate_input_paths(w
);
294 mutex_unlock(&card
->dapm_mutex
);
296 EXPORT_SYMBOL_GPL(dapm_mark_endpoints_dirty
);
298 /* create a new dapm widget */
299 static inline struct snd_soc_dapm_widget
*dapm_cnew_widget(
300 const struct snd_soc_dapm_widget
*_widget
)
302 return kmemdup(_widget
, sizeof(*_widget
), GFP_KERNEL
);
305 struct dapm_kcontrol_data
{
307 struct snd_soc_dapm_widget
*widget
;
308 struct list_head paths
;
309 struct snd_soc_dapm_widget_list
*wlist
;
312 static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget
*widget
,
313 struct snd_kcontrol
*kcontrol
, const char *ctrl_name
)
315 struct dapm_kcontrol_data
*data
;
316 struct soc_mixer_control
*mc
;
321 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
325 INIT_LIST_HEAD(&data
->paths
);
327 switch (widget
->id
) {
328 case snd_soc_dapm_switch
:
329 case snd_soc_dapm_mixer
:
330 case snd_soc_dapm_mixer_named_ctl
:
331 mc
= (struct soc_mixer_control
*)kcontrol
->private_value
;
333 if (mc
->autodisable
) {
334 struct snd_soc_dapm_widget
template;
336 name
= kasprintf(GFP_KERNEL
, "%s %s", ctrl_name
,
343 memset(&template, 0, sizeof(template));
344 template.reg
= mc
->reg
;
345 template.mask
= (1 << fls(mc
->max
)) - 1;
346 template.shift
= mc
->shift
;
348 template.off_val
= mc
->max
;
350 template.off_val
= 0;
351 template.on_val
= template.off_val
;
352 template.id
= snd_soc_dapm_kcontrol
;
353 template.name
= name
;
355 data
->value
= template.on_val
;
358 snd_soc_dapm_new_control_unlocked(widget
->dapm
,
367 case snd_soc_dapm_demux
:
368 case snd_soc_dapm_mux
:
369 e
= (struct soc_enum
*)kcontrol
->private_value
;
371 if (e
->autodisable
) {
372 struct snd_soc_dapm_widget
template;
374 name
= kasprintf(GFP_KERNEL
, "%s %s", ctrl_name
,
381 memset(&template, 0, sizeof(template));
382 template.reg
= e
->reg
;
383 template.mask
= e
->mask
<< e
->shift_l
;
384 template.shift
= e
->shift_l
;
385 template.off_val
= snd_soc_enum_item_to_val(e
, 0);
386 template.on_val
= template.off_val
;
387 template.id
= snd_soc_dapm_kcontrol
;
388 template.name
= name
;
390 data
->value
= template.on_val
;
392 data
->widget
= snd_soc_dapm_new_control_unlocked(
393 widget
->dapm
, &template);
400 snd_soc_dapm_add_path(widget
->dapm
, data
->widget
,
408 kcontrol
->private_data
= data
;
417 static void dapm_kcontrol_free(struct snd_kcontrol
*kctl
)
419 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kctl
);
424 static struct snd_soc_dapm_widget_list
*dapm_kcontrol_get_wlist(
425 const struct snd_kcontrol
*kcontrol
)
427 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
432 static int dapm_kcontrol_add_widget(struct snd_kcontrol
*kcontrol
,
433 struct snd_soc_dapm_widget
*widget
)
435 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
436 struct snd_soc_dapm_widget_list
*new_wlist
;
440 n
= data
->wlist
->num_widgets
+ 1;
444 new_wlist
= krealloc(data
->wlist
,
445 sizeof(*new_wlist
) + sizeof(widget
) * n
, GFP_KERNEL
);
449 new_wlist
->widgets
[n
- 1] = widget
;
450 new_wlist
->num_widgets
= n
;
452 data
->wlist
= new_wlist
;
457 static void dapm_kcontrol_add_path(const struct snd_kcontrol
*kcontrol
,
458 struct snd_soc_dapm_path
*path
)
460 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
462 list_add_tail(&path
->list_kcontrol
, &data
->paths
);
465 static bool dapm_kcontrol_is_powered(const struct snd_kcontrol
*kcontrol
)
467 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
472 return data
->widget
->power
;
475 static struct list_head
*dapm_kcontrol_get_path_list(
476 const struct snd_kcontrol
*kcontrol
)
478 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
483 #define dapm_kcontrol_for_each_path(path, kcontrol) \
484 list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \
487 unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol
*kcontrol
)
489 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
493 EXPORT_SYMBOL_GPL(dapm_kcontrol_get_value
);
495 static bool dapm_kcontrol_set_value(const struct snd_kcontrol
*kcontrol
,
498 struct dapm_kcontrol_data
*data
= snd_kcontrol_chip(kcontrol
);
500 if (data
->value
== value
)
504 data
->widget
->on_val
= value
;
512 * snd_soc_dapm_kcontrol_widget() - Returns the widget associated to a
514 * @kcontrol: The kcontrol
516 struct snd_soc_dapm_widget
*snd_soc_dapm_kcontrol_widget(
517 struct snd_kcontrol
*kcontrol
)
519 return dapm_kcontrol_get_wlist(kcontrol
)->widgets
[0];
521 EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_widget
);
524 * snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a
526 * @kcontrol: The kcontrol
528 * Note: This function must only be used on kcontrols that are known to have
529 * been registered for a CODEC. Otherwise the behaviour is undefined.
531 struct snd_soc_dapm_context
*snd_soc_dapm_kcontrol_dapm(
532 struct snd_kcontrol
*kcontrol
)
534 return dapm_kcontrol_get_wlist(kcontrol
)->widgets
[0]->dapm
;
536 EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_dapm
);
538 static void dapm_reset(struct snd_soc_card
*card
)
540 struct snd_soc_dapm_widget
*w
;
542 lockdep_assert_held(&card
->dapm_mutex
);
544 memset(&card
->dapm_stats
, 0, sizeof(card
->dapm_stats
));
546 list_for_each_entry(w
, &card
->widgets
, list
) {
547 w
->new_power
= w
->power
;
548 w
->power_checked
= false;
552 static const char *soc_dapm_prefix(struct snd_soc_dapm_context
*dapm
)
554 if (!dapm
->component
)
556 return dapm
->component
->name_prefix
;
559 static int soc_dapm_read(struct snd_soc_dapm_context
*dapm
, int reg
,
562 if (!dapm
->component
)
564 return snd_soc_component_read(dapm
->component
, reg
, value
);
567 static int soc_dapm_update_bits(struct snd_soc_dapm_context
*dapm
,
568 int reg
, unsigned int mask
, unsigned int value
)
570 if (!dapm
->component
)
572 return snd_soc_component_update_bits(dapm
->component
, reg
,
576 static int soc_dapm_test_bits(struct snd_soc_dapm_context
*dapm
,
577 int reg
, unsigned int mask
, unsigned int value
)
579 if (!dapm
->component
)
581 return snd_soc_component_test_bits(dapm
->component
, reg
, mask
, value
);
584 static void soc_dapm_async_complete(struct snd_soc_dapm_context
*dapm
)
587 snd_soc_component_async_complete(dapm
->component
);
590 static struct snd_soc_dapm_widget
*
591 dapm_wcache_lookup(struct snd_soc_dapm_wcache
*wcache
, const char *name
)
593 struct snd_soc_dapm_widget
*w
= wcache
->widget
;
594 struct list_head
*wlist
;
599 wlist
= &w
->dapm
->card
->widgets
;
601 list_for_each_entry_from(w
, wlist
, list
) {
602 if (!strcmp(name
, w
->name
))
613 static inline void dapm_wcache_update(struct snd_soc_dapm_wcache
*wcache
,
614 struct snd_soc_dapm_widget
*w
)
620 * snd_soc_dapm_force_bias_level() - Sets the DAPM bias level
621 * @dapm: The DAPM context for which to set the level
622 * @level: The level to set
624 * Forces the DAPM bias level to a specific state. It will call the bias level
625 * callback of DAPM context with the specified level. This will even happen if
626 * the context is already at the same level. Furthermore it will not go through
627 * the normal bias level sequencing, meaning any intermediate states between the
628 * current and the target state will not be entered.
630 * Note that the change in bias level is only temporary and the next time
631 * snd_soc_dapm_sync() is called the state will be set to the level as
632 * determined by the DAPM core. The function is mainly intended to be used to
633 * used during probe or resume from suspend to power up the device so
634 * initialization can be done, before the DAPM core takes over.
636 int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context
*dapm
,
637 enum snd_soc_bias_level level
)
641 if (dapm
->set_bias_level
)
642 ret
= dapm
->set_bias_level(dapm
, level
);
645 dapm
->bias_level
= level
;
649 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level
);
652 * snd_soc_dapm_set_bias_level - set the bias level for the system
653 * @dapm: DAPM context
654 * @level: level to configure
656 * Configure the bias (power) levels for the SoC audio device.
658 * Returns 0 for success else error.
660 static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context
*dapm
,
661 enum snd_soc_bias_level level
)
663 struct snd_soc_card
*card
= dapm
->card
;
666 trace_snd_soc_bias_level_start(card
, level
);
668 if (card
&& card
->set_bias_level
)
669 ret
= card
->set_bias_level(card
, dapm
, level
);
673 if (!card
|| dapm
!= &card
->dapm
)
674 ret
= snd_soc_dapm_force_bias_level(dapm
, level
);
679 if (card
&& card
->set_bias_level_post
)
680 ret
= card
->set_bias_level_post(card
, dapm
, level
);
682 trace_snd_soc_bias_level_done(card
, level
);
687 /* connect mux widget to its interconnecting audio paths */
688 static int dapm_connect_mux(struct snd_soc_dapm_context
*dapm
,
689 struct snd_soc_dapm_path
*path
, const char *control_name
,
690 struct snd_soc_dapm_widget
*w
)
692 const struct snd_kcontrol_new
*kcontrol
= &w
->kcontrol_news
[0];
693 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
694 unsigned int val
, item
;
697 if (e
->reg
!= SND_SOC_NOPM
) {
698 soc_dapm_read(dapm
, e
->reg
, &val
);
699 val
= (val
>> e
->shift_l
) & e
->mask
;
700 item
= snd_soc_enum_val_to_item(e
, val
);
702 /* since a virtual mux has no backing registers to
703 * decide which path to connect, it will try to match
704 * with the first enumeration. This is to ensure
705 * that the default mux choice (the first) will be
706 * correctly powered up during initialization.
711 for (i
= 0; i
< e
->items
; i
++) {
712 if (!(strcmp(control_name
, e
->texts
[i
]))) {
713 path
->name
= e
->texts
[i
];
725 /* set up initial codec paths */
726 static void dapm_set_mixer_path_status(struct snd_soc_dapm_path
*p
, int i
)
728 struct soc_mixer_control
*mc
= (struct soc_mixer_control
*)
729 p
->sink
->kcontrol_news
[i
].private_value
;
730 unsigned int reg
= mc
->reg
;
731 unsigned int shift
= mc
->shift
;
732 unsigned int max
= mc
->max
;
733 unsigned int mask
= (1 << fls(max
)) - 1;
734 unsigned int invert
= mc
->invert
;
737 if (reg
!= SND_SOC_NOPM
) {
738 soc_dapm_read(p
->sink
->dapm
, reg
, &val
);
739 val
= (val
>> shift
) & mask
;
748 /* connect mixer widget to its interconnecting audio paths */
749 static int dapm_connect_mixer(struct snd_soc_dapm_context
*dapm
,
750 struct snd_soc_dapm_path
*path
, const char *control_name
)
754 /* search for mixer kcontrol */
755 for (i
= 0; i
< path
->sink
->num_kcontrols
; i
++) {
756 if (!strcmp(control_name
, path
->sink
->kcontrol_news
[i
].name
)) {
757 path
->name
= path
->sink
->kcontrol_news
[i
].name
;
758 dapm_set_mixer_path_status(path
, i
);
765 static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context
*dapm
,
766 struct snd_soc_dapm_widget
*kcontrolw
,
767 const struct snd_kcontrol_new
*kcontrol_new
,
768 struct snd_kcontrol
**kcontrol
)
770 struct snd_soc_dapm_widget
*w
;
775 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
776 if (w
== kcontrolw
|| w
->dapm
!= kcontrolw
->dapm
)
778 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
779 if (&w
->kcontrol_news
[i
] == kcontrol_new
) {
781 *kcontrol
= w
->kcontrols
[i
];
791 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
792 * create it. Either way, add the widget into the control's widget list
794 static int dapm_create_or_share_kcontrol(struct snd_soc_dapm_widget
*w
,
797 struct snd_soc_dapm_context
*dapm
= w
->dapm
;
798 struct snd_card
*card
= dapm
->card
->snd_card
;
802 struct snd_kcontrol
*kcontrol
;
803 bool wname_in_long_name
, kcname_in_long_name
;
804 char *long_name
= NULL
;
808 prefix
= soc_dapm_prefix(dapm
);
810 prefix_len
= strlen(prefix
) + 1;
814 shared
= dapm_is_shared_kcontrol(dapm
, w
, &w
->kcontrol_news
[kci
],
819 wname_in_long_name
= false;
820 kcname_in_long_name
= true;
823 case snd_soc_dapm_switch
:
824 case snd_soc_dapm_mixer
:
825 case snd_soc_dapm_pga
:
826 case snd_soc_dapm_out_drv
:
827 wname_in_long_name
= true;
828 kcname_in_long_name
= true;
830 case snd_soc_dapm_mixer_named_ctl
:
831 wname_in_long_name
= false;
832 kcname_in_long_name
= true;
834 case snd_soc_dapm_demux
:
835 case snd_soc_dapm_mux
:
836 wname_in_long_name
= true;
837 kcname_in_long_name
= false;
844 if (wname_in_long_name
&& kcname_in_long_name
) {
846 * The control will get a prefix from the control
847 * creation process but we're also using the same
848 * prefix for widgets so cut the prefix off the
849 * front of the widget name.
851 long_name
= kasprintf(GFP_KERNEL
, "%s %s",
852 w
->name
+ prefix_len
,
853 w
->kcontrol_news
[kci
].name
);
854 if (long_name
== NULL
)
858 } else if (wname_in_long_name
) {
860 name
= w
->name
+ prefix_len
;
863 name
= w
->kcontrol_news
[kci
].name
;
866 kcontrol
= snd_soc_cnew(&w
->kcontrol_news
[kci
], NULL
, name
,
873 kcontrol
->private_free
= dapm_kcontrol_free
;
875 ret
= dapm_kcontrol_data_alloc(w
, kcontrol
, name
);
877 snd_ctl_free_one(kcontrol
);
881 ret
= snd_ctl_add(card
, kcontrol
);
884 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
890 ret
= dapm_kcontrol_add_widget(kcontrol
, w
);
892 w
->kcontrols
[kci
] = kcontrol
;
900 /* create new dapm mixer control */
901 static int dapm_new_mixer(struct snd_soc_dapm_widget
*w
)
904 struct snd_soc_dapm_path
*path
;
905 struct dapm_kcontrol_data
*data
;
908 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
910 snd_soc_dapm_widget_for_each_source_path(w
, path
) {
911 /* mixer/mux paths name must match control name */
912 if (path
->name
!= (char *)w
->kcontrol_news
[i
].name
)
915 if (!w
->kcontrols
[i
]) {
916 ret
= dapm_create_or_share_kcontrol(w
, i
);
921 dapm_kcontrol_add_path(w
->kcontrols
[i
], path
);
923 data
= snd_kcontrol_chip(w
->kcontrols
[i
]);
925 snd_soc_dapm_add_path(data
->widget
->dapm
,
935 /* create new dapm mux control */
936 static int dapm_new_mux(struct snd_soc_dapm_widget
*w
)
938 struct snd_soc_dapm_context
*dapm
= w
->dapm
;
939 enum snd_soc_dapm_direction dir
;
940 struct snd_soc_dapm_path
*path
;
945 case snd_soc_dapm_mux
:
946 dir
= SND_SOC_DAPM_DIR_OUT
;
949 case snd_soc_dapm_demux
:
950 dir
= SND_SOC_DAPM_DIR_IN
;
957 if (w
->num_kcontrols
!= 1) {
959 "ASoC: %s %s has incorrect number of controls\n", type
,
964 if (list_empty(&w
->edges
[dir
])) {
965 dev_err(dapm
->dev
, "ASoC: %s %s has no paths\n", type
, w
->name
);
969 ret
= dapm_create_or_share_kcontrol(w
, 0);
973 snd_soc_dapm_widget_for_each_path(w
, dir
, path
) {
975 dapm_kcontrol_add_path(w
->kcontrols
[0], path
);
981 /* create new dapm volume control */
982 static int dapm_new_pga(struct snd_soc_dapm_widget
*w
)
986 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
987 ret
= dapm_create_or_share_kcontrol(w
, i
);
995 /* create new dapm dai link control */
996 static int dapm_new_dai_link(struct snd_soc_dapm_widget
*w
)
999 struct snd_kcontrol
*kcontrol
;
1000 struct snd_soc_dapm_context
*dapm
= w
->dapm
;
1001 struct snd_card
*card
= dapm
->card
->snd_card
;
1003 /* create control for links with > 1 config */
1004 if (w
->num_params
<= 1)
1008 for (i
= 0; i
< w
->num_kcontrols
; i
++) {
1009 kcontrol
= snd_soc_cnew(&w
->kcontrol_news
[i
], w
,
1011 ret
= snd_ctl_add(card
, kcontrol
);
1014 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
1015 w
->name
, w
->kcontrol_news
[i
].name
, ret
);
1018 kcontrol
->private_data
= w
;
1019 w
->kcontrols
[i
] = kcontrol
;
1025 /* We implement power down on suspend by checking the power state of
1026 * the ALSA card - when we are suspending the ALSA state for the card
1029 static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget
*widget
)
1031 int level
= snd_power_get_state(widget
->dapm
->card
->snd_card
);
1034 case SNDRV_CTL_POWER_D3hot
:
1035 case SNDRV_CTL_POWER_D3cold
:
1036 if (widget
->ignore_suspend
)
1037 dev_dbg(widget
->dapm
->dev
, "ASoC: %s ignoring suspend\n",
1039 return widget
->ignore_suspend
;
1045 static int dapm_widget_list_create(struct snd_soc_dapm_widget_list
**list
,
1046 struct list_head
*widgets
)
1048 struct snd_soc_dapm_widget
*w
;
1049 struct list_head
*it
;
1050 unsigned int size
= 0;
1053 list_for_each(it
, widgets
)
1056 *list
= kzalloc(sizeof(**list
) + size
* sizeof(*w
), GFP_KERNEL
);
1060 list_for_each_entry(w
, widgets
, work_list
)
1061 (*list
)->widgets
[i
++] = w
;
1063 (*list
)->num_widgets
= i
;
1069 * Common implementation for is_connected_output_ep() and
1070 * is_connected_input_ep(). The function is inlined since the combined size of
1071 * the two specialized functions is only marginally larger then the size of the
1072 * generic function and at the same time the fast path of the specialized
1073 * functions is significantly smaller than the generic function.
1075 static __always_inline
int is_connected_ep(struct snd_soc_dapm_widget
*widget
,
1076 struct list_head
*list
, enum snd_soc_dapm_direction dir
,
1077 int (*fn
)(struct snd_soc_dapm_widget
*, struct list_head
*,
1078 bool (*custom_stop_condition
)(struct snd_soc_dapm_widget
*,
1079 enum snd_soc_dapm_direction
)),
1080 bool (*custom_stop_condition
)(struct snd_soc_dapm_widget
*,
1081 enum snd_soc_dapm_direction
))
1083 enum snd_soc_dapm_direction rdir
= SND_SOC_DAPM_DIR_REVERSE(dir
);
1084 struct snd_soc_dapm_path
*path
;
1087 if (widget
->endpoints
[dir
] >= 0)
1088 return widget
->endpoints
[dir
];
1090 DAPM_UPDATE_STAT(widget
, path_checks
);
1092 /* do we need to add this widget to the list ? */
1094 list_add_tail(&widget
->work_list
, list
);
1096 if (custom_stop_condition
&& custom_stop_condition(widget
, dir
)) {
1097 widget
->endpoints
[dir
] = 1;
1098 return widget
->endpoints
[dir
];
1101 if ((widget
->is_ep
& SND_SOC_DAPM_DIR_TO_EP(dir
)) && widget
->connected
) {
1102 widget
->endpoints
[dir
] = snd_soc_dapm_suspend_check(widget
);
1103 return widget
->endpoints
[dir
];
1106 snd_soc_dapm_widget_for_each_path(widget
, rdir
, path
) {
1107 DAPM_UPDATE_STAT(widget
, neighbour_checks
);
1109 if (path
->weak
|| path
->is_supply
)
1115 trace_snd_soc_dapm_path(widget
, dir
, path
);
1117 if (path
->connect
) {
1119 con
+= fn(path
->node
[dir
], list
, custom_stop_condition
);
1124 widget
->endpoints
[dir
] = con
;
1130 * Recursively check for a completed path to an active or physically connected
1131 * output widget. Returns number of complete paths.
1133 * Optionally, can be supplied with a function acting as a stopping condition.
1134 * This function takes the dapm widget currently being examined and the walk
1135 * direction as an arguments, it should return true if the walk should be
1136 * stopped and false otherwise.
1138 static int is_connected_output_ep(struct snd_soc_dapm_widget
*widget
,
1139 struct list_head
*list
,
1140 bool (*custom_stop_condition
)(struct snd_soc_dapm_widget
*i
,
1141 enum snd_soc_dapm_direction
))
1143 return is_connected_ep(widget
, list
, SND_SOC_DAPM_DIR_OUT
,
1144 is_connected_output_ep
, custom_stop_condition
);
1148 * Recursively check for a completed path to an active or physically connected
1149 * input widget. Returns number of complete paths.
1151 * Optionally, can be supplied with a function acting as a stopping condition.
1152 * This function takes the dapm widget currently being examined and the walk
1153 * direction as an arguments, it should return true if the walk should be
1154 * stopped and false otherwise.
1156 static int is_connected_input_ep(struct snd_soc_dapm_widget
*widget
,
1157 struct list_head
*list
,
1158 bool (*custom_stop_condition
)(struct snd_soc_dapm_widget
*i
,
1159 enum snd_soc_dapm_direction
))
1161 return is_connected_ep(widget
, list
, SND_SOC_DAPM_DIR_IN
,
1162 is_connected_input_ep
, custom_stop_condition
);
1166 * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1167 * @dai: the soc DAI.
1168 * @stream: stream direction.
1169 * @list: list of active widgets for this stream.
1170 * @custom_stop_condition: (optional) a function meant to stop the widget graph
1171 * walk based on custom logic.
1173 * Queries DAPM graph as to whether a valid audio stream path exists for
1174 * the initial stream specified by name. This takes into account
1175 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1177 * Optionally, can be supplied with a function acting as a stopping condition.
1178 * This function takes the dapm widget currently being examined and the walk
1179 * direction as an arguments, it should return true if the walk should be
1180 * stopped and false otherwise.
1182 * Returns the number of valid paths or negative error.
1184 int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai
*dai
, int stream
,
1185 struct snd_soc_dapm_widget_list
**list
,
1186 bool (*custom_stop_condition
)(struct snd_soc_dapm_widget
*,
1187 enum snd_soc_dapm_direction
))
1189 struct snd_soc_card
*card
= dai
->component
->card
;
1190 struct snd_soc_dapm_widget
*w
;
1195 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
1198 * For is_connected_{output,input}_ep fully discover the graph we need
1199 * to reset the cached number of inputs and outputs.
1201 list_for_each_entry(w
, &card
->widgets
, list
) {
1202 w
->endpoints
[SND_SOC_DAPM_DIR_IN
] = -1;
1203 w
->endpoints
[SND_SOC_DAPM_DIR_OUT
] = -1;
1206 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1207 paths
= is_connected_output_ep(dai
->playback_widget
, &widgets
,
1208 custom_stop_condition
);
1210 paths
= is_connected_input_ep(dai
->capture_widget
, &widgets
,
1211 custom_stop_condition
);
1213 /* Drop starting point */
1214 list_del(widgets
.next
);
1216 ret
= dapm_widget_list_create(list
, &widgets
);
1220 trace_snd_soc_dapm_connected(paths
, stream
);
1221 mutex_unlock(&card
->dapm_mutex
);
1227 * Handler for regulator supply widget.
1229 int dapm_regulator_event(struct snd_soc_dapm_widget
*w
,
1230 struct snd_kcontrol
*kcontrol
, int event
)
1234 soc_dapm_async_complete(w
->dapm
);
1236 if (SND_SOC_DAPM_EVENT_ON(event
)) {
1237 if (w
->on_val
& SND_SOC_DAPM_REGULATOR_BYPASS
) {
1238 ret
= regulator_allow_bypass(w
->regulator
, false);
1240 dev_warn(w
->dapm
->dev
,
1241 "ASoC: Failed to unbypass %s: %d\n",
1245 return regulator_enable(w
->regulator
);
1247 if (w
->on_val
& SND_SOC_DAPM_REGULATOR_BYPASS
) {
1248 ret
= regulator_allow_bypass(w
->regulator
, true);
1250 dev_warn(w
->dapm
->dev
,
1251 "ASoC: Failed to bypass %s: %d\n",
1255 return regulator_disable_deferred(w
->regulator
, w
->shift
);
1258 EXPORT_SYMBOL_GPL(dapm_regulator_event
);
1261 * Handler for clock supply widget.
1263 int dapm_clock_event(struct snd_soc_dapm_widget
*w
,
1264 struct snd_kcontrol
*kcontrol
, int event
)
1269 soc_dapm_async_complete(w
->dapm
);
1271 #ifdef CONFIG_HAVE_CLK
1272 if (SND_SOC_DAPM_EVENT_ON(event
)) {
1273 return clk_prepare_enable(w
->clk
);
1275 clk_disable_unprepare(w
->clk
);
1281 EXPORT_SYMBOL_GPL(dapm_clock_event
);
1283 static int dapm_widget_power_check(struct snd_soc_dapm_widget
*w
)
1285 if (w
->power_checked
)
1286 return w
->new_power
;
1291 w
->new_power
= w
->power_check(w
);
1293 w
->power_checked
= true;
1295 return w
->new_power
;
1298 /* Generic check to see if a widget should be powered. */
1299 static int dapm_generic_check_power(struct snd_soc_dapm_widget
*w
)
1303 DAPM_UPDATE_STAT(w
, power_checks
);
1305 in
= is_connected_input_ep(w
, NULL
, NULL
);
1306 out
= is_connected_output_ep(w
, NULL
, NULL
);
1307 return out
!= 0 && in
!= 0;
1310 /* Check to see if a power supply is needed */
1311 static int dapm_supply_check_power(struct snd_soc_dapm_widget
*w
)
1313 struct snd_soc_dapm_path
*path
;
1315 DAPM_UPDATE_STAT(w
, power_checks
);
1317 /* Check if one of our outputs is connected */
1318 snd_soc_dapm_widget_for_each_sink_path(w
, path
) {
1319 DAPM_UPDATE_STAT(w
, neighbour_checks
);
1324 if (path
->connected
&&
1325 !path
->connected(path
->source
, path
->sink
))
1328 if (dapm_widget_power_check(path
->sink
))
1335 static int dapm_always_on_check_power(struct snd_soc_dapm_widget
*w
)
1337 return w
->connected
;
1340 static int dapm_seq_compare(struct snd_soc_dapm_widget
*a
,
1341 struct snd_soc_dapm_widget
*b
,
1349 sort
= dapm_down_seq
;
1351 if (sort
[a
->id
] != sort
[b
->id
])
1352 return sort
[a
->id
] - sort
[b
->id
];
1353 if (a
->subseq
!= b
->subseq
) {
1355 return a
->subseq
- b
->subseq
;
1357 return b
->subseq
- a
->subseq
;
1359 if (a
->reg
!= b
->reg
)
1360 return a
->reg
- b
->reg
;
1361 if (a
->dapm
!= b
->dapm
)
1362 return (unsigned long)a
->dapm
- (unsigned long)b
->dapm
;
1367 /* Insert a widget in order into a DAPM power sequence. */
1368 static void dapm_seq_insert(struct snd_soc_dapm_widget
*new_widget
,
1369 struct list_head
*list
,
1372 struct snd_soc_dapm_widget
*w
;
1374 list_for_each_entry(w
, list
, power_list
)
1375 if (dapm_seq_compare(new_widget
, w
, power_up
) < 0) {
1376 list_add_tail(&new_widget
->power_list
, &w
->power_list
);
1380 list_add_tail(&new_widget
->power_list
, list
);
1383 static void dapm_seq_check_event(struct snd_soc_card
*card
,
1384 struct snd_soc_dapm_widget
*w
, int event
)
1386 const char *ev_name
;
1390 case SND_SOC_DAPM_PRE_PMU
:
1391 ev_name
= "PRE_PMU";
1394 case SND_SOC_DAPM_POST_PMU
:
1395 ev_name
= "POST_PMU";
1398 case SND_SOC_DAPM_PRE_PMD
:
1399 ev_name
= "PRE_PMD";
1402 case SND_SOC_DAPM_POST_PMD
:
1403 ev_name
= "POST_PMD";
1406 case SND_SOC_DAPM_WILL_PMU
:
1407 ev_name
= "WILL_PMU";
1410 case SND_SOC_DAPM_WILL_PMD
:
1411 ev_name
= "WILL_PMD";
1415 WARN(1, "Unknown event %d\n", event
);
1419 if (w
->new_power
!= power
)
1422 if (w
->event
&& (w
->event_flags
& event
)) {
1423 pop_dbg(w
->dapm
->dev
, card
->pop_time
, "pop test : %s %s\n",
1425 soc_dapm_async_complete(w
->dapm
);
1426 trace_snd_soc_dapm_widget_event_start(w
, event
);
1427 ret
= w
->event(w
, NULL
, event
);
1428 trace_snd_soc_dapm_widget_event_done(w
, event
);
1430 dev_err(w
->dapm
->dev
, "ASoC: %s: %s event failed: %d\n",
1431 ev_name
, w
->name
, ret
);
1435 /* Apply the coalesced changes from a DAPM sequence */
1436 static void dapm_seq_run_coalesced(struct snd_soc_card
*card
,
1437 struct list_head
*pending
)
1439 struct snd_soc_dapm_context
*dapm
;
1440 struct snd_soc_dapm_widget
*w
;
1442 unsigned int value
= 0;
1443 unsigned int mask
= 0;
1445 w
= list_first_entry(pending
, struct snd_soc_dapm_widget
, power_list
);
1449 list_for_each_entry(w
, pending
, power_list
) {
1450 WARN_ON(reg
!= w
->reg
|| dapm
!= w
->dapm
);
1451 w
->power
= w
->new_power
;
1453 mask
|= w
->mask
<< w
->shift
;
1455 value
|= w
->on_val
<< w
->shift
;
1457 value
|= w
->off_val
<< w
->shift
;
1459 pop_dbg(dapm
->dev
, card
->pop_time
,
1460 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1461 w
->name
, reg
, value
, mask
);
1463 /* Check for events */
1464 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_PRE_PMU
);
1465 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_PRE_PMD
);
1469 /* Any widget will do, they should all be updating the
1473 pop_dbg(dapm
->dev
, card
->pop_time
,
1474 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
1475 value
, mask
, reg
, card
->pop_time
);
1476 pop_wait(card
->pop_time
);
1477 soc_dapm_update_bits(dapm
, reg
, mask
, value
);
1480 list_for_each_entry(w
, pending
, power_list
) {
1481 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_POST_PMU
);
1482 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_POST_PMD
);
1486 /* Apply a DAPM power sequence.
1488 * We walk over a pre-sorted list of widgets to apply power to. In
1489 * order to minimise the number of writes to the device required
1490 * multiple widgets will be updated in a single write where possible.
1491 * Currently anything that requires more than a single write is not
1494 static void dapm_seq_run(struct snd_soc_card
*card
,
1495 struct list_head
*list
, int event
, bool power_up
)
1497 struct snd_soc_dapm_widget
*w
, *n
;
1498 struct snd_soc_dapm_context
*d
;
1501 int cur_subseq
= -1;
1502 int cur_reg
= SND_SOC_NOPM
;
1503 struct snd_soc_dapm_context
*cur_dapm
= NULL
;
1510 sort
= dapm_down_seq
;
1512 list_for_each_entry_safe(w
, n
, list
, power_list
) {
1515 /* Do we need to apply any queued changes? */
1516 if (sort
[w
->id
] != cur_sort
|| w
->reg
!= cur_reg
||
1517 w
->dapm
!= cur_dapm
|| w
->subseq
!= cur_subseq
) {
1518 if (!list_empty(&pending
))
1519 dapm_seq_run_coalesced(card
, &pending
);
1521 if (cur_dapm
&& cur_dapm
->seq_notifier
) {
1522 for (i
= 0; i
< ARRAY_SIZE(dapm_up_seq
); i
++)
1523 if (sort
[i
] == cur_sort
)
1524 cur_dapm
->seq_notifier(cur_dapm
,
1529 if (cur_dapm
&& w
->dapm
!= cur_dapm
)
1530 soc_dapm_async_complete(cur_dapm
);
1532 INIT_LIST_HEAD(&pending
);
1534 cur_subseq
= INT_MIN
;
1535 cur_reg
= SND_SOC_NOPM
;
1540 case snd_soc_dapm_pre
:
1542 list_for_each_entry_safe_continue(w
, n
, list
,
1545 if (event
== SND_SOC_DAPM_STREAM_START
)
1547 NULL
, SND_SOC_DAPM_PRE_PMU
);
1548 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
1550 NULL
, SND_SOC_DAPM_PRE_PMD
);
1553 case snd_soc_dapm_post
:
1555 list_for_each_entry_safe_continue(w
, n
, list
,
1558 if (event
== SND_SOC_DAPM_STREAM_START
)
1560 NULL
, SND_SOC_DAPM_POST_PMU
);
1561 else if (event
== SND_SOC_DAPM_STREAM_STOP
)
1563 NULL
, SND_SOC_DAPM_POST_PMD
);
1567 /* Queue it up for application */
1568 cur_sort
= sort
[w
->id
];
1569 cur_subseq
= w
->subseq
;
1572 list_move(&w
->power_list
, &pending
);
1577 dev_err(w
->dapm
->dev
,
1578 "ASoC: Failed to apply widget power: %d\n", ret
);
1581 if (!list_empty(&pending
))
1582 dapm_seq_run_coalesced(card
, &pending
);
1584 if (cur_dapm
&& cur_dapm
->seq_notifier
) {
1585 for (i
= 0; i
< ARRAY_SIZE(dapm_up_seq
); i
++)
1586 if (sort
[i
] == cur_sort
)
1587 cur_dapm
->seq_notifier(cur_dapm
,
1591 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1592 soc_dapm_async_complete(d
);
1596 static void dapm_widget_update(struct snd_soc_card
*card
)
1598 struct snd_soc_dapm_update
*update
= card
->update
;
1599 struct snd_soc_dapm_widget_list
*wlist
;
1600 struct snd_soc_dapm_widget
*w
= NULL
;
1604 if (!update
|| !dapm_kcontrol_is_powered(update
->kcontrol
))
1607 wlist
= dapm_kcontrol_get_wlist(update
->kcontrol
);
1609 for (wi
= 0; wi
< wlist
->num_widgets
; wi
++) {
1610 w
= wlist
->widgets
[wi
];
1612 if (w
->event
&& (w
->event_flags
& SND_SOC_DAPM_PRE_REG
)) {
1613 ret
= w
->event(w
, update
->kcontrol
, SND_SOC_DAPM_PRE_REG
);
1615 dev_err(w
->dapm
->dev
, "ASoC: %s DAPM pre-event failed: %d\n",
1623 ret
= soc_dapm_update_bits(w
->dapm
, update
->reg
, update
->mask
,
1626 dev_err(w
->dapm
->dev
, "ASoC: %s DAPM update failed: %d\n",
1629 for (wi
= 0; wi
< wlist
->num_widgets
; wi
++) {
1630 w
= wlist
->widgets
[wi
];
1632 if (w
->event
&& (w
->event_flags
& SND_SOC_DAPM_POST_REG
)) {
1633 ret
= w
->event(w
, update
->kcontrol
, SND_SOC_DAPM_POST_REG
);
1635 dev_err(w
->dapm
->dev
, "ASoC: %s DAPM post-event failed: %d\n",
1641 /* Async callback run prior to DAPM sequences - brings to _PREPARE if
1642 * they're changing state.
1644 static void dapm_pre_sequence_async(void *data
, async_cookie_t cookie
)
1646 struct snd_soc_dapm_context
*d
= data
;
1649 /* If we're off and we're not supposed to go into STANDBY */
1650 if (d
->bias_level
== SND_SOC_BIAS_OFF
&&
1651 d
->target_bias_level
!= SND_SOC_BIAS_OFF
) {
1653 pm_runtime_get_sync(d
->dev
);
1655 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_STANDBY
);
1658 "ASoC: Failed to turn on bias: %d\n", ret
);
1661 /* Prepare for a transition to ON or away from ON */
1662 if ((d
->target_bias_level
== SND_SOC_BIAS_ON
&&
1663 d
->bias_level
!= SND_SOC_BIAS_ON
) ||
1664 (d
->target_bias_level
!= SND_SOC_BIAS_ON
&&
1665 d
->bias_level
== SND_SOC_BIAS_ON
)) {
1666 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_PREPARE
);
1669 "ASoC: Failed to prepare bias: %d\n", ret
);
1673 /* Async callback run prior to DAPM sequences - brings to their final
1676 static void dapm_post_sequence_async(void *data
, async_cookie_t cookie
)
1678 struct snd_soc_dapm_context
*d
= data
;
1681 /* If we just powered the last thing off drop to standby bias */
1682 if (d
->bias_level
== SND_SOC_BIAS_PREPARE
&&
1683 (d
->target_bias_level
== SND_SOC_BIAS_STANDBY
||
1684 d
->target_bias_level
== SND_SOC_BIAS_OFF
)) {
1685 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_STANDBY
);
1687 dev_err(d
->dev
, "ASoC: Failed to apply standby bias: %d\n",
1691 /* If we're in standby and can support bias off then do that */
1692 if (d
->bias_level
== SND_SOC_BIAS_STANDBY
&&
1693 d
->target_bias_level
== SND_SOC_BIAS_OFF
) {
1694 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_OFF
);
1696 dev_err(d
->dev
, "ASoC: Failed to turn off bias: %d\n",
1700 pm_runtime_put(d
->dev
);
1703 /* If we just powered up then move to active bias */
1704 if (d
->bias_level
== SND_SOC_BIAS_PREPARE
&&
1705 d
->target_bias_level
== SND_SOC_BIAS_ON
) {
1706 ret
= snd_soc_dapm_set_bias_level(d
, SND_SOC_BIAS_ON
);
1708 dev_err(d
->dev
, "ASoC: Failed to apply active bias: %d\n",
1713 static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget
*peer
,
1714 bool power
, bool connect
)
1716 /* If a connection is being made or broken then that update
1717 * will have marked the peer dirty, otherwise the widgets are
1718 * not connected and this update has no impact. */
1722 /* If the peer is already in the state we're moving to then we
1723 * won't have an impact on it. */
1724 if (power
!= peer
->power
)
1725 dapm_mark_dirty(peer
, "peer state change");
1728 static void dapm_widget_set_power(struct snd_soc_dapm_widget
*w
, bool power
,
1729 struct list_head
*up_list
,
1730 struct list_head
*down_list
)
1732 struct snd_soc_dapm_path
*path
;
1734 if (w
->power
== power
)
1737 trace_snd_soc_dapm_widget_power(w
, power
);
1739 /* If we changed our power state perhaps our neigbours changed
1742 snd_soc_dapm_widget_for_each_source_path(w
, path
)
1743 dapm_widget_set_peer_power(path
->source
, power
, path
->connect
);
1745 /* Supplies can't affect their outputs, only their inputs */
1746 if (!w
->is_supply
) {
1747 snd_soc_dapm_widget_for_each_sink_path(w
, path
)
1748 dapm_widget_set_peer_power(path
->sink
, power
,
1753 dapm_seq_insert(w
, up_list
, true);
1755 dapm_seq_insert(w
, down_list
, false);
1758 static void dapm_power_one_widget(struct snd_soc_dapm_widget
*w
,
1759 struct list_head
*up_list
,
1760 struct list_head
*down_list
)
1765 case snd_soc_dapm_pre
:
1766 dapm_seq_insert(w
, down_list
, false);
1768 case snd_soc_dapm_post
:
1769 dapm_seq_insert(w
, up_list
, true);
1773 power
= dapm_widget_power_check(w
);
1775 dapm_widget_set_power(w
, power
, up_list
, down_list
);
1780 static bool dapm_idle_bias_off(struct snd_soc_dapm_context
*dapm
)
1782 if (dapm
->idle_bias_off
)
1785 switch (snd_power_get_state(dapm
->card
->snd_card
)) {
1786 case SNDRV_CTL_POWER_D3hot
:
1787 case SNDRV_CTL_POWER_D3cold
:
1788 return dapm
->suspend_bias_off
;
1797 * Scan each dapm widget for complete audio path.
1798 * A complete path is a route that has valid endpoints i.e.:-
1800 * o DAC to output pin.
1801 * o Input pin to ADC.
1802 * o Input pin to Output pin (bypass, sidetone)
1803 * o DAC to ADC (loopback).
1805 static int dapm_power_widgets(struct snd_soc_card
*card
, int event
)
1807 struct snd_soc_dapm_widget
*w
;
1808 struct snd_soc_dapm_context
*d
;
1810 LIST_HEAD(down_list
);
1811 ASYNC_DOMAIN_EXCLUSIVE(async_domain
);
1812 enum snd_soc_bias_level bias
;
1814 lockdep_assert_held(&card
->dapm_mutex
);
1816 trace_snd_soc_dapm_start(card
);
1818 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1819 if (dapm_idle_bias_off(d
))
1820 d
->target_bias_level
= SND_SOC_BIAS_OFF
;
1822 d
->target_bias_level
= SND_SOC_BIAS_STANDBY
;
1827 /* Check which widgets we need to power and store them in
1828 * lists indicating if they should be powered up or down. We
1829 * only check widgets that have been flagged as dirty but note
1830 * that new widgets may be added to the dirty list while we
1833 list_for_each_entry(w
, &card
->dapm_dirty
, dirty
) {
1834 dapm_power_one_widget(w
, &up_list
, &down_list
);
1837 list_for_each_entry(w
, &card
->widgets
, list
) {
1839 case snd_soc_dapm_pre
:
1840 case snd_soc_dapm_post
:
1841 /* These widgets always need to be powered */
1844 list_del_init(&w
->dirty
);
1851 /* Supplies and micbiases only bring the
1852 * context up to STANDBY as unless something
1853 * else is active and passing audio they
1854 * generally don't require full power. Signal
1855 * generators are virtual pins and have no
1856 * power impact themselves.
1859 case snd_soc_dapm_siggen
:
1860 case snd_soc_dapm_vmid
:
1862 case snd_soc_dapm_supply
:
1863 case snd_soc_dapm_regulator_supply
:
1864 case snd_soc_dapm_clock_supply
:
1865 case snd_soc_dapm_micbias
:
1866 if (d
->target_bias_level
< SND_SOC_BIAS_STANDBY
)
1867 d
->target_bias_level
= SND_SOC_BIAS_STANDBY
;
1870 d
->target_bias_level
= SND_SOC_BIAS_ON
;
1877 /* Force all contexts in the card to the same bias state if
1878 * they're not ground referenced.
1880 bias
= SND_SOC_BIAS_OFF
;
1881 list_for_each_entry(d
, &card
->dapm_list
, list
)
1882 if (d
->target_bias_level
> bias
)
1883 bias
= d
->target_bias_level
;
1884 list_for_each_entry(d
, &card
->dapm_list
, list
)
1885 if (!dapm_idle_bias_off(d
))
1886 d
->target_bias_level
= bias
;
1888 trace_snd_soc_dapm_walk_done(card
);
1890 /* Run card bias changes at first */
1891 dapm_pre_sequence_async(&card
->dapm
, 0);
1892 /* Run other bias changes in parallel */
1893 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1894 if (d
!= &card
->dapm
)
1895 async_schedule_domain(dapm_pre_sequence_async
, d
,
1898 async_synchronize_full_domain(&async_domain
);
1900 list_for_each_entry(w
, &down_list
, power_list
) {
1901 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_WILL_PMD
);
1904 list_for_each_entry(w
, &up_list
, power_list
) {
1905 dapm_seq_check_event(card
, w
, SND_SOC_DAPM_WILL_PMU
);
1908 /* Power down widgets first; try to avoid amplifying pops. */
1909 dapm_seq_run(card
, &down_list
, event
, false);
1911 dapm_widget_update(card
);
1914 dapm_seq_run(card
, &up_list
, event
, true);
1916 /* Run all the bias changes in parallel */
1917 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1918 if (d
!= &card
->dapm
)
1919 async_schedule_domain(dapm_post_sequence_async
, d
,
1922 async_synchronize_full_domain(&async_domain
);
1923 /* Run card bias changes at last */
1924 dapm_post_sequence_async(&card
->dapm
, 0);
1926 /* do we need to notify any clients that DAPM event is complete */
1927 list_for_each_entry(d
, &card
->dapm_list
, list
) {
1928 if (d
->stream_event
)
1929 d
->stream_event(d
, event
);
1932 pop_dbg(card
->dev
, card
->pop_time
,
1933 "DAPM sequencing finished, waiting %dms\n", card
->pop_time
);
1934 pop_wait(card
->pop_time
);
1936 trace_snd_soc_dapm_done(card
);
1941 #ifdef CONFIG_DEBUG_FS
1942 static ssize_t
dapm_widget_power_read_file(struct file
*file
,
1943 char __user
*user_buf
,
1944 size_t count
, loff_t
*ppos
)
1946 struct snd_soc_dapm_widget
*w
= file
->private_data
;
1947 struct snd_soc_card
*card
= w
->dapm
->card
;
1948 enum snd_soc_dapm_direction dir
, rdir
;
1952 struct snd_soc_dapm_path
*p
= NULL
;
1954 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
1958 mutex_lock(&card
->dapm_mutex
);
1960 /* Supply widgets are not handled by is_connected_{input,output}_ep() */
1965 in
= is_connected_input_ep(w
, NULL
, NULL
);
1966 out
= is_connected_output_ep(w
, NULL
, NULL
);
1969 ret
= snprintf(buf
, PAGE_SIZE
, "%s: %s%s in %d out %d",
1970 w
->name
, w
->power
? "On" : "Off",
1971 w
->force
? " (forced)" : "", in
, out
);
1974 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1975 " - R%d(0x%x) mask 0x%x",
1976 w
->reg
, w
->reg
, w
->mask
<< w
->shift
);
1978 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, "\n");
1981 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
, " stream %s %s\n",
1983 w
->active
? "active" : "inactive");
1985 snd_soc_dapm_for_each_direction(dir
) {
1986 rdir
= SND_SOC_DAPM_DIR_REVERSE(dir
);
1987 snd_soc_dapm_widget_for_each_path(w
, dir
, p
) {
1988 if (p
->connected
&& !p
->connected(w
, p
->node
[rdir
]))
1994 ret
+= snprintf(buf
+ ret
, PAGE_SIZE
- ret
,
1995 " %s \"%s\" \"%s\"\n",
1996 (rdir
== SND_SOC_DAPM_DIR_IN
) ? "in" : "out",
1997 p
->name
? p
->name
: "static",
1998 p
->node
[rdir
]->name
);
2002 mutex_unlock(&card
->dapm_mutex
);
2004 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, ret
);
2010 static const struct file_operations dapm_widget_power_fops
= {
2011 .open
= simple_open
,
2012 .read
= dapm_widget_power_read_file
,
2013 .llseek
= default_llseek
,
2016 static ssize_t
dapm_bias_read_file(struct file
*file
, char __user
*user_buf
,
2017 size_t count
, loff_t
*ppos
)
2019 struct snd_soc_dapm_context
*dapm
= file
->private_data
;
2022 switch (dapm
->bias_level
) {
2023 case SND_SOC_BIAS_ON
:
2026 case SND_SOC_BIAS_PREPARE
:
2027 level
= "Prepare\n";
2029 case SND_SOC_BIAS_STANDBY
:
2030 level
= "Standby\n";
2032 case SND_SOC_BIAS_OFF
:
2036 WARN(1, "Unknown bias_level %d\n", dapm
->bias_level
);
2037 level
= "Unknown\n";
2041 return simple_read_from_buffer(user_buf
, count
, ppos
, level
,
2045 static const struct file_operations dapm_bias_fops
= {
2046 .open
= simple_open
,
2047 .read
= dapm_bias_read_file
,
2048 .llseek
= default_llseek
,
2051 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context
*dapm
,
2052 struct dentry
*parent
)
2059 dapm
->debugfs_dapm
= debugfs_create_dir("dapm", parent
);
2061 if (!dapm
->debugfs_dapm
) {
2063 "ASoC: Failed to create DAPM debugfs directory\n");
2067 d
= debugfs_create_file("bias_level", 0444,
2068 dapm
->debugfs_dapm
, dapm
,
2072 "ASoC: Failed to create bias level debugfs file\n");
2075 static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget
*w
)
2077 struct snd_soc_dapm_context
*dapm
= w
->dapm
;
2080 if (!dapm
->debugfs_dapm
|| !w
->name
)
2083 d
= debugfs_create_file(w
->name
, 0444,
2084 dapm
->debugfs_dapm
, w
,
2085 &dapm_widget_power_fops
);
2087 dev_warn(w
->dapm
->dev
,
2088 "ASoC: Failed to create %s debugfs file\n",
2092 static void dapm_debugfs_cleanup(struct snd_soc_dapm_context
*dapm
)
2094 debugfs_remove_recursive(dapm
->debugfs_dapm
);
2098 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context
*dapm
,
2099 struct dentry
*parent
)
2103 static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget
*w
)
2107 static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context
*dapm
)
2114 * soc_dapm_connect_path() - Connects or disconnects a path
2115 * @path: The path to update
2116 * @connect: The new connect state of the path. True if the path is connected,
2117 * false if it is disconnected.
2118 * @reason: The reason why the path changed (for debugging only)
2120 static void soc_dapm_connect_path(struct snd_soc_dapm_path
*path
,
2121 bool connect
, const char *reason
)
2123 if (path
->connect
== connect
)
2126 path
->connect
= connect
;
2127 dapm_mark_dirty(path
->source
, reason
);
2128 dapm_mark_dirty(path
->sink
, reason
);
2129 dapm_path_invalidate(path
);
2132 /* test and update the power status of a mux widget */
2133 static int soc_dapm_mux_update_power(struct snd_soc_card
*card
,
2134 struct snd_kcontrol
*kcontrol
, int mux
, struct soc_enum
*e
)
2136 struct snd_soc_dapm_path
*path
;
2140 lockdep_assert_held(&card
->dapm_mutex
);
2142 /* find dapm widget path assoc with kcontrol */
2143 dapm_kcontrol_for_each_path(path
, kcontrol
) {
2145 /* we now need to match the string in the enum to the path */
2146 if (!(strcmp(path
->name
, e
->texts
[mux
])))
2151 soc_dapm_connect_path(path
, connect
, "mux update");
2155 dapm_power_widgets(card
, SND_SOC_DAPM_STREAM_NOP
);
2160 int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context
*dapm
,
2161 struct snd_kcontrol
*kcontrol
, int mux
, struct soc_enum
*e
,
2162 struct snd_soc_dapm_update
*update
)
2164 struct snd_soc_card
*card
= dapm
->card
;
2167 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2168 card
->update
= update
;
2169 ret
= soc_dapm_mux_update_power(card
, kcontrol
, mux
, e
);
2170 card
->update
= NULL
;
2171 mutex_unlock(&card
->dapm_mutex
);
2173 soc_dpcm_runtime_update(card
);
2176 EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power
);
2178 /* test and update the power status of a mixer or switch widget */
2179 static int soc_dapm_mixer_update_power(struct snd_soc_card
*card
,
2180 struct snd_kcontrol
*kcontrol
, int connect
)
2182 struct snd_soc_dapm_path
*path
;
2185 lockdep_assert_held(&card
->dapm_mutex
);
2187 /* find dapm widget path assoc with kcontrol */
2188 dapm_kcontrol_for_each_path(path
, kcontrol
) {
2190 soc_dapm_connect_path(path
, connect
, "mixer update");
2194 dapm_power_widgets(card
, SND_SOC_DAPM_STREAM_NOP
);
2199 int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context
*dapm
,
2200 struct snd_kcontrol
*kcontrol
, int connect
,
2201 struct snd_soc_dapm_update
*update
)
2203 struct snd_soc_card
*card
= dapm
->card
;
2206 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2207 card
->update
= update
;
2208 ret
= soc_dapm_mixer_update_power(card
, kcontrol
, connect
);
2209 card
->update
= NULL
;
2210 mutex_unlock(&card
->dapm_mutex
);
2212 soc_dpcm_runtime_update(card
);
2215 EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power
);
2217 static ssize_t
dapm_widget_show_component(struct snd_soc_component
*cmpnt
,
2220 struct snd_soc_dapm_context
*dapm
= snd_soc_component_get_dapm(cmpnt
);
2221 struct snd_soc_dapm_widget
*w
;
2223 char *state
= "not set";
2225 /* card won't be set for the dummy component, as a spot fix
2226 * we're checking for that case specifically here but in future
2227 * we will ensure that the dummy component looks like others.
2232 list_for_each_entry(w
, &cmpnt
->card
->widgets
, list
) {
2233 if (w
->dapm
!= dapm
)
2236 /* only display widgets that burn power */
2238 case snd_soc_dapm_hp
:
2239 case snd_soc_dapm_mic
:
2240 case snd_soc_dapm_spk
:
2241 case snd_soc_dapm_line
:
2242 case snd_soc_dapm_micbias
:
2243 case snd_soc_dapm_dac
:
2244 case snd_soc_dapm_adc
:
2245 case snd_soc_dapm_pga
:
2246 case snd_soc_dapm_out_drv
:
2247 case snd_soc_dapm_mixer
:
2248 case snd_soc_dapm_mixer_named_ctl
:
2249 case snd_soc_dapm_supply
:
2250 case snd_soc_dapm_regulator_supply
:
2251 case snd_soc_dapm_clock_supply
:
2253 count
+= sprintf(buf
+ count
, "%s: %s\n",
2254 w
->name
, w
->power
? "On":"Off");
2261 switch (snd_soc_dapm_get_bias_level(dapm
)) {
2262 case SND_SOC_BIAS_ON
:
2265 case SND_SOC_BIAS_PREPARE
:
2268 case SND_SOC_BIAS_STANDBY
:
2271 case SND_SOC_BIAS_OFF
:
2275 count
+= sprintf(buf
+ count
, "PM State: %s\n", state
);
2280 /* show dapm widget status in sys fs */
2281 static ssize_t
dapm_widget_show(struct device
*dev
,
2282 struct device_attribute
*attr
, char *buf
)
2284 struct snd_soc_pcm_runtime
*rtd
= dev_get_drvdata(dev
);
2287 mutex_lock(&rtd
->card
->dapm_mutex
);
2289 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
2290 struct snd_soc_component
*cmpnt
= rtd
->codec_dais
[i
]->component
;
2292 count
+= dapm_widget_show_component(cmpnt
, buf
+ count
);
2295 mutex_unlock(&rtd
->card
->dapm_mutex
);
2300 static DEVICE_ATTR(dapm_widget
, 0444, dapm_widget_show
, NULL
);
2302 struct attribute
*soc_dapm_dev_attrs
[] = {
2303 &dev_attr_dapm_widget
.attr
,
2307 static void dapm_free_path(struct snd_soc_dapm_path
*path
)
2309 list_del(&path
->list_node
[SND_SOC_DAPM_DIR_IN
]);
2310 list_del(&path
->list_node
[SND_SOC_DAPM_DIR_OUT
]);
2311 list_del(&path
->list_kcontrol
);
2312 list_del(&path
->list
);
2316 void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget
*w
)
2318 struct snd_soc_dapm_path
*p
, *next_p
;
2319 enum snd_soc_dapm_direction dir
;
2323 * remove source and sink paths associated to this widget.
2324 * While removing the path, remove reference to it from both
2325 * source and sink widgets so that path is removed only once.
2327 snd_soc_dapm_for_each_direction(dir
) {
2328 snd_soc_dapm_widget_for_each_path_safe(w
, dir
, p
, next_p
)
2332 kfree(w
->kcontrols
);
2333 kfree_const(w
->name
);
2337 void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context
*dapm
)
2339 dapm
->path_sink_cache
.widget
= NULL
;
2340 dapm
->path_source_cache
.widget
= NULL
;
2343 /* free all dapm widgets and resources */
2344 static void dapm_free_widgets(struct snd_soc_dapm_context
*dapm
)
2346 struct snd_soc_dapm_widget
*w
, *next_w
;
2348 list_for_each_entry_safe(w
, next_w
, &dapm
->card
->widgets
, list
) {
2349 if (w
->dapm
!= dapm
)
2351 snd_soc_dapm_free_widget(w
);
2353 snd_soc_dapm_reset_cache(dapm
);
2356 static struct snd_soc_dapm_widget
*dapm_find_widget(
2357 struct snd_soc_dapm_context
*dapm
, const char *pin
,
2358 bool search_other_contexts
)
2360 struct snd_soc_dapm_widget
*w
;
2361 struct snd_soc_dapm_widget
*fallback
= NULL
;
2363 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
2364 if (!strcmp(w
->name
, pin
)) {
2365 if (w
->dapm
== dapm
)
2372 if (search_other_contexts
)
2378 static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context
*dapm
,
2379 const char *pin
, int status
)
2381 struct snd_soc_dapm_widget
*w
= dapm_find_widget(dapm
, pin
, true);
2383 dapm_assert_locked(dapm
);
2386 dev_err(dapm
->dev
, "ASoC: DAPM unknown pin %s\n", pin
);
2390 if (w
->connected
!= status
) {
2391 dapm_mark_dirty(w
, "pin configuration");
2392 dapm_widget_invalidate_input_paths(w
);
2393 dapm_widget_invalidate_output_paths(w
);
2396 w
->connected
= status
;
2404 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2405 * @dapm: DAPM context
2407 * Walks all dapm audio paths and powers widgets according to their
2408 * stream or path usage.
2410 * Requires external locking.
2412 * Returns 0 for success.
2414 int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context
*dapm
)
2417 * Suppress early reports (eg, jacks syncing their state) to avoid
2418 * silly DAPM runs during card startup.
2420 if (!dapm
->card
|| !dapm
->card
->instantiated
)
2423 return dapm_power_widgets(dapm
->card
, SND_SOC_DAPM_STREAM_NOP
);
2425 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked
);
2428 * snd_soc_dapm_sync - scan and power dapm paths
2429 * @dapm: DAPM context
2431 * Walks all dapm audio paths and powers widgets according to their
2432 * stream or path usage.
2434 * Returns 0 for success.
2436 int snd_soc_dapm_sync(struct snd_soc_dapm_context
*dapm
)
2440 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
2441 ret
= snd_soc_dapm_sync_unlocked(dapm
);
2442 mutex_unlock(&dapm
->card
->dapm_mutex
);
2445 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync
);
2448 * dapm_update_widget_flags() - Re-compute widget sink and source flags
2449 * @w: The widget for which to update the flags
2451 * Some widgets have a dynamic category which depends on which neighbors they
2452 * are connected to. This function update the category for these widgets.
2454 * This function must be called whenever a path is added or removed to a widget.
2456 static void dapm_update_widget_flags(struct snd_soc_dapm_widget
*w
)
2458 enum snd_soc_dapm_direction dir
;
2459 struct snd_soc_dapm_path
*p
;
2463 case snd_soc_dapm_input
:
2464 /* On a fully routed card an input is never a source */
2465 if (w
->dapm
->card
->fully_routed
)
2467 ep
= SND_SOC_DAPM_EP_SOURCE
;
2468 snd_soc_dapm_widget_for_each_source_path(w
, p
) {
2469 if (p
->source
->id
== snd_soc_dapm_micbias
||
2470 p
->source
->id
== snd_soc_dapm_mic
||
2471 p
->source
->id
== snd_soc_dapm_line
||
2472 p
->source
->id
== snd_soc_dapm_output
) {
2478 case snd_soc_dapm_output
:
2479 /* On a fully routed card a output is never a sink */
2480 if (w
->dapm
->card
->fully_routed
)
2482 ep
= SND_SOC_DAPM_EP_SINK
;
2483 snd_soc_dapm_widget_for_each_sink_path(w
, p
) {
2484 if (p
->sink
->id
== snd_soc_dapm_spk
||
2485 p
->sink
->id
== snd_soc_dapm_hp
||
2486 p
->sink
->id
== snd_soc_dapm_line
||
2487 p
->sink
->id
== snd_soc_dapm_input
) {
2493 case snd_soc_dapm_line
:
2495 snd_soc_dapm_for_each_direction(dir
) {
2496 if (!list_empty(&w
->edges
[dir
]))
2497 ep
|= SND_SOC_DAPM_DIR_TO_EP(dir
);
2507 static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context
*dapm
,
2508 struct snd_soc_dapm_widget
*source
, struct snd_soc_dapm_widget
*sink
,
2509 const char *control
)
2511 bool dynamic_source
= false;
2512 bool dynamic_sink
= false;
2517 switch (source
->id
) {
2518 case snd_soc_dapm_demux
:
2519 dynamic_source
= true;
2526 case snd_soc_dapm_mux
:
2527 case snd_soc_dapm_switch
:
2528 case snd_soc_dapm_mixer
:
2529 case snd_soc_dapm_mixer_named_ctl
:
2530 dynamic_sink
= true;
2536 if (dynamic_source
&& dynamic_sink
) {
2538 "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2539 source
->name
, control
, sink
->name
);
2541 } else if (!dynamic_source
&& !dynamic_sink
) {
2543 "Control not supported for path %s -> [%s] -> %s\n",
2544 source
->name
, control
, sink
->name
);
2551 static int snd_soc_dapm_add_path(struct snd_soc_dapm_context
*dapm
,
2552 struct snd_soc_dapm_widget
*wsource
, struct snd_soc_dapm_widget
*wsink
,
2553 const char *control
,
2554 int (*connected
)(struct snd_soc_dapm_widget
*source
,
2555 struct snd_soc_dapm_widget
*sink
))
2557 struct snd_soc_dapm_widget
*widgets
[2];
2558 enum snd_soc_dapm_direction dir
;
2559 struct snd_soc_dapm_path
*path
;
2562 if (wsink
->is_supply
&& !wsource
->is_supply
) {
2564 "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2565 wsource
->name
, wsink
->name
);
2569 if (connected
&& !wsource
->is_supply
) {
2571 "connected() callback only supported for supply widgets (%s -> %s)\n",
2572 wsource
->name
, wsink
->name
);
2576 if (wsource
->is_supply
&& control
) {
2578 "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2579 wsource
->name
, control
, wsink
->name
);
2583 ret
= snd_soc_dapm_check_dynamic_path(dapm
, wsource
, wsink
, control
);
2587 path
= kzalloc(sizeof(struct snd_soc_dapm_path
), GFP_KERNEL
);
2591 path
->node
[SND_SOC_DAPM_DIR_IN
] = wsource
;
2592 path
->node
[SND_SOC_DAPM_DIR_OUT
] = wsink
;
2593 widgets
[SND_SOC_DAPM_DIR_IN
] = wsource
;
2594 widgets
[SND_SOC_DAPM_DIR_OUT
] = wsink
;
2596 path
->connected
= connected
;
2597 INIT_LIST_HEAD(&path
->list
);
2598 INIT_LIST_HEAD(&path
->list_kcontrol
);
2600 if (wsource
->is_supply
|| wsink
->is_supply
)
2601 path
->is_supply
= 1;
2603 /* connect static paths */
2604 if (control
== NULL
) {
2607 switch (wsource
->id
) {
2608 case snd_soc_dapm_demux
:
2609 ret
= dapm_connect_mux(dapm
, path
, control
, wsource
);
2617 switch (wsink
->id
) {
2618 case snd_soc_dapm_mux
:
2619 ret
= dapm_connect_mux(dapm
, path
, control
, wsink
);
2623 case snd_soc_dapm_switch
:
2624 case snd_soc_dapm_mixer
:
2625 case snd_soc_dapm_mixer_named_ctl
:
2626 ret
= dapm_connect_mixer(dapm
, path
, control
);
2635 list_add(&path
->list
, &dapm
->card
->paths
);
2636 snd_soc_dapm_for_each_direction(dir
)
2637 list_add(&path
->list_node
[dir
], &widgets
[dir
]->edges
[dir
]);
2639 snd_soc_dapm_for_each_direction(dir
) {
2640 dapm_update_widget_flags(widgets
[dir
]);
2641 dapm_mark_dirty(widgets
[dir
], "Route added");
2644 if (dapm
->card
->instantiated
&& path
->connect
)
2645 dapm_path_invalidate(path
);
2653 static int snd_soc_dapm_add_route(struct snd_soc_dapm_context
*dapm
,
2654 const struct snd_soc_dapm_route
*route
)
2656 struct snd_soc_dapm_widget
*wsource
= NULL
, *wsink
= NULL
, *w
;
2657 struct snd_soc_dapm_widget
*wtsource
= NULL
, *wtsink
= NULL
;
2660 char prefixed_sink
[80];
2661 char prefixed_source
[80];
2665 prefix
= soc_dapm_prefix(dapm
);
2667 snprintf(prefixed_sink
, sizeof(prefixed_sink
), "%s %s",
2668 prefix
, route
->sink
);
2669 sink
= prefixed_sink
;
2670 snprintf(prefixed_source
, sizeof(prefixed_source
), "%s %s",
2671 prefix
, route
->source
);
2672 source
= prefixed_source
;
2675 source
= route
->source
;
2678 wsource
= dapm_wcache_lookup(&dapm
->path_source_cache
, source
);
2679 wsink
= dapm_wcache_lookup(&dapm
->path_sink_cache
, sink
);
2681 if (wsink
&& wsource
)
2685 * find src and dest widgets over all widgets but favor a widget from
2686 * current DAPM context
2688 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
2689 if (!wsink
&& !(strcmp(w
->name
, sink
))) {
2691 if (w
->dapm
== dapm
) {
2698 if (!wsource
&& !(strcmp(w
->name
, source
))) {
2700 if (w
->dapm
== dapm
) {
2707 /* use widget from another DAPM context if not found from this */
2713 if (wsource
== NULL
) {
2714 dev_err(dapm
->dev
, "ASoC: no source widget found for %s\n",
2718 if (wsink
== NULL
) {
2719 dev_err(dapm
->dev
, "ASoC: no sink widget found for %s\n",
2725 dapm_wcache_update(&dapm
->path_sink_cache
, wsink
);
2726 dapm_wcache_update(&dapm
->path_source_cache
, wsource
);
2728 ret
= snd_soc_dapm_add_path(dapm
, wsource
, wsink
, route
->control
,
2735 dev_warn(dapm
->dev
, "ASoC: no dapm match for %s --> %s --> %s\n",
2736 source
, route
->control
, sink
);
2740 static int snd_soc_dapm_del_route(struct snd_soc_dapm_context
*dapm
,
2741 const struct snd_soc_dapm_route
*route
)
2743 struct snd_soc_dapm_widget
*wsource
, *wsink
;
2744 struct snd_soc_dapm_path
*path
, *p
;
2747 char prefixed_sink
[80];
2748 char prefixed_source
[80];
2751 if (route
->control
) {
2753 "ASoC: Removal of routes with controls not supported\n");
2757 prefix
= soc_dapm_prefix(dapm
);
2759 snprintf(prefixed_sink
, sizeof(prefixed_sink
), "%s %s",
2760 prefix
, route
->sink
);
2761 sink
= prefixed_sink
;
2762 snprintf(prefixed_source
, sizeof(prefixed_source
), "%s %s",
2763 prefix
, route
->source
);
2764 source
= prefixed_source
;
2767 source
= route
->source
;
2771 list_for_each_entry(p
, &dapm
->card
->paths
, list
) {
2772 if (strcmp(p
->source
->name
, source
) != 0)
2774 if (strcmp(p
->sink
->name
, sink
) != 0)
2781 wsource
= path
->source
;
2784 dapm_mark_dirty(wsource
, "Route removed");
2785 dapm_mark_dirty(wsink
, "Route removed");
2787 dapm_path_invalidate(path
);
2789 dapm_free_path(path
);
2791 /* Update any path related flags */
2792 dapm_update_widget_flags(wsource
);
2793 dapm_update_widget_flags(wsink
);
2795 dev_warn(dapm
->dev
, "ASoC: Route %s->%s does not exist\n",
2803 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
2804 * @dapm: DAPM context
2805 * @route: audio routes
2806 * @num: number of routes
2808 * Connects 2 dapm widgets together via a named audio path. The sink is
2809 * the widget receiving the audio signal, whilst the source is the sender
2810 * of the audio signal.
2812 * Returns 0 for success else error. On error all resources can be freed
2813 * with a call to snd_soc_card_free().
2815 int snd_soc_dapm_add_routes(struct snd_soc_dapm_context
*dapm
,
2816 const struct snd_soc_dapm_route
*route
, int num
)
2820 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
2821 for (i
= 0; i
< num
; i
++) {
2822 r
= snd_soc_dapm_add_route(dapm
, route
);
2824 dev_err(dapm
->dev
, "ASoC: Failed to add route %s -> %s -> %s\n",
2826 route
->control
? route
->control
: "direct",
2832 mutex_unlock(&dapm
->card
->dapm_mutex
);
2836 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes
);
2839 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2840 * @dapm: DAPM context
2841 * @route: audio routes
2842 * @num: number of routes
2844 * Removes routes from the DAPM context.
2846 int snd_soc_dapm_del_routes(struct snd_soc_dapm_context
*dapm
,
2847 const struct snd_soc_dapm_route
*route
, int num
)
2851 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
2852 for (i
= 0; i
< num
; i
++) {
2853 snd_soc_dapm_del_route(dapm
, route
);
2856 mutex_unlock(&dapm
->card
->dapm_mutex
);
2860 EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes
);
2862 static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context
*dapm
,
2863 const struct snd_soc_dapm_route
*route
)
2865 struct snd_soc_dapm_widget
*source
= dapm_find_widget(dapm
,
2868 struct snd_soc_dapm_widget
*sink
= dapm_find_widget(dapm
,
2871 struct snd_soc_dapm_path
*path
;
2875 dev_err(dapm
->dev
, "ASoC: Unable to find source %s for weak route\n",
2881 dev_err(dapm
->dev
, "ASoC: Unable to find sink %s for weak route\n",
2886 if (route
->control
|| route
->connected
)
2887 dev_warn(dapm
->dev
, "ASoC: Ignoring control for weak route %s->%s\n",
2888 route
->source
, route
->sink
);
2890 snd_soc_dapm_widget_for_each_sink_path(source
, path
) {
2891 if (path
->sink
== sink
) {
2898 dev_err(dapm
->dev
, "ASoC: No path found for weak route %s->%s\n",
2899 route
->source
, route
->sink
);
2901 dev_warn(dapm
->dev
, "ASoC: %d paths found for weak route %s->%s\n",
2902 count
, route
->source
, route
->sink
);
2908 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2909 * @dapm: DAPM context
2910 * @route: audio routes
2911 * @num: number of routes
2913 * Mark existing routes matching those specified in the passed array
2914 * as being weak, meaning that they are ignored for the purpose of
2915 * power decisions. The main intended use case is for sidetone paths
2916 * which couple audio between other independent paths if they are both
2917 * active in order to make the combination work better at the user
2918 * level but which aren't intended to be "used".
2920 * Note that CODEC drivers should not use this as sidetone type paths
2921 * can frequently also be used as bypass paths.
2923 int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context
*dapm
,
2924 const struct snd_soc_dapm_route
*route
, int num
)
2929 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
2930 for (i
= 0; i
< num
; i
++) {
2931 err
= snd_soc_dapm_weak_route(dapm
, route
);
2936 mutex_unlock(&dapm
->card
->dapm_mutex
);
2940 EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes
);
2943 * snd_soc_dapm_new_widgets - add new dapm widgets
2944 * @card: card to be checked for new dapm widgets
2946 * Checks the codec for any new dapm widgets and creates them if found.
2948 * Returns 0 for success.
2950 int snd_soc_dapm_new_widgets(struct snd_soc_card
*card
)
2952 struct snd_soc_dapm_widget
*w
;
2955 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
2957 list_for_each_entry(w
, &card
->widgets
, list
)
2962 if (w
->num_kcontrols
) {
2963 w
->kcontrols
= kzalloc(w
->num_kcontrols
*
2964 sizeof(struct snd_kcontrol
*),
2966 if (!w
->kcontrols
) {
2967 mutex_unlock(&card
->dapm_mutex
);
2973 case snd_soc_dapm_switch
:
2974 case snd_soc_dapm_mixer
:
2975 case snd_soc_dapm_mixer_named_ctl
:
2978 case snd_soc_dapm_mux
:
2979 case snd_soc_dapm_demux
:
2982 case snd_soc_dapm_pga
:
2983 case snd_soc_dapm_out_drv
:
2986 case snd_soc_dapm_dai_link
:
2987 dapm_new_dai_link(w
);
2993 /* Read the initial power state from the device */
2995 soc_dapm_read(w
->dapm
, w
->reg
, &val
);
2996 val
= val
>> w
->shift
;
2998 if (val
== w
->on_val
)
3004 dapm_mark_dirty(w
, "new widget");
3005 dapm_debugfs_add_widget(w
);
3008 dapm_power_widgets(card
, SND_SOC_DAPM_STREAM_NOP
);
3009 mutex_unlock(&card
->dapm_mutex
);
3012 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets
);
3015 * snd_soc_dapm_get_volsw - dapm mixer get callback
3016 * @kcontrol: mixer control
3017 * @ucontrol: control element information
3019 * Callback to get the value of a dapm mixer control.
3021 * Returns 0 for success.
3023 int snd_soc_dapm_get_volsw(struct snd_kcontrol
*kcontrol
,
3024 struct snd_ctl_elem_value
*ucontrol
)
3026 struct snd_soc_dapm_context
*dapm
= snd_soc_dapm_kcontrol_dapm(kcontrol
);
3027 struct snd_soc_card
*card
= dapm
->card
;
3028 struct soc_mixer_control
*mc
=
3029 (struct soc_mixer_control
*)kcontrol
->private_value
;
3031 unsigned int shift
= mc
->shift
;
3033 unsigned int mask
= (1 << fls(max
)) - 1;
3034 unsigned int invert
= mc
->invert
;
3038 if (snd_soc_volsw_is_stereo(mc
))
3040 "ASoC: Control '%s' is stereo, which is not supported\n",
3043 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3044 if (dapm_kcontrol_is_powered(kcontrol
) && reg
!= SND_SOC_NOPM
) {
3045 ret
= soc_dapm_read(dapm
, reg
, &val
);
3046 val
= (val
>> shift
) & mask
;
3048 val
= dapm_kcontrol_get_value(kcontrol
);
3050 mutex_unlock(&card
->dapm_mutex
);
3056 ucontrol
->value
.integer
.value
[0] = max
- val
;
3058 ucontrol
->value
.integer
.value
[0] = val
;
3062 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw
);
3065 * snd_soc_dapm_put_volsw - dapm mixer set callback
3066 * @kcontrol: mixer control
3067 * @ucontrol: control element information
3069 * Callback to set the value of a dapm mixer control.
3071 * Returns 0 for success.
3073 int snd_soc_dapm_put_volsw(struct snd_kcontrol
*kcontrol
,
3074 struct snd_ctl_elem_value
*ucontrol
)
3076 struct snd_soc_dapm_context
*dapm
= snd_soc_dapm_kcontrol_dapm(kcontrol
);
3077 struct snd_soc_card
*card
= dapm
->card
;
3078 struct soc_mixer_control
*mc
=
3079 (struct soc_mixer_control
*)kcontrol
->private_value
;
3081 unsigned int shift
= mc
->shift
;
3083 unsigned int mask
= (1 << fls(max
)) - 1;
3084 unsigned int invert
= mc
->invert
;
3086 int connect
, change
, reg_change
= 0;
3087 struct snd_soc_dapm_update update
;
3090 if (snd_soc_volsw_is_stereo(mc
))
3092 "ASoC: Control '%s' is stereo, which is not supported\n",
3095 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
3101 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3103 change
= dapm_kcontrol_set_value(kcontrol
, val
);
3105 if (reg
!= SND_SOC_NOPM
) {
3106 mask
= mask
<< shift
;
3109 reg_change
= soc_dapm_test_bits(dapm
, reg
, mask
, val
);
3112 if (change
|| reg_change
) {
3114 update
.kcontrol
= kcontrol
;
3118 card
->update
= &update
;
3120 change
|= reg_change
;
3122 ret
= soc_dapm_mixer_update_power(card
, kcontrol
, connect
);
3124 card
->update
= NULL
;
3127 mutex_unlock(&card
->dapm_mutex
);
3130 soc_dpcm_runtime_update(card
);
3134 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw
);
3137 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3138 * @kcontrol: mixer control
3139 * @ucontrol: control element information
3141 * Callback to get the value of a dapm enumerated double mixer control.
3143 * Returns 0 for success.
3145 int snd_soc_dapm_get_enum_double(struct snd_kcontrol
*kcontrol
,
3146 struct snd_ctl_elem_value
*ucontrol
)
3148 struct snd_soc_dapm_context
*dapm
= snd_soc_dapm_kcontrol_dapm(kcontrol
);
3149 struct snd_soc_card
*card
= dapm
->card
;
3150 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
3151 unsigned int reg_val
, val
;
3153 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3154 if (e
->reg
!= SND_SOC_NOPM
&& dapm_kcontrol_is_powered(kcontrol
)) {
3155 int ret
= soc_dapm_read(dapm
, e
->reg
, ®_val
);
3157 mutex_unlock(&card
->dapm_mutex
);
3161 reg_val
= dapm_kcontrol_get_value(kcontrol
);
3163 mutex_unlock(&card
->dapm_mutex
);
3165 val
= (reg_val
>> e
->shift_l
) & e
->mask
;
3166 ucontrol
->value
.enumerated
.item
[0] = snd_soc_enum_val_to_item(e
, val
);
3167 if (e
->shift_l
!= e
->shift_r
) {
3168 val
= (reg_val
>> e
->shift_r
) & e
->mask
;
3169 val
= snd_soc_enum_val_to_item(e
, val
);
3170 ucontrol
->value
.enumerated
.item
[1] = val
;
3175 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double
);
3178 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3179 * @kcontrol: mixer control
3180 * @ucontrol: control element information
3182 * Callback to set the value of a dapm enumerated double mixer control.
3184 * Returns 0 for success.
3186 int snd_soc_dapm_put_enum_double(struct snd_kcontrol
*kcontrol
,
3187 struct snd_ctl_elem_value
*ucontrol
)
3189 struct snd_soc_dapm_context
*dapm
= snd_soc_dapm_kcontrol_dapm(kcontrol
);
3190 struct snd_soc_card
*card
= dapm
->card
;
3191 struct soc_enum
*e
= (struct soc_enum
*)kcontrol
->private_value
;
3192 unsigned int *item
= ucontrol
->value
.enumerated
.item
;
3193 unsigned int val
, change
, reg_change
= 0;
3195 struct snd_soc_dapm_update update
;
3198 if (item
[0] >= e
->items
)
3201 val
= snd_soc_enum_item_to_val(e
, item
[0]) << e
->shift_l
;
3202 mask
= e
->mask
<< e
->shift_l
;
3203 if (e
->shift_l
!= e
->shift_r
) {
3204 if (item
[1] > e
->items
)
3206 val
|= snd_soc_enum_item_to_val(e
, item
[1]) << e
->shift_r
;
3207 mask
|= e
->mask
<< e
->shift_r
;
3210 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3212 change
= dapm_kcontrol_set_value(kcontrol
, val
);
3214 if (e
->reg
!= SND_SOC_NOPM
)
3215 reg_change
= soc_dapm_test_bits(dapm
, e
->reg
, mask
, val
);
3217 if (change
|| reg_change
) {
3219 update
.kcontrol
= kcontrol
;
3220 update
.reg
= e
->reg
;
3223 card
->update
= &update
;
3225 change
|= reg_change
;
3227 ret
= soc_dapm_mux_update_power(card
, kcontrol
, item
[0], e
);
3229 card
->update
= NULL
;
3232 mutex_unlock(&card
->dapm_mutex
);
3235 soc_dpcm_runtime_update(card
);
3239 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double
);
3242 * snd_soc_dapm_info_pin_switch - Info for a pin switch
3244 * @kcontrol: mixer control
3245 * @uinfo: control element information
3247 * Callback to provide information about a pin switch control.
3249 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol
*kcontrol
,
3250 struct snd_ctl_elem_info
*uinfo
)
3252 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
3254 uinfo
->value
.integer
.min
= 0;
3255 uinfo
->value
.integer
.max
= 1;
3259 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch
);
3262 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3264 * @kcontrol: mixer control
3267 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol
*kcontrol
,
3268 struct snd_ctl_elem_value
*ucontrol
)
3270 struct snd_soc_card
*card
= snd_kcontrol_chip(kcontrol
);
3271 const char *pin
= (const char *)kcontrol
->private_value
;
3273 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3275 ucontrol
->value
.integer
.value
[0] =
3276 snd_soc_dapm_get_pin_status(&card
->dapm
, pin
);
3278 mutex_unlock(&card
->dapm_mutex
);
3282 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch
);
3285 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3287 * @kcontrol: mixer control
3290 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol
*kcontrol
,
3291 struct snd_ctl_elem_value
*ucontrol
)
3293 struct snd_soc_card
*card
= snd_kcontrol_chip(kcontrol
);
3294 const char *pin
= (const char *)kcontrol
->private_value
;
3296 if (ucontrol
->value
.integer
.value
[0])
3297 snd_soc_dapm_enable_pin(&card
->dapm
, pin
);
3299 snd_soc_dapm_disable_pin(&card
->dapm
, pin
);
3301 snd_soc_dapm_sync(&card
->dapm
);
3304 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch
);
3306 struct snd_soc_dapm_widget
*
3307 snd_soc_dapm_new_control(struct snd_soc_dapm_context
*dapm
,
3308 const struct snd_soc_dapm_widget
*widget
)
3310 struct snd_soc_dapm_widget
*w
;
3312 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
3313 w
= snd_soc_dapm_new_control_unlocked(dapm
, widget
);
3316 "ASoC: Failed to create DAPM control %s\n",
3319 mutex_unlock(&dapm
->card
->dapm_mutex
);
3322 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control
);
3324 struct snd_soc_dapm_widget
*
3325 snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context
*dapm
,
3326 const struct snd_soc_dapm_widget
*widget
)
3328 enum snd_soc_dapm_direction dir
;
3329 struct snd_soc_dapm_widget
*w
;
3333 if ((w
= dapm_cnew_widget(widget
)) == NULL
)
3337 case snd_soc_dapm_regulator_supply
:
3338 w
->regulator
= devm_regulator_get(dapm
->dev
, w
->name
);
3339 if (IS_ERR(w
->regulator
)) {
3340 ret
= PTR_ERR(w
->regulator
);
3341 dev_err(dapm
->dev
, "ASoC: Failed to request %s: %d\n",
3346 if (w
->on_val
& SND_SOC_DAPM_REGULATOR_BYPASS
) {
3347 ret
= regulator_allow_bypass(w
->regulator
, true);
3349 dev_warn(w
->dapm
->dev
,
3350 "ASoC: Failed to bypass %s: %d\n",
3354 case snd_soc_dapm_clock_supply
:
3355 #ifdef CONFIG_CLKDEV_LOOKUP
3356 w
->clk
= devm_clk_get(dapm
->dev
, w
->name
);
3357 if (IS_ERR(w
->clk
)) {
3358 ret
= PTR_ERR(w
->clk
);
3359 dev_err(dapm
->dev
, "ASoC: Failed to request %s: %d\n",
3371 prefix
= soc_dapm_prefix(dapm
);
3373 w
->name
= kasprintf(GFP_KERNEL
, "%s %s", prefix
, widget
->name
);
3375 w
->name
= kstrdup_const(widget
->name
, GFP_KERNEL
);
3376 if (w
->name
== NULL
) {
3382 case snd_soc_dapm_mic
:
3383 w
->is_ep
= SND_SOC_DAPM_EP_SOURCE
;
3384 w
->power_check
= dapm_generic_check_power
;
3386 case snd_soc_dapm_input
:
3387 if (!dapm
->card
->fully_routed
)
3388 w
->is_ep
= SND_SOC_DAPM_EP_SOURCE
;
3389 w
->power_check
= dapm_generic_check_power
;
3391 case snd_soc_dapm_spk
:
3392 case snd_soc_dapm_hp
:
3393 w
->is_ep
= SND_SOC_DAPM_EP_SINK
;
3394 w
->power_check
= dapm_generic_check_power
;
3396 case snd_soc_dapm_output
:
3397 if (!dapm
->card
->fully_routed
)
3398 w
->is_ep
= SND_SOC_DAPM_EP_SINK
;
3399 w
->power_check
= dapm_generic_check_power
;
3401 case snd_soc_dapm_vmid
:
3402 case snd_soc_dapm_siggen
:
3403 w
->is_ep
= SND_SOC_DAPM_EP_SOURCE
;
3404 w
->power_check
= dapm_always_on_check_power
;
3406 case snd_soc_dapm_sink
:
3407 w
->is_ep
= SND_SOC_DAPM_EP_SINK
;
3408 w
->power_check
= dapm_always_on_check_power
;
3411 case snd_soc_dapm_mux
:
3412 case snd_soc_dapm_demux
:
3413 case snd_soc_dapm_switch
:
3414 case snd_soc_dapm_mixer
:
3415 case snd_soc_dapm_mixer_named_ctl
:
3416 case snd_soc_dapm_adc
:
3417 case snd_soc_dapm_aif_out
:
3418 case snd_soc_dapm_dac
:
3419 case snd_soc_dapm_aif_in
:
3420 case snd_soc_dapm_pga
:
3421 case snd_soc_dapm_out_drv
:
3422 case snd_soc_dapm_micbias
:
3423 case snd_soc_dapm_line
:
3424 case snd_soc_dapm_dai_link
:
3425 case snd_soc_dapm_dai_out
:
3426 case snd_soc_dapm_dai_in
:
3427 w
->power_check
= dapm_generic_check_power
;
3429 case snd_soc_dapm_supply
:
3430 case snd_soc_dapm_regulator_supply
:
3431 case snd_soc_dapm_clock_supply
:
3432 case snd_soc_dapm_kcontrol
:
3434 w
->power_check
= dapm_supply_check_power
;
3437 w
->power_check
= dapm_always_on_check_power
;
3442 INIT_LIST_HEAD(&w
->list
);
3443 INIT_LIST_HEAD(&w
->dirty
);
3444 list_add_tail(&w
->list
, &dapm
->card
->widgets
);
3446 snd_soc_dapm_for_each_direction(dir
) {
3447 INIT_LIST_HEAD(&w
->edges
[dir
]);
3448 w
->endpoints
[dir
] = -1;
3451 /* machine layer sets up unconnected pins and insertions */
3457 * snd_soc_dapm_new_controls - create new dapm controls
3458 * @dapm: DAPM context
3459 * @widget: widget array
3460 * @num: number of widgets
3462 * Creates new DAPM controls based upon the templates.
3464 * Returns 0 for success else error.
3466 int snd_soc_dapm_new_controls(struct snd_soc_dapm_context
*dapm
,
3467 const struct snd_soc_dapm_widget
*widget
,
3470 struct snd_soc_dapm_widget
*w
;
3474 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_INIT
);
3475 for (i
= 0; i
< num
; i
++) {
3476 w
= snd_soc_dapm_new_control_unlocked(dapm
, widget
);
3479 "ASoC: Failed to create DAPM control %s\n",
3486 mutex_unlock(&dapm
->card
->dapm_mutex
);
3489 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls
);
3491 static int snd_soc_dai_link_event(struct snd_soc_dapm_widget
*w
,
3492 struct snd_kcontrol
*kcontrol
, int event
)
3494 struct snd_soc_dapm_path
*source_p
, *sink_p
;
3495 struct snd_soc_dai
*source
, *sink
;
3496 const struct snd_soc_pcm_stream
*config
= w
->params
+ w
->params_select
;
3497 struct snd_pcm_substream substream
;
3498 struct snd_pcm_hw_params
*params
= NULL
;
3499 struct snd_pcm_runtime
*runtime
= NULL
;
3503 if (WARN_ON(!config
) ||
3504 WARN_ON(list_empty(&w
->edges
[SND_SOC_DAPM_DIR_OUT
]) ||
3505 list_empty(&w
->edges
[SND_SOC_DAPM_DIR_IN
])))
3508 /* We only support a single source and sink, pick the first */
3509 source_p
= list_first_entry(&w
->edges
[SND_SOC_DAPM_DIR_OUT
],
3510 struct snd_soc_dapm_path
,
3511 list_node
[SND_SOC_DAPM_DIR_OUT
]);
3512 sink_p
= list_first_entry(&w
->edges
[SND_SOC_DAPM_DIR_IN
],
3513 struct snd_soc_dapm_path
,
3514 list_node
[SND_SOC_DAPM_DIR_IN
]);
3516 source
= source_p
->source
->priv
;
3517 sink
= sink_p
->sink
->priv
;
3519 /* Be a little careful as we don't want to overflow the mask array */
3520 if (config
->formats
) {
3521 fmt
= ffs(config
->formats
) - 1;
3523 dev_warn(w
->dapm
->dev
, "ASoC: Invalid format %llx specified\n",
3528 /* Currently very limited parameter selection */
3529 params
= kzalloc(sizeof(*params
), GFP_KERNEL
);
3534 snd_mask_set(hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
), fmt
);
3536 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
)->min
=
3538 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
)->max
=
3541 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
)->min
3542 = config
->channels_min
;
3543 hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
)->max
3544 = config
->channels_max
;
3546 memset(&substream
, 0, sizeof(substream
));
3548 /* Allocate a dummy snd_pcm_runtime for startup() and other ops() */
3549 runtime
= kzalloc(sizeof(*runtime
), GFP_KERNEL
);
3554 substream
.runtime
= runtime
;
3557 case SND_SOC_DAPM_PRE_PMU
:
3558 substream
.stream
= SNDRV_PCM_STREAM_CAPTURE
;
3559 if (source
->driver
->ops
&& source
->driver
->ops
->startup
) {
3560 ret
= source
->driver
->ops
->startup(&substream
, source
);
3562 dev_err(source
->dev
,
3563 "ASoC: startup() failed: %d\n", ret
);
3568 ret
= soc_dai_hw_params(&substream
, params
, source
);
3572 substream
.stream
= SNDRV_PCM_STREAM_PLAYBACK
;
3573 if (sink
->driver
->ops
&& sink
->driver
->ops
->startup
) {
3574 ret
= sink
->driver
->ops
->startup(&substream
, sink
);
3577 "ASoC: startup() failed: %d\n", ret
);
3582 ret
= soc_dai_hw_params(&substream
, params
, sink
);
3587 case SND_SOC_DAPM_POST_PMU
:
3588 ret
= snd_soc_dai_digital_mute(sink
, 0,
3589 SNDRV_PCM_STREAM_PLAYBACK
);
3590 if (ret
!= 0 && ret
!= -ENOTSUPP
)
3591 dev_warn(sink
->dev
, "ASoC: Failed to unmute: %d\n", ret
);
3595 case SND_SOC_DAPM_PRE_PMD
:
3596 ret
= snd_soc_dai_digital_mute(sink
, 1,
3597 SNDRV_PCM_STREAM_PLAYBACK
);
3598 if (ret
!= 0 && ret
!= -ENOTSUPP
)
3599 dev_warn(sink
->dev
, "ASoC: Failed to mute: %d\n", ret
);
3603 if (source
->driver
->ops
&& source
->driver
->ops
->shutdown
) {
3604 substream
.stream
= SNDRV_PCM_STREAM_CAPTURE
;
3605 source
->driver
->ops
->shutdown(&substream
, source
);
3609 if (sink
->driver
->ops
&& sink
->driver
->ops
->shutdown
) {
3610 substream
.stream
= SNDRV_PCM_STREAM_PLAYBACK
;
3611 sink
->driver
->ops
->shutdown(&substream
, sink
);
3616 WARN(1, "Unknown event %d\n", event
);
3626 static int snd_soc_dapm_dai_link_get(struct snd_kcontrol
*kcontrol
,
3627 struct snd_ctl_elem_value
*ucontrol
)
3629 struct snd_soc_dapm_widget
*w
= snd_kcontrol_chip(kcontrol
);
3631 ucontrol
->value
.enumerated
.item
[0] = w
->params_select
;
3636 static int snd_soc_dapm_dai_link_put(struct snd_kcontrol
*kcontrol
,
3637 struct snd_ctl_elem_value
*ucontrol
)
3639 struct snd_soc_dapm_widget
*w
= snd_kcontrol_chip(kcontrol
);
3641 /* Can't change the config when widget is already powered */
3645 if (ucontrol
->value
.enumerated
.item
[0] == w
->params_select
)
3648 if (ucontrol
->value
.enumerated
.item
[0] >= w
->num_params
)
3651 w
->params_select
= ucontrol
->value
.enumerated
.item
[0];
3656 int snd_soc_dapm_new_pcm(struct snd_soc_card
*card
,
3657 const struct snd_soc_pcm_stream
*params
,
3658 unsigned int num_params
,
3659 struct snd_soc_dapm_widget
*source
,
3660 struct snd_soc_dapm_widget
*sink
)
3662 struct snd_soc_dapm_widget
template;
3663 struct snd_soc_dapm_widget
*w
;
3666 unsigned long private_value
;
3667 const char **w_param_text
;
3668 struct soc_enum w_param_enum
[] = {
3669 SOC_ENUM_SINGLE(0, 0, 0, NULL
),
3671 struct snd_kcontrol_new kcontrol_dai_link
[] = {
3672 SOC_ENUM_EXT(NULL
, w_param_enum
[0],
3673 snd_soc_dapm_dai_link_get
,
3674 snd_soc_dapm_dai_link_put
),
3676 const struct snd_soc_pcm_stream
*config
= params
;
3678 w_param_text
= devm_kcalloc(card
->dev
, num_params
,
3679 sizeof(char *), GFP_KERNEL
);
3683 link_name
= devm_kasprintf(card
->dev
, GFP_KERNEL
, "%s-%s",
3684 source
->name
, sink
->name
);
3687 goto outfree_w_param
;
3690 for (count
= 0 ; count
< num_params
; count
++) {
3691 if (!config
->stream_name
) {
3692 dev_warn(card
->dapm
.dev
,
3693 "ASoC: anonymous config %d for dai link %s\n",
3695 w_param_text
[count
] =
3696 devm_kasprintf(card
->dev
, GFP_KERNEL
,
3697 "Anonymous Configuration %d",
3699 if (!w_param_text
[count
]) {
3701 goto outfree_link_name
;
3704 w_param_text
[count
] = devm_kmemdup(card
->dev
,
3705 config
->stream_name
,
3706 strlen(config
->stream_name
) + 1,
3708 if (!w_param_text
[count
]) {
3710 goto outfree_link_name
;
3715 w_param_enum
[0].items
= num_params
;
3716 w_param_enum
[0].texts
= w_param_text
;
3718 memset(&template, 0, sizeof(template));
3719 template.reg
= SND_SOC_NOPM
;
3720 template.id
= snd_soc_dapm_dai_link
;
3721 template.name
= link_name
;
3722 template.event
= snd_soc_dai_link_event
;
3723 template.event_flags
= SND_SOC_DAPM_PRE_PMU
| SND_SOC_DAPM_POST_PMU
|
3724 SND_SOC_DAPM_PRE_PMD
;
3725 template.num_kcontrols
= 1;
3726 /* duplicate w_param_enum on heap so that memory persists */
3728 (unsigned long) devm_kmemdup(card
->dev
,
3729 (void *)(kcontrol_dai_link
[0].private_value
),
3730 sizeof(struct soc_enum
), GFP_KERNEL
);
3731 if (!private_value
) {
3732 dev_err(card
->dev
, "ASoC: Failed to create control for %s widget\n",
3735 goto outfree_link_name
;
3737 kcontrol_dai_link
[0].private_value
= private_value
;
3738 /* duplicate kcontrol_dai_link on heap so that memory persists */
3739 template.kcontrol_news
=
3740 devm_kmemdup(card
->dev
, &kcontrol_dai_link
[0],
3741 sizeof(struct snd_kcontrol_new
),
3743 if (!template.kcontrol_news
) {
3744 dev_err(card
->dev
, "ASoC: Failed to create control for %s widget\n",
3747 goto outfree_private_value
;
3750 dev_dbg(card
->dev
, "ASoC: adding %s widget\n", link_name
);
3752 w
= snd_soc_dapm_new_control_unlocked(&card
->dapm
, &template);
3754 dev_err(card
->dev
, "ASoC: Failed to create %s widget\n",
3757 goto outfree_kcontrol_news
;
3761 w
->num_params
= num_params
;
3763 ret
= snd_soc_dapm_add_path(&card
->dapm
, source
, w
, NULL
, NULL
);
3766 return snd_soc_dapm_add_path(&card
->dapm
, w
, sink
, NULL
, NULL
);
3769 devm_kfree(card
->dev
, w
);
3770 outfree_kcontrol_news
:
3771 devm_kfree(card
->dev
, (void *)template.kcontrol_news
);
3772 outfree_private_value
:
3773 devm_kfree(card
->dev
, (void *)private_value
);
3775 devm_kfree(card
->dev
, link_name
);
3777 for (count
= 0 ; count
< num_params
; count
++)
3778 devm_kfree(card
->dev
, (void *)w_param_text
[count
]);
3779 devm_kfree(card
->dev
, w_param_text
);
3784 int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context
*dapm
,
3785 struct snd_soc_dai
*dai
)
3787 struct snd_soc_dapm_widget
template;
3788 struct snd_soc_dapm_widget
*w
;
3790 WARN_ON(dapm
->dev
!= dai
->dev
);
3792 memset(&template, 0, sizeof(template));
3793 template.reg
= SND_SOC_NOPM
;
3795 if (dai
->driver
->playback
.stream_name
) {
3796 template.id
= snd_soc_dapm_dai_in
;
3797 template.name
= dai
->driver
->playback
.stream_name
;
3798 template.sname
= dai
->driver
->playback
.stream_name
;
3800 dev_dbg(dai
->dev
, "ASoC: adding %s widget\n",
3803 w
= snd_soc_dapm_new_control_unlocked(dapm
, &template);
3805 dev_err(dapm
->dev
, "ASoC: Failed to create %s widget\n",
3806 dai
->driver
->playback
.stream_name
);
3811 dai
->playback_widget
= w
;
3814 if (dai
->driver
->capture
.stream_name
) {
3815 template.id
= snd_soc_dapm_dai_out
;
3816 template.name
= dai
->driver
->capture
.stream_name
;
3817 template.sname
= dai
->driver
->capture
.stream_name
;
3819 dev_dbg(dai
->dev
, "ASoC: adding %s widget\n",
3822 w
= snd_soc_dapm_new_control_unlocked(dapm
, &template);
3824 dev_err(dapm
->dev
, "ASoC: Failed to create %s widget\n",
3825 dai
->driver
->capture
.stream_name
);
3830 dai
->capture_widget
= w
;
3836 int snd_soc_dapm_link_dai_widgets(struct snd_soc_card
*card
)
3838 struct snd_soc_dapm_widget
*dai_w
, *w
;
3839 struct snd_soc_dapm_widget
*src
, *sink
;
3840 struct snd_soc_dai
*dai
;
3842 /* For each DAI widget... */
3843 list_for_each_entry(dai_w
, &card
->widgets
, list
) {
3844 switch (dai_w
->id
) {
3845 case snd_soc_dapm_dai_in
:
3846 case snd_soc_dapm_dai_out
:
3854 /* ...find all widgets with the same stream and link them */
3855 list_for_each_entry(w
, &card
->widgets
, list
) {
3856 if (w
->dapm
!= dai_w
->dapm
)
3860 case snd_soc_dapm_dai_in
:
3861 case snd_soc_dapm_dai_out
:
3867 if (!w
->sname
|| !strstr(w
->sname
, dai_w
->sname
))
3870 if (dai_w
->id
== snd_soc_dapm_dai_in
) {
3877 dev_dbg(dai
->dev
, "%s -> %s\n", src
->name
, sink
->name
);
3878 snd_soc_dapm_add_path(w
->dapm
, src
, sink
, NULL
, NULL
);
3885 static void dapm_connect_dai_link_widgets(struct snd_soc_card
*card
,
3886 struct snd_soc_pcm_runtime
*rtd
)
3888 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
3889 struct snd_soc_dapm_widget
*sink
, *source
;
3892 for (i
= 0; i
< rtd
->num_codecs
; i
++) {
3893 struct snd_soc_dai
*codec_dai
= rtd
->codec_dais
[i
];
3895 /* connect BE DAI playback if widgets are valid */
3896 if (codec_dai
->playback_widget
&& cpu_dai
->playback_widget
) {
3897 source
= cpu_dai
->playback_widget
;
3898 sink
= codec_dai
->playback_widget
;
3899 dev_dbg(rtd
->dev
, "connected DAI link %s:%s -> %s:%s\n",
3900 cpu_dai
->component
->name
, source
->name
,
3901 codec_dai
->component
->name
, sink
->name
);
3903 snd_soc_dapm_add_path(&card
->dapm
, source
, sink
,
3907 /* connect BE DAI capture if widgets are valid */
3908 if (codec_dai
->capture_widget
&& cpu_dai
->capture_widget
) {
3909 source
= codec_dai
->capture_widget
;
3910 sink
= cpu_dai
->capture_widget
;
3911 dev_dbg(rtd
->dev
, "connected DAI link %s:%s -> %s:%s\n",
3912 codec_dai
->component
->name
, source
->name
,
3913 cpu_dai
->component
->name
, sink
->name
);
3915 snd_soc_dapm_add_path(&card
->dapm
, source
, sink
,
3921 static void soc_dapm_dai_stream_event(struct snd_soc_dai
*dai
, int stream
,
3924 struct snd_soc_dapm_widget
*w
;
3927 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
3928 w
= dai
->playback_widget
;
3930 w
= dai
->capture_widget
;
3933 dapm_mark_dirty(w
, "stream event");
3935 if (w
->id
== snd_soc_dapm_dai_in
) {
3936 ep
= SND_SOC_DAPM_EP_SOURCE
;
3937 dapm_widget_invalidate_input_paths(w
);
3939 ep
= SND_SOC_DAPM_EP_SINK
;
3940 dapm_widget_invalidate_output_paths(w
);
3944 case SND_SOC_DAPM_STREAM_START
:
3948 case SND_SOC_DAPM_STREAM_STOP
:
3952 case SND_SOC_DAPM_STREAM_SUSPEND
:
3953 case SND_SOC_DAPM_STREAM_RESUME
:
3954 case SND_SOC_DAPM_STREAM_PAUSE_PUSH
:
3955 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE
:
3961 void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card
*card
)
3963 struct snd_soc_pcm_runtime
*rtd
;
3965 /* for each BE DAI link... */
3966 list_for_each_entry(rtd
, &card
->rtd_list
, list
) {
3968 * dynamic FE links have no fixed DAI mapping.
3969 * CODEC<->CODEC links have no direct connection.
3971 if (rtd
->dai_link
->dynamic
|| rtd
->dai_link
->params
)
3974 dapm_connect_dai_link_widgets(card
, rtd
);
3978 static void soc_dapm_stream_event(struct snd_soc_pcm_runtime
*rtd
, int stream
,
3983 soc_dapm_dai_stream_event(rtd
->cpu_dai
, stream
, event
);
3984 for (i
= 0; i
< rtd
->num_codecs
; i
++)
3985 soc_dapm_dai_stream_event(rtd
->codec_dais
[i
], stream
, event
);
3987 dapm_power_widgets(rtd
->card
, event
);
3991 * snd_soc_dapm_stream_event - send a stream event to the dapm core
3992 * @rtd: PCM runtime data
3993 * @stream: stream name
3994 * @event: stream event
3996 * Sends a stream event to the dapm core. The core then makes any
3997 * necessary widget power changes.
3999 * Returns 0 for success else error.
4001 void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime
*rtd
, int stream
,
4004 struct snd_soc_card
*card
= rtd
->card
;
4006 mutex_lock_nested(&card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
4007 soc_dapm_stream_event(rtd
, stream
, event
);
4008 mutex_unlock(&card
->dapm_mutex
);
4012 * snd_soc_dapm_enable_pin_unlocked - enable pin.
4013 * @dapm: DAPM context
4016 * Enables input/output pin and its parents or children widgets iff there is
4017 * a valid audio route and active audio stream.
4019 * Requires external locking.
4021 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4022 * do any widget power switching.
4024 int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context
*dapm
,
4027 return snd_soc_dapm_set_pin(dapm
, pin
, 1);
4029 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked
);
4032 * snd_soc_dapm_enable_pin - enable pin.
4033 * @dapm: DAPM context
4036 * Enables input/output pin and its parents or children widgets iff there is
4037 * a valid audio route and active audio stream.
4039 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4040 * do any widget power switching.
4042 int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context
*dapm
, const char *pin
)
4046 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
4048 ret
= snd_soc_dapm_set_pin(dapm
, pin
, 1);
4050 mutex_unlock(&dapm
->card
->dapm_mutex
);
4054 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin
);
4057 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4058 * @dapm: DAPM context
4061 * Enables input/output pin regardless of any other state. This is
4062 * intended for use with microphone bias supplies used in microphone
4065 * Requires external locking.
4067 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4068 * do any widget power switching.
4070 int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context
*dapm
,
4073 struct snd_soc_dapm_widget
*w
= dapm_find_widget(dapm
, pin
, true);
4076 dev_err(dapm
->dev
, "ASoC: unknown pin %s\n", pin
);
4080 dev_dbg(w
->dapm
->dev
, "ASoC: force enable pin %s\n", pin
);
4081 if (!w
->connected
) {
4083 * w->force does not affect the number of input or output paths,
4084 * so we only have to recheck if w->connected is changed
4086 dapm_widget_invalidate_input_paths(w
);
4087 dapm_widget_invalidate_output_paths(w
);
4091 dapm_mark_dirty(w
, "force enable");
4095 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked
);
4098 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
4099 * @dapm: DAPM context
4102 * Enables input/output pin regardless of any other state. This is
4103 * intended for use with microphone bias supplies used in microphone
4106 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4107 * do any widget power switching.
4109 int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context
*dapm
,
4114 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
4116 ret
= snd_soc_dapm_force_enable_pin_unlocked(dapm
, pin
);
4118 mutex_unlock(&dapm
->card
->dapm_mutex
);
4122 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin
);
4125 * snd_soc_dapm_disable_pin_unlocked - disable pin.
4126 * @dapm: DAPM context
4129 * Disables input/output pin and its parents or children widgets.
4131 * Requires external locking.
4133 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4134 * do any widget power switching.
4136 int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context
*dapm
,
4139 return snd_soc_dapm_set_pin(dapm
, pin
, 0);
4141 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked
);
4144 * snd_soc_dapm_disable_pin - disable pin.
4145 * @dapm: DAPM context
4148 * Disables input/output pin and its parents or children widgets.
4150 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4151 * do any widget power switching.
4153 int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context
*dapm
,
4158 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
4160 ret
= snd_soc_dapm_set_pin(dapm
, pin
, 0);
4162 mutex_unlock(&dapm
->card
->dapm_mutex
);
4166 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin
);
4169 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4170 * @dapm: DAPM context
4173 * Marks the specified pin as being not connected, disabling it along
4174 * any parent or child widgets. At present this is identical to
4175 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4176 * additional things such as disabling controls which only affect
4177 * paths through the pin.
4179 * Requires external locking.
4181 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4182 * do any widget power switching.
4184 int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context
*dapm
,
4187 return snd_soc_dapm_set_pin(dapm
, pin
, 0);
4189 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked
);
4192 * snd_soc_dapm_nc_pin - permanently disable pin.
4193 * @dapm: DAPM context
4196 * Marks the specified pin as being not connected, disabling it along
4197 * any parent or child widgets. At present this is identical to
4198 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4199 * additional things such as disabling controls which only affect
4200 * paths through the pin.
4202 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4203 * do any widget power switching.
4205 int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context
*dapm
, const char *pin
)
4209 mutex_lock_nested(&dapm
->card
->dapm_mutex
, SND_SOC_DAPM_CLASS_RUNTIME
);
4211 ret
= snd_soc_dapm_set_pin(dapm
, pin
, 0);
4213 mutex_unlock(&dapm
->card
->dapm_mutex
);
4217 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin
);
4220 * snd_soc_dapm_get_pin_status - get audio pin status
4221 * @dapm: DAPM context
4222 * @pin: audio signal pin endpoint (or start point)
4224 * Get audio pin status - connected or disconnected.
4226 * Returns 1 for connected otherwise 0.
4228 int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context
*dapm
,
4231 struct snd_soc_dapm_widget
*w
= dapm_find_widget(dapm
, pin
, true);
4234 return w
->connected
;
4238 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status
);
4241 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
4242 * @dapm: DAPM context
4243 * @pin: audio signal pin endpoint (or start point)
4245 * Mark the given endpoint or pin as ignoring suspend. When the
4246 * system is disabled a path between two endpoints flagged as ignoring
4247 * suspend will not be disabled. The path must already be enabled via
4248 * normal means at suspend time, it will not be turned on if it was not
4251 int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context
*dapm
,
4254 struct snd_soc_dapm_widget
*w
= dapm_find_widget(dapm
, pin
, false);
4257 dev_err(dapm
->dev
, "ASoC: unknown pin %s\n", pin
);
4261 w
->ignore_suspend
= 1;
4265 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend
);
4268 * snd_soc_dapm_free - free dapm resources
4269 * @dapm: DAPM context
4271 * Free all dapm widgets and resources.
4273 void snd_soc_dapm_free(struct snd_soc_dapm_context
*dapm
)
4275 dapm_debugfs_cleanup(dapm
);
4276 dapm_free_widgets(dapm
);
4277 list_del(&dapm
->list
);
4279 EXPORT_SYMBOL_GPL(snd_soc_dapm_free
);
4281 static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context
*dapm
)
4283 struct snd_soc_card
*card
= dapm
->card
;
4284 struct snd_soc_dapm_widget
*w
;
4285 LIST_HEAD(down_list
);
4288 mutex_lock(&card
->dapm_mutex
);
4290 list_for_each_entry(w
, &dapm
->card
->widgets
, list
) {
4291 if (w
->dapm
!= dapm
)
4294 dapm_seq_insert(w
, &down_list
, false);
4300 /* If there were no widgets to power down we're already in
4304 if (dapm
->bias_level
== SND_SOC_BIAS_ON
)
4305 snd_soc_dapm_set_bias_level(dapm
,
4306 SND_SOC_BIAS_PREPARE
);
4307 dapm_seq_run(card
, &down_list
, 0, false);
4308 if (dapm
->bias_level
== SND_SOC_BIAS_PREPARE
)
4309 snd_soc_dapm_set_bias_level(dapm
,
4310 SND_SOC_BIAS_STANDBY
);
4313 mutex_unlock(&card
->dapm_mutex
);
4317 * snd_soc_dapm_shutdown - callback for system shutdown
4319 void snd_soc_dapm_shutdown(struct snd_soc_card
*card
)
4321 struct snd_soc_dapm_context
*dapm
;
4323 list_for_each_entry(dapm
, &card
->dapm_list
, list
) {
4324 if (dapm
!= &card
->dapm
) {
4325 soc_dapm_shutdown_dapm(dapm
);
4326 if (dapm
->bias_level
== SND_SOC_BIAS_STANDBY
)
4327 snd_soc_dapm_set_bias_level(dapm
,
4332 soc_dapm_shutdown_dapm(&card
->dapm
);
4333 if (card
->dapm
.bias_level
== SND_SOC_BIAS_STANDBY
)
4334 snd_soc_dapm_set_bias_level(&card
->dapm
,
4338 /* Module information */
4339 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
4340 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4341 MODULE_LICENSE("GPL");