blob: db781f6faaec42a55c132f63619b828fd743cec2 [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,
81 [snd_soc_dapm_aif_in] = 4,
82 [snd_soc_dapm_aif_out] = 4,
83 [snd_soc_dapm_mic] = 5,
84 [snd_soc_dapm_mux] = 6,
Lars-Peter Clausend714f972015-05-01 18:02:43 +020085 [snd_soc_dapm_demux] = 6,
Mark Brown1dd275b2013-10-09 13:56:37 +010086 [snd_soc_dapm_dac] = 7,
87 [snd_soc_dapm_switch] = 8,
88 [snd_soc_dapm_mixer] = 8,
89 [snd_soc_dapm_mixer_named_ctl] = 8,
90 [snd_soc_dapm_pga] = 9,
91 [snd_soc_dapm_adc] = 10,
92 [snd_soc_dapm_out_drv] = 11,
93 [snd_soc_dapm_hp] = 11,
94 [snd_soc_dapm_spk] = 11,
95 [snd_soc_dapm_line] = 11,
96 [snd_soc_dapm_kcontrol] = 12,
97 [snd_soc_dapm_post] = 13,
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,
103 [snd_soc_dapm_adc] = 2,
104 [snd_soc_dapm_hp] = 3,
105 [snd_soc_dapm_spk] = 3,
106 [snd_soc_dapm_line] = 3,
107 [snd_soc_dapm_out_drv] = 3,
Mark Brown38357ab2009-06-06 19:03:23 +0100108 [snd_soc_dapm_pga] = 4,
Lars-Peter Clausenefc77e32013-06-14 13:16:50 +0200109 [snd_soc_dapm_switch] = 5,
Mark Brown38357ab2009-06-06 19:03:23 +0100110 [snd_soc_dapm_mixer_named_ctl] = 5,
Mark Browne3d4dab2009-06-07 13:08:45 +0100111 [snd_soc_dapm_mixer] = 5,
112 [snd_soc_dapm_dac] = 6,
113 [snd_soc_dapm_mic] = 7,
114 [snd_soc_dapm_micbias] = 8,
115 [snd_soc_dapm_mux] = 9,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200116 [snd_soc_dapm_demux] = 9,
Mark Brown010ff262009-08-17 17:39:22 +0100117 [snd_soc_dapm_aif_in] = 10,
118 [snd_soc_dapm_aif_out] = 10,
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) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200285 if (w->is_ep) {
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200286 dapm_mark_dirty(w, "Rechecking endpoints");
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200287 if (w->is_ep & SND_SOC_DAPM_EP_SINK)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200288 dapm_widget_invalidate_output_paths(w);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200289 if (w->is_ep & SND_SOC_DAPM_EP_SOURCE)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200290 dapm_widget_invalidate_input_paths(w);
291 }
Mark Browne2d32ff2012-08-31 17:38:32 -0700292 }
293
294 mutex_unlock(&card->dapm_mutex);
295}
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200296EXPORT_SYMBOL_GPL(dapm_mark_endpoints_dirty);
Mark Browne2d32ff2012-08-31 17:38:32 -0700297
Richard Purdie2b97eab2006-10-06 18:32:18 +0200298/* create a new dapm widget */
Takashi Iwai88cb4292007-02-05 14:56:20 +0100299static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
Richard Purdie2b97eab2006-10-06 18:32:18 +0200300 const struct snd_soc_dapm_widget *_widget)
301{
Takashi Iwai88cb4292007-02-05 14:56:20 +0100302 return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200303}
304
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200305struct dapm_kcontrol_data {
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200306 unsigned int value;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200307 struct snd_soc_dapm_widget *widget;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200308 struct list_head paths;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200309 struct snd_soc_dapm_widget_list *wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200310};
311
312static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100313 struct snd_kcontrol *kcontrol, const char *ctrl_name)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200314{
315 struct dapm_kcontrol_data *data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200316 struct soc_mixer_control *mc;
Charles Keepax561ed682015-05-01 12:37:26 +0100317 struct soc_enum *e;
Charles Keepax773da9b2015-05-01 12:37:25 +0100318 const char *name;
319 int ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200320
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200321 data = kzalloc(sizeof(*data), GFP_KERNEL);
Charles Keepax40b7bea2015-05-01 12:37:24 +0100322 if (!data)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200323 return -ENOMEM;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200324
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200325 INIT_LIST_HEAD(&data->paths);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200326
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200327 switch (widget->id) {
328 case snd_soc_dapm_switch:
329 case snd_soc_dapm_mixer:
330 case snd_soc_dapm_mixer_named_ctl:
331 mc = (struct soc_mixer_control *)kcontrol->private_value;
332
333 if (mc->autodisable) {
334 struct snd_soc_dapm_widget template;
335
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100336 name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name,
Charles Keepax773da9b2015-05-01 12:37:25 +0100337 "Autodisable");
338 if (!name) {
339 ret = -ENOMEM;
340 goto err_data;
341 }
342
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200343 memset(&template, 0, sizeof(template));
344 template.reg = mc->reg;
345 template.mask = (1 << fls(mc->max)) - 1;
346 template.shift = mc->shift;
347 if (mc->invert)
348 template.off_val = mc->max;
349 else
350 template.off_val = 0;
351 template.on_val = template.off_val;
352 template.id = snd_soc_dapm_kcontrol;
Charles Keepax773da9b2015-05-01 12:37:25 +0100353 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200354
Lars-Peter Clausen2daabd72013-08-30 17:39:33 +0200355 data->value = template.on_val;
356
Liam Girdwood02aa78a2015-05-25 18:21:17 +0100357 data->widget =
358 snd_soc_dapm_new_control_unlocked(widget->dapm,
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200359 &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200360 kfree(name);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200361 if (!data->widget) {
Charles Keepax773da9b2015-05-01 12:37:25 +0100362 ret = -ENOMEM;
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200363 goto err_data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200364 }
365 }
366 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200367 case snd_soc_dapm_demux:
Charles Keepax561ed682015-05-01 12:37:26 +0100368 case snd_soc_dapm_mux:
369 e = (struct soc_enum *)kcontrol->private_value;
370
371 if (e->autodisable) {
372 struct snd_soc_dapm_widget template;
373
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100374 name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name,
Charles Keepax561ed682015-05-01 12:37:26 +0100375 "Autodisable");
376 if (!name) {
377 ret = -ENOMEM;
378 goto err_data;
379 }
380
381 memset(&template, 0, sizeof(template));
382 template.reg = e->reg;
383 template.mask = e->mask << e->shift_l;
384 template.shift = e->shift_l;
385 template.off_val = snd_soc_enum_item_to_val(e, 0);
386 template.on_val = template.off_val;
387 template.id = snd_soc_dapm_kcontrol;
388 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200389
390 data->value = template.on_val;
391
Charles Keepaxffacb482015-06-26 10:39:43 +0100392 data->widget = snd_soc_dapm_new_control_unlocked(
393 widget->dapm, &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200394 kfree(name);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200395 if (!data->widget) {
Charles Keepax561ed682015-05-01 12:37:26 +0100396 ret = -ENOMEM;
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200397 goto err_data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200398 }
Charles Keepax561ed682015-05-01 12:37:26 +0100399
400 snd_soc_dapm_add_path(widget->dapm, data->widget,
401 widget, NULL, NULL);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200402 }
403 break;
404 default:
405 break;
406 }
407
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200408 kcontrol->private_data = data;
409
410 return 0;
Charles Keepax773da9b2015-05-01 12:37:25 +0100411
Charles Keepax773da9b2015-05-01 12:37:25 +0100412err_data:
413 kfree(data);
414 return ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200415}
416
417static void dapm_kcontrol_free(struct snd_kcontrol *kctl)
418{
419 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kctl);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200420 kfree(data->wlist);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200421 kfree(data);
422}
423
424static struct snd_soc_dapm_widget_list *dapm_kcontrol_get_wlist(
425 const struct snd_kcontrol *kcontrol)
426{
427 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
428
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200429 return data->wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200430}
431
432static int dapm_kcontrol_add_widget(struct snd_kcontrol *kcontrol,
433 struct snd_soc_dapm_widget *widget)
434{
435 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200436 struct snd_soc_dapm_widget_list *new_wlist;
437 unsigned int n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200438
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200439 if (data->wlist)
440 n = data->wlist->num_widgets + 1;
441 else
442 n = 1;
443
444 new_wlist = krealloc(data->wlist,
445 sizeof(*new_wlist) + sizeof(widget) * n, GFP_KERNEL);
446 if (!new_wlist)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200447 return -ENOMEM;
448
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200449 new_wlist->widgets[n - 1] = widget;
450 new_wlist->num_widgets = n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200451
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200452 data->wlist = new_wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200453
454 return 0;
455}
456
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200457static void dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol,
458 struct snd_soc_dapm_path *path)
459{
460 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
461
462 list_add_tail(&path->list_kcontrol, &data->paths);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200463}
464
465static bool dapm_kcontrol_is_powered(const struct snd_kcontrol *kcontrol)
466{
467 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
468
469 if (!data->widget)
470 return true;
471
472 return data->widget->power;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200473}
474
475static struct list_head *dapm_kcontrol_get_path_list(
476 const struct snd_kcontrol *kcontrol)
477{
478 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
479
480 return &data->paths;
481}
482
483#define dapm_kcontrol_for_each_path(path, kcontrol) \
484 list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \
485 list_kcontrol)
486
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530487unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol *kcontrol)
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200488{
489 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
490
491 return data->value;
492}
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530493EXPORT_SYMBOL_GPL(dapm_kcontrol_get_value);
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200494
495static bool dapm_kcontrol_set_value(const struct snd_kcontrol *kcontrol,
496 unsigned int value)
497{
498 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
499
500 if (data->value == value)
501 return false;
502
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200503 if (data->widget)
504 data->widget->on_val = value;
505
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200506 data->value = value;
507
508 return true;
509}
510
Lars-Peter Clauseneee5d7f2013-07-29 17:13:57 +0200511/**
Mythri P K93e39a12015-10-20 22:30:08 +0530512 * snd_soc_dapm_kcontrol_widget() - Returns the widget associated to a
513 * kcontrol
514 * @kcontrol: The kcontrol
515 */
516struct snd_soc_dapm_widget *snd_soc_dapm_kcontrol_widget(
517 struct snd_kcontrol *kcontrol)
518{
519 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0];
520}
521EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_widget);
522
523/**
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200524 * snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a
525 * kcontrol
526 * @kcontrol: The kcontrol
527 *
528 * Note: This function must only be used on kcontrols that are known to have
529 * been registered for a CODEC. Otherwise the behaviour is undefined.
530 */
531struct snd_soc_dapm_context *snd_soc_dapm_kcontrol_dapm(
532 struct snd_kcontrol *kcontrol)
533{
534 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->dapm;
535}
536EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_dapm);
537
Liam Girdwood6c120e12012-02-15 15:15:34 +0000538static void dapm_reset(struct snd_soc_card *card)
539{
540 struct snd_soc_dapm_widget *w;
541
Mark Brownf9fa2b12014-03-06 16:49:11 +0800542 lockdep_assert_held(&card->dapm_mutex);
543
Liam Girdwood6c120e12012-02-15 15:15:34 +0000544 memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
545
546 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +0200547 w->new_power = w->power;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000548 w->power_checked = false;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000549 }
550}
551
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200552static const char *soc_dapm_prefix(struct snd_soc_dapm_context *dapm)
553{
554 if (!dapm->component)
555 return NULL;
556 return dapm->component->name_prefix;
557}
558
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200559static int soc_dapm_read(struct snd_soc_dapm_context *dapm, int reg,
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -0800560 unsigned int *value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100561{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200562 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200563 return -EIO;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200564 return snd_soc_component_read(dapm->component, reg, value);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100565}
566
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200567static int soc_dapm_update_bits(struct snd_soc_dapm_context *dapm,
Bard Liao34775012014-04-17 20:12:56 +0800568 int reg, unsigned int mask, unsigned int value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100569{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200570 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200571 return -EIO;
Mark Brownfcf6c5e2014-12-15 13:08:48 +0000572 return snd_soc_component_update_bits(dapm->component, reg,
573 mask, value);
Liam Girdwood49575fb52012-03-06 18:16:19 +0000574}
575
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200576static int soc_dapm_test_bits(struct snd_soc_dapm_context *dapm,
577 int reg, unsigned int mask, unsigned int value)
578{
579 if (!dapm->component)
580 return -EIO;
581 return snd_soc_component_test_bits(dapm->component, reg, mask, value);
582}
583
Mark Browneb270e92013-10-09 13:52:52 +0100584static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm)
585{
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200586 if (dapm->component)
587 snd_soc_component_async_complete(dapm->component);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100588}
589
Charles Keepax45a110a2015-05-11 13:50:30 +0100590static struct snd_soc_dapm_widget *
591dapm_wcache_lookup(struct snd_soc_dapm_wcache *wcache, const char *name)
592{
593 struct snd_soc_dapm_widget *w = wcache->widget;
594 struct list_head *wlist;
595 const int depth = 2;
596 int i = 0;
597
598 if (w) {
599 wlist = &w->dapm->card->widgets;
600
601 list_for_each_entry_from(w, wlist, list) {
602 if (!strcmp(name, w->name))
603 return w;
604
605 if (++i == depth)
606 break;
607 }
608 }
609
610 return NULL;
611}
612
613static inline void dapm_wcache_update(struct snd_soc_dapm_wcache *wcache,
614 struct snd_soc_dapm_widget *w)
615{
616 wcache->widget = w;
617}
618
Mark Brown452c5ea2009-05-17 21:41:23 +0100619/**
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200620 * snd_soc_dapm_force_bias_level() - Sets the DAPM bias level
621 * @dapm: The DAPM context for which to set the level
622 * @level: The level to set
623 *
624 * Forces the DAPM bias level to a specific state. It will call the bias level
625 * callback of DAPM context with the specified level. This will even happen if
626 * the context is already at the same level. Furthermore it will not go through
627 * the normal bias level sequencing, meaning any intermediate states between the
628 * current and the target state will not be entered.
629 *
630 * Note that the change in bias level is only temporary and the next time
631 * snd_soc_dapm_sync() is called the state will be set to the level as
632 * determined by the DAPM core. The function is mainly intended to be used to
633 * used during probe or resume from suspend to power up the device so
634 * initialization can be done, before the DAPM core takes over.
635 */
636int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm,
637 enum snd_soc_bias_level level)
638{
639 int ret = 0;
640
641 if (dapm->set_bias_level)
642 ret = dapm->set_bias_level(dapm, level);
643
Lars-Peter Clausenf4bf8d72015-04-27 22:13:25 +0200644 if (ret == 0)
645 dapm->bias_level = level;
646
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200647 return ret;
648}
649EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level);
650
Mark Brown452c5ea2009-05-17 21:41:23 +0100651/**
652 * snd_soc_dapm_set_bias_level - set the bias level for the system
Mark Browned5a4c42011-02-18 11:12:42 -0800653 * @dapm: DAPM context
Mark Brown452c5ea2009-05-17 21:41:23 +0100654 * @level: level to configure
655 *
656 * Configure the bias (power) levels for the SoC audio device.
657 *
658 * Returns 0 for success else error.
659 */
Mark Browned5a4c42011-02-18 11:12:42 -0800660static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200661 enum snd_soc_bias_level level)
Mark Brown452c5ea2009-05-17 21:41:23 +0100662{
Mark Browned5a4c42011-02-18 11:12:42 -0800663 struct snd_soc_card *card = dapm->card;
Mark Brown452c5ea2009-05-17 21:41:23 +0100664 int ret = 0;
665
Mark Brown84e90932010-11-04 00:07:02 -0400666 trace_snd_soc_bias_level_start(card, level);
667
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000668 if (card && card->set_bias_level)
Mark Brownd4c60052011-06-06 19:13:23 +0100669 ret = card->set_bias_level(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100670 if (ret != 0)
671 goto out;
Mark Brown452c5ea2009-05-17 21:41:23 +0100672
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200673 if (!card || dapm != &card->dapm)
674 ret = snd_soc_dapm_force_bias_level(dapm, level);
Liam Girdwood41231282012-07-06 16:56:16 +0100675
Mark Brown171ec6b2011-06-06 18:15:19 +0100676 if (ret != 0)
677 goto out;
678
679 if (card && card->set_bias_level_post)
Mark Brownd4c60052011-06-06 19:13:23 +0100680 ret = card->set_bias_level_post(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100681out:
Mark Brown84e90932010-11-04 00:07:02 -0400682 trace_snd_soc_bias_level_done(card, level);
683
Mark Brown452c5ea2009-05-17 21:41:23 +0100684 return ret;
685}
686
Mark Brown74b8f952009-06-06 11:26:15 +0100687/* connect mux widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200688static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200689 struct snd_soc_dapm_path *path, const char *control_name,
690 struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200691{
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200692 const struct snd_kcontrol_new *kcontrol = &w->kcontrol_news[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +0200693 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100694 unsigned int val, item;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200695 int i;
696
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100697 if (e->reg != SND_SOC_NOPM) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200698 soc_dapm_read(dapm, e->reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100699 val = (val >> e->shift_l) & e->mask;
700 item = snd_soc_enum_val_to_item(e, val);
701 } else {
702 /* since a virtual mux has no backing registers to
703 * decide which path to connect, it will try to match
704 * with the first enumeration. This is to ensure
705 * that the default mux choice (the first) will be
706 * correctly powered up during initialization.
707 */
708 item = 0;
709 }
710
Takashi Iwai9a8d38d2014-02-18 08:11:42 +0100711 for (i = 0; i < e->items; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200712 if (!(strcmp(control_name, e->texts[i]))) {
Rasmus Villemoes98ad73c2014-10-21 17:01:15 +0200713 path->name = e->texts[i];
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100714 if (i == item)
715 path->connect = 1;
716 else
717 path->connect = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200718 return 0;
719 }
720 }
721
722 return -ENODEV;
723}
724
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100725/* set up initial codec paths */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200726static void dapm_set_mixer_path_status(struct snd_soc_dapm_path *p, int i)
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100727{
728 struct soc_mixer_control *mc = (struct soc_mixer_control *)
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200729 p->sink->kcontrol_news[i].private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100730 unsigned int reg = mc->reg;
731 unsigned int shift = mc->shift;
732 unsigned int max = mc->max;
733 unsigned int mask = (1 << fls(max)) - 1;
734 unsigned int invert = mc->invert;
735 unsigned int val;
736
737 if (reg != SND_SOC_NOPM) {
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200738 soc_dapm_read(p->sink->dapm, reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100739 val = (val >> shift) & mask;
740 if (invert)
741 val = max - val;
742 p->connect = !!val;
743 } else {
744 p->connect = 0;
745 }
746}
747
Mark Brown74b8f952009-06-06 11:26:15 +0100748/* connect mixer widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200749static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200750 struct snd_soc_dapm_path *path, const char *control_name)
751{
752 int i;
753
754 /* search for mixer kcontrol */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200755 for (i = 0; i < path->sink->num_kcontrols; i++) {
756 if (!strcmp(control_name, path->sink->kcontrol_news[i].name)) {
757 path->name = path->sink->kcontrol_news[i].name;
758 dapm_set_mixer_path_status(path, i);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200759 return 0;
760 }
761 }
762 return -ENODEV;
763}
764
Stephen Warrenaf468002011-04-28 17:38:01 -0600765static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
Stephen Warren1007da02011-05-26 09:57:33 -0600766 struct snd_soc_dapm_widget *kcontrolw,
Stephen Warrenaf468002011-04-28 17:38:01 -0600767 const struct snd_kcontrol_new *kcontrol_new,
768 struct snd_kcontrol **kcontrol)
769{
770 struct snd_soc_dapm_widget *w;
771 int i;
772
773 *kcontrol = NULL;
774
775 list_for_each_entry(w, &dapm->card->widgets, list) {
Stephen Warren1007da02011-05-26 09:57:33 -0600776 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
777 continue;
Stephen Warrenaf468002011-04-28 17:38:01 -0600778 for (i = 0; i < w->num_kcontrols; i++) {
779 if (&w->kcontrol_news[i] == kcontrol_new) {
780 if (w->kcontrols)
781 *kcontrol = w->kcontrols[i];
782 return 1;
783 }
784 }
785 }
786
787 return 0;
788}
789
Stephen Warren85762e72013-03-29 15:40:10 -0600790/*
791 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
792 * create it. Either way, add the widget into the control's widget list
793 */
Jeeja KP19a2557b2015-10-20 22:30:06 +0530794static int dapm_create_or_share_kcontrol(struct snd_soc_dapm_widget *w,
Mark Brown946d92a2013-08-12 23:28:42 +0100795 int kci)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200796{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200797 struct snd_soc_dapm_context *dapm = w->dapm;
Mark Brown12ea2c72011-03-02 18:17:32 +0000798 struct snd_card *card = dapm->card->snd_card;
Mark Brownefb7ac32011-03-08 17:23:24 +0000799 const char *prefix;
Stephen Warren85762e72013-03-29 15:40:10 -0600800 size_t prefix_len;
801 int shared;
802 struct snd_kcontrol *kcontrol;
Stephen Warren85762e72013-03-29 15:40:10 -0600803 bool wname_in_long_name, kcname_in_long_name;
Daniel Macke5092c92014-10-07 13:41:24 +0200804 char *long_name = NULL;
Stephen Warren85762e72013-03-29 15:40:10 -0600805 const char *name;
Daniel Macke5092c92014-10-07 13:41:24 +0200806 int ret = 0;
Mark Brownefb7ac32011-03-08 17:23:24 +0000807
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200808 prefix = soc_dapm_prefix(dapm);
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000809 if (prefix)
810 prefix_len = strlen(prefix) + 1;
811 else
812 prefix_len = 0;
813
Stephen Warren85762e72013-03-29 15:40:10 -0600814 shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[kci],
815 &kcontrol);
816
Stephen Warren85762e72013-03-29 15:40:10 -0600817 if (!kcontrol) {
818 if (shared) {
819 wname_in_long_name = false;
820 kcname_in_long_name = true;
821 } else {
822 switch (w->id) {
823 case snd_soc_dapm_switch:
824 case snd_soc_dapm_mixer:
Jeeja KP19a2557b2015-10-20 22:30:06 +0530825 case snd_soc_dapm_pga:
Stephen Warren85762e72013-03-29 15:40:10 -0600826 wname_in_long_name = true;
827 kcname_in_long_name = true;
828 break;
829 case snd_soc_dapm_mixer_named_ctl:
830 wname_in_long_name = false;
831 kcname_in_long_name = true;
832 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200833 case snd_soc_dapm_demux:
Stephen Warren85762e72013-03-29 15:40:10 -0600834 case snd_soc_dapm_mux:
Stephen Warren85762e72013-03-29 15:40:10 -0600835 wname_in_long_name = true;
836 kcname_in_long_name = false;
837 break;
838 default:
Stephen Warren85762e72013-03-29 15:40:10 -0600839 return -EINVAL;
840 }
841 }
842
843 if (wname_in_long_name && kcname_in_long_name) {
Stephen Warren85762e72013-03-29 15:40:10 -0600844 /*
845 * The control will get a prefix from the control
846 * creation process but we're also using the same
847 * prefix for widgets so cut the prefix off the
848 * front of the widget name.
849 */
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200850 long_name = kasprintf(GFP_KERNEL, "%s %s",
Stephen Warren85762e72013-03-29 15:40:10 -0600851 w->name + prefix_len,
852 w->kcontrol_news[kci].name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200853 if (long_name == NULL)
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200854 return -ENOMEM;
Stephen Warren85762e72013-03-29 15:40:10 -0600855
856 name = long_name;
857 } else if (wname_in_long_name) {
858 long_name = NULL;
859 name = w->name + prefix_len;
860 } else {
861 long_name = NULL;
862 name = w->kcontrol_news[kci].name;
863 }
864
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200865 kcontrol = snd_soc_cnew(&w->kcontrol_news[kci], NULL, name,
Stephen Warren85762e72013-03-29 15:40:10 -0600866 prefix);
Daniel Macke5092c92014-10-07 13:41:24 +0200867 if (!kcontrol) {
868 ret = -ENOMEM;
869 goto exit_free;
870 }
871
Lars-Peter Clausen9356e9d2013-08-01 14:08:06 +0200872 kcontrol->private_free = dapm_kcontrol_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200873
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100874 ret = dapm_kcontrol_data_alloc(w, kcontrol, name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200875 if (ret) {
876 snd_ctl_free_one(kcontrol);
Daniel Macke5092c92014-10-07 13:41:24 +0200877 goto exit_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200878 }
879
Stephen Warren85762e72013-03-29 15:40:10 -0600880 ret = snd_ctl_add(card, kcontrol);
881 if (ret < 0) {
882 dev_err(dapm->dev,
883 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
884 w->name, name, ret);
Daniel Macke5092c92014-10-07 13:41:24 +0200885 goto exit_free;
Stephen Warren85762e72013-03-29 15:40:10 -0600886 }
Stephen Warren85762e72013-03-29 15:40:10 -0600887 }
888
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200889 ret = dapm_kcontrol_add_widget(kcontrol, w);
Daniel Macke5092c92014-10-07 13:41:24 +0200890 if (ret == 0)
891 w->kcontrols[kci] = kcontrol;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200892
Daniel Macke5092c92014-10-07 13:41:24 +0200893exit_free:
894 kfree(long_name);
Stephen Warren85762e72013-03-29 15:40:10 -0600895
Daniel Macke5092c92014-10-07 13:41:24 +0200896 return ret;
Stephen Warren85762e72013-03-29 15:40:10 -0600897}
898
899/* create new dapm mixer control */
900static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
901{
902 int i, ret;
903 struct snd_soc_dapm_path *path;
Charles Keepax561ed682015-05-01 12:37:26 +0100904 struct dapm_kcontrol_data *data;
Stephen Warren85762e72013-03-29 15:40:10 -0600905
Richard Purdie2b97eab2006-10-06 18:32:18 +0200906 /* add kcontrol */
907 for (i = 0; i < w->num_kcontrols; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200908 /* match name */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +0200909 snd_soc_dapm_widget_for_each_source_path(w, path) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200910 /* mixer/mux paths name must match control name */
Stephen Warren82cfecd2011-04-28 17:37:58 -0600911 if (path->name != (char *)w->kcontrol_news[i].name)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200912 continue;
913
Charles Keepax561ed682015-05-01 12:37:26 +0100914 if (!w->kcontrols[i]) {
Jeeja KP19a2557b2015-10-20 22:30:06 +0530915 ret = dapm_create_or_share_kcontrol(w, i);
Charles Keepax561ed682015-05-01 12:37:26 +0100916 if (ret < 0)
917 return ret;
Lars-Peter Clausen82cd8762011-08-15 20:15:21 +0200918 }
919
Mark Brown946d92a2013-08-12 23:28:42 +0100920 dapm_kcontrol_add_path(w->kcontrols[i], path);
Charles Keepax561ed682015-05-01 12:37:26 +0100921
922 data = snd_kcontrol_chip(w->kcontrols[i]);
923 if (data->widget)
924 snd_soc_dapm_add_path(data->widget->dapm,
925 data->widget,
926 path->source,
927 NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200928 }
929 }
Stephen Warren85762e72013-03-29 15:40:10 -0600930
931 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200932}
933
934/* create new dapm mux control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200935static int dapm_new_mux(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200936{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200937 struct snd_soc_dapm_context *dapm = w->dapm;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200938 enum snd_soc_dapm_direction dir;
Stephen Warren85762e72013-03-29 15:40:10 -0600939 struct snd_soc_dapm_path *path;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200940 const char *type;
Stephen Warrenaf468002011-04-28 17:38:01 -0600941 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200942
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200943 switch (w->id) {
944 case snd_soc_dapm_mux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200945 dir = SND_SOC_DAPM_DIR_OUT;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200946 type = "mux";
947 break;
948 case snd_soc_dapm_demux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200949 dir = SND_SOC_DAPM_DIR_IN;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200950 type = "demux";
951 break;
952 default:
953 return -EINVAL;
954 }
955
Stephen Warrenaf468002011-04-28 17:38:01 -0600956 if (w->num_kcontrols != 1) {
957 dev_err(dapm->dev,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200958 "ASoC: %s %s has incorrect number of controls\n", type,
Stephen Warrenaf468002011-04-28 17:38:01 -0600959 w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200960 return -EINVAL;
961 }
962
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200963 if (list_empty(&w->edges[dir])) {
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200964 dev_err(dapm->dev, "ASoC: %s %s has no paths\n", type, w->name);
Stephen Warren85762e72013-03-29 15:40:10 -0600965 return -EINVAL;
Stephen Warrenaf468002011-04-28 17:38:01 -0600966 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200967
Jeeja KP19a2557b2015-10-20 22:30:06 +0530968 ret = dapm_create_or_share_kcontrol(w, 0);
Stephen Warren85762e72013-03-29 15:40:10 -0600969 if (ret < 0)
970 return ret;
Stephen Warrenfad59882011-04-28 17:37:59 -0600971
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200972 snd_soc_dapm_widget_for_each_path(w, dir, path) {
973 if (path->name)
974 dapm_kcontrol_add_path(w->kcontrols[0], path);
Lars-Peter Clausen98407ef2014-10-25 17:41:57 +0200975 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200976
Stephen Warrenaf468002011-04-28 17:38:01 -0600977 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200978}
979
980/* create new dapm volume control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200981static int dapm_new_pga(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200982{
Jeeja KP19a2557b2015-10-20 22:30:06 +0530983 int i, ret;
984
985 for (i = 0; i < w->num_kcontrols; i++) {
986 ret = dapm_create_or_share_kcontrol(w, i);
987 if (ret < 0)
988 return ret;
989 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200990
Mark Browna6c65732010-03-03 17:45:21 +0000991 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200992}
993
Nikesh Oswalc6615082015-02-02 17:06:44 +0000994/* create new dapm dai link control */
995static int dapm_new_dai_link(struct snd_soc_dapm_widget *w)
996{
997 int i, ret;
998 struct snd_kcontrol *kcontrol;
999 struct snd_soc_dapm_context *dapm = w->dapm;
1000 struct snd_card *card = dapm->card->snd_card;
1001
1002 /* create control for links with > 1 config */
1003 if (w->num_params <= 1)
1004 return 0;
1005
1006 /* add kcontrol */
1007 for (i = 0; i < w->num_kcontrols; i++) {
1008 kcontrol = snd_soc_cnew(&w->kcontrol_news[i], w,
1009 w->name, NULL);
1010 ret = snd_ctl_add(card, kcontrol);
1011 if (ret < 0) {
1012 dev_err(dapm->dev,
1013 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
1014 w->name, w->kcontrol_news[i].name, ret);
1015 return ret;
1016 }
1017 kcontrol->private_data = w;
1018 w->kcontrols[i] = kcontrol;
1019 }
1020
1021 return 0;
1022}
1023
Mark Brown99497882010-05-07 20:24:05 +01001024/* We implement power down on suspend by checking the power state of
1025 * the ALSA card - when we are suspending the ALSA state for the card
1026 * is set to D3.
1027 */
1028static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
1029{
Mark Brown12ea2c72011-03-02 18:17:32 +00001030 int level = snd_power_get_state(widget->dapm->card->snd_card);
Mark Brown99497882010-05-07 20:24:05 +01001031
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001032 switch (level) {
Mark Brown99497882010-05-07 20:24:05 +01001033 case SNDRV_CTL_POWER_D3hot:
1034 case SNDRV_CTL_POWER_D3cold:
Mark Brown1547aba2010-05-07 21:11:40 +01001035 if (widget->ignore_suspend)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001036 dev_dbg(widget->dapm->dev, "ASoC: %s ignoring suspend\n",
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001037 widget->name);
Mark Brown1547aba2010-05-07 21:11:40 +01001038 return widget->ignore_suspend;
Mark Brown99497882010-05-07 20:24:05 +01001039 default:
1040 return 1;
1041 }
1042}
1043
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001044static int dapm_widget_list_create(struct snd_soc_dapm_widget_list **list,
1045 struct list_head *widgets)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001046{
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001047 struct snd_soc_dapm_widget *w;
1048 struct list_head *it;
1049 unsigned int size = 0;
1050 unsigned int i = 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001051
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001052 list_for_each(it, widgets)
1053 size++;
1054
1055 *list = kzalloc(sizeof(**list) + size * sizeof(*w), GFP_KERNEL);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001056 if (*list == NULL)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001057 return -ENOMEM;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001058
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001059 list_for_each_entry(w, widgets, work_list)
1060 (*list)->widgets[i++] = w;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001061
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001062 (*list)->num_widgets = i;
1063
1064 return 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001065}
1066
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001067/*
1068 * Common implementation for is_connected_output_ep() and
1069 * is_connected_input_ep(). The function is inlined since the combined size of
1070 * the two specialized functions is only marginally larger then the size of the
1071 * generic function and at the same time the fast path of the specialized
1072 * functions is significantly smaller than the generic function.
1073 */
1074static __always_inline int is_connected_ep(struct snd_soc_dapm_widget *widget,
1075 struct list_head *list, enum snd_soc_dapm_direction dir,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001076 int (*fn)(struct snd_soc_dapm_widget *, struct list_head *,
1077 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1078 enum snd_soc_dapm_direction)),
1079 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1080 enum snd_soc_dapm_direction))
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001081{
1082 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001083 struct snd_soc_dapm_path *path;
1084 int con = 0;
1085
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001086 if (widget->endpoints[dir] >= 0)
1087 return widget->endpoints[dir];
Mark Brown024dc072011-10-09 11:52:05 +01001088
Mark Brownde02d072011-09-20 21:43:24 +01001089 DAPM_UPDATE_STAT(widget, path_checks);
1090
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001091 /* do we need to add this widget to the list ? */
1092 if (list)
1093 list_add_tail(&widget->work_list, list);
1094
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001095 if (custom_stop_condition && custom_stop_condition(widget, dir))
1096 return con;
1097
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001098 if ((widget->is_ep & SND_SOC_DAPM_DIR_TO_EP(dir)) && widget->connected) {
1099 widget->endpoints[dir] = snd_soc_dapm_suspend_check(widget);
1100 return widget->endpoints[dir];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001101 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001102
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001103 snd_soc_dapm_widget_for_each_path(widget, rdir, path) {
Mark Browne56235e02011-09-21 18:19:14 +01001104 DAPM_UPDATE_STAT(widget, neighbour_checks);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001105
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001106 if (path->weak || path->is_supply)
Mark Brownbf3a9e12011-06-13 16:42:29 +01001107 continue;
1108
Mark Brown8af294b2013-02-22 17:48:15 +00001109 if (path->walking)
1110 return 1;
1111
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001112 trace_snd_soc_dapm_path(widget, dir, path);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001113
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001114 if (path->connect) {
Mark Brown8af294b2013-02-22 17:48:15 +00001115 path->walking = 1;
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001116 con += fn(path->node[dir], list, custom_stop_condition);
Mark Brown8af294b2013-02-22 17:48:15 +00001117 path->walking = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001118 }
1119 }
1120
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001121 widget->endpoints[dir] = con;
Mark Brown024dc072011-10-09 11:52:05 +01001122
Richard Purdie2b97eab2006-10-06 18:32:18 +02001123 return con;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001124}
1125
1126/*
1127 * Recursively check for a completed path to an active or physically connected
1128 * output widget. Returns number of complete paths.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001129 *
1130 * Optionally, can be supplied with a function acting as a stopping condition.
1131 * This function takes the dapm widget currently being examined and the walk
1132 * direction as an arguments, it should return true if the walk should be
1133 * stopped and false otherwise.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001134 */
1135static int is_connected_output_ep(struct snd_soc_dapm_widget *widget,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001136 struct list_head *list,
1137 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1138 enum snd_soc_dapm_direction))
Richard Purdie2b97eab2006-10-06 18:32:18 +02001139{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001140 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_OUT,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001141 is_connected_output_ep, custom_stop_condition);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001142}
1143
1144/*
1145 * Recursively check for a completed path to an active or physically connected
1146 * input widget. Returns number of complete paths.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001147 *
1148 * Optionally, can be supplied with a function acting as a stopping condition.
1149 * This function takes the dapm widget currently being examined and the walk
1150 * direction as an arguments, it should return true if the walk should be
1151 * stopped and false otherwise.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001152 */
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001153static int is_connected_input_ep(struct snd_soc_dapm_widget *widget,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001154 struct list_head *list,
1155 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1156 enum snd_soc_dapm_direction))
Richard Purdie2b97eab2006-10-06 18:32:18 +02001157{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001158 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_IN,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001159 is_connected_input_ep, custom_stop_condition);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001160}
1161
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001162/**
1163 * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1164 * @dai: the soc DAI.
1165 * @stream: stream direction.
1166 * @list: list of active widgets for this stream.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001167 * @custom_stop_condition: (optional) a function meant to stop the widget graph
1168 * walk based on custom logic.
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001169 *
1170 * Queries DAPM graph as to whether an valid audio stream path exists for
1171 * the initial stream specified by name. This takes into account
1172 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1173 *
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001174 * Optionally, can be supplied with a function acting as a stopping condition.
1175 * This function takes the dapm widget currently being examined and the walk
1176 * direction as an arguments, it should return true if the walk should be
1177 * stopped and false otherwise.
1178 *
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001179 * Returns the number of valid paths or negative error.
1180 */
1181int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001182 struct snd_soc_dapm_widget_list **list,
1183 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1184 enum snd_soc_dapm_direction))
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001185{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001186 struct snd_soc_card *card = dai->component->card;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001187 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001188 LIST_HEAD(widgets);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001189 int paths;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001190 int ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001191
1192 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001193
1194 /*
1195 * For is_connected_{output,input}_ep fully discover the graph we need
1196 * to reset the cached number of inputs and outputs.
1197 */
1198 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001199 w->endpoints[SND_SOC_DAPM_DIR_IN] = -1;
1200 w->endpoints[SND_SOC_DAPM_DIR_OUT] = -1;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001201 }
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001202
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001203 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001204 paths = is_connected_output_ep(dai->playback_widget, &widgets,
1205 custom_stop_condition);
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001206 else
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001207 paths = is_connected_input_ep(dai->capture_widget, &widgets,
1208 custom_stop_condition);
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001209
1210 /* Drop starting point */
1211 list_del(widgets.next);
1212
1213 ret = dapm_widget_list_create(list, &widgets);
1214 if (ret)
Lars-Peter Clausen30abbe72015-08-11 21:37:59 +02001215 paths = ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001216
1217 trace_snd_soc_dapm_connected(paths, stream);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001218 mutex_unlock(&card->dapm_mutex);
1219
1220 return paths;
1221}
1222
Richard Purdie2b97eab2006-10-06 18:32:18 +02001223/*
Mark Brown62ea8742012-01-21 21:14:48 +00001224 * Handler for regulator supply widget.
1225 */
1226int dapm_regulator_event(struct snd_soc_dapm_widget *w,
1227 struct snd_kcontrol *kcontrol, int event)
1228{
Mark Brownc05b84d2012-09-07 12:57:11 +08001229 int ret;
1230
Mark Browneb270e92013-10-09 13:52:52 +01001231 soc_dapm_async_complete(w->dapm);
1232
Mark Brownc05b84d2012-09-07 12:57:11 +08001233 if (SND_SOC_DAPM_EVENT_ON(event)) {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001234 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001235 ret = regulator_allow_bypass(w->regulator, false);
Mark Brownc05b84d2012-09-07 12:57:11 +08001236 if (ret != 0)
1237 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001238 "ASoC: Failed to unbypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001239 w->name, ret);
1240 }
1241
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001242 return regulator_enable(w->regulator);
Mark Brownc05b84d2012-09-07 12:57:11 +08001243 } else {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001244 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001245 ret = regulator_allow_bypass(w->regulator, true);
Mark Brownc05b84d2012-09-07 12:57:11 +08001246 if (ret != 0)
1247 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001248 "ASoC: Failed to bypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001249 w->name, ret);
1250 }
1251
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001252 return regulator_disable_deferred(w->regulator, w->shift);
Mark Brownc05b84d2012-09-07 12:57:11 +08001253 }
Mark Brown62ea8742012-01-21 21:14:48 +00001254}
1255EXPORT_SYMBOL_GPL(dapm_regulator_event);
1256
Ola Liljad7e7eb92012-05-24 15:26:25 +02001257/*
1258 * Handler for clock supply widget.
1259 */
1260int dapm_clock_event(struct snd_soc_dapm_widget *w,
1261 struct snd_kcontrol *kcontrol, int event)
1262{
1263 if (!w->clk)
1264 return -EIO;
1265
Mark Browneb270e92013-10-09 13:52:52 +01001266 soc_dapm_async_complete(w->dapm);
1267
Mark Brownec029952012-06-04 08:16:20 +01001268#ifdef CONFIG_HAVE_CLK
Ola Liljad7e7eb92012-05-24 15:26:25 +02001269 if (SND_SOC_DAPM_EVENT_ON(event)) {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001270 return clk_prepare_enable(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001271 } else {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001272 clk_disable_unprepare(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001273 return 0;
1274 }
Mark Brownec029952012-06-04 08:16:20 +01001275#endif
Marek Belisko98b3cf12012-07-12 23:00:16 +02001276 return 0;
Ola Liljad7e7eb92012-05-24 15:26:25 +02001277}
1278EXPORT_SYMBOL_GPL(dapm_clock_event);
1279
Mark Brownd8050022011-09-28 18:28:23 +01001280static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
1281{
Mark Brown9b8a83b2011-10-04 22:15:59 +01001282 if (w->power_checked)
1283 return w->new_power;
1284
Mark Brownd8050022011-09-28 18:28:23 +01001285 if (w->force)
Mark Brown9b8a83b2011-10-04 22:15:59 +01001286 w->new_power = 1;
Mark Brownd8050022011-09-28 18:28:23 +01001287 else
Mark Brown9b8a83b2011-10-04 22:15:59 +01001288 w->new_power = w->power_check(w);
1289
1290 w->power_checked = true;
1291
1292 return w->new_power;
Mark Brownd8050022011-09-28 18:28:23 +01001293}
1294
Mark Browncd0f2d42009-04-20 16:56:59 +01001295/* Generic check to see if a widget should be powered.
1296 */
1297static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
1298{
1299 int in, out;
1300
Mark Brownde02d072011-09-20 21:43:24 +01001301 DAPM_UPDATE_STAT(w, power_checks);
1302
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001303 in = is_connected_input_ep(w, NULL, NULL);
1304 out = is_connected_output_ep(w, NULL, NULL);
Mark Browncd0f2d42009-04-20 16:56:59 +01001305 return out != 0 && in != 0;
1306}
1307
Mark Brown246d0a12009-04-22 18:24:55 +01001308/* Check to see if a power supply is needed */
1309static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
1310{
1311 struct snd_soc_dapm_path *path;
Mark Brown246d0a12009-04-22 18:24:55 +01001312
Mark Brownde02d072011-09-20 21:43:24 +01001313 DAPM_UPDATE_STAT(w, power_checks);
1314
Mark Brown246d0a12009-04-22 18:24:55 +01001315 /* Check if one of our outputs is connected */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001316 snd_soc_dapm_widget_for_each_sink_path(w, path) {
Mark Browna8fdac82011-09-28 18:20:26 +01001317 DAPM_UPDATE_STAT(w, neighbour_checks);
1318
Mark Brownbf3a9e12011-06-13 16:42:29 +01001319 if (path->weak)
1320 continue;
1321
Mark Brown215edda2009-09-08 18:59:05 +01001322 if (path->connected &&
1323 !path->connected(path->source, path->sink))
1324 continue;
1325
Mark Brownf68d7e12011-10-04 22:57:50 +01001326 if (dapm_widget_power_check(path->sink))
1327 return 1;
Mark Brown246d0a12009-04-22 18:24:55 +01001328 }
1329
Mark Brownf68d7e12011-10-04 22:57:50 +01001330 return 0;
Mark Brown246d0a12009-04-22 18:24:55 +01001331}
1332
Mark Brown35c64bc2011-09-28 18:23:53 +01001333static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
1334{
Charles Keepax20bb0182015-12-02 10:22:16 +00001335 return w->connected;
Mark Brown35c64bc2011-09-28 18:23:53 +01001336}
1337
Mark Brown38357ab2009-06-06 19:03:23 +01001338static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1339 struct snd_soc_dapm_widget *b,
Mark Brown828a8422011-01-15 13:14:30 +00001340 bool power_up)
Mark Brown42aa3412009-03-01 19:21:10 +00001341{
Mark Brown828a8422011-01-15 13:14:30 +00001342 int *sort;
1343
1344 if (power_up)
1345 sort = dapm_up_seq;
1346 else
1347 sort = dapm_down_seq;
1348
Mark Brown38357ab2009-06-06 19:03:23 +01001349 if (sort[a->id] != sort[b->id])
1350 return sort[a->id] - sort[b->id];
Mark Brown20e48592011-01-15 13:40:50 +00001351 if (a->subseq != b->subseq) {
1352 if (power_up)
1353 return a->subseq - b->subseq;
1354 else
1355 return b->subseq - a->subseq;
1356 }
Mark Brownb22ead22009-06-07 12:51:26 +01001357 if (a->reg != b->reg)
1358 return a->reg - b->reg;
Mark Brown84dab562010-11-12 15:28:42 +00001359 if (a->dapm != b->dapm)
1360 return (unsigned long)a->dapm - (unsigned long)b->dapm;
Mark Brown42aa3412009-03-01 19:21:10 +00001361
Mark Brown38357ab2009-06-06 19:03:23 +01001362 return 0;
1363}
Mark Brown42aa3412009-03-01 19:21:10 +00001364
Mark Brown38357ab2009-06-06 19:03:23 +01001365/* Insert a widget in order into a DAPM power sequence. */
1366static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1367 struct list_head *list,
Mark Brown828a8422011-01-15 13:14:30 +00001368 bool power_up)
Mark Brown38357ab2009-06-06 19:03:23 +01001369{
1370 struct snd_soc_dapm_widget *w;
1371
1372 list_for_each_entry(w, list, power_list)
Mark Brown828a8422011-01-15 13:14:30 +00001373 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
Mark Brown38357ab2009-06-06 19:03:23 +01001374 list_add_tail(&new_widget->power_list, &w->power_list);
1375 return;
Mark Brown42aa3412009-03-01 19:21:10 +00001376 }
Mark Brown6ea31b92009-04-20 17:15:41 +01001377
Mark Brown38357ab2009-06-06 19:03:23 +01001378 list_add_tail(&new_widget->power_list, list);
1379}
Mark Brown42aa3412009-03-01 19:21:10 +00001380
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001381static void dapm_seq_check_event(struct snd_soc_card *card,
Mark Brown68f89ad2010-11-03 23:51:49 -04001382 struct snd_soc_dapm_widget *w, int event)
1383{
Mark Brown68f89ad2010-11-03 23:51:49 -04001384 const char *ev_name;
1385 int power, ret;
1386
1387 switch (event) {
1388 case SND_SOC_DAPM_PRE_PMU:
1389 ev_name = "PRE_PMU";
1390 power = 1;
1391 break;
1392 case SND_SOC_DAPM_POST_PMU:
1393 ev_name = "POST_PMU";
1394 power = 1;
1395 break;
1396 case SND_SOC_DAPM_PRE_PMD:
1397 ev_name = "PRE_PMD";
1398 power = 0;
1399 break;
1400 case SND_SOC_DAPM_POST_PMD:
1401 ev_name = "POST_PMD";
1402 power = 0;
1403 break;
Mark Brown80114122013-02-25 15:14:19 +00001404 case SND_SOC_DAPM_WILL_PMU:
1405 ev_name = "WILL_PMU";
1406 power = 1;
1407 break;
1408 case SND_SOC_DAPM_WILL_PMD:
1409 ev_name = "WILL_PMD";
1410 power = 0;
1411 break;
Mark Brown68f89ad2010-11-03 23:51:49 -04001412 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01001413 WARN(1, "Unknown event %d\n", event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001414 return;
1415 }
1416
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001417 if (w->new_power != power)
Mark Brown68f89ad2010-11-03 23:51:49 -04001418 return;
1419
1420 if (w->event && (w->event_flags & event)) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001421 pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001422 w->name, ev_name);
Mark Browneb270e92013-10-09 13:52:52 +01001423 soc_dapm_async_complete(w->dapm);
Mark Brown84e90932010-11-04 00:07:02 -04001424 trace_snd_soc_dapm_widget_event_start(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001425 ret = w->event(w, NULL, event);
Mark Brown84e90932010-11-04 00:07:02 -04001426 trace_snd_soc_dapm_widget_event_done(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001427 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001428 dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001429 ev_name, w->name, ret);
1430 }
1431}
1432
Mark Brownb22ead22009-06-07 12:51:26 +01001433/* Apply the coalesced changes from a DAPM sequence */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001434static void dapm_seq_run_coalesced(struct snd_soc_card *card,
Mark Brownb22ead22009-06-07 12:51:26 +01001435 struct list_head *pending)
Mark Brown163cac02009-06-07 10:12:52 +01001436{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001437 struct snd_soc_dapm_context *dapm;
Mark Brown68f89ad2010-11-03 23:51:49 -04001438 struct snd_soc_dapm_widget *w;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001439 int reg;
Mark Brownb22ead22009-06-07 12:51:26 +01001440 unsigned int value = 0;
1441 unsigned int mask = 0;
Mark Brownb22ead22009-06-07 12:51:26 +01001442
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001443 w = list_first_entry(pending, struct snd_soc_dapm_widget, power_list);
1444 reg = w->reg;
1445 dapm = w->dapm;
Mark Brownb22ead22009-06-07 12:51:26 +01001446
1447 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001448 WARN_ON(reg != w->reg || dapm != w->dapm);
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001449 w->power = w->new_power;
Mark Brownb22ead22009-06-07 12:51:26 +01001450
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001451 mask |= w->mask << w->shift;
1452 if (w->power)
1453 value |= w->on_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001454 else
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001455 value |= w->off_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001456
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001457 pop_dbg(dapm->dev, card->pop_time,
Mark Brownb22ead22009-06-07 12:51:26 +01001458 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1459 w->name, reg, value, mask);
Mark Brown81628102009-06-07 13:21:24 +01001460
Mark Brown68f89ad2010-11-03 23:51:49 -04001461 /* Check for events */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001462 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU);
1463 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001464 }
1465
Mark Brown81628102009-06-07 13:21:24 +01001466 if (reg >= 0) {
Mark Brown29376bc2011-06-19 13:49:28 +01001467 /* Any widget will do, they should all be updating the
1468 * same register.
1469 */
Mark Brown29376bc2011-06-19 13:49:28 +01001470
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001471 pop_dbg(dapm->dev, card->pop_time,
Mark Brown81628102009-06-07 13:21:24 +01001472 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001473 value, mask, reg, card->pop_time);
1474 pop_wait(card->pop_time);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001475 soc_dapm_update_bits(dapm, reg, mask, value);
Mark Brown81628102009-06-07 13:21:24 +01001476 }
1477
1478 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001479 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU);
1480 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD);
Mark Brown42aa3412009-03-01 19:21:10 +00001481 }
Mark Brown42aa3412009-03-01 19:21:10 +00001482}
1483
Mark Brownb22ead22009-06-07 12:51:26 +01001484/* Apply a DAPM power sequence.
1485 *
1486 * We walk over a pre-sorted list of widgets to apply power to. In
1487 * order to minimise the number of writes to the device required
1488 * multiple widgets will be updated in a single write where possible.
1489 * Currently anything that requires more than a single write is not
1490 * handled.
1491 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001492static void dapm_seq_run(struct snd_soc_card *card,
1493 struct list_head *list, int event, bool power_up)
Mark Brownb22ead22009-06-07 12:51:26 +01001494{
1495 struct snd_soc_dapm_widget *w, *n;
Mark Browneb270e92013-10-09 13:52:52 +01001496 struct snd_soc_dapm_context *d;
Mark Brownb22ead22009-06-07 12:51:26 +01001497 LIST_HEAD(pending);
1498 int cur_sort = -1;
Mark Brown20e48592011-01-15 13:40:50 +00001499 int cur_subseq = -1;
Mark Brownb22ead22009-06-07 12:51:26 +01001500 int cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001501 struct snd_soc_dapm_context *cur_dapm = NULL;
Mark Brown474b62d2011-01-18 16:14:44 +00001502 int ret, i;
Mark Brown828a8422011-01-15 13:14:30 +00001503 int *sort;
1504
1505 if (power_up)
1506 sort = dapm_up_seq;
1507 else
1508 sort = dapm_down_seq;
Mark Brown163cac02009-06-07 10:12:52 +01001509
Mark Brownb22ead22009-06-07 12:51:26 +01001510 list_for_each_entry_safe(w, n, list, power_list) {
1511 ret = 0;
1512
1513 /* Do we need to apply any queued changes? */
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001514 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
Mark Brown20e48592011-01-15 13:40:50 +00001515 w->dapm != cur_dapm || w->subseq != cur_subseq) {
Mark Brownb22ead22009-06-07 12:51:26 +01001516 if (!list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001517 dapm_seq_run_coalesced(card, &pending);
Mark Brownb22ead22009-06-07 12:51:26 +01001518
Mark Brown474b62d2011-01-18 16:14:44 +00001519 if (cur_dapm && cur_dapm->seq_notifier) {
1520 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1521 if (sort[i] == cur_sort)
1522 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001523 i,
1524 cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001525 }
1526
Mark Browneb270e92013-10-09 13:52:52 +01001527 if (cur_dapm && w->dapm != cur_dapm)
1528 soc_dapm_async_complete(cur_dapm);
1529
Mark Brownb22ead22009-06-07 12:51:26 +01001530 INIT_LIST_HEAD(&pending);
1531 cur_sort = -1;
Mark Brownb0b3e6f2011-07-16 10:55:08 +09001532 cur_subseq = INT_MIN;
Mark Brownb22ead22009-06-07 12:51:26 +01001533 cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001534 cur_dapm = NULL;
Mark Brownb22ead22009-06-07 12:51:26 +01001535 }
1536
Mark Brown163cac02009-06-07 10:12:52 +01001537 switch (w->id) {
1538 case snd_soc_dapm_pre:
1539 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001540 list_for_each_entry_safe_continue(w, n, list,
1541 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001542
Mark Brownb22ead22009-06-07 12:51:26 +01001543 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001544 ret = w->event(w,
1545 NULL, SND_SOC_DAPM_PRE_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001546 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001547 ret = w->event(w,
1548 NULL, SND_SOC_DAPM_PRE_PMD);
Mark Brown163cac02009-06-07 10:12:52 +01001549 break;
1550
1551 case snd_soc_dapm_post:
1552 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001553 list_for_each_entry_safe_continue(w, n, list,
1554 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001555
Mark Brownb22ead22009-06-07 12:51:26 +01001556 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001557 ret = w->event(w,
1558 NULL, SND_SOC_DAPM_POST_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001559 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001560 ret = w->event(w,
1561 NULL, SND_SOC_DAPM_POST_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001562 break;
1563
Mark Brown163cac02009-06-07 10:12:52 +01001564 default:
Mark Brown81628102009-06-07 13:21:24 +01001565 /* Queue it up for application */
1566 cur_sort = sort[w->id];
Mark Brown20e48592011-01-15 13:40:50 +00001567 cur_subseq = w->subseq;
Mark Brown81628102009-06-07 13:21:24 +01001568 cur_reg = w->reg;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001569 cur_dapm = w->dapm;
Mark Brown81628102009-06-07 13:21:24 +01001570 list_move(&w->power_list, &pending);
1571 break;
Mark Brown163cac02009-06-07 10:12:52 +01001572 }
Mark Brownb22ead22009-06-07 12:51:26 +01001573
1574 if (ret < 0)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001575 dev_err(w->dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001576 "ASoC: Failed to apply widget power: %d\n", ret);
Mark Brown163cac02009-06-07 10:12:52 +01001577 }
Mark Brownb22ead22009-06-07 12:51:26 +01001578
1579 if (!list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001580 dapm_seq_run_coalesced(card, &pending);
Mark Brown474b62d2011-01-18 16:14:44 +00001581
1582 if (cur_dapm && cur_dapm->seq_notifier) {
1583 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1584 if (sort[i] == cur_sort)
1585 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001586 i, cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001587 }
Mark Browneb270e92013-10-09 13:52:52 +01001588
1589 list_for_each_entry(d, &card->dapm_list, list) {
1590 soc_dapm_async_complete(d);
1591 }
Mark Brown163cac02009-06-07 10:12:52 +01001592}
1593
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001594static void dapm_widget_update(struct snd_soc_card *card)
Mark Brown97404f22010-12-14 16:13:57 +00001595{
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001596 struct snd_soc_dapm_update *update = card->update;
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001597 struct snd_soc_dapm_widget_list *wlist;
1598 struct snd_soc_dapm_widget *w = NULL;
1599 unsigned int wi;
Mark Brown97404f22010-12-14 16:13:57 +00001600 int ret;
1601
Lars-Peter Clausen57295072013-08-05 11:27:31 +02001602 if (!update || !dapm_kcontrol_is_powered(update->kcontrol))
Mark Brown97404f22010-12-14 16:13:57 +00001603 return;
1604
Lars-Peter Clausene84357f2013-07-29 17:13:58 +02001605 wlist = dapm_kcontrol_get_wlist(update->kcontrol);
Mark Brown97404f22010-12-14 16:13:57 +00001606
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001607 for (wi = 0; wi < wlist->num_widgets; wi++) {
1608 w = wlist->widgets[wi];
1609
1610 if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1611 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1612 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001613 dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001614 w->name, ret);
1615 }
Mark Brown97404f22010-12-14 16:13:57 +00001616 }
1617
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001618 if (!w)
1619 return;
1620
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001621 ret = soc_dapm_update_bits(w->dapm, update->reg, update->mask,
1622 update->val);
Mark Brown97404f22010-12-14 16:13:57 +00001623 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001624 dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001625 w->name, ret);
Mark Brown97404f22010-12-14 16:13:57 +00001626
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001627 for (wi = 0; wi < wlist->num_widgets; wi++) {
1628 w = wlist->widgets[wi];
1629
1630 if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1631 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1632 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001633 dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001634 w->name, ret);
1635 }
Mark Brown97404f22010-12-14 16:13:57 +00001636 }
1637}
1638
Mark Brown9d0624a2011-02-18 11:49:43 -08001639/* Async callback run prior to DAPM sequences - brings to _PREPARE if
1640 * they're changing state.
1641 */
1642static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1643{
1644 struct snd_soc_dapm_context *d = data;
1645 int ret;
Mark Brown97404f22010-12-14 16:13:57 +00001646
Mark Brown56fba412011-06-04 11:25:10 +01001647 /* If we're off and we're not supposed to be go into STANDBY */
1648 if (d->bias_level == SND_SOC_BIAS_OFF &&
1649 d->target_bias_level != SND_SOC_BIAS_OFF) {
Mark Brownf1aac482011-12-05 15:17:06 +00001650 if (d->dev)
1651 pm_runtime_get_sync(d->dev);
1652
Mark Brown9d0624a2011-02-18 11:49:43 -08001653 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1654 if (ret != 0)
1655 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001656 "ASoC: Failed to turn on bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001657 }
1658
Lars-Peter Clausence85a4d2014-05-06 10:32:15 +02001659 /* Prepare for a transition to ON or away from ON */
1660 if ((d->target_bias_level == SND_SOC_BIAS_ON &&
1661 d->bias_level != SND_SOC_BIAS_ON) ||
1662 (d->target_bias_level != SND_SOC_BIAS_ON &&
1663 d->bias_level == SND_SOC_BIAS_ON)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001664 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1665 if (ret != 0)
1666 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001667 "ASoC: Failed to prepare bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001668 }
1669}
1670
1671/* Async callback run prior to DAPM sequences - brings to their final
1672 * state.
1673 */
1674static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1675{
1676 struct snd_soc_dapm_context *d = data;
1677 int ret;
1678
1679 /* If we just powered the last thing off drop to standby bias */
Mark Brown56fba412011-06-04 11:25:10 +01001680 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1681 (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1682 d->target_bias_level == SND_SOC_BIAS_OFF)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001683 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1684 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001685 dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001686 ret);
1687 }
1688
1689 /* If we're in standby and can support bias off then do that */
Mark Brown56fba412011-06-04 11:25:10 +01001690 if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1691 d->target_bias_level == SND_SOC_BIAS_OFF) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001692 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1693 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001694 dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n",
1695 ret);
Mark Brownf1aac482011-12-05 15:17:06 +00001696
1697 if (d->dev)
Mark Brownfb644e92012-01-25 19:53:58 +00001698 pm_runtime_put(d->dev);
Mark Brown9d0624a2011-02-18 11:49:43 -08001699 }
1700
1701 /* If we just powered up then move to active bias */
Mark Brown56fba412011-06-04 11:25:10 +01001702 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1703 d->target_bias_level == SND_SOC_BIAS_ON) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001704 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1705 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001706 dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001707 ret);
1708 }
1709}
Mark Brown97404f22010-12-14 16:13:57 +00001710
Mark Brownfe4fda52011-10-03 22:36:57 +01001711static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1712 bool power, bool connect)
1713{
1714 /* If a connection is being made or broken then that update
1715 * will have marked the peer dirty, otherwise the widgets are
1716 * not connected and this update has no impact. */
1717 if (!connect)
1718 return;
1719
1720 /* If the peer is already in the state we're moving to then we
1721 * won't have an impact on it. */
1722 if (power != peer->power)
Mark Brown75c1f892011-10-04 22:28:08 +01001723 dapm_mark_dirty(peer, "peer state change");
Mark Brownfe4fda52011-10-03 22:36:57 +01001724}
1725
Mark Brown05623c42011-09-28 17:02:31 +01001726static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1727 struct list_head *up_list,
1728 struct list_head *down_list)
1729{
Mark Browndb432b42011-10-03 21:06:40 +01001730 struct snd_soc_dapm_path *path;
1731
Mark Brown05623c42011-09-28 17:02:31 +01001732 if (w->power == power)
1733 return;
1734
1735 trace_snd_soc_dapm_widget_power(w, power);
1736
Mark Browndb432b42011-10-03 21:06:40 +01001737 /* If we changed our power state perhaps our neigbours changed
Mark Brownfe4fda52011-10-03 22:36:57 +01001738 * also.
Mark Browndb432b42011-10-03 21:06:40 +01001739 */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001740 snd_soc_dapm_widget_for_each_source_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001741 dapm_widget_set_peer_power(path->source, power, path->connect);
1742
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02001743 /* Supplies can't affect their outputs, only their inputs */
1744 if (!w->is_supply) {
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001745 snd_soc_dapm_widget_for_each_sink_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001746 dapm_widget_set_peer_power(path->sink, power,
1747 path->connect);
Mark Browndb432b42011-10-03 21:06:40 +01001748 }
1749
Mark Brown05623c42011-09-28 17:02:31 +01001750 if (power)
1751 dapm_seq_insert(w, up_list, true);
1752 else
1753 dapm_seq_insert(w, down_list, false);
Mark Brown05623c42011-09-28 17:02:31 +01001754}
1755
Mark Brown7c81beb2011-09-20 22:22:32 +01001756static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1757 struct list_head *up_list,
1758 struct list_head *down_list)
1759{
Mark Brown7c81beb2011-09-20 22:22:32 +01001760 int power;
1761
1762 switch (w->id) {
1763 case snd_soc_dapm_pre:
1764 dapm_seq_insert(w, down_list, false);
1765 break;
1766 case snd_soc_dapm_post:
1767 dapm_seq_insert(w, up_list, true);
1768 break;
1769
1770 default:
Mark Brownd8050022011-09-28 18:28:23 +01001771 power = dapm_widget_power_check(w);
Mark Brown7c81beb2011-09-20 22:22:32 +01001772
Mark Brown05623c42011-09-28 17:02:31 +01001773 dapm_widget_set_power(w, power, up_list, down_list);
Mark Brown7c81beb2011-09-20 22:22:32 +01001774 break;
1775 }
1776}
1777
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001778static bool dapm_idle_bias_off(struct snd_soc_dapm_context *dapm)
1779{
1780 if (dapm->idle_bias_off)
1781 return true;
1782
1783 switch (snd_power_get_state(dapm->card->snd_card)) {
1784 case SNDRV_CTL_POWER_D3hot:
1785 case SNDRV_CTL_POWER_D3cold:
1786 return dapm->suspend_bias_off;
1787 default:
1788 break;
1789 }
1790
1791 return false;
1792}
1793
Mark Brown42aa3412009-03-01 19:21:10 +00001794/*
Richard Purdie2b97eab2006-10-06 18:32:18 +02001795 * Scan each dapm widget for complete audio path.
1796 * A complete path is a route that has valid endpoints i.e.:-
1797 *
1798 * o DAC to output pin.
1799 * o Input Pin to ADC.
1800 * o Input pin to Output pin (bypass, sidetone)
1801 * o DAC to ADC (loopback).
1802 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001803static int dapm_power_widgets(struct snd_soc_card *card, int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001804{
1805 struct snd_soc_dapm_widget *w;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001806 struct snd_soc_dapm_context *d;
Mark Brown291f3bb2009-06-07 13:57:17 +01001807 LIST_HEAD(up_list);
1808 LIST_HEAD(down_list);
Dan Williams2955b472012-07-09 19:33:25 -07001809 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Mark Brown56fba412011-06-04 11:25:10 +01001810 enum snd_soc_bias_level bias;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001811
Mark Brownf9fa2b12014-03-06 16:49:11 +08001812 lockdep_assert_held(&card->dapm_mutex);
1813
Mark Brown84e90932010-11-04 00:07:02 -04001814 trace_snd_soc_dapm_start(card);
1815
Mark Brown56fba412011-06-04 11:25:10 +01001816 list_for_each_entry(d, &card->dapm_list, list) {
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001817 if (dapm_idle_bias_off(d))
Mark Brown497098be2012-03-08 15:06:09 +00001818 d->target_bias_level = SND_SOC_BIAS_OFF;
1819 else
1820 d->target_bias_level = SND_SOC_BIAS_STANDBY;
Mark Brown56fba412011-06-04 11:25:10 +01001821 }
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001822
Liam Girdwood6c120e12012-02-15 15:15:34 +00001823 dapm_reset(card);
Mark Brown9b8a83b2011-10-04 22:15:59 +01001824
Mark Brown6d3ddc82009-05-16 17:47:29 +01001825 /* Check which widgets we need to power and store them in
Mark Browndb432b42011-10-03 21:06:40 +01001826 * lists indicating if they should be powered up or down. We
1827 * only check widgets that have been flagged as dirty but note
1828 * that new widgets may be added to the dirty list while we
1829 * iterate.
Mark Brown6d3ddc82009-05-16 17:47:29 +01001830 */
Mark Browndb432b42011-10-03 21:06:40 +01001831 list_for_each_entry(w, &card->dapm_dirty, dirty) {
Mark Brown7c81beb2011-09-20 22:22:32 +01001832 dapm_power_one_widget(w, &up_list, &down_list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001833 }
1834
Mark Brownf9de6d72011-09-28 17:19:47 +01001835 list_for_each_entry(w, &card->widgets, list) {
Mark Brown0ff97eb2012-07-20 17:29:34 +01001836 switch (w->id) {
1837 case snd_soc_dapm_pre:
1838 case snd_soc_dapm_post:
1839 /* These widgets always need to be powered */
1840 break;
1841 default:
1842 list_del_init(&w->dirty);
1843 break;
1844 }
Mark Browndb432b42011-10-03 21:06:40 +01001845
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001846 if (w->new_power) {
Mark Brownf9de6d72011-09-28 17:19:47 +01001847 d = w->dapm;
1848
1849 /* Supplies and micbiases only bring the
1850 * context up to STANDBY as unless something
1851 * else is active and passing audio they
Mark Brownafe62362012-01-25 19:55:22 +00001852 * generally don't require full power. Signal
1853 * generators are virtual pins and have no
1854 * power impact themselves.
Mark Brownf9de6d72011-09-28 17:19:47 +01001855 */
1856 switch (w->id) {
Mark Brownafe62362012-01-25 19:55:22 +00001857 case snd_soc_dapm_siggen:
Lars-Peter Clausenda83fea2013-10-05 19:26:17 +02001858 case snd_soc_dapm_vmid:
Mark Brownafe62362012-01-25 19:55:22 +00001859 break;
Mark Brownf9de6d72011-09-28 17:19:47 +01001860 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001861 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02001862 case snd_soc_dapm_clock_supply:
Mark Brownf9de6d72011-09-28 17:19:47 +01001863 case snd_soc_dapm_micbias:
1864 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1865 d->target_bias_level = SND_SOC_BIAS_STANDBY;
1866 break;
1867 default:
1868 d->target_bias_level = SND_SOC_BIAS_ON;
1869 break;
1870 }
1871 }
1872
1873 }
1874
Mark Brown85a843c2011-09-21 21:29:47 +01001875 /* Force all contexts in the card to the same bias state if
1876 * they're not ground referenced.
1877 */
Mark Brown56fba412011-06-04 11:25:10 +01001878 bias = SND_SOC_BIAS_OFF;
Mark Brown52ba67b2011-04-04 21:05:11 +09001879 list_for_each_entry(d, &card->dapm_list, list)
Mark Brown56fba412011-06-04 11:25:10 +01001880 if (d->target_bias_level > bias)
1881 bias = d->target_bias_level;
Mark Brown52ba67b2011-04-04 21:05:11 +09001882 list_for_each_entry(d, &card->dapm_list, list)
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001883 if (!dapm_idle_bias_off(d))
Mark Brown85a843c2011-09-21 21:29:47 +01001884 d->target_bias_level = bias;
Mark Brown52ba67b2011-04-04 21:05:11 +09001885
Mark Brownde02d072011-09-20 21:43:24 +01001886 trace_snd_soc_dapm_walk_done(card);
Mark Brown52ba67b2011-04-04 21:05:11 +09001887
Xiang Xiao17282ba2014-03-02 00:04:03 +08001888 /* Run card bias changes at first */
1889 dapm_pre_sequence_async(&card->dapm, 0);
1890 /* Run other bias changes in parallel */
1891 list_for_each_entry(d, &card->dapm_list, list) {
1892 if (d != &card->dapm)
1893 async_schedule_domain(dapm_pre_sequence_async, d,
1894 &async_domain);
1895 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001896 async_synchronize_full_domain(&async_domain);
Mark Brown452c5ea2009-05-17 21:41:23 +01001897
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001898 list_for_each_entry(w, &down_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001899 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD);
Mark Brown80114122013-02-25 15:14:19 +00001900 }
1901
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001902 list_for_each_entry(w, &up_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001903 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU);
Mark Brown80114122013-02-25 15:14:19 +00001904 }
1905
Mark Brown6d3ddc82009-05-16 17:47:29 +01001906 /* Power down widgets first; try to avoid amplifying pops. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001907 dapm_seq_run(card, &down_list, event, false);
Mark Brown6d3ddc82009-05-16 17:47:29 +01001908
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001909 dapm_widget_update(card);
Mark Brown97404f22010-12-14 16:13:57 +00001910
Mark Brown6d3ddc82009-05-16 17:47:29 +01001911 /* Now power up. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001912 dapm_seq_run(card, &up_list, event, true);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001913
Mark Brown9d0624a2011-02-18 11:49:43 -08001914 /* Run all the bias changes in parallel */
Xiang Xiao17282ba2014-03-02 00:04:03 +08001915 list_for_each_entry(d, &card->dapm_list, list) {
1916 if (d != &card->dapm)
1917 async_schedule_domain(dapm_post_sequence_async, d,
1918 &async_domain);
1919 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001920 async_synchronize_full_domain(&async_domain);
Xiang Xiao17282ba2014-03-02 00:04:03 +08001921 /* Run card bias changes at last */
1922 dapm_post_sequence_async(&card->dapm, 0);
Mark Brown452c5ea2009-05-17 21:41:23 +01001923
Liam Girdwood8078d872012-02-15 15:15:35 +00001924 /* do we need to notify any clients that DAPM event is complete */
1925 list_for_each_entry(d, &card->dapm_list, list) {
1926 if (d->stream_event)
1927 d->stream_event(d, event);
1928 }
1929
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001930 pop_dbg(card->dev, card->pop_time,
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02001931 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001932 pop_wait(card->pop_time);
Mark Browncb507e72009-07-08 18:54:57 +01001933
Mark Brown84e90932010-11-04 00:07:02 -04001934 trace_snd_soc_dapm_done(card);
1935
Mark Brown42aa3412009-03-01 19:21:10 +00001936 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001937}
1938
Mark Brown79fb9382009-08-21 16:38:13 +01001939#ifdef CONFIG_DEBUG_FS
Mark Brown79fb9382009-08-21 16:38:13 +01001940static ssize_t dapm_widget_power_read_file(struct file *file,
1941 char __user *user_buf,
1942 size_t count, loff_t *ppos)
1943{
1944 struct snd_soc_dapm_widget *w = file->private_data;
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001945 struct snd_soc_card *card = w->dapm->card;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001946 enum snd_soc_dapm_direction dir, rdir;
Mark Brown79fb9382009-08-21 16:38:13 +01001947 char *buf;
1948 int in, out;
1949 ssize_t ret;
1950 struct snd_soc_dapm_path *p = NULL;
1951
1952 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1953 if (!buf)
1954 return -ENOMEM;
1955
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001956 mutex_lock(&card->dapm_mutex);
1957
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001958 /* Supply widgets are not handled by is_connected_{input,output}_ep() */
1959 if (w->is_supply) {
1960 in = 0;
1961 out = 0;
1962 } else {
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001963 in = is_connected_input_ep(w, NULL, NULL);
1964 out = is_connected_output_ep(w, NULL, NULL);
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001965 }
Mark Brown79fb9382009-08-21 16:38:13 +01001966
Mark Brownf13ebad2012-03-03 18:01:01 +00001967 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1968 w->name, w->power ? "On" : "Off",
1969 w->force ? " (forced)" : "", in, out);
Mark Brown79fb9382009-08-21 16:38:13 +01001970
Mark Brownd033c362009-12-04 15:25:56 +00001971 if (w->reg >= 0)
1972 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001973 " - R%d(0x%x) mask 0x%x",
1974 w->reg, w->reg, w->mask << w->shift);
Mark Brownd033c362009-12-04 15:25:56 +00001975
1976 ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1977
Mark Brown3eef08b2009-09-14 16:49:00 +01001978 if (w->sname)
1979 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1980 w->sname,
1981 w->active ? "active" : "inactive");
Mark Brown79fb9382009-08-21 16:38:13 +01001982
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001983 snd_soc_dapm_for_each_direction(dir) {
1984 rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
1985 snd_soc_dapm_widget_for_each_path(w, dir, p) {
1986 if (p->connected && !p->connected(w, p->node[rdir]))
1987 continue;
Mark Brown215edda2009-09-08 18:59:05 +01001988
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001989 if (!p->connect)
1990 continue;
Mark Brown215edda2009-09-08 18:59:05 +01001991
Mark Brown79fb9382009-08-21 16:38:13 +01001992 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001993 " %s \"%s\" \"%s\"\n",
1994 (rdir == SND_SOC_DAPM_DIR_IN) ? "in" : "out",
Mark Brown79fb9382009-08-21 16:38:13 +01001995 p->name ? p->name : "static",
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001996 p->node[rdir]->name);
1997 }
Mark Brown79fb9382009-08-21 16:38:13 +01001998 }
1999
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002000 mutex_unlock(&card->dapm_mutex);
2001
Mark Brown79fb9382009-08-21 16:38:13 +01002002 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
2003
2004 kfree(buf);
2005 return ret;
2006}
2007
2008static const struct file_operations dapm_widget_power_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002009 .open = simple_open,
Mark Brown79fb9382009-08-21 16:38:13 +01002010 .read = dapm_widget_power_read_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002011 .llseek = default_llseek,
Mark Brown79fb9382009-08-21 16:38:13 +01002012};
2013
Mark Brownef49e4f2011-04-04 20:48:13 +09002014static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
2015 size_t count, loff_t *ppos)
2016{
2017 struct snd_soc_dapm_context *dapm = file->private_data;
2018 char *level;
2019
2020 switch (dapm->bias_level) {
2021 case SND_SOC_BIAS_ON:
2022 level = "On\n";
2023 break;
2024 case SND_SOC_BIAS_PREPARE:
2025 level = "Prepare\n";
2026 break;
2027 case SND_SOC_BIAS_STANDBY:
2028 level = "Standby\n";
2029 break;
2030 case SND_SOC_BIAS_OFF:
2031 level = "Off\n";
2032 break;
2033 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01002034 WARN(1, "Unknown bias_level %d\n", dapm->bias_level);
Mark Brownef49e4f2011-04-04 20:48:13 +09002035 level = "Unknown\n";
2036 break;
2037 }
2038
2039 return simple_read_from_buffer(user_buf, count, ppos, level,
2040 strlen(level));
2041}
2042
2043static const struct file_operations dapm_bias_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002044 .open = simple_open,
Mark Brownef49e4f2011-04-04 20:48:13 +09002045 .read = dapm_bias_read_file,
2046 .llseek = default_llseek,
2047};
2048
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002049void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2050 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002051{
Mark Brown79fb9382009-08-21 16:38:13 +01002052 struct dentry *d;
2053
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02002054 if (!parent)
2055 return;
2056
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002057 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
2058
2059 if (!dapm->debugfs_dapm) {
Liam Girdwoodf1e90af2012-03-06 18:13:25 +00002060 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002061 "ASoC: Failed to create DAPM debugfs directory\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002062 return;
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002063 }
Mark Brown79fb9382009-08-21 16:38:13 +01002064
Mark Brownef49e4f2011-04-04 20:48:13 +09002065 d = debugfs_create_file("bias_level", 0444,
2066 dapm->debugfs_dapm, dapm,
2067 &dapm_bias_fops);
2068 if (!d)
2069 dev_warn(dapm->dev,
2070 "ASoC: Failed to create bias level debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002071}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002072
2073static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2074{
2075 struct snd_soc_dapm_context *dapm = w->dapm;
2076 struct dentry *d;
2077
2078 if (!dapm->debugfs_dapm || !w->name)
2079 return;
2080
2081 d = debugfs_create_file(w->name, 0444,
2082 dapm->debugfs_dapm, w,
2083 &dapm_widget_power_fops);
2084 if (!d)
2085 dev_warn(w->dapm->dev,
2086 "ASoC: Failed to create %s debugfs file\n",
2087 w->name);
2088}
2089
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002090static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2091{
2092 debugfs_remove_recursive(dapm->debugfs_dapm);
2093}
2094
Mark Brown79fb9382009-08-21 16:38:13 +01002095#else
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002096void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2097 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002098{
2099}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002100
2101static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2102{
2103}
2104
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002105static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2106{
2107}
2108
Mark Brown79fb9382009-08-21 16:38:13 +01002109#endif
2110
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002111/*
2112 * soc_dapm_connect_path() - Connects or disconnects a path
2113 * @path: The path to update
2114 * @connect: The new connect state of the path. True if the path is connected,
2115 * false if it is disconneted.
2116 * @reason: The reason why the path changed (for debugging only)
2117 */
2118static void soc_dapm_connect_path(struct snd_soc_dapm_path *path,
2119 bool connect, const char *reason)
2120{
2121 if (path->connect == connect)
2122 return;
2123
2124 path->connect = connect;
2125 dapm_mark_dirty(path->source, reason);
2126 dapm_mark_dirty(path->sink, reason);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002127 dapm_path_invalidate(path);
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002128}
2129
Richard Purdie2b97eab2006-10-06 18:32:18 +02002130/* test and update the power status of a mux widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002131static int soc_dapm_mux_update_power(struct snd_soc_card *card,
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002132 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002133{
2134 struct snd_soc_dapm_path *path;
2135 int found = 0;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002136 bool connect;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002137
Mark Brownf9fa2b12014-03-06 16:49:11 +08002138 lockdep_assert_held(&card->dapm_mutex);
2139
Richard Purdie2b97eab2006-10-06 18:32:18 +02002140 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002141 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002142 found = 1;
2143 /* we now need to match the string in the enum to the path */
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002144 if (!(strcmp(path->name, e->texts[mux])))
2145 connect = true;
2146 else
2147 connect = false;
2148
2149 soc_dapm_connect_path(path, connect, "mux update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002150 }
2151
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002152 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002153 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002154
Liam Girdwood618dae12012-04-25 12:12:51 +01002155 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002156}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002157
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002158int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002159 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e,
2160 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002161{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002162 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002163 int ret;
2164
Liam Girdwood3cd04342012-03-09 12:02:08 +00002165 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002166 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002167 ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002168 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002169 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002170 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002171 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002172 return ret;
2173}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002174EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002175
Milan plzik1b075e32008-01-10 14:39:46 +01002176/* test and update the power status of a mixer or switch widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002177static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
Mark Brown283375c2009-12-07 18:09:03 +00002178 struct snd_kcontrol *kcontrol, int connect)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002179{
2180 struct snd_soc_dapm_path *path;
2181 int found = 0;
2182
Mark Brownf9fa2b12014-03-06 16:49:11 +08002183 lockdep_assert_held(&card->dapm_mutex);
2184
Richard Purdie2b97eab2006-10-06 18:32:18 +02002185 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002186 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002187 found = 1;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002188 soc_dapm_connect_path(path, connect, "mixer update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002189 }
2190
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002191 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002192 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002193
Liam Girdwood618dae12012-04-25 12:12:51 +01002194 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002195}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002196
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002197int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002198 struct snd_kcontrol *kcontrol, int connect,
2199 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002200{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002201 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002202 int ret;
2203
Liam Girdwood3cd04342012-03-09 12:02:08 +00002204 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002205 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002206 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002207 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002208 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002209 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002210 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002211 return ret;
2212}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002213EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002214
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002215static ssize_t dapm_widget_show_component(struct snd_soc_component *cmpnt,
2216 char *buf)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002217{
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002218 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(cmpnt);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002219 struct snd_soc_dapm_widget *w;
2220 int count = 0;
2221 char *state = "not set";
2222
Mark Brown47325072016-03-18 12:04:23 +00002223 /* card won't be set for the dummy component, as a spot fix
2224 * we're checking for that case specifically here but in future
2225 * we will ensure that the dummy component looks like others.
2226 */
2227 if (!cmpnt->card)
2228 return 0;
2229
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002230 list_for_each_entry(w, &cmpnt->card->widgets, list) {
2231 if (w->dapm != dapm)
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002232 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002233
2234 /* only display widgets that burnm power */
2235 switch (w->id) {
2236 case snd_soc_dapm_hp:
2237 case snd_soc_dapm_mic:
2238 case snd_soc_dapm_spk:
2239 case snd_soc_dapm_line:
2240 case snd_soc_dapm_micbias:
2241 case snd_soc_dapm_dac:
2242 case snd_soc_dapm_adc:
2243 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002244 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002245 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002246 case snd_soc_dapm_mixer_named_ctl:
Mark Brown246d0a12009-04-22 18:24:55 +01002247 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002248 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02002249 case snd_soc_dapm_clock_supply:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002250 if (w->name)
2251 count += sprintf(buf + count, "%s: %s\n",
2252 w->name, w->power ? "On":"Off");
2253 break;
2254 default:
2255 break;
2256 }
2257 }
2258
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002259 switch (snd_soc_dapm_get_bias_level(dapm)) {
Mark Brown0be98982008-05-19 12:31:28 +02002260 case SND_SOC_BIAS_ON:
2261 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002262 break;
Mark Brown0be98982008-05-19 12:31:28 +02002263 case SND_SOC_BIAS_PREPARE:
2264 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002265 break;
Mark Brown0be98982008-05-19 12:31:28 +02002266 case SND_SOC_BIAS_STANDBY:
2267 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002268 break;
Mark Brown0be98982008-05-19 12:31:28 +02002269 case SND_SOC_BIAS_OFF:
2270 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002271 break;
2272 }
2273 count += sprintf(buf + count, "PM State: %s\n", state);
2274
2275 return count;
2276}
2277
Benoit Cousson44ba2642014-07-08 23:19:36 +02002278/* show dapm widget status in sys fs */
2279static ssize_t dapm_widget_show(struct device *dev,
2280 struct device_attribute *attr, char *buf)
2281{
2282 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
2283 int i, count = 0;
2284
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002285 mutex_lock(&rtd->card->dapm_mutex);
2286
Benoit Cousson44ba2642014-07-08 23:19:36 +02002287 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002288 struct snd_soc_component *cmpnt = rtd->codec_dais[i]->component;
2289
2290 count += dapm_widget_show_component(cmpnt, buf + count);
Benoit Cousson44ba2642014-07-08 23:19:36 +02002291 }
2292
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002293 mutex_unlock(&rtd->card->dapm_mutex);
2294
Benoit Cousson44ba2642014-07-08 23:19:36 +02002295 return count;
2296}
2297
Richard Purdie2b97eab2006-10-06 18:32:18 +02002298static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
2299
Takashi Iwaid29697d2015-01-30 20:16:37 +01002300struct attribute *soc_dapm_dev_attrs[] = {
2301 &dev_attr_dapm_widget.attr,
2302 NULL
2303};
Richard Purdie2b97eab2006-10-06 18:32:18 +02002304
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002305static void dapm_free_path(struct snd_soc_dapm_path *path)
2306{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002307 list_del(&path->list_node[SND_SOC_DAPM_DIR_IN]);
2308 list_del(&path->list_node[SND_SOC_DAPM_DIR_OUT]);
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002309 list_del(&path->list_kcontrol);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002310 list_del(&path->list);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002311 kfree(path);
2312}
2313
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002314void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
2315{
2316 struct snd_soc_dapm_path *p, *next_p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002317 enum snd_soc_dapm_direction dir;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002318
2319 list_del(&w->list);
2320 /*
2321 * remove source and sink paths associated to this widget.
2322 * While removing the path, remove reference to it from both
2323 * source and sink widgets so that path is removed only once.
2324 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002325 snd_soc_dapm_for_each_direction(dir) {
2326 snd_soc_dapm_widget_for_each_path_safe(w, dir, p, next_p)
2327 dapm_free_path(p);
2328 }
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002329
2330 kfree(w->kcontrols);
Lars-Peter Clausen48068962015-07-21 18:11:08 +02002331 kfree_const(w->name);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002332 kfree(w);
2333}
2334
Jyri Sarhafd589a12015-11-10 18:12:42 +02002335void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context *dapm)
2336{
2337 dapm->path_sink_cache.widget = NULL;
2338 dapm->path_source_cache.widget = NULL;
2339}
2340
Richard Purdie2b97eab2006-10-06 18:32:18 +02002341/* free all dapm widgets and resources */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002342static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002343{
2344 struct snd_soc_dapm_widget *w, *next_w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002345
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002346 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2347 if (w->dapm != dapm)
2348 continue;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002349 snd_soc_dapm_free_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002350 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002351 snd_soc_dapm_reset_cache(dapm);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002352}
2353
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002354static struct snd_soc_dapm_widget *dapm_find_widget(
2355 struct snd_soc_dapm_context *dapm, const char *pin,
2356 bool search_other_contexts)
2357{
2358 struct snd_soc_dapm_widget *w;
2359 struct snd_soc_dapm_widget *fallback = NULL;
2360
2361 list_for_each_entry(w, &dapm->card->widgets, list) {
2362 if (!strcmp(w->name, pin)) {
2363 if (w->dapm == dapm)
2364 return w;
2365 else
2366 fallback = w;
2367 }
2368 }
2369
2370 if (search_other_contexts)
2371 return fallback;
2372
2373 return NULL;
2374}
2375
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002376static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
Mark Brown16499232009-01-07 18:25:13 +00002377 const char *pin, int status)
Liam Girdwooda5302182008-07-07 13:35:17 +01002378{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002379 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Liam Girdwooda5302182008-07-07 13:35:17 +01002380
Mark Brownf9fa2b12014-03-06 16:49:11 +08002381 dapm_assert_locked(dapm);
2382
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002383 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002384 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002385 return -EINVAL;
Liam Girdwooda5302182008-07-07 13:35:17 +01002386 }
2387
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002388 if (w->connected != status) {
Mark Brown1a8b2d92012-02-16 11:50:07 -08002389 dapm_mark_dirty(w, "pin configuration");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002390 dapm_widget_invalidate_input_paths(w);
2391 dapm_widget_invalidate_output_paths(w);
2392 }
Mark Brown1a8b2d92012-02-16 11:50:07 -08002393
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002394 w->connected = status;
2395 if (status == 0)
2396 w->force = 0;
Mark Brown0d867332011-04-06 11:38:14 +09002397
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002398 return 0;
Liam Girdwooda5302182008-07-07 13:35:17 +01002399}
2400
Richard Purdie2b97eab2006-10-06 18:32:18 +02002401/**
Charles Keepax3eb29df2014-02-18 15:22:15 +00002402 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2403 * @dapm: DAPM context
2404 *
2405 * Walks all dapm audio paths and powers widgets according to their
2406 * stream or path usage.
2407 *
2408 * Requires external locking.
2409 *
2410 * Returns 0 for success.
2411 */
2412int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2413{
2414 /*
2415 * Suppress early reports (eg, jacks syncing their state) to avoid
2416 * silly DAPM runs during card startup.
2417 */
2418 if (!dapm->card || !dapm->card->instantiated)
2419 return 0;
2420
2421 return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2422}
2423EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2424
2425/**
Liam Girdwooda5302182008-07-07 13:35:17 +01002426 * snd_soc_dapm_sync - scan and power dapm paths
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002427 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02002428 *
2429 * Walks all dapm audio paths and powers widgets according to their
2430 * stream or path usage.
2431 *
2432 * Returns 0 for success.
2433 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002434int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002435{
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002436 int ret;
2437
Liam Girdwood3cd04342012-03-09 12:02:08 +00002438 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Charles Keepax3eb29df2014-02-18 15:22:15 +00002439 ret = snd_soc_dapm_sync_unlocked(dapm);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002440 mutex_unlock(&dapm->card->dapm_mutex);
2441 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002442}
Liam Girdwooda5302182008-07-07 13:35:17 +01002443EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002444
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002445/*
2446 * dapm_update_widget_flags() - Re-compute widget sink and source flags
2447 * @w: The widget for which to update the flags
2448 *
2449 * Some widgets have a dynamic category which depends on which neighbors they
2450 * are connected to. This function update the category for these widgets.
2451 *
2452 * This function must be called whenever a path is added or removed to a widget.
2453 */
2454static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w)
2455{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002456 enum snd_soc_dapm_direction dir;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002457 struct snd_soc_dapm_path *p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002458 unsigned int ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002459
2460 switch (w->id) {
2461 case snd_soc_dapm_input:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002462 /* On a fully routed card a input is never a source */
2463 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002464 return;
2465 ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002466 snd_soc_dapm_widget_for_each_source_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002467 if (p->source->id == snd_soc_dapm_micbias ||
2468 p->source->id == snd_soc_dapm_mic ||
2469 p->source->id == snd_soc_dapm_line ||
2470 p->source->id == snd_soc_dapm_output) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002471 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002472 break;
2473 }
2474 }
2475 break;
2476 case snd_soc_dapm_output:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002477 /* On a fully routed card a output is never a sink */
2478 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002479 return;
2480 ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002481 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002482 if (p->sink->id == snd_soc_dapm_spk ||
2483 p->sink->id == snd_soc_dapm_hp ||
2484 p->sink->id == snd_soc_dapm_line ||
2485 p->sink->id == snd_soc_dapm_input) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002486 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002487 break;
2488 }
2489 }
2490 break;
2491 case snd_soc_dapm_line:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002492 ep = 0;
2493 snd_soc_dapm_for_each_direction(dir) {
2494 if (!list_empty(&w->edges[dir]))
2495 ep |= SND_SOC_DAPM_DIR_TO_EP(dir);
2496 }
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002497 break;
2498 default:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002499 return;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002500 }
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002501
2502 w->is_ep = ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002503}
2504
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002505static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm,
2506 struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink,
2507 const char *control)
2508{
2509 bool dynamic_source = false;
2510 bool dynamic_sink = false;
2511
2512 if (!control)
2513 return 0;
2514
2515 switch (source->id) {
2516 case snd_soc_dapm_demux:
2517 dynamic_source = true;
2518 break;
2519 default:
2520 break;
2521 }
2522
2523 switch (sink->id) {
2524 case snd_soc_dapm_mux:
2525 case snd_soc_dapm_switch:
2526 case snd_soc_dapm_mixer:
2527 case snd_soc_dapm_mixer_named_ctl:
2528 dynamic_sink = true;
2529 break;
2530 default:
2531 break;
2532 }
2533
2534 if (dynamic_source && dynamic_sink) {
2535 dev_err(dapm->dev,
2536 "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2537 source->name, control, sink->name);
2538 return -EINVAL;
2539 } else if (!dynamic_source && !dynamic_sink) {
2540 dev_err(dapm->dev,
2541 "Control not supported for path %s -> [%s] -> %s\n",
2542 source->name, control, sink->name);
2543 return -EINVAL;
2544 }
2545
2546 return 0;
2547}
2548
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002549static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2550 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2551 const char *control,
2552 int (*connected)(struct snd_soc_dapm_widget *source,
2553 struct snd_soc_dapm_widget *sink))
Richard Purdie2b97eab2006-10-06 18:32:18 +02002554{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002555 struct snd_soc_dapm_widget *widgets[2];
2556 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002557 struct snd_soc_dapm_path *path;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002558 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002559
Lars-Peter Clausene409dfb2014-10-25 17:42:02 +02002560 if (wsink->is_supply && !wsource->is_supply) {
2561 dev_err(dapm->dev,
2562 "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2563 wsource->name, wsink->name);
2564 return -EINVAL;
2565 }
2566
2567 if (connected && !wsource->is_supply) {
2568 dev_err(dapm->dev,
2569 "connected() callback only supported for supply widgets (%s -> %s)\n",
2570 wsource->name, wsink->name);
2571 return -EINVAL;
2572 }
2573
2574 if (wsource->is_supply && control) {
2575 dev_err(dapm->dev,
2576 "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2577 wsource->name, control, wsink->name);
2578 return -EINVAL;
2579 }
2580
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002581 ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control);
2582 if (ret)
2583 return ret;
2584
Richard Purdie2b97eab2006-10-06 18:32:18 +02002585 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2586 if (!path)
2587 return -ENOMEM;
2588
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002589 path->node[SND_SOC_DAPM_DIR_IN] = wsource;
2590 path->node[SND_SOC_DAPM_DIR_OUT] = wsink;
2591 widgets[SND_SOC_DAPM_DIR_IN] = wsource;
2592 widgets[SND_SOC_DAPM_DIR_OUT] = wsink;
2593
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002594 path->connected = connected;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002595 INIT_LIST_HEAD(&path->list);
Mark Brown69c2d342013-08-13 00:20:36 +01002596 INIT_LIST_HEAD(&path->list_kcontrol);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002597
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02002598 if (wsource->is_supply || wsink->is_supply)
2599 path->is_supply = 1;
2600
Richard Purdie2b97eab2006-10-06 18:32:18 +02002601 /* connect static paths */
2602 if (control == NULL) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002603 path->connect = 1;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002604 } else {
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002605 switch (wsource->id) {
2606 case snd_soc_dapm_demux:
2607 ret = dapm_connect_mux(dapm, path, control, wsource);
2608 if (ret)
2609 goto err;
2610 break;
2611 default:
2612 break;
2613 }
2614
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002615 switch (wsink->id) {
2616 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002617 ret = dapm_connect_mux(dapm, path, control, wsink);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002618 if (ret != 0)
2619 goto err;
2620 break;
2621 case snd_soc_dapm_switch:
2622 case snd_soc_dapm_mixer:
2623 case snd_soc_dapm_mixer_named_ctl:
2624 ret = dapm_connect_mixer(dapm, path, control);
2625 if (ret != 0)
2626 goto err;
2627 break;
2628 default:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002629 break;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002630 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002631 }
2632
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002633 list_add(&path->list, &dapm->card->paths);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002634 snd_soc_dapm_for_each_direction(dir)
2635 list_add(&path->list_node[dir], &widgets[dir]->edges[dir]);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002636
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002637 snd_soc_dapm_for_each_direction(dir) {
2638 dapm_update_widget_flags(widgets[dir]);
2639 dapm_mark_dirty(widgets[dir], "Route added");
2640 }
Mark Brownfabd0382012-07-05 17:20:06 +01002641
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002642 if (dapm->card->instantiated && path->connect)
2643 dapm_path_invalidate(path);
2644
Richard Purdie2b97eab2006-10-06 18:32:18 +02002645 return 0;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002646err:
2647 kfree(path);
2648 return ret;
2649}
Richard Purdie2b97eab2006-10-06 18:32:18 +02002650
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002651static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002652 const struct snd_soc_dapm_route *route)
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002653{
2654 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2655 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2656 const char *sink;
2657 const char *source;
2658 char prefixed_sink[80];
2659 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002660 const char *prefix;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002661 int ret;
2662
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002663 prefix = soc_dapm_prefix(dapm);
2664 if (prefix) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002665 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002666 prefix, route->sink);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002667 sink = prefixed_sink;
2668 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002669 prefix, route->source);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002670 source = prefixed_source;
2671 } else {
2672 sink = route->sink;
2673 source = route->source;
2674 }
2675
Charles Keepax45a110a2015-05-11 13:50:30 +01002676 wsource = dapm_wcache_lookup(&dapm->path_source_cache, source);
2677 wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink);
2678
2679 if (wsink && wsource)
2680 goto skip_search;
2681
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002682 /*
2683 * find src and dest widgets over all widgets but favor a widget from
2684 * current DAPM context
2685 */
2686 list_for_each_entry(w, &dapm->card->widgets, list) {
2687 if (!wsink && !(strcmp(w->name, sink))) {
2688 wtsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002689 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002690 wsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002691 if (wsource)
2692 break;
2693 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002694 continue;
2695 }
2696 if (!wsource && !(strcmp(w->name, source))) {
2697 wtsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002698 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002699 wsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002700 if (wsink)
2701 break;
2702 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002703 }
2704 }
2705 /* use widget from another DAPM context if not found from this */
2706 if (!wsink)
2707 wsink = wtsink;
2708 if (!wsource)
2709 wsource = wtsource;
2710
2711 if (wsource == NULL) {
2712 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2713 route->source);
2714 return -ENODEV;
2715 }
2716 if (wsink == NULL) {
2717 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2718 route->sink);
2719 return -ENODEV;
2720 }
2721
Charles Keepax45a110a2015-05-11 13:50:30 +01002722skip_search:
2723 dapm_wcache_update(&dapm->path_sink_cache, wsink);
2724 dapm_wcache_update(&dapm->path_source_cache, wsource);
2725
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002726 ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2727 route->connected);
2728 if (ret)
2729 goto err;
2730
2731 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002732err:
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002733 dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002734 source, route->control, sink);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002735 return ret;
2736}
Mark Brown105f1c22008-05-13 14:52:19 +02002737
Mark Brownefcc3c62012-07-05 17:24:19 +01002738static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
2739 const struct snd_soc_dapm_route *route)
2740{
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002741 struct snd_soc_dapm_widget *wsource, *wsink;
Mark Brownefcc3c62012-07-05 17:24:19 +01002742 struct snd_soc_dapm_path *path, *p;
2743 const char *sink;
2744 const char *source;
2745 char prefixed_sink[80];
2746 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002747 const char *prefix;
Mark Brownefcc3c62012-07-05 17:24:19 +01002748
2749 if (route->control) {
2750 dev_err(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002751 "ASoC: Removal of routes with controls not supported\n");
Mark Brownefcc3c62012-07-05 17:24:19 +01002752 return -EINVAL;
2753 }
2754
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002755 prefix = soc_dapm_prefix(dapm);
2756 if (prefix) {
Mark Brownefcc3c62012-07-05 17:24:19 +01002757 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002758 prefix, route->sink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002759 sink = prefixed_sink;
2760 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002761 prefix, route->source);
Mark Brownefcc3c62012-07-05 17:24:19 +01002762 source = prefixed_source;
2763 } else {
2764 sink = route->sink;
2765 source = route->source;
2766 }
2767
2768 path = NULL;
2769 list_for_each_entry(p, &dapm->card->paths, list) {
2770 if (strcmp(p->source->name, source) != 0)
2771 continue;
2772 if (strcmp(p->sink->name, sink) != 0)
2773 continue;
2774 path = p;
2775 break;
2776 }
2777
2778 if (path) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002779 wsource = path->source;
2780 wsink = path->sink;
2781
2782 dapm_mark_dirty(wsource, "Route removed");
2783 dapm_mark_dirty(wsink, "Route removed");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002784 if (path->connect)
2785 dapm_path_invalidate(path);
Mark Brownefcc3c62012-07-05 17:24:19 +01002786
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002787 dapm_free_path(path);
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002788
2789 /* Update any path related flags */
2790 dapm_update_widget_flags(wsource);
2791 dapm_update_widget_flags(wsink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002792 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002793 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
Mark Brownefcc3c62012-07-05 17:24:19 +01002794 source, sink);
2795 }
2796
2797 return 0;
2798}
2799
Mark Brown105f1c22008-05-13 14:52:19 +02002800/**
Mark Brown105f1c22008-05-13 14:52:19 +02002801 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002802 * @dapm: DAPM context
Mark Brown105f1c22008-05-13 14:52:19 +02002803 * @route: audio routes
2804 * @num: number of routes
2805 *
2806 * Connects 2 dapm widgets together via a named audio path. The sink is
2807 * the widget receiving the audio signal, whilst the source is the sender
2808 * of the audio signal.
2809 *
2810 * Returns 0 for success else error. On error all resources can be freed
2811 * with a call to snd_soc_card_free().
2812 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002813int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
Mark Brown105f1c22008-05-13 14:52:19 +02002814 const struct snd_soc_dapm_route *route, int num)
2815{
Mark Brown62d4a4b2012-06-22 12:21:49 +01002816 int i, r, ret = 0;
Mark Brown105f1c22008-05-13 14:52:19 +02002817
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002818 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown105f1c22008-05-13 14:52:19 +02002819 for (i = 0; i < num; i++) {
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002820 r = snd_soc_dapm_add_route(dapm, route);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002821 if (r < 0) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002822 dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
2823 route->source,
2824 route->control ? route->control : "direct",
2825 route->sink);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002826 ret = r;
Mark Brown105f1c22008-05-13 14:52:19 +02002827 }
2828 route++;
2829 }
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002830 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown105f1c22008-05-13 14:52:19 +02002831
Dan Carpenter60884c22012-04-13 22:25:43 +03002832 return ret;
Mark Brown105f1c22008-05-13 14:52:19 +02002833}
2834EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2835
Mark Brownefcc3c62012-07-05 17:24:19 +01002836/**
2837 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2838 * @dapm: DAPM context
2839 * @route: audio routes
2840 * @num: number of routes
2841 *
2842 * Removes routes from the DAPM context.
2843 */
2844int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
2845 const struct snd_soc_dapm_route *route, int num)
2846{
Rajan Vajae066ea22016-02-11 11:23:35 +05302847 int i;
Mark Brownefcc3c62012-07-05 17:24:19 +01002848
2849 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2850 for (i = 0; i < num; i++) {
2851 snd_soc_dapm_del_route(dapm, route);
2852 route++;
2853 }
2854 mutex_unlock(&dapm->card->dapm_mutex);
2855
Rajan Vajae066ea22016-02-11 11:23:35 +05302856 return 0;
Mark Brownefcc3c62012-07-05 17:24:19 +01002857}
2858EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
2859
Mark Brownbf3a9e12011-06-13 16:42:29 +01002860static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2861 const struct snd_soc_dapm_route *route)
2862{
2863 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2864 route->source,
2865 true);
2866 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2867 route->sink,
2868 true);
2869 struct snd_soc_dapm_path *path;
2870 int count = 0;
2871
2872 if (!source) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002873 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002874 route->source);
2875 return -ENODEV;
2876 }
2877
2878 if (!sink) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002879 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002880 route->sink);
2881 return -ENODEV;
2882 }
2883
2884 if (route->control || route->connected)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002885 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002886 route->source, route->sink);
2887
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002888 snd_soc_dapm_widget_for_each_sink_path(source, path) {
Mark Brownbf3a9e12011-06-13 16:42:29 +01002889 if (path->sink == sink) {
2890 path->weak = 1;
2891 count++;
2892 }
2893 }
2894
2895 if (count == 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002896 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002897 route->source, route->sink);
2898 if (count > 1)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002899 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002900 count, route->source, route->sink);
2901
2902 return 0;
2903}
2904
2905/**
2906 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2907 * @dapm: DAPM context
2908 * @route: audio routes
2909 * @num: number of routes
2910 *
2911 * Mark existing routes matching those specified in the passed array
2912 * as being weak, meaning that they are ignored for the purpose of
2913 * power decisions. The main intended use case is for sidetone paths
2914 * which couple audio between other independent paths if they are both
2915 * active in order to make the combination work better at the user
2916 * level but which aren't intended to be "used".
2917 *
2918 * Note that CODEC drivers should not use this as sidetone type paths
2919 * can frequently also be used as bypass paths.
2920 */
2921int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2922 const struct snd_soc_dapm_route *route, int num)
2923{
2924 int i, err;
2925 int ret = 0;
2926
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002927 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002928 for (i = 0; i < num; i++) {
2929 err = snd_soc_dapm_weak_route(dapm, route);
2930 if (err)
2931 ret = err;
2932 route++;
2933 }
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002934 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002935
2936 return ret;
2937}
2938EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2939
Mark Brown105f1c22008-05-13 14:52:19 +02002940/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02002941 * snd_soc_dapm_new_widgets - add new dapm widgets
Jonathan Corbet628536e2015-08-25 01:14:48 -06002942 * @card: card to be checked for new dapm widgets
Richard Purdie2b97eab2006-10-06 18:32:18 +02002943 *
2944 * Checks the codec for any new dapm widgets and creates them if found.
2945 *
2946 * Returns 0 for success.
2947 */
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02002948int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002949{
2950 struct snd_soc_dapm_widget *w;
Mark Brownb66a70d2011-02-09 18:04:11 +00002951 unsigned int val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002952
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002953 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002954
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002955 list_for_each_entry(w, &card->widgets, list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002956 {
2957 if (w->new)
2958 continue;
2959
Stephen Warrenfad59882011-04-28 17:37:59 -06002960 if (w->num_kcontrols) {
2961 w->kcontrols = kzalloc(w->num_kcontrols *
2962 sizeof(struct snd_kcontrol *),
2963 GFP_KERNEL);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002964 if (!w->kcontrols) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002965 mutex_unlock(&card->dapm_mutex);
Stephen Warrenfad59882011-04-28 17:37:59 -06002966 return -ENOMEM;
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00002967 }
Stephen Warrenfad59882011-04-28 17:37:59 -06002968 }
2969
Richard Purdie2b97eab2006-10-06 18:32:18 +02002970 switch(w->id) {
2971 case snd_soc_dapm_switch:
2972 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002973 case snd_soc_dapm_mixer_named_ctl:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002974 dapm_new_mixer(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002975 break;
2976 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002977 case snd_soc_dapm_demux:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002978 dapm_new_mux(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002979 break;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002980 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002981 case snd_soc_dapm_out_drv:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002982 dapm_new_pga(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002983 break;
Nikesh Oswalc6615082015-02-02 17:06:44 +00002984 case snd_soc_dapm_dai_link:
2985 dapm_new_dai_link(w);
2986 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01002987 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002988 break;
2989 }
Mark Brownb66a70d2011-02-09 18:04:11 +00002990
2991 /* Read the initial power state from the device */
2992 if (w->reg >= 0) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002993 soc_dapm_read(w->dapm, w->reg, &val);
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -08002994 val = val >> w->shift;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02002995 val &= w->mask;
2996 if (val == w->on_val)
Mark Brownb66a70d2011-02-09 18:04:11 +00002997 w->power = 1;
2998 }
2999
Richard Purdie2b97eab2006-10-06 18:32:18 +02003000 w->new = 1;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02003001
Mark Brown7508b122011-10-05 12:09:12 +01003002 dapm_mark_dirty(w, "new widget");
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02003003 dapm_debugfs_add_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003004 }
3005
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003006 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
3007 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003008 return 0;
3009}
3010EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
3011
3012/**
3013 * snd_soc_dapm_get_volsw - dapm mixer get callback
3014 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003015 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003016 *
3017 * Callback to get the value of a dapm mixer control.
3018 *
3019 * Returns 0 for success.
3020 */
3021int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
3022 struct snd_ctl_elem_value *ucontrol)
3023{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003024 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3025 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003026 struct soc_mixer_control *mc =
3027 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003028 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003029 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003030 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003031 unsigned int mask = (1 << fls(max)) - 1;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003032 unsigned int invert = mc->invert;
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003033 unsigned int val;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003034 int ret = 0;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003035
3036 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003037 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003038 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003039 kcontrol->id.name);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003040
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003041 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003042 if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) {
3043 ret = soc_dapm_read(dapm, reg, &val);
3044 val = (val >> shift) & mask;
3045 } else {
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003046 val = dapm_kcontrol_get_value(kcontrol);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003047 }
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003048 mutex_unlock(&card->dapm_mutex);
3049
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003050 if (invert)
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003051 ucontrol->value.integer.value[0] = max - val;
3052 else
3053 ucontrol->value.integer.value[0] = val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003054
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003055 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003056}
3057EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
3058
3059/**
3060 * snd_soc_dapm_put_volsw - dapm mixer set callback
3061 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003062 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003063 *
3064 * Callback to set the value of a dapm mixer control.
3065 *
3066 * Returns 0 for success.
3067 */
3068int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
3069 struct snd_ctl_elem_value *ucontrol)
3070{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003071 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3072 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003073 struct soc_mixer_control *mc =
3074 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003075 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003076 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003077 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003078 unsigned int mask = (1 << fls(max)) - 1;
3079 unsigned int invert = mc->invert;
Stephen Warrene9cf7042011-01-27 14:54:05 -07003080 unsigned int val;
Jarkko Nikula18626c72014-06-09 14:20:29 +03003081 int connect, change, reg_change = 0;
Mark Brown97404f22010-12-14 16:13:57 +00003082 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003083 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003084
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003085 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003086 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003087 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003088 kcontrol->id.name);
3089
Richard Purdie2b97eab2006-10-06 18:32:18 +02003090 val = (ucontrol->value.integer.value[0] & mask);
Benoît Thébaudeau8a720712012-06-18 22:41:28 +02003091 connect = !!val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003092
3093 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01003094 val = max - val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003095
Liam Girdwood3cd04342012-03-09 12:02:08 +00003096 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003097
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003098 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown283375c2009-12-07 18:09:03 +00003099
Jarkko Nikula18626c72014-06-09 14:20:29 +03003100 if (reg != SND_SOC_NOPM) {
3101 mask = mask << shift;
3102 val = val << shift;
Lars-Peter Clausenc9e065c2014-05-04 19:17:05 +02003103
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003104 reg_change = soc_dapm_test_bits(dapm, reg, mask, val);
Jarkko Nikula18626c72014-06-09 14:20:29 +03003105 }
3106
3107 if (change || reg_change) {
3108 if (reg_change) {
3109 update.kcontrol = kcontrol;
3110 update.reg = reg;
3111 update.mask = mask;
3112 update.val = val;
3113 card->update = &update;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003114 }
Jarkko Nikula18626c72014-06-09 14:20:29 +03003115 change |= reg_change;
Mark Brown97404f22010-12-14 16:13:57 +00003116
Nenghua Cao52765972013-12-13 20:13:49 +08003117 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Mark Brown97404f22010-12-14 16:13:57 +00003118
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003119 card->update = NULL;
Mark Brown283375c2009-12-07 18:09:03 +00003120 }
3121
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003122 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003123
3124 if (ret > 0)
3125 soc_dpcm_runtime_update(card);
3126
Lars-Peter Clausen56a67832013-07-24 15:27:35 +02003127 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003128}
3129EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3130
3131/**
3132 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3133 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003134 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003135 *
3136 * Callback to get the value of a dapm enumerated double mixer control.
3137 *
3138 * Returns 0 for success.
3139 */
3140int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3141 struct snd_ctl_elem_value *ucontrol)
3142{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003143 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
Charles Keepax561ed682015-05-01 12:37:26 +01003144 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003145 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003146 unsigned int reg_val, val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003147
Charles Keepax561ed682015-05-01 12:37:26 +01003148 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3149 if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003150 int ret = soc_dapm_read(dapm, e->reg, &reg_val);
Charles Keepax964a0b82015-05-08 10:50:10 +01003151 if (ret) {
3152 mutex_unlock(&card->dapm_mutex);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003153 return ret;
Charles Keepax964a0b82015-05-08 10:50:10 +01003154 }
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003155 } else {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003156 reg_val = dapm_kcontrol_get_value(kcontrol);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003157 }
Charles Keepax561ed682015-05-01 12:37:26 +01003158 mutex_unlock(&card->dapm_mutex);
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003159
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003160 val = (reg_val >> e->shift_l) & e->mask;
3161 ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3162 if (e->shift_l != e->shift_r) {
3163 val = (reg_val >> e->shift_r) & e->mask;
3164 val = snd_soc_enum_val_to_item(e, val);
3165 ucontrol->value.enumerated.item[1] = val;
3166 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003167
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003168 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003169}
3170EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3171
3172/**
3173 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3174 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003175 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003176 *
3177 * Callback to set the value of a dapm enumerated double mixer control.
3178 *
3179 * Returns 0 for success.
3180 */
3181int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3182 struct snd_ctl_elem_value *ucontrol)
3183{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003184 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3185 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003186 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003187 unsigned int *item = ucontrol->value.enumerated.item;
Charles Keepax561ed682015-05-01 12:37:26 +01003188 unsigned int val, change, reg_change = 0;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003189 unsigned int mask;
Mark Brown97404f22010-12-14 16:13:57 +00003190 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003191 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003192
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003193 if (item[0] >= e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003194 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003195
3196 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003197 mask = e->mask << e->shift_l;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003198 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003199 if (item[1] > e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003200 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003201 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003202 mask |= e->mask << e->shift_r;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003203 }
3204
Liam Girdwood3cd04342012-03-09 12:02:08 +00003205 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06003206
Charles Keepax561ed682015-05-01 12:37:26 +01003207 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown97404f22010-12-14 16:13:57 +00003208
Charles Keepax561ed682015-05-01 12:37:26 +01003209 if (e->reg != SND_SOC_NOPM)
3210 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3211
3212 if (change || reg_change) {
3213 if (reg_change) {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003214 update.kcontrol = kcontrol;
3215 update.reg = e->reg;
3216 update.mask = mask;
3217 update.val = val;
3218 card->update = &update;
3219 }
Charles Keepax561ed682015-05-01 12:37:26 +01003220 change |= reg_change;
Mark Brown3a655772009-10-05 17:23:30 +01003221
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003222 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
Mark Brown1642e3d2009-10-05 16:24:26 +01003223
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003224 card->update = NULL;
Stephen Warrenfafd2172011-04-28 17:38:00 -06003225 }
3226
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003227 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003228
3229 if (ret > 0)
3230 soc_dpcm_runtime_update(card);
3231
Mark Brown97404f22010-12-14 16:13:57 +00003232 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003233}
3234EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3235
3236/**
Mark Brown8b37dbd2009-02-28 21:14:20 +00003237 * snd_soc_dapm_info_pin_switch - Info for a pin switch
3238 *
3239 * @kcontrol: mixer control
3240 * @uinfo: control element information
3241 *
3242 * Callback to provide information about a pin switch control.
3243 */
3244int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3245 struct snd_ctl_elem_info *uinfo)
3246{
3247 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3248 uinfo->count = 1;
3249 uinfo->value.integer.min = 0;
3250 uinfo->value.integer.max = 1;
3251
3252 return 0;
3253}
3254EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3255
3256/**
3257 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3258 *
3259 * @kcontrol: mixer control
3260 * @ucontrol: Value
3261 */
3262int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3263 struct snd_ctl_elem_value *ucontrol)
3264{
Mark Brown48a8c392012-02-14 17:11:15 -08003265 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003266 const char *pin = (const char *)kcontrol->private_value;
3267
Liam Girdwood3cd04342012-03-09 12:02:08 +00003268 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003269
3270 ucontrol->value.integer.value[0] =
Mark Brown48a8c392012-02-14 17:11:15 -08003271 snd_soc_dapm_get_pin_status(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003272
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003273 mutex_unlock(&card->dapm_mutex);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003274
3275 return 0;
3276}
3277EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3278
3279/**
3280 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3281 *
3282 * @kcontrol: mixer control
3283 * @ucontrol: Value
3284 */
3285int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3286 struct snd_ctl_elem_value *ucontrol)
3287{
Mark Brown48a8c392012-02-14 17:11:15 -08003288 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003289 const char *pin = (const char *)kcontrol->private_value;
3290
Mark Brown8b37dbd2009-02-28 21:14:20 +00003291 if (ucontrol->value.integer.value[0])
Mark Brown48a8c392012-02-14 17:11:15 -08003292 snd_soc_dapm_enable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003293 else
Mark Brown48a8c392012-02-14 17:11:15 -08003294 snd_soc_dapm_disable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003295
Mark Brown48a8c392012-02-14 17:11:15 -08003296 snd_soc_dapm_sync(&card->dapm);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003297 return 0;
3298}
3299EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3300
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +01003301struct snd_soc_dapm_widget *
Mark Brown5ba06fc2012-02-16 11:07:13 -08003302snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003303 const struct snd_soc_dapm_widget *widget)
3304{
3305 struct snd_soc_dapm_widget *w;
3306
3307 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3308 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3309 if (!w)
3310 dev_err(dapm->dev,
3311 "ASoC: Failed to create DAPM control %s\n",
3312 widget->name);
3313
3314 mutex_unlock(&dapm->card->dapm_mutex);
3315 return w;
3316}
3317
3318struct snd_soc_dapm_widget *
3319snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003320 const struct snd_soc_dapm_widget *widget)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003321{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003322 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003323 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003324 const char *prefix;
Mark Brown62ea8742012-01-21 21:14:48 +00003325 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003326
3327 if ((w = dapm_cnew_widget(widget)) == NULL)
Mark Brown5ba06fc2012-02-16 11:07:13 -08003328 return NULL;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003329
Mark Brown62ea8742012-01-21 21:14:48 +00003330 switch (w->id) {
3331 case snd_soc_dapm_regulator_supply:
Liam Girdwooda3cc0562012-03-09 17:20:16 +00003332 w->regulator = devm_regulator_get(dapm->dev, w->name);
3333 if (IS_ERR(w->regulator)) {
3334 ret = PTR_ERR(w->regulator);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003335 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Mark Brown62ea8742012-01-21 21:14:48 +00003336 w->name, ret);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003337 return NULL;
Mark Brown62ea8742012-01-21 21:14:48 +00003338 }
Mark Brown8784c772013-01-10 19:33:47 +00003339
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003340 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00003341 ret = regulator_allow_bypass(w->regulator, true);
3342 if (ret != 0)
3343 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00003344 "ASoC: Failed to bypass %s: %d\n",
Mark Brown8784c772013-01-10 19:33:47 +00003345 w->name, ret);
3346 }
Mark Brown62ea8742012-01-21 21:14:48 +00003347 break;
Ola Liljad7e7eb92012-05-24 15:26:25 +02003348 case snd_soc_dapm_clock_supply:
Mark Brown165961e2012-06-05 10:44:23 +01003349#ifdef CONFIG_CLKDEV_LOOKUP
Mark Brown695594f12012-06-04 08:14:13 +01003350 w->clk = devm_clk_get(dapm->dev, w->name);
Ola Liljad7e7eb92012-05-24 15:26:25 +02003351 if (IS_ERR(w->clk)) {
3352 ret = PTR_ERR(w->clk);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003353 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Ola Liljad7e7eb92012-05-24 15:26:25 +02003354 w->name, ret);
3355 return NULL;
3356 }
Mark Brownec029952012-06-04 08:16:20 +01003357#else
3358 return NULL;
3359#endif
Ola Liljad7e7eb92012-05-24 15:26:25 +02003360 break;
Mark Brown62ea8742012-01-21 21:14:48 +00003361 default:
3362 break;
3363 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003364
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003365 prefix = soc_dapm_prefix(dapm);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003366 if (prefix)
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003367 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003368 else
Lars-Peter Clausen48068962015-07-21 18:11:08 +02003369 w->name = kstrdup_const(widget->name, GFP_KERNEL);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003370 if (w->name == NULL) {
3371 kfree(w);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003372 return NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003373 }
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003374
Mark Brown7ca3a182011-10-08 14:04:50 +01003375 switch (w->id) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003376 case snd_soc_dapm_mic:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003377 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003378 w->power_check = dapm_generic_check_power;
3379 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003380 case snd_soc_dapm_input:
3381 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003382 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003383 w->power_check = dapm_generic_check_power;
3384 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003385 case snd_soc_dapm_spk:
3386 case snd_soc_dapm_hp:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003387 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003388 w->power_check = dapm_generic_check_power;
3389 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003390 case snd_soc_dapm_output:
3391 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003392 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003393 w->power_check = dapm_generic_check_power;
3394 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003395 case snd_soc_dapm_vmid:
3396 case snd_soc_dapm_siggen:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003397 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003398 w->power_check = dapm_always_on_check_power;
3399 break;
Vinod Koul56b44372015-11-23 21:22:30 +05303400 case snd_soc_dapm_sink:
3401 w->is_ep = SND_SOC_DAPM_EP_SINK;
3402 w->power_check = dapm_always_on_check_power;
3403 break;
3404
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003405 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02003406 case snd_soc_dapm_demux:
Mark Brown7ca3a182011-10-08 14:04:50 +01003407 case snd_soc_dapm_switch:
3408 case snd_soc_dapm_mixer:
3409 case snd_soc_dapm_mixer_named_ctl:
Mark Brown63c69a62013-07-18 22:03:01 +01003410 case snd_soc_dapm_adc:
3411 case snd_soc_dapm_aif_out:
3412 case snd_soc_dapm_dac:
3413 case snd_soc_dapm_aif_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003414 case snd_soc_dapm_pga:
3415 case snd_soc_dapm_out_drv:
Mark Brown7ca3a182011-10-08 14:04:50 +01003416 case snd_soc_dapm_micbias:
Mark Brown7ca3a182011-10-08 14:04:50 +01003417 case snd_soc_dapm_line:
Mark Brownc74184e2012-04-04 22:12:09 +01003418 case snd_soc_dapm_dai_link:
Lars-Peter Clausencdef2ad2014-10-20 19:36:38 +02003419 case snd_soc_dapm_dai_out:
3420 case snd_soc_dapm_dai_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003421 w->power_check = dapm_generic_check_power;
3422 break;
3423 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00003424 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02003425 case snd_soc_dapm_clock_supply:
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003426 case snd_soc_dapm_kcontrol:
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003427 w->is_supply = 1;
Mark Brown7ca3a182011-10-08 14:04:50 +01003428 w->power_check = dapm_supply_check_power;
3429 break;
3430 default:
3431 w->power_check = dapm_always_on_check_power;
3432 break;
3433 }
3434
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003435 w->dapm = dapm;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003436 INIT_LIST_HEAD(&w->list);
Mark Browndb432b42011-10-03 21:06:40 +01003437 INIT_LIST_HEAD(&w->dirty);
Lars-Peter Clausen92fa1242015-05-01 18:02:42 +02003438 list_add_tail(&w->list, &dapm->card->widgets);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003439
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003440 snd_soc_dapm_for_each_direction(dir) {
3441 INIT_LIST_HEAD(&w->edges[dir]);
3442 w->endpoints[dir] = -1;
3443 }
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02003444
Richard Purdie2b97eab2006-10-06 18:32:18 +02003445 /* machine layer set ups unconnected pins and insertions */
3446 w->connected = 1;
Mark Brown5ba06fc2012-02-16 11:07:13 -08003447 return w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003448}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003449
3450/**
Mark Brown4ba13272008-05-13 14:51:19 +02003451 * snd_soc_dapm_new_controls - create new dapm controls
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003452 * @dapm: DAPM context
Mark Brown4ba13272008-05-13 14:51:19 +02003453 * @widget: widget array
3454 * @num: number of widgets
3455 *
3456 * Creates new DAPM controls based upon the templates.
3457 *
3458 * Returns 0 for success else error.
3459 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003460int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
Mark Brown4ba13272008-05-13 14:51:19 +02003461 const struct snd_soc_dapm_widget *widget,
3462 int num)
3463{
Mark Brown5ba06fc2012-02-16 11:07:13 -08003464 struct snd_soc_dapm_widget *w;
3465 int i;
Dan Carpenter60884c22012-04-13 22:25:43 +03003466 int ret = 0;
Mark Brown4ba13272008-05-13 14:51:19 +02003467
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003468 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown4ba13272008-05-13 14:51:19 +02003469 for (i = 0; i < num; i++) {
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003470 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003471 if (!w) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02003472 dev_err(dapm->dev,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003473 "ASoC: Failed to create DAPM control %s\n",
3474 widget->name);
Dan Carpenter60884c22012-04-13 22:25:43 +03003475 ret = -ENOMEM;
3476 break;
Mark Brownb8b33cb2008-12-18 11:19:30 +00003477 }
Mark Brown4ba13272008-05-13 14:51:19 +02003478 widget++;
3479 }
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003480 mutex_unlock(&dapm->card->dapm_mutex);
Dan Carpenter60884c22012-04-13 22:25:43 +03003481 return ret;
Mark Brown4ba13272008-05-13 14:51:19 +02003482}
3483EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3484
Mark Brownc74184e2012-04-04 22:12:09 +01003485static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3486 struct snd_kcontrol *kcontrol, int event)
3487{
3488 struct snd_soc_dapm_path *source_p, *sink_p;
3489 struct snd_soc_dai *source, *sink;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003490 const struct snd_soc_pcm_stream *config = w->params + w->params_select;
Mark Brownc74184e2012-04-04 22:12:09 +01003491 struct snd_pcm_substream substream;
Mark Brown9747cec2012-04-26 19:12:21 +01003492 struct snd_pcm_hw_params *params = NULL;
Mark Brownc74184e2012-04-04 22:12:09 +01003493 u64 fmt;
3494 int ret;
3495
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003496 if (WARN_ON(!config) ||
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003497 WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3498 list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003499 return -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003500
3501 /* We only support a single source and sink, pick the first */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003502 source_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_OUT],
3503 struct snd_soc_dapm_path,
3504 list_node[SND_SOC_DAPM_DIR_OUT]);
3505 sink_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_IN],
3506 struct snd_soc_dapm_path,
3507 list_node[SND_SOC_DAPM_DIR_IN]);
Mark Brownc74184e2012-04-04 22:12:09 +01003508
3509 source = source_p->source->priv;
3510 sink = sink_p->sink->priv;
3511
3512 /* Be a little careful as we don't want to overflow the mask array */
3513 if (config->formats) {
3514 fmt = ffs(config->formats) - 1;
3515 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003516 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003517 config->formats);
3518 fmt = 0;
3519 }
3520
3521 /* Currently very limited parameter selection */
Mark Brown9747cec2012-04-26 19:12:21 +01003522 params = kzalloc(sizeof(*params), GFP_KERNEL);
3523 if (!params) {
3524 ret = -ENOMEM;
3525 goto out;
3526 }
3527 snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
Mark Brownc74184e2012-04-04 22:12:09 +01003528
Mark Brown9747cec2012-04-26 19:12:21 +01003529 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
Mark Brownc74184e2012-04-04 22:12:09 +01003530 config->rate_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003531 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
Mark Brownc74184e2012-04-04 22:12:09 +01003532 config->rate_max;
3533
Mark Brown9747cec2012-04-26 19:12:21 +01003534 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
Mark Brownc74184e2012-04-04 22:12:09 +01003535 = config->channels_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003536 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
Mark Brownc74184e2012-04-04 22:12:09 +01003537 = config->channels_max;
3538
3539 memset(&substream, 0, sizeof(substream));
3540
3541 switch (event) {
3542 case SND_SOC_DAPM_PRE_PMU:
Benoit Cousson93e69582014-07-08 23:19:38 +02003543 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303544 if (source->driver->ops && source->driver->ops->startup) {
3545 ret = source->driver->ops->startup(&substream, source);
3546 if (ret < 0) {
3547 dev_err(source->dev,
3548 "ASoC: startup() failed: %d\n", ret);
3549 goto out;
3550 }
3551 source->active++;
3552 }
Benoit Cousson93e69582014-07-08 23:19:38 +02003553 ret = soc_dai_hw_params(&substream, params, source);
3554 if (ret < 0)
3555 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003556
Benoit Cousson93e69582014-07-08 23:19:38 +02003557 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303558 if (sink->driver->ops && sink->driver->ops->startup) {
3559 ret = sink->driver->ops->startup(&substream, sink);
3560 if (ret < 0) {
3561 dev_err(sink->dev,
3562 "ASoC: startup() failed: %d\n", ret);
3563 goto out;
3564 }
3565 sink->active++;
3566 }
Benoit Cousson93e69582014-07-08 23:19:38 +02003567 ret = soc_dai_hw_params(&substream, params, sink);
3568 if (ret < 0)
3569 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003570 break;
3571
3572 case SND_SOC_DAPM_POST_PMU:
Mark Brownda183962013-02-06 15:44:07 +00003573 ret = snd_soc_dai_digital_mute(sink, 0,
3574 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003575 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003576 dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003577 ret = 0;
Mark Brownc74184e2012-04-04 22:12:09 +01003578 break;
3579
3580 case SND_SOC_DAPM_PRE_PMD:
Mark Brownda183962013-02-06 15:44:07 +00003581 ret = snd_soc_dai_digital_mute(sink, 1,
3582 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003583 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003584 dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003585 ret = 0;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303586
3587 source->active--;
3588 if (source->driver->ops && source->driver->ops->shutdown) {
3589 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3590 source->driver->ops->shutdown(&substream, source);
3591 }
3592
3593 sink->active--;
3594 if (sink->driver->ops && sink->driver->ops->shutdown) {
3595 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3596 sink->driver->ops->shutdown(&substream, sink);
3597 }
Mark Brownc74184e2012-04-04 22:12:09 +01003598 break;
3599
3600 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01003601 WARN(1, "Unknown event %d\n", event);
Sudip Mukherjee75881df2015-09-10 18:01:44 +05303602 ret = -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003603 }
3604
Mark Brown9747cec2012-04-26 19:12:21 +01003605out:
3606 kfree(params);
3607 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003608}
3609
Nikesh Oswalc6615082015-02-02 17:06:44 +00003610static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
3611 struct snd_ctl_elem_value *ucontrol)
3612{
3613 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3614
Takashi Iwai741338f2016-02-29 17:20:48 +01003615 ucontrol->value.enumerated.item[0] = w->params_select;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003616
3617 return 0;
3618}
3619
3620static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
3621 struct snd_ctl_elem_value *ucontrol)
3622{
3623 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3624
3625 /* Can't change the config when widget is already powered */
3626 if (w->power)
3627 return -EBUSY;
3628
Takashi Iwai741338f2016-02-29 17:20:48 +01003629 if (ucontrol->value.enumerated.item[0] == w->params_select)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003630 return 0;
3631
Takashi Iwai741338f2016-02-29 17:20:48 +01003632 if (ucontrol->value.enumerated.item[0] >= w->num_params)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003633 return -EINVAL;
3634
Takashi Iwai741338f2016-02-29 17:20:48 +01003635 w->params_select = ucontrol->value.enumerated.item[0];
Nikesh Oswalc6615082015-02-02 17:06:44 +00003636
3637 return 0;
3638}
3639
Mark Brownc74184e2012-04-04 22:12:09 +01003640int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3641 const struct snd_soc_pcm_stream *params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00003642 unsigned int num_params,
Mark Brownc74184e2012-04-04 22:12:09 +01003643 struct snd_soc_dapm_widget *source,
3644 struct snd_soc_dapm_widget *sink)
3645{
Mark Brownc74184e2012-04-04 22:12:09 +01003646 struct snd_soc_dapm_widget template;
3647 struct snd_soc_dapm_widget *w;
Mark Brownc74184e2012-04-04 22:12:09 +01003648 char *link_name;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003649 int ret, count;
3650 unsigned long private_value;
3651 const char **w_param_text;
3652 struct soc_enum w_param_enum[] = {
3653 SOC_ENUM_SINGLE(0, 0, 0, NULL),
3654 };
3655 struct snd_kcontrol_new kcontrol_dai_link[] = {
3656 SOC_ENUM_EXT(NULL, w_param_enum[0],
3657 snd_soc_dapm_dai_link_get,
3658 snd_soc_dapm_dai_link_put),
3659 };
3660 const struct snd_soc_pcm_stream *config = params;
Mark Brownc74184e2012-04-04 22:12:09 +01003661
Nikesh Oswalc6615082015-02-02 17:06:44 +00003662 w_param_text = devm_kcalloc(card->dev, num_params,
3663 sizeof(char *), GFP_KERNEL);
3664 if (!w_param_text)
Mark Brownc74184e2012-04-04 22:12:09 +01003665 return -ENOMEM;
Mark Brownc74184e2012-04-04 22:12:09 +01003666
Charles Keepax46172b62015-03-25 11:22:35 +00003667 link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
3668 source->name, sink->name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003669 if (!link_name) {
3670 ret = -ENOMEM;
3671 goto outfree_w_param;
3672 }
Mark Brownc74184e2012-04-04 22:12:09 +01003673
Nikesh Oswalc6615082015-02-02 17:06:44 +00003674 for (count = 0 ; count < num_params; count++) {
3675 if (!config->stream_name) {
3676 dev_warn(card->dapm.dev,
3677 "ASoC: anonymous config %d for dai link %s\n",
3678 count, link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003679 w_param_text[count] =
Charles Keepax46172b62015-03-25 11:22:35 +00003680 devm_kasprintf(card->dev, GFP_KERNEL,
3681 "Anonymous Configuration %d",
3682 count);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003683 if (!w_param_text[count]) {
3684 ret = -ENOMEM;
3685 goto outfree_link_name;
3686 }
Nikesh Oswalc6615082015-02-02 17:06:44 +00003687 } else {
3688 w_param_text[count] = devm_kmemdup(card->dev,
3689 config->stream_name,
3690 strlen(config->stream_name) + 1,
3691 GFP_KERNEL);
3692 if (!w_param_text[count]) {
3693 ret = -ENOMEM;
3694 goto outfree_link_name;
3695 }
3696 }
3697 config++;
3698 }
3699 w_param_enum[0].items = num_params;
3700 w_param_enum[0].texts = w_param_text;
Mark Brownc74184e2012-04-04 22:12:09 +01003701
3702 memset(&template, 0, sizeof(template));
3703 template.reg = SND_SOC_NOPM;
3704 template.id = snd_soc_dapm_dai_link;
3705 template.name = link_name;
3706 template.event = snd_soc_dai_link_event;
3707 template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3708 SND_SOC_DAPM_PRE_PMD;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003709 template.num_kcontrols = 1;
3710 /* duplicate w_param_enum on heap so that memory persists */
3711 private_value =
3712 (unsigned long) devm_kmemdup(card->dev,
3713 (void *)(kcontrol_dai_link[0].private_value),
3714 sizeof(struct soc_enum), GFP_KERNEL);
3715 if (!private_value) {
3716 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3717 link_name);
3718 ret = -ENOMEM;
3719 goto outfree_link_name;
3720 }
3721 kcontrol_dai_link[0].private_value = private_value;
3722 /* duplicate kcontrol_dai_link on heap so that memory persists */
3723 template.kcontrol_news =
3724 devm_kmemdup(card->dev, &kcontrol_dai_link[0],
3725 sizeof(struct snd_kcontrol_new),
3726 GFP_KERNEL);
3727 if (!template.kcontrol_news) {
3728 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3729 link_name);
3730 ret = -ENOMEM;
3731 goto outfree_private_value;
3732 }
Mark Brownc74184e2012-04-04 22:12:09 +01003733
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003734 dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
Mark Brownc74184e2012-04-04 22:12:09 +01003735
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003736 w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
Mark Brownc74184e2012-04-04 22:12:09 +01003737 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003738 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003739 link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003740 ret = -ENOMEM;
3741 goto outfree_kcontrol_news;
Mark Brownc74184e2012-04-04 22:12:09 +01003742 }
3743
3744 w->params = params;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003745 w->num_params = num_params;
Mark Brownc74184e2012-04-04 22:12:09 +01003746
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003747 ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3748 if (ret)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003749 goto outfree_w;
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003750 return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003751
3752outfree_w:
3753 devm_kfree(card->dev, w);
3754outfree_kcontrol_news:
3755 devm_kfree(card->dev, (void *)template.kcontrol_news);
3756outfree_private_value:
3757 devm_kfree(card->dev, (void *)private_value);
3758outfree_link_name:
3759 devm_kfree(card->dev, link_name);
3760outfree_w_param:
3761 for (count = 0 ; count < num_params; count++)
3762 devm_kfree(card->dev, (void *)w_param_text[count]);
3763 devm_kfree(card->dev, w_param_text);
3764
3765 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003766}
3767
Mark Brown888df392012-02-16 19:37:51 -08003768int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3769 struct snd_soc_dai *dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003770{
Mark Brown888df392012-02-16 19:37:51 -08003771 struct snd_soc_dapm_widget template;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003772 struct snd_soc_dapm_widget *w;
3773
Mark Brown888df392012-02-16 19:37:51 -08003774 WARN_ON(dapm->dev != dai->dev);
3775
3776 memset(&template, 0, sizeof(template));
3777 template.reg = SND_SOC_NOPM;
3778
3779 if (dai->driver->playback.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003780 template.id = snd_soc_dapm_dai_in;
Mark Brown888df392012-02-16 19:37:51 -08003781 template.name = dai->driver->playback.stream_name;
3782 template.sname = dai->driver->playback.stream_name;
3783
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003784 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003785 template.name);
3786
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003787 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003788 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003789 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003790 dai->driver->playback.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003791 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003792 }
3793
3794 w->priv = dai;
3795 dai->playback_widget = w;
3796 }
3797
3798 if (dai->driver->capture.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003799 template.id = snd_soc_dapm_dai_out;
Mark Brown888df392012-02-16 19:37:51 -08003800 template.name = dai->driver->capture.stream_name;
3801 template.sname = dai->driver->capture.stream_name;
3802
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003803 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003804 template.name);
3805
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003806 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003807 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003808 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003809 dai->driver->capture.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003810 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003811 }
3812
3813 w->priv = dai;
3814 dai->capture_widget = w;
3815 }
3816
3817 return 0;
3818}
3819
3820int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3821{
3822 struct snd_soc_dapm_widget *dai_w, *w;
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003823 struct snd_soc_dapm_widget *src, *sink;
Mark Brown888df392012-02-16 19:37:51 -08003824 struct snd_soc_dai *dai;
Mark Brown888df392012-02-16 19:37:51 -08003825
3826 /* For each DAI widget... */
3827 list_for_each_entry(dai_w, &card->widgets, list) {
Mark Brown46162742013-06-05 19:36:11 +01003828 switch (dai_w->id) {
3829 case snd_soc_dapm_dai_in:
3830 case snd_soc_dapm_dai_out:
3831 break;
3832 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02003833 continue;
Mark Brown46162742013-06-05 19:36:11 +01003834 }
Mark Brown888df392012-02-16 19:37:51 -08003835
3836 dai = dai_w->priv;
3837
3838 /* ...find all widgets with the same stream and link them */
3839 list_for_each_entry(w, &card->widgets, list) {
3840 if (w->dapm != dai_w->dapm)
3841 continue;
3842
Mark Brown46162742013-06-05 19:36:11 +01003843 switch (w->id) {
3844 case snd_soc_dapm_dai_in:
3845 case snd_soc_dapm_dai_out:
Mark Brown888df392012-02-16 19:37:51 -08003846 continue;
Mark Brown46162742013-06-05 19:36:11 +01003847 default:
3848 break;
3849 }
Mark Brown888df392012-02-16 19:37:51 -08003850
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003851 if (!w->sname || !strstr(w->sname, dai_w->sname))
Mark Brown888df392012-02-16 19:37:51 -08003852 continue;
3853
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003854 if (dai_w->id == snd_soc_dapm_dai_in) {
3855 src = dai_w;
3856 sink = w;
3857 } else {
3858 src = w;
3859 sink = dai_w;
Mark Brown888df392012-02-16 19:37:51 -08003860 }
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003861 dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3862 snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003863 }
3864 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003865
Mark Brown888df392012-02-16 19:37:51 -08003866 return 0;
3867}
Liam Girdwood64a648c2011-07-25 11:15:15 +01003868
Benoit Cousson44ba2642014-07-08 23:19:36 +02003869static void dapm_connect_dai_link_widgets(struct snd_soc_card *card,
3870 struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003871{
Benoit Cousson44ba2642014-07-08 23:19:36 +02003872 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003873 struct snd_soc_dapm_widget *sink, *source;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003874 int i;
3875
Benoit Cousson44ba2642014-07-08 23:19:36 +02003876 for (i = 0; i < rtd->num_codecs; i++) {
3877 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003878
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003879 /* connect BE DAI playback if widgets are valid */
3880 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003881 source = cpu_dai->playback_widget;
3882 sink = codec_dai->playback_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003883 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003884 cpu_dai->component->name, source->name,
3885 codec_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003886
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003887 snd_soc_dapm_add_path(&card->dapm, source, sink,
3888 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003889 }
3890
3891 /* connect BE DAI capture if widgets are valid */
3892 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003893 source = codec_dai->capture_widget;
3894 sink = cpu_dai->capture_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003895 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003896 codec_dai->component->name, source->name,
3897 cpu_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003898
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003899 snd_soc_dapm_add_path(&card->dapm, source, sink,
3900 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003901 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003902 }
3903}
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003904
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003905static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
3906 int event)
3907{
3908 struct snd_soc_dapm_widget *w;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003909 unsigned int ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003910
3911 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
3912 w = dai->playback_widget;
3913 else
3914 w = dai->capture_widget;
3915
3916 if (w) {
3917 dapm_mark_dirty(w, "stream event");
3918
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003919 if (w->id == snd_soc_dapm_dai_in) {
3920 ep = SND_SOC_DAPM_EP_SOURCE;
3921 dapm_widget_invalidate_input_paths(w);
3922 } else {
3923 ep = SND_SOC_DAPM_EP_SINK;
3924 dapm_widget_invalidate_output_paths(w);
3925 }
3926
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003927 switch (event) {
3928 case SND_SOC_DAPM_STREAM_START:
3929 w->active = 1;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003930 w->is_ep = ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003931 break;
3932 case SND_SOC_DAPM_STREAM_STOP:
3933 w->active = 0;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003934 w->is_ep = 0;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003935 break;
3936 case SND_SOC_DAPM_STREAM_SUSPEND:
3937 case SND_SOC_DAPM_STREAM_RESUME:
3938 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3939 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3940 break;
3941 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003942 }
3943}
3944
Benoit Cousson44ba2642014-07-08 23:19:36 +02003945void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
3946{
Mengdong Lin1a497982015-11-18 02:34:11 -05003947 struct snd_soc_pcm_runtime *rtd;
Benoit Cousson44ba2642014-07-08 23:19:36 +02003948
3949 /* for each BE DAI link... */
Mengdong Lin1a497982015-11-18 02:34:11 -05003950 list_for_each_entry(rtd, &card->rtd_list, list) {
Benoit Cousson44ba2642014-07-08 23:19:36 +02003951 /*
3952 * dynamic FE links have no fixed DAI mapping.
3953 * CODEC<->CODEC links have no direct connection.
3954 */
3955 if (rtd->dai_link->dynamic || rtd->dai_link->params)
3956 continue;
3957
3958 dapm_connect_dai_link_widgets(card, rtd);
3959 }
3960}
3961
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003962static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3963 int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003964{
Benoit Cousson44ba2642014-07-08 23:19:36 +02003965 int i;
3966
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003967 soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
Benoit Cousson44ba2642014-07-08 23:19:36 +02003968 for (i = 0; i < rtd->num_codecs; i++)
3969 soc_dapm_dai_stream_event(rtd->codec_dais[i], stream, event);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003970
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003971 dapm_power_widgets(rtd->card, event);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003972}
3973
3974/**
3975 * snd_soc_dapm_stream_event - send a stream event to the dapm core
3976 * @rtd: PCM runtime data
3977 * @stream: stream name
3978 * @event: stream event
3979 *
3980 * Sends a stream event to the dapm core. The core then makes any
3981 * necessary widget power changes.
3982 *
3983 * Returns 0 for success else error.
3984 */
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003985void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3986 int event)
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003987{
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003988 struct snd_soc_card *card = rtd->card;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003989
Liam Girdwood3cd04342012-03-09 12:02:08 +00003990 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003991 soc_dapm_stream_event(rtd, stream, event);
Liam Girdwooda73fb2df2012-03-07 10:38:26 +00003992 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003993}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003994
3995/**
Charles Keepax11391102014-02-18 15:22:14 +00003996 * snd_soc_dapm_enable_pin_unlocked - enable pin.
3997 * @dapm: DAPM context
3998 * @pin: pin name
3999 *
4000 * Enables input/output pin and its parents or children widgets iff there is
4001 * a valid audio route and active audio stream.
4002 *
4003 * Requires external locking.
4004 *
4005 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4006 * do any widget power switching.
4007 */
4008int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4009 const char *pin)
4010{
4011 return snd_soc_dapm_set_pin(dapm, pin, 1);
4012}
4013EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
4014
4015/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004016 * snd_soc_dapm_enable_pin - enable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004017 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004018 * @pin: pin name
Richard Purdie2b97eab2006-10-06 18:32:18 +02004019 *
Mark Brown74b8f952009-06-06 11:26:15 +01004020 * Enables input/output pin and its parents or children widgets iff there is
Liam Girdwooda5302182008-07-07 13:35:17 +01004021 * a valid audio route and active audio stream.
Charles Keepax11391102014-02-18 15:22:14 +00004022 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004023 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4024 * do any widget power switching.
Richard Purdie2b97eab2006-10-06 18:32:18 +02004025 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004026int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004027{
Charles Keepax11391102014-02-18 15:22:14 +00004028 int ret;
4029
4030 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4031
4032 ret = snd_soc_dapm_set_pin(dapm, pin, 1);
4033
4034 mutex_unlock(&dapm->card->dapm_mutex);
4035
4036 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02004037}
Liam Girdwooda5302182008-07-07 13:35:17 +01004038EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004039
4040/**
Charles Keepax11391102014-02-18 15:22:14 +00004041 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4042 * @dapm: DAPM context
4043 * @pin: pin name
4044 *
4045 * Enables input/output pin regardless of any other state. This is
4046 * intended for use with microphone bias supplies used in microphone
4047 * jack detection.
4048 *
4049 * Requires external locking.
4050 *
4051 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4052 * do any widget power switching.
4053 */
4054int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4055 const char *pin)
4056{
4057 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4058
4059 if (!w) {
4060 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4061 return -EINVAL;
4062 }
4063
4064 dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02004065 if (!w->connected) {
4066 /*
4067 * w->force does not affect the number of input or output paths,
4068 * so we only have to recheck if w->connected is changed
4069 */
4070 dapm_widget_invalidate_input_paths(w);
4071 dapm_widget_invalidate_output_paths(w);
4072 w->connected = 1;
4073 }
Charles Keepax11391102014-02-18 15:22:14 +00004074 w->force = 1;
4075 dapm_mark_dirty(w, "force enable");
4076
4077 return 0;
4078}
4079EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
4080
4081/**
Mark Brownda341832010-03-15 19:23:37 +00004082 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004083 * @dapm: DAPM context
Mark Brownda341832010-03-15 19:23:37 +00004084 * @pin: pin name
4085 *
4086 * Enables input/output pin regardless of any other state. This is
4087 * intended for use with microphone bias supplies used in microphone
4088 * jack detection.
4089 *
4090 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4091 * do any widget power switching.
4092 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004093int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
4094 const char *pin)
Mark Brownda341832010-03-15 19:23:37 +00004095{
Charles Keepax11391102014-02-18 15:22:14 +00004096 int ret;
Mark Brownda341832010-03-15 19:23:37 +00004097
Charles Keepax11391102014-02-18 15:22:14 +00004098 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownda341832010-03-15 19:23:37 +00004099
Charles Keepax11391102014-02-18 15:22:14 +00004100 ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
Mark Brown0d867332011-04-06 11:38:14 +09004101
Charles Keepax11391102014-02-18 15:22:14 +00004102 mutex_unlock(&dapm->card->dapm_mutex);
4103
4104 return ret;
Mark Brownda341832010-03-15 19:23:37 +00004105}
4106EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4107
4108/**
Charles Keepax11391102014-02-18 15:22:14 +00004109 * snd_soc_dapm_disable_pin_unlocked - disable pin.
4110 * @dapm: DAPM context
4111 * @pin: pin name
4112 *
4113 * Disables input/output pin and its parents or children widgets.
4114 *
4115 * Requires external locking.
4116 *
4117 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4118 * do any widget power switching.
4119 */
4120int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4121 const char *pin)
4122{
4123 return snd_soc_dapm_set_pin(dapm, pin, 0);
4124}
4125EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4126
4127/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004128 * snd_soc_dapm_disable_pin - disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004129 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004130 * @pin: pin name
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004131 *
Mark Brown74b8f952009-06-06 11:26:15 +01004132 * Disables input/output pin and its parents or children widgets.
Charles Keepax11391102014-02-18 15:22:14 +00004133 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004134 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4135 * do any widget power switching.
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004136 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004137int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4138 const char *pin)
Liam Girdwooda5302182008-07-07 13:35:17 +01004139{
Charles Keepax11391102014-02-18 15:22:14 +00004140 int ret;
4141
4142 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4143
4144 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4145
4146 mutex_unlock(&dapm->card->dapm_mutex);
4147
4148 return ret;
Liam Girdwooda5302182008-07-07 13:35:17 +01004149}
4150EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4151
4152/**
Charles Keepax11391102014-02-18 15:22:14 +00004153 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4154 * @dapm: DAPM context
4155 * @pin: pin name
4156 *
4157 * Marks the specified pin as being not connected, disabling it along
4158 * any parent or child widgets. At present this is identical to
4159 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4160 * additional things such as disabling controls which only affect
4161 * paths through the pin.
4162 *
4163 * Requires external locking.
4164 *
4165 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4166 * do any widget power switching.
4167 */
4168int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4169 const char *pin)
4170{
4171 return snd_soc_dapm_set_pin(dapm, pin, 0);
4172}
4173EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4174
4175/**
Mark Brown5817b522008-09-24 11:23:11 +01004176 * snd_soc_dapm_nc_pin - permanently disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004177 * @dapm: DAPM context
Mark Brown5817b522008-09-24 11:23:11 +01004178 * @pin: pin name
4179 *
4180 * Marks the specified pin as being not connected, disabling it along
4181 * any parent or child widgets. At present this is identical to
4182 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4183 * additional things such as disabling controls which only affect
4184 * paths through the pin.
4185 *
4186 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4187 * do any widget power switching.
4188 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004189int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Mark Brown5817b522008-09-24 11:23:11 +01004190{
Charles Keepax11391102014-02-18 15:22:14 +00004191 int ret;
4192
4193 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4194
4195 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4196
4197 mutex_unlock(&dapm->card->dapm_mutex);
4198
4199 return ret;
Mark Brown5817b522008-09-24 11:23:11 +01004200}
4201EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4202
4203/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004204 * snd_soc_dapm_get_pin_status - get audio pin status
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004205 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004206 * @pin: audio signal pin endpoint (or start point)
4207 *
4208 * Get audio pin status - connected or disconnected.
4209 *
4210 * Returns 1 for connected otherwise 0.
4211 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004212int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4213 const char *pin)
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004214{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004215 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004216
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004217 if (w)
4218 return w->connected;
Stephen Warrena68b38a2011-04-19 15:25:11 -06004219
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004220 return 0;
4221}
Liam Girdwooda5302182008-07-07 13:35:17 +01004222EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004223
4224/**
Mark Brown1547aba2010-05-07 21:11:40 +01004225 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004226 * @dapm: DAPM context
Mark Brown1547aba2010-05-07 21:11:40 +01004227 * @pin: audio signal pin endpoint (or start point)
4228 *
4229 * Mark the given endpoint or pin as ignoring suspend. When the
4230 * system is disabled a path between two endpoints flagged as ignoring
4231 * suspend will not be disabled. The path must already be enabled via
4232 * normal means at suspend time, it will not be turned on if it was not
4233 * already enabled.
4234 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004235int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4236 const char *pin)
Mark Brown1547aba2010-05-07 21:11:40 +01004237{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004238 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
Mark Brown1547aba2010-05-07 21:11:40 +01004239
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004240 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004241 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004242 return -EINVAL;
Mark Brown1547aba2010-05-07 21:11:40 +01004243 }
4244
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004245 w->ignore_suspend = 1;
4246
4247 return 0;
Mark Brown1547aba2010-05-07 21:11:40 +01004248}
4249EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4250
Lars-Peter Clausencdc45082014-10-20 19:36:33 +02004251/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02004252 * snd_soc_dapm_free - free dapm resources
Peter Ujfalusi728a5222011-08-26 16:33:52 +03004253 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02004254 *
4255 * Free all dapm widgets and resources.
4256 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004257void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004258{
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02004259 dapm_debugfs_cleanup(dapm);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004260 dapm_free_widgets(dapm);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02004261 list_del(&dapm->list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004262}
4263EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4264
Xiang Xiao57996352014-03-02 00:04:02 +08004265static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
Mark Brown51737472009-06-22 13:16:51 +01004266{
Liam Girdwood01005a72012-07-06 16:57:05 +01004267 struct snd_soc_card *card = dapm->card;
Mark Brown51737472009-06-22 13:16:51 +01004268 struct snd_soc_dapm_widget *w;
4269 LIST_HEAD(down_list);
4270 int powerdown = 0;
4271
Liam Girdwood01005a72012-07-06 16:57:05 +01004272 mutex_lock(&card->dapm_mutex);
4273
Jarkko Nikula97c866d2010-12-14 12:18:31 +02004274 list_for_each_entry(w, &dapm->card->widgets, list) {
4275 if (w->dapm != dapm)
4276 continue;
Mark Brown51737472009-06-22 13:16:51 +01004277 if (w->power) {
Mark Brown828a8422011-01-15 13:14:30 +00004278 dapm_seq_insert(w, &down_list, false);
Mark Brownc2caa4d2009-06-26 15:36:56 +01004279 w->power = 0;
Mark Brown51737472009-06-22 13:16:51 +01004280 powerdown = 1;
4281 }
4282 }
4283
4284 /* If there were no widgets to power down we're already in
4285 * standby.
4286 */
4287 if (powerdown) {
Mark Brown7679e422012-02-22 15:52:56 +00004288 if (dapm->bias_level == SND_SOC_BIAS_ON)
4289 snd_soc_dapm_set_bias_level(dapm,
4290 SND_SOC_BIAS_PREPARE);
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004291 dapm_seq_run(card, &down_list, 0, false);
Mark Brown7679e422012-02-22 15:52:56 +00004292 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4293 snd_soc_dapm_set_bias_level(dapm,
4294 SND_SOC_BIAS_STANDBY);
Mark Brown51737472009-06-22 13:16:51 +01004295 }
Liam Girdwood01005a72012-07-06 16:57:05 +01004296
4297 mutex_unlock(&card->dapm_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004298}
Mark Brown51737472009-06-22 13:16:51 +01004299
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004300/*
4301 * snd_soc_dapm_shutdown - callback for system shutdown
4302 */
4303void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4304{
Xiang Xiao57996352014-03-02 00:04:02 +08004305 struct snd_soc_dapm_context *dapm;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004306
Xiang Xiao57996352014-03-02 00:04:02 +08004307 list_for_each_entry(dapm, &card->dapm_list, list) {
Xiang Xiao17282ba2014-03-02 00:04:03 +08004308 if (dapm != &card->dapm) {
4309 soc_dapm_shutdown_dapm(dapm);
4310 if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4311 snd_soc_dapm_set_bias_level(dapm,
4312 SND_SOC_BIAS_OFF);
4313 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004314 }
Xiang Xiao17282ba2014-03-02 00:04:03 +08004315
4316 soc_dapm_shutdown_dapm(&card->dapm);
4317 if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4318 snd_soc_dapm_set_bias_level(&card->dapm,
4319 SND_SOC_BIAS_OFF);
Mark Brown51737472009-06-22 13:16:51 +01004320}
4321
Richard Purdie2b97eab2006-10-06 18:32:18 +02004322/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004323MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Richard Purdie2b97eab2006-10-06 18:32:18 +02004324MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4325MODULE_LICENSE("GPL");