blob: d40bfefe30a786734183f7cb161a774c049997d5 [file] [log] [blame]
Richard Purdie2b97eab2006-10-06 18:32:18 +02001/*
2 * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwoodd3311242008-10-12 13:17:36 +01005 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Richard Purdie2b97eab2006-10-06 18:32:18 +02006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
Richard Purdie2b97eab2006-10-06 18:32:18 +020012 * Features:
13 * o Changes power status of internal codec blocks depending on the
14 * dynamic configuration of codec internal audio paths and active
Mark Brown74b8f952009-06-06 11:26:15 +010015 * DACs/ADCs.
Richard Purdie2b97eab2006-10-06 18:32:18 +020016 * o Platform power domain - can support external components i.e. amps and
Liam Girdwood612a3fe2012-02-06 16:05:29 +000017 * mic/headphone insertion events.
Richard Purdie2b97eab2006-10-06 18:32:18 +020018 * o Automatic Mic Bias support
19 * o Jack insertion power event initiation - e.g. hp insertion will enable
20 * sinks, dacs, etc
Liam Girdwood612a3fe2012-02-06 16:05:29 +000021 * o Delayed power down of audio subsystem to reduce pops between a quick
Richard Purdie2b97eab2006-10-06 18:32:18 +020022 * device reopen.
23 *
Richard Purdie2b97eab2006-10-06 18:32:18 +020024 */
25
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/init.h>
Mark Brown9d0624a2011-02-18 11:49:43 -080029#include <linux/async.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020030#include <linux/delay.h>
31#include <linux/pm.h>
32#include <linux/bitops.h>
33#include <linux/platform_device.h>
34#include <linux/jiffies.h>
Takashi Iwai20496ff2009-08-24 09:40:34 +020035#include <linux/debugfs.h>
Mark Brownf1aac482011-12-05 15:17:06 +000036#include <linux/pm_runtime.h>
Mark Brown62ea8742012-01-21 21:14:48 +000037#include <linux/regulator/consumer.h>
Ola Liljad7e7eb92012-05-24 15:26:25 +020038#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020040#include <sound/core.h>
41#include <sound/pcm.h>
42#include <sound/pcm_params.h>
Liam Girdwoodce6120c2010-11-05 15:53:46 +020043#include <sound/soc.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020044#include <sound/initval.h>
45
Mark Brown84e90932010-11-04 00:07:02 -040046#include <trace/events/asoc.h>
47
Mark Brownde02d072011-09-20 21:43:24 +010048#define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++;
49
Lars-Peter Clausena3423b02015-08-11 21:38:00 +020050#define SND_SOC_DAPM_DIR_REVERSE(x) ((x == SND_SOC_DAPM_DIR_IN) ? \
51 SND_SOC_DAPM_DIR_OUT : SND_SOC_DAPM_DIR_IN)
52
53#define snd_soc_dapm_for_each_direction(dir) \
54 for ((dir) = SND_SOC_DAPM_DIR_IN; (dir) <= SND_SOC_DAPM_DIR_OUT; \
55 (dir)++)
56
Lars-Peter Clausen57295072013-08-05 11:27:31 +020057static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
58 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
59 const char *control,
60 int (*connected)(struct snd_soc_dapm_widget *source,
61 struct snd_soc_dapm_widget *sink));
Vladimir Zapolskiy5353f652015-06-02 00:57:53 +030062
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +010063struct snd_soc_dapm_widget *
Lars-Peter Clausen57295072013-08-05 11:27:31 +020064snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
65 const struct snd_soc_dapm_widget *widget);
66
Liam Girdwood02aa78a2015-05-25 18:21:17 +010067struct snd_soc_dapm_widget *
68snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +020069 const struct snd_soc_dapm_widget *widget);
70
Richard Purdie2b97eab2006-10-06 18:32:18 +020071/* dapm power sequences - make this per codec in the future */
72static int dapm_up_seq[] = {
Mark Brown38357ab2009-06-06 19:03:23 +010073 [snd_soc_dapm_pre] = 0,
Mark Brown62ea8742012-01-21 21:14:48 +000074 [snd_soc_dapm_regulator_supply] = 1,
Ola Liljad7e7eb92012-05-24 15:26:25 +020075 [snd_soc_dapm_clock_supply] = 1,
Mark Brown1dd275b2013-10-09 13:56:37 +010076 [snd_soc_dapm_supply] = 2,
77 [snd_soc_dapm_micbias] = 3,
Mark Brownc74184e2012-04-04 22:12:09 +010078 [snd_soc_dapm_dai_link] = 2,
Mark Brown1dd275b2013-10-09 13:56:37 +010079 [snd_soc_dapm_dai_in] = 4,
80 [snd_soc_dapm_dai_out] = 4,
Sudheer Papothi8f59bd42016-01-29 01:47:18 +053081 [snd_soc_dapm_adc] = 4,
Mark Brown1dd275b2013-10-09 13:56:37 +010082 [snd_soc_dapm_mic] = 5,
83 [snd_soc_dapm_mux] = 6,
Lars-Peter Clausend714f972015-05-01 18:02:43 +020084 [snd_soc_dapm_demux] = 6,
Mark Brown1dd275b2013-10-09 13:56:37 +010085 [snd_soc_dapm_dac] = 7,
86 [snd_soc_dapm_switch] = 8,
87 [snd_soc_dapm_mixer] = 8,
88 [snd_soc_dapm_mixer_named_ctl] = 8,
89 [snd_soc_dapm_pga] = 9,
Sudheer Papothi8f59bd42016-01-29 01:47:18 +053090 [snd_soc_dapm_aif_in] = 9,
91 [snd_soc_dapm_aif_out] = 9,
Mark Brown1dd275b2013-10-09 13:56:37 +010092 [snd_soc_dapm_out_drv] = 11,
93 [snd_soc_dapm_hp] = 11,
94 [snd_soc_dapm_spk] = 11,
95 [snd_soc_dapm_line] = 11,
96 [snd_soc_dapm_kcontrol] = 12,
97 [snd_soc_dapm_post] = 13,
Richard Purdie2b97eab2006-10-06 18:32:18 +020098};
Ian Moltonca9c1aa2009-01-06 20:11:51 +000099
Richard Purdie2b97eab2006-10-06 18:32:18 +0200100static int dapm_down_seq[] = {
Mark Brown38357ab2009-06-06 19:03:23 +0100101 [snd_soc_dapm_pre] = 0,
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200102 [snd_soc_dapm_kcontrol] = 1,
Sudheer Papothi8f59bd42016-01-29 01:47:18 +0530103 [snd_soc_dapm_aif_in] = 2,
104 [snd_soc_dapm_aif_out] = 2,
Banajit Goswami6d6a6022014-08-21 16:18:40 -0700105 [snd_soc_dapm_adc] = 5,
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200106 [snd_soc_dapm_hp] = 3,
107 [snd_soc_dapm_spk] = 3,
108 [snd_soc_dapm_line] = 3,
109 [snd_soc_dapm_out_drv] = 3,
Mark Brown38357ab2009-06-06 19:03:23 +0100110 [snd_soc_dapm_pga] = 4,
Lars-Peter Clausenefc77e32013-06-14 13:16:50 +0200111 [snd_soc_dapm_switch] = 5,
Mark Brown38357ab2009-06-06 19:03:23 +0100112 [snd_soc_dapm_mixer_named_ctl] = 5,
Mark Browne3d4dab2009-06-07 13:08:45 +0100113 [snd_soc_dapm_mixer] = 5,
114 [snd_soc_dapm_dac] = 6,
115 [snd_soc_dapm_mic] = 7,
116 [snd_soc_dapm_micbias] = 8,
117 [snd_soc_dapm_mux] = 9,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200118 [snd_soc_dapm_demux] = 9,
Mark Brown46162742013-06-05 19:36:11 +0100119 [snd_soc_dapm_dai_in] = 10,
120 [snd_soc_dapm_dai_out] = 10,
Mark Brownc74184e2012-04-04 22:12:09 +0100121 [snd_soc_dapm_dai_link] = 11,
Mark Brownc74184e2012-04-04 22:12:09 +0100122 [snd_soc_dapm_supply] = 12,
Mark Brown1dd275b2013-10-09 13:56:37 +0100123 [snd_soc_dapm_clock_supply] = 13,
124 [snd_soc_dapm_regulator_supply] = 13,
125 [snd_soc_dapm_post] = 14,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200126};
127
Mark Brownf9fa2b12014-03-06 16:49:11 +0800128static void dapm_assert_locked(struct snd_soc_dapm_context *dapm)
129{
130 if (dapm->card && dapm->card->instantiated)
131 lockdep_assert_held(&dapm->card->dapm_mutex);
132}
133
Troy Kisky12ef1932008-10-13 17:42:14 -0700134static void pop_wait(u32 pop_time)
Mark Brown15e4c722008-07-02 11:51:20 +0100135{
136 if (pop_time)
137 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
138}
139
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200140static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...)
Mark Brown15e4c722008-07-02 11:51:20 +0100141{
142 va_list args;
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200143 char *buf;
144
145 if (!pop_time)
146 return;
147
148 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
149 if (buf == NULL)
150 return;
Mark Brown15e4c722008-07-02 11:51:20 +0100151
152 va_start(args, fmt);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200153 vsnprintf(buf, PAGE_SIZE, fmt, args);
Takashi Iwai9d01df02010-12-22 14:08:40 +0100154 dev_info(dev, "%s", buf);
Mark Brown15e4c722008-07-02 11:51:20 +0100155 va_end(args);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200156
157 kfree(buf);
Mark Brown15e4c722008-07-02 11:51:20 +0100158}
159
Mark Browndb432b42011-10-03 21:06:40 +0100160static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w)
161{
162 return !list_empty(&w->dirty);
163}
164
Mark Brown492c0a12014-03-06 16:15:48 +0800165static void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason)
Mark Browndb432b42011-10-03 21:06:40 +0100166{
Mark Brownf9fa2b12014-03-06 16:49:11 +0800167 dapm_assert_locked(w->dapm);
168
Mark Brown75c1f892011-10-04 22:28:08 +0100169 if (!dapm_dirty_widget(w)) {
170 dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n",
171 w->name, reason);
Mark Browndb432b42011-10-03 21:06:40 +0100172 list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty);
Mark Brown75c1f892011-10-04 22:28:08 +0100173 }
Mark Browndb432b42011-10-03 21:06:40 +0100174}
175
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200176/*
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200177 * Common implementation for dapm_widget_invalidate_input_paths() and
178 * dapm_widget_invalidate_output_paths(). The function is inlined since the
179 * combined size of the two specialized functions is only marginally larger then
180 * the size of the generic function and at the same time the fast path of the
181 * specialized functions is significantly smaller than the generic function.
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200182 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200183static __always_inline void dapm_widget_invalidate_paths(
184 struct snd_soc_dapm_widget *w, enum snd_soc_dapm_direction dir)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200185{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200186 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
187 struct snd_soc_dapm_widget *node;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200188 struct snd_soc_dapm_path *p;
189 LIST_HEAD(list);
190
191 dapm_assert_locked(w->dapm);
192
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200193 if (w->endpoints[dir] == -1)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200194 return;
195
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200196 list_add_tail(&w->work_list, &list);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200197 w->endpoints[dir] = -1;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200198
199 list_for_each_entry(w, &list, work_list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200200 snd_soc_dapm_widget_for_each_path(w, dir, p) {
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200201 if (p->is_supply || p->weak || !p->connect)
202 continue;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200203 node = p->node[rdir];
204 if (node->endpoints[dir] != -1) {
205 node->endpoints[dir] = -1;
206 list_add_tail(&node->work_list, &list);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200207 }
208 }
209 }
210}
211
212/*
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200213 * dapm_widget_invalidate_input_paths() - Invalidate the cached number of
214 * input paths
215 * @w: The widget for which to invalidate the cached number of input paths
216 *
217 * Resets the cached number of inputs for the specified widget and all widgets
218 * that can be reached via outcoming paths from the widget.
219 *
220 * This function must be called if the number of output paths for a widget might
221 * have changed. E.g. if the source state of a widget changes or a path is added
222 * or activated with the widget as the sink.
223 */
224static void dapm_widget_invalidate_input_paths(struct snd_soc_dapm_widget *w)
225{
226 dapm_widget_invalidate_paths(w, SND_SOC_DAPM_DIR_IN);
227}
228
229/*
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200230 * dapm_widget_invalidate_output_paths() - Invalidate the cached number of
231 * output paths
232 * @w: The widget for which to invalidate the cached number of output paths
233 *
234 * Resets the cached number of outputs for the specified widget and all widgets
235 * that can be reached via incoming paths from the widget.
236 *
237 * This function must be called if the number of output paths for a widget might
238 * have changed. E.g. if the sink state of a widget changes or a path is added
239 * or activated with the widget as the source.
240 */
241static void dapm_widget_invalidate_output_paths(struct snd_soc_dapm_widget *w)
242{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200243 dapm_widget_invalidate_paths(w, SND_SOC_DAPM_DIR_OUT);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200244}
245
246/*
247 * dapm_path_invalidate() - Invalidates the cached number of inputs and outputs
248 * for the widgets connected to a path
249 * @p: The path to invalidate
250 *
251 * Resets the cached number of inputs for the sink of the path and the cached
252 * number of outputs for the source of the path.
253 *
254 * This function must be called when a path is added, removed or the connected
255 * state changes.
256 */
257static void dapm_path_invalidate(struct snd_soc_dapm_path *p)
258{
259 /*
260 * Weak paths or supply paths do not influence the number of input or
261 * output paths of their neighbors.
262 */
263 if (p->weak || p->is_supply)
264 return;
265
266 /*
267 * The number of connected endpoints is the sum of the number of
268 * connected endpoints of all neighbors. If a node with 0 connected
269 * endpoints is either connected or disconnected that sum won't change,
270 * so there is no need to re-check the path.
271 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200272 if (p->source->endpoints[SND_SOC_DAPM_DIR_IN] != 0)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200273 dapm_widget_invalidate_input_paths(p->sink);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200274 if (p->sink->endpoints[SND_SOC_DAPM_DIR_OUT] != 0)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200275 dapm_widget_invalidate_output_paths(p->source);
276}
277
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200278void dapm_mark_endpoints_dirty(struct snd_soc_card *card)
Mark Browne2d32ff2012-08-31 17:38:32 -0700279{
Mark Browne2d32ff2012-08-31 17:38:32 -0700280 struct snd_soc_dapm_widget *w;
281
282 mutex_lock(&card->dapm_mutex);
283
284 list_for_each_entry(w, &card->widgets, list) {
Sudheer Papothi9eb600c2016-01-29 02:04:49 +0530285 if (w->ignore_suspend)
286 continue;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200287 if (w->is_ep) {
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200288 dapm_mark_dirty(w, "Rechecking endpoints");
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200289 if (w->is_ep & SND_SOC_DAPM_EP_SINK)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200290 dapm_widget_invalidate_output_paths(w);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200291 if (w->is_ep & SND_SOC_DAPM_EP_SOURCE)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200292 dapm_widget_invalidate_input_paths(w);
293 }
Mark Browne2d32ff2012-08-31 17:38:32 -0700294 }
295
296 mutex_unlock(&card->dapm_mutex);
297}
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200298EXPORT_SYMBOL_GPL(dapm_mark_endpoints_dirty);
Mark Browne2d32ff2012-08-31 17:38:32 -0700299
Richard Purdie2b97eab2006-10-06 18:32:18 +0200300/* create a new dapm widget */
Takashi Iwai88cb4292007-02-05 14:56:20 +0100301static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
Richard Purdie2b97eab2006-10-06 18:32:18 +0200302 const struct snd_soc_dapm_widget *_widget)
303{
Takashi Iwai88cb4292007-02-05 14:56:20 +0100304 return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200305}
306
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200307struct dapm_kcontrol_data {
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200308 unsigned int value;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200309 struct snd_soc_dapm_widget *widget;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200310 struct list_head paths;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200311 struct snd_soc_dapm_widget_list *wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200312};
313
314static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100315 struct snd_kcontrol *kcontrol, const char *ctrl_name)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200316{
317 struct dapm_kcontrol_data *data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200318 struct soc_mixer_control *mc;
Charles Keepax561ed682015-05-01 12:37:26 +0100319 struct soc_enum *e;
Charles Keepax773da9b2015-05-01 12:37:25 +0100320 const char *name;
321 int ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200322
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200323 data = kzalloc(sizeof(*data), GFP_KERNEL);
Charles Keepax40b7bea2015-05-01 12:37:24 +0100324 if (!data)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200325 return -ENOMEM;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200326
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200327 INIT_LIST_HEAD(&data->paths);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200328
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200329 switch (widget->id) {
330 case snd_soc_dapm_switch:
331 case snd_soc_dapm_mixer:
332 case snd_soc_dapm_mixer_named_ctl:
333 mc = (struct soc_mixer_control *)kcontrol->private_value;
334
335 if (mc->autodisable) {
336 struct snd_soc_dapm_widget template;
337
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100338 name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name,
Charles Keepax773da9b2015-05-01 12:37:25 +0100339 "Autodisable");
340 if (!name) {
341 ret = -ENOMEM;
342 goto err_data;
343 }
344
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200345 memset(&template, 0, sizeof(template));
346 template.reg = mc->reg;
347 template.mask = (1 << fls(mc->max)) - 1;
348 template.shift = mc->shift;
349 if (mc->invert)
350 template.off_val = mc->max;
351 else
352 template.off_val = 0;
353 template.on_val = template.off_val;
354 template.id = snd_soc_dapm_kcontrol;
Charles Keepax773da9b2015-05-01 12:37:25 +0100355 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200356
Lars-Peter Clausen2daabd72013-08-30 17:39:33 +0200357 data->value = template.on_val;
358
Liam Girdwood02aa78a2015-05-25 18:21:17 +0100359 data->widget =
360 snd_soc_dapm_new_control_unlocked(widget->dapm,
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200361 &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200362 kfree(name);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200363 if (!data->widget) {
Charles Keepax773da9b2015-05-01 12:37:25 +0100364 ret = -ENOMEM;
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200365 goto err_data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200366 }
367 }
368 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200369 case snd_soc_dapm_demux:
Charles Keepax561ed682015-05-01 12:37:26 +0100370 case snd_soc_dapm_mux:
371 e = (struct soc_enum *)kcontrol->private_value;
372
373 if (e->autodisable) {
374 struct snd_soc_dapm_widget template;
375
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100376 name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name,
Charles Keepax561ed682015-05-01 12:37:26 +0100377 "Autodisable");
378 if (!name) {
379 ret = -ENOMEM;
380 goto err_data;
381 }
382
383 memset(&template, 0, sizeof(template));
384 template.reg = e->reg;
385 template.mask = e->mask << e->shift_l;
386 template.shift = e->shift_l;
387 template.off_val = snd_soc_enum_item_to_val(e, 0);
388 template.on_val = template.off_val;
389 template.id = snd_soc_dapm_kcontrol;
390 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200391
392 data->value = template.on_val;
393
Charles Keepaxffacb482015-06-26 10:39:43 +0100394 data->widget = snd_soc_dapm_new_control_unlocked(
395 widget->dapm, &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200396 kfree(name);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200397 if (!data->widget) {
Charles Keepax561ed682015-05-01 12:37:26 +0100398 ret = -ENOMEM;
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200399 goto err_data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200400 }
Charles Keepax561ed682015-05-01 12:37:26 +0100401
402 snd_soc_dapm_add_path(widget->dapm, data->widget,
403 widget, NULL, NULL);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200404 }
405 break;
406 default:
407 break;
408 }
409
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200410 kcontrol->private_data = data;
411
412 return 0;
Charles Keepax773da9b2015-05-01 12:37:25 +0100413
Charles Keepax773da9b2015-05-01 12:37:25 +0100414err_data:
415 kfree(data);
416 return ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200417}
418
419static void dapm_kcontrol_free(struct snd_kcontrol *kctl)
420{
421 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kctl);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200422 kfree(data->wlist);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200423 kfree(data);
424}
425
Banajit Goswamid7672b72017-07-21 01:13:18 -0700426static struct snd_soc_dapm_widget_list *dapm_kcontrol_get_wlist(
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200427 const struct snd_kcontrol *kcontrol)
428{
429 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
430
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200431 return data->wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200432}
433
434static int dapm_kcontrol_add_widget(struct snd_kcontrol *kcontrol,
435 struct snd_soc_dapm_widget *widget)
436{
437 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200438 struct snd_soc_dapm_widget_list *new_wlist;
439 unsigned int n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200440
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200441 if (data->wlist)
442 n = data->wlist->num_widgets + 1;
443 else
444 n = 1;
445
446 new_wlist = krealloc(data->wlist,
447 sizeof(*new_wlist) + sizeof(widget) * n, GFP_KERNEL);
448 if (!new_wlist)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200449 return -ENOMEM;
450
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200451 new_wlist->widgets[n - 1] = widget;
452 new_wlist->num_widgets = n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200453
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200454 data->wlist = new_wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200455
456 return 0;
457}
458
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200459static void dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol,
460 struct snd_soc_dapm_path *path)
461{
462 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
463
464 list_add_tail(&path->list_kcontrol, &data->paths);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200465}
466
467static bool dapm_kcontrol_is_powered(const struct snd_kcontrol *kcontrol)
468{
469 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
470
471 if (!data->widget)
472 return true;
473
474 return data->widget->power;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200475}
476
477static struct list_head *dapm_kcontrol_get_path_list(
478 const struct snd_kcontrol *kcontrol)
479{
480 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
481
482 return &data->paths;
483}
484
485#define dapm_kcontrol_for_each_path(path, kcontrol) \
486 list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \
487 list_kcontrol)
488
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530489unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol *kcontrol)
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200490{
491 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
492
493 return data->value;
494}
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530495EXPORT_SYMBOL_GPL(dapm_kcontrol_get_value);
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200496
497static bool dapm_kcontrol_set_value(const struct snd_kcontrol *kcontrol,
498 unsigned int value)
499{
500 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
501
502 if (data->value == value)
503 return false;
504
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200505 if (data->widget)
506 data->widget->on_val = value;
507
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200508 data->value = value;
509
510 return true;
511}
512
Lars-Peter Clauseneee5d7f2013-07-29 17:13:57 +0200513/**
Mythri P K93e39a12015-10-20 22:30:08 +0530514 * snd_soc_dapm_kcontrol_widget() - Returns the widget associated to a
515 * kcontrol
516 * @kcontrol: The kcontrol
517 */
518struct snd_soc_dapm_widget *snd_soc_dapm_kcontrol_widget(
519 struct snd_kcontrol *kcontrol)
520{
521 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0];
522}
523EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_widget);
524
525/**
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200526 * snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a
527 * kcontrol
528 * @kcontrol: The kcontrol
529 *
530 * Note: This function must only be used on kcontrols that are known to have
531 * been registered for a CODEC. Otherwise the behaviour is undefined.
532 */
533struct snd_soc_dapm_context *snd_soc_dapm_kcontrol_dapm(
534 struct snd_kcontrol *kcontrol)
535{
536 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->dapm;
537}
538EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_dapm);
539
Liam Girdwood6c120e12012-02-15 15:15:34 +0000540static void dapm_reset(struct snd_soc_card *card)
541{
542 struct snd_soc_dapm_widget *w;
543
Mark Brownf9fa2b12014-03-06 16:49:11 +0800544 lockdep_assert_held(&card->dapm_mutex);
545
Liam Girdwood6c120e12012-02-15 15:15:34 +0000546 memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
547
548 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +0200549 w->new_power = w->power;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000550 w->power_checked = false;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000551 }
552}
553
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200554static const char *soc_dapm_prefix(struct snd_soc_dapm_context *dapm)
555{
556 if (!dapm->component)
557 return NULL;
558 return dapm->component->name_prefix;
559}
560
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200561static int soc_dapm_read(struct snd_soc_dapm_context *dapm, int reg,
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -0800562 unsigned int *value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100563{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200564 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200565 return -EIO;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200566 return snd_soc_component_read(dapm->component, reg, value);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100567}
568
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200569static int soc_dapm_update_bits(struct snd_soc_dapm_context *dapm,
Bard Liao34775012014-04-17 20:12:56 +0800570 int reg, unsigned int mask, unsigned int value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100571{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200572 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200573 return -EIO;
Mark Brownfcf6c5e2014-12-15 13:08:48 +0000574 return snd_soc_component_update_bits(dapm->component, reg,
575 mask, value);
Liam Girdwood49575fb52012-03-06 18:16:19 +0000576}
577
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200578static int soc_dapm_test_bits(struct snd_soc_dapm_context *dapm,
579 int reg, unsigned int mask, unsigned int value)
580{
581 if (!dapm->component)
582 return -EIO;
583 return snd_soc_component_test_bits(dapm->component, reg, mask, value);
584}
585
Mark Browneb270e92013-10-09 13:52:52 +0100586static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm)
587{
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200588 if (dapm->component)
589 snd_soc_component_async_complete(dapm->component);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100590}
591
Charles Keepax45a110a2015-05-11 13:50:30 +0100592static struct snd_soc_dapm_widget *
593dapm_wcache_lookup(struct snd_soc_dapm_wcache *wcache, const char *name)
594{
595 struct snd_soc_dapm_widget *w = wcache->widget;
596 struct list_head *wlist;
597 const int depth = 2;
598 int i = 0;
599
600 if (w) {
601 wlist = &w->dapm->card->widgets;
602
603 list_for_each_entry_from(w, wlist, list) {
604 if (!strcmp(name, w->name))
605 return w;
606
607 if (++i == depth)
608 break;
609 }
610 }
611
612 return NULL;
613}
614
615static inline void dapm_wcache_update(struct snd_soc_dapm_wcache *wcache,
616 struct snd_soc_dapm_widget *w)
617{
618 wcache->widget = w;
619}
620
Mark Brown452c5ea2009-05-17 21:41:23 +0100621/**
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200622 * snd_soc_dapm_force_bias_level() - Sets the DAPM bias level
623 * @dapm: The DAPM context for which to set the level
624 * @level: The level to set
625 *
626 * Forces the DAPM bias level to a specific state. It will call the bias level
627 * callback of DAPM context with the specified level. This will even happen if
628 * the context is already at the same level. Furthermore it will not go through
629 * the normal bias level sequencing, meaning any intermediate states between the
630 * current and the target state will not be entered.
631 *
632 * Note that the change in bias level is only temporary and the next time
633 * snd_soc_dapm_sync() is called the state will be set to the level as
634 * determined by the DAPM core. The function is mainly intended to be used to
635 * used during probe or resume from suspend to power up the device so
636 * initialization can be done, before the DAPM core takes over.
637 */
638int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm,
639 enum snd_soc_bias_level level)
640{
641 int ret = 0;
642
643 if (dapm->set_bias_level)
644 ret = dapm->set_bias_level(dapm, level);
645
Lars-Peter Clausenf4bf8d72015-04-27 22:13:25 +0200646 if (ret == 0)
647 dapm->bias_level = level;
648
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200649 return ret;
650}
651EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level);
652
Mark Brown452c5ea2009-05-17 21:41:23 +0100653/**
654 * snd_soc_dapm_set_bias_level - set the bias level for the system
Mark Browned5a4c42011-02-18 11:12:42 -0800655 * @dapm: DAPM context
Mark Brown452c5ea2009-05-17 21:41:23 +0100656 * @level: level to configure
657 *
658 * Configure the bias (power) levels for the SoC audio device.
659 *
660 * Returns 0 for success else error.
661 */
Mark Browned5a4c42011-02-18 11:12:42 -0800662static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200663 enum snd_soc_bias_level level)
Mark Brown452c5ea2009-05-17 21:41:23 +0100664{
Mark Browned5a4c42011-02-18 11:12:42 -0800665 struct snd_soc_card *card = dapm->card;
Mark Brown452c5ea2009-05-17 21:41:23 +0100666 int ret = 0;
667
Mark Brown84e90932010-11-04 00:07:02 -0400668 trace_snd_soc_bias_level_start(card, level);
669
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000670 if (card && card->set_bias_level)
Mark Brownd4c60052011-06-06 19:13:23 +0100671 ret = card->set_bias_level(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100672 if (ret != 0)
673 goto out;
Mark Brown452c5ea2009-05-17 21:41:23 +0100674
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200675 if (!card || dapm != &card->dapm)
676 ret = snd_soc_dapm_force_bias_level(dapm, level);
Liam Girdwood41231282012-07-06 16:56:16 +0100677
Mark Brown171ec6b2011-06-06 18:15:19 +0100678 if (ret != 0)
679 goto out;
680
681 if (card && card->set_bias_level_post)
Mark Brownd4c60052011-06-06 19:13:23 +0100682 ret = card->set_bias_level_post(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100683out:
Mark Brown84e90932010-11-04 00:07:02 -0400684 trace_snd_soc_bias_level_done(card, level);
685
Mark Brown452c5ea2009-05-17 21:41:23 +0100686 return ret;
687}
688
Mark Brown74b8f952009-06-06 11:26:15 +0100689/* connect mux widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200690static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200691 struct snd_soc_dapm_path *path, const char *control_name,
692 struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200693{
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200694 const struct snd_kcontrol_new *kcontrol = &w->kcontrol_news[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +0200695 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100696 unsigned int val, item;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200697 int i;
698
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100699 if (e->reg != SND_SOC_NOPM) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200700 soc_dapm_read(dapm, e->reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100701 val = (val >> e->shift_l) & e->mask;
702 item = snd_soc_enum_val_to_item(e, val);
703 } else {
704 /* since a virtual mux has no backing registers to
705 * decide which path to connect, it will try to match
706 * with the first enumeration. This is to ensure
707 * that the default mux choice (the first) will be
708 * correctly powered up during initialization.
709 */
710 item = 0;
711 }
712
Takashi Iwai9a8d38d2014-02-18 08:11:42 +0100713 for (i = 0; i < e->items; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200714 if (!(strcmp(control_name, e->texts[i]))) {
Rasmus Villemoes98ad73c2014-10-21 17:01:15 +0200715 path->name = e->texts[i];
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100716 if (i == item)
717 path->connect = 1;
718 else
719 path->connect = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200720 return 0;
721 }
722 }
723
724 return -ENODEV;
725}
726
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100727/* set up initial codec paths */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200728static void dapm_set_mixer_path_status(struct snd_soc_dapm_path *p, int i)
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100729{
730 struct soc_mixer_control *mc = (struct soc_mixer_control *)
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200731 p->sink->kcontrol_news[i].private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100732 unsigned int reg = mc->reg;
733 unsigned int shift = mc->shift;
734 unsigned int max = mc->max;
735 unsigned int mask = (1 << fls(max)) - 1;
736 unsigned int invert = mc->invert;
Laxminath Kasam29af16f2016-02-24 15:40:46 +0530737 unsigned int val = 0;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100738
739 if (reg != SND_SOC_NOPM) {
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200740 soc_dapm_read(p->sink->dapm, reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100741 val = (val >> shift) & mask;
742 if (invert)
743 val = max - val;
744 p->connect = !!val;
745 } else {
746 p->connect = 0;
747 }
748}
749
Mark Brown74b8f952009-06-06 11:26:15 +0100750/* connect mixer widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200751static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200752 struct snd_soc_dapm_path *path, const char *control_name)
753{
754 int i;
755
756 /* search for mixer kcontrol */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200757 for (i = 0; i < path->sink->num_kcontrols; i++) {
758 if (!strcmp(control_name, path->sink->kcontrol_news[i].name)) {
759 path->name = path->sink->kcontrol_news[i].name;
760 dapm_set_mixer_path_status(path, i);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200761 return 0;
762 }
763 }
764 return -ENODEV;
765}
766
Stephen Warrenaf468002011-04-28 17:38:01 -0600767static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
Stephen Warren1007da02011-05-26 09:57:33 -0600768 struct snd_soc_dapm_widget *kcontrolw,
Stephen Warrenaf468002011-04-28 17:38:01 -0600769 const struct snd_kcontrol_new *kcontrol_new,
770 struct snd_kcontrol **kcontrol)
771{
772 struct snd_soc_dapm_widget *w;
773 int i;
774
775 *kcontrol = NULL;
776
777 list_for_each_entry(w, &dapm->card->widgets, list) {
Stephen Warren1007da02011-05-26 09:57:33 -0600778 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
779 continue;
Stephen Warrenaf468002011-04-28 17:38:01 -0600780 for (i = 0; i < w->num_kcontrols; i++) {
781 if (&w->kcontrol_news[i] == kcontrol_new) {
782 if (w->kcontrols)
783 *kcontrol = w->kcontrols[i];
784 return 1;
785 }
786 }
787 }
788
789 return 0;
790}
791
Stephen Warren85762e72013-03-29 15:40:10 -0600792/*
793 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
794 * create it. Either way, add the widget into the control's widget list
795 */
Jeeja KP19a2557b2015-10-20 22:30:06 +0530796static int dapm_create_or_share_kcontrol(struct snd_soc_dapm_widget *w,
Mark Brown946d92a2013-08-12 23:28:42 +0100797 int kci)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200798{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200799 struct snd_soc_dapm_context *dapm = w->dapm;
Mark Brown12ea2c72011-03-02 18:17:32 +0000800 struct snd_card *card = dapm->card->snd_card;
Mark Brownefb7ac32011-03-08 17:23:24 +0000801 const char *prefix;
Stephen Warren85762e72013-03-29 15:40:10 -0600802 size_t prefix_len;
803 int shared;
804 struct snd_kcontrol *kcontrol;
Stephen Warren85762e72013-03-29 15:40:10 -0600805 bool wname_in_long_name, kcname_in_long_name;
Daniel Macke5092c92014-10-07 13:41:24 +0200806 char *long_name = NULL;
Stephen Warren85762e72013-03-29 15:40:10 -0600807 const char *name;
Daniel Macke5092c92014-10-07 13:41:24 +0200808 int ret = 0;
Mark Brownefb7ac32011-03-08 17:23:24 +0000809
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200810 prefix = soc_dapm_prefix(dapm);
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000811 if (prefix)
812 prefix_len = strlen(prefix) + 1;
813 else
814 prefix_len = 0;
815
Stephen Warren85762e72013-03-29 15:40:10 -0600816 shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[kci],
817 &kcontrol);
818
Stephen Warren85762e72013-03-29 15:40:10 -0600819 if (!kcontrol) {
820 if (shared) {
821 wname_in_long_name = false;
822 kcname_in_long_name = true;
823 } else {
824 switch (w->id) {
825 case snd_soc_dapm_switch:
826 case snd_soc_dapm_mixer:
Jeeja KP19a2557b2015-10-20 22:30:06 +0530827 case snd_soc_dapm_pga:
Chen-Yu Tsaia3930ed2016-08-27 19:28:00 +0800828 case snd_soc_dapm_out_drv:
Stephen Warren85762e72013-03-29 15:40:10 -0600829 wname_in_long_name = true;
830 kcname_in_long_name = true;
831 break;
832 case snd_soc_dapm_mixer_named_ctl:
833 wname_in_long_name = false;
834 kcname_in_long_name = true;
835 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200836 case snd_soc_dapm_demux:
Stephen Warren85762e72013-03-29 15:40:10 -0600837 case snd_soc_dapm_mux:
Stephen Warren85762e72013-03-29 15:40:10 -0600838 wname_in_long_name = true;
839 kcname_in_long_name = false;
840 break;
841 default:
Stephen Warren85762e72013-03-29 15:40:10 -0600842 return -EINVAL;
843 }
844 }
845
846 if (wname_in_long_name && kcname_in_long_name) {
Stephen Warren85762e72013-03-29 15:40:10 -0600847 /*
848 * The control will get a prefix from the control
849 * creation process but we're also using the same
850 * prefix for widgets so cut the prefix off the
851 * front of the widget name.
852 */
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200853 long_name = kasprintf(GFP_KERNEL, "%s %s",
Stephen Warren85762e72013-03-29 15:40:10 -0600854 w->name + prefix_len,
855 w->kcontrol_news[kci].name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200856 if (long_name == NULL)
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200857 return -ENOMEM;
Stephen Warren85762e72013-03-29 15:40:10 -0600858
859 name = long_name;
860 } else if (wname_in_long_name) {
861 long_name = NULL;
862 name = w->name + prefix_len;
863 } else {
864 long_name = NULL;
865 name = w->kcontrol_news[kci].name;
866 }
867
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200868 kcontrol = snd_soc_cnew(&w->kcontrol_news[kci], NULL, name,
Stephen Warren85762e72013-03-29 15:40:10 -0600869 prefix);
Daniel Macke5092c92014-10-07 13:41:24 +0200870 if (!kcontrol) {
871 ret = -ENOMEM;
872 goto exit_free;
873 }
874
Lars-Peter Clausen9356e9d2013-08-01 14:08:06 +0200875 kcontrol->private_free = dapm_kcontrol_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200876
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100877 ret = dapm_kcontrol_data_alloc(w, kcontrol, name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200878 if (ret) {
879 snd_ctl_free_one(kcontrol);
Daniel Macke5092c92014-10-07 13:41:24 +0200880 goto exit_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200881 }
882
Stephen Warren85762e72013-03-29 15:40:10 -0600883 ret = snd_ctl_add(card, kcontrol);
884 if (ret < 0) {
885 dev_err(dapm->dev,
886 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
887 w->name, name, ret);
Daniel Macke5092c92014-10-07 13:41:24 +0200888 goto exit_free;
Stephen Warren85762e72013-03-29 15:40:10 -0600889 }
Stephen Warren85762e72013-03-29 15:40:10 -0600890 }
891
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200892 ret = dapm_kcontrol_add_widget(kcontrol, w);
Daniel Macke5092c92014-10-07 13:41:24 +0200893 if (ret == 0)
894 w->kcontrols[kci] = kcontrol;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200895
Daniel Macke5092c92014-10-07 13:41:24 +0200896exit_free:
897 kfree(long_name);
Stephen Warren85762e72013-03-29 15:40:10 -0600898
Daniel Macke5092c92014-10-07 13:41:24 +0200899 return ret;
Stephen Warren85762e72013-03-29 15:40:10 -0600900}
901
902/* create new dapm mixer control */
903static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
904{
905 int i, ret;
906 struct snd_soc_dapm_path *path;
Charles Keepax561ed682015-05-01 12:37:26 +0100907 struct dapm_kcontrol_data *data;
Stephen Warren85762e72013-03-29 15:40:10 -0600908
Richard Purdie2b97eab2006-10-06 18:32:18 +0200909 /* add kcontrol */
910 for (i = 0; i < w->num_kcontrols; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200911 /* match name */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +0200912 snd_soc_dapm_widget_for_each_source_path(w, path) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200913 /* mixer/mux paths name must match control name */
Stephen Warren82cfecd2011-04-28 17:37:58 -0600914 if (path->name != (char *)w->kcontrol_news[i].name)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200915 continue;
916
Charles Keepax561ed682015-05-01 12:37:26 +0100917 if (!w->kcontrols[i]) {
Jeeja KP19a2557b2015-10-20 22:30:06 +0530918 ret = dapm_create_or_share_kcontrol(w, i);
Charles Keepax561ed682015-05-01 12:37:26 +0100919 if (ret < 0)
920 return ret;
Lars-Peter Clausen82cd8762011-08-15 20:15:21 +0200921 }
922
Mark Brown946d92a2013-08-12 23:28:42 +0100923 dapm_kcontrol_add_path(w->kcontrols[i], path);
Charles Keepax561ed682015-05-01 12:37:26 +0100924
925 data = snd_kcontrol_chip(w->kcontrols[i]);
926 if (data->widget)
927 snd_soc_dapm_add_path(data->widget->dapm,
928 data->widget,
929 path->source,
930 NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200931 }
932 }
Stephen Warren85762e72013-03-29 15:40:10 -0600933
934 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200935}
936
937/* create new dapm mux control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200938static int dapm_new_mux(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200939{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200940 struct snd_soc_dapm_context *dapm = w->dapm;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200941 enum snd_soc_dapm_direction dir;
Stephen Warren85762e72013-03-29 15:40:10 -0600942 struct snd_soc_dapm_path *path;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200943 const char *type;
Stephen Warrenaf468002011-04-28 17:38:01 -0600944 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200945
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200946 switch (w->id) {
947 case snd_soc_dapm_mux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200948 dir = SND_SOC_DAPM_DIR_OUT;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200949 type = "mux";
950 break;
951 case snd_soc_dapm_demux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200952 dir = SND_SOC_DAPM_DIR_IN;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200953 type = "demux";
954 break;
955 default:
956 return -EINVAL;
957 }
958
Stephen Warrenaf468002011-04-28 17:38:01 -0600959 if (w->num_kcontrols != 1) {
960 dev_err(dapm->dev,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200961 "ASoC: %s %s has incorrect number of controls\n", type,
Stephen Warrenaf468002011-04-28 17:38:01 -0600962 w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200963 return -EINVAL;
964 }
965
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200966 if (list_empty(&w->edges[dir])) {
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200967 dev_err(dapm->dev, "ASoC: %s %s has no paths\n", type, w->name);
Stephen Warren85762e72013-03-29 15:40:10 -0600968 return -EINVAL;
Stephen Warrenaf468002011-04-28 17:38:01 -0600969 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200970
Jeeja KP19a2557b2015-10-20 22:30:06 +0530971 ret = dapm_create_or_share_kcontrol(w, 0);
Stephen Warren85762e72013-03-29 15:40:10 -0600972 if (ret < 0)
973 return ret;
Stephen Warrenfad59882011-04-28 17:37:59 -0600974
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200975 snd_soc_dapm_widget_for_each_path(w, dir, path) {
976 if (path->name)
977 dapm_kcontrol_add_path(w->kcontrols[0], path);
Lars-Peter Clausen98407ef2014-10-25 17:41:57 +0200978 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200979
Stephen Warrenaf468002011-04-28 17:38:01 -0600980 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200981}
982
983/* create new dapm volume control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200984static int dapm_new_pga(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200985{
Jeeja KP19a2557b2015-10-20 22:30:06 +0530986 int i, ret;
987
988 for (i = 0; i < w->num_kcontrols; i++) {
989 ret = dapm_create_or_share_kcontrol(w, i);
990 if (ret < 0)
991 return ret;
992 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200993
Mark Browna6c65732010-03-03 17:45:21 +0000994 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200995}
996
Nikesh Oswalc6615082015-02-02 17:06:44 +0000997/* create new dapm dai link control */
998static int dapm_new_dai_link(struct snd_soc_dapm_widget *w)
999{
1000 int i, ret;
1001 struct snd_kcontrol *kcontrol;
1002 struct snd_soc_dapm_context *dapm = w->dapm;
1003 struct snd_card *card = dapm->card->snd_card;
1004
1005 /* create control for links with > 1 config */
1006 if (w->num_params <= 1)
1007 return 0;
1008
1009 /* add kcontrol */
1010 for (i = 0; i < w->num_kcontrols; i++) {
1011 kcontrol = snd_soc_cnew(&w->kcontrol_news[i], w,
1012 w->name, NULL);
1013 ret = snd_ctl_add(card, kcontrol);
1014 if (ret < 0) {
1015 dev_err(dapm->dev,
1016 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
1017 w->name, w->kcontrol_news[i].name, ret);
1018 return ret;
1019 }
1020 kcontrol->private_data = w;
1021 w->kcontrols[i] = kcontrol;
1022 }
1023
1024 return 0;
1025}
1026
Mark Brown99497882010-05-07 20:24:05 +01001027/* We implement power down on suspend by checking the power state of
1028 * the ALSA card - when we are suspending the ALSA state for the card
1029 * is set to D3.
1030 */
1031static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
1032{
Mark Brown12ea2c72011-03-02 18:17:32 +00001033 int level = snd_power_get_state(widget->dapm->card->snd_card);
Mark Brown99497882010-05-07 20:24:05 +01001034
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001035 switch (level) {
Mark Brown99497882010-05-07 20:24:05 +01001036 case SNDRV_CTL_POWER_D3hot:
1037 case SNDRV_CTL_POWER_D3cold:
Mark Brown1547aba2010-05-07 21:11:40 +01001038 if (widget->ignore_suspend)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001039 dev_dbg(widget->dapm->dev, "ASoC: %s ignoring suspend\n",
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001040 widget->name);
Mark Brown1547aba2010-05-07 21:11:40 +01001041 return widget->ignore_suspend;
Mark Brown99497882010-05-07 20:24:05 +01001042 default:
1043 return 1;
1044 }
1045}
1046
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001047static int dapm_widget_list_create(struct snd_soc_dapm_widget_list **list,
1048 struct list_head *widgets)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001049{
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001050 struct snd_soc_dapm_widget *w;
1051 struct list_head *it;
1052 unsigned int size = 0;
1053 unsigned int i = 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001054
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001055 list_for_each(it, widgets)
1056 size++;
1057
1058 *list = kzalloc(sizeof(**list) + size * sizeof(*w), GFP_KERNEL);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001059 if (*list == NULL)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001060 return -ENOMEM;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001061
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001062 list_for_each_entry(w, widgets, work_list)
1063 (*list)->widgets[i++] = w;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001064
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001065 (*list)->num_widgets = i;
1066
1067 return 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001068}
1069
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001070/*
1071 * Common implementation for is_connected_output_ep() and
1072 * is_connected_input_ep(). The function is inlined since the combined size of
1073 * the two specialized functions is only marginally larger then the size of the
1074 * generic function and at the same time the fast path of the specialized
1075 * functions is significantly smaller than the generic function.
1076 */
1077static __always_inline int is_connected_ep(struct snd_soc_dapm_widget *widget,
1078 struct list_head *list, enum snd_soc_dapm_direction dir,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001079 int (*fn)(struct snd_soc_dapm_widget *, struct list_head *,
1080 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1081 enum snd_soc_dapm_direction)),
1082 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1083 enum snd_soc_dapm_direction))
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001084{
1085 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001086 struct snd_soc_dapm_path *path;
1087 int con = 0;
1088
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001089 if (widget->endpoints[dir] >= 0)
1090 return widget->endpoints[dir];
Mark Brown024dc072011-10-09 11:52:05 +01001091
Mark Brownde02d072011-09-20 21:43:24 +01001092 DAPM_UPDATE_STAT(widget, path_checks);
1093
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001094 /* do we need to add this widget to the list ? */
1095 if (list)
1096 list_add_tail(&widget->work_list, list);
1097
Jeeja KP09464972016-06-15 11:16:55 +05301098 if (custom_stop_condition && custom_stop_condition(widget, dir)) {
1099 widget->endpoints[dir] = 1;
1100 return widget->endpoints[dir];
1101 }
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001102
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001103 if ((widget->is_ep & SND_SOC_DAPM_DIR_TO_EP(dir)) && widget->connected) {
1104 widget->endpoints[dir] = snd_soc_dapm_suspend_check(widget);
1105 return widget->endpoints[dir];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001106 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001107
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001108 snd_soc_dapm_widget_for_each_path(widget, rdir, path) {
Mark Browne56235e2011-09-21 18:19:14 +01001109 DAPM_UPDATE_STAT(widget, neighbour_checks);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001110
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001111 if (path->weak || path->is_supply)
Mark Brownbf3a9e12011-06-13 16:42:29 +01001112 continue;
1113
Mark Brown8af294b2013-02-22 17:48:15 +00001114 if (path->walking)
1115 return 1;
1116
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001117 trace_snd_soc_dapm_path(widget, dir, path);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001118
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001119 if (path->connect) {
Mark Brown8af294b2013-02-22 17:48:15 +00001120 path->walking = 1;
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001121 con += fn(path->node[dir], list, custom_stop_condition);
Mark Brown8af294b2013-02-22 17:48:15 +00001122 path->walking = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001123 }
1124 }
1125
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001126 widget->endpoints[dir] = con;
Mark Brown024dc072011-10-09 11:52:05 +01001127
Richard Purdie2b97eab2006-10-06 18:32:18 +02001128 return con;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001129}
1130
1131/*
1132 * Recursively check for a completed path to an active or physically connected
1133 * output widget. Returns number of complete paths.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001134 *
1135 * Optionally, can be supplied with a function acting as a stopping condition.
1136 * This function takes the dapm widget currently being examined and the walk
1137 * direction as an arguments, it should return true if the walk should be
1138 * stopped and false otherwise.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001139 */
1140static int is_connected_output_ep(struct snd_soc_dapm_widget *widget,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001141 struct list_head *list,
1142 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1143 enum snd_soc_dapm_direction))
Richard Purdie2b97eab2006-10-06 18:32:18 +02001144{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001145 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_OUT,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001146 is_connected_output_ep, custom_stop_condition);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001147}
1148
1149/*
1150 * Recursively check for a completed path to an active or physically connected
1151 * input widget. Returns number of complete paths.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001152 *
1153 * Optionally, can be supplied with a function acting as a stopping condition.
1154 * This function takes the dapm widget currently being examined and the walk
1155 * direction as an arguments, it should return true if the walk should be
1156 * stopped and false otherwise.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001157 */
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001158static int is_connected_input_ep(struct snd_soc_dapm_widget *widget,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001159 struct list_head *list,
1160 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1161 enum snd_soc_dapm_direction))
Richard Purdie2b97eab2006-10-06 18:32:18 +02001162{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001163 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_IN,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001164 is_connected_input_ep, custom_stop_condition);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001165}
1166
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001167/**
1168 * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1169 * @dai: the soc DAI.
1170 * @stream: stream direction.
1171 * @list: list of active widgets for this stream.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001172 * @custom_stop_condition: (optional) a function meant to stop the widget graph
1173 * walk based on custom logic.
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001174 *
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001175 * Queries DAPM graph as to whether a valid audio stream path exists for
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001176 * the initial stream specified by name. This takes into account
1177 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1178 *
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001179 * Optionally, can be supplied with a function acting as a stopping condition.
1180 * This function takes the dapm widget currently being examined and the walk
1181 * direction as an arguments, it should return true if the walk should be
1182 * stopped and false otherwise.
1183 *
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001184 * Returns the number of valid paths or negative error.
1185 */
1186int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001187 struct snd_soc_dapm_widget_list **list,
1188 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1189 enum snd_soc_dapm_direction))
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001190{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001191 struct snd_soc_card *card = dai->component->card;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001192 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001193 LIST_HEAD(widgets);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001194 int paths;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001195 int ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001196
1197 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001198
1199 /*
1200 * For is_connected_{output,input}_ep fully discover the graph we need
1201 * to reset the cached number of inputs and outputs.
1202 */
1203 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001204 w->endpoints[SND_SOC_DAPM_DIR_IN] = -1;
1205 w->endpoints[SND_SOC_DAPM_DIR_OUT] = -1;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001206 }
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001207
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001208 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001209 paths = is_connected_output_ep(dai->playback_widget, &widgets,
1210 custom_stop_condition);
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001211 else
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001212 paths = is_connected_input_ep(dai->capture_widget, &widgets,
1213 custom_stop_condition);
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001214
1215 /* Drop starting point */
1216 list_del(widgets.next);
1217
1218 ret = dapm_widget_list_create(list, &widgets);
1219 if (ret)
Lars-Peter Clausen30abbe72015-08-11 21:37:59 +02001220 paths = ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001221
1222 trace_snd_soc_dapm_connected(paths, stream);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001223 mutex_unlock(&card->dapm_mutex);
1224
1225 return paths;
1226}
1227
Richard Purdie2b97eab2006-10-06 18:32:18 +02001228/*
Mark Brown62ea8742012-01-21 21:14:48 +00001229 * Handler for regulator supply widget.
1230 */
1231int dapm_regulator_event(struct snd_soc_dapm_widget *w,
1232 struct snd_kcontrol *kcontrol, int event)
1233{
Mark Brownc05b84d2012-09-07 12:57:11 +08001234 int ret;
1235
Mark Browneb270e92013-10-09 13:52:52 +01001236 soc_dapm_async_complete(w->dapm);
1237
Mark Brownc05b84d2012-09-07 12:57:11 +08001238 if (SND_SOC_DAPM_EVENT_ON(event)) {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001239 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001240 ret = regulator_allow_bypass(w->regulator, false);
Mark Brownc05b84d2012-09-07 12:57:11 +08001241 if (ret != 0)
1242 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001243 "ASoC: Failed to unbypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001244 w->name, ret);
1245 }
1246
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001247 return regulator_enable(w->regulator);
Mark Brownc05b84d2012-09-07 12:57:11 +08001248 } else {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001249 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001250 ret = regulator_allow_bypass(w->regulator, true);
Mark Brownc05b84d2012-09-07 12:57:11 +08001251 if (ret != 0)
1252 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001253 "ASoC: Failed to bypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001254 w->name, ret);
1255 }
1256
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001257 return regulator_disable_deferred(w->regulator, w->shift);
Mark Brownc05b84d2012-09-07 12:57:11 +08001258 }
Mark Brown62ea8742012-01-21 21:14:48 +00001259}
1260EXPORT_SYMBOL_GPL(dapm_regulator_event);
1261
Ola Liljad7e7eb92012-05-24 15:26:25 +02001262/*
1263 * Handler for clock supply widget.
1264 */
1265int dapm_clock_event(struct snd_soc_dapm_widget *w,
1266 struct snd_kcontrol *kcontrol, int event)
1267{
1268 if (!w->clk)
1269 return -EIO;
1270
Mark Browneb270e92013-10-09 13:52:52 +01001271 soc_dapm_async_complete(w->dapm);
1272
Mark Brownec029952012-06-04 08:16:20 +01001273#ifdef CONFIG_HAVE_CLK
Ola Liljad7e7eb92012-05-24 15:26:25 +02001274 if (SND_SOC_DAPM_EVENT_ON(event)) {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001275 return clk_prepare_enable(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001276 } else {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001277 clk_disable_unprepare(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001278 return 0;
1279 }
Mark Brownec029952012-06-04 08:16:20 +01001280#endif
Marek Belisko98b3cf12012-07-12 23:00:16 +02001281 return 0;
Ola Liljad7e7eb92012-05-24 15:26:25 +02001282}
1283EXPORT_SYMBOL_GPL(dapm_clock_event);
1284
Mark Brownd8050022011-09-28 18:28:23 +01001285static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
1286{
Mark Brown9b8a83b2011-10-04 22:15:59 +01001287 if (w->power_checked)
1288 return w->new_power;
1289
Mark Brownd8050022011-09-28 18:28:23 +01001290 if (w->force)
Mark Brown9b8a83b2011-10-04 22:15:59 +01001291 w->new_power = 1;
Mark Brownd8050022011-09-28 18:28:23 +01001292 else
Mark Brown9b8a83b2011-10-04 22:15:59 +01001293 w->new_power = w->power_check(w);
1294
1295 w->power_checked = true;
1296
1297 return w->new_power;
Mark Brownd8050022011-09-28 18:28:23 +01001298}
1299
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001300/* Generic check to see if a widget should be powered. */
Mark Browncd0f2d42009-04-20 16:56:59 +01001301static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
1302{
1303 int in, out;
1304
Mark Brownde02d072011-09-20 21:43:24 +01001305 DAPM_UPDATE_STAT(w, power_checks);
1306
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001307 in = is_connected_input_ep(w, NULL, NULL);
1308 out = is_connected_output_ep(w, NULL, NULL);
Mark Browncd0f2d42009-04-20 16:56:59 +01001309 return out != 0 && in != 0;
1310}
1311
Mark Brown246d0a12009-04-22 18:24:55 +01001312/* Check to see if a power supply is needed */
1313static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
1314{
1315 struct snd_soc_dapm_path *path;
Mark Brown246d0a12009-04-22 18:24:55 +01001316
Mark Brownde02d072011-09-20 21:43:24 +01001317 DAPM_UPDATE_STAT(w, power_checks);
1318
Mark Brown246d0a12009-04-22 18:24:55 +01001319 /* Check if one of our outputs is connected */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001320 snd_soc_dapm_widget_for_each_sink_path(w, path) {
Mark Browna8fdac82011-09-28 18:20:26 +01001321 DAPM_UPDATE_STAT(w, neighbour_checks);
1322
Mark Brownbf3a9e12011-06-13 16:42:29 +01001323 if (path->weak)
1324 continue;
1325
Mark Brown215edda2009-09-08 18:59:05 +01001326 if (path->connected &&
1327 !path->connected(path->source, path->sink))
1328 continue;
1329
Mark Brownf68d7e12011-10-04 22:57:50 +01001330 if (dapm_widget_power_check(path->sink))
1331 return 1;
Mark Brown246d0a12009-04-22 18:24:55 +01001332 }
1333
Mark Brownf68d7e12011-10-04 22:57:50 +01001334 return 0;
Mark Brown246d0a12009-04-22 18:24:55 +01001335}
1336
Mark Brown35c64bc2011-09-28 18:23:53 +01001337static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
1338{
Charles Keepax20bb0182015-12-02 10:22:16 +00001339 return w->connected;
Mark Brown35c64bc2011-09-28 18:23:53 +01001340}
1341
Mark Brown38357ab2009-06-06 19:03:23 +01001342static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1343 struct snd_soc_dapm_widget *b,
Mark Brown828a8422011-01-15 13:14:30 +00001344 bool power_up)
Mark Brown42aa3412009-03-01 19:21:10 +00001345{
Mark Brown828a8422011-01-15 13:14:30 +00001346 int *sort;
1347
1348 if (power_up)
1349 sort = dapm_up_seq;
1350 else
1351 sort = dapm_down_seq;
1352
Mark Brown38357ab2009-06-06 19:03:23 +01001353 if (sort[a->id] != sort[b->id])
1354 return sort[a->id] - sort[b->id];
Mark Brown20e48592011-01-15 13:40:50 +00001355 if (a->subseq != b->subseq) {
1356 if (power_up)
1357 return a->subseq - b->subseq;
1358 else
1359 return b->subseq - a->subseq;
1360 }
Mark Brownb22ead22009-06-07 12:51:26 +01001361 if (a->reg != b->reg)
1362 return a->reg - b->reg;
Mark Brown84dab562010-11-12 15:28:42 +00001363 if (a->dapm != b->dapm)
1364 return (unsigned long)a->dapm - (unsigned long)b->dapm;
Mark Brown42aa3412009-03-01 19:21:10 +00001365
Mark Brown38357ab2009-06-06 19:03:23 +01001366 return 0;
1367}
Mark Brown42aa3412009-03-01 19:21:10 +00001368
Mark Brown38357ab2009-06-06 19:03:23 +01001369/* Insert a widget in order into a DAPM power sequence. */
1370static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1371 struct list_head *list,
Mark Brown828a8422011-01-15 13:14:30 +00001372 bool power_up)
Mark Brown38357ab2009-06-06 19:03:23 +01001373{
1374 struct snd_soc_dapm_widget *w;
1375
1376 list_for_each_entry(w, list, power_list)
Mark Brown828a8422011-01-15 13:14:30 +00001377 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
Mark Brown38357ab2009-06-06 19:03:23 +01001378 list_add_tail(&new_widget->power_list, &w->power_list);
1379 return;
Mark Brown42aa3412009-03-01 19:21:10 +00001380 }
Mark Brown6ea31b92009-04-20 17:15:41 +01001381
Mark Brown38357ab2009-06-06 19:03:23 +01001382 list_add_tail(&new_widget->power_list, list);
1383}
Mark Brown42aa3412009-03-01 19:21:10 +00001384
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001385static void dapm_seq_check_event(struct snd_soc_card *card,
Mark Brown68f89ad2010-11-03 23:51:49 -04001386 struct snd_soc_dapm_widget *w, int event)
1387{
Mark Brown68f89ad2010-11-03 23:51:49 -04001388 const char *ev_name;
1389 int power, ret;
1390
1391 switch (event) {
1392 case SND_SOC_DAPM_PRE_PMU:
1393 ev_name = "PRE_PMU";
1394 power = 1;
1395 break;
1396 case SND_SOC_DAPM_POST_PMU:
1397 ev_name = "POST_PMU";
1398 power = 1;
1399 break;
1400 case SND_SOC_DAPM_PRE_PMD:
1401 ev_name = "PRE_PMD";
1402 power = 0;
1403 break;
1404 case SND_SOC_DAPM_POST_PMD:
1405 ev_name = "POST_PMD";
1406 power = 0;
1407 break;
Mark Brown80114122013-02-25 15:14:19 +00001408 case SND_SOC_DAPM_WILL_PMU:
1409 ev_name = "WILL_PMU";
1410 power = 1;
1411 break;
1412 case SND_SOC_DAPM_WILL_PMD:
1413 ev_name = "WILL_PMD";
1414 power = 0;
1415 break;
Mark Brown68f89ad2010-11-03 23:51:49 -04001416 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01001417 WARN(1, "Unknown event %d\n", event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001418 return;
1419 }
1420
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001421 if (w->new_power != power)
Mark Brown68f89ad2010-11-03 23:51:49 -04001422 return;
1423
1424 if (w->event && (w->event_flags & event)) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001425 pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001426 w->name, ev_name);
Mark Browneb270e92013-10-09 13:52:52 +01001427 soc_dapm_async_complete(w->dapm);
Mark Brown84e90932010-11-04 00:07:02 -04001428 trace_snd_soc_dapm_widget_event_start(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001429 ret = w->event(w, NULL, event);
Mark Brown84e90932010-11-04 00:07:02 -04001430 trace_snd_soc_dapm_widget_event_done(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001431 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001432 dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001433 ev_name, w->name, ret);
1434 }
1435}
1436
Mark Brownb22ead22009-06-07 12:51:26 +01001437/* Apply the coalesced changes from a DAPM sequence */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001438static void dapm_seq_run_coalesced(struct snd_soc_card *card,
Mark Brownb22ead22009-06-07 12:51:26 +01001439 struct list_head *pending)
Mark Brown163cac02009-06-07 10:12:52 +01001440{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001441 struct snd_soc_dapm_context *dapm;
Mark Brown68f89ad2010-11-03 23:51:49 -04001442 struct snd_soc_dapm_widget *w;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001443 int reg;
Mark Brownb22ead22009-06-07 12:51:26 +01001444 unsigned int value = 0;
1445 unsigned int mask = 0;
Mark Brownb22ead22009-06-07 12:51:26 +01001446
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001447 w = list_first_entry(pending, struct snd_soc_dapm_widget, power_list);
1448 reg = w->reg;
1449 dapm = w->dapm;
Mark Brownb22ead22009-06-07 12:51:26 +01001450
1451 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001452 WARN_ON(reg != w->reg || dapm != w->dapm);
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001453 w->power = w->new_power;
Mark Brownb22ead22009-06-07 12:51:26 +01001454
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001455 mask |= w->mask << w->shift;
1456 if (w->power)
1457 value |= w->on_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001458 else
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001459 value |= w->off_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001460
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001461 pop_dbg(dapm->dev, card->pop_time,
Mark Brownb22ead22009-06-07 12:51:26 +01001462 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1463 w->name, reg, value, mask);
Mark Brown81628102009-06-07 13:21:24 +01001464
Mark Brown68f89ad2010-11-03 23:51:49 -04001465 /* Check for events */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001466 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU);
1467 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001468 }
1469
Mark Brown81628102009-06-07 13:21:24 +01001470 if (reg >= 0) {
Mark Brown29376bc2011-06-19 13:49:28 +01001471 /* Any widget will do, they should all be updating the
1472 * same register.
1473 */
Mark Brown29376bc2011-06-19 13:49:28 +01001474
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001475 pop_dbg(dapm->dev, card->pop_time,
Mark Brown81628102009-06-07 13:21:24 +01001476 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001477 value, mask, reg, card->pop_time);
1478 pop_wait(card->pop_time);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001479 soc_dapm_update_bits(dapm, reg, mask, value);
Mark Brown81628102009-06-07 13:21:24 +01001480 }
1481
1482 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001483 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU);
1484 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD);
Mark Brown42aa3412009-03-01 19:21:10 +00001485 }
Mark Brown42aa3412009-03-01 19:21:10 +00001486}
1487
Mark Brownb22ead22009-06-07 12:51:26 +01001488/* Apply a DAPM power sequence.
1489 *
1490 * We walk over a pre-sorted list of widgets to apply power to. In
1491 * order to minimise the number of writes to the device required
1492 * multiple widgets will be updated in a single write where possible.
1493 * Currently anything that requires more than a single write is not
1494 * handled.
1495 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001496static void dapm_seq_run(struct snd_soc_card *card,
1497 struct list_head *list, int event, bool power_up)
Mark Brownb22ead22009-06-07 12:51:26 +01001498{
1499 struct snd_soc_dapm_widget *w, *n;
Mark Browneb270e92013-10-09 13:52:52 +01001500 struct snd_soc_dapm_context *d;
Mark Brownb22ead22009-06-07 12:51:26 +01001501 LIST_HEAD(pending);
1502 int cur_sort = -1;
Mark Brown20e48592011-01-15 13:40:50 +00001503 int cur_subseq = -1;
Mark Brownb22ead22009-06-07 12:51:26 +01001504 int cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001505 struct snd_soc_dapm_context *cur_dapm = NULL;
Mark Brown474b62d2011-01-18 16:14:44 +00001506 int ret, i;
Mark Brown828a8422011-01-15 13:14:30 +00001507 int *sort;
1508
1509 if (power_up)
1510 sort = dapm_up_seq;
1511 else
1512 sort = dapm_down_seq;
Mark Brown163cac02009-06-07 10:12:52 +01001513
Mark Brownb22ead22009-06-07 12:51:26 +01001514 list_for_each_entry_safe(w, n, list, power_list) {
1515 ret = 0;
1516
1517 /* Do we need to apply any queued changes? */
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001518 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
Mark Brown20e48592011-01-15 13:40:50 +00001519 w->dapm != cur_dapm || w->subseq != cur_subseq) {
Banajit Goswami853ed7c2015-04-10 16:50:43 -07001520 if (cur_dapm && !list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001521 dapm_seq_run_coalesced(card, &pending);
Mark Brownb22ead22009-06-07 12:51:26 +01001522
Mark Brown474b62d2011-01-18 16:14:44 +00001523 if (cur_dapm && cur_dapm->seq_notifier) {
1524 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1525 if (sort[i] == cur_sort)
1526 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001527 i,
1528 cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001529 }
1530
Mark Browneb270e92013-10-09 13:52:52 +01001531 if (cur_dapm && w->dapm != cur_dapm)
1532 soc_dapm_async_complete(cur_dapm);
1533
Mark Brownb22ead22009-06-07 12:51:26 +01001534 INIT_LIST_HEAD(&pending);
1535 cur_sort = -1;
Mark Brownb0b3e6f2011-07-16 10:55:08 +09001536 cur_subseq = INT_MIN;
Mark Brownb22ead22009-06-07 12:51:26 +01001537 cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001538 cur_dapm = NULL;
Mark Brownb22ead22009-06-07 12:51:26 +01001539 }
1540
Mark Brown163cac02009-06-07 10:12:52 +01001541 switch (w->id) {
1542 case snd_soc_dapm_pre:
1543 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001544 list_for_each_entry_safe_continue(w, n, list,
1545 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001546
Mark Brownb22ead22009-06-07 12:51:26 +01001547 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001548 ret = w->event(w,
1549 NULL, SND_SOC_DAPM_PRE_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001550 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001551 ret = w->event(w,
1552 NULL, SND_SOC_DAPM_PRE_PMD);
Mark Brown163cac02009-06-07 10:12:52 +01001553 break;
1554
1555 case snd_soc_dapm_post:
1556 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001557 list_for_each_entry_safe_continue(w, n, list,
1558 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001559
Mark Brownb22ead22009-06-07 12:51:26 +01001560 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001561 ret = w->event(w,
1562 NULL, SND_SOC_DAPM_POST_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001563 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001564 ret = w->event(w,
1565 NULL, SND_SOC_DAPM_POST_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001566 break;
1567
Mark Brown163cac02009-06-07 10:12:52 +01001568 default:
Mark Brown81628102009-06-07 13:21:24 +01001569 /* Queue it up for application */
1570 cur_sort = sort[w->id];
Mark Brown20e48592011-01-15 13:40:50 +00001571 cur_subseq = w->subseq;
Mark Brown81628102009-06-07 13:21:24 +01001572 cur_reg = w->reg;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001573 cur_dapm = w->dapm;
Mark Brown81628102009-06-07 13:21:24 +01001574 list_move(&w->power_list, &pending);
1575 break;
Mark Brown163cac02009-06-07 10:12:52 +01001576 }
Mark Brownb22ead22009-06-07 12:51:26 +01001577
Banajit Goswamib2fac522013-10-10 18:17:43 -07001578 /*
1579 * Add this debug log to keep track of widgets being
1580 * powered-up and powered-down.
1581 */
1582 dev_dbg(w->dapm->dev, "dapm: powering %s widget %s\n",
1583 power_up ? "up" : "down", w->name);
1584
Mark Brownb22ead22009-06-07 12:51:26 +01001585 if (ret < 0)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001586 dev_err(w->dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001587 "ASoC: Failed to apply widget power: %d\n", ret);
Mark Brown163cac02009-06-07 10:12:52 +01001588 }
Mark Brownb22ead22009-06-07 12:51:26 +01001589
Banajit Goswami853ed7c2015-04-10 16:50:43 -07001590 if (cur_dapm && !list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001591 dapm_seq_run_coalesced(card, &pending);
Mark Brown474b62d2011-01-18 16:14:44 +00001592
1593 if (cur_dapm && cur_dapm->seq_notifier) {
1594 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1595 if (sort[i] == cur_sort)
1596 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001597 i, cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001598 }
Mark Browneb270e92013-10-09 13:52:52 +01001599
1600 list_for_each_entry(d, &card->dapm_list, list) {
1601 soc_dapm_async_complete(d);
1602 }
Mark Brown163cac02009-06-07 10:12:52 +01001603}
1604
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001605static void dapm_widget_update(struct snd_soc_card *card)
Mark Brown97404f22010-12-14 16:13:57 +00001606{
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001607 struct snd_soc_dapm_update *update = card->update;
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001608 struct snd_soc_dapm_widget_list *wlist;
1609 struct snd_soc_dapm_widget *w = NULL;
1610 unsigned int wi;
Mark Brown97404f22010-12-14 16:13:57 +00001611 int ret;
1612
Lars-Peter Clausen57295072013-08-05 11:27:31 +02001613 if (!update || !dapm_kcontrol_is_powered(update->kcontrol))
Mark Brown97404f22010-12-14 16:13:57 +00001614 return;
1615
Lars-Peter Clausene84357f2013-07-29 17:13:58 +02001616 wlist = dapm_kcontrol_get_wlist(update->kcontrol);
Mark Brown97404f22010-12-14 16:13:57 +00001617
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001618 for (wi = 0; wi < wlist->num_widgets; wi++) {
1619 w = wlist->widgets[wi];
1620
1621 if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1622 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1623 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001624 dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001625 w->name, ret);
1626 }
Mark Brown97404f22010-12-14 16:13:57 +00001627 }
1628
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001629 if (!w)
1630 return;
1631
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001632 ret = soc_dapm_update_bits(w->dapm, update->reg, update->mask,
1633 update->val);
Mark Brown97404f22010-12-14 16:13:57 +00001634 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001635 dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001636 w->name, ret);
Mark Brown97404f22010-12-14 16:13:57 +00001637
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001638 for (wi = 0; wi < wlist->num_widgets; wi++) {
1639 w = wlist->widgets[wi];
1640
1641 if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1642 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1643 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001644 dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001645 w->name, ret);
1646 }
Mark Brown97404f22010-12-14 16:13:57 +00001647 }
1648}
1649
Mark Brown9d0624a2011-02-18 11:49:43 -08001650/* Async callback run prior to DAPM sequences - brings to _PREPARE if
1651 * they're changing state.
1652 */
1653static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1654{
1655 struct snd_soc_dapm_context *d = data;
1656 int ret;
Mark Brown97404f22010-12-14 16:13:57 +00001657
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001658 /* If we're off and we're not supposed to go into STANDBY */
Mark Brown56fba412011-06-04 11:25:10 +01001659 if (d->bias_level == SND_SOC_BIAS_OFF &&
1660 d->target_bias_level != SND_SOC_BIAS_OFF) {
Mark Brownf1aac482011-12-05 15:17:06 +00001661 if (d->dev)
1662 pm_runtime_get_sync(d->dev);
1663
Mark Brown9d0624a2011-02-18 11:49:43 -08001664 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1665 if (ret != 0)
1666 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001667 "ASoC: Failed to turn on bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001668 }
1669
Lars-Peter Clausence85a4d2014-05-06 10:32:15 +02001670 /* Prepare for a transition to ON or away from ON */
1671 if ((d->target_bias_level == SND_SOC_BIAS_ON &&
1672 d->bias_level != SND_SOC_BIAS_ON) ||
1673 (d->target_bias_level != SND_SOC_BIAS_ON &&
1674 d->bias_level == SND_SOC_BIAS_ON)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001675 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1676 if (ret != 0)
1677 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001678 "ASoC: Failed to prepare bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001679 }
1680}
1681
1682/* Async callback run prior to DAPM sequences - brings to their final
1683 * state.
1684 */
1685static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1686{
1687 struct snd_soc_dapm_context *d = data;
1688 int ret;
1689
1690 /* If we just powered the last thing off drop to standby bias */
Mark Brown56fba412011-06-04 11:25:10 +01001691 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1692 (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1693 d->target_bias_level == SND_SOC_BIAS_OFF)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001694 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1695 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001696 dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001697 ret);
1698 }
1699
1700 /* If we're in standby and can support bias off then do that */
Mark Brown56fba412011-06-04 11:25:10 +01001701 if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1702 d->target_bias_level == SND_SOC_BIAS_OFF) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001703 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1704 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001705 dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n",
1706 ret);
Mark Brownf1aac482011-12-05 15:17:06 +00001707
1708 if (d->dev)
Mark Brownfb644e92012-01-25 19:53:58 +00001709 pm_runtime_put(d->dev);
Mark Brown9d0624a2011-02-18 11:49:43 -08001710 }
1711
1712 /* If we just powered up then move to active bias */
Mark Brown56fba412011-06-04 11:25:10 +01001713 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1714 d->target_bias_level == SND_SOC_BIAS_ON) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001715 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1716 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001717 dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001718 ret);
1719 }
1720}
Mark Brown97404f22010-12-14 16:13:57 +00001721
Mark Brownfe4fda52011-10-03 22:36:57 +01001722static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1723 bool power, bool connect)
1724{
1725 /* If a connection is being made or broken then that update
1726 * will have marked the peer dirty, otherwise the widgets are
1727 * not connected and this update has no impact. */
1728 if (!connect)
1729 return;
1730
1731 /* If the peer is already in the state we're moving to then we
1732 * won't have an impact on it. */
1733 if (power != peer->power)
Mark Brown75c1f892011-10-04 22:28:08 +01001734 dapm_mark_dirty(peer, "peer state change");
Mark Brownfe4fda52011-10-03 22:36:57 +01001735}
1736
Mark Brown05623c42011-09-28 17:02:31 +01001737static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1738 struct list_head *up_list,
1739 struct list_head *down_list)
1740{
Mark Browndb432b42011-10-03 21:06:40 +01001741 struct snd_soc_dapm_path *path;
1742
Mark Brown05623c42011-09-28 17:02:31 +01001743 if (w->power == power)
1744 return;
1745
1746 trace_snd_soc_dapm_widget_power(w, power);
1747
Mark Browndb432b42011-10-03 21:06:40 +01001748 /* If we changed our power state perhaps our neigbours changed
Mark Brownfe4fda52011-10-03 22:36:57 +01001749 * also.
Mark Browndb432b42011-10-03 21:06:40 +01001750 */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001751 snd_soc_dapm_widget_for_each_source_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001752 dapm_widget_set_peer_power(path->source, power, path->connect);
1753
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02001754 /* Supplies can't affect their outputs, only their inputs */
1755 if (!w->is_supply) {
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001756 snd_soc_dapm_widget_for_each_sink_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001757 dapm_widget_set_peer_power(path->sink, power,
1758 path->connect);
Mark Browndb432b42011-10-03 21:06:40 +01001759 }
1760
Mark Brown05623c42011-09-28 17:02:31 +01001761 if (power)
1762 dapm_seq_insert(w, up_list, true);
1763 else
1764 dapm_seq_insert(w, down_list, false);
Mark Brown05623c42011-09-28 17:02:31 +01001765}
1766
Mark Brown7c81beb2011-09-20 22:22:32 +01001767static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1768 struct list_head *up_list,
1769 struct list_head *down_list)
1770{
Mark Brown7c81beb2011-09-20 22:22:32 +01001771 int power;
1772
1773 switch (w->id) {
1774 case snd_soc_dapm_pre:
1775 dapm_seq_insert(w, down_list, false);
1776 break;
1777 case snd_soc_dapm_post:
1778 dapm_seq_insert(w, up_list, true);
1779 break;
1780
1781 default:
Mark Brownd8050022011-09-28 18:28:23 +01001782 power = dapm_widget_power_check(w);
Mark Brown7c81beb2011-09-20 22:22:32 +01001783
Mark Brown05623c42011-09-28 17:02:31 +01001784 dapm_widget_set_power(w, power, up_list, down_list);
Mark Brown7c81beb2011-09-20 22:22:32 +01001785 break;
1786 }
1787}
1788
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001789static bool dapm_idle_bias_off(struct snd_soc_dapm_context *dapm)
1790{
1791 if (dapm->idle_bias_off)
1792 return true;
1793
1794 switch (snd_power_get_state(dapm->card->snd_card)) {
1795 case SNDRV_CTL_POWER_D3hot:
1796 case SNDRV_CTL_POWER_D3cold:
1797 return dapm->suspend_bias_off;
1798 default:
1799 break;
1800 }
1801
1802 return false;
1803}
1804
Mark Brown42aa3412009-03-01 19:21:10 +00001805/*
Richard Purdie2b97eab2006-10-06 18:32:18 +02001806 * Scan each dapm widget for complete audio path.
1807 * A complete path is a route that has valid endpoints i.e.:-
1808 *
1809 * o DAC to output pin.
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001810 * o Input pin to ADC.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001811 * o Input pin to Output pin (bypass, sidetone)
1812 * o DAC to ADC (loopback).
1813 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001814static int dapm_power_widgets(struct snd_soc_card *card, int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001815{
1816 struct snd_soc_dapm_widget *w;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001817 struct snd_soc_dapm_context *d;
Mark Brown291f3bb2009-06-07 13:57:17 +01001818 LIST_HEAD(up_list);
1819 LIST_HEAD(down_list);
Dan Williams2955b472012-07-09 19:33:25 -07001820 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Mark Brown56fba412011-06-04 11:25:10 +01001821 enum snd_soc_bias_level bias;
Banajit Goswami53ae6622015-04-10 18:19:16 -07001822 struct snd_soc_platform *p;
1823 struct snd_soc_codec *c;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001824
Mark Brownf9fa2b12014-03-06 16:49:11 +08001825 lockdep_assert_held(&card->dapm_mutex);
1826
Mark Brown84e90932010-11-04 00:07:02 -04001827 trace_snd_soc_dapm_start(card);
Banajit Goswami853ed7c2015-04-10 16:50:43 -07001828 mutex_lock(&card->dapm_power_mutex);
Mark Brown84e90932010-11-04 00:07:02 -04001829
Mark Brown56fba412011-06-04 11:25:10 +01001830 list_for_each_entry(d, &card->dapm_list, list) {
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001831 if (dapm_idle_bias_off(d))
Mark Brown497098be2012-03-08 15:06:09 +00001832 d->target_bias_level = SND_SOC_BIAS_OFF;
1833 else
1834 d->target_bias_level = SND_SOC_BIAS_STANDBY;
Mark Brown56fba412011-06-04 11:25:10 +01001835 }
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001836
Liam Girdwood6c120e12012-02-15 15:15:34 +00001837 dapm_reset(card);
Mark Brown9b8a83b2011-10-04 22:15:59 +01001838
Mark Brown6d3ddc82009-05-16 17:47:29 +01001839 /* Check which widgets we need to power and store them in
Mark Browndb432b42011-10-03 21:06:40 +01001840 * lists indicating if they should be powered up or down. We
1841 * only check widgets that have been flagged as dirty but note
1842 * that new widgets may be added to the dirty list while we
1843 * iterate.
Mark Brown6d3ddc82009-05-16 17:47:29 +01001844 */
Mark Browndb432b42011-10-03 21:06:40 +01001845 list_for_each_entry(w, &card->dapm_dirty, dirty) {
Mark Brown7c81beb2011-09-20 22:22:32 +01001846 dapm_power_one_widget(w, &up_list, &down_list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001847 }
1848
Mark Brownf9de6d72011-09-28 17:19:47 +01001849 list_for_each_entry(w, &card->widgets, list) {
Mark Brown0ff97eb2012-07-20 17:29:34 +01001850 switch (w->id) {
1851 case snd_soc_dapm_pre:
1852 case snd_soc_dapm_post:
1853 /* These widgets always need to be powered */
1854 break;
1855 default:
1856 list_del_init(&w->dirty);
1857 break;
1858 }
Mark Browndb432b42011-10-03 21:06:40 +01001859
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001860 if (w->new_power) {
Mark Brownf9de6d72011-09-28 17:19:47 +01001861 d = w->dapm;
1862
1863 /* Supplies and micbiases only bring the
1864 * context up to STANDBY as unless something
1865 * else is active and passing audio they
Mark Brownafe62362012-01-25 19:55:22 +00001866 * generally don't require full power. Signal
1867 * generators are virtual pins and have no
1868 * power impact themselves.
Mark Brownf9de6d72011-09-28 17:19:47 +01001869 */
1870 switch (w->id) {
Mark Brownafe62362012-01-25 19:55:22 +00001871 case snd_soc_dapm_siggen:
Lars-Peter Clausenda83fea2013-10-05 19:26:17 +02001872 case snd_soc_dapm_vmid:
Mark Brownafe62362012-01-25 19:55:22 +00001873 break;
Mark Brownf9de6d72011-09-28 17:19:47 +01001874 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001875 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02001876 case snd_soc_dapm_clock_supply:
Mark Brownf9de6d72011-09-28 17:19:47 +01001877 case snd_soc_dapm_micbias:
1878 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1879 d->target_bias_level = SND_SOC_BIAS_STANDBY;
1880 break;
1881 default:
1882 d->target_bias_level = SND_SOC_BIAS_ON;
1883 break;
1884 }
1885 }
1886
1887 }
1888
Mark Brown85a843c2011-09-21 21:29:47 +01001889 /* Force all contexts in the card to the same bias state if
1890 * they're not ground referenced.
1891 */
Mark Brown56fba412011-06-04 11:25:10 +01001892 bias = SND_SOC_BIAS_OFF;
Mark Brown52ba67b2011-04-04 21:05:11 +09001893 list_for_each_entry(d, &card->dapm_list, list)
Mark Brown56fba412011-06-04 11:25:10 +01001894 if (d->target_bias_level > bias)
1895 bias = d->target_bias_level;
Mark Brown52ba67b2011-04-04 21:05:11 +09001896 list_for_each_entry(d, &card->dapm_list, list)
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001897 if (!dapm_idle_bias_off(d))
Mark Brown85a843c2011-09-21 21:29:47 +01001898 d->target_bias_level = bias;
Mark Brown52ba67b2011-04-04 21:05:11 +09001899
Mark Brownde02d072011-09-20 21:43:24 +01001900 trace_snd_soc_dapm_walk_done(card);
Mark Brown52ba67b2011-04-04 21:05:11 +09001901
Xiang Xiao17282ba2014-03-02 00:04:03 +08001902 /* Run card bias changes at first */
1903 dapm_pre_sequence_async(&card->dapm, 0);
1904 /* Run other bias changes in parallel */
1905 list_for_each_entry(d, &card->dapm_list, list) {
Banajit Goswami53ae6622015-04-10 18:19:16 -07001906 p = snd_soc_dapm_to_platform(d);
1907 c = snd_soc_dapm_to_codec(d);
1908 if ((d != &card->dapm) && (c || p))
Xiang Xiao17282ba2014-03-02 00:04:03 +08001909 async_schedule_domain(dapm_pre_sequence_async, d,
1910 &async_domain);
1911 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001912 async_synchronize_full_domain(&async_domain);
Mark Brown452c5ea2009-05-17 21:41:23 +01001913
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001914 list_for_each_entry(w, &down_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001915 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD);
Mark Brown80114122013-02-25 15:14:19 +00001916 }
1917
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001918 list_for_each_entry(w, &up_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001919 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU);
Mark Brown80114122013-02-25 15:14:19 +00001920 }
1921
Mark Brown6d3ddc82009-05-16 17:47:29 +01001922 /* Power down widgets first; try to avoid amplifying pops. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001923 dapm_seq_run(card, &down_list, event, false);
Mark Brown6d3ddc82009-05-16 17:47:29 +01001924
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001925 dapm_widget_update(card);
Mark Brown97404f22010-12-14 16:13:57 +00001926
Mark Brown6d3ddc82009-05-16 17:47:29 +01001927 /* Now power up. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001928 dapm_seq_run(card, &up_list, event, true);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001929
Mark Brown9d0624a2011-02-18 11:49:43 -08001930 /* Run all the bias changes in parallel */
Xiang Xiao17282ba2014-03-02 00:04:03 +08001931 list_for_each_entry(d, &card->dapm_list, list) {
Banajit Goswami53ae6622015-04-10 18:19:16 -07001932 p = snd_soc_dapm_to_platform(d);
1933 c = snd_soc_dapm_to_codec(d);
1934 if ((d != &card->dapm) && (c || p))
Xiang Xiao17282ba2014-03-02 00:04:03 +08001935 async_schedule_domain(dapm_post_sequence_async, d,
1936 &async_domain);
1937 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001938 async_synchronize_full_domain(&async_domain);
Xiang Xiao17282ba2014-03-02 00:04:03 +08001939 /* Run card bias changes at last */
1940 dapm_post_sequence_async(&card->dapm, 0);
Mark Brown452c5ea2009-05-17 21:41:23 +01001941
Liam Girdwood8078d872012-02-15 15:15:35 +00001942 /* do we need to notify any clients that DAPM event is complete */
1943 list_for_each_entry(d, &card->dapm_list, list) {
1944 if (d->stream_event)
1945 d->stream_event(d, event);
1946 }
1947
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001948 pop_dbg(card->dev, card->pop_time,
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02001949 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001950 pop_wait(card->pop_time);
Banajit Goswami853ed7c2015-04-10 16:50:43 -07001951 mutex_unlock(&card->dapm_power_mutex);
Mark Browncb507e72009-07-08 18:54:57 +01001952
Mark Brown84e90932010-11-04 00:07:02 -04001953 trace_snd_soc_dapm_done(card);
1954
Mark Brown42aa3412009-03-01 19:21:10 +00001955 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001956}
1957
Mark Brown79fb9382009-08-21 16:38:13 +01001958#ifdef CONFIG_DEBUG_FS
Mark Brown79fb9382009-08-21 16:38:13 +01001959static ssize_t dapm_widget_power_read_file(struct file *file,
1960 char __user *user_buf,
1961 size_t count, loff_t *ppos)
1962{
1963 struct snd_soc_dapm_widget *w = file->private_data;
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001964 struct snd_soc_card *card = w->dapm->card;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001965 enum snd_soc_dapm_direction dir, rdir;
Mark Brown79fb9382009-08-21 16:38:13 +01001966 char *buf;
1967 int in, out;
1968 ssize_t ret;
1969 struct snd_soc_dapm_path *p = NULL;
1970
1971 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1972 if (!buf)
1973 return -ENOMEM;
1974
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001975 mutex_lock(&card->dapm_mutex);
1976
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001977 /* Supply widgets are not handled by is_connected_{input,output}_ep() */
1978 if (w->is_supply) {
1979 in = 0;
1980 out = 0;
1981 } else {
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001982 in = is_connected_input_ep(w, NULL, NULL);
1983 out = is_connected_output_ep(w, NULL, NULL);
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001984 }
Mark Brown79fb9382009-08-21 16:38:13 +01001985
Mark Brownf13ebad2012-03-03 18:01:01 +00001986 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1987 w->name, w->power ? "On" : "Off",
1988 w->force ? " (forced)" : "", in, out);
Mark Brown79fb9382009-08-21 16:38:13 +01001989
Mark Brownd033c362009-12-04 15:25:56 +00001990 if (w->reg >= 0)
1991 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001992 " - R%d(0x%x) mask 0x%x",
1993 w->reg, w->reg, w->mask << w->shift);
Mark Brownd033c362009-12-04 15:25:56 +00001994
1995 ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1996
Mark Brown3eef08b2009-09-14 16:49:00 +01001997 if (w->sname)
1998 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1999 w->sname,
2000 w->active ? "active" : "inactive");
Mark Brown79fb9382009-08-21 16:38:13 +01002001
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002002 snd_soc_dapm_for_each_direction(dir) {
2003 rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
2004 snd_soc_dapm_widget_for_each_path(w, dir, p) {
2005 if (p->connected && !p->connected(w, p->node[rdir]))
2006 continue;
Mark Brown215edda2009-09-08 18:59:05 +01002007
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002008 if (!p->connect)
2009 continue;
Mark Brown215edda2009-09-08 18:59:05 +01002010
Mark Brown79fb9382009-08-21 16:38:13 +01002011 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002012 " %s \"%s\" \"%s\"\n",
2013 (rdir == SND_SOC_DAPM_DIR_IN) ? "in" : "out",
Mark Brown79fb9382009-08-21 16:38:13 +01002014 p->name ? p->name : "static",
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002015 p->node[rdir]->name);
2016 }
Mark Brown79fb9382009-08-21 16:38:13 +01002017 }
2018
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002019 mutex_unlock(&card->dapm_mutex);
2020
Mark Brown79fb9382009-08-21 16:38:13 +01002021 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
2022
2023 kfree(buf);
2024 return ret;
2025}
2026
2027static const struct file_operations dapm_widget_power_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002028 .open = simple_open,
Mark Brown79fb9382009-08-21 16:38:13 +01002029 .read = dapm_widget_power_read_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002030 .llseek = default_llseek,
Mark Brown79fb9382009-08-21 16:38:13 +01002031};
2032
Mark Brownef49e4f2011-04-04 20:48:13 +09002033static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
2034 size_t count, loff_t *ppos)
2035{
2036 struct snd_soc_dapm_context *dapm = file->private_data;
2037 char *level;
2038
2039 switch (dapm->bias_level) {
2040 case SND_SOC_BIAS_ON:
2041 level = "On\n";
2042 break;
2043 case SND_SOC_BIAS_PREPARE:
2044 level = "Prepare\n";
2045 break;
2046 case SND_SOC_BIAS_STANDBY:
2047 level = "Standby\n";
2048 break;
2049 case SND_SOC_BIAS_OFF:
2050 level = "Off\n";
2051 break;
2052 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01002053 WARN(1, "Unknown bias_level %d\n", dapm->bias_level);
Mark Brownef49e4f2011-04-04 20:48:13 +09002054 level = "Unknown\n";
2055 break;
2056 }
2057
2058 return simple_read_from_buffer(user_buf, count, ppos, level,
2059 strlen(level));
2060}
2061
2062static const struct file_operations dapm_bias_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002063 .open = simple_open,
Mark Brownef49e4f2011-04-04 20:48:13 +09002064 .read = dapm_bias_read_file,
2065 .llseek = default_llseek,
2066};
2067
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002068void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2069 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002070{
Mark Brown79fb9382009-08-21 16:38:13 +01002071 struct dentry *d;
2072
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02002073 if (!parent)
2074 return;
2075
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002076 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
2077
2078 if (!dapm->debugfs_dapm) {
Liam Girdwoodf1e90af2012-03-06 18:13:25 +00002079 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002080 "ASoC: Failed to create DAPM debugfs directory\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002081 return;
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002082 }
Mark Brown79fb9382009-08-21 16:38:13 +01002083
Mark Brownef49e4f2011-04-04 20:48:13 +09002084 d = debugfs_create_file("bias_level", 0444,
2085 dapm->debugfs_dapm, dapm,
2086 &dapm_bias_fops);
2087 if (!d)
2088 dev_warn(dapm->dev,
2089 "ASoC: Failed to create bias level debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002090}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002091
2092static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2093{
2094 struct snd_soc_dapm_context *dapm = w->dapm;
2095 struct dentry *d;
2096
2097 if (!dapm->debugfs_dapm || !w->name)
2098 return;
2099
2100 d = debugfs_create_file(w->name, 0444,
2101 dapm->debugfs_dapm, w,
2102 &dapm_widget_power_fops);
2103 if (!d)
2104 dev_warn(w->dapm->dev,
2105 "ASoC: Failed to create %s debugfs file\n",
2106 w->name);
2107}
2108
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002109static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2110{
2111 debugfs_remove_recursive(dapm->debugfs_dapm);
2112}
2113
Mark Brown79fb9382009-08-21 16:38:13 +01002114#else
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002115void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2116 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002117{
2118}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002119
2120static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2121{
2122}
2123
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002124static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2125{
2126}
2127
Mark Brown79fb9382009-08-21 16:38:13 +01002128#endif
2129
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002130/*
2131 * soc_dapm_connect_path() - Connects or disconnects a path
2132 * @path: The path to update
2133 * @connect: The new connect state of the path. True if the path is connected,
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002134 * false if it is disconnected.
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002135 * @reason: The reason why the path changed (for debugging only)
2136 */
2137static void soc_dapm_connect_path(struct snd_soc_dapm_path *path,
2138 bool connect, const char *reason)
2139{
2140 if (path->connect == connect)
2141 return;
2142
2143 path->connect = connect;
2144 dapm_mark_dirty(path->source, reason);
2145 dapm_mark_dirty(path->sink, reason);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002146 dapm_path_invalidate(path);
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002147}
2148
Richard Purdie2b97eab2006-10-06 18:32:18 +02002149/* test and update the power status of a mux widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002150static int soc_dapm_mux_update_power(struct snd_soc_card *card,
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002151 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002152{
2153 struct snd_soc_dapm_path *path;
2154 int found = 0;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002155 bool connect;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002156
Mark Brownf9fa2b12014-03-06 16:49:11 +08002157 lockdep_assert_held(&card->dapm_mutex);
2158
Richard Purdie2b97eab2006-10-06 18:32:18 +02002159 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002160 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002161 found = 1;
2162 /* we now need to match the string in the enum to the path */
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002163 if (!(strcmp(path->name, e->texts[mux])))
2164 connect = true;
2165 else
2166 connect = false;
2167
2168 soc_dapm_connect_path(path, connect, "mux update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002169 }
2170
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002171 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002172 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002173
Liam Girdwood618dae12012-04-25 12:12:51 +01002174 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002175}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002176
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002177int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002178 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e,
2179 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002180{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002181 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002182 int ret;
2183
Liam Girdwood3cd04342012-03-09 12:02:08 +00002184 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002185 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002186 ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002187 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002188 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002189 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002190 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002191 return ret;
2192}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002193EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002194
Milan plzik1b075e32008-01-10 14:39:46 +01002195/* test and update the power status of a mixer or switch widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002196static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
Mark Brown283375c2009-12-07 18:09:03 +00002197 struct snd_kcontrol *kcontrol, int connect)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002198{
2199 struct snd_soc_dapm_path *path;
2200 int found = 0;
2201
Mark Brownf9fa2b12014-03-06 16:49:11 +08002202 lockdep_assert_held(&card->dapm_mutex);
2203
Richard Purdie2b97eab2006-10-06 18:32:18 +02002204 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002205 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002206 found = 1;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002207 soc_dapm_connect_path(path, connect, "mixer update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002208 }
2209
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002210 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002211 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002212
Liam Girdwood618dae12012-04-25 12:12:51 +01002213 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002214}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002215
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002216int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002217 struct snd_kcontrol *kcontrol, int connect,
2218 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002219{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002220 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002221 int ret;
2222
Liam Girdwood3cd04342012-03-09 12:02:08 +00002223 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002224 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002225 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002226 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002227 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002228 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002229 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002230 return ret;
2231}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002232EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002233
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002234static ssize_t dapm_widget_show_component(struct snd_soc_component *cmpnt,
2235 char *buf)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002236{
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002237 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(cmpnt);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002238 struct snd_soc_dapm_widget *w;
2239 int count = 0;
2240 char *state = "not set";
2241
Mark Brown47325072016-03-18 12:04:23 +00002242 /* card won't be set for the dummy component, as a spot fix
2243 * we're checking for that case specifically here but in future
2244 * we will ensure that the dummy component looks like others.
2245 */
2246 if (!cmpnt->card)
2247 return 0;
2248
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002249 list_for_each_entry(w, &cmpnt->card->widgets, list) {
2250 if (w->dapm != dapm)
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002251 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002252
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002253 /* only display widgets that burn power */
Richard Purdie2b97eab2006-10-06 18:32:18 +02002254 switch (w->id) {
2255 case snd_soc_dapm_hp:
2256 case snd_soc_dapm_mic:
2257 case snd_soc_dapm_spk:
2258 case snd_soc_dapm_line:
2259 case snd_soc_dapm_micbias:
2260 case snd_soc_dapm_dac:
2261 case snd_soc_dapm_adc:
2262 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002263 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002264 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002265 case snd_soc_dapm_mixer_named_ctl:
Mark Brown246d0a12009-04-22 18:24:55 +01002266 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002267 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02002268 case snd_soc_dapm_clock_supply:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002269 if (w->name)
2270 count += sprintf(buf + count, "%s: %s\n",
2271 w->name, w->power ? "On":"Off");
2272 break;
2273 default:
2274 break;
2275 }
2276 }
2277
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002278 switch (snd_soc_dapm_get_bias_level(dapm)) {
Mark Brown0be98982008-05-19 12:31:28 +02002279 case SND_SOC_BIAS_ON:
2280 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002281 break;
Mark Brown0be98982008-05-19 12:31:28 +02002282 case SND_SOC_BIAS_PREPARE:
2283 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002284 break;
Mark Brown0be98982008-05-19 12:31:28 +02002285 case SND_SOC_BIAS_STANDBY:
2286 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002287 break;
Mark Brown0be98982008-05-19 12:31:28 +02002288 case SND_SOC_BIAS_OFF:
2289 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002290 break;
2291 }
2292 count += sprintf(buf + count, "PM State: %s\n", state);
2293
2294 return count;
2295}
2296
Benoit Cousson44ba2642014-07-08 23:19:36 +02002297/* show dapm widget status in sys fs */
2298static ssize_t dapm_widget_show(struct device *dev,
2299 struct device_attribute *attr, char *buf)
2300{
2301 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
2302 int i, count = 0;
2303
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002304 mutex_lock(&rtd->card->dapm_mutex);
2305
Benoit Cousson44ba2642014-07-08 23:19:36 +02002306 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002307 struct snd_soc_component *cmpnt = rtd->codec_dais[i]->component;
2308
2309 count += dapm_widget_show_component(cmpnt, buf + count);
Benoit Cousson44ba2642014-07-08 23:19:36 +02002310 }
2311
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002312 mutex_unlock(&rtd->card->dapm_mutex);
2313
Benoit Cousson44ba2642014-07-08 23:19:36 +02002314 return count;
2315}
2316
Richard Purdie2b97eab2006-10-06 18:32:18 +02002317static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
2318
Takashi Iwaid29697d2015-01-30 20:16:37 +01002319struct attribute *soc_dapm_dev_attrs[] = {
2320 &dev_attr_dapm_widget.attr,
2321 NULL
2322};
Richard Purdie2b97eab2006-10-06 18:32:18 +02002323
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002324static void dapm_free_path(struct snd_soc_dapm_path *path)
2325{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002326 list_del(&path->list_node[SND_SOC_DAPM_DIR_IN]);
2327 list_del(&path->list_node[SND_SOC_DAPM_DIR_OUT]);
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002328 list_del(&path->list_kcontrol);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002329 list_del(&path->list);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002330 kfree(path);
2331}
2332
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002333void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
2334{
2335 struct snd_soc_dapm_path *p, *next_p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002336 enum snd_soc_dapm_direction dir;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002337
2338 list_del(&w->list);
2339 /*
2340 * remove source and sink paths associated to this widget.
2341 * While removing the path, remove reference to it from both
2342 * source and sink widgets so that path is removed only once.
2343 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002344 snd_soc_dapm_for_each_direction(dir) {
2345 snd_soc_dapm_widget_for_each_path_safe(w, dir, p, next_p)
2346 dapm_free_path(p);
2347 }
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002348
2349 kfree(w->kcontrols);
Lars-Peter Clausen48068962015-07-21 18:11:08 +02002350 kfree_const(w->name);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002351 kfree(w);
2352}
2353
Jyri Sarhafd589a12015-11-10 18:12:42 +02002354void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context *dapm)
2355{
2356 dapm->path_sink_cache.widget = NULL;
2357 dapm->path_source_cache.widget = NULL;
2358}
2359
Richard Purdie2b97eab2006-10-06 18:32:18 +02002360/* free all dapm widgets and resources */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002361static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002362{
2363 struct snd_soc_dapm_widget *w, *next_w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002364
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002365 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2366 if (w->dapm != dapm)
2367 continue;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002368 snd_soc_dapm_free_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002369 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002370 snd_soc_dapm_reset_cache(dapm);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002371}
2372
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002373static struct snd_soc_dapm_widget *dapm_find_widget(
2374 struct snd_soc_dapm_context *dapm, const char *pin,
2375 bool search_other_contexts)
2376{
2377 struct snd_soc_dapm_widget *w;
2378 struct snd_soc_dapm_widget *fallback = NULL;
2379
2380 list_for_each_entry(w, &dapm->card->widgets, list) {
2381 if (!strcmp(w->name, pin)) {
2382 if (w->dapm == dapm)
2383 return w;
2384 else
2385 fallback = w;
2386 }
2387 }
2388
2389 if (search_other_contexts)
2390 return fallback;
2391
2392 return NULL;
2393}
2394
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002395static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
Mark Brown16499232009-01-07 18:25:13 +00002396 const char *pin, int status)
Liam Girdwooda5302182008-07-07 13:35:17 +01002397{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002398 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Liam Girdwooda5302182008-07-07 13:35:17 +01002399
Mark Brownf9fa2b12014-03-06 16:49:11 +08002400 dapm_assert_locked(dapm);
2401
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002402 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002403 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002404 return -EINVAL;
Liam Girdwooda5302182008-07-07 13:35:17 +01002405 }
2406
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002407 if (w->connected != status) {
Mark Brown1a8b2d92012-02-16 11:50:07 -08002408 dapm_mark_dirty(w, "pin configuration");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002409 dapm_widget_invalidate_input_paths(w);
2410 dapm_widget_invalidate_output_paths(w);
2411 }
Mark Brown1a8b2d92012-02-16 11:50:07 -08002412
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002413 w->connected = status;
2414 if (status == 0)
2415 w->force = 0;
Mark Brown0d867332011-04-06 11:38:14 +09002416
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002417 return 0;
Liam Girdwooda5302182008-07-07 13:35:17 +01002418}
2419
Richard Purdie2b97eab2006-10-06 18:32:18 +02002420/**
Charles Keepax3eb29df2014-02-18 15:22:15 +00002421 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2422 * @dapm: DAPM context
2423 *
2424 * Walks all dapm audio paths and powers widgets according to their
2425 * stream or path usage.
2426 *
2427 * Requires external locking.
2428 *
2429 * Returns 0 for success.
2430 */
2431int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2432{
2433 /*
2434 * Suppress early reports (eg, jacks syncing their state) to avoid
2435 * silly DAPM runs during card startup.
2436 */
2437 if (!dapm->card || !dapm->card->instantiated)
2438 return 0;
2439
2440 return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2441}
2442EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2443
2444/**
Liam Girdwooda5302182008-07-07 13:35:17 +01002445 * snd_soc_dapm_sync - scan and power dapm paths
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002446 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02002447 *
2448 * Walks all dapm audio paths and powers widgets according to their
2449 * stream or path usage.
2450 *
2451 * Returns 0 for success.
2452 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002453int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002454{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002455 int ret;
2456
Liam Girdwood3cd04342012-03-09 12:02:08 +00002457 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Charles Keepax3eb29df2014-02-18 15:22:15 +00002458 ret = snd_soc_dapm_sync_unlocked(dapm);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002459 mutex_unlock(&dapm->card->dapm_mutex);
2460 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002461}
Liam Girdwooda5302182008-07-07 13:35:17 +01002462EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002463
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002464/*
2465 * dapm_update_widget_flags() - Re-compute widget sink and source flags
2466 * @w: The widget for which to update the flags
2467 *
2468 * Some widgets have a dynamic category which depends on which neighbors they
2469 * are connected to. This function update the category for these widgets.
2470 *
2471 * This function must be called whenever a path is added or removed to a widget.
2472 */
2473static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w)
2474{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002475 enum snd_soc_dapm_direction dir;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002476 struct snd_soc_dapm_path *p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002477 unsigned int ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002478
2479 switch (w->id) {
2480 case snd_soc_dapm_input:
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002481 /* On a fully routed card an input is never a source */
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002482 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002483 return;
2484 ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002485 snd_soc_dapm_widget_for_each_source_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002486 if (p->source->id == snd_soc_dapm_micbias ||
2487 p->source->id == snd_soc_dapm_mic ||
2488 p->source->id == snd_soc_dapm_line ||
2489 p->source->id == snd_soc_dapm_output) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002490 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002491 break;
2492 }
2493 }
2494 break;
2495 case snd_soc_dapm_output:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002496 /* On a fully routed card a output is never a sink */
2497 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002498 return;
2499 ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002500 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002501 if (p->sink->id == snd_soc_dapm_spk ||
2502 p->sink->id == snd_soc_dapm_hp ||
2503 p->sink->id == snd_soc_dapm_line ||
2504 p->sink->id == snd_soc_dapm_input) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002505 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002506 break;
2507 }
2508 }
2509 break;
2510 case snd_soc_dapm_line:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002511 ep = 0;
2512 snd_soc_dapm_for_each_direction(dir) {
2513 if (!list_empty(&w->edges[dir]))
2514 ep |= SND_SOC_DAPM_DIR_TO_EP(dir);
2515 }
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002516 break;
2517 default:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002518 return;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002519 }
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002520
2521 w->is_ep = ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002522}
2523
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002524static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm,
2525 struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink,
2526 const char *control)
2527{
2528 bool dynamic_source = false;
2529 bool dynamic_sink = false;
2530
2531 if (!control)
2532 return 0;
2533
2534 switch (source->id) {
2535 case snd_soc_dapm_demux:
2536 dynamic_source = true;
2537 break;
2538 default:
2539 break;
2540 }
2541
2542 switch (sink->id) {
2543 case snd_soc_dapm_mux:
2544 case snd_soc_dapm_switch:
2545 case snd_soc_dapm_mixer:
2546 case snd_soc_dapm_mixer_named_ctl:
2547 dynamic_sink = true;
2548 break;
2549 default:
2550 break;
2551 }
2552
2553 if (dynamic_source && dynamic_sink) {
2554 dev_err(dapm->dev,
2555 "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2556 source->name, control, sink->name);
2557 return -EINVAL;
2558 } else if (!dynamic_source && !dynamic_sink) {
2559 dev_err(dapm->dev,
2560 "Control not supported for path %s -> [%s] -> %s\n",
2561 source->name, control, sink->name);
2562 return -EINVAL;
2563 }
2564
2565 return 0;
2566}
2567
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002568static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2569 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2570 const char *control,
2571 int (*connected)(struct snd_soc_dapm_widget *source,
2572 struct snd_soc_dapm_widget *sink))
Richard Purdie2b97eab2006-10-06 18:32:18 +02002573{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002574 struct snd_soc_dapm_widget *widgets[2];
2575 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002576 struct snd_soc_dapm_path *path;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002577 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002578
Lars-Peter Clausene409dfb2014-10-25 17:42:02 +02002579 if (wsink->is_supply && !wsource->is_supply) {
2580 dev_err(dapm->dev,
2581 "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2582 wsource->name, wsink->name);
2583 return -EINVAL;
2584 }
2585
2586 if (connected && !wsource->is_supply) {
2587 dev_err(dapm->dev,
2588 "connected() callback only supported for supply widgets (%s -> %s)\n",
2589 wsource->name, wsink->name);
2590 return -EINVAL;
2591 }
2592
2593 if (wsource->is_supply && control) {
2594 dev_err(dapm->dev,
2595 "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2596 wsource->name, control, wsink->name);
2597 return -EINVAL;
2598 }
2599
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002600 ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control);
2601 if (ret)
2602 return ret;
2603
Richard Purdie2b97eab2006-10-06 18:32:18 +02002604 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2605 if (!path)
2606 return -ENOMEM;
2607
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002608 path->node[SND_SOC_DAPM_DIR_IN] = wsource;
2609 path->node[SND_SOC_DAPM_DIR_OUT] = wsink;
2610 widgets[SND_SOC_DAPM_DIR_IN] = wsource;
2611 widgets[SND_SOC_DAPM_DIR_OUT] = wsink;
2612
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002613 path->connected = connected;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002614 INIT_LIST_HEAD(&path->list);
Mark Brown69c2d342013-08-13 00:20:36 +01002615 INIT_LIST_HEAD(&path->list_kcontrol);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002616
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02002617 if (wsource->is_supply || wsink->is_supply)
2618 path->is_supply = 1;
2619
Richard Purdie2b97eab2006-10-06 18:32:18 +02002620 /* connect static paths */
2621 if (control == NULL) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002622 path->connect = 1;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002623 } else {
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002624 switch (wsource->id) {
2625 case snd_soc_dapm_demux:
2626 ret = dapm_connect_mux(dapm, path, control, wsource);
2627 if (ret)
2628 goto err;
2629 break;
2630 default:
2631 break;
2632 }
2633
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002634 switch (wsink->id) {
2635 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002636 ret = dapm_connect_mux(dapm, path, control, wsink);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002637 if (ret != 0)
2638 goto err;
2639 break;
2640 case snd_soc_dapm_switch:
2641 case snd_soc_dapm_mixer:
2642 case snd_soc_dapm_mixer_named_ctl:
2643 ret = dapm_connect_mixer(dapm, path, control);
2644 if (ret != 0)
2645 goto err;
2646 break;
2647 default:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002648 break;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002649 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002650 }
2651
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002652 list_add(&path->list, &dapm->card->paths);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002653 snd_soc_dapm_for_each_direction(dir)
2654 list_add(&path->list_node[dir], &widgets[dir]->edges[dir]);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002655
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002656 snd_soc_dapm_for_each_direction(dir) {
2657 dapm_update_widget_flags(widgets[dir]);
2658 dapm_mark_dirty(widgets[dir], "Route added");
2659 }
Mark Brownfabd0382012-07-05 17:20:06 +01002660
Sudheer Papothif8028fe2016-11-03 02:30:27 +05302661 dapm_path_invalidate(path);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002662
Richard Purdie2b97eab2006-10-06 18:32:18 +02002663 return 0;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002664err:
2665 kfree(path);
2666 return ret;
2667}
Richard Purdie2b97eab2006-10-06 18:32:18 +02002668
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002669static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002670 const struct snd_soc_dapm_route *route)
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002671{
2672 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2673 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2674 const char *sink;
2675 const char *source;
2676 char prefixed_sink[80];
2677 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002678 const char *prefix;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002679 int ret;
2680
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002681 prefix = soc_dapm_prefix(dapm);
2682 if (prefix) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002683 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002684 prefix, route->sink);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002685 sink = prefixed_sink;
2686 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002687 prefix, route->source);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002688 source = prefixed_source;
2689 } else {
2690 sink = route->sink;
2691 source = route->source;
2692 }
2693
Charles Keepax45a110a2015-05-11 13:50:30 +01002694 wsource = dapm_wcache_lookup(&dapm->path_source_cache, source);
2695 wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink);
2696
2697 if (wsink && wsource)
2698 goto skip_search;
2699
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002700 /*
2701 * find src and dest widgets over all widgets but favor a widget from
2702 * current DAPM context
2703 */
2704 list_for_each_entry(w, &dapm->card->widgets, list) {
2705 if (!wsink && !(strcmp(w->name, sink))) {
2706 wtsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002707 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002708 wsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002709 if (wsource)
2710 break;
2711 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002712 continue;
2713 }
2714 if (!wsource && !(strcmp(w->name, source))) {
2715 wtsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002716 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002717 wsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002718 if (wsink)
2719 break;
2720 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002721 }
2722 }
2723 /* use widget from another DAPM context if not found from this */
2724 if (!wsink)
2725 wsink = wtsink;
2726 if (!wsource)
2727 wsource = wtsource;
2728
2729 if (wsource == NULL) {
2730 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2731 route->source);
2732 return -ENODEV;
2733 }
2734 if (wsink == NULL) {
2735 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2736 route->sink);
2737 return -ENODEV;
2738 }
2739
Charles Keepax45a110a2015-05-11 13:50:30 +01002740skip_search:
2741 dapm_wcache_update(&dapm->path_sink_cache, wsink);
2742 dapm_wcache_update(&dapm->path_source_cache, wsource);
2743
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002744 ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2745 route->connected);
2746 if (ret)
2747 goto err;
2748
2749 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002750err:
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002751 dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002752 source, route->control, sink);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002753 return ret;
2754}
Mark Brown105f1c22008-05-13 14:52:19 +02002755
Mark Brownefcc3c62012-07-05 17:24:19 +01002756static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
2757 const struct snd_soc_dapm_route *route)
2758{
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002759 struct snd_soc_dapm_widget *wsource, *wsink;
Mark Brownefcc3c62012-07-05 17:24:19 +01002760 struct snd_soc_dapm_path *path, *p;
2761 const char *sink;
2762 const char *source;
2763 char prefixed_sink[80];
2764 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002765 const char *prefix;
Mark Brownefcc3c62012-07-05 17:24:19 +01002766
2767 if (route->control) {
2768 dev_err(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002769 "ASoC: Removal of routes with controls not supported\n");
Mark Brownefcc3c62012-07-05 17:24:19 +01002770 return -EINVAL;
2771 }
2772
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002773 prefix = soc_dapm_prefix(dapm);
2774 if (prefix) {
Mark Brownefcc3c62012-07-05 17:24:19 +01002775 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002776 prefix, route->sink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002777 sink = prefixed_sink;
2778 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002779 prefix, route->source);
Mark Brownefcc3c62012-07-05 17:24:19 +01002780 source = prefixed_source;
2781 } else {
2782 sink = route->sink;
2783 source = route->source;
2784 }
2785
2786 path = NULL;
2787 list_for_each_entry(p, &dapm->card->paths, list) {
2788 if (strcmp(p->source->name, source) != 0)
2789 continue;
2790 if (strcmp(p->sink->name, sink) != 0)
2791 continue;
2792 path = p;
2793 break;
2794 }
2795
2796 if (path) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002797 wsource = path->source;
2798 wsink = path->sink;
2799
2800 dapm_mark_dirty(wsource, "Route removed");
2801 dapm_mark_dirty(wsink, "Route removed");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002802 if (path->connect)
2803 dapm_path_invalidate(path);
Mark Brownefcc3c62012-07-05 17:24:19 +01002804
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002805 dapm_free_path(path);
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002806
2807 /* Update any path related flags */
2808 dapm_update_widget_flags(wsource);
2809 dapm_update_widget_flags(wsink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002810 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002811 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
Mark Brownefcc3c62012-07-05 17:24:19 +01002812 source, sink);
2813 }
2814
2815 return 0;
2816}
2817
Mark Brown105f1c22008-05-13 14:52:19 +02002818/**
Mark Brown105f1c22008-05-13 14:52:19 +02002819 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002820 * @dapm: DAPM context
Mark Brown105f1c22008-05-13 14:52:19 +02002821 * @route: audio routes
2822 * @num: number of routes
2823 *
2824 * Connects 2 dapm widgets together via a named audio path. The sink is
2825 * the widget receiving the audio signal, whilst the source is the sender
2826 * of the audio signal.
2827 *
2828 * Returns 0 for success else error. On error all resources can be freed
2829 * with a call to snd_soc_card_free().
2830 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002831int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
Mark Brown105f1c22008-05-13 14:52:19 +02002832 const struct snd_soc_dapm_route *route, int num)
2833{
Mark Brown62d4a4b2012-06-22 12:21:49 +01002834 int i, r, ret = 0;
Mark Brown105f1c22008-05-13 14:52:19 +02002835
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002836 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown105f1c22008-05-13 14:52:19 +02002837 for (i = 0; i < num; i++) {
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002838 r = snd_soc_dapm_add_route(dapm, route);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002839 if (r < 0) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002840 dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
2841 route->source,
2842 route->control ? route->control : "direct",
2843 route->sink);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002844 ret = r;
Mark Brown105f1c22008-05-13 14:52:19 +02002845 }
2846 route++;
2847 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002848 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown105f1c22008-05-13 14:52:19 +02002849
Dan Carpenter60884c22012-04-13 22:25:43 +03002850 return ret;
Mark Brown105f1c22008-05-13 14:52:19 +02002851}
2852EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2853
Mark Brownefcc3c62012-07-05 17:24:19 +01002854/**
2855 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2856 * @dapm: DAPM context
2857 * @route: audio routes
2858 * @num: number of routes
2859 *
2860 * Removes routes from the DAPM context.
2861 */
2862int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
2863 const struct snd_soc_dapm_route *route, int num)
2864{
Rajan Vajae066ea22016-02-11 11:23:35 +05302865 int i;
Mark Brownefcc3c62012-07-05 17:24:19 +01002866
2867 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2868 for (i = 0; i < num; i++) {
2869 snd_soc_dapm_del_route(dapm, route);
2870 route++;
2871 }
2872 mutex_unlock(&dapm->card->dapm_mutex);
2873
Rajan Vajae066ea22016-02-11 11:23:35 +05302874 return 0;
Mark Brownefcc3c62012-07-05 17:24:19 +01002875}
2876EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
2877
Mark Brownbf3a9e12011-06-13 16:42:29 +01002878static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2879 const struct snd_soc_dapm_route *route)
2880{
2881 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2882 route->source,
2883 true);
2884 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2885 route->sink,
2886 true);
2887 struct snd_soc_dapm_path *path;
2888 int count = 0;
2889
2890 if (!source) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002891 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002892 route->source);
2893 return -ENODEV;
2894 }
2895
2896 if (!sink) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002897 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002898 route->sink);
2899 return -ENODEV;
2900 }
2901
2902 if (route->control || route->connected)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002903 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002904 route->source, route->sink);
2905
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002906 snd_soc_dapm_widget_for_each_sink_path(source, path) {
Mark Brownbf3a9e12011-06-13 16:42:29 +01002907 if (path->sink == sink) {
2908 path->weak = 1;
2909 count++;
2910 }
2911 }
2912
2913 if (count == 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002914 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002915 route->source, route->sink);
2916 if (count > 1)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002917 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002918 count, route->source, route->sink);
2919
2920 return 0;
2921}
2922
2923/**
2924 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2925 * @dapm: DAPM context
2926 * @route: audio routes
2927 * @num: number of routes
2928 *
2929 * Mark existing routes matching those specified in the passed array
2930 * as being weak, meaning that they are ignored for the purpose of
2931 * power decisions. The main intended use case is for sidetone paths
2932 * which couple audio between other independent paths if they are both
2933 * active in order to make the combination work better at the user
2934 * level but which aren't intended to be "used".
2935 *
2936 * Note that CODEC drivers should not use this as sidetone type paths
2937 * can frequently also be used as bypass paths.
2938 */
2939int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2940 const struct snd_soc_dapm_route *route, int num)
2941{
2942 int i, err;
2943 int ret = 0;
2944
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002945 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002946 for (i = 0; i < num; i++) {
2947 err = snd_soc_dapm_weak_route(dapm, route);
2948 if (err)
2949 ret = err;
2950 route++;
2951 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002952 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002953
2954 return ret;
2955}
2956EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2957
Mark Brown105f1c22008-05-13 14:52:19 +02002958/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02002959 * snd_soc_dapm_new_widgets - add new dapm widgets
Jonathan Corbet628536e2015-08-25 01:14:48 -06002960 * @card: card to be checked for new dapm widgets
Richard Purdie2b97eab2006-10-06 18:32:18 +02002961 *
2962 * Checks the codec for any new dapm widgets and creates them if found.
2963 *
2964 * Returns 0 for success.
2965 */
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02002966int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002967{
2968 struct snd_soc_dapm_widget *w;
Mark Brownb66a70d2011-02-09 18:04:11 +00002969 unsigned int val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002970
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002971 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002972
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002973 list_for_each_entry(w, &card->widgets, list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002974 {
2975 if (w->new)
2976 continue;
2977
Stephen Warrenfad59882011-04-28 17:37:59 -06002978 if (w->num_kcontrols) {
2979 w->kcontrols = kzalloc(w->num_kcontrols *
2980 sizeof(struct snd_kcontrol *),
2981 GFP_KERNEL);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002982 if (!w->kcontrols) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002983 mutex_unlock(&card->dapm_mutex);
Stephen Warrenfad59882011-04-28 17:37:59 -06002984 return -ENOMEM;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002985 }
Stephen Warrenfad59882011-04-28 17:37:59 -06002986 }
2987
Richard Purdie2b97eab2006-10-06 18:32:18 +02002988 switch(w->id) {
2989 case snd_soc_dapm_switch:
2990 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002991 case snd_soc_dapm_mixer_named_ctl:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002992 dapm_new_mixer(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002993 break;
2994 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002995 case snd_soc_dapm_demux:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002996 dapm_new_mux(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002997 break;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002998 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002999 case snd_soc_dapm_out_drv:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02003000 dapm_new_pga(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003001 break;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003002 case snd_soc_dapm_dai_link:
3003 dapm_new_dai_link(w);
3004 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01003005 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02003006 break;
3007 }
Mark Brownb66a70d2011-02-09 18:04:11 +00003008
3009 /* Read the initial power state from the device */
3010 if (w->reg >= 0) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003011 soc_dapm_read(w->dapm, w->reg, &val);
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -08003012 val = val >> w->shift;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003013 val &= w->mask;
3014 if (val == w->on_val)
Mark Brownb66a70d2011-02-09 18:04:11 +00003015 w->power = 1;
3016 }
3017
Richard Purdie2b97eab2006-10-06 18:32:18 +02003018 w->new = 1;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02003019
Mark Brown7508b122011-10-05 12:09:12 +01003020 dapm_mark_dirty(w, "new widget");
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02003021 dapm_debugfs_add_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003022 }
3023
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003024 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
3025 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003026 return 0;
3027}
3028EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
3029
3030/**
3031 * snd_soc_dapm_get_volsw - dapm mixer get callback
3032 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003033 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003034 *
3035 * Callback to get the value of a dapm mixer control.
3036 *
3037 * Returns 0 for success.
3038 */
3039int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
3040 struct snd_ctl_elem_value *ucontrol)
3041{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003042 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3043 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003044 struct soc_mixer_control *mc =
3045 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003046 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003047 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003048 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003049 unsigned int mask = (1 << fls(max)) - 1;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003050 unsigned int invert = mc->invert;
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003051 unsigned int val;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003052 int ret = 0;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003053
3054 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003055 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003056 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003057 kcontrol->id.name);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003058
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003059 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003060 if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) {
3061 ret = soc_dapm_read(dapm, reg, &val);
3062 val = (val >> shift) & mask;
3063 } else {
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003064 val = dapm_kcontrol_get_value(kcontrol);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003065 }
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003066 mutex_unlock(&card->dapm_mutex);
3067
Chen-Yu Tsai01ad5e72016-08-27 19:27:58 +08003068 if (ret)
3069 return ret;
3070
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003071 if (invert)
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003072 ucontrol->value.integer.value[0] = max - val;
3073 else
3074 ucontrol->value.integer.value[0] = val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003075
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003076 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003077}
3078EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
3079
3080/**
3081 * snd_soc_dapm_put_volsw - dapm mixer set callback
3082 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003083 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003084 *
3085 * Callback to set the value of a dapm mixer control.
3086 *
3087 * Returns 0 for success.
3088 */
3089int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
3090 struct snd_ctl_elem_value *ucontrol)
3091{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003092 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3093 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003094 struct soc_mixer_control *mc =
3095 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003096 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003097 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003098 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003099 unsigned int mask = (1 << fls(max)) - 1;
3100 unsigned int invert = mc->invert;
Stephen Warrene9cf7042011-01-27 14:54:05 -07003101 unsigned int val;
Jarkko Nikula18626c72014-06-09 14:20:29 +03003102 int connect, change, reg_change = 0;
Mark Brown97404f22010-12-14 16:13:57 +00003103 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003104 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003105
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003106 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003107 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003108 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003109 kcontrol->id.name);
3110
Richard Purdie2b97eab2006-10-06 18:32:18 +02003111 val = (ucontrol->value.integer.value[0] & mask);
Benoît Thébaudeau8a720712012-06-18 22:41:28 +02003112 connect = !!val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003113
3114 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01003115 val = max - val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003116
Liam Girdwood3cd04342012-03-09 12:02:08 +00003117 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003118
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003119 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown283375c2009-12-07 18:09:03 +00003120
Jarkko Nikula18626c72014-06-09 14:20:29 +03003121 if (reg != SND_SOC_NOPM) {
3122 mask = mask << shift;
3123 val = val << shift;
Lars-Peter Clausenc9e065c2014-05-04 19:17:05 +02003124
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003125 reg_change = soc_dapm_test_bits(dapm, reg, mask, val);
Jarkko Nikula18626c72014-06-09 14:20:29 +03003126 }
3127
3128 if (change || reg_change) {
3129 if (reg_change) {
3130 update.kcontrol = kcontrol;
3131 update.reg = reg;
3132 update.mask = mask;
3133 update.val = val;
3134 card->update = &update;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003135 }
Jarkko Nikula18626c72014-06-09 14:20:29 +03003136 change |= reg_change;
Mark Brown97404f22010-12-14 16:13:57 +00003137
Nenghua Cao52765972013-12-13 20:13:49 +08003138 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Mark Brown97404f22010-12-14 16:13:57 +00003139
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003140 card->update = NULL;
Mark Brown283375c2009-12-07 18:09:03 +00003141 }
3142
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003143 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003144
3145 if (ret > 0)
3146 soc_dpcm_runtime_update(card);
3147
Lars-Peter Clausen56a67832013-07-24 15:27:35 +02003148 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003149}
3150EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3151
3152/**
3153 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3154 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003155 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003156 *
3157 * Callback to get the value of a dapm enumerated double mixer control.
3158 *
3159 * Returns 0 for success.
3160 */
3161int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3162 struct snd_ctl_elem_value *ucontrol)
3163{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003164 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
Charles Keepax561ed682015-05-01 12:37:26 +01003165 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003166 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003167 unsigned int reg_val, val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003168
Charles Keepax561ed682015-05-01 12:37:26 +01003169 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3170 if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003171 int ret = soc_dapm_read(dapm, e->reg, &reg_val);
Charles Keepax964a0b82015-05-08 10:50:10 +01003172 if (ret) {
3173 mutex_unlock(&card->dapm_mutex);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003174 return ret;
Charles Keepax964a0b82015-05-08 10:50:10 +01003175 }
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003176 } else {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003177 reg_val = dapm_kcontrol_get_value(kcontrol);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003178 }
Charles Keepax561ed682015-05-01 12:37:26 +01003179 mutex_unlock(&card->dapm_mutex);
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003180
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003181 val = (reg_val >> e->shift_l) & e->mask;
3182 ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3183 if (e->shift_l != e->shift_r) {
3184 val = (reg_val >> e->shift_r) & e->mask;
3185 val = snd_soc_enum_val_to_item(e, val);
3186 ucontrol->value.enumerated.item[1] = val;
3187 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003188
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003189 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003190}
3191EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3192
3193/**
3194 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3195 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003196 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003197 *
3198 * Callback to set the value of a dapm enumerated double mixer control.
3199 *
3200 * Returns 0 for success.
3201 */
3202int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3203 struct snd_ctl_elem_value *ucontrol)
3204{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003205 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3206 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003207 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003208 unsigned int *item = ucontrol->value.enumerated.item;
Charles Keepax561ed682015-05-01 12:37:26 +01003209 unsigned int val, change, reg_change = 0;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003210 unsigned int mask;
Mark Brown97404f22010-12-14 16:13:57 +00003211 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003212 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003213
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003214 if (item[0] >= e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003215 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003216
3217 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003218 mask = e->mask << e->shift_l;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003219 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003220 if (item[1] > e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003221 return -EINVAL;
Chen-Yu Tsai071133a2016-08-27 19:27:59 +08003222 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003223 mask |= e->mask << e->shift_r;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003224 }
3225
Liam Girdwood3cd04342012-03-09 12:02:08 +00003226 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06003227
Charles Keepax561ed682015-05-01 12:37:26 +01003228 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown97404f22010-12-14 16:13:57 +00003229
Charles Keepax561ed682015-05-01 12:37:26 +01003230 if (e->reg != SND_SOC_NOPM)
3231 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3232
3233 if (change || reg_change) {
3234 if (reg_change) {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003235 update.kcontrol = kcontrol;
3236 update.reg = e->reg;
3237 update.mask = mask;
3238 update.val = val;
3239 card->update = &update;
3240 }
Charles Keepax561ed682015-05-01 12:37:26 +01003241 change |= reg_change;
Mark Brown3a655772009-10-05 17:23:30 +01003242
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003243 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
Mark Brown1642e3d2009-10-05 16:24:26 +01003244
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003245 card->update = NULL;
Stephen Warrenfafd2172011-04-28 17:38:00 -06003246 }
3247
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003248 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003249
3250 if (ret > 0)
3251 soc_dpcm_runtime_update(card);
3252
Mark Brown97404f22010-12-14 16:13:57 +00003253 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003254}
3255EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3256
3257/**
Mark Brown8b37dbd2009-02-28 21:14:20 +00003258 * snd_soc_dapm_info_pin_switch - Info for a pin switch
3259 *
3260 * @kcontrol: mixer control
3261 * @uinfo: control element information
3262 *
3263 * Callback to provide information about a pin switch control.
3264 */
3265int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3266 struct snd_ctl_elem_info *uinfo)
3267{
3268 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3269 uinfo->count = 1;
3270 uinfo->value.integer.min = 0;
3271 uinfo->value.integer.max = 1;
3272
3273 return 0;
3274}
3275EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3276
3277/**
3278 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3279 *
3280 * @kcontrol: mixer control
3281 * @ucontrol: Value
3282 */
3283int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3284 struct snd_ctl_elem_value *ucontrol)
3285{
Mark Brown48a8c392012-02-14 17:11:15 -08003286 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003287 const char *pin = (const char *)kcontrol->private_value;
3288
Liam Girdwood3cd04342012-03-09 12:02:08 +00003289 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003290
3291 ucontrol->value.integer.value[0] =
Mark Brown48a8c392012-02-14 17:11:15 -08003292 snd_soc_dapm_get_pin_status(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003293
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003294 mutex_unlock(&card->dapm_mutex);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003295
3296 return 0;
3297}
3298EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3299
3300/**
3301 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3302 *
3303 * @kcontrol: mixer control
3304 * @ucontrol: Value
3305 */
3306int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3307 struct snd_ctl_elem_value *ucontrol)
3308{
Mark Brown48a8c392012-02-14 17:11:15 -08003309 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003310 const char *pin = (const char *)kcontrol->private_value;
3311
Mark Brown8b37dbd2009-02-28 21:14:20 +00003312 if (ucontrol->value.integer.value[0])
Mark Brown48a8c392012-02-14 17:11:15 -08003313 snd_soc_dapm_enable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003314 else
Mark Brown48a8c392012-02-14 17:11:15 -08003315 snd_soc_dapm_disable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003316
Mark Brown48a8c392012-02-14 17:11:15 -08003317 snd_soc_dapm_sync(&card->dapm);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003318 return 0;
3319}
3320EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3321
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +01003322struct snd_soc_dapm_widget *
Mark Brown5ba06fc2012-02-16 11:07:13 -08003323snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003324 const struct snd_soc_dapm_widget *widget)
3325{
3326 struct snd_soc_dapm_widget *w;
3327
3328 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3329 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3330 if (!w)
3331 dev_err(dapm->dev,
3332 "ASoC: Failed to create DAPM control %s\n",
3333 widget->name);
3334
3335 mutex_unlock(&dapm->card->dapm_mutex);
3336 return w;
3337}
Subhransu S. Prustya5d56392016-06-27 09:18:03 +05303338EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003339
3340struct snd_soc_dapm_widget *
3341snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003342 const struct snd_soc_dapm_widget *widget)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003343{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003344 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003345 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003346 const char *prefix;
Mark Brown62ea8742012-01-21 21:14:48 +00003347 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003348
3349 if ((w = dapm_cnew_widget(widget)) == NULL)
Mark Brown5ba06fc2012-02-16 11:07:13 -08003350 return NULL;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003351
Mark Brown62ea8742012-01-21 21:14:48 +00003352 switch (w->id) {
3353 case snd_soc_dapm_regulator_supply:
Liam Girdwooda3cc0562012-03-09 17:20:16 +00003354 w->regulator = devm_regulator_get(dapm->dev, w->name);
3355 if (IS_ERR(w->regulator)) {
3356 ret = PTR_ERR(w->regulator);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003357 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Mark Brown62ea8742012-01-21 21:14:48 +00003358 w->name, ret);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003359 return NULL;
Mark Brown62ea8742012-01-21 21:14:48 +00003360 }
Mark Brown8784c772013-01-10 19:33:47 +00003361
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003362 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00003363 ret = regulator_allow_bypass(w->regulator, true);
3364 if (ret != 0)
3365 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00003366 "ASoC: Failed to bypass %s: %d\n",
Mark Brown8784c772013-01-10 19:33:47 +00003367 w->name, ret);
3368 }
Mark Brown62ea8742012-01-21 21:14:48 +00003369 break;
Ola Liljad7e7eb92012-05-24 15:26:25 +02003370 case snd_soc_dapm_clock_supply:
Mark Brown165961e2012-06-05 10:44:23 +01003371#ifdef CONFIG_CLKDEV_LOOKUP
Mark Brown695594f12012-06-04 08:14:13 +01003372 w->clk = devm_clk_get(dapm->dev, w->name);
Ola Liljad7e7eb92012-05-24 15:26:25 +02003373 if (IS_ERR(w->clk)) {
3374 ret = PTR_ERR(w->clk);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003375 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Ola Liljad7e7eb92012-05-24 15:26:25 +02003376 w->name, ret);
3377 return NULL;
3378 }
Mark Brownec029952012-06-04 08:16:20 +01003379#else
3380 return NULL;
3381#endif
Ola Liljad7e7eb92012-05-24 15:26:25 +02003382 break;
Mark Brown62ea8742012-01-21 21:14:48 +00003383 default:
3384 break;
3385 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003386
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003387 prefix = soc_dapm_prefix(dapm);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003388 if (prefix)
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003389 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003390 else
Lars-Peter Clausen48068962015-07-21 18:11:08 +02003391 w->name = kstrdup_const(widget->name, GFP_KERNEL);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003392 if (w->name == NULL) {
3393 kfree(w);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003394 return NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003395 }
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003396
Mark Brown7ca3a182011-10-08 14:04:50 +01003397 switch (w->id) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003398 case snd_soc_dapm_mic:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003399 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003400 w->power_check = dapm_generic_check_power;
3401 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003402 case snd_soc_dapm_input:
3403 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003404 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003405 w->power_check = dapm_generic_check_power;
3406 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003407 case snd_soc_dapm_spk:
3408 case snd_soc_dapm_hp:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003409 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003410 w->power_check = dapm_generic_check_power;
3411 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003412 case snd_soc_dapm_output:
3413 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003414 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003415 w->power_check = dapm_generic_check_power;
3416 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003417 case snd_soc_dapm_vmid:
3418 case snd_soc_dapm_siggen:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003419 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003420 w->power_check = dapm_always_on_check_power;
3421 break;
Vinod Koul56b44372015-11-23 21:22:30 +05303422 case snd_soc_dapm_sink:
3423 w->is_ep = SND_SOC_DAPM_EP_SINK;
3424 w->power_check = dapm_always_on_check_power;
3425 break;
3426
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003427 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02003428 case snd_soc_dapm_demux:
Mark Brown7ca3a182011-10-08 14:04:50 +01003429 case snd_soc_dapm_switch:
3430 case snd_soc_dapm_mixer:
3431 case snd_soc_dapm_mixer_named_ctl:
Mark Brown63c69a62013-07-18 22:03:01 +01003432 case snd_soc_dapm_adc:
3433 case snd_soc_dapm_aif_out:
3434 case snd_soc_dapm_dac:
3435 case snd_soc_dapm_aif_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003436 case snd_soc_dapm_pga:
3437 case snd_soc_dapm_out_drv:
Mark Brown7ca3a182011-10-08 14:04:50 +01003438 case snd_soc_dapm_micbias:
Mark Brown7ca3a182011-10-08 14:04:50 +01003439 case snd_soc_dapm_line:
Mark Brownc74184e2012-04-04 22:12:09 +01003440 case snd_soc_dapm_dai_link:
Lars-Peter Clausencdef2ad2014-10-20 19:36:38 +02003441 case snd_soc_dapm_dai_out:
3442 case snd_soc_dapm_dai_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003443 w->power_check = dapm_generic_check_power;
3444 break;
3445 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00003446 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02003447 case snd_soc_dapm_clock_supply:
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003448 case snd_soc_dapm_kcontrol:
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003449 w->is_supply = 1;
Mark Brown7ca3a182011-10-08 14:04:50 +01003450 w->power_check = dapm_supply_check_power;
3451 break;
3452 default:
3453 w->power_check = dapm_always_on_check_power;
3454 break;
3455 }
3456
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003457 w->dapm = dapm;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003458 INIT_LIST_HEAD(&w->list);
Mark Browndb432b42011-10-03 21:06:40 +01003459 INIT_LIST_HEAD(&w->dirty);
Lars-Peter Clausen92fa1242015-05-01 18:02:42 +02003460 list_add_tail(&w->list, &dapm->card->widgets);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003461
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003462 snd_soc_dapm_for_each_direction(dir) {
3463 INIT_LIST_HEAD(&w->edges[dir]);
3464 w->endpoints[dir] = -1;
3465 }
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02003466
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02003467 /* machine layer sets up unconnected pins and insertions */
Richard Purdie2b97eab2006-10-06 18:32:18 +02003468 w->connected = 1;
Mark Brown5ba06fc2012-02-16 11:07:13 -08003469 return w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003470}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003471
3472/**
Mark Brown4ba13272008-05-13 14:51:19 +02003473 * snd_soc_dapm_new_controls - create new dapm controls
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003474 * @dapm: DAPM context
Mark Brown4ba13272008-05-13 14:51:19 +02003475 * @widget: widget array
3476 * @num: number of widgets
3477 *
3478 * Creates new DAPM controls based upon the templates.
3479 *
3480 * Returns 0 for success else error.
3481 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003482int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
Mark Brown4ba13272008-05-13 14:51:19 +02003483 const struct snd_soc_dapm_widget *widget,
3484 int num)
3485{
Mark Brown5ba06fc2012-02-16 11:07:13 -08003486 struct snd_soc_dapm_widget *w;
3487 int i;
Dan Carpenter60884c22012-04-13 22:25:43 +03003488 int ret = 0;
Mark Brown4ba13272008-05-13 14:51:19 +02003489
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003490 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown4ba13272008-05-13 14:51:19 +02003491 for (i = 0; i < num; i++) {
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003492 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003493 if (!w) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02003494 dev_err(dapm->dev,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003495 "ASoC: Failed to create DAPM control %s\n",
3496 widget->name);
Dan Carpenter60884c22012-04-13 22:25:43 +03003497 ret = -ENOMEM;
3498 break;
Mark Brownb8b33cb2008-12-18 11:19:30 +00003499 }
Mark Brown4ba13272008-05-13 14:51:19 +02003500 widget++;
3501 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003502 mutex_unlock(&dapm->card->dapm_mutex);
Dan Carpenter60884c22012-04-13 22:25:43 +03003503 return ret;
Mark Brown4ba13272008-05-13 14:51:19 +02003504}
3505EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3506
Mark Brownc74184e2012-04-04 22:12:09 +01003507static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3508 struct snd_kcontrol *kcontrol, int event)
3509{
3510 struct snd_soc_dapm_path *source_p, *sink_p;
3511 struct snd_soc_dai *source, *sink;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003512 const struct snd_soc_pcm_stream *config = w->params + w->params_select;
Mark Brownc74184e2012-04-04 22:12:09 +01003513 struct snd_pcm_substream substream;
Mark Brown9747cec2012-04-26 19:12:21 +01003514 struct snd_pcm_hw_params *params = NULL;
Nicolin Chen8053f212016-07-26 14:55:51 -07003515 struct snd_pcm_runtime *runtime = NULL;
Mark Brownc74184e2012-04-04 22:12:09 +01003516 u64 fmt;
3517 int ret;
3518
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003519 if (WARN_ON(!config) ||
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003520 WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3521 list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003522 return -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003523
3524 /* We only support a single source and sink, pick the first */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003525 source_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_OUT],
3526 struct snd_soc_dapm_path,
3527 list_node[SND_SOC_DAPM_DIR_OUT]);
3528 sink_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_IN],
3529 struct snd_soc_dapm_path,
3530 list_node[SND_SOC_DAPM_DIR_IN]);
Mark Brownc74184e2012-04-04 22:12:09 +01003531
3532 source = source_p->source->priv;
3533 sink = sink_p->sink->priv;
3534
3535 /* Be a little careful as we don't want to overflow the mask array */
3536 if (config->formats) {
3537 fmt = ffs(config->formats) - 1;
3538 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003539 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003540 config->formats);
3541 fmt = 0;
3542 }
3543
3544 /* Currently very limited parameter selection */
Mark Brown9747cec2012-04-26 19:12:21 +01003545 params = kzalloc(sizeof(*params), GFP_KERNEL);
3546 if (!params) {
3547 ret = -ENOMEM;
3548 goto out;
3549 }
3550 snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
Mark Brownc74184e2012-04-04 22:12:09 +01003551
Mark Brown9747cec2012-04-26 19:12:21 +01003552 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
Mark Brownc74184e2012-04-04 22:12:09 +01003553 config->rate_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003554 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
Mark Brownc74184e2012-04-04 22:12:09 +01003555 config->rate_max;
3556
Mark Brown9747cec2012-04-26 19:12:21 +01003557 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
Mark Brownc74184e2012-04-04 22:12:09 +01003558 = config->channels_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003559 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
Mark Brownc74184e2012-04-04 22:12:09 +01003560 = config->channels_max;
3561
3562 memset(&substream, 0, sizeof(substream));
3563
Nicolin Chen8053f212016-07-26 14:55:51 -07003564 /* Allocate a dummy snd_pcm_runtime for startup() and other ops() */
3565 runtime = kzalloc(sizeof(*runtime), GFP_KERNEL);
3566 if (!runtime) {
3567 ret = -ENOMEM;
3568 goto out;
3569 }
3570 substream.runtime = runtime;
3571
Mark Brownc74184e2012-04-04 22:12:09 +01003572 switch (event) {
3573 case SND_SOC_DAPM_PRE_PMU:
Benoit Cousson93e69582014-07-08 23:19:38 +02003574 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303575 if (source->driver->ops && source->driver->ops->startup) {
3576 ret = source->driver->ops->startup(&substream, source);
3577 if (ret < 0) {
3578 dev_err(source->dev,
3579 "ASoC: startup() failed: %d\n", ret);
3580 goto out;
3581 }
3582 source->active++;
3583 }
Benoit Cousson93e69582014-07-08 23:19:38 +02003584 ret = soc_dai_hw_params(&substream, params, source);
3585 if (ret < 0)
3586 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003587
Benoit Cousson93e69582014-07-08 23:19:38 +02003588 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303589 if (sink->driver->ops && sink->driver->ops->startup) {
3590 ret = sink->driver->ops->startup(&substream, sink);
3591 if (ret < 0) {
3592 dev_err(sink->dev,
3593 "ASoC: startup() failed: %d\n", ret);
3594 goto out;
3595 }
3596 sink->active++;
3597 }
Benoit Cousson93e69582014-07-08 23:19:38 +02003598 ret = soc_dai_hw_params(&substream, params, sink);
3599 if (ret < 0)
3600 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003601 break;
3602
3603 case SND_SOC_DAPM_POST_PMU:
Mark Brownda183962013-02-06 15:44:07 +00003604 ret = snd_soc_dai_digital_mute(sink, 0,
3605 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003606 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003607 dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003608 ret = 0;
Mark Brownc74184e2012-04-04 22:12:09 +01003609 break;
3610
3611 case SND_SOC_DAPM_PRE_PMD:
Mark Brownda183962013-02-06 15:44:07 +00003612 ret = snd_soc_dai_digital_mute(sink, 1,
3613 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003614 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003615 dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003616 ret = 0;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303617
3618 source->active--;
3619 if (source->driver->ops && source->driver->ops->shutdown) {
3620 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3621 source->driver->ops->shutdown(&substream, source);
3622 }
3623
3624 sink->active--;
3625 if (sink->driver->ops && sink->driver->ops->shutdown) {
3626 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3627 sink->driver->ops->shutdown(&substream, sink);
3628 }
Mark Brownc74184e2012-04-04 22:12:09 +01003629 break;
3630
3631 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01003632 WARN(1, "Unknown event %d\n", event);
Sudip Mukherjee75881df2015-09-10 18:01:44 +05303633 ret = -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003634 }
3635
Mark Brown9747cec2012-04-26 19:12:21 +01003636out:
Nicolin Chen8053f212016-07-26 14:55:51 -07003637 kfree(runtime);
Mark Brown9747cec2012-04-26 19:12:21 +01003638 kfree(params);
3639 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003640}
3641
Nikesh Oswalc6615082015-02-02 17:06:44 +00003642static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
3643 struct snd_ctl_elem_value *ucontrol)
3644{
3645 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3646
Takashi Iwai741338f2016-02-29 17:20:48 +01003647 ucontrol->value.enumerated.item[0] = w->params_select;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003648
3649 return 0;
3650}
3651
3652static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
3653 struct snd_ctl_elem_value *ucontrol)
3654{
3655 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3656
3657 /* Can't change the config when widget is already powered */
3658 if (w->power)
3659 return -EBUSY;
3660
Takashi Iwai741338f2016-02-29 17:20:48 +01003661 if (ucontrol->value.enumerated.item[0] == w->params_select)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003662 return 0;
3663
Takashi Iwai741338f2016-02-29 17:20:48 +01003664 if (ucontrol->value.enumerated.item[0] >= w->num_params)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003665 return -EINVAL;
3666
Takashi Iwai741338f2016-02-29 17:20:48 +01003667 w->params_select = ucontrol->value.enumerated.item[0];
Nikesh Oswalc6615082015-02-02 17:06:44 +00003668
3669 return 0;
3670}
3671
Mark Brownc74184e2012-04-04 22:12:09 +01003672int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3673 const struct snd_soc_pcm_stream *params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00003674 unsigned int num_params,
Mark Brownc74184e2012-04-04 22:12:09 +01003675 struct snd_soc_dapm_widget *source,
3676 struct snd_soc_dapm_widget *sink)
3677{
Mark Brownc74184e2012-04-04 22:12:09 +01003678 struct snd_soc_dapm_widget template;
3679 struct snd_soc_dapm_widget *w;
Mark Brownc74184e2012-04-04 22:12:09 +01003680 char *link_name;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003681 int ret, count;
3682 unsigned long private_value;
3683 const char **w_param_text;
3684 struct soc_enum w_param_enum[] = {
3685 SOC_ENUM_SINGLE(0, 0, 0, NULL),
3686 };
3687 struct snd_kcontrol_new kcontrol_dai_link[] = {
3688 SOC_ENUM_EXT(NULL, w_param_enum[0],
3689 snd_soc_dapm_dai_link_get,
3690 snd_soc_dapm_dai_link_put),
3691 };
3692 const struct snd_soc_pcm_stream *config = params;
Mark Brownc74184e2012-04-04 22:12:09 +01003693
Nikesh Oswalc6615082015-02-02 17:06:44 +00003694 w_param_text = devm_kcalloc(card->dev, num_params,
3695 sizeof(char *), GFP_KERNEL);
3696 if (!w_param_text)
Mark Brownc74184e2012-04-04 22:12:09 +01003697 return -ENOMEM;
Mark Brownc74184e2012-04-04 22:12:09 +01003698
Charles Keepax46172b62015-03-25 11:22:35 +00003699 link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
3700 source->name, sink->name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003701 if (!link_name) {
3702 ret = -ENOMEM;
3703 goto outfree_w_param;
3704 }
Mark Brownc74184e2012-04-04 22:12:09 +01003705
Nikesh Oswalc6615082015-02-02 17:06:44 +00003706 for (count = 0 ; count < num_params; count++) {
3707 if (!config->stream_name) {
3708 dev_warn(card->dapm.dev,
3709 "ASoC: anonymous config %d for dai link %s\n",
3710 count, link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003711 w_param_text[count] =
Charles Keepax46172b62015-03-25 11:22:35 +00003712 devm_kasprintf(card->dev, GFP_KERNEL,
3713 "Anonymous Configuration %d",
3714 count);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003715 if (!w_param_text[count]) {
3716 ret = -ENOMEM;
3717 goto outfree_link_name;
3718 }
Nikesh Oswalc6615082015-02-02 17:06:44 +00003719 } else {
3720 w_param_text[count] = devm_kmemdup(card->dev,
3721 config->stream_name,
3722 strlen(config->stream_name) + 1,
3723 GFP_KERNEL);
3724 if (!w_param_text[count]) {
3725 ret = -ENOMEM;
3726 goto outfree_link_name;
3727 }
3728 }
3729 config++;
3730 }
3731 w_param_enum[0].items = num_params;
3732 w_param_enum[0].texts = w_param_text;
Mark Brownc74184e2012-04-04 22:12:09 +01003733
3734 memset(&template, 0, sizeof(template));
3735 template.reg = SND_SOC_NOPM;
3736 template.id = snd_soc_dapm_dai_link;
3737 template.name = link_name;
3738 template.event = snd_soc_dai_link_event;
3739 template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3740 SND_SOC_DAPM_PRE_PMD;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003741 template.num_kcontrols = 1;
3742 /* duplicate w_param_enum on heap so that memory persists */
3743 private_value =
3744 (unsigned long) devm_kmemdup(card->dev,
3745 (void *)(kcontrol_dai_link[0].private_value),
3746 sizeof(struct soc_enum), GFP_KERNEL);
3747 if (!private_value) {
3748 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3749 link_name);
3750 ret = -ENOMEM;
3751 goto outfree_link_name;
3752 }
3753 kcontrol_dai_link[0].private_value = private_value;
3754 /* duplicate kcontrol_dai_link on heap so that memory persists */
3755 template.kcontrol_news =
3756 devm_kmemdup(card->dev, &kcontrol_dai_link[0],
3757 sizeof(struct snd_kcontrol_new),
3758 GFP_KERNEL);
3759 if (!template.kcontrol_news) {
3760 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3761 link_name);
3762 ret = -ENOMEM;
3763 goto outfree_private_value;
3764 }
Mark Brownc74184e2012-04-04 22:12:09 +01003765
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003766 dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
Mark Brownc74184e2012-04-04 22:12:09 +01003767
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003768 w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
Mark Brownc74184e2012-04-04 22:12:09 +01003769 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003770 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003771 link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003772 ret = -ENOMEM;
3773 goto outfree_kcontrol_news;
Mark Brownc74184e2012-04-04 22:12:09 +01003774 }
3775
3776 w->params = params;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003777 w->num_params = num_params;
Mark Brownc74184e2012-04-04 22:12:09 +01003778
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003779 ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3780 if (ret)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003781 goto outfree_w;
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003782 return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003783
3784outfree_w:
3785 devm_kfree(card->dev, w);
3786outfree_kcontrol_news:
3787 devm_kfree(card->dev, (void *)template.kcontrol_news);
3788outfree_private_value:
3789 devm_kfree(card->dev, (void *)private_value);
3790outfree_link_name:
3791 devm_kfree(card->dev, link_name);
3792outfree_w_param:
3793 for (count = 0 ; count < num_params; count++)
3794 devm_kfree(card->dev, (void *)w_param_text[count]);
3795 devm_kfree(card->dev, w_param_text);
3796
3797 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003798}
3799
Mark Brown888df392012-02-16 19:37:51 -08003800int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3801 struct snd_soc_dai *dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003802{
Mark Brown888df392012-02-16 19:37:51 -08003803 struct snd_soc_dapm_widget template;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003804 struct snd_soc_dapm_widget *w;
3805
Mark Brown888df392012-02-16 19:37:51 -08003806 WARN_ON(dapm->dev != dai->dev);
3807
3808 memset(&template, 0, sizeof(template));
3809 template.reg = SND_SOC_NOPM;
3810
3811 if (dai->driver->playback.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003812 template.id = snd_soc_dapm_dai_in;
Mark Brown888df392012-02-16 19:37:51 -08003813 template.name = dai->driver->playback.stream_name;
3814 template.sname = dai->driver->playback.stream_name;
3815
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003816 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003817 template.name);
3818
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003819 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003820 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003821 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003822 dai->driver->playback.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003823 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003824 }
3825
3826 w->priv = dai;
3827 dai->playback_widget = w;
3828 }
3829
3830 if (dai->driver->capture.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003831 template.id = snd_soc_dapm_dai_out;
Mark Brown888df392012-02-16 19:37:51 -08003832 template.name = dai->driver->capture.stream_name;
3833 template.sname = dai->driver->capture.stream_name;
3834
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003835 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003836 template.name);
3837
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003838 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003839 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003840 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003841 dai->driver->capture.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003842 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003843 }
3844
3845 w->priv = dai;
3846 dai->capture_widget = w;
3847 }
3848
3849 return 0;
3850}
3851
3852int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3853{
3854 struct snd_soc_dapm_widget *dai_w, *w;
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003855 struct snd_soc_dapm_widget *src, *sink;
Mark Brown888df392012-02-16 19:37:51 -08003856 struct snd_soc_dai *dai;
Mark Brown888df392012-02-16 19:37:51 -08003857
3858 /* For each DAI widget... */
3859 list_for_each_entry(dai_w, &card->widgets, list) {
Mark Brown46162742013-06-05 19:36:11 +01003860 switch (dai_w->id) {
3861 case snd_soc_dapm_dai_in:
3862 case snd_soc_dapm_dai_out:
3863 break;
3864 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02003865 continue;
Mark Brown46162742013-06-05 19:36:11 +01003866 }
Mark Brown888df392012-02-16 19:37:51 -08003867
3868 dai = dai_w->priv;
3869
3870 /* ...find all widgets with the same stream and link them */
3871 list_for_each_entry(w, &card->widgets, list) {
3872 if (w->dapm != dai_w->dapm)
3873 continue;
3874
Mark Brown46162742013-06-05 19:36:11 +01003875 switch (w->id) {
3876 case snd_soc_dapm_dai_in:
3877 case snd_soc_dapm_dai_out:
Mark Brown888df392012-02-16 19:37:51 -08003878 continue;
Mark Brown46162742013-06-05 19:36:11 +01003879 default:
3880 break;
3881 }
Mark Brown888df392012-02-16 19:37:51 -08003882
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003883 if (!w->sname || !strstr(w->sname, dai_w->sname))
Mark Brown888df392012-02-16 19:37:51 -08003884 continue;
3885
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003886 if (dai_w->id == snd_soc_dapm_dai_in) {
3887 src = dai_w;
3888 sink = w;
3889 } else {
3890 src = w;
3891 sink = dai_w;
Mark Brown888df392012-02-16 19:37:51 -08003892 }
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003893 dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3894 snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003895 }
3896 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003897
Mark Brown888df392012-02-16 19:37:51 -08003898 return 0;
3899}
Liam Girdwood64a648c2011-07-25 11:15:15 +01003900
Benoit Cousson44ba2642014-07-08 23:19:36 +02003901static void dapm_connect_dai_link_widgets(struct snd_soc_card *card,
3902 struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003903{
Benoit Cousson44ba2642014-07-08 23:19:36 +02003904 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003905 struct snd_soc_dapm_widget *sink, *source;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003906 int i;
3907
Benoit Cousson44ba2642014-07-08 23:19:36 +02003908 for (i = 0; i < rtd->num_codecs; i++) {
3909 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003910
Phani Kumar Uppalapati05e2fe82015-06-22 20:46:49 -07003911 if (!cpu_dai->component->codec)
3912 continue;
3913
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003914 /* connect BE DAI playback if widgets are valid */
3915 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003916 source = cpu_dai->playback_widget;
3917 sink = codec_dai->playback_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003918 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003919 cpu_dai->component->name, source->name,
3920 codec_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003921
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003922 snd_soc_dapm_add_path(&card->dapm, source, sink,
3923 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003924 }
3925
3926 /* connect BE DAI capture if widgets are valid */
3927 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003928 source = codec_dai->capture_widget;
3929 sink = cpu_dai->capture_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003930 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003931 codec_dai->component->name, source->name,
3932 cpu_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003933
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003934 snd_soc_dapm_add_path(&card->dapm, source, sink,
3935 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003936 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003937 }
3938}
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003939
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003940static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
3941 int event)
3942{
3943 struct snd_soc_dapm_widget *w;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003944 unsigned int ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003945
3946 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
3947 w = dai->playback_widget;
3948 else
3949 w = dai->capture_widget;
3950
3951 if (w) {
3952 dapm_mark_dirty(w, "stream event");
3953
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003954 if (w->id == snd_soc_dapm_dai_in) {
3955 ep = SND_SOC_DAPM_EP_SOURCE;
3956 dapm_widget_invalidate_input_paths(w);
3957 } else {
3958 ep = SND_SOC_DAPM_EP_SINK;
3959 dapm_widget_invalidate_output_paths(w);
3960 }
3961
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003962 switch (event) {
3963 case SND_SOC_DAPM_STREAM_START:
3964 w->active = 1;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003965 w->is_ep = ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003966 break;
3967 case SND_SOC_DAPM_STREAM_STOP:
3968 w->active = 0;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003969 w->is_ep = 0;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003970 break;
3971 case SND_SOC_DAPM_STREAM_SUSPEND:
3972 case SND_SOC_DAPM_STREAM_RESUME:
3973 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3974 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3975 break;
3976 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003977 }
3978}
3979
Benoit Cousson44ba2642014-07-08 23:19:36 +02003980void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
3981{
Mengdong Lin1a497982015-11-18 02:34:11 -05003982 struct snd_soc_pcm_runtime *rtd;
Benoit Cousson44ba2642014-07-08 23:19:36 +02003983
3984 /* for each BE DAI link... */
Mengdong Lin1a497982015-11-18 02:34:11 -05003985 list_for_each_entry(rtd, &card->rtd_list, list) {
Benoit Cousson44ba2642014-07-08 23:19:36 +02003986 /*
3987 * dynamic FE links have no fixed DAI mapping.
3988 * CODEC<->CODEC links have no direct connection.
3989 */
3990 if (rtd->dai_link->dynamic || rtd->dai_link->params)
3991 continue;
3992
3993 dapm_connect_dai_link_widgets(card, rtd);
3994 }
3995}
3996
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003997static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3998 int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003999{
Benoit Cousson44ba2642014-07-08 23:19:36 +02004000 int i;
4001
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02004002 soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
Benoit Cousson44ba2642014-07-08 23:19:36 +02004003 for (i = 0; i < rtd->num_codecs; i++)
4004 soc_dapm_dai_stream_event(rtd->codec_dais[i], stream, event);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004005
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004006 dapm_power_widgets(rtd->card, event);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004007}
4008
4009/**
4010 * snd_soc_dapm_stream_event - send a stream event to the dapm core
4011 * @rtd: PCM runtime data
4012 * @stream: stream name
4013 * @event: stream event
4014 *
4015 * Sends a stream event to the dapm core. The core then makes any
4016 * necessary widget power changes.
4017 *
4018 * Returns 0 for success else error.
4019 */
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004020void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4021 int event)
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004022{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00004023 struct snd_soc_card *card = rtd->card;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004024
Liam Girdwood3cd04342012-03-09 12:02:08 +00004025 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004026 soc_dapm_stream_event(rtd, stream, event);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00004027 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004028}
Richard Purdie2b97eab2006-10-06 18:32:18 +02004029
4030/**
Charles Keepax11391102014-02-18 15:22:14 +00004031 * snd_soc_dapm_enable_pin_unlocked - enable pin.
4032 * @dapm: DAPM context
4033 * @pin: pin name
4034 *
4035 * Enables input/output pin and its parents or children widgets iff there is
4036 * a valid audio route and active audio stream.
4037 *
4038 * Requires external locking.
4039 *
4040 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4041 * do any widget power switching.
4042 */
4043int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4044 const char *pin)
4045{
4046 return snd_soc_dapm_set_pin(dapm, pin, 1);
4047}
4048EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
4049
4050/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004051 * snd_soc_dapm_enable_pin - enable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004052 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004053 * @pin: pin name
Richard Purdie2b97eab2006-10-06 18:32:18 +02004054 *
Mark Brown74b8f952009-06-06 11:26:15 +01004055 * Enables input/output pin and its parents or children widgets iff there is
Liam Girdwooda5302182008-07-07 13:35:17 +01004056 * a valid audio route and active audio stream.
Charles Keepax11391102014-02-18 15:22:14 +00004057 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004058 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4059 * do any widget power switching.
Richard Purdie2b97eab2006-10-06 18:32:18 +02004060 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004061int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004062{
Charles Keepax11391102014-02-18 15:22:14 +00004063 int ret;
4064
4065 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4066
4067 ret = snd_soc_dapm_set_pin(dapm, pin, 1);
4068
4069 mutex_unlock(&dapm->card->dapm_mutex);
4070
4071 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02004072}
Liam Girdwooda5302182008-07-07 13:35:17 +01004073EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004074
4075/**
Charles Keepax11391102014-02-18 15:22:14 +00004076 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4077 * @dapm: DAPM context
4078 * @pin: pin name
4079 *
4080 * Enables input/output pin regardless of any other state. This is
4081 * intended for use with microphone bias supplies used in microphone
4082 * jack detection.
4083 *
4084 * Requires external locking.
4085 *
4086 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4087 * do any widget power switching.
4088 */
4089int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4090 const char *pin)
4091{
4092 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4093
4094 if (!w) {
4095 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4096 return -EINVAL;
4097 }
4098
4099 dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02004100 if (!w->connected) {
4101 /*
4102 * w->force does not affect the number of input or output paths,
4103 * so we only have to recheck if w->connected is changed
4104 */
4105 dapm_widget_invalidate_input_paths(w);
4106 dapm_widget_invalidate_output_paths(w);
4107 w->connected = 1;
4108 }
Charles Keepax11391102014-02-18 15:22:14 +00004109 w->force = 1;
4110 dapm_mark_dirty(w, "force enable");
4111
4112 return 0;
4113}
4114EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
4115
4116/**
Mark Brownda341832010-03-15 19:23:37 +00004117 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004118 * @dapm: DAPM context
Mark Brownda341832010-03-15 19:23:37 +00004119 * @pin: pin name
4120 *
4121 * Enables input/output pin regardless of any other state. This is
4122 * intended for use with microphone bias supplies used in microphone
4123 * jack detection.
4124 *
4125 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4126 * do any widget power switching.
4127 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004128int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
4129 const char *pin)
Mark Brownda341832010-03-15 19:23:37 +00004130{
Charles Keepax11391102014-02-18 15:22:14 +00004131 int ret;
Mark Brownda341832010-03-15 19:23:37 +00004132
Charles Keepax11391102014-02-18 15:22:14 +00004133 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownda341832010-03-15 19:23:37 +00004134
Charles Keepax11391102014-02-18 15:22:14 +00004135 ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
Mark Brown0d867332011-04-06 11:38:14 +09004136
Charles Keepax11391102014-02-18 15:22:14 +00004137 mutex_unlock(&dapm->card->dapm_mutex);
4138
4139 return ret;
Mark Brownda341832010-03-15 19:23:37 +00004140}
4141EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4142
4143/**
Charles Keepax11391102014-02-18 15:22:14 +00004144 * snd_soc_dapm_disable_pin_unlocked - disable pin.
4145 * @dapm: DAPM context
4146 * @pin: pin name
4147 *
4148 * Disables input/output pin and its parents or children widgets.
4149 *
4150 * Requires external locking.
4151 *
4152 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4153 * do any widget power switching.
4154 */
4155int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4156 const char *pin)
4157{
4158 return snd_soc_dapm_set_pin(dapm, pin, 0);
4159}
4160EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4161
4162/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004163 * snd_soc_dapm_disable_pin - disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004164 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004165 * @pin: pin name
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004166 *
Mark Brown74b8f952009-06-06 11:26:15 +01004167 * Disables input/output pin and its parents or children widgets.
Charles Keepax11391102014-02-18 15:22:14 +00004168 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004169 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4170 * do any widget power switching.
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004171 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004172int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4173 const char *pin)
Liam Girdwooda5302182008-07-07 13:35:17 +01004174{
Charles Keepax11391102014-02-18 15:22:14 +00004175 int ret;
4176
4177 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4178
4179 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4180
4181 mutex_unlock(&dapm->card->dapm_mutex);
4182
4183 return ret;
Liam Girdwooda5302182008-07-07 13:35:17 +01004184}
4185EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4186
4187/**
Charles Keepax11391102014-02-18 15:22:14 +00004188 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4189 * @dapm: DAPM context
4190 * @pin: pin name
4191 *
4192 * Marks the specified pin as being not connected, disabling it along
4193 * any parent or child widgets. At present this is identical to
4194 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4195 * additional things such as disabling controls which only affect
4196 * paths through the pin.
4197 *
4198 * Requires external locking.
4199 *
4200 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4201 * do any widget power switching.
4202 */
4203int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4204 const char *pin)
4205{
4206 return snd_soc_dapm_set_pin(dapm, pin, 0);
4207}
4208EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4209
4210/**
Mark Brown5817b522008-09-24 11:23:11 +01004211 * snd_soc_dapm_nc_pin - permanently disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004212 * @dapm: DAPM context
Mark Brown5817b522008-09-24 11:23:11 +01004213 * @pin: pin name
4214 *
4215 * Marks the specified pin as being not connected, disabling it along
4216 * any parent or child widgets. At present this is identical to
4217 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4218 * additional things such as disabling controls which only affect
4219 * paths through the pin.
4220 *
4221 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4222 * do any widget power switching.
4223 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004224int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Mark Brown5817b522008-09-24 11:23:11 +01004225{
Charles Keepax11391102014-02-18 15:22:14 +00004226 int ret;
4227
4228 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4229
4230 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4231
4232 mutex_unlock(&dapm->card->dapm_mutex);
4233
4234 return ret;
Mark Brown5817b522008-09-24 11:23:11 +01004235}
4236EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4237
4238/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004239 * snd_soc_dapm_get_pin_status - get audio pin status
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004240 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004241 * @pin: audio signal pin endpoint (or start point)
4242 *
4243 * Get audio pin status - connected or disconnected.
4244 *
4245 * Returns 1 for connected otherwise 0.
4246 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004247int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4248 const char *pin)
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004249{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004250 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004251
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004252 if (w)
4253 return w->connected;
Stephen Warrena68b38a2011-04-19 15:25:11 -06004254
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004255 return 0;
4256}
Liam Girdwooda5302182008-07-07 13:35:17 +01004257EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004258
4259/**
Mark Brown1547aba2010-05-07 21:11:40 +01004260 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004261 * @dapm: DAPM context
Mark Brown1547aba2010-05-07 21:11:40 +01004262 * @pin: audio signal pin endpoint (or start point)
4263 *
4264 * Mark the given endpoint or pin as ignoring suspend. When the
4265 * system is disabled a path between two endpoints flagged as ignoring
4266 * suspend will not be disabled. The path must already be enabled via
4267 * normal means at suspend time, it will not be turned on if it was not
4268 * already enabled.
4269 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004270int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4271 const char *pin)
Mark Brown1547aba2010-05-07 21:11:40 +01004272{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004273 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
Mark Brown1547aba2010-05-07 21:11:40 +01004274
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004275 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004276 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004277 return -EINVAL;
Mark Brown1547aba2010-05-07 21:11:40 +01004278 }
4279
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004280 w->ignore_suspend = 1;
4281
4282 return 0;
Mark Brown1547aba2010-05-07 21:11:40 +01004283}
4284EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4285
Lars-Peter Clausencdc45082014-10-20 19:36:33 +02004286/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02004287 * snd_soc_dapm_free - free dapm resources
Peter Ujfalusi728a5222011-08-26 16:33:52 +03004288 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02004289 *
4290 * Free all dapm widgets and resources.
4291 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004292void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004293{
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02004294 dapm_debugfs_cleanup(dapm);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004295 dapm_free_widgets(dapm);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02004296 list_del(&dapm->list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004297}
4298EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4299
Xiang Xiao57996352014-03-02 00:04:02 +08004300static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
Mark Brown51737472009-06-22 13:16:51 +01004301{
Liam Girdwood01005a72012-07-06 16:57:05 +01004302 struct snd_soc_card *card = dapm->card;
Mark Brown51737472009-06-22 13:16:51 +01004303 struct snd_soc_dapm_widget *w;
4304 LIST_HEAD(down_list);
4305 int powerdown = 0;
4306
Liam Girdwood01005a72012-07-06 16:57:05 +01004307 mutex_lock(&card->dapm_mutex);
4308
Jarkko Nikula97c866d2010-12-14 12:18:31 +02004309 list_for_each_entry(w, &dapm->card->widgets, list) {
4310 if (w->dapm != dapm)
4311 continue;
Mark Brown51737472009-06-22 13:16:51 +01004312 if (w->power) {
Mark Brown828a8422011-01-15 13:14:30 +00004313 dapm_seq_insert(w, &down_list, false);
Mark Brownc2caa4d2009-06-26 15:36:56 +01004314 w->power = 0;
Mark Brown51737472009-06-22 13:16:51 +01004315 powerdown = 1;
4316 }
4317 }
4318
4319 /* If there were no widgets to power down we're already in
4320 * standby.
4321 */
4322 if (powerdown) {
Mark Brown7679e422012-02-22 15:52:56 +00004323 if (dapm->bias_level == SND_SOC_BIAS_ON)
4324 snd_soc_dapm_set_bias_level(dapm,
4325 SND_SOC_BIAS_PREPARE);
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004326 dapm_seq_run(card, &down_list, 0, false);
Mark Brown7679e422012-02-22 15:52:56 +00004327 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4328 snd_soc_dapm_set_bias_level(dapm,
4329 SND_SOC_BIAS_STANDBY);
Mark Brown51737472009-06-22 13:16:51 +01004330 }
Liam Girdwood01005a72012-07-06 16:57:05 +01004331
4332 mutex_unlock(&card->dapm_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004333}
Mark Brown51737472009-06-22 13:16:51 +01004334
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004335/*
4336 * snd_soc_dapm_shutdown - callback for system shutdown
4337 */
4338void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4339{
Xiang Xiao57996352014-03-02 00:04:02 +08004340 struct snd_soc_dapm_context *dapm;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004341
Xiang Xiao57996352014-03-02 00:04:02 +08004342 list_for_each_entry(dapm, &card->dapm_list, list) {
Xiang Xiao17282ba2014-03-02 00:04:03 +08004343 if (dapm != &card->dapm) {
4344 soc_dapm_shutdown_dapm(dapm);
4345 if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4346 snd_soc_dapm_set_bias_level(dapm,
4347 SND_SOC_BIAS_OFF);
4348 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004349 }
Xiang Xiao17282ba2014-03-02 00:04:03 +08004350
4351 soc_dapm_shutdown_dapm(&card->dapm);
4352 if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4353 snd_soc_dapm_set_bias_level(&card->dapm,
4354 SND_SOC_BIAS_OFF);
Mark Brown51737472009-06-22 13:16:51 +01004355}
4356
Richard Purdie2b97eab2006-10-06 18:32:18 +02004357/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004358MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Richard Purdie2b97eab2006-10-06 18:32:18 +02004359MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4360MODULE_LICENSE("GPL");