blob: 7cb832ddf4aff167a50e27946c787433547c7ab4 [file] [log] [blame]
Kuninori Morimotoc01f3af2018-07-02 06:24:31 +00001// SPDX-License-Identifier: GPL-2.0+
2//
3// soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
4//
5// Copyright 2005 Wolfson Microelectronics PLC.
6// Author: Liam Girdwood <lrg@slimlogic.co.uk>
7//
8// Features:
9// o Changes power status of internal codec blocks depending on the
10// dynamic configuration of codec internal audio paths and active
11// DACs/ADCs.
12// o Platform power domain - can support external components i.e. amps and
13// mic/headphone insertion events.
14// o Automatic Mic Bias support
15// o Jack insertion power event initiation - e.g. hp insertion will enable
16// sinks, dacs, etc
17// o Delayed power down of audio subsystem to reduce pops between a quick
18// device reopen.
Richard Purdie2b97eab2006-10-06 18:32:18 +020019
20#include <linux/module.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020021#include <linux/init.h>
Mark Brown9d0624a2011-02-18 11:49:43 -080022#include <linux/async.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020023#include <linux/delay.h>
24#include <linux/pm.h>
25#include <linux/bitops.h>
26#include <linux/platform_device.h>
27#include <linux/jiffies.h>
Takashi Iwai20496ff2009-08-24 09:40:34 +020028#include <linux/debugfs.h>
Mark Brownf1aac482011-12-05 15:17:06 +000029#include <linux/pm_runtime.h>
Mark Brown62ea8742012-01-21 21:14:48 +000030#include <linux/regulator/consumer.h>
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +000031#include <linux/pinctrl/consumer.h>
Ola Liljad7e7eb92012-05-24 15:26:25 +020032#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020034#include <sound/core.h>
35#include <sound/pcm.h>
36#include <sound/pcm_params.h>
Liam Girdwoodce6120c2010-11-05 15:53:46 +020037#include <sound/soc.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020038#include <sound/initval.h>
39
Mark Brown84e90932010-11-04 00:07:02 -040040#include <trace/events/asoc.h>
41
Mark Brownde02d072011-09-20 21:43:24 +010042#define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++;
43
Lars-Peter Clausena3423b02015-08-11 21:38:00 +020044#define SND_SOC_DAPM_DIR_REVERSE(x) ((x == SND_SOC_DAPM_DIR_IN) ? \
45 SND_SOC_DAPM_DIR_OUT : SND_SOC_DAPM_DIR_IN)
46
47#define snd_soc_dapm_for_each_direction(dir) \
48 for ((dir) = SND_SOC_DAPM_DIR_IN; (dir) <= SND_SOC_DAPM_DIR_OUT; \
49 (dir)++)
50
Lars-Peter Clausen57295072013-08-05 11:27:31 +020051static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
52 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
53 const char *control,
54 int (*connected)(struct snd_soc_dapm_widget *source,
55 struct snd_soc_dapm_widget *sink));
Vladimir Zapolskiy5353f652015-06-02 00:57:53 +030056
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +010057struct snd_soc_dapm_widget *
Lars-Peter Clausen57295072013-08-05 11:27:31 +020058snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
59 const struct snd_soc_dapm_widget *widget);
60
Liam Girdwood02aa78a2015-05-25 18:21:17 +010061struct snd_soc_dapm_widget *
62snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +020063 const struct snd_soc_dapm_widget *widget);
64
Richard Purdie2b97eab2006-10-06 18:32:18 +020065/* dapm power sequences - make this per codec in the future */
66static int dapm_up_seq[] = {
Pierre-Louis Bossartf13d4b52019-02-05 10:22:28 -060067 [snd_soc_dapm_pre] = 1,
68 [snd_soc_dapm_regulator_supply] = 2,
69 [snd_soc_dapm_pinctrl] = 2,
70 [snd_soc_dapm_clock_supply] = 2,
71 [snd_soc_dapm_supply] = 3,
72 [snd_soc_dapm_micbias] = 4,
73 [snd_soc_dapm_vmid] = 4,
74 [snd_soc_dapm_dai_link] = 3,
75 [snd_soc_dapm_dai_in] = 5,
76 [snd_soc_dapm_dai_out] = 5,
77 [snd_soc_dapm_aif_in] = 5,
78 [snd_soc_dapm_aif_out] = 5,
79 [snd_soc_dapm_mic] = 6,
80 [snd_soc_dapm_siggen] = 6,
81 [snd_soc_dapm_input] = 6,
82 [snd_soc_dapm_output] = 6,
83 [snd_soc_dapm_mux] = 7,
84 [snd_soc_dapm_demux] = 7,
85 [snd_soc_dapm_dac] = 8,
86 [snd_soc_dapm_switch] = 9,
87 [snd_soc_dapm_mixer] = 9,
88 [snd_soc_dapm_mixer_named_ctl] = 9,
89 [snd_soc_dapm_pga] = 10,
90 [snd_soc_dapm_buffer] = 10,
91 [snd_soc_dapm_scheduler] = 10,
92 [snd_soc_dapm_effect] = 10,
93 [snd_soc_dapm_src] = 10,
94 [snd_soc_dapm_asrc] = 10,
95 [snd_soc_dapm_encoder] = 10,
96 [snd_soc_dapm_decoder] = 10,
97 [snd_soc_dapm_adc] = 11,
98 [snd_soc_dapm_out_drv] = 12,
99 [snd_soc_dapm_hp] = 12,
100 [snd_soc_dapm_spk] = 12,
101 [snd_soc_dapm_line] = 12,
102 [snd_soc_dapm_sink] = 12,
103 [snd_soc_dapm_kcontrol] = 13,
104 [snd_soc_dapm_post] = 14,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200105};
Ian Moltonca9c1aa2009-01-06 20:11:51 +0000106
Richard Purdie2b97eab2006-10-06 18:32:18 +0200107static int dapm_down_seq[] = {
Pierre-Louis Bossartf13d4b52019-02-05 10:22:28 -0600108 [snd_soc_dapm_pre] = 1,
109 [snd_soc_dapm_kcontrol] = 2,
110 [snd_soc_dapm_adc] = 3,
111 [snd_soc_dapm_hp] = 4,
112 [snd_soc_dapm_spk] = 4,
113 [snd_soc_dapm_line] = 4,
114 [snd_soc_dapm_out_drv] = 4,
115 [snd_soc_dapm_sink] = 4,
116 [snd_soc_dapm_pga] = 5,
117 [snd_soc_dapm_buffer] = 5,
118 [snd_soc_dapm_scheduler] = 5,
119 [snd_soc_dapm_effect] = 5,
120 [snd_soc_dapm_src] = 5,
121 [snd_soc_dapm_asrc] = 5,
122 [snd_soc_dapm_encoder] = 5,
123 [snd_soc_dapm_decoder] = 5,
124 [snd_soc_dapm_switch] = 6,
125 [snd_soc_dapm_mixer_named_ctl] = 6,
126 [snd_soc_dapm_mixer] = 6,
127 [snd_soc_dapm_dac] = 7,
128 [snd_soc_dapm_mic] = 8,
129 [snd_soc_dapm_siggen] = 8,
130 [snd_soc_dapm_input] = 8,
131 [snd_soc_dapm_output] = 8,
132 [snd_soc_dapm_micbias] = 9,
133 [snd_soc_dapm_vmid] = 9,
134 [snd_soc_dapm_mux] = 10,
135 [snd_soc_dapm_demux] = 10,
136 [snd_soc_dapm_aif_in] = 11,
137 [snd_soc_dapm_aif_out] = 11,
138 [snd_soc_dapm_dai_in] = 11,
139 [snd_soc_dapm_dai_out] = 11,
140 [snd_soc_dapm_dai_link] = 12,
141 [snd_soc_dapm_supply] = 13,
142 [snd_soc_dapm_clock_supply] = 14,
143 [snd_soc_dapm_pinctrl] = 14,
144 [snd_soc_dapm_regulator_supply] = 14,
145 [snd_soc_dapm_post] = 15,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200146};
147
Mark Brownf9fa2b12014-03-06 16:49:11 +0800148static void dapm_assert_locked(struct snd_soc_dapm_context *dapm)
149{
150 if (dapm->card && dapm->card->instantiated)
151 lockdep_assert_held(&dapm->card->dapm_mutex);
152}
153
Troy Kisky12ef1932008-10-13 17:42:14 -0700154static void pop_wait(u32 pop_time)
Mark Brown15e4c72f2008-07-02 11:51:20 +0100155{
156 if (pop_time)
157 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
158}
159
Mathieu Malaterre595d2f72019-01-23 20:41:30 +0100160__printf(3, 4)
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200161static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...)
Mark Brown15e4c72f2008-07-02 11:51:20 +0100162{
163 va_list args;
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200164 char *buf;
165
166 if (!pop_time)
167 return;
168
169 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
170 if (buf == NULL)
171 return;
Mark Brown15e4c72f2008-07-02 11:51:20 +0100172
173 va_start(args, fmt);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200174 vsnprintf(buf, PAGE_SIZE, fmt, args);
Takashi Iwai9d01df02010-12-22 14:08:40 +0100175 dev_info(dev, "%s", buf);
Mark Brown15e4c72f2008-07-02 11:51:20 +0100176 va_end(args);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200177
178 kfree(buf);
Mark Brown15e4c72f2008-07-02 11:51:20 +0100179}
180
Mark Browndb432b42011-10-03 21:06:40 +0100181static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w)
182{
183 return !list_empty(&w->dirty);
184}
185
Mark Brown492c0a12014-03-06 16:15:48 +0800186static void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason)
Mark Browndb432b42011-10-03 21:06:40 +0100187{
Mark Brownf9fa2b12014-03-06 16:49:11 +0800188 dapm_assert_locked(w->dapm);
189
Mark Brown75c1f892011-10-04 22:28:08 +0100190 if (!dapm_dirty_widget(w)) {
191 dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n",
192 w->name, reason);
Mark Browndb432b42011-10-03 21:06:40 +0100193 list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty);
Mark Brown75c1f892011-10-04 22:28:08 +0100194 }
Mark Browndb432b42011-10-03 21:06:40 +0100195}
196
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200197/*
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200198 * Common implementation for dapm_widget_invalidate_input_paths() and
199 * dapm_widget_invalidate_output_paths(). The function is inlined since the
200 * combined size of the two specialized functions is only marginally larger then
201 * the size of the generic function and at the same time the fast path of the
202 * specialized functions is significantly smaller than the generic function.
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200203 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200204static __always_inline void dapm_widget_invalidate_paths(
205 struct snd_soc_dapm_widget *w, enum snd_soc_dapm_direction dir)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200206{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200207 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
208 struct snd_soc_dapm_widget *node;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200209 struct snd_soc_dapm_path *p;
210 LIST_HEAD(list);
211
212 dapm_assert_locked(w->dapm);
213
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200214 if (w->endpoints[dir] == -1)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200215 return;
216
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200217 list_add_tail(&w->work_list, &list);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200218 w->endpoints[dir] = -1;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200219
220 list_for_each_entry(w, &list, work_list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200221 snd_soc_dapm_widget_for_each_path(w, dir, p) {
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200222 if (p->is_supply || p->weak || !p->connect)
223 continue;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200224 node = p->node[rdir];
225 if (node->endpoints[dir] != -1) {
226 node->endpoints[dir] = -1;
227 list_add_tail(&node->work_list, &list);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200228 }
229 }
230 }
231}
232
233/*
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200234 * dapm_widget_invalidate_input_paths() - Invalidate the cached number of
235 * input paths
236 * @w: The widget for which to invalidate the cached number of input paths
237 *
238 * Resets the cached number of inputs for the specified widget and all widgets
239 * that can be reached via outcoming paths from the widget.
240 *
241 * This function must be called if the number of output paths for a widget might
242 * have changed. E.g. if the source state of a widget changes or a path is added
243 * or activated with the widget as the sink.
244 */
245static void dapm_widget_invalidate_input_paths(struct snd_soc_dapm_widget *w)
246{
247 dapm_widget_invalidate_paths(w, SND_SOC_DAPM_DIR_IN);
248}
249
250/*
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200251 * dapm_widget_invalidate_output_paths() - Invalidate the cached number of
252 * output paths
253 * @w: The widget for which to invalidate the cached number of output paths
254 *
255 * Resets the cached number of outputs for the specified widget and all widgets
256 * that can be reached via incoming paths from the widget.
257 *
258 * This function must be called if the number of output paths for a widget might
259 * have changed. E.g. if the sink state of a widget changes or a path is added
260 * or activated with the widget as the source.
261 */
262static void dapm_widget_invalidate_output_paths(struct snd_soc_dapm_widget *w)
263{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200264 dapm_widget_invalidate_paths(w, SND_SOC_DAPM_DIR_OUT);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200265}
266
267/*
268 * dapm_path_invalidate() - Invalidates the cached number of inputs and outputs
269 * for the widgets connected to a path
270 * @p: The path to invalidate
271 *
272 * Resets the cached number of inputs for the sink of the path and the cached
273 * number of outputs for the source of the path.
274 *
275 * This function must be called when a path is added, removed or the connected
276 * state changes.
277 */
278static void dapm_path_invalidate(struct snd_soc_dapm_path *p)
279{
280 /*
281 * Weak paths or supply paths do not influence the number of input or
282 * output paths of their neighbors.
283 */
284 if (p->weak || p->is_supply)
285 return;
286
287 /*
288 * The number of connected endpoints is the sum of the number of
289 * connected endpoints of all neighbors. If a node with 0 connected
290 * endpoints is either connected or disconnected that sum won't change,
291 * so there is no need to re-check the path.
292 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200293 if (p->source->endpoints[SND_SOC_DAPM_DIR_IN] != 0)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200294 dapm_widget_invalidate_input_paths(p->sink);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200295 if (p->sink->endpoints[SND_SOC_DAPM_DIR_OUT] != 0)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200296 dapm_widget_invalidate_output_paths(p->source);
297}
298
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200299void dapm_mark_endpoints_dirty(struct snd_soc_card *card)
Mark Browne2d32ff2012-08-31 17:38:32 -0700300{
Mark Browne2d32ff2012-08-31 17:38:32 -0700301 struct snd_soc_dapm_widget *w;
302
303 mutex_lock(&card->dapm_mutex);
304
Kuninori Morimoto14596692020-03-09 13:08:21 +0900305 for_each_card_widgets(card, w) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200306 if (w->is_ep) {
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200307 dapm_mark_dirty(w, "Rechecking endpoints");
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200308 if (w->is_ep & SND_SOC_DAPM_EP_SINK)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200309 dapm_widget_invalidate_output_paths(w);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200310 if (w->is_ep & SND_SOC_DAPM_EP_SOURCE)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200311 dapm_widget_invalidate_input_paths(w);
312 }
Mark Browne2d32ff2012-08-31 17:38:32 -0700313 }
314
315 mutex_unlock(&card->dapm_mutex);
316}
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200317EXPORT_SYMBOL_GPL(dapm_mark_endpoints_dirty);
Mark Browne2d32ff2012-08-31 17:38:32 -0700318
Richard Purdie2b97eab2006-10-06 18:32:18 +0200319/* create a new dapm widget */
Takashi Iwai88cb4292007-02-05 14:56:20 +0100320static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
Richard Purdie2b97eab2006-10-06 18:32:18 +0200321 const struct snd_soc_dapm_widget *_widget)
322{
Pierre-Louis Bossart199ed3e2019-02-01 11:05:12 -0600323 struct snd_soc_dapm_widget *w;
324
325 w = kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
326 if (!w)
327 return NULL;
328
329 /*
330 * w->name is duplicated in caller, but w->sname isn't.
331 * Duplicate it here if defined
332 */
333 if (_widget->sname) {
334 w->sname = kstrdup_const(_widget->sname, GFP_KERNEL);
Dan Carpentera6d9cef2019-02-19 15:04:27 +0300335 if (!w->sname) {
336 kfree(w);
Pierre-Louis Bossart199ed3e2019-02-01 11:05:12 -0600337 return NULL;
Dan Carpentera6d9cef2019-02-19 15:04:27 +0300338 }
Pierre-Louis Bossart199ed3e2019-02-01 11:05:12 -0600339 }
340 return w;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200341}
342
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200343struct dapm_kcontrol_data {
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200344 unsigned int value;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200345 struct snd_soc_dapm_widget *widget;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200346 struct list_head paths;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200347 struct snd_soc_dapm_widget_list *wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200348};
349
350static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100351 struct snd_kcontrol *kcontrol, const char *ctrl_name)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200352{
353 struct dapm_kcontrol_data *data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200354 struct soc_mixer_control *mc;
Charles Keepax561ed682015-05-01 12:37:26 +0100355 struct soc_enum *e;
Charles Keepax773da9b2015-05-01 12:37:25 +0100356 const char *name;
357 int ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200358
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200359 data = kzalloc(sizeof(*data), GFP_KERNEL);
Charles Keepax40b7bea2015-05-01 12:37:24 +0100360 if (!data)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200361 return -ENOMEM;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200362
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200363 INIT_LIST_HEAD(&data->paths);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200364
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200365 switch (widget->id) {
366 case snd_soc_dapm_switch:
367 case snd_soc_dapm_mixer:
368 case snd_soc_dapm_mixer_named_ctl:
369 mc = (struct soc_mixer_control *)kcontrol->private_value;
370
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +0800371 if (mc->autodisable && snd_soc_volsw_is_stereo(mc))
372 dev_warn(widget->dapm->dev,
373 "ASoC: Unsupported stereo autodisable control '%s'\n",
374 ctrl_name);
375
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200376 if (mc->autodisable) {
377 struct snd_soc_dapm_widget template;
378
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100379 name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name,
Charles Keepax773da9b2015-05-01 12:37:25 +0100380 "Autodisable");
381 if (!name) {
382 ret = -ENOMEM;
383 goto err_data;
384 }
385
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200386 memset(&template, 0, sizeof(template));
387 template.reg = mc->reg;
388 template.mask = (1 << fls(mc->max)) - 1;
389 template.shift = mc->shift;
390 if (mc->invert)
391 template.off_val = mc->max;
392 else
393 template.off_val = 0;
394 template.on_val = template.off_val;
395 template.id = snd_soc_dapm_kcontrol;
Charles Keepax773da9b2015-05-01 12:37:25 +0100396 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200397
Lars-Peter Clausen2daabd72013-08-30 17:39:33 +0200398 data->value = template.on_val;
399
Liam Girdwood02aa78a2015-05-25 18:21:17 +0100400 data->widget =
401 snd_soc_dapm_new_control_unlocked(widget->dapm,
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200402 &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200403 kfree(name);
Linus Walleij37e1df82017-01-13 10:23:52 +0100404 if (IS_ERR(data->widget)) {
405 ret = PTR_ERR(data->widget);
406 goto err_data;
407 }
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200408 }
409 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200410 case snd_soc_dapm_demux:
Charles Keepax561ed682015-05-01 12:37:26 +0100411 case snd_soc_dapm_mux:
412 e = (struct soc_enum *)kcontrol->private_value;
413
414 if (e->autodisable) {
415 struct snd_soc_dapm_widget template;
416
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100417 name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name,
Charles Keepax561ed682015-05-01 12:37:26 +0100418 "Autodisable");
419 if (!name) {
420 ret = -ENOMEM;
421 goto err_data;
422 }
423
424 memset(&template, 0, sizeof(template));
425 template.reg = e->reg;
Gyeongtaek Leeebf14742020-04-18 13:13:20 +0900426 template.mask = e->mask;
Charles Keepax561ed682015-05-01 12:37:26 +0100427 template.shift = e->shift_l;
428 template.off_val = snd_soc_enum_item_to_val(e, 0);
429 template.on_val = template.off_val;
430 template.id = snd_soc_dapm_kcontrol;
431 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200432
433 data->value = template.on_val;
434
Charles Keepaxffacb482015-06-26 10:39:43 +0100435 data->widget = snd_soc_dapm_new_control_unlocked(
436 widget->dapm, &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200437 kfree(name);
Linus Walleij37e1df82017-01-13 10:23:52 +0100438 if (IS_ERR(data->widget)) {
439 ret = PTR_ERR(data->widget);
440 goto err_data;
441 }
Charles Keepax561ed682015-05-01 12:37:26 +0100442
443 snd_soc_dapm_add_path(widget->dapm, data->widget,
444 widget, NULL, NULL);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200445 }
446 break;
447 default:
448 break;
449 }
450
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200451 kcontrol->private_data = data;
452
453 return 0;
Charles Keepax773da9b2015-05-01 12:37:25 +0100454
Charles Keepax773da9b2015-05-01 12:37:25 +0100455err_data:
456 kfree(data);
457 return ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200458}
459
460static void dapm_kcontrol_free(struct snd_kcontrol *kctl)
461{
462 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kctl);
Srinivas Kandagatlaff2faf12018-06-04 12:13:26 +0100463
464 list_del(&data->paths);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200465 kfree(data->wlist);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200466 kfree(data);
467}
468
469static struct snd_soc_dapm_widget_list *dapm_kcontrol_get_wlist(
470 const struct snd_kcontrol *kcontrol)
471{
472 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
473
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200474 return data->wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200475}
476
477static int dapm_kcontrol_add_widget(struct snd_kcontrol *kcontrol,
478 struct snd_soc_dapm_widget *widget)
479{
480 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200481 struct snd_soc_dapm_widget_list *new_wlist;
482 unsigned int n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200483
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200484 if (data->wlist)
485 n = data->wlist->num_widgets + 1;
486 else
487 n = 1;
488
489 new_wlist = krealloc(data->wlist,
Gustavo A. R. Silva07597912019-05-23 15:36:37 -0500490 struct_size(new_wlist, widgets, n),
491 GFP_KERNEL);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200492 if (!new_wlist)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200493 return -ENOMEM;
494
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200495 new_wlist->widgets[n - 1] = widget;
496 new_wlist->num_widgets = n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200497
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200498 data->wlist = new_wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200499
500 return 0;
501}
502
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200503static void dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol,
504 struct snd_soc_dapm_path *path)
505{
506 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
507
508 list_add_tail(&path->list_kcontrol, &data->paths);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200509}
510
511static bool dapm_kcontrol_is_powered(const struct snd_kcontrol *kcontrol)
512{
513 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
514
515 if (!data->widget)
516 return true;
517
518 return data->widget->power;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200519}
520
521static struct list_head *dapm_kcontrol_get_path_list(
522 const struct snd_kcontrol *kcontrol)
523{
524 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
525
526 return &data->paths;
527}
528
529#define dapm_kcontrol_for_each_path(path, kcontrol) \
530 list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \
531 list_kcontrol)
532
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530533unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol *kcontrol)
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200534{
535 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
536
537 return data->value;
538}
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530539EXPORT_SYMBOL_GPL(dapm_kcontrol_get_value);
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200540
541static bool dapm_kcontrol_set_value(const struct snd_kcontrol *kcontrol,
542 unsigned int value)
543{
544 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
545
546 if (data->value == value)
547 return false;
548
Gyeongtaek Leeebf14742020-04-18 13:13:20 +0900549 if (data->widget) {
550 switch (dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->id) {
551 case snd_soc_dapm_switch:
552 case snd_soc_dapm_mixer:
553 case snd_soc_dapm_mixer_named_ctl:
554 data->widget->on_val = value & data->widget->mask;
555 break;
556 case snd_soc_dapm_demux:
557 case snd_soc_dapm_mux:
558 data->widget->on_val = value >> data->widget->shift;
559 break;
560 default:
561 data->widget->on_val = value;
562 break;
563 }
564 }
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200565
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200566 data->value = value;
567
568 return true;
569}
570
Lars-Peter Clauseneee5d7f2013-07-29 17:13:57 +0200571/**
Mythri P K93e39a12015-10-20 22:30:08 +0530572 * snd_soc_dapm_kcontrol_widget() - Returns the widget associated to a
573 * kcontrol
574 * @kcontrol: The kcontrol
575 */
576struct snd_soc_dapm_widget *snd_soc_dapm_kcontrol_widget(
577 struct snd_kcontrol *kcontrol)
578{
579 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0];
580}
581EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_widget);
582
583/**
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200584 * snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a
585 * kcontrol
586 * @kcontrol: The kcontrol
587 *
588 * Note: This function must only be used on kcontrols that are known to have
589 * been registered for a CODEC. Otherwise the behaviour is undefined.
590 */
591struct snd_soc_dapm_context *snd_soc_dapm_kcontrol_dapm(
592 struct snd_kcontrol *kcontrol)
593{
594 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->dapm;
595}
596EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_dapm);
597
Liam Girdwood6c120e12012-02-15 15:15:34 +0000598static void dapm_reset(struct snd_soc_card *card)
599{
600 struct snd_soc_dapm_widget *w;
601
Mark Brownf9fa2b12014-03-06 16:49:11 +0800602 lockdep_assert_held(&card->dapm_mutex);
603
Liam Girdwood6c120e12012-02-15 15:15:34 +0000604 memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
605
Kuninori Morimoto14596692020-03-09 13:08:21 +0900606 for_each_card_widgets(card, w) {
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +0200607 w->new_power = w->power;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000608 w->power_checked = false;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000609 }
610}
611
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200612static const char *soc_dapm_prefix(struct snd_soc_dapm_context *dapm)
613{
614 if (!dapm->component)
615 return NULL;
616 return dapm->component->name_prefix;
617}
618
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +0900619static unsigned int soc_dapm_read(struct snd_soc_dapm_context *dapm, int reg)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100620{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200621 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200622 return -EIO;
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +0900623 return snd_soc_component_read(dapm->component, reg);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100624}
625
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200626static int soc_dapm_update_bits(struct snd_soc_dapm_context *dapm,
Bard Liao34775012014-04-17 20:12:56 +0800627 int reg, unsigned int mask, unsigned int value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100628{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200629 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200630 return -EIO;
Mark Brownfcf6c5e2014-12-15 13:08:48 +0000631 return snd_soc_component_update_bits(dapm->component, reg,
632 mask, value);
Liam Girdwood49575fb52012-03-06 18:16:19 +0000633}
634
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200635static int soc_dapm_test_bits(struct snd_soc_dapm_context *dapm,
636 int reg, unsigned int mask, unsigned int value)
637{
638 if (!dapm->component)
639 return -EIO;
640 return snd_soc_component_test_bits(dapm->component, reg, mask, value);
641}
642
Mark Browneb270e92013-10-09 13:52:52 +0100643static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm)
644{
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200645 if (dapm->component)
646 snd_soc_component_async_complete(dapm->component);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100647}
648
Charles Keepax45a110a2015-05-11 13:50:30 +0100649static struct snd_soc_dapm_widget *
650dapm_wcache_lookup(struct snd_soc_dapm_wcache *wcache, const char *name)
651{
652 struct snd_soc_dapm_widget *w = wcache->widget;
Charles Keepax45a110a2015-05-11 13:50:30 +0100653
654 if (w) {
Kuninori Morimoto7453d6d2021-08-05 10:10:55 +0900655 struct list_head *wlist = &w->dapm->card->widgets;
656 const int depth = 2;
657 int i = 0;
Charles Keepax45a110a2015-05-11 13:50:30 +0100658
659 list_for_each_entry_from(w, wlist, list) {
660 if (!strcmp(name, w->name))
661 return w;
662
663 if (++i == depth)
664 break;
665 }
666 }
667
668 return NULL;
669}
670
671static inline void dapm_wcache_update(struct snd_soc_dapm_wcache *wcache,
672 struct snd_soc_dapm_widget *w)
673{
674 wcache->widget = w;
675}
676
Mark Brown452c5ea2009-05-17 21:41:23 +0100677/**
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200678 * snd_soc_dapm_force_bias_level() - Sets the DAPM bias level
679 * @dapm: The DAPM context for which to set the level
680 * @level: The level to set
681 *
682 * Forces the DAPM bias level to a specific state. It will call the bias level
683 * callback of DAPM context with the specified level. This will even happen if
684 * the context is already at the same level. Furthermore it will not go through
685 * the normal bias level sequencing, meaning any intermediate states between the
686 * current and the target state will not be entered.
687 *
688 * Note that the change in bias level is only temporary and the next time
689 * snd_soc_dapm_sync() is called the state will be set to the level as
690 * determined by the DAPM core. The function is mainly intended to be used to
691 * used during probe or resume from suspend to power up the device so
692 * initialization can be done, before the DAPM core takes over.
693 */
694int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm,
695 enum snd_soc_bias_level level)
696{
697 int ret = 0;
698
Kuninori Morimoto7951b1462019-07-26 13:51:43 +0900699 if (dapm->component)
700 ret = snd_soc_component_set_bias_level(dapm->component, level);
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200701
Lars-Peter Clausenf4bf8d72015-04-27 22:13:25 +0200702 if (ret == 0)
703 dapm->bias_level = level;
704
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200705 return ret;
706}
707EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level);
708
Mark Brown452c5ea2009-05-17 21:41:23 +0100709/**
710 * snd_soc_dapm_set_bias_level - set the bias level for the system
Mark Browned5a4c42011-02-18 11:12:42 -0800711 * @dapm: DAPM context
Mark Brown452c5ea2009-05-17 21:41:23 +0100712 * @level: level to configure
713 *
714 * Configure the bias (power) levels for the SoC audio device.
715 *
716 * Returns 0 for success else error.
717 */
Mark Browned5a4c42011-02-18 11:12:42 -0800718static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200719 enum snd_soc_bias_level level)
Mark Brown452c5ea2009-05-17 21:41:23 +0100720{
Mark Browned5a4c42011-02-18 11:12:42 -0800721 struct snd_soc_card *card = dapm->card;
Mark Brown452c5ea2009-05-17 21:41:23 +0100722 int ret = 0;
723
Mark Brown84e90932010-11-04 00:07:02 -0400724 trace_snd_soc_bias_level_start(card, level);
725
Kuninori Morimoto39caefd2020-05-28 10:49:35 +0900726 ret = snd_soc_card_set_bias_level(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100727 if (ret != 0)
728 goto out;
Mark Brown452c5ea2009-05-17 21:41:23 +0100729
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200730 if (!card || dapm != &card->dapm)
731 ret = snd_soc_dapm_force_bias_level(dapm, level);
Liam Girdwood41231282012-07-06 16:56:16 +0100732
Mark Brown171ec6b2011-06-06 18:15:19 +0100733 if (ret != 0)
734 goto out;
735
Kuninori Morimotod41278e2020-05-28 10:50:35 +0900736 ret = snd_soc_card_set_bias_level_post(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100737out:
Mark Brown84e90932010-11-04 00:07:02 -0400738 trace_snd_soc_bias_level_done(card, level);
739
Mark Brown452c5ea2009-05-17 21:41:23 +0100740 return ret;
741}
742
Mark Brown74b8f952009-06-06 11:26:15 +0100743/* connect mux widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200744static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200745 struct snd_soc_dapm_path *path, const char *control_name,
746 struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200747{
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200748 const struct snd_kcontrol_new *kcontrol = &w->kcontrol_news[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +0200749 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Kuninori Morimotoaf6b57a2021-08-05 10:11:00 +0900750 unsigned int item;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200751 int i;
752
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100753 if (e->reg != SND_SOC_NOPM) {
Kuninori Morimotoaf6b57a2021-08-05 10:11:00 +0900754 unsigned int val;
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +0900755 val = soc_dapm_read(dapm, e->reg);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100756 val = (val >> e->shift_l) & e->mask;
757 item = snd_soc_enum_val_to_item(e, val);
758 } else {
759 /* since a virtual mux has no backing registers to
760 * decide which path to connect, it will try to match
761 * with the first enumeration. This is to ensure
762 * that the default mux choice (the first) will be
763 * correctly powered up during initialization.
764 */
765 item = 0;
766 }
767
Xie Yishengf9e0b4a2018-05-31 19:11:23 +0800768 i = match_string(e->texts, e->items, control_name);
769 if (i < 0)
770 return -ENODEV;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200771
Xie Yishengf9e0b4a2018-05-31 19:11:23 +0800772 path->name = e->texts[i];
773 path->connect = (i == item);
774 return 0;
775
Richard Purdie2b97eab2006-10-06 18:32:18 +0200776}
777
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100778/* set up initial codec paths */
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +0800779static void dapm_set_mixer_path_status(struct snd_soc_dapm_path *p, int i,
780 int nth_path)
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100781{
782 struct soc_mixer_control *mc = (struct soc_mixer_control *)
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200783 p->sink->kcontrol_news[i].private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100784 unsigned int reg = mc->reg;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100785 unsigned int invert = mc->invert;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100786
787 if (reg != SND_SOC_NOPM) {
Kuninori Morimoto29155bb2021-08-05 10:11:05 +0900788 unsigned int shift = mc->shift;
789 unsigned int max = mc->max;
790 unsigned int mask = (1 << fls(max)) - 1;
791 unsigned int val = soc_dapm_read(p->sink->dapm, reg);
792
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +0800793 /*
794 * The nth_path argument allows this function to know
795 * which path of a kcontrol it is setting the initial
796 * status for. Ideally this would support any number
797 * of paths and channels. But since kcontrols only come
798 * in mono and stereo variants, we are limited to 2
799 * channels.
800 *
801 * The following code assumes for stereo controls the
802 * first path is the left channel, and all remaining
803 * paths are the right channel.
804 */
805 if (snd_soc_volsw_is_stereo(mc) && nth_path > 0) {
806 if (reg != mc->rreg)
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +0900807 val = soc_dapm_read(p->sink->dapm, mc->rreg);
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +0800808 val = (val >> mc->rshift) & mask;
809 } else {
810 val = (val >> shift) & mask;
811 }
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100812 if (invert)
813 val = max - val;
814 p->connect = !!val;
815 } else {
이경택3bbbb772020-03-31 16:55:16 +0900816 /* since a virtual mixer has no backing registers to
817 * decide which path to connect, it will try to match
818 * with initial state. This is to ensure
819 * that the default mixer choice will be
820 * correctly powered up during initialization.
821 */
822 p->connect = invert;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100823 }
824}
825
Mark Brown74b8f952009-06-06 11:26:15 +0100826/* connect mixer widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200827static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200828 struct snd_soc_dapm_path *path, const char *control_name)
829{
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +0800830 int i, nth_path = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200831
832 /* search for mixer kcontrol */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200833 for (i = 0; i < path->sink->num_kcontrols; i++) {
834 if (!strcmp(control_name, path->sink->kcontrol_news[i].name)) {
835 path->name = path->sink->kcontrol_news[i].name;
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +0800836 dapm_set_mixer_path_status(path, i, nth_path++);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200837 return 0;
838 }
839 }
840 return -ENODEV;
841}
842
Stephen Warrenaf468002011-04-28 17:38:01 -0600843static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
Stephen Warren1007da02011-05-26 09:57:33 -0600844 struct snd_soc_dapm_widget *kcontrolw,
Stephen Warrenaf468002011-04-28 17:38:01 -0600845 const struct snd_kcontrol_new *kcontrol_new,
846 struct snd_kcontrol **kcontrol)
847{
848 struct snd_soc_dapm_widget *w;
849 int i;
850
851 *kcontrol = NULL;
852
Kuninori Morimoto14596692020-03-09 13:08:21 +0900853 for_each_card_widgets(dapm->card, w) {
Stephen Warren1007da02011-05-26 09:57:33 -0600854 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
855 continue;
Stephen Warrenaf468002011-04-28 17:38:01 -0600856 for (i = 0; i < w->num_kcontrols; i++) {
857 if (&w->kcontrol_news[i] == kcontrol_new) {
858 if (w->kcontrols)
859 *kcontrol = w->kcontrols[i];
860 return 1;
861 }
862 }
863 }
864
865 return 0;
866}
867
Stephen Warren85762e72013-03-29 15:40:10 -0600868/*
869 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
870 * create it. Either way, add the widget into the control's widget list
871 */
Jeeja KP19a2557b2015-10-20 22:30:06 +0530872static int dapm_create_or_share_kcontrol(struct snd_soc_dapm_widget *w,
Mark Brown946d92a2013-08-12 23:28:42 +0100873 int kci)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200874{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200875 struct snd_soc_dapm_context *dapm = w->dapm;
Mark Brown12ea2c72011-03-02 18:17:32 +0000876 struct snd_card *card = dapm->card->snd_card;
Mark Brownefb7ac32011-03-08 17:23:24 +0000877 const char *prefix;
Stephen Warren85762e72013-03-29 15:40:10 -0600878 size_t prefix_len;
879 int shared;
880 struct snd_kcontrol *kcontrol;
Stephen Warren85762e72013-03-29 15:40:10 -0600881 bool wname_in_long_name, kcname_in_long_name;
Daniel Macke5092c92014-10-07 13:41:24 +0200882 char *long_name = NULL;
Stephen Warren85762e72013-03-29 15:40:10 -0600883 const char *name;
Daniel Macke5092c92014-10-07 13:41:24 +0200884 int ret = 0;
Mark Brownefb7ac32011-03-08 17:23:24 +0000885
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200886 prefix = soc_dapm_prefix(dapm);
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000887 if (prefix)
888 prefix_len = strlen(prefix) + 1;
889 else
890 prefix_len = 0;
891
Stephen Warren85762e72013-03-29 15:40:10 -0600892 shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[kci],
893 &kcontrol);
894
Stephen Warren85762e72013-03-29 15:40:10 -0600895 if (!kcontrol) {
896 if (shared) {
897 wname_in_long_name = false;
898 kcname_in_long_name = true;
899 } else {
900 switch (w->id) {
901 case snd_soc_dapm_switch:
902 case snd_soc_dapm_mixer:
Jeeja KP19a2557b2015-10-20 22:30:06 +0530903 case snd_soc_dapm_pga:
Seppo Ingalsuo882c8b4a2019-04-30 18:11:34 -0500904 case snd_soc_dapm_effect:
Chen-Yu Tsaia3930ed2016-08-27 19:28:00 +0800905 case snd_soc_dapm_out_drv:
Stephen Warren85762e72013-03-29 15:40:10 -0600906 wname_in_long_name = true;
907 kcname_in_long_name = true;
908 break;
909 case snd_soc_dapm_mixer_named_ctl:
910 wname_in_long_name = false;
911 kcname_in_long_name = true;
912 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200913 case snd_soc_dapm_demux:
Stephen Warren85762e72013-03-29 15:40:10 -0600914 case snd_soc_dapm_mux:
Stephen Warren85762e72013-03-29 15:40:10 -0600915 wname_in_long_name = true;
916 kcname_in_long_name = false;
917 break;
918 default:
Stephen Warren85762e72013-03-29 15:40:10 -0600919 return -EINVAL;
920 }
921 }
922
923 if (wname_in_long_name && kcname_in_long_name) {
Stephen Warren85762e72013-03-29 15:40:10 -0600924 /*
925 * The control will get a prefix from the control
926 * creation process but we're also using the same
927 * prefix for widgets so cut the prefix off the
928 * front of the widget name.
929 */
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200930 long_name = kasprintf(GFP_KERNEL, "%s %s",
Stephen Warren85762e72013-03-29 15:40:10 -0600931 w->name + prefix_len,
932 w->kcontrol_news[kci].name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200933 if (long_name == NULL)
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200934 return -ENOMEM;
Stephen Warren85762e72013-03-29 15:40:10 -0600935
936 name = long_name;
937 } else if (wname_in_long_name) {
938 long_name = NULL;
939 name = w->name + prefix_len;
940 } else {
941 long_name = NULL;
942 name = w->kcontrol_news[kci].name;
943 }
944
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200945 kcontrol = snd_soc_cnew(&w->kcontrol_news[kci], NULL, name,
Stephen Warren85762e72013-03-29 15:40:10 -0600946 prefix);
Daniel Macke5092c92014-10-07 13:41:24 +0200947 if (!kcontrol) {
948 ret = -ENOMEM;
949 goto exit_free;
950 }
951
Lars-Peter Clausen9356e9d2013-08-01 14:08:06 +0200952 kcontrol->private_free = dapm_kcontrol_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200953
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100954 ret = dapm_kcontrol_data_alloc(w, kcontrol, name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200955 if (ret) {
956 snd_ctl_free_one(kcontrol);
Daniel Macke5092c92014-10-07 13:41:24 +0200957 goto exit_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200958 }
959
Stephen Warren85762e72013-03-29 15:40:10 -0600960 ret = snd_ctl_add(card, kcontrol);
961 if (ret < 0) {
962 dev_err(dapm->dev,
963 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
964 w->name, name, ret);
Daniel Macke5092c92014-10-07 13:41:24 +0200965 goto exit_free;
Stephen Warren85762e72013-03-29 15:40:10 -0600966 }
Stephen Warren85762e72013-03-29 15:40:10 -0600967 }
968
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200969 ret = dapm_kcontrol_add_widget(kcontrol, w);
Daniel Macke5092c92014-10-07 13:41:24 +0200970 if (ret == 0)
971 w->kcontrols[kci] = kcontrol;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200972
Daniel Macke5092c92014-10-07 13:41:24 +0200973exit_free:
974 kfree(long_name);
Stephen Warren85762e72013-03-29 15:40:10 -0600975
Daniel Macke5092c92014-10-07 13:41:24 +0200976 return ret;
Stephen Warren85762e72013-03-29 15:40:10 -0600977}
978
979/* create new dapm mixer control */
980static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
981{
982 int i, ret;
983 struct snd_soc_dapm_path *path;
Charles Keepax561ed682015-05-01 12:37:26 +0100984 struct dapm_kcontrol_data *data;
Stephen Warren85762e72013-03-29 15:40:10 -0600985
Richard Purdie2b97eab2006-10-06 18:32:18 +0200986 /* add kcontrol */
987 for (i = 0; i < w->num_kcontrols; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200988 /* match name */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +0200989 snd_soc_dapm_widget_for_each_source_path(w, path) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200990 /* mixer/mux paths name must match control name */
Stephen Warren82cfecd2011-04-28 17:37:58 -0600991 if (path->name != (char *)w->kcontrol_news[i].name)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200992 continue;
993
Charles Keepax561ed682015-05-01 12:37:26 +0100994 if (!w->kcontrols[i]) {
Jeeja KP19a2557b2015-10-20 22:30:06 +0530995 ret = dapm_create_or_share_kcontrol(w, i);
Charles Keepax561ed682015-05-01 12:37:26 +0100996 if (ret < 0)
997 return ret;
Lars-Peter Clausen82cd8762011-08-15 20:15:21 +0200998 }
999
Mark Brown946d92a2013-08-12 23:28:42 +01001000 dapm_kcontrol_add_path(w->kcontrols[i], path);
Charles Keepax561ed682015-05-01 12:37:26 +01001001
1002 data = snd_kcontrol_chip(w->kcontrols[i]);
1003 if (data->widget)
1004 snd_soc_dapm_add_path(data->widget->dapm,
1005 data->widget,
1006 path->source,
1007 NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001008 }
1009 }
Stephen Warren85762e72013-03-29 15:40:10 -06001010
1011 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001012}
1013
1014/* create new dapm mux control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02001015static int dapm_new_mux(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001016{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02001017 struct snd_soc_dapm_context *dapm = w->dapm;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001018 enum snd_soc_dapm_direction dir;
Stephen Warren85762e72013-03-29 15:40:10 -06001019 struct snd_soc_dapm_path *path;
Lars-Peter Clausend714f972015-05-01 18:02:43 +02001020 const char *type;
Stephen Warrenaf468002011-04-28 17:38:01 -06001021 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001022
Lars-Peter Clausend714f972015-05-01 18:02:43 +02001023 switch (w->id) {
1024 case snd_soc_dapm_mux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001025 dir = SND_SOC_DAPM_DIR_OUT;
Lars-Peter Clausend714f972015-05-01 18:02:43 +02001026 type = "mux";
1027 break;
1028 case snd_soc_dapm_demux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001029 dir = SND_SOC_DAPM_DIR_IN;
Lars-Peter Clausend714f972015-05-01 18:02:43 +02001030 type = "demux";
1031 break;
1032 default:
1033 return -EINVAL;
1034 }
1035
Stephen Warrenaf468002011-04-28 17:38:01 -06001036 if (w->num_kcontrols != 1) {
1037 dev_err(dapm->dev,
Lars-Peter Clausend714f972015-05-01 18:02:43 +02001038 "ASoC: %s %s has incorrect number of controls\n", type,
Stephen Warrenaf468002011-04-28 17:38:01 -06001039 w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001040 return -EINVAL;
1041 }
1042
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001043 if (list_empty(&w->edges[dir])) {
Lars-Peter Clausend714f972015-05-01 18:02:43 +02001044 dev_err(dapm->dev, "ASoC: %s %s has no paths\n", type, w->name);
Stephen Warren85762e72013-03-29 15:40:10 -06001045 return -EINVAL;
Stephen Warrenaf468002011-04-28 17:38:01 -06001046 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +02001047
Jeeja KP19a2557b2015-10-20 22:30:06 +05301048 ret = dapm_create_or_share_kcontrol(w, 0);
Stephen Warren85762e72013-03-29 15:40:10 -06001049 if (ret < 0)
1050 return ret;
Stephen Warrenfad59882011-04-28 17:37:59 -06001051
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001052 snd_soc_dapm_widget_for_each_path(w, dir, path) {
1053 if (path->name)
1054 dapm_kcontrol_add_path(w->kcontrols[0], path);
Lars-Peter Clausen98407ef2014-10-25 17:41:57 +02001055 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001056
Stephen Warrenaf468002011-04-28 17:38:01 -06001057 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001058}
1059
1060/* create new dapm volume control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02001061static int dapm_new_pga(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001062{
Kuninori Morimotoa16cfb12021-08-05 10:11:10 +09001063 int i;
Jeeja KP19a2557b2015-10-20 22:30:06 +05301064
1065 for (i = 0; i < w->num_kcontrols; i++) {
Kuninori Morimotoa16cfb12021-08-05 10:11:10 +09001066 int ret = dapm_create_or_share_kcontrol(w, i);
Jeeja KP19a2557b2015-10-20 22:30:06 +05301067 if (ret < 0)
1068 return ret;
1069 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001070
Mark Browna6c65732010-03-03 17:45:21 +00001071 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001072}
1073
Nikesh Oswalc6615082015-02-02 17:06:44 +00001074/* create new dapm dai link control */
1075static int dapm_new_dai_link(struct snd_soc_dapm_widget *w)
1076{
Kuninori Morimoto5c52e482021-08-05 10:11:15 +09001077 int i;
Charles Keepax243bcfa2018-09-05 15:21:02 +01001078 struct snd_soc_pcm_runtime *rtd = w->priv;
Nikesh Oswalc6615082015-02-02 17:06:44 +00001079
1080 /* create control for links with > 1 config */
Charles Keepax243bcfa2018-09-05 15:21:02 +01001081 if (rtd->dai_link->num_params <= 1)
Nikesh Oswalc6615082015-02-02 17:06:44 +00001082 return 0;
1083
1084 /* add kcontrol */
1085 for (i = 0; i < w->num_kcontrols; i++) {
Kuninori Morimoto5c52e482021-08-05 10:11:15 +09001086 struct snd_soc_dapm_context *dapm = w->dapm;
1087 struct snd_card *card = dapm->card->snd_card;
1088 struct snd_kcontrol *kcontrol = snd_soc_cnew(&w->kcontrol_news[i],
1089 w, w->name, NULL);
1090 int ret = snd_ctl_add(card, kcontrol);
1091
Nikesh Oswalc6615082015-02-02 17:06:44 +00001092 if (ret < 0) {
1093 dev_err(dapm->dev,
1094 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
1095 w->name, w->kcontrol_news[i].name, ret);
1096 return ret;
1097 }
1098 kcontrol->private_data = w;
1099 w->kcontrols[i] = kcontrol;
1100 }
1101
1102 return 0;
1103}
1104
Mark Brown9949788b2010-05-07 20:24:05 +01001105/* We implement power down on suspend by checking the power state of
1106 * the ALSA card - when we are suspending the ALSA state for the card
1107 * is set to D3.
1108 */
1109static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
1110{
Mark Brown12ea2c72011-03-02 18:17:32 +00001111 int level = snd_power_get_state(widget->dapm->card->snd_card);
Mark Brown9949788b2010-05-07 20:24:05 +01001112
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001113 switch (level) {
Mark Brown9949788b2010-05-07 20:24:05 +01001114 case SNDRV_CTL_POWER_D3hot:
1115 case SNDRV_CTL_POWER_D3cold:
Mark Brown1547aba2010-05-07 21:11:40 +01001116 if (widget->ignore_suspend)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001117 dev_dbg(widget->dapm->dev, "ASoC: %s ignoring suspend\n",
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001118 widget->name);
Mark Brown1547aba2010-05-07 21:11:40 +01001119 return widget->ignore_suspend;
Mark Brown9949788b2010-05-07 20:24:05 +01001120 default:
1121 return 1;
1122 }
1123}
1124
Kuninori Morimoto52645e332020-02-19 15:56:52 +09001125static void dapm_widget_list_free(struct snd_soc_dapm_widget_list **list)
1126{
1127 kfree(*list);
1128}
1129
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001130static int dapm_widget_list_create(struct snd_soc_dapm_widget_list **list,
1131 struct list_head *widgets)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001132{
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001133 struct snd_soc_dapm_widget *w;
1134 struct list_head *it;
1135 unsigned int size = 0;
1136 unsigned int i = 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001137
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001138 list_for_each(it, widgets)
1139 size++;
1140
Kees Cookacafe7e2018-05-08 13:45:50 -07001141 *list = kzalloc(struct_size(*list, widgets, size), GFP_KERNEL);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001142 if (*list == NULL)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001143 return -ENOMEM;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001144
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001145 list_for_each_entry(w, widgets, work_list)
1146 (*list)->widgets[i++] = w;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001147
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001148 (*list)->num_widgets = i;
1149
1150 return 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001151}
1152
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001153/*
Szymon Mielczarek872f3ac2019-08-09 10:40:34 +02001154 * Recursively reset the cached number of inputs or outputs for the specified
1155 * widget and all widgets that can be reached via incoming or outcoming paths
1156 * from the widget.
1157 */
1158static void invalidate_paths_ep(struct snd_soc_dapm_widget *widget,
1159 enum snd_soc_dapm_direction dir)
1160{
1161 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
1162 struct snd_soc_dapm_path *path;
1163
1164 widget->endpoints[dir] = -1;
1165
1166 snd_soc_dapm_widget_for_each_path(widget, rdir, path) {
1167 if (path->weak || path->is_supply)
1168 continue;
1169
1170 if (path->walking)
1171 return;
1172
1173 if (path->connect) {
1174 path->walking = 1;
1175 invalidate_paths_ep(path->node[dir], dir);
1176 path->walking = 0;
1177 }
1178 }
1179}
1180
1181/*
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001182 * Common implementation for is_connected_output_ep() and
1183 * is_connected_input_ep(). The function is inlined since the combined size of
1184 * the two specialized functions is only marginally larger then the size of the
1185 * generic function and at the same time the fast path of the specialized
1186 * functions is significantly smaller than the generic function.
1187 */
1188static __always_inline int is_connected_ep(struct snd_soc_dapm_widget *widget,
1189 struct list_head *list, enum snd_soc_dapm_direction dir,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001190 int (*fn)(struct snd_soc_dapm_widget *, struct list_head *,
1191 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1192 enum snd_soc_dapm_direction)),
1193 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1194 enum snd_soc_dapm_direction))
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001195{
1196 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001197 struct snd_soc_dapm_path *path;
1198 int con = 0;
1199
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001200 if (widget->endpoints[dir] >= 0)
1201 return widget->endpoints[dir];
Mark Brown024dc072011-10-09 11:52:05 +01001202
Mark Brownde02d072011-09-20 21:43:24 +01001203 DAPM_UPDATE_STAT(widget, path_checks);
1204
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001205 /* do we need to add this widget to the list ? */
1206 if (list)
1207 list_add_tail(&widget->work_list, list);
1208
Jeeja KP09464972016-06-15 11:16:55 +05301209 if (custom_stop_condition && custom_stop_condition(widget, dir)) {
Charles Keepax8dd26df2019-07-18 09:43:33 +01001210 list = NULL;
1211 custom_stop_condition = NULL;
Jeeja KP09464972016-06-15 11:16:55 +05301212 }
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001213
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001214 if ((widget->is_ep & SND_SOC_DAPM_DIR_TO_EP(dir)) && widget->connected) {
1215 widget->endpoints[dir] = snd_soc_dapm_suspend_check(widget);
1216 return widget->endpoints[dir];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001217 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001218
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001219 snd_soc_dapm_widget_for_each_path(widget, rdir, path) {
Mark Browne56235e02011-09-21 18:19:14 +01001220 DAPM_UPDATE_STAT(widget, neighbour_checks);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001221
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001222 if (path->weak || path->is_supply)
Mark Brownbf3a9e12011-06-13 16:42:29 +01001223 continue;
1224
Mark Brown8af294b2013-02-22 17:48:15 +00001225 if (path->walking)
1226 return 1;
1227
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001228 trace_snd_soc_dapm_path(widget, dir, path);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001229
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001230 if (path->connect) {
Mark Brown8af294b2013-02-22 17:48:15 +00001231 path->walking = 1;
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001232 con += fn(path->node[dir], list, custom_stop_condition);
Mark Brown8af294b2013-02-22 17:48:15 +00001233 path->walking = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001234 }
1235 }
1236
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001237 widget->endpoints[dir] = con;
Mark Brown024dc072011-10-09 11:52:05 +01001238
Richard Purdie2b97eab2006-10-06 18:32:18 +02001239 return con;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001240}
1241
1242/*
1243 * Recursively check for a completed path to an active or physically connected
1244 * output widget. Returns number of complete paths.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001245 *
1246 * Optionally, can be supplied with a function acting as a stopping condition.
1247 * This function takes the dapm widget currently being examined and the walk
Charles Keepax8dd26df2019-07-18 09:43:33 +01001248 * direction as an arguments, it should return true if widgets from that point
1249 * in the graph onwards should not be added to the widget list.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001250 */
1251static int is_connected_output_ep(struct snd_soc_dapm_widget *widget,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001252 struct list_head *list,
1253 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1254 enum snd_soc_dapm_direction))
Richard Purdie2b97eab2006-10-06 18:32:18 +02001255{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001256 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_OUT,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001257 is_connected_output_ep, custom_stop_condition);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001258}
1259
1260/*
1261 * Recursively check for a completed path to an active or physically connected
1262 * input widget. Returns number of complete paths.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001263 *
1264 * Optionally, can be supplied with a function acting as a stopping condition.
1265 * This function takes the dapm widget currently being examined and the walk
1266 * direction as an arguments, it should return true if the walk should be
1267 * stopped and false otherwise.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001268 */
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001269static int is_connected_input_ep(struct snd_soc_dapm_widget *widget,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001270 struct list_head *list,
1271 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1272 enum snd_soc_dapm_direction))
Richard Purdie2b97eab2006-10-06 18:32:18 +02001273{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001274 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_IN,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001275 is_connected_input_ep, custom_stop_condition);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001276}
1277
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001278/**
Mauro Carvalho Chehabf7b66032020-10-23 18:33:35 +02001279 * snd_soc_dapm_dai_get_connected_widgets - query audio path and it's widgets.
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001280 * @dai: the soc DAI.
1281 * @stream: stream direction.
1282 * @list: list of active widgets for this stream.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001283 * @custom_stop_condition: (optional) a function meant to stop the widget graph
1284 * walk based on custom logic.
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001285 *
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001286 * Queries DAPM graph as to whether a valid audio stream path exists for
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001287 * the initial stream specified by name. This takes into account
1288 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1289 *
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001290 * Optionally, can be supplied with a function acting as a stopping condition.
1291 * This function takes the dapm widget currently being examined and the walk
1292 * direction as an arguments, it should return true if the walk should be
1293 * stopped and false otherwise.
1294 *
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001295 * Returns the number of valid paths or negative error.
1296 */
1297int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001298 struct snd_soc_dapm_widget_list **list,
1299 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1300 enum snd_soc_dapm_direction))
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001301{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001302 struct snd_soc_card *card = dai->component->card;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001303 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001304 LIST_HEAD(widgets);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001305 int paths;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001306 int ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001307
1308 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001309
Szymon Mielczarek872f3ac2019-08-09 10:40:34 +02001310 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
1311 w = dai->playback_widget;
1312 invalidate_paths_ep(w, SND_SOC_DAPM_DIR_OUT);
1313 paths = is_connected_output_ep(w, &widgets,
1314 custom_stop_condition);
1315 } else {
1316 w = dai->capture_widget;
1317 invalidate_paths_ep(w, SND_SOC_DAPM_DIR_IN);
1318 paths = is_connected_input_ep(w, &widgets,
1319 custom_stop_condition);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001320 }
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001321
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001322 /* Drop starting point */
1323 list_del(widgets.next);
1324
1325 ret = dapm_widget_list_create(list, &widgets);
1326 if (ret)
Lars-Peter Clausen30abbe72015-08-11 21:37:59 +02001327 paths = ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001328
1329 trace_snd_soc_dapm_connected(paths, stream);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001330 mutex_unlock(&card->dapm_mutex);
1331
1332 return paths;
1333}
1334
Kuninori Morimoto52645e332020-02-19 15:56:52 +09001335void snd_soc_dapm_dai_free_widgets(struct snd_soc_dapm_widget_list **list)
1336{
1337 dapm_widget_list_free(list);
1338}
1339
Richard Purdie2b97eab2006-10-06 18:32:18 +02001340/*
Mark Brown62ea8742012-01-21 21:14:48 +00001341 * Handler for regulator supply widget.
1342 */
1343int dapm_regulator_event(struct snd_soc_dapm_widget *w,
1344 struct snd_kcontrol *kcontrol, int event)
1345{
Mark Brownc05b84d2012-09-07 12:57:11 +08001346 int ret;
1347
Mark Browneb270e92013-10-09 13:52:52 +01001348 soc_dapm_async_complete(w->dapm);
1349
Mark Brownc05b84d2012-09-07 12:57:11 +08001350 if (SND_SOC_DAPM_EVENT_ON(event)) {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001351 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001352 ret = regulator_allow_bypass(w->regulator, false);
Mark Brownc05b84d2012-09-07 12:57:11 +08001353 if (ret != 0)
1354 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001355 "ASoC: Failed to unbypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001356 w->name, ret);
1357 }
1358
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001359 return regulator_enable(w->regulator);
Mark Brownc05b84d2012-09-07 12:57:11 +08001360 } else {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001361 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001362 ret = regulator_allow_bypass(w->regulator, true);
Mark Brownc05b84d2012-09-07 12:57:11 +08001363 if (ret != 0)
1364 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001365 "ASoC: Failed to bypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001366 w->name, ret);
1367 }
1368
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001369 return regulator_disable_deferred(w->regulator, w->shift);
Mark Brownc05b84d2012-09-07 12:57:11 +08001370 }
Mark Brown62ea8742012-01-21 21:14:48 +00001371}
1372EXPORT_SYMBOL_GPL(dapm_regulator_event);
1373
Ola Liljad7e7eb92012-05-24 15:26:25 +02001374/*
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +00001375 * Handler for pinctrl widget.
1376 */
1377int dapm_pinctrl_event(struct snd_soc_dapm_widget *w,
1378 struct snd_kcontrol *kcontrol, int event)
1379{
1380 struct snd_soc_dapm_pinctrl_priv *priv = w->priv;
1381 struct pinctrl *p = w->pinctrl;
1382 struct pinctrl_state *s;
1383
1384 if (!p || !priv)
1385 return -EIO;
1386
1387 if (SND_SOC_DAPM_EVENT_ON(event))
1388 s = pinctrl_lookup_state(p, priv->active_state);
1389 else
1390 s = pinctrl_lookup_state(p, priv->sleep_state);
1391
1392 if (IS_ERR(s))
1393 return PTR_ERR(s);
1394
1395 return pinctrl_select_state(p, s);
1396}
1397EXPORT_SYMBOL_GPL(dapm_pinctrl_event);
1398
1399/*
Ola Liljad7e7eb92012-05-24 15:26:25 +02001400 * Handler for clock supply widget.
1401 */
1402int dapm_clock_event(struct snd_soc_dapm_widget *w,
1403 struct snd_kcontrol *kcontrol, int event)
1404{
1405 if (!w->clk)
1406 return -EIO;
1407
Mark Browneb270e92013-10-09 13:52:52 +01001408 soc_dapm_async_complete(w->dapm);
1409
Ola Liljad7e7eb92012-05-24 15:26:25 +02001410 if (SND_SOC_DAPM_EVENT_ON(event)) {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001411 return clk_prepare_enable(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001412 } else {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001413 clk_disable_unprepare(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001414 return 0;
1415 }
Charles Keepaxd78b1e432018-08-28 14:35:02 +01001416
Marek Belisko98b3cf12012-07-12 23:00:16 +02001417 return 0;
Ola Liljad7e7eb92012-05-24 15:26:25 +02001418}
1419EXPORT_SYMBOL_GPL(dapm_clock_event);
1420
Mark Brownd805002b2011-09-28 18:28:23 +01001421static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
1422{
Mark Brown9b8a83b2011-10-04 22:15:59 +01001423 if (w->power_checked)
1424 return w->new_power;
1425
Mark Brownd805002b2011-09-28 18:28:23 +01001426 if (w->force)
Mark Brown9b8a83b2011-10-04 22:15:59 +01001427 w->new_power = 1;
Mark Brownd805002b2011-09-28 18:28:23 +01001428 else
Mark Brown9b8a83b2011-10-04 22:15:59 +01001429 w->new_power = w->power_check(w);
1430
1431 w->power_checked = true;
1432
1433 return w->new_power;
Mark Brownd805002b2011-09-28 18:28:23 +01001434}
1435
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001436/* Generic check to see if a widget should be powered. */
Mark Browncd0f2d42009-04-20 16:56:59 +01001437static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
1438{
1439 int in, out;
1440
Mark Brownde02d072011-09-20 21:43:24 +01001441 DAPM_UPDATE_STAT(w, power_checks);
1442
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001443 in = is_connected_input_ep(w, NULL, NULL);
1444 out = is_connected_output_ep(w, NULL, NULL);
Mark Browncd0f2d42009-04-20 16:56:59 +01001445 return out != 0 && in != 0;
1446}
1447
Mark Brown246d0a12009-04-22 18:24:55 +01001448/* Check to see if a power supply is needed */
1449static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
1450{
1451 struct snd_soc_dapm_path *path;
Mark Brown246d0a12009-04-22 18:24:55 +01001452
Mark Brownde02d072011-09-20 21:43:24 +01001453 DAPM_UPDATE_STAT(w, power_checks);
1454
Mark Brown246d0a12009-04-22 18:24:55 +01001455 /* Check if one of our outputs is connected */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001456 snd_soc_dapm_widget_for_each_sink_path(w, path) {
Mark Browna8fdac82011-09-28 18:20:26 +01001457 DAPM_UPDATE_STAT(w, neighbour_checks);
1458
Mark Brownbf3a9e12011-06-13 16:42:29 +01001459 if (path->weak)
1460 continue;
1461
Mark Brown215edda2009-09-08 18:59:05 +01001462 if (path->connected &&
1463 !path->connected(path->source, path->sink))
1464 continue;
1465
Mark Brownf68d7e12011-10-04 22:57:50 +01001466 if (dapm_widget_power_check(path->sink))
1467 return 1;
Mark Brown246d0a12009-04-22 18:24:55 +01001468 }
1469
Mark Brownf68d7e12011-10-04 22:57:50 +01001470 return 0;
Mark Brown246d0a12009-04-22 18:24:55 +01001471}
1472
Mark Brown35c64bc2011-09-28 18:23:53 +01001473static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
1474{
Charles Keepax20bb0182015-12-02 10:22:16 +00001475 return w->connected;
Mark Brown35c64bc2011-09-28 18:23:53 +01001476}
1477
Mark Brown38357ab2009-06-06 19:03:23 +01001478static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1479 struct snd_soc_dapm_widget *b,
Mark Brown828a8422011-01-15 13:14:30 +00001480 bool power_up)
Mark Brown42aa3412009-03-01 19:21:10 +00001481{
Mark Brown828a8422011-01-15 13:14:30 +00001482 int *sort;
1483
Pierre-Louis Bossartf13d4b52019-02-05 10:22:28 -06001484 BUILD_BUG_ON(ARRAY_SIZE(dapm_up_seq) != SND_SOC_DAPM_TYPE_COUNT);
1485 BUILD_BUG_ON(ARRAY_SIZE(dapm_down_seq) != SND_SOC_DAPM_TYPE_COUNT);
1486
Mark Brown828a8422011-01-15 13:14:30 +00001487 if (power_up)
1488 sort = dapm_up_seq;
1489 else
1490 sort = dapm_down_seq;
1491
Pierre-Louis Bossartf13d4b52019-02-05 10:22:28 -06001492 WARN_ONCE(sort[a->id] == 0, "offset a->id %d not initialized\n", a->id);
1493 WARN_ONCE(sort[b->id] == 0, "offset b->id %d not initialized\n", b->id);
1494
Mark Brown38357ab2009-06-06 19:03:23 +01001495 if (sort[a->id] != sort[b->id])
1496 return sort[a->id] - sort[b->id];
Mark Brown20e48592011-01-15 13:40:50 +00001497 if (a->subseq != b->subseq) {
1498 if (power_up)
1499 return a->subseq - b->subseq;
1500 else
1501 return b->subseq - a->subseq;
1502 }
Mark Brownb22ead22009-06-07 12:51:26 +01001503 if (a->reg != b->reg)
1504 return a->reg - b->reg;
Mark Brown84dab562010-11-12 15:28:42 +00001505 if (a->dapm != b->dapm)
1506 return (unsigned long)a->dapm - (unsigned long)b->dapm;
Mark Brown42aa3412009-03-01 19:21:10 +00001507
Mark Brown38357ab2009-06-06 19:03:23 +01001508 return 0;
1509}
Mark Brown42aa3412009-03-01 19:21:10 +00001510
Mark Brown38357ab2009-06-06 19:03:23 +01001511/* Insert a widget in order into a DAPM power sequence. */
1512static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1513 struct list_head *list,
Mark Brown828a8422011-01-15 13:14:30 +00001514 bool power_up)
Mark Brown38357ab2009-06-06 19:03:23 +01001515{
1516 struct snd_soc_dapm_widget *w;
1517
1518 list_for_each_entry(w, list, power_list)
Mark Brown828a8422011-01-15 13:14:30 +00001519 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
Mark Brown38357ab2009-06-06 19:03:23 +01001520 list_add_tail(&new_widget->power_list, &w->power_list);
1521 return;
Mark Brown42aa3412009-03-01 19:21:10 +00001522 }
Mark Brown6ea31b92009-04-20 17:15:41 +01001523
Mark Brown38357ab2009-06-06 19:03:23 +01001524 list_add_tail(&new_widget->power_list, list);
1525}
Mark Brown42aa3412009-03-01 19:21:10 +00001526
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001527static void dapm_seq_check_event(struct snd_soc_card *card,
Mark Brown68f89ad2010-11-03 23:51:49 -04001528 struct snd_soc_dapm_widget *w, int event)
1529{
Mark Brown68f89ad2010-11-03 23:51:49 -04001530 const char *ev_name;
Kuninori Morimoto65f73162021-08-05 10:11:20 +09001531 int power;
Mark Brown68f89ad2010-11-03 23:51:49 -04001532
1533 switch (event) {
1534 case SND_SOC_DAPM_PRE_PMU:
1535 ev_name = "PRE_PMU";
1536 power = 1;
1537 break;
1538 case SND_SOC_DAPM_POST_PMU:
1539 ev_name = "POST_PMU";
1540 power = 1;
1541 break;
1542 case SND_SOC_DAPM_PRE_PMD:
1543 ev_name = "PRE_PMD";
1544 power = 0;
1545 break;
1546 case SND_SOC_DAPM_POST_PMD:
1547 ev_name = "POST_PMD";
1548 power = 0;
1549 break;
Mark Brown80114122013-02-25 15:14:19 +00001550 case SND_SOC_DAPM_WILL_PMU:
1551 ev_name = "WILL_PMU";
1552 power = 1;
1553 break;
1554 case SND_SOC_DAPM_WILL_PMD:
1555 ev_name = "WILL_PMD";
1556 power = 0;
1557 break;
Mark Brown68f89ad2010-11-03 23:51:49 -04001558 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01001559 WARN(1, "Unknown event %d\n", event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001560 return;
1561 }
1562
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001563 if (w->new_power != power)
Mark Brown68f89ad2010-11-03 23:51:49 -04001564 return;
1565
1566 if (w->event && (w->event_flags & event)) {
Kuninori Morimoto65f73162021-08-05 10:11:20 +09001567 int ret;
1568
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001569 pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001570 w->name, ev_name);
Mark Browneb270e92013-10-09 13:52:52 +01001571 soc_dapm_async_complete(w->dapm);
Mark Brown84e90932010-11-04 00:07:02 -04001572 trace_snd_soc_dapm_widget_event_start(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001573 ret = w->event(w, NULL, event);
Mark Brown84e90932010-11-04 00:07:02 -04001574 trace_snd_soc_dapm_widget_event_done(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001575 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001576 dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001577 ev_name, w->name, ret);
1578 }
1579}
1580
Mark Brownb22ead22009-06-07 12:51:26 +01001581/* Apply the coalesced changes from a DAPM sequence */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001582static void dapm_seq_run_coalesced(struct snd_soc_card *card,
Mark Brownb22ead22009-06-07 12:51:26 +01001583 struct list_head *pending)
Mark Brown163cac02009-06-07 10:12:52 +01001584{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001585 struct snd_soc_dapm_context *dapm;
Mark Brown68f89ad2010-11-03 23:51:49 -04001586 struct snd_soc_dapm_widget *w;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001587 int reg;
Mark Brownb22ead22009-06-07 12:51:26 +01001588 unsigned int value = 0;
1589 unsigned int mask = 0;
Mark Brownb22ead22009-06-07 12:51:26 +01001590
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001591 w = list_first_entry(pending, struct snd_soc_dapm_widget, power_list);
1592 reg = w->reg;
1593 dapm = w->dapm;
Mark Brownb22ead22009-06-07 12:51:26 +01001594
1595 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001596 WARN_ON(reg != w->reg || dapm != w->dapm);
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001597 w->power = w->new_power;
Mark Brownb22ead22009-06-07 12:51:26 +01001598
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001599 mask |= w->mask << w->shift;
1600 if (w->power)
1601 value |= w->on_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001602 else
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001603 value |= w->off_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001604
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001605 pop_dbg(dapm->dev, card->pop_time,
Mark Brownb22ead22009-06-07 12:51:26 +01001606 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1607 w->name, reg, value, mask);
Mark Brown81628102009-06-07 13:21:24 +01001608
Mark Brown68f89ad2010-11-03 23:51:49 -04001609 /* Check for events */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001610 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU);
1611 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001612 }
1613
Mark Brown81628102009-06-07 13:21:24 +01001614 if (reg >= 0) {
Mark Brown29376bc2011-06-19 13:49:28 +01001615 /* Any widget will do, they should all be updating the
1616 * same register.
1617 */
Mark Brown29376bc2011-06-19 13:49:28 +01001618
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001619 pop_dbg(dapm->dev, card->pop_time,
Mark Brown81628102009-06-07 13:21:24 +01001620 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001621 value, mask, reg, card->pop_time);
1622 pop_wait(card->pop_time);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001623 soc_dapm_update_bits(dapm, reg, mask, value);
Mark Brown81628102009-06-07 13:21:24 +01001624 }
1625
1626 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001627 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU);
1628 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD);
Mark Brown42aa3412009-03-01 19:21:10 +00001629 }
Mark Brown42aa3412009-03-01 19:21:10 +00001630}
1631
Mark Brownb22ead22009-06-07 12:51:26 +01001632/* Apply a DAPM power sequence.
1633 *
1634 * We walk over a pre-sorted list of widgets to apply power to. In
1635 * order to minimise the number of writes to the device required
1636 * multiple widgets will be updated in a single write where possible.
1637 * Currently anything that requires more than a single write is not
1638 * handled.
1639 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001640static void dapm_seq_run(struct snd_soc_card *card,
1641 struct list_head *list, int event, bool power_up)
Mark Brownb22ead22009-06-07 12:51:26 +01001642{
1643 struct snd_soc_dapm_widget *w, *n;
Mark Browneb270e92013-10-09 13:52:52 +01001644 struct snd_soc_dapm_context *d;
Mark Brownb22ead22009-06-07 12:51:26 +01001645 LIST_HEAD(pending);
1646 int cur_sort = -1;
Mark Brown20e48592011-01-15 13:40:50 +00001647 int cur_subseq = -1;
Mark Brownb22ead22009-06-07 12:51:26 +01001648 int cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001649 struct snd_soc_dapm_context *cur_dapm = NULL;
Mark Brown474b62d2011-01-18 16:14:44 +00001650 int ret, i;
Mark Brown828a8422011-01-15 13:14:30 +00001651 int *sort;
1652
1653 if (power_up)
1654 sort = dapm_up_seq;
1655 else
1656 sort = dapm_down_seq;
Mark Brown163cac02009-06-07 10:12:52 +01001657
Mark Brownb22ead22009-06-07 12:51:26 +01001658 list_for_each_entry_safe(w, n, list, power_list) {
1659 ret = 0;
1660
1661 /* Do we need to apply any queued changes? */
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001662 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
Mark Brown20e48592011-01-15 13:40:50 +00001663 w->dapm != cur_dapm || w->subseq != cur_subseq) {
Mark Brownb22ead22009-06-07 12:51:26 +01001664 if (!list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001665 dapm_seq_run_coalesced(card, &pending);
Mark Brownb22ead22009-06-07 12:51:26 +01001666
Kuninori Morimoto9d415fb2019-07-26 13:51:35 +09001667 if (cur_dapm && cur_dapm->component) {
Mark Brown474b62d2011-01-18 16:14:44 +00001668 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1669 if (sort[i] == cur_sort)
Kuninori Morimoto9d415fb2019-07-26 13:51:35 +09001670 snd_soc_component_seq_notifier(
1671 cur_dapm->component,
1672 i, cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001673 }
1674
Mark Browneb270e92013-10-09 13:52:52 +01001675 if (cur_dapm && w->dapm != cur_dapm)
1676 soc_dapm_async_complete(cur_dapm);
1677
Mark Brownb22ead22009-06-07 12:51:26 +01001678 INIT_LIST_HEAD(&pending);
1679 cur_sort = -1;
Mark Brownb0b3e6f2011-07-16 10:55:08 +09001680 cur_subseq = INT_MIN;
Mark Brownb22ead22009-06-07 12:51:26 +01001681 cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001682 cur_dapm = NULL;
Mark Brownb22ead22009-06-07 12:51:26 +01001683 }
1684
Mark Brown163cac02009-06-07 10:12:52 +01001685 switch (w->id) {
1686 case snd_soc_dapm_pre:
1687 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001688 list_for_each_entry_safe_continue(w, n, list,
1689 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001690
Mark Brownb22ead22009-06-07 12:51:26 +01001691 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001692 ret = w->event(w,
1693 NULL, SND_SOC_DAPM_PRE_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001694 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001695 ret = w->event(w,
1696 NULL, SND_SOC_DAPM_PRE_PMD);
Mark Brown163cac02009-06-07 10:12:52 +01001697 break;
1698
1699 case snd_soc_dapm_post:
1700 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001701 list_for_each_entry_safe_continue(w, n, list,
1702 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001703
Mark Brownb22ead22009-06-07 12:51:26 +01001704 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001705 ret = w->event(w,
1706 NULL, SND_SOC_DAPM_POST_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001707 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001708 ret = w->event(w,
1709 NULL, SND_SOC_DAPM_POST_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001710 break;
1711
Mark Brown163cac02009-06-07 10:12:52 +01001712 default:
Mark Brown81628102009-06-07 13:21:24 +01001713 /* Queue it up for application */
1714 cur_sort = sort[w->id];
Mark Brown20e48592011-01-15 13:40:50 +00001715 cur_subseq = w->subseq;
Mark Brown81628102009-06-07 13:21:24 +01001716 cur_reg = w->reg;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001717 cur_dapm = w->dapm;
Mark Brown81628102009-06-07 13:21:24 +01001718 list_move(&w->power_list, &pending);
1719 break;
Mark Brown163cac02009-06-07 10:12:52 +01001720 }
Mark Brownb22ead22009-06-07 12:51:26 +01001721
1722 if (ret < 0)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001723 dev_err(w->dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001724 "ASoC: Failed to apply widget power: %d\n", ret);
Mark Brown163cac02009-06-07 10:12:52 +01001725 }
Mark Brownb22ead22009-06-07 12:51:26 +01001726
1727 if (!list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001728 dapm_seq_run_coalesced(card, &pending);
Mark Brown474b62d2011-01-18 16:14:44 +00001729
Kuninori Morimoto9d415fb2019-07-26 13:51:35 +09001730 if (cur_dapm && cur_dapm->component) {
Mark Brown474b62d2011-01-18 16:14:44 +00001731 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1732 if (sort[i] == cur_sort)
Kuninori Morimoto9d415fb2019-07-26 13:51:35 +09001733 snd_soc_component_seq_notifier(
1734 cur_dapm->component,
1735 i, cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001736 }
Mark Browneb270e92013-10-09 13:52:52 +01001737
Kuninori Morimotodf817f82020-03-09 13:08:16 +09001738 for_each_card_dapms(card, d)
Mark Browneb270e92013-10-09 13:52:52 +01001739 soc_dapm_async_complete(d);
Mark Brown163cac02009-06-07 10:12:52 +01001740}
1741
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001742static void dapm_widget_update(struct snd_soc_card *card)
Mark Brown97404f22010-12-14 16:13:57 +00001743{
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001744 struct snd_soc_dapm_update *update = card->update;
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001745 struct snd_soc_dapm_widget_list *wlist;
1746 struct snd_soc_dapm_widget *w = NULL;
1747 unsigned int wi;
Mark Brown97404f22010-12-14 16:13:57 +00001748 int ret;
1749
Lars-Peter Clausen57295072013-08-05 11:27:31 +02001750 if (!update || !dapm_kcontrol_is_powered(update->kcontrol))
Mark Brown97404f22010-12-14 16:13:57 +00001751 return;
1752
Lars-Peter Clausene84357f2013-07-29 17:13:58 +02001753 wlist = dapm_kcontrol_get_wlist(update->kcontrol);
Mark Brown97404f22010-12-14 16:13:57 +00001754
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001755 for_each_dapm_widgets(wlist, wi, w) {
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001756 if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1757 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1758 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001759 dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001760 w->name, ret);
1761 }
Mark Brown97404f22010-12-14 16:13:57 +00001762 }
1763
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001764 if (!w)
1765 return;
1766
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001767 ret = soc_dapm_update_bits(w->dapm, update->reg, update->mask,
1768 update->val);
Mark Brown97404f22010-12-14 16:13:57 +00001769 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001770 dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001771 w->name, ret);
Mark Brown97404f22010-12-14 16:13:57 +00001772
Chen-Yu Tsaie411b0b2016-11-02 15:35:58 +08001773 if (update->has_second_set) {
1774 ret = soc_dapm_update_bits(w->dapm, update->reg2,
1775 update->mask2, update->val2);
1776 if (ret < 0)
1777 dev_err(w->dapm->dev,
1778 "ASoC: %s DAPM update failed: %d\n",
1779 w->name, ret);
1780 }
1781
Kuninori Morimoto09e88f82020-02-10 12:14:22 +09001782 for_each_dapm_widgets(wlist, wi, w) {
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001783 if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1784 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1785 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001786 dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001787 w->name, ret);
1788 }
Mark Brown97404f22010-12-14 16:13:57 +00001789 }
1790}
1791
Mark Brown9d0624a2011-02-18 11:49:43 -08001792/* Async callback run prior to DAPM sequences - brings to _PREPARE if
1793 * they're changing state.
1794 */
1795static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1796{
1797 struct snd_soc_dapm_context *d = data;
1798 int ret;
Mark Brown97404f22010-12-14 16:13:57 +00001799
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001800 /* If we're off and we're not supposed to go into STANDBY */
Mark Brown56fba412011-06-04 11:25:10 +01001801 if (d->bias_level == SND_SOC_BIAS_OFF &&
1802 d->target_bias_level != SND_SOC_BIAS_OFF) {
Tzung-Bi Shih3aecfc72020-07-24 15:07:31 +08001803 if (d->dev && cookie)
Mark Brownf1aac482011-12-05 15:17:06 +00001804 pm_runtime_get_sync(d->dev);
1805
Mark Brown9d0624a2011-02-18 11:49:43 -08001806 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1807 if (ret != 0)
1808 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001809 "ASoC: Failed to turn on bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001810 }
1811
Lars-Peter Clausence85a4d2014-05-06 10:32:15 +02001812 /* Prepare for a transition to ON or away from ON */
1813 if ((d->target_bias_level == SND_SOC_BIAS_ON &&
1814 d->bias_level != SND_SOC_BIAS_ON) ||
1815 (d->target_bias_level != SND_SOC_BIAS_ON &&
1816 d->bias_level == SND_SOC_BIAS_ON)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001817 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1818 if (ret != 0)
1819 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001820 "ASoC: Failed to prepare bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001821 }
1822}
1823
1824/* Async callback run prior to DAPM sequences - brings to their final
1825 * state.
1826 */
1827static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1828{
1829 struct snd_soc_dapm_context *d = data;
1830 int ret;
1831
1832 /* If we just powered the last thing off drop to standby bias */
Mark Brown56fba412011-06-04 11:25:10 +01001833 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1834 (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1835 d->target_bias_level == SND_SOC_BIAS_OFF)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001836 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1837 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001838 dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001839 ret);
1840 }
1841
1842 /* If we're in standby and can support bias off then do that */
Mark Brown56fba412011-06-04 11:25:10 +01001843 if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1844 d->target_bias_level == SND_SOC_BIAS_OFF) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001845 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1846 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001847 dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n",
1848 ret);
Mark Brownf1aac482011-12-05 15:17:06 +00001849
Tzung-Bi Shih3aecfc72020-07-24 15:07:31 +08001850 if (d->dev && cookie)
Mark Brownfb644e92012-01-25 19:53:58 +00001851 pm_runtime_put(d->dev);
Mark Brown9d0624a2011-02-18 11:49:43 -08001852 }
1853
1854 /* If we just powered up then move to active bias */
Mark Brown56fba412011-06-04 11:25:10 +01001855 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1856 d->target_bias_level == SND_SOC_BIAS_ON) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001857 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1858 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001859 dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001860 ret);
1861 }
1862}
Mark Brown97404f22010-12-14 16:13:57 +00001863
Mark Brownfe4fda52011-10-03 22:36:57 +01001864static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1865 bool power, bool connect)
1866{
1867 /* If a connection is being made or broken then that update
1868 * will have marked the peer dirty, otherwise the widgets are
1869 * not connected and this update has no impact. */
1870 if (!connect)
1871 return;
1872
1873 /* If the peer is already in the state we're moving to then we
1874 * won't have an impact on it. */
1875 if (power != peer->power)
Mark Brown75c1f892011-10-04 22:28:08 +01001876 dapm_mark_dirty(peer, "peer state change");
Mark Brownfe4fda52011-10-03 22:36:57 +01001877}
1878
Mark Brown05623c42011-09-28 17:02:31 +01001879static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1880 struct list_head *up_list,
1881 struct list_head *down_list)
1882{
Mark Browndb432b42011-10-03 21:06:40 +01001883 struct snd_soc_dapm_path *path;
1884
Mark Brown05623c42011-09-28 17:02:31 +01001885 if (w->power == power)
1886 return;
1887
1888 trace_snd_soc_dapm_widget_power(w, power);
1889
Mark Browndb432b42011-10-03 21:06:40 +01001890 /* If we changed our power state perhaps our neigbours changed
Mark Brownfe4fda52011-10-03 22:36:57 +01001891 * also.
Mark Browndb432b42011-10-03 21:06:40 +01001892 */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001893 snd_soc_dapm_widget_for_each_source_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001894 dapm_widget_set_peer_power(path->source, power, path->connect);
1895
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02001896 /* Supplies can't affect their outputs, only their inputs */
1897 if (!w->is_supply) {
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001898 snd_soc_dapm_widget_for_each_sink_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001899 dapm_widget_set_peer_power(path->sink, power,
1900 path->connect);
Mark Browndb432b42011-10-03 21:06:40 +01001901 }
1902
Mark Brown05623c42011-09-28 17:02:31 +01001903 if (power)
1904 dapm_seq_insert(w, up_list, true);
1905 else
1906 dapm_seq_insert(w, down_list, false);
Mark Brown05623c42011-09-28 17:02:31 +01001907}
1908
Mark Brown7c81beb2011-09-20 22:22:32 +01001909static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1910 struct list_head *up_list,
1911 struct list_head *down_list)
1912{
Mark Brown7c81beb2011-09-20 22:22:32 +01001913 int power;
1914
1915 switch (w->id) {
1916 case snd_soc_dapm_pre:
1917 dapm_seq_insert(w, down_list, false);
1918 break;
1919 case snd_soc_dapm_post:
1920 dapm_seq_insert(w, up_list, true);
1921 break;
1922
1923 default:
Mark Brownd805002b2011-09-28 18:28:23 +01001924 power = dapm_widget_power_check(w);
Mark Brown7c81beb2011-09-20 22:22:32 +01001925
Mark Brown05623c42011-09-28 17:02:31 +01001926 dapm_widget_set_power(w, power, up_list, down_list);
Mark Brown7c81beb2011-09-20 22:22:32 +01001927 break;
1928 }
1929}
1930
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001931static bool dapm_idle_bias_off(struct snd_soc_dapm_context *dapm)
1932{
1933 if (dapm->idle_bias_off)
1934 return true;
1935
1936 switch (snd_power_get_state(dapm->card->snd_card)) {
1937 case SNDRV_CTL_POWER_D3hot:
1938 case SNDRV_CTL_POWER_D3cold:
1939 return dapm->suspend_bias_off;
1940 default:
1941 break;
1942 }
1943
1944 return false;
1945}
1946
Mark Brown42aa3412009-03-01 19:21:10 +00001947/*
Richard Purdie2b97eab2006-10-06 18:32:18 +02001948 * Scan each dapm widget for complete audio path.
1949 * A complete path is a route that has valid endpoints i.e.:-
1950 *
1951 * o DAC to output pin.
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001952 * o Input pin to ADC.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001953 * o Input pin to Output pin (bypass, sidetone)
1954 * o DAC to ADC (loopback).
1955 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001956static int dapm_power_widgets(struct snd_soc_card *card, int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001957{
1958 struct snd_soc_dapm_widget *w;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001959 struct snd_soc_dapm_context *d;
Mark Brown291f3bb2009-06-07 13:57:17 +01001960 LIST_HEAD(up_list);
1961 LIST_HEAD(down_list);
Dan Williams2955b472012-07-09 19:33:25 -07001962 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Mark Brown56fba412011-06-04 11:25:10 +01001963 enum snd_soc_bias_level bias;
Kuninori Morimoto8e2a9902019-07-26 13:51:39 +09001964 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001965
Mark Brownf9fa2b12014-03-06 16:49:11 +08001966 lockdep_assert_held(&card->dapm_mutex);
1967
Mark Brown84e90932010-11-04 00:07:02 -04001968 trace_snd_soc_dapm_start(card);
1969
Kuninori Morimotodf817f82020-03-09 13:08:16 +09001970 for_each_card_dapms(card, d) {
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001971 if (dapm_idle_bias_off(d))
Mark Brown497098be2012-03-08 15:06:09 +00001972 d->target_bias_level = SND_SOC_BIAS_OFF;
1973 else
1974 d->target_bias_level = SND_SOC_BIAS_STANDBY;
Mark Brown56fba412011-06-04 11:25:10 +01001975 }
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001976
Liam Girdwood6c120e12012-02-15 15:15:34 +00001977 dapm_reset(card);
Mark Brown9b8a83b2011-10-04 22:15:59 +01001978
Mark Brown6d3ddc82009-05-16 17:47:29 +01001979 /* Check which widgets we need to power and store them in
Mark Browndb432b42011-10-03 21:06:40 +01001980 * lists indicating if they should be powered up or down. We
1981 * only check widgets that have been flagged as dirty but note
1982 * that new widgets may be added to the dirty list while we
1983 * iterate.
Mark Brown6d3ddc82009-05-16 17:47:29 +01001984 */
Mark Browndb432b42011-10-03 21:06:40 +01001985 list_for_each_entry(w, &card->dapm_dirty, dirty) {
Mark Brown7c81beb2011-09-20 22:22:32 +01001986 dapm_power_one_widget(w, &up_list, &down_list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001987 }
1988
Kuninori Morimoto14596692020-03-09 13:08:21 +09001989 for_each_card_widgets(card, w) {
Mark Brown0ff97eb2012-07-20 17:29:34 +01001990 switch (w->id) {
1991 case snd_soc_dapm_pre:
1992 case snd_soc_dapm_post:
1993 /* These widgets always need to be powered */
1994 break;
1995 default:
1996 list_del_init(&w->dirty);
1997 break;
1998 }
Mark Browndb432b42011-10-03 21:06:40 +01001999
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02002000 if (w->new_power) {
Mark Brownf9de6d72011-09-28 17:19:47 +01002001 d = w->dapm;
2002
2003 /* Supplies and micbiases only bring the
2004 * context up to STANDBY as unless something
2005 * else is active and passing audio they
Mark Brownafe62362012-01-25 19:55:22 +00002006 * generally don't require full power. Signal
2007 * generators are virtual pins and have no
2008 * power impact themselves.
Mark Brownf9de6d72011-09-28 17:19:47 +01002009 */
2010 switch (w->id) {
Mark Brownafe62362012-01-25 19:55:22 +00002011 case snd_soc_dapm_siggen:
Lars-Peter Clausenda83fea2013-10-05 19:26:17 +02002012 case snd_soc_dapm_vmid:
Mark Brownafe62362012-01-25 19:55:22 +00002013 break;
Mark Brownf9de6d72011-09-28 17:19:47 +01002014 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002015 case snd_soc_dapm_regulator_supply:
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +00002016 case snd_soc_dapm_pinctrl:
Ola Liljad7e7eb92012-05-24 15:26:25 +02002017 case snd_soc_dapm_clock_supply:
Mark Brownf9de6d72011-09-28 17:19:47 +01002018 case snd_soc_dapm_micbias:
2019 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
2020 d->target_bias_level = SND_SOC_BIAS_STANDBY;
2021 break;
2022 default:
2023 d->target_bias_level = SND_SOC_BIAS_ON;
2024 break;
2025 }
2026 }
2027
2028 }
2029
Mark Brown85a843c2011-09-21 21:29:47 +01002030 /* Force all contexts in the card to the same bias state if
2031 * they're not ground referenced.
2032 */
Mark Brown56fba412011-06-04 11:25:10 +01002033 bias = SND_SOC_BIAS_OFF;
Kuninori Morimotodf817f82020-03-09 13:08:16 +09002034 for_each_card_dapms(card, d)
Mark Brown56fba412011-06-04 11:25:10 +01002035 if (d->target_bias_level > bias)
2036 bias = d->target_bias_level;
Kuninori Morimotodf817f82020-03-09 13:08:16 +09002037 for_each_card_dapms(card, d)
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02002038 if (!dapm_idle_bias_off(d))
Mark Brown85a843c2011-09-21 21:29:47 +01002039 d->target_bias_level = bias;
Mark Brown52ba67b2011-04-04 21:05:11 +09002040
Mark Brownde02d072011-09-20 21:43:24 +01002041 trace_snd_soc_dapm_walk_done(card);
Mark Brown52ba67b2011-04-04 21:05:11 +09002042
Xiang Xiao17282ba2014-03-02 00:04:03 +08002043 /* Run card bias changes at first */
2044 dapm_pre_sequence_async(&card->dapm, 0);
2045 /* Run other bias changes in parallel */
Kuninori Morimotodf817f82020-03-09 13:08:16 +09002046 for_each_card_dapms(card, d) {
Jon Huntere03546d2018-08-17 16:35:43 +01002047 if (d != &card->dapm && d->bias_level != d->target_bias_level)
Xiang Xiao17282ba2014-03-02 00:04:03 +08002048 async_schedule_domain(dapm_pre_sequence_async, d,
2049 &async_domain);
2050 }
Mark Brown9d0624a2011-02-18 11:49:43 -08002051 async_synchronize_full_domain(&async_domain);
Mark Brown452c5ea2009-05-17 21:41:23 +01002052
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02002053 list_for_each_entry(w, &down_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002054 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD);
Mark Brown80114122013-02-25 15:14:19 +00002055 }
2056
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02002057 list_for_each_entry(w, &up_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002058 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU);
Mark Brown80114122013-02-25 15:14:19 +00002059 }
2060
Mark Brown6d3ddc82009-05-16 17:47:29 +01002061 /* Power down widgets first; try to avoid amplifying pops. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002062 dapm_seq_run(card, &down_list, event, false);
Mark Brown6d3ddc82009-05-16 17:47:29 +01002063
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002064 dapm_widget_update(card);
Mark Brown97404f22010-12-14 16:13:57 +00002065
Mark Brown6d3ddc82009-05-16 17:47:29 +01002066 /* Now power up. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002067 dapm_seq_run(card, &up_list, event, true);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002068
Mark Brown9d0624a2011-02-18 11:49:43 -08002069 /* Run all the bias changes in parallel */
Kuninori Morimotodf817f82020-03-09 13:08:16 +09002070 for_each_card_dapms(card, d) {
Jon Huntere03546d2018-08-17 16:35:43 +01002071 if (d != &card->dapm && d->bias_level != d->target_bias_level)
Xiang Xiao17282ba2014-03-02 00:04:03 +08002072 async_schedule_domain(dapm_post_sequence_async, d,
2073 &async_domain);
2074 }
Mark Brown9d0624a2011-02-18 11:49:43 -08002075 async_synchronize_full_domain(&async_domain);
Xiang Xiao17282ba2014-03-02 00:04:03 +08002076 /* Run card bias changes at last */
2077 dapm_post_sequence_async(&card->dapm, 0);
Mark Brown452c5ea2009-05-17 21:41:23 +01002078
Liam Girdwood8078d872012-02-15 15:15:35 +00002079 /* do we need to notify any clients that DAPM event is complete */
Kuninori Morimotodf817f82020-03-09 13:08:16 +09002080 for_each_card_dapms(card, d) {
Kuninori Morimoto8e2a9902019-07-26 13:51:39 +09002081 if (!d->component)
2082 continue;
2083
2084 ret = snd_soc_component_stream_event(d->component, event);
2085 if (ret < 0)
2086 return ret;
Liam Girdwood8078d872012-02-15 15:15:35 +00002087 }
2088
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002089 pop_dbg(card->dev, card->pop_time,
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02002090 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
Jarkko Nikula3a45b862010-11-05 20:35:21 +02002091 pop_wait(card->pop_time);
Mark Browncb507e72009-07-08 18:54:57 +01002092
Mark Brown84e90932010-11-04 00:07:02 -04002093 trace_snd_soc_dapm_done(card);
2094
Mark Brown42aa3412009-03-01 19:21:10 +00002095 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002096}
2097
Mark Brown79fb9382009-08-21 16:38:13 +01002098#ifdef CONFIG_DEBUG_FS
Mark Brown79fb9382009-08-21 16:38:13 +01002099static ssize_t dapm_widget_power_read_file(struct file *file,
2100 char __user *user_buf,
2101 size_t count, loff_t *ppos)
2102{
2103 struct snd_soc_dapm_widget *w = file->private_data;
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002104 struct snd_soc_card *card = w->dapm->card;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002105 enum snd_soc_dapm_direction dir, rdir;
Mark Brown79fb9382009-08-21 16:38:13 +01002106 char *buf;
2107 int in, out;
2108 ssize_t ret;
2109 struct snd_soc_dapm_path *p = NULL;
2110
2111 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
2112 if (!buf)
2113 return -ENOMEM;
2114
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002115 mutex_lock(&card->dapm_mutex);
2116
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02002117 /* Supply widgets are not handled by is_connected_{input,output}_ep() */
2118 if (w->is_supply) {
2119 in = 0;
2120 out = 0;
2121 } else {
Piotr Stankiewicz67420642016-05-13 17:03:55 +01002122 in = is_connected_input_ep(w, NULL, NULL);
2123 out = is_connected_output_ep(w, NULL, NULL);
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02002124 }
Mark Brown79fb9382009-08-21 16:38:13 +01002125
Silvio Cesaree581e152019-01-12 16:28:43 +01002126 ret = scnprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
Mark Brownf13ebad2012-03-03 18:01:01 +00002127 w->name, w->power ? "On" : "Off",
2128 w->force ? " (forced)" : "", in, out);
Mark Brown79fb9382009-08-21 16:38:13 +01002129
Mark Brownd033c362009-12-04 15:25:56 +00002130 if (w->reg >= 0)
Silvio Cesaree581e152019-01-12 16:28:43 +01002131 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02002132 " - R%d(0x%x) mask 0x%x",
2133 w->reg, w->reg, w->mask << w->shift);
Mark Brownd033c362009-12-04 15:25:56 +00002134
Silvio Cesaree581e152019-01-12 16:28:43 +01002135 ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n");
Mark Brownd033c362009-12-04 15:25:56 +00002136
Mark Brown3eef08b2009-09-14 16:49:00 +01002137 if (w->sname)
Silvio Cesaree581e152019-01-12 16:28:43 +01002138 ret += scnprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
Mark Brown3eef08b2009-09-14 16:49:00 +01002139 w->sname,
2140 w->active ? "active" : "inactive");
Mark Brown79fb9382009-08-21 16:38:13 +01002141
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002142 snd_soc_dapm_for_each_direction(dir) {
2143 rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
2144 snd_soc_dapm_widget_for_each_path(w, dir, p) {
KaiChieh Chuang28735af2018-02-05 13:00:00 +08002145 if (p->connected && !p->connected(p->source, p->sink))
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002146 continue;
Mark Brown215edda2009-09-08 18:59:05 +01002147
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002148 if (!p->connect)
2149 continue;
Mark Brown215edda2009-09-08 18:59:05 +01002150
Silvio Cesaree581e152019-01-12 16:28:43 +01002151 ret += scnprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002152 " %s \"%s\" \"%s\"\n",
2153 (rdir == SND_SOC_DAPM_DIR_IN) ? "in" : "out",
Mark Brown79fb9382009-08-21 16:38:13 +01002154 p->name ? p->name : "static",
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002155 p->node[rdir]->name);
2156 }
Mark Brown79fb9382009-08-21 16:38:13 +01002157 }
2158
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002159 mutex_unlock(&card->dapm_mutex);
2160
Mark Brown79fb9382009-08-21 16:38:13 +01002161 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
2162
2163 kfree(buf);
2164 return ret;
2165}
2166
2167static const struct file_operations dapm_widget_power_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002168 .open = simple_open,
Mark Brown79fb9382009-08-21 16:38:13 +01002169 .read = dapm_widget_power_read_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002170 .llseek = default_llseek,
Mark Brown79fb9382009-08-21 16:38:13 +01002171};
2172
Mark Brownef49e4f2011-04-04 20:48:13 +09002173static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
2174 size_t count, loff_t *ppos)
2175{
2176 struct snd_soc_dapm_context *dapm = file->private_data;
2177 char *level;
2178
2179 switch (dapm->bias_level) {
2180 case SND_SOC_BIAS_ON:
2181 level = "On\n";
2182 break;
2183 case SND_SOC_BIAS_PREPARE:
2184 level = "Prepare\n";
2185 break;
2186 case SND_SOC_BIAS_STANDBY:
2187 level = "Standby\n";
2188 break;
2189 case SND_SOC_BIAS_OFF:
2190 level = "Off\n";
2191 break;
2192 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01002193 WARN(1, "Unknown bias_level %d\n", dapm->bias_level);
Mark Brownef49e4f2011-04-04 20:48:13 +09002194 level = "Unknown\n";
2195 break;
2196 }
2197
2198 return simple_read_from_buffer(user_buf, count, ppos, level,
2199 strlen(level));
2200}
2201
2202static const struct file_operations dapm_bias_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002203 .open = simple_open,
Mark Brownef49e4f2011-04-04 20:48:13 +09002204 .read = dapm_bias_read_file,
2205 .llseek = default_llseek,
2206};
2207
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002208void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2209 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002210{
Mark Brownceaea852019-06-21 12:33:57 +01002211 if (!parent || IS_ERR(parent))
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02002212 return;
2213
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002214 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
2215
Greg Kroah-Hartmanfee531d2019-07-31 15:17:15 +02002216 debugfs_create_file("bias_level", 0444, dapm->debugfs_dapm, dapm,
2217 &dapm_bias_fops);
Mark Brown79fb9382009-08-21 16:38:13 +01002218}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002219
2220static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2221{
2222 struct snd_soc_dapm_context *dapm = w->dapm;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002223
2224 if (!dapm->debugfs_dapm || !w->name)
2225 return;
2226
Greg Kroah-Hartmanfee531d2019-07-31 15:17:15 +02002227 debugfs_create_file(w->name, 0444, dapm->debugfs_dapm, w,
2228 &dapm_widget_power_fops);
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002229}
2230
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002231static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2232{
2233 debugfs_remove_recursive(dapm->debugfs_dapm);
Kuninori Morimoto29040d12019-05-27 16:51:34 +09002234 dapm->debugfs_dapm = NULL;
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002235}
2236
Mark Brown79fb9382009-08-21 16:38:13 +01002237#else
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002238void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2239 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002240{
2241}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002242
2243static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2244{
2245}
2246
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002247static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2248{
2249}
2250
Mark Brown79fb9382009-08-21 16:38:13 +01002251#endif
2252
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002253/*
2254 * soc_dapm_connect_path() - Connects or disconnects a path
2255 * @path: The path to update
2256 * @connect: The new connect state of the path. True if the path is connected,
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002257 * false if it is disconnected.
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002258 * @reason: The reason why the path changed (for debugging only)
2259 */
2260static void soc_dapm_connect_path(struct snd_soc_dapm_path *path,
2261 bool connect, const char *reason)
2262{
2263 if (path->connect == connect)
2264 return;
2265
2266 path->connect = connect;
2267 dapm_mark_dirty(path->source, reason);
2268 dapm_mark_dirty(path->sink, reason);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002269 dapm_path_invalidate(path);
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002270}
2271
Richard Purdie2b97eab2006-10-06 18:32:18 +02002272/* test and update the power status of a mux widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002273static int soc_dapm_mux_update_power(struct snd_soc_card *card,
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002274 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002275{
2276 struct snd_soc_dapm_path *path;
2277 int found = 0;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002278 bool connect;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002279
Mark Brownf9fa2b12014-03-06 16:49:11 +08002280 lockdep_assert_held(&card->dapm_mutex);
2281
Richard Purdie2b97eab2006-10-06 18:32:18 +02002282 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002283 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002284 found = 1;
2285 /* we now need to match the string in the enum to the path */
Jerome Brunetc3456a42019-05-15 15:18:55 +02002286 if (e && !(strcmp(path->name, e->texts[mux])))
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002287 connect = true;
2288 else
2289 connect = false;
2290
2291 soc_dapm_connect_path(path, connect, "mux update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002292 }
2293
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002294 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002295 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002296
Liam Girdwood618dae12012-04-25 12:12:51 +01002297 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002298}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002299
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002300int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002301 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e,
2302 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002303{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002304 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002305 int ret;
2306
Liam Girdwood3cd04342012-03-09 12:02:08 +00002307 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002308 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002309 ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002310 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002311 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002312 if (ret > 0)
Guennadi Liakhovetskif17a1472020-03-12 10:52:14 +01002313 snd_soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002314 return ret;
2315}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002316EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002317
Milan plzik1b075e32008-01-10 14:39:46 +01002318/* test and update the power status of a mixer or switch widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002319static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08002320 struct snd_kcontrol *kcontrol,
2321 int connect, int rconnect)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002322{
2323 struct snd_soc_dapm_path *path;
2324 int found = 0;
2325
Mark Brownf9fa2b12014-03-06 16:49:11 +08002326 lockdep_assert_held(&card->dapm_mutex);
2327
Richard Purdie2b97eab2006-10-06 18:32:18 +02002328 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002329 dapm_kcontrol_for_each_path(path, kcontrol) {
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08002330 /*
2331 * Ideally this function should support any number of
2332 * paths and channels. But since kcontrols only come
2333 * in mono and stereo variants, we are limited to 2
2334 * channels.
2335 *
2336 * The following code assumes for stereo controls the
2337 * first path (when 'found == 0') is the left channel,
2338 * and all remaining paths (when 'found == 1') are the
2339 * right channel.
2340 *
2341 * A stereo control is signified by a valid 'rconnect'
2342 * value, either 0 for unconnected, or >= 0 for connected.
2343 * This is chosen instead of using snd_soc_volsw_is_stereo,
2344 * so that the behavior of snd_soc_dapm_mixer_update_power
2345 * doesn't change even when the kcontrol passed in is
2346 * stereo.
2347 *
2348 * It passes 'connect' as the path connect status for
2349 * the left channel, and 'rconnect' for the right
2350 * channel.
2351 */
2352 if (found && rconnect >= 0)
2353 soc_dapm_connect_path(path, rconnect, "mixer update");
2354 else
2355 soc_dapm_connect_path(path, connect, "mixer update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002356 found = 1;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002357 }
2358
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002359 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002360 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002361
Liam Girdwood618dae12012-04-25 12:12:51 +01002362 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002363}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002364
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002365int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002366 struct snd_kcontrol *kcontrol, int connect,
2367 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002368{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002369 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002370 int ret;
2371
Liam Girdwood3cd04342012-03-09 12:02:08 +00002372 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002373 card->update = update;
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08002374 ret = soc_dapm_mixer_update_power(card, kcontrol, connect, -1);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002375 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002376 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002377 if (ret > 0)
Guennadi Liakhovetskif17a1472020-03-12 10:52:14 +01002378 snd_soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002379 return ret;
2380}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002381EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002382
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002383static ssize_t dapm_widget_show_component(struct snd_soc_component *cmpnt,
2384 char *buf)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002385{
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002386 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(cmpnt);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002387 struct snd_soc_dapm_widget *w;
2388 int count = 0;
2389 char *state = "not set";
2390
Mark Brown47325072016-03-18 12:04:23 +00002391 /* card won't be set for the dummy component, as a spot fix
2392 * we're checking for that case specifically here but in future
2393 * we will ensure that the dummy component looks like others.
2394 */
2395 if (!cmpnt->card)
2396 return 0;
2397
Kuninori Morimoto14596692020-03-09 13:08:21 +09002398 for_each_card_widgets(cmpnt->card, w) {
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002399 if (w->dapm != dapm)
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002400 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002401
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002402 /* only display widgets that burn power */
Richard Purdie2b97eab2006-10-06 18:32:18 +02002403 switch (w->id) {
2404 case snd_soc_dapm_hp:
2405 case snd_soc_dapm_mic:
2406 case snd_soc_dapm_spk:
2407 case snd_soc_dapm_line:
2408 case snd_soc_dapm_micbias:
2409 case snd_soc_dapm_dac:
2410 case snd_soc_dapm_adc:
2411 case snd_soc_dapm_pga:
Seppo Ingalsuo882c8b4a2019-04-30 18:11:34 -05002412 case snd_soc_dapm_effect:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002413 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002414 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002415 case snd_soc_dapm_mixer_named_ctl:
Mark Brown246d0a12009-04-22 18:24:55 +01002416 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002417 case snd_soc_dapm_regulator_supply:
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +00002418 case snd_soc_dapm_pinctrl:
Ola Liljad7e7eb92012-05-24 15:26:25 +02002419 case snd_soc_dapm_clock_supply:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002420 if (w->name)
2421 count += sprintf(buf + count, "%s: %s\n",
2422 w->name, w->power ? "On":"Off");
2423 break;
2424 default:
2425 break;
2426 }
2427 }
2428
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002429 switch (snd_soc_dapm_get_bias_level(dapm)) {
Mark Brown0be98982008-05-19 12:31:28 +02002430 case SND_SOC_BIAS_ON:
2431 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002432 break;
Mark Brown0be98982008-05-19 12:31:28 +02002433 case SND_SOC_BIAS_PREPARE:
2434 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002435 break;
Mark Brown0be98982008-05-19 12:31:28 +02002436 case SND_SOC_BIAS_STANDBY:
2437 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002438 break;
Mark Brown0be98982008-05-19 12:31:28 +02002439 case SND_SOC_BIAS_OFF:
2440 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002441 break;
2442 }
2443 count += sprintf(buf + count, "PM State: %s\n", state);
2444
2445 return count;
2446}
2447
Benoit Cousson44ba2642014-07-08 23:19:36 +02002448/* show dapm widget status in sys fs */
2449static ssize_t dapm_widget_show(struct device *dev,
2450 struct device_attribute *attr, char *buf)
2451{
2452 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
Kuninori Morimoto0b7990e2018-09-03 02:12:56 +00002453 struct snd_soc_dai *codec_dai;
Benoit Cousson44ba2642014-07-08 23:19:36 +02002454 int i, count = 0;
2455
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002456 mutex_lock(&rtd->card->dapm_mutex);
2457
Kuninori Morimotoa4be4182020-03-09 13:08:04 +09002458 for_each_rtd_codec_dais(rtd, i, codec_dai) {
Kuninori Morimoto0b7990e2018-09-03 02:12:56 +00002459 struct snd_soc_component *cmpnt = codec_dai->component;
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002460
2461 count += dapm_widget_show_component(cmpnt, buf + count);
Benoit Cousson44ba2642014-07-08 23:19:36 +02002462 }
2463
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002464 mutex_unlock(&rtd->card->dapm_mutex);
2465
Benoit Cousson44ba2642014-07-08 23:19:36 +02002466 return count;
2467}
2468
Joe Perchesc828a892017-12-19 10:15:08 -08002469static DEVICE_ATTR_RO(dapm_widget);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002470
Takashi Iwaid29697d2015-01-30 20:16:37 +01002471struct attribute *soc_dapm_dev_attrs[] = {
2472 &dev_attr_dapm_widget.attr,
2473 NULL
2474};
Richard Purdie2b97eab2006-10-06 18:32:18 +02002475
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002476static void dapm_free_path(struct snd_soc_dapm_path *path)
2477{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002478 list_del(&path->list_node[SND_SOC_DAPM_DIR_IN]);
2479 list_del(&path->list_node[SND_SOC_DAPM_DIR_OUT]);
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002480 list_del(&path->list_kcontrol);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002481 list_del(&path->list);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002482 kfree(path);
2483}
2484
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002485void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
2486{
2487 struct snd_soc_dapm_path *p, *next_p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002488 enum snd_soc_dapm_direction dir;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002489
2490 list_del(&w->list);
Thomas Hebb5c6679b2020-12-12 17:20:12 -08002491 list_del(&w->dirty);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002492 /*
2493 * remove source and sink paths associated to this widget.
2494 * While removing the path, remove reference to it from both
2495 * source and sink widgets so that path is removed only once.
2496 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002497 snd_soc_dapm_for_each_direction(dir) {
2498 snd_soc_dapm_widget_for_each_path_safe(w, dir, p, next_p)
2499 dapm_free_path(p);
2500 }
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002501
2502 kfree(w->kcontrols);
Lars-Peter Clausen48068962015-07-21 18:11:08 +02002503 kfree_const(w->name);
Pierre-Louis Bossart199ed3e2019-02-01 11:05:12 -06002504 kfree_const(w->sname);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002505 kfree(w);
2506}
2507
Jyri Sarhafd589a12015-11-10 18:12:42 +02002508void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context *dapm)
2509{
2510 dapm->path_sink_cache.widget = NULL;
2511 dapm->path_source_cache.widget = NULL;
2512}
2513
Richard Purdie2b97eab2006-10-06 18:32:18 +02002514/* free all dapm widgets and resources */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002515static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002516{
2517 struct snd_soc_dapm_widget *w, *next_w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002518
Kuninori Morimoto14596692020-03-09 13:08:21 +09002519 for_each_card_widgets_safe(dapm->card, w, next_w) {
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002520 if (w->dapm != dapm)
2521 continue;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002522 snd_soc_dapm_free_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002523 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002524 snd_soc_dapm_reset_cache(dapm);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002525}
2526
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002527static struct snd_soc_dapm_widget *dapm_find_widget(
2528 struct snd_soc_dapm_context *dapm, const char *pin,
2529 bool search_other_contexts)
2530{
2531 struct snd_soc_dapm_widget *w;
2532 struct snd_soc_dapm_widget *fallback = NULL;
Shuming Fanae4fc532021-02-08 17:40:42 -06002533 char prefixed_pin[80];
2534 const char *pin_name;
2535 const char *prefix = soc_dapm_prefix(dapm);
2536
2537 if (prefix) {
2538 snprintf(prefixed_pin, sizeof(prefixed_pin), "%s %s",
2539 prefix, pin);
2540 pin_name = prefixed_pin;
2541 } else {
2542 pin_name = pin;
2543 }
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002544
Kuninori Morimoto14596692020-03-09 13:08:21 +09002545 for_each_card_widgets(dapm->card, w) {
Shuming Fanae4fc532021-02-08 17:40:42 -06002546 if (!strcmp(w->name, pin_name)) {
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002547 if (w->dapm == dapm)
2548 return w;
2549 else
2550 fallback = w;
2551 }
2552 }
2553
2554 if (search_other_contexts)
2555 return fallback;
2556
2557 return NULL;
2558}
2559
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002560static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
Mark Brown16499232009-01-07 18:25:13 +00002561 const char *pin, int status)
Liam Girdwooda5302182008-07-07 13:35:17 +01002562{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002563 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Liam Girdwooda5302182008-07-07 13:35:17 +01002564
Mark Brownf9fa2b12014-03-06 16:49:11 +08002565 dapm_assert_locked(dapm);
2566
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002567 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002568 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002569 return -EINVAL;
Liam Girdwooda5302182008-07-07 13:35:17 +01002570 }
2571
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002572 if (w->connected != status) {
Mark Brown1a8b2d92012-02-16 11:50:07 -08002573 dapm_mark_dirty(w, "pin configuration");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002574 dapm_widget_invalidate_input_paths(w);
2575 dapm_widget_invalidate_output_paths(w);
2576 }
Mark Brown1a8b2d92012-02-16 11:50:07 -08002577
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002578 w->connected = status;
2579 if (status == 0)
2580 w->force = 0;
Mark Brown0d867332011-04-06 11:38:14 +09002581
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002582 return 0;
Liam Girdwooda5302182008-07-07 13:35:17 +01002583}
2584
Richard Purdie2b97eab2006-10-06 18:32:18 +02002585/**
Charles Keepax3eb29df2014-02-18 15:22:15 +00002586 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2587 * @dapm: DAPM context
2588 *
2589 * Walks all dapm audio paths and powers widgets according to their
2590 * stream or path usage.
2591 *
2592 * Requires external locking.
2593 *
2594 * Returns 0 for success.
2595 */
2596int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2597{
2598 /*
2599 * Suppress early reports (eg, jacks syncing their state) to avoid
2600 * silly DAPM runs during card startup.
2601 */
2602 if (!dapm->card || !dapm->card->instantiated)
2603 return 0;
2604
2605 return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2606}
2607EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2608
2609/**
Liam Girdwooda5302182008-07-07 13:35:17 +01002610 * snd_soc_dapm_sync - scan and power dapm paths
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002611 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02002612 *
2613 * Walks all dapm audio paths and powers widgets according to their
2614 * stream or path usage.
2615 *
2616 * Returns 0 for success.
2617 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002618int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002619{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002620 int ret;
2621
Liam Girdwood3cd04342012-03-09 12:02:08 +00002622 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Charles Keepax3eb29df2014-02-18 15:22:15 +00002623 ret = snd_soc_dapm_sync_unlocked(dapm);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002624 mutex_unlock(&dapm->card->dapm_mutex);
2625 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002626}
Liam Girdwooda5302182008-07-07 13:35:17 +01002627EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002628
Charles Keepax078a85f2019-01-31 13:30:18 +00002629static int dapm_update_dai_chan(struct snd_soc_dapm_path *p,
2630 struct snd_soc_dapm_widget *w,
2631 int channels)
2632{
2633 switch (w->id) {
2634 case snd_soc_dapm_aif_out:
2635 case snd_soc_dapm_aif_in:
2636 break;
2637 default:
2638 return 0;
2639 }
2640
2641 dev_dbg(w->dapm->dev, "%s DAI route %s -> %s\n",
2642 w->channel < channels ? "Connecting" : "Disconnecting",
2643 p->source->name, p->sink->name);
2644
2645 if (w->channel < channels)
2646 soc_dapm_connect_path(p, true, "dai update");
2647 else
2648 soc_dapm_connect_path(p, false, "dai update");
2649
2650 return 0;
2651}
2652
2653static int dapm_update_dai_unlocked(struct snd_pcm_substream *substream,
2654 struct snd_pcm_hw_params *params,
2655 struct snd_soc_dai *dai)
2656{
2657 int dir = substream->stream;
2658 int channels = params_channels(params);
2659 struct snd_soc_dapm_path *p;
2660 struct snd_soc_dapm_widget *w;
2661 int ret;
2662
Kuninori Morimoto0c01f6c2020-02-19 15:56:41 +09002663 w = snd_soc_dai_get_widget(dai, dir);
Charles Keepax078a85f2019-01-31 13:30:18 +00002664
Charles Keepaxcf17a5f2019-02-06 11:13:59 +00002665 if (!w)
2666 return 0;
2667
Charles Keepax078a85f2019-01-31 13:30:18 +00002668 dev_dbg(dai->dev, "Update DAI routes for %s %s\n", dai->name,
2669 dir == SNDRV_PCM_STREAM_PLAYBACK ? "playback" : "capture");
2670
2671 snd_soc_dapm_widget_for_each_sink_path(w, p) {
2672 ret = dapm_update_dai_chan(p, p->sink, channels);
2673 if (ret < 0)
2674 return ret;
2675 }
2676
2677 snd_soc_dapm_widget_for_each_source_path(w, p) {
2678 ret = dapm_update_dai_chan(p, p->source, channels);
2679 if (ret < 0)
2680 return ret;
2681 }
2682
2683 return 0;
2684}
2685
2686int snd_soc_dapm_update_dai(struct snd_pcm_substream *substream,
2687 struct snd_pcm_hw_params *params,
2688 struct snd_soc_dai *dai)
2689{
Kuninori Morimoto0ceef682020-07-20 10:17:39 +09002690 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Charles Keepax078a85f2019-01-31 13:30:18 +00002691 int ret;
2692
2693 mutex_lock_nested(&rtd->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2694 ret = dapm_update_dai_unlocked(substream, params, dai);
2695 mutex_unlock(&rtd->card->dapm_mutex);
2696
2697 return ret;
2698}
2699EXPORT_SYMBOL_GPL(snd_soc_dapm_update_dai);
2700
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002701/*
2702 * dapm_update_widget_flags() - Re-compute widget sink and source flags
2703 * @w: The widget for which to update the flags
2704 *
2705 * Some widgets have a dynamic category which depends on which neighbors they
2706 * are connected to. This function update the category for these widgets.
2707 *
2708 * This function must be called whenever a path is added or removed to a widget.
2709 */
2710static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w)
2711{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002712 enum snd_soc_dapm_direction dir;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002713 struct snd_soc_dapm_path *p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002714 unsigned int ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002715
2716 switch (w->id) {
2717 case snd_soc_dapm_input:
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002718 /* On a fully routed card an input is never a source */
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002719 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002720 return;
2721 ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002722 snd_soc_dapm_widget_for_each_source_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002723 if (p->source->id == snd_soc_dapm_micbias ||
2724 p->source->id == snd_soc_dapm_mic ||
2725 p->source->id == snd_soc_dapm_line ||
2726 p->source->id == snd_soc_dapm_output) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002727 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002728 break;
2729 }
2730 }
2731 break;
2732 case snd_soc_dapm_output:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002733 /* On a fully routed card a output is never a sink */
2734 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002735 return;
2736 ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002737 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002738 if (p->sink->id == snd_soc_dapm_spk ||
2739 p->sink->id == snd_soc_dapm_hp ||
2740 p->sink->id == snd_soc_dapm_line ||
2741 p->sink->id == snd_soc_dapm_input) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002742 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002743 break;
2744 }
2745 }
2746 break;
2747 case snd_soc_dapm_line:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002748 ep = 0;
2749 snd_soc_dapm_for_each_direction(dir) {
2750 if (!list_empty(&w->edges[dir]))
2751 ep |= SND_SOC_DAPM_DIR_TO_EP(dir);
2752 }
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002753 break;
2754 default:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002755 return;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002756 }
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002757
2758 w->is_ep = ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002759}
2760
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002761static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm,
2762 struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink,
2763 const char *control)
2764{
2765 bool dynamic_source = false;
2766 bool dynamic_sink = false;
2767
2768 if (!control)
2769 return 0;
2770
2771 switch (source->id) {
2772 case snd_soc_dapm_demux:
2773 dynamic_source = true;
2774 break;
2775 default:
2776 break;
2777 }
2778
2779 switch (sink->id) {
2780 case snd_soc_dapm_mux:
2781 case snd_soc_dapm_switch:
2782 case snd_soc_dapm_mixer:
2783 case snd_soc_dapm_mixer_named_ctl:
2784 dynamic_sink = true;
2785 break;
2786 default:
2787 break;
2788 }
2789
2790 if (dynamic_source && dynamic_sink) {
2791 dev_err(dapm->dev,
2792 "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2793 source->name, control, sink->name);
2794 return -EINVAL;
2795 } else if (!dynamic_source && !dynamic_sink) {
2796 dev_err(dapm->dev,
2797 "Control not supported for path %s -> [%s] -> %s\n",
2798 source->name, control, sink->name);
2799 return -EINVAL;
2800 }
2801
2802 return 0;
2803}
2804
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002805static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2806 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2807 const char *control,
2808 int (*connected)(struct snd_soc_dapm_widget *source,
2809 struct snd_soc_dapm_widget *sink))
Richard Purdie2b97eab2006-10-06 18:32:18 +02002810{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002811 struct snd_soc_dapm_widget *widgets[2];
2812 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002813 struct snd_soc_dapm_path *path;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002814 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002815
Lars-Peter Clausene409dfb2014-10-25 17:42:02 +02002816 if (wsink->is_supply && !wsource->is_supply) {
2817 dev_err(dapm->dev,
2818 "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2819 wsource->name, wsink->name);
2820 return -EINVAL;
2821 }
2822
2823 if (connected && !wsource->is_supply) {
2824 dev_err(dapm->dev,
2825 "connected() callback only supported for supply widgets (%s -> %s)\n",
2826 wsource->name, wsink->name);
2827 return -EINVAL;
2828 }
2829
2830 if (wsource->is_supply && control) {
2831 dev_err(dapm->dev,
2832 "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2833 wsource->name, control, wsink->name);
2834 return -EINVAL;
2835 }
2836
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002837 ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control);
2838 if (ret)
2839 return ret;
2840
Richard Purdie2b97eab2006-10-06 18:32:18 +02002841 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2842 if (!path)
2843 return -ENOMEM;
2844
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002845 path->node[SND_SOC_DAPM_DIR_IN] = wsource;
2846 path->node[SND_SOC_DAPM_DIR_OUT] = wsink;
2847 widgets[SND_SOC_DAPM_DIR_IN] = wsource;
2848 widgets[SND_SOC_DAPM_DIR_OUT] = wsink;
2849
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002850 path->connected = connected;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002851 INIT_LIST_HEAD(&path->list);
Mark Brown69c2d342013-08-13 00:20:36 +01002852 INIT_LIST_HEAD(&path->list_kcontrol);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002853
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02002854 if (wsource->is_supply || wsink->is_supply)
2855 path->is_supply = 1;
2856
Richard Purdie2b97eab2006-10-06 18:32:18 +02002857 /* connect static paths */
2858 if (control == NULL) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002859 path->connect = 1;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002860 } else {
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002861 switch (wsource->id) {
2862 case snd_soc_dapm_demux:
2863 ret = dapm_connect_mux(dapm, path, control, wsource);
2864 if (ret)
2865 goto err;
2866 break;
2867 default:
2868 break;
2869 }
2870
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002871 switch (wsink->id) {
2872 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002873 ret = dapm_connect_mux(dapm, path, control, wsink);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002874 if (ret != 0)
2875 goto err;
2876 break;
2877 case snd_soc_dapm_switch:
2878 case snd_soc_dapm_mixer:
2879 case snd_soc_dapm_mixer_named_ctl:
2880 ret = dapm_connect_mixer(dapm, path, control);
2881 if (ret != 0)
2882 goto err;
2883 break;
2884 default:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002885 break;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002886 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002887 }
2888
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002889 list_add(&path->list, &dapm->card->paths);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002890 snd_soc_dapm_for_each_direction(dir)
2891 list_add(&path->list_node[dir], &widgets[dir]->edges[dir]);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002892
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002893 snd_soc_dapm_for_each_direction(dir) {
2894 dapm_update_widget_flags(widgets[dir]);
2895 dapm_mark_dirty(widgets[dir], "Route added");
2896 }
Mark Brownfabd0382012-07-05 17:20:06 +01002897
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002898 if (dapm->card->instantiated && path->connect)
2899 dapm_path_invalidate(path);
2900
Richard Purdie2b97eab2006-10-06 18:32:18 +02002901 return 0;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002902err:
2903 kfree(path);
2904 return ret;
2905}
Richard Purdie2b97eab2006-10-06 18:32:18 +02002906
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002907static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002908 const struct snd_soc_dapm_route *route)
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002909{
2910 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2911 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2912 const char *sink;
2913 const char *source;
2914 char prefixed_sink[80];
2915 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002916 const char *prefix;
Zhiwei Jiang411db2a2019-01-31 19:30:05 +08002917 unsigned int sink_ref = 0;
2918 unsigned int source_ref = 0;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002919 int ret;
2920
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002921 prefix = soc_dapm_prefix(dapm);
2922 if (prefix) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002923 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002924 prefix, route->sink);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002925 sink = prefixed_sink;
2926 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002927 prefix, route->source);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002928 source = prefixed_source;
2929 } else {
2930 sink = route->sink;
2931 source = route->source;
2932 }
2933
Charles Keepax45a110a2015-05-11 13:50:30 +01002934 wsource = dapm_wcache_lookup(&dapm->path_source_cache, source);
2935 wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink);
2936
2937 if (wsink && wsource)
2938 goto skip_search;
2939
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002940 /*
2941 * find src and dest widgets over all widgets but favor a widget from
2942 * current DAPM context
2943 */
Kuninori Morimoto14596692020-03-09 13:08:21 +09002944 for_each_card_widgets(dapm->card, w) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002945 if (!wsink && !(strcmp(w->name, sink))) {
2946 wtsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002947 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002948 wsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002949 if (wsource)
2950 break;
2951 }
Zhiwei Jiang411db2a2019-01-31 19:30:05 +08002952 sink_ref++;
2953 if (sink_ref > 1)
2954 dev_warn(dapm->dev,
2955 "ASoC: sink widget %s overwritten\n",
2956 w->name);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002957 continue;
2958 }
2959 if (!wsource && !(strcmp(w->name, source))) {
2960 wtsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002961 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002962 wsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002963 if (wsink)
2964 break;
2965 }
Zhiwei Jiang411db2a2019-01-31 19:30:05 +08002966 source_ref++;
2967 if (source_ref > 1)
2968 dev_warn(dapm->dev,
2969 "ASoC: source widget %s overwritten\n",
2970 w->name);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002971 }
2972 }
2973 /* use widget from another DAPM context if not found from this */
2974 if (!wsink)
2975 wsink = wtsink;
2976 if (!wsource)
2977 wsource = wtsource;
2978
2979 if (wsource == NULL) {
2980 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2981 route->source);
2982 return -ENODEV;
2983 }
2984 if (wsink == NULL) {
2985 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2986 route->sink);
2987 return -ENODEV;
2988 }
2989
Charles Keepax45a110a2015-05-11 13:50:30 +01002990skip_search:
2991 dapm_wcache_update(&dapm->path_sink_cache, wsink);
2992 dapm_wcache_update(&dapm->path_source_cache, wsource);
2993
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002994 ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2995 route->connected);
2996 if (ret)
2997 goto err;
2998
2999 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003000err:
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003001 dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
Lars-Peter Clausen25536282013-07-29 17:14:02 +02003002 source, route->control, sink);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003003 return ret;
3004}
Mark Brown105f1c22008-05-13 14:52:19 +02003005
Mark Brownefcc3c62012-07-05 17:24:19 +01003006static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
3007 const struct snd_soc_dapm_route *route)
3008{
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003009 struct snd_soc_dapm_widget *wsource, *wsink;
Mark Brownefcc3c62012-07-05 17:24:19 +01003010 struct snd_soc_dapm_path *path, *p;
3011 const char *sink;
3012 const char *source;
3013 char prefixed_sink[80];
3014 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003015 const char *prefix;
Mark Brownefcc3c62012-07-05 17:24:19 +01003016
3017 if (route->control) {
3018 dev_err(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003019 "ASoC: Removal of routes with controls not supported\n");
Mark Brownefcc3c62012-07-05 17:24:19 +01003020 return -EINVAL;
3021 }
3022
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003023 prefix = soc_dapm_prefix(dapm);
3024 if (prefix) {
Mark Brownefcc3c62012-07-05 17:24:19 +01003025 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003026 prefix, route->sink);
Mark Brownefcc3c62012-07-05 17:24:19 +01003027 sink = prefixed_sink;
3028 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003029 prefix, route->source);
Mark Brownefcc3c62012-07-05 17:24:19 +01003030 source = prefixed_source;
3031 } else {
3032 sink = route->sink;
3033 source = route->source;
3034 }
3035
3036 path = NULL;
3037 list_for_each_entry(p, &dapm->card->paths, list) {
3038 if (strcmp(p->source->name, source) != 0)
3039 continue;
3040 if (strcmp(p->sink->name, sink) != 0)
3041 continue;
3042 path = p;
3043 break;
3044 }
3045
3046 if (path) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003047 wsource = path->source;
3048 wsink = path->sink;
3049
3050 dapm_mark_dirty(wsource, "Route removed");
3051 dapm_mark_dirty(wsink, "Route removed");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02003052 if (path->connect)
3053 dapm_path_invalidate(path);
Mark Brownefcc3c62012-07-05 17:24:19 +01003054
Lars-Peter Clausen88722932013-06-14 13:16:53 +02003055 dapm_free_path(path);
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003056
3057 /* Update any path related flags */
3058 dapm_update_widget_flags(wsource);
3059 dapm_update_widget_flags(wsink);
Mark Brownefcc3c62012-07-05 17:24:19 +01003060 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003061 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
Mark Brownefcc3c62012-07-05 17:24:19 +01003062 source, sink);
3063 }
3064
3065 return 0;
3066}
3067
Mark Brown105f1c22008-05-13 14:52:19 +02003068/**
Mark Brown105f1c22008-05-13 14:52:19 +02003069 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003070 * @dapm: DAPM context
Mark Brown105f1c22008-05-13 14:52:19 +02003071 * @route: audio routes
3072 * @num: number of routes
3073 *
3074 * Connects 2 dapm widgets together via a named audio path. The sink is
3075 * the widget receiving the audio signal, whilst the source is the sender
3076 * of the audio signal.
3077 *
3078 * Returns 0 for success else error. On error all resources can be freed
3079 * with a call to snd_soc_card_free().
3080 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003081int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
Mark Brown105f1c22008-05-13 14:52:19 +02003082 const struct snd_soc_dapm_route *route, int num)
3083{
Mark Brown62d4a4b2012-06-22 12:21:49 +01003084 int i, r, ret = 0;
Mark Brown105f1c22008-05-13 14:52:19 +02003085
Stuart Hendersonf19c1812017-09-21 11:02:12 +01003086 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown105f1c22008-05-13 14:52:19 +02003087 for (i = 0; i < num; i++) {
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02003088 r = snd_soc_dapm_add_route(dapm, route);
Mark Brown62d4a4b2012-06-22 12:21:49 +01003089 if (r < 0) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003090 dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
3091 route->source,
3092 route->control ? route->control : "direct",
3093 route->sink);
Mark Brown62d4a4b2012-06-22 12:21:49 +01003094 ret = r;
Mark Brown105f1c22008-05-13 14:52:19 +02003095 }
3096 route++;
3097 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003098 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown105f1c22008-05-13 14:52:19 +02003099
Dan Carpenter60884c22012-04-13 22:25:43 +03003100 return ret;
Mark Brown105f1c22008-05-13 14:52:19 +02003101}
3102EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
3103
Mark Brownefcc3c62012-07-05 17:24:19 +01003104/**
3105 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
3106 * @dapm: DAPM context
3107 * @route: audio routes
3108 * @num: number of routes
3109 *
3110 * Removes routes from the DAPM context.
3111 */
3112int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
3113 const struct snd_soc_dapm_route *route, int num)
3114{
Rajan Vajae066ea22016-02-11 11:23:35 +05303115 int i;
Mark Brownefcc3c62012-07-05 17:24:19 +01003116
Stuart Hendersonf19c1812017-09-21 11:02:12 +01003117 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownefcc3c62012-07-05 17:24:19 +01003118 for (i = 0; i < num; i++) {
3119 snd_soc_dapm_del_route(dapm, route);
3120 route++;
3121 }
3122 mutex_unlock(&dapm->card->dapm_mutex);
3123
Rajan Vajae066ea22016-02-11 11:23:35 +05303124 return 0;
Mark Brownefcc3c62012-07-05 17:24:19 +01003125}
3126EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
3127
Mark Brownbf3a9e12011-06-13 16:42:29 +01003128static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
3129 const struct snd_soc_dapm_route *route)
3130{
3131 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
3132 route->source,
3133 true);
3134 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
3135 route->sink,
3136 true);
3137 struct snd_soc_dapm_path *path;
3138 int count = 0;
3139
3140 if (!source) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003141 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01003142 route->source);
3143 return -ENODEV;
3144 }
3145
3146 if (!sink) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003147 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01003148 route->sink);
3149 return -ENODEV;
3150 }
3151
3152 if (route->control || route->connected)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003153 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01003154 route->source, route->sink);
3155
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02003156 snd_soc_dapm_widget_for_each_sink_path(source, path) {
Mark Brownbf3a9e12011-06-13 16:42:29 +01003157 if (path->sink == sink) {
3158 path->weak = 1;
3159 count++;
3160 }
3161 }
3162
3163 if (count == 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003164 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01003165 route->source, route->sink);
3166 if (count > 1)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003167 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01003168 count, route->source, route->sink);
3169
3170 return 0;
3171}
3172
3173/**
3174 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
3175 * @dapm: DAPM context
3176 * @route: audio routes
3177 * @num: number of routes
3178 *
3179 * Mark existing routes matching those specified in the passed array
3180 * as being weak, meaning that they are ignored for the purpose of
3181 * power decisions. The main intended use case is for sidetone paths
3182 * which couple audio between other independent paths if they are both
3183 * active in order to make the combination work better at the user
3184 * level but which aren't intended to be "used".
3185 *
3186 * Note that CODEC drivers should not use this as sidetone type paths
3187 * can frequently also be used as bypass paths.
3188 */
3189int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
3190 const struct snd_soc_dapm_route *route, int num)
3191{
3192 int i, err;
3193 int ret = 0;
3194
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003195 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brownbf3a9e12011-06-13 16:42:29 +01003196 for (i = 0; i < num; i++) {
3197 err = snd_soc_dapm_weak_route(dapm, route);
3198 if (err)
3199 ret = err;
3200 route++;
3201 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003202 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brownbf3a9e12011-06-13 16:42:29 +01003203
3204 return ret;
3205}
3206EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
3207
Mark Brown105f1c22008-05-13 14:52:19 +02003208/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02003209 * snd_soc_dapm_new_widgets - add new dapm widgets
Jonathan Corbet628536e2015-08-25 01:14:48 -06003210 * @card: card to be checked for new dapm widgets
Richard Purdie2b97eab2006-10-06 18:32:18 +02003211 *
3212 * Checks the codec for any new dapm widgets and creates them if found.
3213 *
3214 * Returns 0 for success.
3215 */
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02003216int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003217{
3218 struct snd_soc_dapm_widget *w;
Mark Brownb66a70d2011-02-09 18:04:11 +00003219 unsigned int val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003220
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003221 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003222
Kuninori Morimoto14596692020-03-09 13:08:21 +09003223 for_each_card_widgets(card, w)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003224 {
3225 if (w->new)
3226 continue;
3227
Stephen Warrenfad59882011-04-28 17:37:59 -06003228 if (w->num_kcontrols) {
Kees Cook6396bb22018-06-12 14:03:40 -07003229 w->kcontrols = kcalloc(w->num_kcontrols,
Stephen Warrenfad59882011-04-28 17:37:59 -06003230 sizeof(struct snd_kcontrol *),
3231 GFP_KERNEL);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003232 if (!w->kcontrols) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003233 mutex_unlock(&card->dapm_mutex);
Stephen Warrenfad59882011-04-28 17:37:59 -06003234 return -ENOMEM;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003235 }
Stephen Warrenfad59882011-04-28 17:37:59 -06003236 }
3237
Richard Purdie2b97eab2006-10-06 18:32:18 +02003238 switch(w->id) {
3239 case snd_soc_dapm_switch:
3240 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00003241 case snd_soc_dapm_mixer_named_ctl:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02003242 dapm_new_mixer(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003243 break;
3244 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02003245 case snd_soc_dapm_demux:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02003246 dapm_new_mux(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003247 break;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003248 case snd_soc_dapm_pga:
Seppo Ingalsuo882c8b4a2019-04-30 18:11:34 -05003249 case snd_soc_dapm_effect:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06003250 case snd_soc_dapm_out_drv:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02003251 dapm_new_pga(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003252 break;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003253 case snd_soc_dapm_dai_link:
3254 dapm_new_dai_link(w);
3255 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01003256 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02003257 break;
3258 }
Mark Brownb66a70d2011-02-09 18:04:11 +00003259
3260 /* Read the initial power state from the device */
3261 if (w->reg >= 0) {
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +09003262 val = soc_dapm_read(w->dapm, w->reg);
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -08003263 val = val >> w->shift;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003264 val &= w->mask;
3265 if (val == w->on_val)
Mark Brownb66a70d2011-02-09 18:04:11 +00003266 w->power = 1;
3267 }
3268
Richard Purdie2b97eab2006-10-06 18:32:18 +02003269 w->new = 1;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02003270
Mark Brown7508b122011-10-05 12:09:12 +01003271 dapm_mark_dirty(w, "new widget");
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02003272 dapm_debugfs_add_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003273 }
3274
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003275 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
3276 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003277 return 0;
3278}
3279EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
3280
3281/**
3282 * snd_soc_dapm_get_volsw - dapm mixer get callback
3283 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003284 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003285 *
3286 * Callback to get the value of a dapm mixer control.
3287 *
3288 * Returns 0 for success.
3289 */
3290int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
3291 struct snd_ctl_elem_value *ucontrol)
3292{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003293 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3294 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003295 struct soc_mixer_control *mc =
3296 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003297 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003298 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003299 int max = mc->max;
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003300 unsigned int width = fls(max);
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003301 unsigned int mask = (1 << fls(max)) - 1;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003302 unsigned int invert = mc->invert;
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003303 unsigned int reg_val, val, rval = 0;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003304
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003305 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003306 if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) {
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +09003307 reg_val = soc_dapm_read(dapm, reg);
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003308 val = (reg_val >> shift) & mask;
3309
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +09003310 if (reg != mc->rreg)
3311 reg_val = soc_dapm_read(dapm, mc->rreg);
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003312
3313 if (snd_soc_volsw_is_stereo(mc))
3314 rval = (reg_val >> mc->rshift) & mask;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003315 } else {
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003316 reg_val = dapm_kcontrol_get_value(kcontrol);
3317 val = reg_val & mask;
3318
3319 if (snd_soc_volsw_is_stereo(mc))
3320 rval = (reg_val >> width) & mask;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003321 }
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003322 mutex_unlock(&card->dapm_mutex);
3323
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003324 if (invert)
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003325 ucontrol->value.integer.value[0] = max - val;
3326 else
3327 ucontrol->value.integer.value[0] = val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003328
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003329 if (snd_soc_volsw_is_stereo(mc)) {
3330 if (invert)
3331 ucontrol->value.integer.value[1] = max - rval;
3332 else
3333 ucontrol->value.integer.value[1] = rval;
3334 }
3335
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +09003336 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003337}
3338EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
3339
3340/**
3341 * snd_soc_dapm_put_volsw - dapm mixer set callback
3342 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003343 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003344 *
3345 * Callback to set the value of a dapm mixer control.
3346 *
3347 * Returns 0 for success.
3348 */
3349int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
3350 struct snd_ctl_elem_value *ucontrol)
3351{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003352 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3353 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003354 struct soc_mixer_control *mc =
3355 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003356 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003357 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003358 int max = mc->max;
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003359 unsigned int width = fls(max);
3360 unsigned int mask = (1 << width) - 1;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003361 unsigned int invert = mc->invert;
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003362 unsigned int val, rval = 0;
3363 int connect, rconnect = -1, change, reg_change = 0;
Fabio Estevam33d92452018-02-14 13:39:05 -02003364 struct snd_soc_dapm_update update = {};
Nenghua Cao52765972013-12-13 20:13:49 +08003365 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003366
3367 val = (ucontrol->value.integer.value[0] & mask);
Benoît Thébaudeau8a720712012-06-18 22:41:28 +02003368 connect = !!val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003369
3370 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01003371 val = max - val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003372
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003373 if (snd_soc_volsw_is_stereo(mc)) {
3374 rval = (ucontrol->value.integer.value[1] & mask);
3375 rconnect = !!rval;
3376 if (invert)
3377 rval = max - rval;
3378 }
3379
Liam Girdwood3cd04342012-03-09 12:02:08 +00003380 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003381
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003382 /* This assumes field width < (bits in unsigned int / 2) */
3383 if (width > sizeof(unsigned int) * 8 / 2)
3384 dev_warn(dapm->dev,
3385 "ASoC: control %s field width limit exceeded\n",
3386 kcontrol->id.name);
3387 change = dapm_kcontrol_set_value(kcontrol, val | (rval << width));
Mark Brown283375c2009-12-07 18:09:03 +00003388
Jarkko Nikula18626c72014-06-09 14:20:29 +03003389 if (reg != SND_SOC_NOPM) {
Jarkko Nikula18626c72014-06-09 14:20:29 +03003390 val = val << shift;
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003391 rval = rval << mc->rshift;
Lars-Peter Clausenc9e065c2014-05-04 19:17:05 +02003392
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003393 reg_change = soc_dapm_test_bits(dapm, reg, mask << shift, val);
3394
3395 if (snd_soc_volsw_is_stereo(mc))
3396 reg_change |= soc_dapm_test_bits(dapm, mc->rreg,
3397 mask << mc->rshift,
3398 rval);
Jarkko Nikula18626c72014-06-09 14:20:29 +03003399 }
3400
3401 if (change || reg_change) {
3402 if (reg_change) {
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003403 if (snd_soc_volsw_is_stereo(mc)) {
3404 update.has_second_set = true;
3405 update.reg2 = mc->rreg;
3406 update.mask2 = mask << mc->rshift;
3407 update.val2 = rval;
3408 }
Jarkko Nikula18626c72014-06-09 14:20:29 +03003409 update.kcontrol = kcontrol;
3410 update.reg = reg;
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003411 update.mask = mask << shift;
Jarkko Nikula18626c72014-06-09 14:20:29 +03003412 update.val = val;
3413 card->update = &update;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003414 }
Jarkko Nikula18626c72014-06-09 14:20:29 +03003415 change |= reg_change;
Mark Brown97404f22010-12-14 16:13:57 +00003416
Chen-Yu Tsaie7aa4502016-11-02 15:35:59 +08003417 ret = soc_dapm_mixer_update_power(card, kcontrol, connect,
3418 rconnect);
Mark Brown97404f22010-12-14 16:13:57 +00003419
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003420 card->update = NULL;
Mark Brown283375c2009-12-07 18:09:03 +00003421 }
3422
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003423 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003424
3425 if (ret > 0)
Guennadi Liakhovetskif17a1472020-03-12 10:52:14 +01003426 snd_soc_dpcm_runtime_update(card);
Nenghua Cao52765972013-12-13 20:13:49 +08003427
Lars-Peter Clausen56a67832013-07-24 15:27:35 +02003428 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003429}
3430EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3431
3432/**
3433 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3434 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003435 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003436 *
3437 * Callback to get the value of a dapm enumerated double mixer control.
3438 *
3439 * Returns 0 for success.
3440 */
3441int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3442 struct snd_ctl_elem_value *ucontrol)
3443{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003444 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
Charles Keepax561ed682015-05-01 12:37:26 +01003445 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003446 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003447 unsigned int reg_val, val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003448
Charles Keepax561ed682015-05-01 12:37:26 +01003449 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3450 if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
Kuninori Morimotocf6e26c2020-06-16 14:19:41 +09003451 reg_val = soc_dapm_read(dapm, e->reg);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003452 } else {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003453 reg_val = dapm_kcontrol_get_value(kcontrol);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003454 }
Charles Keepax561ed682015-05-01 12:37:26 +01003455 mutex_unlock(&card->dapm_mutex);
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003456
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003457 val = (reg_val >> e->shift_l) & e->mask;
3458 ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3459 if (e->shift_l != e->shift_r) {
3460 val = (reg_val >> e->shift_r) & e->mask;
3461 val = snd_soc_enum_val_to_item(e, val);
3462 ucontrol->value.enumerated.item[1] = val;
3463 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003464
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003465 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003466}
3467EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3468
Tzung-Bi Shih8f486292020-02-14 18:57:43 +08003469/**
3470 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3471 * @kcontrol: mixer control
3472 * @ucontrol: control element information
3473 *
3474 * Callback to set the value of a dapm enumerated double mixer control.
3475 *
3476 * Returns 0 for success.
3477 */
3478int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3479 struct snd_ctl_elem_value *ucontrol)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003480{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003481 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3482 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003483 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003484 unsigned int *item = ucontrol->value.enumerated.item;
Charles Keepax561ed682015-05-01 12:37:26 +01003485 unsigned int val, change, reg_change = 0;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003486 unsigned int mask;
Fabio Estevam33d92452018-02-14 13:39:05 -02003487 struct snd_soc_dapm_update update = {};
Nenghua Cao52765972013-12-13 20:13:49 +08003488 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003489
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003490 if (item[0] >= e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003491 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003492
3493 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003494 mask = e->mask << e->shift_l;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003495 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003496 if (item[1] > e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003497 return -EINVAL;
Chen-Yu Tsai071133a2016-08-27 19:27:59 +08003498 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003499 mask |= e->mask << e->shift_r;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003500 }
3501
Tzung-Bi Shih8f486292020-02-14 18:57:43 +08003502 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06003503
Charles Keepax561ed682015-05-01 12:37:26 +01003504 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown97404f22010-12-14 16:13:57 +00003505
Charles Keepax561ed682015-05-01 12:37:26 +01003506 if (e->reg != SND_SOC_NOPM)
3507 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3508
3509 if (change || reg_change) {
3510 if (reg_change) {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003511 update.kcontrol = kcontrol;
3512 update.reg = e->reg;
3513 update.mask = mask;
3514 update.val = val;
3515 card->update = &update;
3516 }
Charles Keepax561ed682015-05-01 12:37:26 +01003517 change |= reg_change;
Mark Brown3a655772009-10-05 17:23:30 +01003518
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003519 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
Mark Brown1642e3d2009-10-05 16:24:26 +01003520
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003521 card->update = NULL;
Stephen Warrenfafd2172011-04-28 17:38:00 -06003522 }
3523
Tzung-Bi Shih8f486292020-02-14 18:57:43 +08003524 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003525
3526 if (ret > 0)
Guennadi Liakhovetskif17a1472020-03-12 10:52:14 +01003527 snd_soc_dpcm_runtime_update(card);
Nenghua Cao52765972013-12-13 20:13:49 +08003528
Mark Brown97404f22010-12-14 16:13:57 +00003529 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003530}
3531EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3532
3533/**
Mark Brown8b37dbd2009-02-28 21:14:20 +00003534 * snd_soc_dapm_info_pin_switch - Info for a pin switch
3535 *
3536 * @kcontrol: mixer control
3537 * @uinfo: control element information
3538 *
3539 * Callback to provide information about a pin switch control.
3540 */
3541int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3542 struct snd_ctl_elem_info *uinfo)
3543{
3544 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3545 uinfo->count = 1;
3546 uinfo->value.integer.min = 0;
3547 uinfo->value.integer.max = 1;
3548
3549 return 0;
3550}
3551EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3552
3553/**
3554 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3555 *
3556 * @kcontrol: mixer control
3557 * @ucontrol: Value
3558 */
3559int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3560 struct snd_ctl_elem_value *ucontrol)
3561{
Mark Brown48a8c392012-02-14 17:11:15 -08003562 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003563 const char *pin = (const char *)kcontrol->private_value;
3564
Liam Girdwood3cd04342012-03-09 12:02:08 +00003565 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003566
3567 ucontrol->value.integer.value[0] =
Mark Brown48a8c392012-02-14 17:11:15 -08003568 snd_soc_dapm_get_pin_status(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003569
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003570 mutex_unlock(&card->dapm_mutex);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003571
3572 return 0;
3573}
3574EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3575
3576/**
3577 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3578 *
3579 * @kcontrol: mixer control
3580 * @ucontrol: Value
3581 */
3582int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3583 struct snd_ctl_elem_value *ucontrol)
3584{
Mark Brown48a8c392012-02-14 17:11:15 -08003585 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003586 const char *pin = (const char *)kcontrol->private_value;
3587
Mark Brown8b37dbd2009-02-28 21:14:20 +00003588 if (ucontrol->value.integer.value[0])
Mark Brown48a8c392012-02-14 17:11:15 -08003589 snd_soc_dapm_enable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003590 else
Mark Brown48a8c392012-02-14 17:11:15 -08003591 snd_soc_dapm_disable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003592
Mark Brown48a8c392012-02-14 17:11:15 -08003593 snd_soc_dapm_sync(&card->dapm);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003594 return 0;
3595}
3596EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3597
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +01003598struct snd_soc_dapm_widget *
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003599snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003600 const struct snd_soc_dapm_widget *widget)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003601{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003602 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003603 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003604 const char *prefix;
Mark Brown62ea8742012-01-21 21:14:48 +00003605 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003606
3607 if ((w = dapm_cnew_widget(widget)) == NULL)
Charles Keepax3bbf5d32018-09-05 15:20:58 +01003608 return ERR_PTR(-ENOMEM);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003609
Mark Brown62ea8742012-01-21 21:14:48 +00003610 switch (w->id) {
3611 case snd_soc_dapm_regulator_supply:
Liam Girdwooda3cc0562012-03-09 17:20:16 +00003612 w->regulator = devm_regulator_get(dapm->dev, w->name);
3613 if (IS_ERR(w->regulator)) {
3614 ret = PTR_ERR(w->regulator);
Charles Keepax3bbf5d32018-09-05 15:20:58 +01003615 goto request_failed;
Mark Brown62ea8742012-01-21 21:14:48 +00003616 }
Mark Brown8784c772013-01-10 19:33:47 +00003617
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003618 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00003619 ret = regulator_allow_bypass(w->regulator, true);
3620 if (ret != 0)
Charles Keepax3bbf5d32018-09-05 15:20:58 +01003621 dev_warn(dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00003622 "ASoC: Failed to bypass %s: %d\n",
Mark Brown8784c772013-01-10 19:33:47 +00003623 w->name, ret);
3624 }
Mark Brown62ea8742012-01-21 21:14:48 +00003625 break;
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +00003626 case snd_soc_dapm_pinctrl:
3627 w->pinctrl = devm_pinctrl_get(dapm->dev);
Charles Keepaxa5cd7e92018-08-28 14:35:03 +01003628 if (IS_ERR(w->pinctrl)) {
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +00003629 ret = PTR_ERR(w->pinctrl);
Charles Keepax3bbf5d32018-09-05 15:20:58 +01003630 goto request_failed;
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +00003631 }
Tzung-Bi Shihec06dc12020-02-19 17:38:38 +08003632
3633 /* set to sleep_state when initializing */
3634 dapm_pinctrl_event(w, NULL, SND_SOC_DAPM_POST_PMD);
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +00003635 break;
Ola Liljad7e7eb92012-05-24 15:26:25 +02003636 case snd_soc_dapm_clock_supply:
Mark Brown695594f12012-06-04 08:14:13 +01003637 w->clk = devm_clk_get(dapm->dev, w->name);
Ola Liljad7e7eb92012-05-24 15:26:25 +02003638 if (IS_ERR(w->clk)) {
3639 ret = PTR_ERR(w->clk);
Charles Keepax3bbf5d32018-09-05 15:20:58 +01003640 goto request_failed;
Ola Liljad7e7eb92012-05-24 15:26:25 +02003641 }
3642 break;
Mark Brown62ea8742012-01-21 21:14:48 +00003643 default:
3644 break;
3645 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003646
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003647 prefix = soc_dapm_prefix(dapm);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003648 if (prefix)
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003649 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003650 else
Lars-Peter Clausen48068962015-07-21 18:11:08 +02003651 w->name = kstrdup_const(widget->name, GFP_KERNEL);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003652 if (w->name == NULL) {
Pierre-Louis Bossart199ed3e2019-02-01 11:05:12 -06003653 kfree_const(w->sname);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003654 kfree(w);
Charles Keepax3bbf5d32018-09-05 15:20:58 +01003655 return ERR_PTR(-ENOMEM);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003656 }
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003657
Mark Brown7ca3a182011-10-08 14:04:50 +01003658 switch (w->id) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003659 case snd_soc_dapm_mic:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003660 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003661 w->power_check = dapm_generic_check_power;
3662 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003663 case snd_soc_dapm_input:
3664 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003665 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003666 w->power_check = dapm_generic_check_power;
3667 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003668 case snd_soc_dapm_spk:
3669 case snd_soc_dapm_hp:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003670 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003671 w->power_check = dapm_generic_check_power;
3672 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003673 case snd_soc_dapm_output:
3674 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003675 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003676 w->power_check = dapm_generic_check_power;
3677 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003678 case snd_soc_dapm_vmid:
3679 case snd_soc_dapm_siggen:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003680 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003681 w->power_check = dapm_always_on_check_power;
3682 break;
Vinod Koul56b44372015-11-23 21:22:30 +05303683 case snd_soc_dapm_sink:
3684 w->is_ep = SND_SOC_DAPM_EP_SINK;
3685 w->power_check = dapm_always_on_check_power;
3686 break;
3687
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003688 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02003689 case snd_soc_dapm_demux:
Mark Brown7ca3a182011-10-08 14:04:50 +01003690 case snd_soc_dapm_switch:
3691 case snd_soc_dapm_mixer:
3692 case snd_soc_dapm_mixer_named_ctl:
Mark Brown63c69a62013-07-18 22:03:01 +01003693 case snd_soc_dapm_adc:
3694 case snd_soc_dapm_aif_out:
3695 case snd_soc_dapm_dac:
3696 case snd_soc_dapm_aif_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003697 case snd_soc_dapm_pga:
Ranjani Sridharan6e3bfcf2019-03-01 19:08:53 -06003698 case snd_soc_dapm_buffer:
3699 case snd_soc_dapm_scheduler:
3700 case snd_soc_dapm_effect:
3701 case snd_soc_dapm_src:
3702 case snd_soc_dapm_asrc:
3703 case snd_soc_dapm_encoder:
3704 case snd_soc_dapm_decoder:
Mark Brown7ca3a182011-10-08 14:04:50 +01003705 case snd_soc_dapm_out_drv:
Mark Brown7ca3a182011-10-08 14:04:50 +01003706 case snd_soc_dapm_micbias:
Mark Brown7ca3a182011-10-08 14:04:50 +01003707 case snd_soc_dapm_line:
Mark Brownc74184e2012-04-04 22:12:09 +01003708 case snd_soc_dapm_dai_link:
Lars-Peter Clausencdef2ad2014-10-20 19:36:38 +02003709 case snd_soc_dapm_dai_out:
3710 case snd_soc_dapm_dai_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003711 w->power_check = dapm_generic_check_power;
3712 break;
3713 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00003714 case snd_soc_dapm_regulator_supply:
Srinivas Kandagatla5b2d15b2018-03-10 02:37:27 +00003715 case snd_soc_dapm_pinctrl:
Ola Liljad7e7eb92012-05-24 15:26:25 +02003716 case snd_soc_dapm_clock_supply:
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003717 case snd_soc_dapm_kcontrol:
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003718 w->is_supply = 1;
Mark Brown7ca3a182011-10-08 14:04:50 +01003719 w->power_check = dapm_supply_check_power;
3720 break;
3721 default:
3722 w->power_check = dapm_always_on_check_power;
3723 break;
3724 }
3725
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003726 w->dapm = dapm;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003727 INIT_LIST_HEAD(&w->list);
Mark Browndb432b42011-10-03 21:06:40 +01003728 INIT_LIST_HEAD(&w->dirty);
Kuninori Morimoto14596692020-03-09 13:08:21 +09003729 /* see for_each_card_widgets */
Lars-Peter Clausen92fa1242015-05-01 18:02:42 +02003730 list_add_tail(&w->list, &dapm->card->widgets);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003731
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003732 snd_soc_dapm_for_each_direction(dir) {
3733 INIT_LIST_HEAD(&w->edges[dir]);
3734 w->endpoints[dir] = -1;
3735 }
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02003736
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02003737 /* machine layer sets up unconnected pins and insertions */
Richard Purdie2b97eab2006-10-06 18:32:18 +02003738 w->connected = 1;
Mark Brown5ba06fc2012-02-16 11:07:13 -08003739 return w;
Charles Keepax3bbf5d32018-09-05 15:20:58 +01003740
3741request_failed:
3742 if (ret != -EPROBE_DEFER)
3743 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
3744 w->name, ret);
3745
Wenwen Wang45004d62019-07-22 08:57:44 -05003746 kfree_const(w->sname);
3747 kfree(w);
Charles Keepax3bbf5d32018-09-05 15:20:58 +01003748 return ERR_PTR(ret);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003749}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003750
3751/**
Charles Keepax94e630a2018-09-05 15:20:59 +01003752 * snd_soc_dapm_new_control - create new dapm control
3753 * @dapm: DAPM context
3754 * @widget: widget template
3755 *
3756 * Creates new DAPM control based upon a template.
3757 *
3758 * Returns a widget pointer on success or an error pointer on failure
3759 */
3760struct snd_soc_dapm_widget *
3761snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
3762 const struct snd_soc_dapm_widget *widget)
3763{
3764 struct snd_soc_dapm_widget *w;
3765
3766 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3767 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3768 mutex_unlock(&dapm->card->dapm_mutex);
3769
3770 return w;
3771}
3772EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
3773
3774/**
Mark Brown4ba13272008-05-13 14:51:19 +02003775 * snd_soc_dapm_new_controls - create new dapm controls
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003776 * @dapm: DAPM context
Mark Brown4ba13272008-05-13 14:51:19 +02003777 * @widget: widget array
3778 * @num: number of widgets
3779 *
3780 * Creates new DAPM controls based upon the templates.
3781 *
3782 * Returns 0 for success else error.
3783 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003784int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
Mark Brown4ba13272008-05-13 14:51:19 +02003785 const struct snd_soc_dapm_widget *widget,
3786 int num)
3787{
Mark Brown5ba06fc2012-02-16 11:07:13 -08003788 struct snd_soc_dapm_widget *w;
3789 int i;
Dan Carpenter60884c22012-04-13 22:25:43 +03003790 int ret = 0;
Mark Brown4ba13272008-05-13 14:51:19 +02003791
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003792 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown4ba13272008-05-13 14:51:19 +02003793 for (i = 0; i < num; i++) {
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003794 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
Linus Walleij37e1df82017-01-13 10:23:52 +01003795 if (IS_ERR(w)) {
3796 ret = PTR_ERR(w);
Dan Carpenter60884c22012-04-13 22:25:43 +03003797 break;
Mark Brownb8b33cb2008-12-18 11:19:30 +00003798 }
Mark Brown4ba13272008-05-13 14:51:19 +02003799 widget++;
3800 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003801 mutex_unlock(&dapm->card->dapm_mutex);
Dan Carpenter60884c22012-04-13 22:25:43 +03003802 return ret;
Mark Brown4ba13272008-05-13 14:51:19 +02003803}
3804EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3805
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003806static int
3807snd_soc_dai_link_event_pre_pmu(struct snd_soc_dapm_widget *w,
3808 struct snd_pcm_substream *substream)
Mark Brownc74184e2012-04-04 22:12:09 +01003809{
Charles Keepax4a75aae2018-09-05 15:21:01 +01003810 struct snd_soc_dapm_path *path;
Mark Brownc74184e2012-04-04 22:12:09 +01003811 struct snd_soc_dai *source, *sink;
Kuninori Morimoto0ceef682020-07-20 10:17:39 +09003812 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Mark Brown9747cec2012-04-26 19:12:21 +01003813 struct snd_pcm_hw_params *params = NULL;
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003814 const struct snd_soc_pcm_stream *config = NULL;
Jerome Bruneta72706e2019-07-25 18:59:48 +02003815 struct snd_pcm_runtime *runtime = NULL;
Takashi Iwai3ba66fe2018-07-25 22:43:26 +02003816 unsigned int fmt;
Colin Ian Kingc8415832019-07-26 13:33:27 +01003817 int ret = 0;
Mark Brownc74184e2012-04-04 22:12:09 +01003818
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003819 params = kzalloc(sizeof(*params), GFP_KERNEL);
3820 if (!params)
3821 return -ENOMEM;
3822
Jerome Bruneta72706e2019-07-25 18:59:48 +02003823 runtime = kzalloc(sizeof(*runtime), GFP_KERNEL);
3824 if (!runtime) {
3825 ret = -ENOMEM;
3826 goto out;
3827 }
3828
3829 substream->runtime = runtime;
3830
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003831 substream->stream = SNDRV_PCM_STREAM_CAPTURE;
3832 snd_soc_dapm_widget_for_each_source_path(w, path) {
3833 source = path->source->priv;
3834
3835 ret = snd_soc_dai_startup(source, substream);
Kuninori Morimoto62462e02021-03-15 09:58:37 +09003836 if (ret < 0)
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003837 goto out;
Kuninori Morimoto62462e02021-03-15 09:58:37 +09003838
Kuninori Morimoto45eb8662020-05-15 09:46:33 +09003839 snd_soc_dai_activate(source, substream->stream);
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003840 }
3841
3842 substream->stream = SNDRV_PCM_STREAM_PLAYBACK;
3843 snd_soc_dapm_widget_for_each_sink_path(w, path) {
3844 sink = path->sink->priv;
3845
3846 ret = snd_soc_dai_startup(sink, substream);
Kuninori Morimoto62462e02021-03-15 09:58:37 +09003847 if (ret < 0)
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003848 goto out;
Kuninori Morimoto62462e02021-03-15 09:58:37 +09003849
Kuninori Morimoto45eb8662020-05-15 09:46:33 +09003850 snd_soc_dai_activate(sink, substream->stream);
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003851 }
3852
Jerome Bruneta72706e2019-07-25 18:59:48 +02003853 substream->hw_opened = 1;
3854
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003855 /*
3856 * Note: getting the config after .startup() gives a chance to
3857 * either party on the link to alter the configuration if
3858 * necessary
3859 */
Charles Keepax243bcfa2018-09-05 15:21:02 +01003860 config = rtd->dai_link->params + rtd->params_select;
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003861 if (WARN_ON(!config)) {
3862 dev_err(w->dapm->dev, "ASoC: link config missing\n");
3863 ret = -EINVAL;
3864 goto out;
3865 }
Mark Brownc74184e2012-04-04 22:12:09 +01003866
Mark Brownc74184e2012-04-04 22:12:09 +01003867 /* Be a little careful as we don't want to overflow the mask array */
3868 if (config->formats) {
3869 fmt = ffs(config->formats) - 1;
3870 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003871 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003872 config->formats);
Mark Brownc74184e2012-04-04 22:12:09 +01003873
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003874 ret = -EINVAL;
Mark Brown9747cec2012-04-26 19:12:21 +01003875 goto out;
3876 }
Mark Brownc74184e2012-04-04 22:12:09 +01003877
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003878 snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
Mark Brown9747cec2012-04-26 19:12:21 +01003879 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
Mark Brownc74184e2012-04-04 22:12:09 +01003880 config->rate_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003881 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
Mark Brownc74184e2012-04-04 22:12:09 +01003882 config->rate_max;
Mark Brown9747cec2012-04-26 19:12:21 +01003883 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
Mark Brownc74184e2012-04-04 22:12:09 +01003884 = config->channels_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003885 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
Mark Brownc74184e2012-04-04 22:12:09 +01003886 = config->channels_max;
3887
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003888 substream->stream = SNDRV_PCM_STREAM_CAPTURE;
3889 snd_soc_dapm_widget_for_each_source_path(w, path) {
3890 source = path->source->priv;
3891
3892 ret = snd_soc_dai_hw_params(source, substream, params);
3893 if (ret < 0)
3894 goto out;
3895
3896 dapm_update_dai_unlocked(substream, params, source);
3897 }
3898
3899 substream->stream = SNDRV_PCM_STREAM_PLAYBACK;
3900 snd_soc_dapm_widget_for_each_sink_path(w, path) {
3901 sink = path->sink->priv;
3902
3903 ret = snd_soc_dai_hw_params(sink, substream, params);
3904 if (ret < 0)
3905 goto out;
3906
3907 dapm_update_dai_unlocked(substream, params, sink);
3908 }
3909
Jerome Brunet9de98622019-07-25 18:59:49 +02003910 runtime->format = params_format(params);
3911 runtime->subformat = params_subformat(params);
3912 runtime->channels = params_channels(params);
3913 runtime->rate = params_rate(params);
3914
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003915out:
3916 kfree(params);
Colin Ian Kingc8415832019-07-26 13:33:27 +01003917 return ret;
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003918}
3919
3920static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3921 struct snd_kcontrol *kcontrol, int event)
3922{
3923 struct snd_soc_dapm_path *path;
3924 struct snd_soc_dai *source, *sink;
Jerome Bruneta72706e2019-07-25 18:59:48 +02003925 struct snd_pcm_substream *substream = w->priv;
3926 int ret = 0, saved_stream = substream->stream;
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003927
3928 if (WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3929 list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
3930 return -EINVAL;
3931
Mark Brownc74184e2012-04-04 22:12:09 +01003932 switch (event) {
3933 case SND_SOC_DAPM_PRE_PMU:
Jerome Bruneta72706e2019-07-25 18:59:48 +02003934 ret = snd_soc_dai_link_event_pre_pmu(w, substream);
Jerome Brunet3dcfb392019-07-25 18:59:46 +02003935 if (ret < 0)
3936 goto out;
Charles Keepax4a75aae2018-09-05 15:21:01 +01003937
Mark Brownc74184e2012-04-04 22:12:09 +01003938 break;
3939
3940 case SND_SOC_DAPM_POST_PMU:
Charles Keepax4a75aae2018-09-05 15:21:01 +01003941 snd_soc_dapm_widget_for_each_sink_path(w, path) {
3942 sink = path->sink->priv;
3943
Kuninori Morimoto62462e02021-03-15 09:58:37 +09003944 snd_soc_dai_digital_mute(sink, 0, SNDRV_PCM_STREAM_PLAYBACK);
Charles Keepax4a75aae2018-09-05 15:21:01 +01003945 ret = 0;
3946 }
Mark Brownc74184e2012-04-04 22:12:09 +01003947 break;
3948
3949 case SND_SOC_DAPM_PRE_PMD:
Charles Keepax4a75aae2018-09-05 15:21:01 +01003950 snd_soc_dapm_widget_for_each_sink_path(w, path) {
3951 sink = path->sink->priv;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303952
Kuninori Morimoto62462e02021-03-15 09:58:37 +09003953 snd_soc_dai_digital_mute(sink, 1, SNDRV_PCM_STREAM_PLAYBACK);
Charles Keepax4a75aae2018-09-05 15:21:01 +01003954 ret = 0;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303955 }
3956
Jerome Bruneta72706e2019-07-25 18:59:48 +02003957 substream->stream = SNDRV_PCM_STREAM_CAPTURE;
Charles Keepax4a75aae2018-09-05 15:21:01 +01003958 snd_soc_dapm_widget_for_each_source_path(w, path) {
3959 source = path->source->priv;
Kuninori Morimotoc304c9a2020-09-29 13:31:53 +09003960 snd_soc_dai_hw_free(source, substream, 0);
Jerome Brunet68c907f2019-07-25 18:59:44 +02003961 }
Charles Keepax3c01b0e2018-10-11 17:28:28 +01003962
Jerome Bruneta72706e2019-07-25 18:59:48 +02003963 substream->stream = SNDRV_PCM_STREAM_PLAYBACK;
Jerome Brunet68c907f2019-07-25 18:59:44 +02003964 snd_soc_dapm_widget_for_each_sink_path(w, path) {
3965 sink = path->sink->priv;
Kuninori Morimotoc304c9a2020-09-29 13:31:53 +09003966 snd_soc_dai_hw_free(sink, substream, 0);
Jerome Brunet68c907f2019-07-25 18:59:44 +02003967 }
3968
Jerome Bruneta72706e2019-07-25 18:59:48 +02003969 substream->stream = SNDRV_PCM_STREAM_CAPTURE;
Jerome Brunet68c907f2019-07-25 18:59:44 +02003970 snd_soc_dapm_widget_for_each_source_path(w, path) {
3971 source = path->source->priv;
Kuninori Morimoto45eb8662020-05-15 09:46:33 +09003972 snd_soc_dai_deactivate(source, substream->stream);
Kuninori Morimoto00a0b462020-09-28 09:00:40 +09003973 snd_soc_dai_shutdown(source, substream, 0);
Charles Keepax4a75aae2018-09-05 15:21:01 +01003974 }
3975
Jerome Bruneta72706e2019-07-25 18:59:48 +02003976 substream->stream = SNDRV_PCM_STREAM_PLAYBACK;
Charles Keepax4a75aae2018-09-05 15:21:01 +01003977 snd_soc_dapm_widget_for_each_sink_path(w, path) {
3978 sink = path->sink->priv;
Kuninori Morimoto45eb8662020-05-15 09:46:33 +09003979 snd_soc_dai_deactivate(sink, substream->stream);
Kuninori Morimoto00a0b462020-09-28 09:00:40 +09003980 snd_soc_dai_shutdown(sink, substream, 0);
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303981 }
Mark Brownc74184e2012-04-04 22:12:09 +01003982 break;
3983
Jerome Bruneta72706e2019-07-25 18:59:48 +02003984 case SND_SOC_DAPM_POST_PMD:
3985 kfree(substream->runtime);
3986 break;
3987
Mark Brownc74184e2012-04-04 22:12:09 +01003988 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01003989 WARN(1, "Unknown event %d\n", event);
Sudip Mukherjee75881df2015-09-10 18:01:44 +05303990 ret = -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003991 }
3992
Mark Brown9747cec2012-04-26 19:12:21 +01003993out:
Jerome Bruneta72706e2019-07-25 18:59:48 +02003994 /* Restore the substream direction */
3995 substream->stream = saved_stream;
Mark Brown9747cec2012-04-26 19:12:21 +01003996 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003997}
3998
Nikesh Oswalc6615082015-02-02 17:06:44 +00003999static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
4000 struct snd_ctl_elem_value *ucontrol)
4001{
4002 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
Charles Keepax243bcfa2018-09-05 15:21:02 +01004003 struct snd_soc_pcm_runtime *rtd = w->priv;
Nikesh Oswalc6615082015-02-02 17:06:44 +00004004
Charles Keepax243bcfa2018-09-05 15:21:02 +01004005 ucontrol->value.enumerated.item[0] = rtd->params_select;
Nikesh Oswalc6615082015-02-02 17:06:44 +00004006
4007 return 0;
4008}
4009
4010static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
4011 struct snd_ctl_elem_value *ucontrol)
4012{
4013 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
Charles Keepax243bcfa2018-09-05 15:21:02 +01004014 struct snd_soc_pcm_runtime *rtd = w->priv;
Nikesh Oswalc6615082015-02-02 17:06:44 +00004015
4016 /* Can't change the config when widget is already powered */
4017 if (w->power)
4018 return -EBUSY;
4019
Charles Keepax243bcfa2018-09-05 15:21:02 +01004020 if (ucontrol->value.enumerated.item[0] == rtd->params_select)
Nikesh Oswalc6615082015-02-02 17:06:44 +00004021 return 0;
4022
Charles Keepax243bcfa2018-09-05 15:21:02 +01004023 if (ucontrol->value.enumerated.item[0] >= rtd->dai_link->num_params)
Nikesh Oswalc6615082015-02-02 17:06:44 +00004024 return -EINVAL;
4025
Charles Keepax243bcfa2018-09-05 15:21:02 +01004026 rtd->params_select = ucontrol->value.enumerated.item[0];
Nikesh Oswalc6615082015-02-02 17:06:44 +00004027
4028 return 0;
4029}
4030
Arnd Bergmannc42c5ac2017-10-10 11:20:11 +02004031static void
anish kumar19ad6832017-09-28 21:52:39 -07004032snd_soc_dapm_free_kcontrol(struct snd_soc_card *card,
4033 unsigned long *private_value,
4034 int num_params,
4035 const char **w_param_text)
Mark Brownc74184e2012-04-04 22:12:09 +01004036{
anish kumar19ad6832017-09-28 21:52:39 -07004037 int count;
4038
4039 devm_kfree(card->dev, (void *)*private_value);
Pankaj Bharadiyacacea3a2019-03-22 18:00:09 +05304040
4041 if (!w_param_text)
4042 return;
4043
anish kumar19ad6832017-09-28 21:52:39 -07004044 for (count = 0 ; count < num_params; count++)
4045 devm_kfree(card->dev, (void *)w_param_text[count]);
4046 devm_kfree(card->dev, w_param_text);
4047}
4048
4049static struct snd_kcontrol_new *
4050snd_soc_dapm_alloc_kcontrol(struct snd_soc_card *card,
4051 char *link_name,
4052 const struct snd_soc_pcm_stream *params,
4053 int num_params, const char **w_param_text,
4054 unsigned long *private_value)
4055{
Nikesh Oswalc6615082015-02-02 17:06:44 +00004056 struct soc_enum w_param_enum[] = {
4057 SOC_ENUM_SINGLE(0, 0, 0, NULL),
4058 };
4059 struct snd_kcontrol_new kcontrol_dai_link[] = {
4060 SOC_ENUM_EXT(NULL, w_param_enum[0],
4061 snd_soc_dapm_dai_link_get,
4062 snd_soc_dapm_dai_link_put),
4063 };
anish kumar19ad6832017-09-28 21:52:39 -07004064 struct snd_kcontrol_new *kcontrol_news;
Nikesh Oswalc6615082015-02-02 17:06:44 +00004065 const struct snd_soc_pcm_stream *config = params;
anish kumar19ad6832017-09-28 21:52:39 -07004066 int count;
Mark Brownc74184e2012-04-04 22:12:09 +01004067
Nikesh Oswalc6615082015-02-02 17:06:44 +00004068 for (count = 0 ; count < num_params; count++) {
4069 if (!config->stream_name) {
4070 dev_warn(card->dapm.dev,
4071 "ASoC: anonymous config %d for dai link %s\n",
4072 count, link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00004073 w_param_text[count] =
Charles Keepax46172b62015-03-25 11:22:35 +00004074 devm_kasprintf(card->dev, GFP_KERNEL,
4075 "Anonymous Configuration %d",
4076 count);
Nikesh Oswalc6615082015-02-02 17:06:44 +00004077 } else {
4078 w_param_text[count] = devm_kmemdup(card->dev,
4079 config->stream_name,
4080 strlen(config->stream_name) + 1,
4081 GFP_KERNEL);
Nikesh Oswalc6615082015-02-02 17:06:44 +00004082 }
anish kumar19ad6832017-09-28 21:52:39 -07004083 if (!w_param_text[count])
4084 goto outfree_w_param;
Nikesh Oswalc6615082015-02-02 17:06:44 +00004085 config++;
4086 }
anish kumar19ad6832017-09-28 21:52:39 -07004087
Nikesh Oswalc6615082015-02-02 17:06:44 +00004088 w_param_enum[0].items = num_params;
4089 w_param_enum[0].texts = w_param_text;
Mark Brownc74184e2012-04-04 22:12:09 +01004090
anish kumar19ad6832017-09-28 21:52:39 -07004091 *private_value =
4092 (unsigned long) devm_kmemdup(card->dev,
4093 (void *)(kcontrol_dai_link[0].private_value),
4094 sizeof(struct soc_enum), GFP_KERNEL);
4095 if (!*private_value) {
4096 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
4097 link_name);
4098 goto outfree_w_param;
4099 }
4100 kcontrol_dai_link[0].private_value = *private_value;
4101 /* duplicate kcontrol_dai_link on heap so that memory persists */
4102 kcontrol_news = devm_kmemdup(card->dev, &kcontrol_dai_link[0],
4103 sizeof(struct snd_kcontrol_new),
4104 GFP_KERNEL);
4105 if (!kcontrol_news) {
4106 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
4107 link_name);
4108 goto outfree_w_param;
4109 }
4110 return kcontrol_news;
4111
4112outfree_w_param:
4113 snd_soc_dapm_free_kcontrol(card, private_value, num_params, w_param_text);
4114 return NULL;
4115}
4116
Charles Keepax778ff5b2018-09-05 15:21:00 +01004117static struct snd_soc_dapm_widget *
Jerome Bruneta72706e2019-07-25 18:59:48 +02004118snd_soc_dapm_new_dai(struct snd_soc_card *card,
4119 struct snd_pcm_substream *substream,
Jerome Brunet054d6502019-07-25 18:59:45 +02004120 char *id)
anish kumar19ad6832017-09-28 21:52:39 -07004121{
Kuninori Morimoto0ceef682020-07-20 10:17:39 +09004122 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
anish kumar19ad6832017-09-28 21:52:39 -07004123 struct snd_soc_dapm_widget template;
4124 struct snd_soc_dapm_widget *w;
4125 const char **w_param_text;
Pankaj Bharadiya8633d442019-03-22 21:53:39 +05304126 unsigned long private_value = 0;
anish kumar19ad6832017-09-28 21:52:39 -07004127 char *link_name;
4128 int ret;
4129
4130 link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
Jerome Brunet054d6502019-07-25 18:59:45 +02004131 rtd->dai_link->name, id);
anish kumar19ad6832017-09-28 21:52:39 -07004132 if (!link_name)
Charles Keepax778ff5b2018-09-05 15:21:00 +01004133 return ERR_PTR(-ENOMEM);
anish kumar19ad6832017-09-28 21:52:39 -07004134
Mark Brownc74184e2012-04-04 22:12:09 +01004135 memset(&template, 0, sizeof(template));
4136 template.reg = SND_SOC_NOPM;
4137 template.id = snd_soc_dapm_dai_link;
4138 template.name = link_name;
4139 template.event = snd_soc_dai_link_event;
4140 template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
Jerome Bruneta72706e2019-07-25 18:59:48 +02004141 SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD;
anish kumar19ad6832017-09-28 21:52:39 -07004142 template.kcontrol_news = NULL;
Mark Brownc74184e2012-04-04 22:12:09 +01004143
anish kumar19ad6832017-09-28 21:52:39 -07004144 /* allocate memory for control, only in case of multiple configs */
Charles Keepax778ff5b2018-09-05 15:21:00 +01004145 if (rtd->dai_link->num_params > 1) {
4146 w_param_text = devm_kcalloc(card->dev,
4147 rtd->dai_link->num_params,
4148 sizeof(char *), GFP_KERNEL);
anish kumar19ad6832017-09-28 21:52:39 -07004149 if (!w_param_text) {
4150 ret = -ENOMEM;
4151 goto param_fail;
4152 }
4153
4154 template.num_kcontrols = 1;
4155 template.kcontrol_news =
4156 snd_soc_dapm_alloc_kcontrol(card,
Charles Keepax778ff5b2018-09-05 15:21:00 +01004157 link_name,
4158 rtd->dai_link->params,
4159 rtd->dai_link->num_params,
anish kumar19ad6832017-09-28 21:52:39 -07004160 w_param_text, &private_value);
4161 if (!template.kcontrol_news) {
4162 ret = -ENOMEM;
4163 goto param_fail;
4164 }
Arnd Bergmann667ebc92017-10-10 11:20:10 +02004165 } else {
4166 w_param_text = NULL;
anish kumar19ad6832017-09-28 21:52:39 -07004167 }
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004168 dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
Mark Brownc74184e2012-04-04 22:12:09 +01004169
Liam Girdwood02aa78a2015-05-25 18:21:17 +01004170 w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
Dan Carpenter2e558a82018-09-07 22:40:33 +03004171 if (IS_ERR(w)) {
4172 ret = PTR_ERR(w);
Charles Keepax9a1bb6002020-04-09 19:12:08 +01004173 dev_err(rtd->dev, "ASoC: Failed to create %s widget: %d\n",
4174 link_name, ret);
Linus Walleij37e1df82017-01-13 10:23:52 +01004175 goto outfree_kcontrol_news;
Dan Carpenter2e558a82018-09-07 22:40:33 +03004176 }
Mark Brownc74184e2012-04-04 22:12:09 +01004177
Jerome Bruneta72706e2019-07-25 18:59:48 +02004178 w->priv = substream;
Mark Brownc74184e2012-04-04 22:12:09 +01004179
Charles Keepax778ff5b2018-09-05 15:21:00 +01004180 return w;
Nikesh Oswalc6615082015-02-02 17:06:44 +00004181
Nikesh Oswalc6615082015-02-02 17:06:44 +00004182outfree_kcontrol_news:
4183 devm_kfree(card->dev, (void *)template.kcontrol_news);
Charles Keepax778ff5b2018-09-05 15:21:00 +01004184 snd_soc_dapm_free_kcontrol(card, &private_value,
4185 rtd->dai_link->num_params, w_param_text);
anish kumar19ad6832017-09-28 21:52:39 -07004186param_fail:
Nikesh Oswalc6615082015-02-02 17:06:44 +00004187 devm_kfree(card->dev, link_name);
Charles Keepax778ff5b2018-09-05 15:21:00 +01004188 return ERR_PTR(ret);
Mark Brownc74184e2012-04-04 22:12:09 +01004189}
4190
Mark Brown888df392012-02-16 19:37:51 -08004191int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
4192 struct snd_soc_dai *dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004193{
Mark Brown888df392012-02-16 19:37:51 -08004194 struct snd_soc_dapm_widget template;
Richard Purdie2b97eab2006-10-06 18:32:18 +02004195 struct snd_soc_dapm_widget *w;
4196
Mark Brown888df392012-02-16 19:37:51 -08004197 WARN_ON(dapm->dev != dai->dev);
4198
4199 memset(&template, 0, sizeof(template));
4200 template.reg = SND_SOC_NOPM;
4201
4202 if (dai->driver->playback.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01004203 template.id = snd_soc_dapm_dai_in;
Mark Brown888df392012-02-16 19:37:51 -08004204 template.name = dai->driver->playback.stream_name;
4205 template.sname = dai->driver->playback.stream_name;
4206
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004207 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08004208 template.name);
4209
Liam Girdwood02aa78a2015-05-25 18:21:17 +01004210 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Charles Keepax3bbf5d32018-09-05 15:20:58 +01004211 if (IS_ERR(w))
4212 return PTR_ERR(w);
Mark Brown888df392012-02-16 19:37:51 -08004213
4214 w->priv = dai;
4215 dai->playback_widget = w;
4216 }
4217
4218 if (dai->driver->capture.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01004219 template.id = snd_soc_dapm_dai_out;
Mark Brown888df392012-02-16 19:37:51 -08004220 template.name = dai->driver->capture.stream_name;
4221 template.sname = dai->driver->capture.stream_name;
4222
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004223 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08004224 template.name);
4225
Liam Girdwood02aa78a2015-05-25 18:21:17 +01004226 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Charles Keepax3bbf5d32018-09-05 15:20:58 +01004227 if (IS_ERR(w))
4228 return PTR_ERR(w);
Mark Brown888df392012-02-16 19:37:51 -08004229
4230 w->priv = dai;
4231 dai->capture_widget = w;
4232 }
4233
4234 return 0;
4235}
4236
4237int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
4238{
4239 struct snd_soc_dapm_widget *dai_w, *w;
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02004240 struct snd_soc_dapm_widget *src, *sink;
Mark Brown888df392012-02-16 19:37:51 -08004241 struct snd_soc_dai *dai;
Mark Brown888df392012-02-16 19:37:51 -08004242
4243 /* For each DAI widget... */
Kuninori Morimoto14596692020-03-09 13:08:21 +09004244 for_each_card_widgets(card, dai_w) {
Mark Brown46162742013-06-05 19:36:11 +01004245 switch (dai_w->id) {
4246 case snd_soc_dapm_dai_in:
4247 case snd_soc_dapm_dai_out:
4248 break;
4249 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02004250 continue;
Mark Brown46162742013-06-05 19:36:11 +01004251 }
Mark Brown888df392012-02-16 19:37:51 -08004252
Liam Girdwoode01b4f62018-06-14 20:26:42 +01004253 /* let users know there is no DAI to link */
4254 if (!dai_w->priv) {
4255 dev_dbg(card->dev, "dai widget %s has no DAI\n",
4256 dai_w->name);
4257 continue;
4258 }
4259
Mark Brown888df392012-02-16 19:37:51 -08004260 dai = dai_w->priv;
4261
4262 /* ...find all widgets with the same stream and link them */
Kuninori Morimoto14596692020-03-09 13:08:21 +09004263 for_each_card_widgets(card, w) {
Mark Brown888df392012-02-16 19:37:51 -08004264 if (w->dapm != dai_w->dapm)
4265 continue;
4266
Mark Brown46162742013-06-05 19:36:11 +01004267 switch (w->id) {
4268 case snd_soc_dapm_dai_in:
4269 case snd_soc_dapm_dai_out:
Mark Brown888df392012-02-16 19:37:51 -08004270 continue;
Mark Brown46162742013-06-05 19:36:11 +01004271 default:
4272 break;
4273 }
Mark Brown888df392012-02-16 19:37:51 -08004274
Lars-Peter Clausena798c242015-07-21 11:51:35 +02004275 if (!w->sname || !strstr(w->sname, dai_w->sname))
Mark Brown888df392012-02-16 19:37:51 -08004276 continue;
4277
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02004278 if (dai_w->id == snd_soc_dapm_dai_in) {
4279 src = dai_w;
4280 sink = w;
4281 } else {
4282 src = w;
4283 sink = dai_w;
Mark Brown888df392012-02-16 19:37:51 -08004284 }
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02004285 dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
4286 snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004287 }
4288 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02004289
Mark Brown888df392012-02-16 19:37:51 -08004290 return 0;
4291}
Liam Girdwood64a648c2011-07-25 11:15:15 +01004292
Charles Keepax595571c2020-04-09 19:12:07 +01004293static void dapm_connect_dai_routes(struct snd_soc_dapm_context *dapm,
4294 struct snd_soc_dai *src_dai,
4295 struct snd_soc_dapm_widget *src,
4296 struct snd_soc_dapm_widget *dai,
4297 struct snd_soc_dai *sink_dai,
4298 struct snd_soc_dapm_widget *sink)
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004299{
Charles Keepax595571c2020-04-09 19:12:07 +01004300 dev_dbg(dapm->dev, "connected DAI link %s:%s -> %s:%s\n",
4301 src_dai->component->name, src->name,
4302 sink_dai->component->name, sink->name);
4303
4304 if (dai) {
4305 snd_soc_dapm_add_path(dapm, src, dai, NULL, NULL);
4306 src = dai;
4307 }
4308
4309 snd_soc_dapm_add_path(dapm, src, sink, NULL, NULL);
4310}
4311
4312static void dapm_connect_dai_pair(struct snd_soc_card *card,
4313 struct snd_soc_pcm_runtime *rtd,
4314 struct snd_soc_dai *codec_dai,
4315 struct snd_soc_dai *cpu_dai)
4316{
4317 struct snd_soc_dai_link *dai_link = rtd->dai_link;
4318 struct snd_soc_dapm_widget *dai, *codec, *playback_cpu, *capture_cpu;
Jerome Bruneta72706e2019-07-25 18:59:48 +02004319 struct snd_pcm_substream *substream;
4320 struct snd_pcm_str *streams = rtd->pcm->streams;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004321
Charles Keepax595571c2020-04-09 19:12:07 +01004322 if (dai_link->params) {
Charles Keepax778ff5b2018-09-05 15:21:00 +01004323 playback_cpu = cpu_dai->capture_widget;
4324 capture_cpu = cpu_dai->playback_widget;
4325 } else {
Charles Keepax595571c2020-04-09 19:12:07 +01004326 playback_cpu = cpu_dai->playback_widget;
4327 capture_cpu = cpu_dai->capture_widget;
Charles Keepax778ff5b2018-09-05 15:21:00 +01004328 }
4329
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004330 /* connect BE DAI playback if widgets are valid */
4331 codec = codec_dai->playback_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004332
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004333 if (playback_cpu && codec) {
Charles Keepaxf4aa5e22020-05-26 17:19:30 +01004334 if (dai_link->params && !rtd->playback_widget) {
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004335 substream = streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
Charles Keepax595571c2020-04-09 19:12:07 +01004336 dai = snd_soc_dapm_new_dai(card, substream, "playback");
Charles Keepax9a1bb6002020-04-09 19:12:08 +01004337 if (IS_ERR(dai))
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004338 goto capture;
Charles Keepaxf4aa5e22020-05-26 17:19:30 +01004339 rtd->playback_widget = dai;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004340 }
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004341
Charles Keepax595571c2020-04-09 19:12:07 +01004342 dapm_connect_dai_routes(&card->dapm, cpu_dai, playback_cpu,
Charles Keepaxf4aa5e22020-05-26 17:19:30 +01004343 rtd->playback_widget,
Charles Keepax595571c2020-04-09 19:12:07 +01004344 codec_dai, codec);
Charles Keepaxe36a1d02018-09-10 15:28:39 +01004345 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004346
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004347capture:
4348 /* connect BE DAI capture if widgets are valid */
4349 codec = codec_dai->capture_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004350
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004351 if (codec && capture_cpu) {
Charles Keepaxf4aa5e22020-05-26 17:19:30 +01004352 if (dai_link->params && !rtd->capture_widget) {
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004353 substream = streams[SNDRV_PCM_STREAM_CAPTURE].substream;
Charles Keepax595571c2020-04-09 19:12:07 +01004354 dai = snd_soc_dapm_new_dai(card, substream, "capture");
Charles Keepax9a1bb6002020-04-09 19:12:08 +01004355 if (IS_ERR(dai))
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004356 return;
Charles Keepaxf4aa5e22020-05-26 17:19:30 +01004357 rtd->capture_widget = dai;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004358 }
Shreyas NC6c4b13b2020-02-25 21:39:14 +08004359
Charles Keepax595571c2020-04-09 19:12:07 +01004360 dapm_connect_dai_routes(&card->dapm, codec_dai, codec,
Charles Keepaxf4aa5e22020-05-26 17:19:30 +01004361 rtd->capture_widget,
Charles Keepax595571c2020-04-09 19:12:07 +01004362 cpu_dai, capture_cpu);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004363 }
4364}
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004365
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02004366static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
4367 int event)
4368{
4369 struct snd_soc_dapm_widget *w;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02004370 unsigned int ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02004371
Kuninori Morimoto0c01f6c2020-02-19 15:56:41 +09004372 w = snd_soc_dai_get_widget(dai, stream);
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02004373
4374 if (w) {
4375 dapm_mark_dirty(w, "stream event");
4376
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02004377 if (w->id == snd_soc_dapm_dai_in) {
4378 ep = SND_SOC_DAPM_EP_SOURCE;
4379 dapm_widget_invalidate_input_paths(w);
4380 } else {
4381 ep = SND_SOC_DAPM_EP_SINK;
4382 dapm_widget_invalidate_output_paths(w);
4383 }
4384
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02004385 switch (event) {
4386 case SND_SOC_DAPM_STREAM_START:
4387 w->active = 1;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02004388 w->is_ep = ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02004389 break;
4390 case SND_SOC_DAPM_STREAM_STOP:
4391 w->active = 0;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02004392 w->is_ep = 0;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02004393 break;
4394 case SND_SOC_DAPM_STREAM_SUSPEND:
4395 case SND_SOC_DAPM_STREAM_RESUME:
4396 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
4397 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
4398 break;
4399 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00004400 }
4401}
4402
Benoit Cousson44ba2642014-07-08 23:19:36 +02004403void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
4404{
Mengdong Lin1a497982015-11-18 02:34:11 -05004405 struct snd_soc_pcm_runtime *rtd;
Charles Keepax0eaef952020-04-09 19:12:09 +01004406 struct snd_soc_dai *codec_dai;
4407 int i;
Benoit Cousson44ba2642014-07-08 23:19:36 +02004408
4409 /* for each BE DAI link... */
Kuninori Morimotobcb1fd12018-09-18 01:29:35 +00004410 for_each_card_rtds(card, rtd) {
Benoit Cousson44ba2642014-07-08 23:19:36 +02004411 /*
4412 * dynamic FE links have no fixed DAI mapping.
4413 * CODEC<->CODEC links have no direct connection.
4414 */
Charles Keepax778ff5b2018-09-05 15:21:00 +01004415 if (rtd->dai_link->dynamic)
Benoit Cousson44ba2642014-07-08 23:19:36 +02004416 continue;
4417
Charles Keepax0eaef952020-04-09 19:12:09 +01004418 if (rtd->num_cpus == 1) {
4419 for_each_rtd_codec_dais(rtd, i, codec_dai)
4420 dapm_connect_dai_pair(card, rtd, codec_dai,
Mark Brown39400f32020-04-14 18:04:08 +01004421 asoc_rtd_to_cpu(rtd, 0));
Charles Keepax0eaef952020-04-09 19:12:09 +01004422 } else if (rtd->num_codecs == rtd->num_cpus) {
4423 for_each_rtd_codec_dais(rtd, i, codec_dai)
4424 dapm_connect_dai_pair(card, rtd, codec_dai,
Mark Brown39400f32020-04-14 18:04:08 +01004425 asoc_rtd_to_cpu(rtd, i));
Charles Keepax0eaef952020-04-09 19:12:09 +01004426 } else {
4427 dev_err(card->dev,
4428 "N cpus to M codecs link is not supported yet\n");
4429 }
Benoit Cousson44ba2642014-07-08 23:19:36 +02004430 }
4431}
4432
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004433static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4434 int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004435{
Kuninori Morimotoe3c3cf72020-03-16 15:37:09 +09004436 struct snd_soc_dai *dai;
Benoit Cousson44ba2642014-07-08 23:19:36 +02004437 int i;
4438
Kuninori Morimotoe3c3cf72020-03-16 15:37:09 +09004439 for_each_rtd_dais(rtd, i, dai)
4440 soc_dapm_dai_stream_event(dai, stream, event);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004441
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004442 dapm_power_widgets(rtd->card, event);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004443}
4444
4445/**
4446 * snd_soc_dapm_stream_event - send a stream event to the dapm core
4447 * @rtd: PCM runtime data
4448 * @stream: stream name
4449 * @event: stream event
4450 *
4451 * Sends a stream event to the dapm core. The core then makes any
4452 * necessary widget power changes.
4453 *
4454 * Returns 0 for success else error.
4455 */
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004456void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4457 int event)
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004458{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00004459 struct snd_soc_card *card = rtd->card;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004460
Liam Girdwood3cd04342012-03-09 12:02:08 +00004461 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004462 soc_dapm_stream_event(rtd, stream, event);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00004463 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004464}
Richard Purdie2b97eab2006-10-06 18:32:18 +02004465
Kuninori Morimoto3f4cf792020-01-10 11:36:23 +09004466void snd_soc_dapm_stream_stop(struct snd_soc_pcm_runtime *rtd, int stream)
4467{
4468 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
4469 if (snd_soc_runtime_ignore_pmdown_time(rtd)) {
4470 /* powered down playback stream now */
4471 snd_soc_dapm_stream_event(rtd,
4472 SNDRV_PCM_STREAM_PLAYBACK,
4473 SND_SOC_DAPM_STREAM_STOP);
4474 } else {
4475 /* start delayed pop wq here for playback streams */
4476 rtd->pop_wait = 1;
4477 queue_delayed_work(system_power_efficient_wq,
4478 &rtd->delayed_work,
4479 msecs_to_jiffies(rtd->pmdown_time));
4480 }
4481 } else {
4482 /* capture streams can be powered down now */
4483 snd_soc_dapm_stream_event(rtd, SNDRV_PCM_STREAM_CAPTURE,
4484 SND_SOC_DAPM_STREAM_STOP);
4485 }
4486}
4487EXPORT_SYMBOL_GPL(snd_soc_dapm_stream_stop);
4488
Richard Purdie2b97eab2006-10-06 18:32:18 +02004489/**
Charles Keepax11391102014-02-18 15:22:14 +00004490 * snd_soc_dapm_enable_pin_unlocked - enable pin.
4491 * @dapm: DAPM context
4492 * @pin: pin name
4493 *
4494 * Enables input/output pin and its parents or children widgets iff there is
4495 * a valid audio route and active audio stream.
4496 *
4497 * Requires external locking.
4498 *
4499 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4500 * do any widget power switching.
4501 */
4502int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4503 const char *pin)
4504{
4505 return snd_soc_dapm_set_pin(dapm, pin, 1);
4506}
4507EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
4508
4509/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004510 * snd_soc_dapm_enable_pin - enable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004511 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004512 * @pin: pin name
Richard Purdie2b97eab2006-10-06 18:32:18 +02004513 *
Mark Brown74b8f952009-06-06 11:26:15 +01004514 * Enables input/output pin and its parents or children widgets iff there is
Liam Girdwooda5302182008-07-07 13:35:17 +01004515 * a valid audio route and active audio stream.
Charles Keepax11391102014-02-18 15:22:14 +00004516 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004517 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4518 * do any widget power switching.
Richard Purdie2b97eab2006-10-06 18:32:18 +02004519 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004520int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004521{
Charles Keepax11391102014-02-18 15:22:14 +00004522 int ret;
4523
4524 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4525
4526 ret = snd_soc_dapm_set_pin(dapm, pin, 1);
4527
4528 mutex_unlock(&dapm->card->dapm_mutex);
4529
4530 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02004531}
Liam Girdwooda5302182008-07-07 13:35:17 +01004532EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004533
4534/**
Charles Keepax11391102014-02-18 15:22:14 +00004535 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4536 * @dapm: DAPM context
4537 * @pin: pin name
4538 *
4539 * Enables input/output pin regardless of any other state. This is
4540 * intended for use with microphone bias supplies used in microphone
4541 * jack detection.
4542 *
4543 * Requires external locking.
4544 *
4545 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4546 * do any widget power switching.
4547 */
4548int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4549 const char *pin)
4550{
4551 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4552
4553 if (!w) {
4554 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4555 return -EINVAL;
4556 }
4557
4558 dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02004559 if (!w->connected) {
4560 /*
4561 * w->force does not affect the number of input or output paths,
4562 * so we only have to recheck if w->connected is changed
4563 */
4564 dapm_widget_invalidate_input_paths(w);
4565 dapm_widget_invalidate_output_paths(w);
4566 w->connected = 1;
4567 }
Charles Keepax11391102014-02-18 15:22:14 +00004568 w->force = 1;
4569 dapm_mark_dirty(w, "force enable");
4570
4571 return 0;
4572}
4573EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
4574
4575/**
Mark Brownda341832010-03-15 19:23:37 +00004576 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004577 * @dapm: DAPM context
Mark Brownda341832010-03-15 19:23:37 +00004578 * @pin: pin name
4579 *
4580 * Enables input/output pin regardless of any other state. This is
4581 * intended for use with microphone bias supplies used in microphone
4582 * jack detection.
4583 *
4584 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4585 * do any widget power switching.
4586 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004587int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
4588 const char *pin)
Mark Brownda341832010-03-15 19:23:37 +00004589{
Charles Keepax11391102014-02-18 15:22:14 +00004590 int ret;
Mark Brownda341832010-03-15 19:23:37 +00004591
Charles Keepax11391102014-02-18 15:22:14 +00004592 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownda341832010-03-15 19:23:37 +00004593
Charles Keepax11391102014-02-18 15:22:14 +00004594 ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
Mark Brown0d867332011-04-06 11:38:14 +09004595
Charles Keepax11391102014-02-18 15:22:14 +00004596 mutex_unlock(&dapm->card->dapm_mutex);
4597
4598 return ret;
Mark Brownda341832010-03-15 19:23:37 +00004599}
4600EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4601
4602/**
Charles Keepax11391102014-02-18 15:22:14 +00004603 * snd_soc_dapm_disable_pin_unlocked - disable pin.
4604 * @dapm: DAPM context
4605 * @pin: pin name
4606 *
4607 * Disables input/output pin and its parents or children widgets.
4608 *
4609 * Requires external locking.
4610 *
4611 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4612 * do any widget power switching.
4613 */
4614int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4615 const char *pin)
4616{
4617 return snd_soc_dapm_set_pin(dapm, pin, 0);
4618}
4619EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4620
4621/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004622 * snd_soc_dapm_disable_pin - disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004623 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004624 * @pin: pin name
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004625 *
Mark Brown74b8f952009-06-06 11:26:15 +01004626 * Disables input/output pin and its parents or children widgets.
Charles Keepax11391102014-02-18 15:22:14 +00004627 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004628 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4629 * do any widget power switching.
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004630 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004631int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4632 const char *pin)
Liam Girdwooda5302182008-07-07 13:35:17 +01004633{
Charles Keepax11391102014-02-18 15:22:14 +00004634 int ret;
4635
4636 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4637
4638 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4639
4640 mutex_unlock(&dapm->card->dapm_mutex);
4641
4642 return ret;
Liam Girdwooda5302182008-07-07 13:35:17 +01004643}
4644EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4645
4646/**
Charles Keepax11391102014-02-18 15:22:14 +00004647 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4648 * @dapm: DAPM context
4649 * @pin: pin name
4650 *
4651 * Marks the specified pin as being not connected, disabling it along
4652 * any parent or child widgets. At present this is identical to
4653 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4654 * additional things such as disabling controls which only affect
4655 * paths through the pin.
4656 *
4657 * Requires external locking.
4658 *
4659 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4660 * do any widget power switching.
4661 */
4662int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4663 const char *pin)
4664{
4665 return snd_soc_dapm_set_pin(dapm, pin, 0);
4666}
4667EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4668
4669/**
Mark Brown5817b522008-09-24 11:23:11 +01004670 * snd_soc_dapm_nc_pin - permanently disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004671 * @dapm: DAPM context
Mark Brown5817b522008-09-24 11:23:11 +01004672 * @pin: pin name
4673 *
4674 * Marks the specified pin as being not connected, disabling it along
4675 * any parent or child widgets. At present this is identical to
4676 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4677 * additional things such as disabling controls which only affect
4678 * paths through the pin.
4679 *
4680 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4681 * do any widget power switching.
4682 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004683int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Mark Brown5817b522008-09-24 11:23:11 +01004684{
Charles Keepax11391102014-02-18 15:22:14 +00004685 int ret;
4686
4687 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4688
4689 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4690
4691 mutex_unlock(&dapm->card->dapm_mutex);
4692
4693 return ret;
Mark Brown5817b522008-09-24 11:23:11 +01004694}
4695EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4696
4697/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004698 * snd_soc_dapm_get_pin_status - get audio pin status
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004699 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004700 * @pin: audio signal pin endpoint (or start point)
4701 *
4702 * Get audio pin status - connected or disconnected.
4703 *
4704 * Returns 1 for connected otherwise 0.
4705 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004706int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4707 const char *pin)
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004708{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004709 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004710
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004711 if (w)
4712 return w->connected;
Stephen Warrena68b38a2011-04-19 15:25:11 -06004713
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004714 return 0;
4715}
Liam Girdwooda5302182008-07-07 13:35:17 +01004716EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004717
4718/**
Mark Brown1547aba2010-05-07 21:11:40 +01004719 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004720 * @dapm: DAPM context
Mark Brown1547aba2010-05-07 21:11:40 +01004721 * @pin: audio signal pin endpoint (or start point)
4722 *
4723 * Mark the given endpoint or pin as ignoring suspend. When the
4724 * system is disabled a path between two endpoints flagged as ignoring
4725 * suspend will not be disabled. The path must already be enabled via
4726 * normal means at suspend time, it will not be turned on if it was not
4727 * already enabled.
4728 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004729int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4730 const char *pin)
Mark Brown1547aba2010-05-07 21:11:40 +01004731{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004732 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
Mark Brown1547aba2010-05-07 21:11:40 +01004733
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004734 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004735 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004736 return -EINVAL;
Mark Brown1547aba2010-05-07 21:11:40 +01004737 }
4738
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004739 w->ignore_suspend = 1;
4740
4741 return 0;
Mark Brown1547aba2010-05-07 21:11:40 +01004742}
4743EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4744
Lars-Peter Clausencdc45082014-10-20 19:36:33 +02004745/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02004746 * snd_soc_dapm_free - free dapm resources
Peter Ujfalusi728a5222011-08-26 16:33:52 +03004747 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02004748 *
4749 * Free all dapm widgets and resources.
4750 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004751void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004752{
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02004753 dapm_debugfs_cleanup(dapm);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004754 dapm_free_widgets(dapm);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02004755 list_del(&dapm->list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004756}
4757EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4758
Kuninori Morimoto95c267d2019-08-23 09:58:52 +09004759void snd_soc_dapm_init(struct snd_soc_dapm_context *dapm,
4760 struct snd_soc_card *card,
4761 struct snd_soc_component *component)
4762{
4763 dapm->card = card;
4764 dapm->component = component;
4765 dapm->bias_level = SND_SOC_BIAS_OFF;
4766
4767 if (component) {
4768 dapm->dev = component->dev;
Julia Lawalla1344da2020-10-11 11:19:39 +02004769 dapm->idle_bias_off = !component->driver->idle_bias_on;
Kuninori Morimoto95c267d2019-08-23 09:58:52 +09004770 dapm->suspend_bias_off = component->driver->suspend_bias_off;
4771 } else {
4772 dapm->dev = card->dev;
4773 }
4774
4775 INIT_LIST_HEAD(&dapm->list);
Kuninori Morimotodf817f82020-03-09 13:08:16 +09004776 /* see for_each_card_dapms */
Kuninori Morimoto95c267d2019-08-23 09:58:52 +09004777 list_add(&dapm->list, &card->dapm_list);
4778}
4779EXPORT_SYMBOL_GPL(snd_soc_dapm_init);
4780
Xiang Xiao57996352014-03-02 00:04:02 +08004781static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
Mark Brown51737472009-06-22 13:16:51 +01004782{
Liam Girdwood01005a72012-07-06 16:57:05 +01004783 struct snd_soc_card *card = dapm->card;
Mark Brown51737472009-06-22 13:16:51 +01004784 struct snd_soc_dapm_widget *w;
4785 LIST_HEAD(down_list);
4786 int powerdown = 0;
4787
Liam Girdwood01005a72012-07-06 16:57:05 +01004788 mutex_lock(&card->dapm_mutex);
4789
Kuninori Morimoto14596692020-03-09 13:08:21 +09004790 for_each_card_widgets(dapm->card, w) {
Jarkko Nikula97c866d2010-12-14 12:18:31 +02004791 if (w->dapm != dapm)
4792 continue;
Mark Brown51737472009-06-22 13:16:51 +01004793 if (w->power) {
Mark Brown828a8422011-01-15 13:14:30 +00004794 dapm_seq_insert(w, &down_list, false);
Charles Keepax9b319302020-02-28 15:31:45 +00004795 w->new_power = 0;
Mark Brown51737472009-06-22 13:16:51 +01004796 powerdown = 1;
4797 }
4798 }
4799
4800 /* If there were no widgets to power down we're already in
4801 * standby.
4802 */
4803 if (powerdown) {
Mark Brown7679e422012-02-22 15:52:56 +00004804 if (dapm->bias_level == SND_SOC_BIAS_ON)
4805 snd_soc_dapm_set_bias_level(dapm,
4806 SND_SOC_BIAS_PREPARE);
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004807 dapm_seq_run(card, &down_list, 0, false);
Mark Brown7679e422012-02-22 15:52:56 +00004808 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4809 snd_soc_dapm_set_bias_level(dapm,
4810 SND_SOC_BIAS_STANDBY);
Mark Brown51737472009-06-22 13:16:51 +01004811 }
Liam Girdwood01005a72012-07-06 16:57:05 +01004812
4813 mutex_unlock(&card->dapm_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004814}
Mark Brown51737472009-06-22 13:16:51 +01004815
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004816/*
4817 * snd_soc_dapm_shutdown - callback for system shutdown
4818 */
4819void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4820{
Xiang Xiao57996352014-03-02 00:04:02 +08004821 struct snd_soc_dapm_context *dapm;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004822
Kuninori Morimotodf817f82020-03-09 13:08:16 +09004823 for_each_card_dapms(card, dapm) {
Xiang Xiao17282ba2014-03-02 00:04:03 +08004824 if (dapm != &card->dapm) {
4825 soc_dapm_shutdown_dapm(dapm);
4826 if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4827 snd_soc_dapm_set_bias_level(dapm,
4828 SND_SOC_BIAS_OFF);
4829 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004830 }
Xiang Xiao17282ba2014-03-02 00:04:03 +08004831
4832 soc_dapm_shutdown_dapm(&card->dapm);
4833 if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4834 snd_soc_dapm_set_bias_level(&card->dapm,
4835 SND_SOC_BIAS_OFF);
Mark Brown51737472009-06-22 13:16:51 +01004836}
4837
Richard Purdie2b97eab2006-10-06 18:32:18 +02004838/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004839MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Richard Purdie2b97eab2006-10-06 18:32:18 +02004840MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4841MODULE_LICENSE("GPL");