blob: 7d505e299d8989fc7620d6818ddcdc536c590c92 [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) {
Sudheer Papothi9eb600c2016-01-29 02:04:49 +0530285 if (w->ignore_suspend)
286 continue;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200287 if (w->is_ep) {
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200288 dapm_mark_dirty(w, "Rechecking endpoints");
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200289 if (w->is_ep & SND_SOC_DAPM_EP_SINK)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200290 dapm_widget_invalidate_output_paths(w);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200291 if (w->is_ep & SND_SOC_DAPM_EP_SOURCE)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200292 dapm_widget_invalidate_input_paths(w);
293 }
Mark Browne2d32ff2012-08-31 17:38:32 -0700294 }
295
296 mutex_unlock(&card->dapm_mutex);
297}
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200298EXPORT_SYMBOL_GPL(dapm_mark_endpoints_dirty);
Mark Browne2d32ff2012-08-31 17:38:32 -0700299
Richard Purdie2b97eab2006-10-06 18:32:18 +0200300/* create a new dapm widget */
Takashi Iwai88cb4292007-02-05 14:56:20 +0100301static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
Richard Purdie2b97eab2006-10-06 18:32:18 +0200302 const struct snd_soc_dapm_widget *_widget)
303{
Takashi Iwai88cb4292007-02-05 14:56:20 +0100304 return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200305}
306
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200307struct dapm_kcontrol_data {
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200308 unsigned int value;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200309 struct snd_soc_dapm_widget *widget;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200310 struct list_head paths;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200311 struct snd_soc_dapm_widget_list *wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200312};
313
314static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100315 struct snd_kcontrol *kcontrol, const char *ctrl_name)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200316{
317 struct dapm_kcontrol_data *data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200318 struct soc_mixer_control *mc;
Charles Keepax561ed682015-05-01 12:37:26 +0100319 struct soc_enum *e;
Charles Keepax773da9b2015-05-01 12:37:25 +0100320 const char *name;
321 int ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200322
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200323 data = kzalloc(sizeof(*data), GFP_KERNEL);
Charles Keepax40b7bea2015-05-01 12:37:24 +0100324 if (!data)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200325 return -ENOMEM;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200326
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200327 INIT_LIST_HEAD(&data->paths);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200328
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200329 switch (widget->id) {
330 case snd_soc_dapm_switch:
331 case snd_soc_dapm_mixer:
332 case snd_soc_dapm_mixer_named_ctl:
333 mc = (struct soc_mixer_control *)kcontrol->private_value;
334
335 if (mc->autodisable) {
336 struct snd_soc_dapm_widget template;
337
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100338 name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name,
Charles Keepax773da9b2015-05-01 12:37:25 +0100339 "Autodisable");
340 if (!name) {
341 ret = -ENOMEM;
342 goto err_data;
343 }
344
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200345 memset(&template, 0, sizeof(template));
346 template.reg = mc->reg;
347 template.mask = (1 << fls(mc->max)) - 1;
348 template.shift = mc->shift;
349 if (mc->invert)
350 template.off_val = mc->max;
351 else
352 template.off_val = 0;
353 template.on_val = template.off_val;
354 template.id = snd_soc_dapm_kcontrol;
Charles Keepax773da9b2015-05-01 12:37:25 +0100355 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200356
Lars-Peter Clausen2daabd72013-08-30 17:39:33 +0200357 data->value = template.on_val;
358
Liam Girdwood02aa78a2015-05-25 18:21:17 +0100359 data->widget =
360 snd_soc_dapm_new_control_unlocked(widget->dapm,
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200361 &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200362 kfree(name);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200363 if (!data->widget) {
Charles Keepax773da9b2015-05-01 12:37:25 +0100364 ret = -ENOMEM;
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200365 goto err_data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200366 }
367 }
368 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200369 case snd_soc_dapm_demux:
Charles Keepax561ed682015-05-01 12:37:26 +0100370 case snd_soc_dapm_mux:
371 e = (struct soc_enum *)kcontrol->private_value;
372
373 if (e->autodisable) {
374 struct snd_soc_dapm_widget template;
375
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100376 name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name,
Charles Keepax561ed682015-05-01 12:37:26 +0100377 "Autodisable");
378 if (!name) {
379 ret = -ENOMEM;
380 goto err_data;
381 }
382
383 memset(&template, 0, sizeof(template));
384 template.reg = e->reg;
385 template.mask = e->mask << e->shift_l;
386 template.shift = e->shift_l;
387 template.off_val = snd_soc_enum_item_to_val(e, 0);
388 template.on_val = template.off_val;
389 template.id = snd_soc_dapm_kcontrol;
390 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200391
392 data->value = template.on_val;
393
Charles Keepaxffacb482015-06-26 10:39:43 +0100394 data->widget = snd_soc_dapm_new_control_unlocked(
395 widget->dapm, &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200396 kfree(name);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200397 if (!data->widget) {
Charles Keepax561ed682015-05-01 12:37:26 +0100398 ret = -ENOMEM;
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200399 goto err_data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200400 }
Charles Keepax561ed682015-05-01 12:37:26 +0100401
402 snd_soc_dapm_add_path(widget->dapm, data->widget,
403 widget, NULL, NULL);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200404 }
405 break;
406 default:
407 break;
408 }
409
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200410 kcontrol->private_data = data;
411
412 return 0;
Charles Keepax773da9b2015-05-01 12:37:25 +0100413
Charles Keepax773da9b2015-05-01 12:37:25 +0100414err_data:
415 kfree(data);
416 return ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200417}
418
419static void dapm_kcontrol_free(struct snd_kcontrol *kctl)
420{
421 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kctl);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200422 kfree(data->wlist);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200423 kfree(data);
424}
425
Sudheer Papothie5c7d7c2016-01-29 05:16:51 +0530426struct snd_soc_dapm_widget_list *dapm_kcontrol_get_wlist(
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200427 const struct snd_kcontrol *kcontrol)
428{
429 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
430
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200431 return data->wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200432}
Sudheer Papothie5c7d7c2016-01-29 05:16:51 +0530433EXPORT_SYMBOL(dapm_kcontrol_get_wlist);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200434
435static int dapm_kcontrol_add_widget(struct snd_kcontrol *kcontrol,
436 struct snd_soc_dapm_widget *widget)
437{
438 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200439 struct snd_soc_dapm_widget_list *new_wlist;
440 unsigned int n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200441
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200442 if (data->wlist)
443 n = data->wlist->num_widgets + 1;
444 else
445 n = 1;
446
447 new_wlist = krealloc(data->wlist,
448 sizeof(*new_wlist) + sizeof(widget) * n, GFP_KERNEL);
449 if (!new_wlist)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200450 return -ENOMEM;
451
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200452 new_wlist->widgets[n - 1] = widget;
453 new_wlist->num_widgets = n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200454
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200455 data->wlist = new_wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200456
457 return 0;
458}
459
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200460static void dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol,
461 struct snd_soc_dapm_path *path)
462{
463 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
464
465 list_add_tail(&path->list_kcontrol, &data->paths);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200466}
467
468static bool dapm_kcontrol_is_powered(const struct snd_kcontrol *kcontrol)
469{
470 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
471
472 if (!data->widget)
473 return true;
474
475 return data->widget->power;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200476}
477
478static struct list_head *dapm_kcontrol_get_path_list(
479 const struct snd_kcontrol *kcontrol)
480{
481 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
482
483 return &data->paths;
484}
485
486#define dapm_kcontrol_for_each_path(path, kcontrol) \
487 list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \
488 list_kcontrol)
489
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530490unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol *kcontrol)
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200491{
492 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
493
494 return data->value;
495}
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530496EXPORT_SYMBOL_GPL(dapm_kcontrol_get_value);
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200497
498static bool dapm_kcontrol_set_value(const struct snd_kcontrol *kcontrol,
499 unsigned int value)
500{
501 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
502
503 if (data->value == value)
504 return false;
505
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200506 if (data->widget)
507 data->widget->on_val = value;
508
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200509 data->value = value;
510
511 return true;
512}
513
Lars-Peter Clauseneee5d7f2013-07-29 17:13:57 +0200514/**
Mythri P K93e39a12015-10-20 22:30:08 +0530515 * snd_soc_dapm_kcontrol_widget() - Returns the widget associated to a
516 * kcontrol
517 * @kcontrol: The kcontrol
518 */
519struct snd_soc_dapm_widget *snd_soc_dapm_kcontrol_widget(
520 struct snd_kcontrol *kcontrol)
521{
522 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0];
523}
524EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_widget);
525
526/**
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200527 * snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a
528 * kcontrol
529 * @kcontrol: The kcontrol
530 *
531 * Note: This function must only be used on kcontrols that are known to have
532 * been registered for a CODEC. Otherwise the behaviour is undefined.
533 */
534struct snd_soc_dapm_context *snd_soc_dapm_kcontrol_dapm(
535 struct snd_kcontrol *kcontrol)
536{
537 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->dapm;
538}
539EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_dapm);
540
Liam Girdwood6c120e12012-02-15 15:15:34 +0000541static void dapm_reset(struct snd_soc_card *card)
542{
543 struct snd_soc_dapm_widget *w;
544
Mark Brownf9fa2b12014-03-06 16:49:11 +0800545 lockdep_assert_held(&card->dapm_mutex);
546
Liam Girdwood6c120e12012-02-15 15:15:34 +0000547 memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
548
549 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +0200550 w->new_power = w->power;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000551 w->power_checked = false;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000552 }
553}
554
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200555static const char *soc_dapm_prefix(struct snd_soc_dapm_context *dapm)
556{
557 if (!dapm->component)
558 return NULL;
559 return dapm->component->name_prefix;
560}
561
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200562static int soc_dapm_read(struct snd_soc_dapm_context *dapm, int reg,
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -0800563 unsigned int *value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100564{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200565 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200566 return -EIO;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200567 return snd_soc_component_read(dapm->component, reg, value);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100568}
569
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200570static int soc_dapm_update_bits(struct snd_soc_dapm_context *dapm,
Bard Liao34775012014-04-17 20:12:56 +0800571 int reg, unsigned int mask, unsigned int value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100572{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200573 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200574 return -EIO;
Mark Brownfcf6c5e2014-12-15 13:08:48 +0000575 return snd_soc_component_update_bits(dapm->component, reg,
576 mask, value);
Liam Girdwood49575fb52012-03-06 18:16:19 +0000577}
578
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200579static int soc_dapm_test_bits(struct snd_soc_dapm_context *dapm,
580 int reg, unsigned int mask, unsigned int value)
581{
582 if (!dapm->component)
583 return -EIO;
584 return snd_soc_component_test_bits(dapm->component, reg, mask, value);
585}
586
Mark Browneb270e92013-10-09 13:52:52 +0100587static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm)
588{
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200589 if (dapm->component)
590 snd_soc_component_async_complete(dapm->component);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100591}
592
Charles Keepax45a110a2015-05-11 13:50:30 +0100593static struct snd_soc_dapm_widget *
594dapm_wcache_lookup(struct snd_soc_dapm_wcache *wcache, const char *name)
595{
596 struct snd_soc_dapm_widget *w = wcache->widget;
597 struct list_head *wlist;
598 const int depth = 2;
599 int i = 0;
600
601 if (w) {
602 wlist = &w->dapm->card->widgets;
603
604 list_for_each_entry_from(w, wlist, list) {
605 if (!strcmp(name, w->name))
606 return w;
607
608 if (++i == depth)
609 break;
610 }
611 }
612
613 return NULL;
614}
615
616static inline void dapm_wcache_update(struct snd_soc_dapm_wcache *wcache,
617 struct snd_soc_dapm_widget *w)
618{
619 wcache->widget = w;
620}
621
Mark Brown452c5ea2009-05-17 21:41:23 +0100622/**
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200623 * snd_soc_dapm_force_bias_level() - Sets the DAPM bias level
624 * @dapm: The DAPM context for which to set the level
625 * @level: The level to set
626 *
627 * Forces the DAPM bias level to a specific state. It will call the bias level
628 * callback of DAPM context with the specified level. This will even happen if
629 * the context is already at the same level. Furthermore it will not go through
630 * the normal bias level sequencing, meaning any intermediate states between the
631 * current and the target state will not be entered.
632 *
633 * Note that the change in bias level is only temporary and the next time
634 * snd_soc_dapm_sync() is called the state will be set to the level as
635 * determined by the DAPM core. The function is mainly intended to be used to
636 * used during probe or resume from suspend to power up the device so
637 * initialization can be done, before the DAPM core takes over.
638 */
639int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm,
640 enum snd_soc_bias_level level)
641{
642 int ret = 0;
643
644 if (dapm->set_bias_level)
645 ret = dapm->set_bias_level(dapm, level);
646
Lars-Peter Clausenf4bf8d72015-04-27 22:13:25 +0200647 if (ret == 0)
648 dapm->bias_level = level;
649
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200650 return ret;
651}
652EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level);
653
Mark Brown452c5ea2009-05-17 21:41:23 +0100654/**
655 * snd_soc_dapm_set_bias_level - set the bias level for the system
Mark Browned5a4c42011-02-18 11:12:42 -0800656 * @dapm: DAPM context
Mark Brown452c5ea2009-05-17 21:41:23 +0100657 * @level: level to configure
658 *
659 * Configure the bias (power) levels for the SoC audio device.
660 *
661 * Returns 0 for success else error.
662 */
Mark Browned5a4c42011-02-18 11:12:42 -0800663static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200664 enum snd_soc_bias_level level)
Mark Brown452c5ea2009-05-17 21:41:23 +0100665{
Mark Browned5a4c42011-02-18 11:12:42 -0800666 struct snd_soc_card *card = dapm->card;
Mark Brown452c5ea2009-05-17 21:41:23 +0100667 int ret = 0;
668
Mark Brown84e90932010-11-04 00:07:02 -0400669 trace_snd_soc_bias_level_start(card, level);
670
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000671 if (card && card->set_bias_level)
Mark Brownd4c60052011-06-06 19:13:23 +0100672 ret = card->set_bias_level(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100673 if (ret != 0)
674 goto out;
Mark Brown452c5ea2009-05-17 21:41:23 +0100675
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200676 if (!card || dapm != &card->dapm)
677 ret = snd_soc_dapm_force_bias_level(dapm, level);
Liam Girdwood41231282012-07-06 16:56:16 +0100678
Mark Brown171ec6b2011-06-06 18:15:19 +0100679 if (ret != 0)
680 goto out;
681
682 if (card && card->set_bias_level_post)
Mark Brownd4c60052011-06-06 19:13:23 +0100683 ret = card->set_bias_level_post(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100684out:
Mark Brown84e90932010-11-04 00:07:02 -0400685 trace_snd_soc_bias_level_done(card, level);
686
Mark Brown452c5ea2009-05-17 21:41:23 +0100687 return ret;
688}
689
Mark Brown74b8f952009-06-06 11:26:15 +0100690/* connect mux widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200691static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200692 struct snd_soc_dapm_path *path, const char *control_name,
693 struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200694{
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200695 const struct snd_kcontrol_new *kcontrol = &w->kcontrol_news[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +0200696 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100697 unsigned int val, item;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200698 int i;
699
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100700 if (e->reg != SND_SOC_NOPM) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200701 soc_dapm_read(dapm, e->reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100702 val = (val >> e->shift_l) & e->mask;
703 item = snd_soc_enum_val_to_item(e, val);
704 } else {
705 /* since a virtual mux has no backing registers to
706 * decide which path to connect, it will try to match
707 * with the first enumeration. This is to ensure
708 * that the default mux choice (the first) will be
709 * correctly powered up during initialization.
710 */
711 item = 0;
712 }
713
Takashi Iwai9a8d38d2014-02-18 08:11:42 +0100714 for (i = 0; i < e->items; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200715 if (!(strcmp(control_name, e->texts[i]))) {
Rasmus Villemoes98ad73c2014-10-21 17:01:15 +0200716 path->name = e->texts[i];
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100717 if (i == item)
718 path->connect = 1;
719 else
720 path->connect = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200721 return 0;
722 }
723 }
724
725 return -ENODEV;
726}
727
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100728/* set up initial codec paths */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200729static void dapm_set_mixer_path_status(struct snd_soc_dapm_path *p, int i)
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100730{
731 struct soc_mixer_control *mc = (struct soc_mixer_control *)
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200732 p->sink->kcontrol_news[i].private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100733 unsigned int reg = mc->reg;
734 unsigned int shift = mc->shift;
735 unsigned int max = mc->max;
736 unsigned int mask = (1 << fls(max)) - 1;
737 unsigned int invert = mc->invert;
Laxminath Kasam29af16f2016-02-24 15:40:46 +0530738 unsigned int val = 0;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100739
740 if (reg != SND_SOC_NOPM) {
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200741 soc_dapm_read(p->sink->dapm, reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100742 val = (val >> shift) & mask;
743 if (invert)
744 val = max - val;
745 p->connect = !!val;
746 } else {
747 p->connect = 0;
748 }
749}
750
Mark Brown74b8f952009-06-06 11:26:15 +0100751/* connect mixer widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200752static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200753 struct snd_soc_dapm_path *path, const char *control_name)
754{
755 int i;
756
757 /* search for mixer kcontrol */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200758 for (i = 0; i < path->sink->num_kcontrols; i++) {
759 if (!strcmp(control_name, path->sink->kcontrol_news[i].name)) {
760 path->name = path->sink->kcontrol_news[i].name;
761 dapm_set_mixer_path_status(path, i);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200762 return 0;
763 }
764 }
765 return -ENODEV;
766}
767
Stephen Warrenaf468002011-04-28 17:38:01 -0600768static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
Stephen Warren1007da02011-05-26 09:57:33 -0600769 struct snd_soc_dapm_widget *kcontrolw,
Stephen Warrenaf468002011-04-28 17:38:01 -0600770 const struct snd_kcontrol_new *kcontrol_new,
771 struct snd_kcontrol **kcontrol)
772{
773 struct snd_soc_dapm_widget *w;
774 int i;
775
776 *kcontrol = NULL;
777
778 list_for_each_entry(w, &dapm->card->widgets, list) {
Stephen Warren1007da02011-05-26 09:57:33 -0600779 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
780 continue;
Stephen Warrenaf468002011-04-28 17:38:01 -0600781 for (i = 0; i < w->num_kcontrols; i++) {
782 if (&w->kcontrol_news[i] == kcontrol_new) {
783 if (w->kcontrols)
784 *kcontrol = w->kcontrols[i];
785 return 1;
786 }
787 }
788 }
789
790 return 0;
791}
792
Stephen Warren85762e72013-03-29 15:40:10 -0600793/*
794 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
795 * create it. Either way, add the widget into the control's widget list
796 */
Jeeja KP19a2557b2015-10-20 22:30:06 +0530797static int dapm_create_or_share_kcontrol(struct snd_soc_dapm_widget *w,
Mark Brown946d92a2013-08-12 23:28:42 +0100798 int kci)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200799{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200800 struct snd_soc_dapm_context *dapm = w->dapm;
Mark Brown12ea2c72011-03-02 18:17:32 +0000801 struct snd_card *card = dapm->card->snd_card;
Mark Brownefb7ac32011-03-08 17:23:24 +0000802 const char *prefix;
Stephen Warren85762e72013-03-29 15:40:10 -0600803 size_t prefix_len;
804 int shared;
805 struct snd_kcontrol *kcontrol;
Stephen Warren85762e72013-03-29 15:40:10 -0600806 bool wname_in_long_name, kcname_in_long_name;
Daniel Macke5092c92014-10-07 13:41:24 +0200807 char *long_name = NULL;
Stephen Warren85762e72013-03-29 15:40:10 -0600808 const char *name;
Daniel Macke5092c92014-10-07 13:41:24 +0200809 int ret = 0;
Mark Brownefb7ac32011-03-08 17:23:24 +0000810
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200811 prefix = soc_dapm_prefix(dapm);
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000812 if (prefix)
813 prefix_len = strlen(prefix) + 1;
814 else
815 prefix_len = 0;
816
Stephen Warren85762e72013-03-29 15:40:10 -0600817 shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[kci],
818 &kcontrol);
819
Stephen Warren85762e72013-03-29 15:40:10 -0600820 if (!kcontrol) {
821 if (shared) {
822 wname_in_long_name = false;
823 kcname_in_long_name = true;
824 } else {
825 switch (w->id) {
826 case snd_soc_dapm_switch:
827 case snd_soc_dapm_mixer:
Jeeja KP19a2557b2015-10-20 22:30:06 +0530828 case snd_soc_dapm_pga:
Chen-Yu Tsaia3930ed2016-08-27 19:28:00 +0800829 case snd_soc_dapm_out_drv:
Stephen Warren85762e72013-03-29 15:40:10 -0600830 wname_in_long_name = true;
831 kcname_in_long_name = true;
832 break;
833 case snd_soc_dapm_mixer_named_ctl:
834 wname_in_long_name = false;
835 kcname_in_long_name = true;
836 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200837 case snd_soc_dapm_demux:
Stephen Warren85762e72013-03-29 15:40:10 -0600838 case snd_soc_dapm_mux:
Stephen Warren85762e72013-03-29 15:40:10 -0600839 wname_in_long_name = true;
840 kcname_in_long_name = false;
841 break;
842 default:
Stephen Warren85762e72013-03-29 15:40:10 -0600843 return -EINVAL;
844 }
845 }
846
847 if (wname_in_long_name && kcname_in_long_name) {
Stephen Warren85762e72013-03-29 15:40:10 -0600848 /*
849 * The control will get a prefix from the control
850 * creation process but we're also using the same
851 * prefix for widgets so cut the prefix off the
852 * front of the widget name.
853 */
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200854 long_name = kasprintf(GFP_KERNEL, "%s %s",
Stephen Warren85762e72013-03-29 15:40:10 -0600855 w->name + prefix_len,
856 w->kcontrol_news[kci].name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200857 if (long_name == NULL)
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200858 return -ENOMEM;
Stephen Warren85762e72013-03-29 15:40:10 -0600859
860 name = long_name;
861 } else if (wname_in_long_name) {
862 long_name = NULL;
863 name = w->name + prefix_len;
864 } else {
865 long_name = NULL;
866 name = w->kcontrol_news[kci].name;
867 }
868
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200869 kcontrol = snd_soc_cnew(&w->kcontrol_news[kci], NULL, name,
Stephen Warren85762e72013-03-29 15:40:10 -0600870 prefix);
Daniel Macke5092c92014-10-07 13:41:24 +0200871 if (!kcontrol) {
872 ret = -ENOMEM;
873 goto exit_free;
874 }
875
Lars-Peter Clausen9356e9d2013-08-01 14:08:06 +0200876 kcontrol->private_free = dapm_kcontrol_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200877
Lars-Peter Clausen41d80022016-02-03 21:59:50 +0100878 ret = dapm_kcontrol_data_alloc(w, kcontrol, name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200879 if (ret) {
880 snd_ctl_free_one(kcontrol);
Daniel Macke5092c92014-10-07 13:41:24 +0200881 goto exit_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200882 }
883
Stephen Warren85762e72013-03-29 15:40:10 -0600884 ret = snd_ctl_add(card, kcontrol);
885 if (ret < 0) {
886 dev_err(dapm->dev,
887 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
888 w->name, name, ret);
Daniel Macke5092c92014-10-07 13:41:24 +0200889 goto exit_free;
Stephen Warren85762e72013-03-29 15:40:10 -0600890 }
Stephen Warren85762e72013-03-29 15:40:10 -0600891 }
892
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200893 ret = dapm_kcontrol_add_widget(kcontrol, w);
Daniel Macke5092c92014-10-07 13:41:24 +0200894 if (ret == 0)
895 w->kcontrols[kci] = kcontrol;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200896
Daniel Macke5092c92014-10-07 13:41:24 +0200897exit_free:
898 kfree(long_name);
Stephen Warren85762e72013-03-29 15:40:10 -0600899
Daniel Macke5092c92014-10-07 13:41:24 +0200900 return ret;
Stephen Warren85762e72013-03-29 15:40:10 -0600901}
902
903/* create new dapm mixer control */
904static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
905{
906 int i, ret;
907 struct snd_soc_dapm_path *path;
Charles Keepax561ed682015-05-01 12:37:26 +0100908 struct dapm_kcontrol_data *data;
Stephen Warren85762e72013-03-29 15:40:10 -0600909
Richard Purdie2b97eab2006-10-06 18:32:18 +0200910 /* add kcontrol */
911 for (i = 0; i < w->num_kcontrols; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200912 /* match name */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +0200913 snd_soc_dapm_widget_for_each_source_path(w, path) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200914 /* mixer/mux paths name must match control name */
Stephen Warren82cfecd2011-04-28 17:37:58 -0600915 if (path->name != (char *)w->kcontrol_news[i].name)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200916 continue;
917
Charles Keepax561ed682015-05-01 12:37:26 +0100918 if (!w->kcontrols[i]) {
Jeeja KP19a2557b2015-10-20 22:30:06 +0530919 ret = dapm_create_or_share_kcontrol(w, i);
Charles Keepax561ed682015-05-01 12:37:26 +0100920 if (ret < 0)
921 return ret;
Lars-Peter Clausen82cd8762011-08-15 20:15:21 +0200922 }
923
Mark Brown946d92a2013-08-12 23:28:42 +0100924 dapm_kcontrol_add_path(w->kcontrols[i], path);
Charles Keepax561ed682015-05-01 12:37:26 +0100925
926 data = snd_kcontrol_chip(w->kcontrols[i]);
927 if (data->widget)
928 snd_soc_dapm_add_path(data->widget->dapm,
929 data->widget,
930 path->source,
931 NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200932 }
933 }
Stephen Warren85762e72013-03-29 15:40:10 -0600934
935 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200936}
937
938/* create new dapm mux control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200939static int dapm_new_mux(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200940{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200941 struct snd_soc_dapm_context *dapm = w->dapm;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200942 enum snd_soc_dapm_direction dir;
Stephen Warren85762e72013-03-29 15:40:10 -0600943 struct snd_soc_dapm_path *path;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200944 const char *type;
Stephen Warrenaf468002011-04-28 17:38:01 -0600945 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200946
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200947 switch (w->id) {
948 case snd_soc_dapm_mux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200949 dir = SND_SOC_DAPM_DIR_OUT;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200950 type = "mux";
951 break;
952 case snd_soc_dapm_demux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200953 dir = SND_SOC_DAPM_DIR_IN;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200954 type = "demux";
955 break;
956 default:
957 return -EINVAL;
958 }
959
Stephen Warrenaf468002011-04-28 17:38:01 -0600960 if (w->num_kcontrols != 1) {
961 dev_err(dapm->dev,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200962 "ASoC: %s %s has incorrect number of controls\n", type,
Stephen Warrenaf468002011-04-28 17:38:01 -0600963 w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200964 return -EINVAL;
965 }
966
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200967 if (list_empty(&w->edges[dir])) {
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200968 dev_err(dapm->dev, "ASoC: %s %s has no paths\n", type, w->name);
Stephen Warren85762e72013-03-29 15:40:10 -0600969 return -EINVAL;
Stephen Warrenaf468002011-04-28 17:38:01 -0600970 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200971
Jeeja KP19a2557b2015-10-20 22:30:06 +0530972 ret = dapm_create_or_share_kcontrol(w, 0);
Stephen Warren85762e72013-03-29 15:40:10 -0600973 if (ret < 0)
974 return ret;
Stephen Warrenfad59882011-04-28 17:37:59 -0600975
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200976 snd_soc_dapm_widget_for_each_path(w, dir, path) {
977 if (path->name)
978 dapm_kcontrol_add_path(w->kcontrols[0], path);
Lars-Peter Clausen98407ef2014-10-25 17:41:57 +0200979 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200980
Stephen Warrenaf468002011-04-28 17:38:01 -0600981 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200982}
983
984/* create new dapm volume control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200985static int dapm_new_pga(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200986{
Jeeja KP19a2557b2015-10-20 22:30:06 +0530987 int i, ret;
988
989 for (i = 0; i < w->num_kcontrols; i++) {
990 ret = dapm_create_or_share_kcontrol(w, i);
991 if (ret < 0)
992 return ret;
993 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200994
Mark Browna6c65732010-03-03 17:45:21 +0000995 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200996}
997
Nikesh Oswalc6615082015-02-02 17:06:44 +0000998/* create new dapm dai link control */
999static int dapm_new_dai_link(struct snd_soc_dapm_widget *w)
1000{
1001 int i, ret;
1002 struct snd_kcontrol *kcontrol;
1003 struct snd_soc_dapm_context *dapm = w->dapm;
1004 struct snd_card *card = dapm->card->snd_card;
1005
1006 /* create control for links with > 1 config */
1007 if (w->num_params <= 1)
1008 return 0;
1009
1010 /* add kcontrol */
1011 for (i = 0; i < w->num_kcontrols; i++) {
1012 kcontrol = snd_soc_cnew(&w->kcontrol_news[i], w,
1013 w->name, NULL);
1014 ret = snd_ctl_add(card, kcontrol);
1015 if (ret < 0) {
1016 dev_err(dapm->dev,
1017 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
1018 w->name, w->kcontrol_news[i].name, ret);
1019 return ret;
1020 }
1021 kcontrol->private_data = w;
1022 w->kcontrols[i] = kcontrol;
1023 }
1024
1025 return 0;
1026}
1027
Mark Brown99497882010-05-07 20:24:05 +01001028/* We implement power down on suspend by checking the power state of
1029 * the ALSA card - when we are suspending the ALSA state for the card
1030 * is set to D3.
1031 */
1032static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
1033{
Mark Brown12ea2c72011-03-02 18:17:32 +00001034 int level = snd_power_get_state(widget->dapm->card->snd_card);
Mark Brown99497882010-05-07 20:24:05 +01001035
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001036 switch (level) {
Mark Brown99497882010-05-07 20:24:05 +01001037 case SNDRV_CTL_POWER_D3hot:
1038 case SNDRV_CTL_POWER_D3cold:
Mark Brown1547aba2010-05-07 21:11:40 +01001039 if (widget->ignore_suspend)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001040 dev_dbg(widget->dapm->dev, "ASoC: %s ignoring suspend\n",
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001041 widget->name);
Mark Brown1547aba2010-05-07 21:11:40 +01001042 return widget->ignore_suspend;
Mark Brown99497882010-05-07 20:24:05 +01001043 default:
1044 return 1;
1045 }
1046}
1047
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001048static int dapm_widget_list_create(struct snd_soc_dapm_widget_list **list,
1049 struct list_head *widgets)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001050{
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001051 struct snd_soc_dapm_widget *w;
1052 struct list_head *it;
1053 unsigned int size = 0;
1054 unsigned int i = 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001055
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001056 list_for_each(it, widgets)
1057 size++;
1058
1059 *list = kzalloc(sizeof(**list) + size * sizeof(*w), GFP_KERNEL);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001060 if (*list == NULL)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001061 return -ENOMEM;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001062
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001063 list_for_each_entry(w, widgets, work_list)
1064 (*list)->widgets[i++] = w;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001065
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001066 (*list)->num_widgets = i;
1067
1068 return 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001069}
1070
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001071/*
1072 * Common implementation for is_connected_output_ep() and
1073 * is_connected_input_ep(). The function is inlined since the combined size of
1074 * the two specialized functions is only marginally larger then the size of the
1075 * generic function and at the same time the fast path of the specialized
1076 * functions is significantly smaller than the generic function.
1077 */
1078static __always_inline int is_connected_ep(struct snd_soc_dapm_widget *widget,
1079 struct list_head *list, enum snd_soc_dapm_direction dir,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001080 int (*fn)(struct snd_soc_dapm_widget *, struct list_head *,
1081 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1082 enum snd_soc_dapm_direction)),
1083 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1084 enum snd_soc_dapm_direction))
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001085{
1086 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001087 struct snd_soc_dapm_path *path;
1088 int con = 0;
1089
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001090 if (widget->endpoints[dir] >= 0)
1091 return widget->endpoints[dir];
Mark Brown024dc072011-10-09 11:52:05 +01001092
Mark Brownde02d072011-09-20 21:43:24 +01001093 DAPM_UPDATE_STAT(widget, path_checks);
1094
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001095 /* do we need to add this widget to the list ? */
1096 if (list)
1097 list_add_tail(&widget->work_list, list);
1098
Jeeja KP09464972016-06-15 11:16:55 +05301099 if (custom_stop_condition && custom_stop_condition(widget, dir)) {
1100 widget->endpoints[dir] = 1;
1101 return widget->endpoints[dir];
1102 }
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001103
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001104 if ((widget->is_ep & SND_SOC_DAPM_DIR_TO_EP(dir)) && widget->connected) {
1105 widget->endpoints[dir] = snd_soc_dapm_suspend_check(widget);
1106 return widget->endpoints[dir];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001107 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001108
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001109 snd_soc_dapm_widget_for_each_path(widget, rdir, path) {
Mark Browne56235e2011-09-21 18:19:14 +01001110 DAPM_UPDATE_STAT(widget, neighbour_checks);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001111
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001112 if (path->weak || path->is_supply)
Mark Brownbf3a9e12011-06-13 16:42:29 +01001113 continue;
1114
Mark Brown8af294b2013-02-22 17:48:15 +00001115 if (path->walking)
1116 return 1;
1117
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001118 trace_snd_soc_dapm_path(widget, dir, path);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001119
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001120 if (path->connect) {
Mark Brown8af294b2013-02-22 17:48:15 +00001121 path->walking = 1;
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001122 con += fn(path->node[dir], list, custom_stop_condition);
Mark Brown8af294b2013-02-22 17:48:15 +00001123 path->walking = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001124 }
1125 }
1126
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001127 widget->endpoints[dir] = con;
Mark Brown024dc072011-10-09 11:52:05 +01001128
Richard Purdie2b97eab2006-10-06 18:32:18 +02001129 return con;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001130}
1131
1132/*
1133 * Recursively check for a completed path to an active or physically connected
1134 * output widget. Returns number of complete paths.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001135 *
1136 * Optionally, can be supplied with a function acting as a stopping condition.
1137 * This function takes the dapm widget currently being examined and the walk
1138 * direction as an arguments, it should return true if the walk should be
1139 * stopped and false otherwise.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001140 */
1141static int is_connected_output_ep(struct snd_soc_dapm_widget *widget,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001142 struct list_head *list,
1143 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1144 enum snd_soc_dapm_direction))
Richard Purdie2b97eab2006-10-06 18:32:18 +02001145{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001146 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_OUT,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001147 is_connected_output_ep, custom_stop_condition);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001148}
1149
1150/*
1151 * Recursively check for a completed path to an active or physically connected
1152 * input widget. Returns number of complete paths.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001153 *
1154 * Optionally, can be supplied with a function acting as a stopping condition.
1155 * This function takes the dapm widget currently being examined and the walk
1156 * direction as an arguments, it should return true if the walk should be
1157 * stopped and false otherwise.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001158 */
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001159static int is_connected_input_ep(struct snd_soc_dapm_widget *widget,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001160 struct list_head *list,
1161 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i,
1162 enum snd_soc_dapm_direction))
Richard Purdie2b97eab2006-10-06 18:32:18 +02001163{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001164 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_IN,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001165 is_connected_input_ep, custom_stop_condition);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001166}
1167
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001168/**
1169 * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1170 * @dai: the soc DAI.
1171 * @stream: stream direction.
1172 * @list: list of active widgets for this stream.
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001173 * @custom_stop_condition: (optional) a function meant to stop the widget graph
1174 * walk based on custom logic.
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001175 *
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001176 * Queries DAPM graph as to whether a valid audio stream path exists for
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001177 * the initial stream specified by name. This takes into account
1178 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1179 *
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001180 * Optionally, can be supplied with a function acting as a stopping condition.
1181 * This function takes the dapm widget currently being examined and the walk
1182 * direction as an arguments, it should return true if the walk should be
1183 * stopped and false otherwise.
1184 *
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001185 * Returns the number of valid paths or negative error.
1186 */
1187int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001188 struct snd_soc_dapm_widget_list **list,
1189 bool (*custom_stop_condition)(struct snd_soc_dapm_widget *,
1190 enum snd_soc_dapm_direction))
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001191{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001192 struct snd_soc_card *card = dai->component->card;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001193 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001194 LIST_HEAD(widgets);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001195 int paths;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001196 int ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001197
1198 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001199
1200 /*
1201 * For is_connected_{output,input}_ep fully discover the graph we need
1202 * to reset the cached number of inputs and outputs.
1203 */
1204 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001205 w->endpoints[SND_SOC_DAPM_DIR_IN] = -1;
1206 w->endpoints[SND_SOC_DAPM_DIR_OUT] = -1;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001207 }
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001208
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001209 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001210 paths = is_connected_output_ep(dai->playback_widget, &widgets,
1211 custom_stop_condition);
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001212 else
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001213 paths = is_connected_input_ep(dai->capture_widget, &widgets,
1214 custom_stop_condition);
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001215
1216 /* Drop starting point */
1217 list_del(widgets.next);
1218
1219 ret = dapm_widget_list_create(list, &widgets);
1220 if (ret)
Lars-Peter Clausen30abbe72015-08-11 21:37:59 +02001221 paths = ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001222
1223 trace_snd_soc_dapm_connected(paths, stream);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001224 mutex_unlock(&card->dapm_mutex);
1225
1226 return paths;
1227}
1228
Richard Purdie2b97eab2006-10-06 18:32:18 +02001229/*
Mark Brown62ea8742012-01-21 21:14:48 +00001230 * Handler for regulator supply widget.
1231 */
1232int dapm_regulator_event(struct snd_soc_dapm_widget *w,
1233 struct snd_kcontrol *kcontrol, int event)
1234{
Mark Brownc05b84d2012-09-07 12:57:11 +08001235 int ret;
1236
Mark Browneb270e92013-10-09 13:52:52 +01001237 soc_dapm_async_complete(w->dapm);
1238
Mark Brownc05b84d2012-09-07 12:57:11 +08001239 if (SND_SOC_DAPM_EVENT_ON(event)) {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001240 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001241 ret = regulator_allow_bypass(w->regulator, false);
Mark Brownc05b84d2012-09-07 12:57:11 +08001242 if (ret != 0)
1243 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001244 "ASoC: Failed to unbypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001245 w->name, ret);
1246 }
1247
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001248 return regulator_enable(w->regulator);
Mark Brownc05b84d2012-09-07 12:57:11 +08001249 } else {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001250 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001251 ret = regulator_allow_bypass(w->regulator, true);
Mark Brownc05b84d2012-09-07 12:57:11 +08001252 if (ret != 0)
1253 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001254 "ASoC: Failed to bypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001255 w->name, ret);
1256 }
1257
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001258 return regulator_disable_deferred(w->regulator, w->shift);
Mark Brownc05b84d2012-09-07 12:57:11 +08001259 }
Mark Brown62ea8742012-01-21 21:14:48 +00001260}
1261EXPORT_SYMBOL_GPL(dapm_regulator_event);
1262
Ola Liljad7e7eb92012-05-24 15:26:25 +02001263/*
1264 * Handler for clock supply widget.
1265 */
1266int dapm_clock_event(struct snd_soc_dapm_widget *w,
1267 struct snd_kcontrol *kcontrol, int event)
1268{
1269 if (!w->clk)
1270 return -EIO;
1271
Mark Browneb270e92013-10-09 13:52:52 +01001272 soc_dapm_async_complete(w->dapm);
1273
Mark Brownec029952012-06-04 08:16:20 +01001274#ifdef CONFIG_HAVE_CLK
Ola Liljad7e7eb92012-05-24 15:26:25 +02001275 if (SND_SOC_DAPM_EVENT_ON(event)) {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001276 return clk_prepare_enable(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001277 } else {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001278 clk_disable_unprepare(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001279 return 0;
1280 }
Mark Brownec029952012-06-04 08:16:20 +01001281#endif
Marek Belisko98b3cf12012-07-12 23:00:16 +02001282 return 0;
Ola Liljad7e7eb92012-05-24 15:26:25 +02001283}
1284EXPORT_SYMBOL_GPL(dapm_clock_event);
1285
Mark Brownd8050022011-09-28 18:28:23 +01001286static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
1287{
Mark Brown9b8a83b2011-10-04 22:15:59 +01001288 if (w->power_checked)
1289 return w->new_power;
1290
Mark Brownd8050022011-09-28 18:28:23 +01001291 if (w->force)
Mark Brown9b8a83b2011-10-04 22:15:59 +01001292 w->new_power = 1;
Mark Brownd8050022011-09-28 18:28:23 +01001293 else
Mark Brown9b8a83b2011-10-04 22:15:59 +01001294 w->new_power = w->power_check(w);
1295
1296 w->power_checked = true;
1297
1298 return w->new_power;
Mark Brownd8050022011-09-28 18:28:23 +01001299}
1300
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001301/* Generic check to see if a widget should be powered. */
Mark Browncd0f2d42009-04-20 16:56:59 +01001302static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
1303{
1304 int in, out;
1305
Mark Brownde02d072011-09-20 21:43:24 +01001306 DAPM_UPDATE_STAT(w, power_checks);
1307
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001308 in = is_connected_input_ep(w, NULL, NULL);
1309 out = is_connected_output_ep(w, NULL, NULL);
Mark Browncd0f2d42009-04-20 16:56:59 +01001310 return out != 0 && in != 0;
1311}
1312
Mark Brown246d0a12009-04-22 18:24:55 +01001313/* Check to see if a power supply is needed */
1314static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
1315{
1316 struct snd_soc_dapm_path *path;
Mark Brown246d0a12009-04-22 18:24:55 +01001317
Mark Brownde02d072011-09-20 21:43:24 +01001318 DAPM_UPDATE_STAT(w, power_checks);
1319
Mark Brown246d0a12009-04-22 18:24:55 +01001320 /* Check if one of our outputs is connected */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001321 snd_soc_dapm_widget_for_each_sink_path(w, path) {
Mark Browna8fdac82011-09-28 18:20:26 +01001322 DAPM_UPDATE_STAT(w, neighbour_checks);
1323
Mark Brownbf3a9e12011-06-13 16:42:29 +01001324 if (path->weak)
1325 continue;
1326
Mark Brown215edda2009-09-08 18:59:05 +01001327 if (path->connected &&
1328 !path->connected(path->source, path->sink))
1329 continue;
1330
Mark Brownf68d7e12011-10-04 22:57:50 +01001331 if (dapm_widget_power_check(path->sink))
1332 return 1;
Mark Brown246d0a12009-04-22 18:24:55 +01001333 }
1334
Mark Brownf68d7e12011-10-04 22:57:50 +01001335 return 0;
Mark Brown246d0a12009-04-22 18:24:55 +01001336}
1337
Mark Brown35c64bc2011-09-28 18:23:53 +01001338static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
1339{
Charles Keepax20bb0182015-12-02 10:22:16 +00001340 return w->connected;
Mark Brown35c64bc2011-09-28 18:23:53 +01001341}
1342
Mark Brown38357ab2009-06-06 19:03:23 +01001343static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1344 struct snd_soc_dapm_widget *b,
Mark Brown828a8422011-01-15 13:14:30 +00001345 bool power_up)
Mark Brown42aa3412009-03-01 19:21:10 +00001346{
Mark Brown828a8422011-01-15 13:14:30 +00001347 int *sort;
1348
1349 if (power_up)
1350 sort = dapm_up_seq;
1351 else
1352 sort = dapm_down_seq;
1353
Mark Brown38357ab2009-06-06 19:03:23 +01001354 if (sort[a->id] != sort[b->id])
1355 return sort[a->id] - sort[b->id];
Mark Brown20e48592011-01-15 13:40:50 +00001356 if (a->subseq != b->subseq) {
1357 if (power_up)
1358 return a->subseq - b->subseq;
1359 else
1360 return b->subseq - a->subseq;
1361 }
Mark Brownb22ead22009-06-07 12:51:26 +01001362 if (a->reg != b->reg)
1363 return a->reg - b->reg;
Mark Brown84dab562010-11-12 15:28:42 +00001364 if (a->dapm != b->dapm)
1365 return (unsigned long)a->dapm - (unsigned long)b->dapm;
Mark Brown42aa3412009-03-01 19:21:10 +00001366
Mark Brown38357ab2009-06-06 19:03:23 +01001367 return 0;
1368}
Mark Brown42aa3412009-03-01 19:21:10 +00001369
Mark Brown38357ab2009-06-06 19:03:23 +01001370/* Insert a widget in order into a DAPM power sequence. */
1371static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1372 struct list_head *list,
Mark Brown828a8422011-01-15 13:14:30 +00001373 bool power_up)
Mark Brown38357ab2009-06-06 19:03:23 +01001374{
1375 struct snd_soc_dapm_widget *w;
1376
1377 list_for_each_entry(w, list, power_list)
Mark Brown828a8422011-01-15 13:14:30 +00001378 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
Mark Brown38357ab2009-06-06 19:03:23 +01001379 list_add_tail(&new_widget->power_list, &w->power_list);
1380 return;
Mark Brown42aa3412009-03-01 19:21:10 +00001381 }
Mark Brown6ea31b92009-04-20 17:15:41 +01001382
Mark Brown38357ab2009-06-06 19:03:23 +01001383 list_add_tail(&new_widget->power_list, list);
1384}
Mark Brown42aa3412009-03-01 19:21:10 +00001385
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001386static void dapm_seq_check_event(struct snd_soc_card *card,
Mark Brown68f89ad2010-11-03 23:51:49 -04001387 struct snd_soc_dapm_widget *w, int event)
1388{
Mark Brown68f89ad2010-11-03 23:51:49 -04001389 const char *ev_name;
1390 int power, ret;
1391
1392 switch (event) {
1393 case SND_SOC_DAPM_PRE_PMU:
1394 ev_name = "PRE_PMU";
1395 power = 1;
1396 break;
1397 case SND_SOC_DAPM_POST_PMU:
1398 ev_name = "POST_PMU";
1399 power = 1;
1400 break;
1401 case SND_SOC_DAPM_PRE_PMD:
1402 ev_name = "PRE_PMD";
1403 power = 0;
1404 break;
1405 case SND_SOC_DAPM_POST_PMD:
1406 ev_name = "POST_PMD";
1407 power = 0;
1408 break;
Mark Brown80114122013-02-25 15:14:19 +00001409 case SND_SOC_DAPM_WILL_PMU:
1410 ev_name = "WILL_PMU";
1411 power = 1;
1412 break;
1413 case SND_SOC_DAPM_WILL_PMD:
1414 ev_name = "WILL_PMD";
1415 power = 0;
1416 break;
Mark Brown68f89ad2010-11-03 23:51:49 -04001417 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01001418 WARN(1, "Unknown event %d\n", event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001419 return;
1420 }
1421
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001422 if (w->new_power != power)
Mark Brown68f89ad2010-11-03 23:51:49 -04001423 return;
1424
1425 if (w->event && (w->event_flags & event)) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001426 pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001427 w->name, ev_name);
Mark Browneb270e92013-10-09 13:52:52 +01001428 soc_dapm_async_complete(w->dapm);
Mark Brown84e90932010-11-04 00:07:02 -04001429 trace_snd_soc_dapm_widget_event_start(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001430 ret = w->event(w, NULL, event);
Mark Brown84e90932010-11-04 00:07:02 -04001431 trace_snd_soc_dapm_widget_event_done(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001432 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001433 dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001434 ev_name, w->name, ret);
1435 }
1436}
1437
Mark Brownb22ead22009-06-07 12:51:26 +01001438/* Apply the coalesced changes from a DAPM sequence */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001439static void dapm_seq_run_coalesced(struct snd_soc_card *card,
Mark Brownb22ead22009-06-07 12:51:26 +01001440 struct list_head *pending)
Mark Brown163cac02009-06-07 10:12:52 +01001441{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001442 struct snd_soc_dapm_context *dapm;
Mark Brown68f89ad2010-11-03 23:51:49 -04001443 struct snd_soc_dapm_widget *w;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001444 int reg;
Mark Brownb22ead22009-06-07 12:51:26 +01001445 unsigned int value = 0;
1446 unsigned int mask = 0;
Mark Brownb22ead22009-06-07 12:51:26 +01001447
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001448 w = list_first_entry(pending, struct snd_soc_dapm_widget, power_list);
1449 reg = w->reg;
1450 dapm = w->dapm;
Mark Brownb22ead22009-06-07 12:51:26 +01001451
1452 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001453 WARN_ON(reg != w->reg || dapm != w->dapm);
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001454 w->power = w->new_power;
Mark Brownb22ead22009-06-07 12:51:26 +01001455
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001456 mask |= w->mask << w->shift;
1457 if (w->power)
1458 value |= w->on_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001459 else
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001460 value |= w->off_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001461
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001462 pop_dbg(dapm->dev, card->pop_time,
Mark Brownb22ead22009-06-07 12:51:26 +01001463 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1464 w->name, reg, value, mask);
Mark Brown81628102009-06-07 13:21:24 +01001465
Mark Brown68f89ad2010-11-03 23:51:49 -04001466 /* Check for events */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001467 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU);
1468 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001469 }
1470
Mark Brown81628102009-06-07 13:21:24 +01001471 if (reg >= 0) {
Mark Brown29376bc2011-06-19 13:49:28 +01001472 /* Any widget will do, they should all be updating the
1473 * same register.
1474 */
Mark Brown29376bc2011-06-19 13:49:28 +01001475
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001476 pop_dbg(dapm->dev, card->pop_time,
Mark Brown81628102009-06-07 13:21:24 +01001477 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001478 value, mask, reg, card->pop_time);
1479 pop_wait(card->pop_time);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001480 soc_dapm_update_bits(dapm, reg, mask, value);
Mark Brown81628102009-06-07 13:21:24 +01001481 }
1482
1483 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001484 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU);
1485 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD);
Mark Brown42aa3412009-03-01 19:21:10 +00001486 }
Mark Brown42aa3412009-03-01 19:21:10 +00001487}
1488
Mark Brownb22ead22009-06-07 12:51:26 +01001489/* Apply a DAPM power sequence.
1490 *
1491 * We walk over a pre-sorted list of widgets to apply power to. In
1492 * order to minimise the number of writes to the device required
1493 * multiple widgets will be updated in a single write where possible.
1494 * Currently anything that requires more than a single write is not
1495 * handled.
1496 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001497static void dapm_seq_run(struct snd_soc_card *card,
1498 struct list_head *list, int event, bool power_up)
Mark Brownb22ead22009-06-07 12:51:26 +01001499{
1500 struct snd_soc_dapm_widget *w, *n;
Mark Browneb270e92013-10-09 13:52:52 +01001501 struct snd_soc_dapm_context *d;
Mark Brownb22ead22009-06-07 12:51:26 +01001502 LIST_HEAD(pending);
1503 int cur_sort = -1;
Mark Brown20e48592011-01-15 13:40:50 +00001504 int cur_subseq = -1;
Mark Brownb22ead22009-06-07 12:51:26 +01001505 int cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001506 struct snd_soc_dapm_context *cur_dapm = NULL;
Mark Brown474b62d2011-01-18 16:14:44 +00001507 int ret, i;
Mark Brown828a8422011-01-15 13:14:30 +00001508 int *sort;
1509
1510 if (power_up)
1511 sort = dapm_up_seq;
1512 else
1513 sort = dapm_down_seq;
Mark Brown163cac02009-06-07 10:12:52 +01001514
Mark Brownb22ead22009-06-07 12:51:26 +01001515 list_for_each_entry_safe(w, n, list, power_list) {
1516 ret = 0;
1517
1518 /* Do we need to apply any queued changes? */
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001519 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
Mark Brown20e48592011-01-15 13:40:50 +00001520 w->dapm != cur_dapm || w->subseq != cur_subseq) {
Banajit Goswami853ed7c2015-04-10 16:50:43 -07001521 if (cur_dapm && !list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001522 dapm_seq_run_coalesced(card, &pending);
Mark Brownb22ead22009-06-07 12:51:26 +01001523
Mark Brown474b62d2011-01-18 16:14:44 +00001524 if (cur_dapm && cur_dapm->seq_notifier) {
1525 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1526 if (sort[i] == cur_sort)
1527 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001528 i,
1529 cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001530 }
1531
Mark Browneb270e92013-10-09 13:52:52 +01001532 if (cur_dapm && w->dapm != cur_dapm)
1533 soc_dapm_async_complete(cur_dapm);
1534
Mark Brownb22ead22009-06-07 12:51:26 +01001535 INIT_LIST_HEAD(&pending);
1536 cur_sort = -1;
Mark Brownb0b3e6f2011-07-16 10:55:08 +09001537 cur_subseq = INT_MIN;
Mark Brownb22ead22009-06-07 12:51:26 +01001538 cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001539 cur_dapm = NULL;
Mark Brownb22ead22009-06-07 12:51:26 +01001540 }
1541
Mark Brown163cac02009-06-07 10:12:52 +01001542 switch (w->id) {
1543 case snd_soc_dapm_pre:
1544 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001545 list_for_each_entry_safe_continue(w, n, list,
1546 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001547
Mark Brownb22ead22009-06-07 12:51:26 +01001548 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001549 ret = w->event(w,
1550 NULL, SND_SOC_DAPM_PRE_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001551 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001552 ret = w->event(w,
1553 NULL, SND_SOC_DAPM_PRE_PMD);
Mark Brown163cac02009-06-07 10:12:52 +01001554 break;
1555
1556 case snd_soc_dapm_post:
1557 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001558 list_for_each_entry_safe_continue(w, n, list,
1559 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001560
Mark Brownb22ead22009-06-07 12:51:26 +01001561 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001562 ret = w->event(w,
1563 NULL, SND_SOC_DAPM_POST_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001564 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001565 ret = w->event(w,
1566 NULL, SND_SOC_DAPM_POST_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001567 break;
1568
Mark Brown163cac02009-06-07 10:12:52 +01001569 default:
Mark Brown81628102009-06-07 13:21:24 +01001570 /* Queue it up for application */
1571 cur_sort = sort[w->id];
Mark Brown20e48592011-01-15 13:40:50 +00001572 cur_subseq = w->subseq;
Mark Brown81628102009-06-07 13:21:24 +01001573 cur_reg = w->reg;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001574 cur_dapm = w->dapm;
Mark Brown81628102009-06-07 13:21:24 +01001575 list_move(&w->power_list, &pending);
1576 break;
Mark Brown163cac02009-06-07 10:12:52 +01001577 }
Mark Brownb22ead22009-06-07 12:51:26 +01001578
Banajit Goswamib2fac522013-10-10 18:17:43 -07001579 /*
1580 * Add this debug log to keep track of widgets being
1581 * powered-up and powered-down.
1582 */
1583 dev_dbg(w->dapm->dev, "dapm: powering %s widget %s\n",
1584 power_up ? "up" : "down", w->name);
1585
Mark Brownb22ead22009-06-07 12:51:26 +01001586 if (ret < 0)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001587 dev_err(w->dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001588 "ASoC: Failed to apply widget power: %d\n", ret);
Mark Brown163cac02009-06-07 10:12:52 +01001589 }
Mark Brownb22ead22009-06-07 12:51:26 +01001590
Banajit Goswami853ed7c2015-04-10 16:50:43 -07001591 if (cur_dapm && !list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001592 dapm_seq_run_coalesced(card, &pending);
Mark Brown474b62d2011-01-18 16:14:44 +00001593
1594 if (cur_dapm && cur_dapm->seq_notifier) {
1595 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1596 if (sort[i] == cur_sort)
1597 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001598 i, cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001599 }
Mark Browneb270e92013-10-09 13:52:52 +01001600
1601 list_for_each_entry(d, &card->dapm_list, list) {
1602 soc_dapm_async_complete(d);
1603 }
Mark Brown163cac02009-06-07 10:12:52 +01001604}
1605
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001606static void dapm_widget_update(struct snd_soc_card *card)
Mark Brown97404f22010-12-14 16:13:57 +00001607{
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001608 struct snd_soc_dapm_update *update = card->update;
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001609 struct snd_soc_dapm_widget_list *wlist;
1610 struct snd_soc_dapm_widget *w = NULL;
1611 unsigned int wi;
Mark Brown97404f22010-12-14 16:13:57 +00001612 int ret;
1613
Lars-Peter Clausen57295072013-08-05 11:27:31 +02001614 if (!update || !dapm_kcontrol_is_powered(update->kcontrol))
Mark Brown97404f22010-12-14 16:13:57 +00001615 return;
1616
Lars-Peter Clausene84357f2013-07-29 17:13:58 +02001617 wlist = dapm_kcontrol_get_wlist(update->kcontrol);
Mark Brown97404f22010-12-14 16:13:57 +00001618
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001619 for (wi = 0; wi < wlist->num_widgets; wi++) {
1620 w = wlist->widgets[wi];
1621
1622 if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1623 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1624 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001625 dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001626 w->name, ret);
1627 }
Mark Brown97404f22010-12-14 16:13:57 +00001628 }
1629
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001630 if (!w)
1631 return;
1632
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001633 ret = soc_dapm_update_bits(w->dapm, update->reg, update->mask,
1634 update->val);
Mark Brown97404f22010-12-14 16:13:57 +00001635 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001636 dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001637 w->name, ret);
Mark Brown97404f22010-12-14 16:13:57 +00001638
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001639 for (wi = 0; wi < wlist->num_widgets; wi++) {
1640 w = wlist->widgets[wi];
1641
1642 if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1643 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1644 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001645 dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001646 w->name, ret);
1647 }
Mark Brown97404f22010-12-14 16:13:57 +00001648 }
1649}
1650
Mark Brown9d0624a2011-02-18 11:49:43 -08001651/* Async callback run prior to DAPM sequences - brings to _PREPARE if
1652 * they're changing state.
1653 */
1654static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1655{
1656 struct snd_soc_dapm_context *d = data;
1657 int ret;
Mark Brown97404f22010-12-14 16:13:57 +00001658
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001659 /* If we're off and we're not supposed to go into STANDBY */
Mark Brown56fba412011-06-04 11:25:10 +01001660 if (d->bias_level == SND_SOC_BIAS_OFF &&
1661 d->target_bias_level != SND_SOC_BIAS_OFF) {
Mark Brownf1aac482011-12-05 15:17:06 +00001662 if (d->dev)
1663 pm_runtime_get_sync(d->dev);
1664
Mark Brown9d0624a2011-02-18 11:49:43 -08001665 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1666 if (ret != 0)
1667 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001668 "ASoC: Failed to turn on bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001669 }
1670
Lars-Peter Clausence85a4d2014-05-06 10:32:15 +02001671 /* Prepare for a transition to ON or away from ON */
1672 if ((d->target_bias_level == SND_SOC_BIAS_ON &&
1673 d->bias_level != SND_SOC_BIAS_ON) ||
1674 (d->target_bias_level != SND_SOC_BIAS_ON &&
1675 d->bias_level == SND_SOC_BIAS_ON)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001676 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1677 if (ret != 0)
1678 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001679 "ASoC: Failed to prepare bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001680 }
1681}
1682
1683/* Async callback run prior to DAPM sequences - brings to their final
1684 * state.
1685 */
1686static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1687{
1688 struct snd_soc_dapm_context *d = data;
1689 int ret;
1690
1691 /* If we just powered the last thing off drop to standby bias */
Mark Brown56fba412011-06-04 11:25:10 +01001692 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1693 (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1694 d->target_bias_level == SND_SOC_BIAS_OFF)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001695 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1696 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001697 dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001698 ret);
1699 }
1700
1701 /* If we're in standby and can support bias off then do that */
Mark Brown56fba412011-06-04 11:25:10 +01001702 if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1703 d->target_bias_level == SND_SOC_BIAS_OFF) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001704 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1705 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001706 dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n",
1707 ret);
Mark Brownf1aac482011-12-05 15:17:06 +00001708
1709 if (d->dev)
Mark Brownfb644e92012-01-25 19:53:58 +00001710 pm_runtime_put(d->dev);
Mark Brown9d0624a2011-02-18 11:49:43 -08001711 }
1712
1713 /* If we just powered up then move to active bias */
Mark Brown56fba412011-06-04 11:25:10 +01001714 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1715 d->target_bias_level == SND_SOC_BIAS_ON) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001716 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1717 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001718 dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001719 ret);
1720 }
1721}
Mark Brown97404f22010-12-14 16:13:57 +00001722
Mark Brownfe4fda52011-10-03 22:36:57 +01001723static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1724 bool power, bool connect)
1725{
1726 /* If a connection is being made or broken then that update
1727 * will have marked the peer dirty, otherwise the widgets are
1728 * not connected and this update has no impact. */
1729 if (!connect)
1730 return;
1731
1732 /* If the peer is already in the state we're moving to then we
1733 * won't have an impact on it. */
1734 if (power != peer->power)
Mark Brown75c1f892011-10-04 22:28:08 +01001735 dapm_mark_dirty(peer, "peer state change");
Mark Brownfe4fda52011-10-03 22:36:57 +01001736}
1737
Mark Brown05623c42011-09-28 17:02:31 +01001738static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1739 struct list_head *up_list,
1740 struct list_head *down_list)
1741{
Mark Browndb432b42011-10-03 21:06:40 +01001742 struct snd_soc_dapm_path *path;
1743
Mark Brown05623c42011-09-28 17:02:31 +01001744 if (w->power == power)
1745 return;
1746
1747 trace_snd_soc_dapm_widget_power(w, power);
1748
Mark Browndb432b42011-10-03 21:06:40 +01001749 /* If we changed our power state perhaps our neigbours changed
Mark Brownfe4fda52011-10-03 22:36:57 +01001750 * also.
Mark Browndb432b42011-10-03 21:06:40 +01001751 */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001752 snd_soc_dapm_widget_for_each_source_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001753 dapm_widget_set_peer_power(path->source, power, path->connect);
1754
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02001755 /* Supplies can't affect their outputs, only their inputs */
1756 if (!w->is_supply) {
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001757 snd_soc_dapm_widget_for_each_sink_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001758 dapm_widget_set_peer_power(path->sink, power,
1759 path->connect);
Mark Browndb432b42011-10-03 21:06:40 +01001760 }
1761
Mark Brown05623c42011-09-28 17:02:31 +01001762 if (power)
1763 dapm_seq_insert(w, up_list, true);
1764 else
1765 dapm_seq_insert(w, down_list, false);
Mark Brown05623c42011-09-28 17:02:31 +01001766}
1767
Mark Brown7c81beb2011-09-20 22:22:32 +01001768static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1769 struct list_head *up_list,
1770 struct list_head *down_list)
1771{
Mark Brown7c81beb2011-09-20 22:22:32 +01001772 int power;
1773
1774 switch (w->id) {
1775 case snd_soc_dapm_pre:
1776 dapm_seq_insert(w, down_list, false);
1777 break;
1778 case snd_soc_dapm_post:
1779 dapm_seq_insert(w, up_list, true);
1780 break;
1781
1782 default:
Mark Brownd8050022011-09-28 18:28:23 +01001783 power = dapm_widget_power_check(w);
Mark Brown7c81beb2011-09-20 22:22:32 +01001784
Mark Brown05623c42011-09-28 17:02:31 +01001785 dapm_widget_set_power(w, power, up_list, down_list);
Mark Brown7c81beb2011-09-20 22:22:32 +01001786 break;
1787 }
1788}
1789
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001790static bool dapm_idle_bias_off(struct snd_soc_dapm_context *dapm)
1791{
1792 if (dapm->idle_bias_off)
1793 return true;
1794
1795 switch (snd_power_get_state(dapm->card->snd_card)) {
1796 case SNDRV_CTL_POWER_D3hot:
1797 case SNDRV_CTL_POWER_D3cold:
1798 return dapm->suspend_bias_off;
1799 default:
1800 break;
1801 }
1802
1803 return false;
1804}
1805
Mark Brown42aa3412009-03-01 19:21:10 +00001806/*
Richard Purdie2b97eab2006-10-06 18:32:18 +02001807 * Scan each dapm widget for complete audio path.
1808 * A complete path is a route that has valid endpoints i.e.:-
1809 *
1810 * o DAC to output pin.
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02001811 * o Input pin to ADC.
Richard Purdie2b97eab2006-10-06 18:32:18 +02001812 * o Input pin to Output pin (bypass, sidetone)
1813 * o DAC to ADC (loopback).
1814 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001815static int dapm_power_widgets(struct snd_soc_card *card, int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001816{
1817 struct snd_soc_dapm_widget *w;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001818 struct snd_soc_dapm_context *d;
Mark Brown291f3bb2009-06-07 13:57:17 +01001819 LIST_HEAD(up_list);
1820 LIST_HEAD(down_list);
Dan Williams2955b472012-07-09 19:33:25 -07001821 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Mark Brown56fba412011-06-04 11:25:10 +01001822 enum snd_soc_bias_level bias;
Banajit Goswami53ae6622015-04-10 18:19:16 -07001823 struct snd_soc_platform *p;
1824 struct snd_soc_codec *c;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001825
Mark Brownf9fa2b12014-03-06 16:49:11 +08001826 lockdep_assert_held(&card->dapm_mutex);
1827
Mark Brown84e90932010-11-04 00:07:02 -04001828 trace_snd_soc_dapm_start(card);
Banajit Goswami853ed7c2015-04-10 16:50:43 -07001829 mutex_lock(&card->dapm_power_mutex);
Mark Brown84e90932010-11-04 00:07:02 -04001830
Mark Brown56fba412011-06-04 11:25:10 +01001831 list_for_each_entry(d, &card->dapm_list, list) {
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001832 if (dapm_idle_bias_off(d))
Mark Brown497098be2012-03-08 15:06:09 +00001833 d->target_bias_level = SND_SOC_BIAS_OFF;
1834 else
1835 d->target_bias_level = SND_SOC_BIAS_STANDBY;
Mark Brown56fba412011-06-04 11:25:10 +01001836 }
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001837
Liam Girdwood6c120e12012-02-15 15:15:34 +00001838 dapm_reset(card);
Mark Brown9b8a83b2011-10-04 22:15:59 +01001839
Mark Brown6d3ddc82009-05-16 17:47:29 +01001840 /* Check which widgets we need to power and store them in
Mark Browndb432b42011-10-03 21:06:40 +01001841 * lists indicating if they should be powered up or down. We
1842 * only check widgets that have been flagged as dirty but note
1843 * that new widgets may be added to the dirty list while we
1844 * iterate.
Mark Brown6d3ddc82009-05-16 17:47:29 +01001845 */
Mark Browndb432b42011-10-03 21:06:40 +01001846 list_for_each_entry(w, &card->dapm_dirty, dirty) {
Mark Brown7c81beb2011-09-20 22:22:32 +01001847 dapm_power_one_widget(w, &up_list, &down_list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001848 }
1849
Mark Brownf9de6d72011-09-28 17:19:47 +01001850 list_for_each_entry(w, &card->widgets, list) {
Mark Brown0ff97eb2012-07-20 17:29:34 +01001851 switch (w->id) {
1852 case snd_soc_dapm_pre:
1853 case snd_soc_dapm_post:
1854 /* These widgets always need to be powered */
1855 break;
1856 default:
1857 list_del_init(&w->dirty);
1858 break;
1859 }
Mark Browndb432b42011-10-03 21:06:40 +01001860
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001861 if (w->new_power) {
Mark Brownf9de6d72011-09-28 17:19:47 +01001862 d = w->dapm;
1863
1864 /* Supplies and micbiases only bring the
1865 * context up to STANDBY as unless something
1866 * else is active and passing audio they
Mark Brownafe62362012-01-25 19:55:22 +00001867 * generally don't require full power. Signal
1868 * generators are virtual pins and have no
1869 * power impact themselves.
Mark Brownf9de6d72011-09-28 17:19:47 +01001870 */
1871 switch (w->id) {
Mark Brownafe62362012-01-25 19:55:22 +00001872 case snd_soc_dapm_siggen:
Lars-Peter Clausenda83fea2013-10-05 19:26:17 +02001873 case snd_soc_dapm_vmid:
Mark Brownafe62362012-01-25 19:55:22 +00001874 break;
Mark Brownf9de6d72011-09-28 17:19:47 +01001875 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001876 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02001877 case snd_soc_dapm_clock_supply:
Mark Brownf9de6d72011-09-28 17:19:47 +01001878 case snd_soc_dapm_micbias:
1879 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1880 d->target_bias_level = SND_SOC_BIAS_STANDBY;
1881 break;
1882 default:
1883 d->target_bias_level = SND_SOC_BIAS_ON;
1884 break;
1885 }
1886 }
1887
1888 }
1889
Mark Brown85a843c2011-09-21 21:29:47 +01001890 /* Force all contexts in the card to the same bias state if
1891 * they're not ground referenced.
1892 */
Mark Brown56fba412011-06-04 11:25:10 +01001893 bias = SND_SOC_BIAS_OFF;
Mark Brown52ba67b2011-04-04 21:05:11 +09001894 list_for_each_entry(d, &card->dapm_list, list)
Mark Brown56fba412011-06-04 11:25:10 +01001895 if (d->target_bias_level > bias)
1896 bias = d->target_bias_level;
Mark Brown52ba67b2011-04-04 21:05:11 +09001897 list_for_each_entry(d, &card->dapm_list, list)
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001898 if (!dapm_idle_bias_off(d))
Mark Brown85a843c2011-09-21 21:29:47 +01001899 d->target_bias_level = bias;
Mark Brown52ba67b2011-04-04 21:05:11 +09001900
Mark Brownde02d072011-09-20 21:43:24 +01001901 trace_snd_soc_dapm_walk_done(card);
Mark Brown52ba67b2011-04-04 21:05:11 +09001902
Xiang Xiao17282ba2014-03-02 00:04:03 +08001903 /* Run card bias changes at first */
1904 dapm_pre_sequence_async(&card->dapm, 0);
1905 /* Run other bias changes in parallel */
1906 list_for_each_entry(d, &card->dapm_list, list) {
Banajit Goswami53ae6622015-04-10 18:19:16 -07001907 p = snd_soc_dapm_to_platform(d);
1908 c = snd_soc_dapm_to_codec(d);
1909 if ((d != &card->dapm) && (c || p))
Xiang Xiao17282ba2014-03-02 00:04:03 +08001910 async_schedule_domain(dapm_pre_sequence_async, d,
1911 &async_domain);
1912 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001913 async_synchronize_full_domain(&async_domain);
Mark Brown452c5ea2009-05-17 21:41:23 +01001914
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001915 list_for_each_entry(w, &down_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001916 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD);
Mark Brown80114122013-02-25 15:14:19 +00001917 }
1918
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001919 list_for_each_entry(w, &up_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001920 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU);
Mark Brown80114122013-02-25 15:14:19 +00001921 }
1922
Mark Brown6d3ddc82009-05-16 17:47:29 +01001923 /* Power down widgets first; try to avoid amplifying pops. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001924 dapm_seq_run(card, &down_list, event, false);
Mark Brown6d3ddc82009-05-16 17:47:29 +01001925
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001926 dapm_widget_update(card);
Mark Brown97404f22010-12-14 16:13:57 +00001927
Mark Brown6d3ddc82009-05-16 17:47:29 +01001928 /* Now power up. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001929 dapm_seq_run(card, &up_list, event, true);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001930
Mark Brown9d0624a2011-02-18 11:49:43 -08001931 /* Run all the bias changes in parallel */
Xiang Xiao17282ba2014-03-02 00:04:03 +08001932 list_for_each_entry(d, &card->dapm_list, list) {
Banajit Goswami53ae6622015-04-10 18:19:16 -07001933 p = snd_soc_dapm_to_platform(d);
1934 c = snd_soc_dapm_to_codec(d);
1935 if ((d != &card->dapm) && (c || p))
Xiang Xiao17282ba2014-03-02 00:04:03 +08001936 async_schedule_domain(dapm_post_sequence_async, d,
1937 &async_domain);
1938 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001939 async_synchronize_full_domain(&async_domain);
Xiang Xiao17282ba2014-03-02 00:04:03 +08001940 /* Run card bias changes at last */
1941 dapm_post_sequence_async(&card->dapm, 0);
Mark Brown452c5ea2009-05-17 21:41:23 +01001942
Liam Girdwood8078d872012-02-15 15:15:35 +00001943 /* do we need to notify any clients that DAPM event is complete */
1944 list_for_each_entry(d, &card->dapm_list, list) {
1945 if (d->stream_event)
1946 d->stream_event(d, event);
1947 }
1948
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001949 pop_dbg(card->dev, card->pop_time,
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02001950 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001951 pop_wait(card->pop_time);
Banajit Goswami853ed7c2015-04-10 16:50:43 -07001952 mutex_unlock(&card->dapm_power_mutex);
Mark Browncb507e72009-07-08 18:54:57 +01001953
Mark Brown84e90932010-11-04 00:07:02 -04001954 trace_snd_soc_dapm_done(card);
1955
Mark Brown42aa3412009-03-01 19:21:10 +00001956 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001957}
1958
Mark Brown79fb9382009-08-21 16:38:13 +01001959#ifdef CONFIG_DEBUG_FS
Mark Brown79fb9382009-08-21 16:38:13 +01001960static ssize_t dapm_widget_power_read_file(struct file *file,
1961 char __user *user_buf,
1962 size_t count, loff_t *ppos)
1963{
1964 struct snd_soc_dapm_widget *w = file->private_data;
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001965 struct snd_soc_card *card = w->dapm->card;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001966 enum snd_soc_dapm_direction dir, rdir;
Mark Brown79fb9382009-08-21 16:38:13 +01001967 char *buf;
1968 int in, out;
1969 ssize_t ret;
1970 struct snd_soc_dapm_path *p = NULL;
1971
1972 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1973 if (!buf)
1974 return -ENOMEM;
1975
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001976 mutex_lock(&card->dapm_mutex);
1977
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001978 /* Supply widgets are not handled by is_connected_{input,output}_ep() */
1979 if (w->is_supply) {
1980 in = 0;
1981 out = 0;
1982 } else {
Piotr Stankiewicz67420642016-05-13 17:03:55 +01001983 in = is_connected_input_ep(w, NULL, NULL);
1984 out = is_connected_output_ep(w, NULL, NULL);
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001985 }
Mark Brown79fb9382009-08-21 16:38:13 +01001986
Mark Brownf13ebad2012-03-03 18:01:01 +00001987 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1988 w->name, w->power ? "On" : "Off",
1989 w->force ? " (forced)" : "", in, out);
Mark Brown79fb9382009-08-21 16:38:13 +01001990
Mark Brownd033c362009-12-04 15:25:56 +00001991 if (w->reg >= 0)
1992 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001993 " - R%d(0x%x) mask 0x%x",
1994 w->reg, w->reg, w->mask << w->shift);
Mark Brownd033c362009-12-04 15:25:56 +00001995
1996 ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1997
Mark Brown3eef08b2009-09-14 16:49:00 +01001998 if (w->sname)
1999 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
2000 w->sname,
2001 w->active ? "active" : "inactive");
Mark Brown79fb9382009-08-21 16:38:13 +01002002
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002003 snd_soc_dapm_for_each_direction(dir) {
2004 rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
2005 snd_soc_dapm_widget_for_each_path(w, dir, p) {
2006 if (p->connected && !p->connected(w, p->node[rdir]))
2007 continue;
Mark Brown215edda2009-09-08 18:59:05 +01002008
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002009 if (!p->connect)
2010 continue;
Mark Brown215edda2009-09-08 18:59:05 +01002011
Mark Brown79fb9382009-08-21 16:38:13 +01002012 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002013 " %s \"%s\" \"%s\"\n",
2014 (rdir == SND_SOC_DAPM_DIR_IN) ? "in" : "out",
Mark Brown79fb9382009-08-21 16:38:13 +01002015 p->name ? p->name : "static",
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002016 p->node[rdir]->name);
2017 }
Mark Brown79fb9382009-08-21 16:38:13 +01002018 }
2019
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002020 mutex_unlock(&card->dapm_mutex);
2021
Mark Brown79fb9382009-08-21 16:38:13 +01002022 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
2023
2024 kfree(buf);
2025 return ret;
2026}
2027
2028static const struct file_operations dapm_widget_power_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002029 .open = simple_open,
Mark Brown79fb9382009-08-21 16:38:13 +01002030 .read = dapm_widget_power_read_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +02002031 .llseek = default_llseek,
Mark Brown79fb9382009-08-21 16:38:13 +01002032};
2033
Mark Brownef49e4f2011-04-04 20:48:13 +09002034static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
2035 size_t count, loff_t *ppos)
2036{
2037 struct snd_soc_dapm_context *dapm = file->private_data;
2038 char *level;
2039
2040 switch (dapm->bias_level) {
2041 case SND_SOC_BIAS_ON:
2042 level = "On\n";
2043 break;
2044 case SND_SOC_BIAS_PREPARE:
2045 level = "Prepare\n";
2046 break;
2047 case SND_SOC_BIAS_STANDBY:
2048 level = "Standby\n";
2049 break;
2050 case SND_SOC_BIAS_OFF:
2051 level = "Off\n";
2052 break;
2053 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01002054 WARN(1, "Unknown bias_level %d\n", dapm->bias_level);
Mark Brownef49e4f2011-04-04 20:48:13 +09002055 level = "Unknown\n";
2056 break;
2057 }
2058
2059 return simple_read_from_buffer(user_buf, count, ppos, level,
2060 strlen(level));
2061}
2062
2063static const struct file_operations dapm_bias_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002064 .open = simple_open,
Mark Brownef49e4f2011-04-04 20:48:13 +09002065 .read = dapm_bias_read_file,
2066 .llseek = default_llseek,
2067};
2068
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002069void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2070 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002071{
Mark Brown79fb9382009-08-21 16:38:13 +01002072 struct dentry *d;
2073
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02002074 if (!parent)
2075 return;
2076
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002077 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
2078
2079 if (!dapm->debugfs_dapm) {
Liam Girdwoodf1e90af2012-03-06 18:13:25 +00002080 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002081 "ASoC: Failed to create DAPM debugfs directory\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002082 return;
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002083 }
Mark Brown79fb9382009-08-21 16:38:13 +01002084
Mark Brownef49e4f2011-04-04 20:48:13 +09002085 d = debugfs_create_file("bias_level", 0444,
2086 dapm->debugfs_dapm, dapm,
2087 &dapm_bias_fops);
2088 if (!d)
2089 dev_warn(dapm->dev,
2090 "ASoC: Failed to create bias level debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002091}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002092
2093static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2094{
2095 struct snd_soc_dapm_context *dapm = w->dapm;
2096 struct dentry *d;
2097
2098 if (!dapm->debugfs_dapm || !w->name)
2099 return;
2100
2101 d = debugfs_create_file(w->name, 0444,
2102 dapm->debugfs_dapm, w,
2103 &dapm_widget_power_fops);
2104 if (!d)
2105 dev_warn(w->dapm->dev,
2106 "ASoC: Failed to create %s debugfs file\n",
2107 w->name);
2108}
2109
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002110static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2111{
2112 debugfs_remove_recursive(dapm->debugfs_dapm);
2113}
2114
Mark Brown79fb9382009-08-21 16:38:13 +01002115#else
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002116void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2117 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002118{
2119}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002120
2121static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2122{
2123}
2124
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002125static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2126{
2127}
2128
Mark Brown79fb9382009-08-21 16:38:13 +01002129#endif
2130
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002131/*
2132 * soc_dapm_connect_path() - Connects or disconnects a path
2133 * @path: The path to update
2134 * @connect: The new connect state of the path. True if the path is connected,
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002135 * false if it is disconnected.
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002136 * @reason: The reason why the path changed (for debugging only)
2137 */
2138static void soc_dapm_connect_path(struct snd_soc_dapm_path *path,
2139 bool connect, const char *reason)
2140{
2141 if (path->connect == connect)
2142 return;
2143
2144 path->connect = connect;
2145 dapm_mark_dirty(path->source, reason);
2146 dapm_mark_dirty(path->sink, reason);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002147 dapm_path_invalidate(path);
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002148}
2149
Richard Purdie2b97eab2006-10-06 18:32:18 +02002150/* test and update the power status of a mux widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002151static int soc_dapm_mux_update_power(struct snd_soc_card *card,
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002152 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002153{
2154 struct snd_soc_dapm_path *path;
2155 int found = 0;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002156 bool connect;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002157
Mark Brownf9fa2b12014-03-06 16:49:11 +08002158 lockdep_assert_held(&card->dapm_mutex);
2159
Richard Purdie2b97eab2006-10-06 18:32:18 +02002160 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002161 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002162 found = 1;
2163 /* we now need to match the string in the enum to the path */
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002164 if (!(strcmp(path->name, e->texts[mux])))
2165 connect = true;
2166 else
2167 connect = false;
2168
2169 soc_dapm_connect_path(path, connect, "mux update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002170 }
2171
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002172 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002173 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002174
Liam Girdwood618dae12012-04-25 12:12:51 +01002175 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002176}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002177
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002178int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002179 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e,
2180 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002181{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002182 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002183 int ret;
2184
Liam Girdwood3cd04342012-03-09 12:02:08 +00002185 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002186 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002187 ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002188 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002189 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002190 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002191 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002192 return ret;
2193}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002194EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002195
Milan plzik1b075e32008-01-10 14:39:46 +01002196/* test and update the power status of a mixer or switch widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002197static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
Mark Brown283375c2009-12-07 18:09:03 +00002198 struct snd_kcontrol *kcontrol, int connect)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002199{
2200 struct snd_soc_dapm_path *path;
2201 int found = 0;
2202
Mark Brownf9fa2b12014-03-06 16:49:11 +08002203 lockdep_assert_held(&card->dapm_mutex);
2204
Richard Purdie2b97eab2006-10-06 18:32:18 +02002205 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002206 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002207 found = 1;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002208 soc_dapm_connect_path(path, connect, "mixer update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002209 }
2210
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002211 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002212 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002213
Liam Girdwood618dae12012-04-25 12:12:51 +01002214 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002215}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002216
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002217int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002218 struct snd_kcontrol *kcontrol, int connect,
2219 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002220{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002221 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002222 int ret;
2223
Liam Girdwood3cd04342012-03-09 12:02:08 +00002224 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002225 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002226 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002227 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002228 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002229 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002230 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002231 return ret;
2232}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002233EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002234
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002235static ssize_t dapm_widget_show_component(struct snd_soc_component *cmpnt,
2236 char *buf)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002237{
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002238 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(cmpnt);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002239 struct snd_soc_dapm_widget *w;
2240 int count = 0;
2241 char *state = "not set";
2242
Mark Brown47325072016-03-18 12:04:23 +00002243 /* card won't be set for the dummy component, as a spot fix
2244 * we're checking for that case specifically here but in future
2245 * we will ensure that the dummy component looks like others.
2246 */
2247 if (!cmpnt->card)
2248 return 0;
2249
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002250 list_for_each_entry(w, &cmpnt->card->widgets, list) {
2251 if (w->dapm != dapm)
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002252 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002253
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002254 /* only display widgets that burn power */
Richard Purdie2b97eab2006-10-06 18:32:18 +02002255 switch (w->id) {
2256 case snd_soc_dapm_hp:
2257 case snd_soc_dapm_mic:
2258 case snd_soc_dapm_spk:
2259 case snd_soc_dapm_line:
2260 case snd_soc_dapm_micbias:
2261 case snd_soc_dapm_dac:
2262 case snd_soc_dapm_adc:
2263 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002264 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002265 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002266 case snd_soc_dapm_mixer_named_ctl:
Mark Brown246d0a12009-04-22 18:24:55 +01002267 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002268 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02002269 case snd_soc_dapm_clock_supply:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002270 if (w->name)
2271 count += sprintf(buf + count, "%s: %s\n",
2272 w->name, w->power ? "On":"Off");
2273 break;
2274 default:
2275 break;
2276 }
2277 }
2278
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002279 switch (snd_soc_dapm_get_bias_level(dapm)) {
Mark Brown0be98982008-05-19 12:31:28 +02002280 case SND_SOC_BIAS_ON:
2281 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002282 break;
Mark Brown0be98982008-05-19 12:31:28 +02002283 case SND_SOC_BIAS_PREPARE:
2284 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002285 break;
Mark Brown0be98982008-05-19 12:31:28 +02002286 case SND_SOC_BIAS_STANDBY:
2287 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002288 break;
Mark Brown0be98982008-05-19 12:31:28 +02002289 case SND_SOC_BIAS_OFF:
2290 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002291 break;
2292 }
2293 count += sprintf(buf + count, "PM State: %s\n", state);
2294
2295 return count;
2296}
2297
Benoit Cousson44ba2642014-07-08 23:19:36 +02002298/* show dapm widget status in sys fs */
2299static ssize_t dapm_widget_show(struct device *dev,
2300 struct device_attribute *attr, char *buf)
2301{
2302 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
2303 int i, count = 0;
2304
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002305 mutex_lock(&rtd->card->dapm_mutex);
2306
Benoit Cousson44ba2642014-07-08 23:19:36 +02002307 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002308 struct snd_soc_component *cmpnt = rtd->codec_dais[i]->component;
2309
2310 count += dapm_widget_show_component(cmpnt, buf + count);
Benoit Cousson44ba2642014-07-08 23:19:36 +02002311 }
2312
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002313 mutex_unlock(&rtd->card->dapm_mutex);
2314
Benoit Cousson44ba2642014-07-08 23:19:36 +02002315 return count;
2316}
2317
Richard Purdie2b97eab2006-10-06 18:32:18 +02002318static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
2319
Takashi Iwaid29697d2015-01-30 20:16:37 +01002320struct attribute *soc_dapm_dev_attrs[] = {
2321 &dev_attr_dapm_widget.attr,
2322 NULL
2323};
Richard Purdie2b97eab2006-10-06 18:32:18 +02002324
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002325static void dapm_free_path(struct snd_soc_dapm_path *path)
2326{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002327 list_del(&path->list_node[SND_SOC_DAPM_DIR_IN]);
2328 list_del(&path->list_node[SND_SOC_DAPM_DIR_OUT]);
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002329 list_del(&path->list_kcontrol);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002330 list_del(&path->list);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002331 kfree(path);
2332}
2333
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002334void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
2335{
2336 struct snd_soc_dapm_path *p, *next_p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002337 enum snd_soc_dapm_direction dir;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002338
2339 list_del(&w->list);
2340 /*
2341 * remove source and sink paths associated to this widget.
2342 * While removing the path, remove reference to it from both
2343 * source and sink widgets so that path is removed only once.
2344 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002345 snd_soc_dapm_for_each_direction(dir) {
2346 snd_soc_dapm_widget_for_each_path_safe(w, dir, p, next_p)
2347 dapm_free_path(p);
2348 }
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002349
2350 kfree(w->kcontrols);
Lars-Peter Clausen48068962015-07-21 18:11:08 +02002351 kfree_const(w->name);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002352 kfree(w);
2353}
2354
Jyri Sarhafd589a12015-11-10 18:12:42 +02002355void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context *dapm)
2356{
2357 dapm->path_sink_cache.widget = NULL;
2358 dapm->path_source_cache.widget = NULL;
2359}
2360
Richard Purdie2b97eab2006-10-06 18:32:18 +02002361/* free all dapm widgets and resources */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002362static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002363{
2364 struct snd_soc_dapm_widget *w, *next_w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002365
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002366 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2367 if (w->dapm != dapm)
2368 continue;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002369 snd_soc_dapm_free_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002370 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002371 snd_soc_dapm_reset_cache(dapm);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002372}
2373
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002374static struct snd_soc_dapm_widget *dapm_find_widget(
2375 struct snd_soc_dapm_context *dapm, const char *pin,
2376 bool search_other_contexts)
2377{
2378 struct snd_soc_dapm_widget *w;
2379 struct snd_soc_dapm_widget *fallback = NULL;
2380
2381 list_for_each_entry(w, &dapm->card->widgets, list) {
2382 if (!strcmp(w->name, pin)) {
2383 if (w->dapm == dapm)
2384 return w;
2385 else
2386 fallback = w;
2387 }
2388 }
2389
2390 if (search_other_contexts)
2391 return fallback;
2392
2393 return NULL;
2394}
2395
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002396static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
Mark Brown16499232009-01-07 18:25:13 +00002397 const char *pin, int status)
Liam Girdwooda5302182008-07-07 13:35:17 +01002398{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002399 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Liam Girdwooda5302182008-07-07 13:35:17 +01002400
Mark Brownf9fa2b12014-03-06 16:49:11 +08002401 dapm_assert_locked(dapm);
2402
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002403 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002404 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002405 return -EINVAL;
Liam Girdwooda5302182008-07-07 13:35:17 +01002406 }
2407
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002408 if (w->connected != status) {
Mark Brown1a8b2d92012-02-16 11:50:07 -08002409 dapm_mark_dirty(w, "pin configuration");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002410 dapm_widget_invalidate_input_paths(w);
2411 dapm_widget_invalidate_output_paths(w);
2412 }
Mark Brown1a8b2d92012-02-16 11:50:07 -08002413
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002414 w->connected = status;
2415 if (status == 0)
2416 w->force = 0;
Mark Brown0d867332011-04-06 11:38:14 +09002417
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002418 return 0;
Liam Girdwooda5302182008-07-07 13:35:17 +01002419}
2420
Richard Purdie2b97eab2006-10-06 18:32:18 +02002421/**
Charles Keepax3eb29df2014-02-18 15:22:15 +00002422 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2423 * @dapm: DAPM context
2424 *
2425 * Walks all dapm audio paths and powers widgets according to their
2426 * stream or path usage.
2427 *
2428 * Requires external locking.
2429 *
2430 * Returns 0 for success.
2431 */
2432int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2433{
2434 /*
2435 * Suppress early reports (eg, jacks syncing their state) to avoid
2436 * silly DAPM runs during card startup.
2437 */
2438 if (!dapm->card || !dapm->card->instantiated)
2439 return 0;
2440
2441 return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2442}
2443EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2444
2445/**
Liam Girdwooda5302182008-07-07 13:35:17 +01002446 * snd_soc_dapm_sync - scan and power dapm paths
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002447 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02002448 *
2449 * Walks all dapm audio paths and powers widgets according to their
2450 * stream or path usage.
2451 *
2452 * Returns 0 for success.
2453 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002454int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002455{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002456 int ret;
2457
Liam Girdwood3cd04342012-03-09 12:02:08 +00002458 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Charles Keepax3eb29df2014-02-18 15:22:15 +00002459 ret = snd_soc_dapm_sync_unlocked(dapm);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002460 mutex_unlock(&dapm->card->dapm_mutex);
2461 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002462}
Liam Girdwooda5302182008-07-07 13:35:17 +01002463EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002464
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002465/*
2466 * dapm_update_widget_flags() - Re-compute widget sink and source flags
2467 * @w: The widget for which to update the flags
2468 *
2469 * Some widgets have a dynamic category which depends on which neighbors they
2470 * are connected to. This function update the category for these widgets.
2471 *
2472 * This function must be called whenever a path is added or removed to a widget.
2473 */
2474static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w)
2475{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002476 enum snd_soc_dapm_direction dir;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002477 struct snd_soc_dapm_path *p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002478 unsigned int ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002479
2480 switch (w->id) {
2481 case snd_soc_dapm_input:
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02002482 /* On a fully routed card an input is never a source */
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002483 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002484 return;
2485 ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002486 snd_soc_dapm_widget_for_each_source_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002487 if (p->source->id == snd_soc_dapm_micbias ||
2488 p->source->id == snd_soc_dapm_mic ||
2489 p->source->id == snd_soc_dapm_line ||
2490 p->source->id == snd_soc_dapm_output) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002491 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002492 break;
2493 }
2494 }
2495 break;
2496 case snd_soc_dapm_output:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002497 /* On a fully routed card a output is never a sink */
2498 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002499 return;
2500 ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002501 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002502 if (p->sink->id == snd_soc_dapm_spk ||
2503 p->sink->id == snd_soc_dapm_hp ||
2504 p->sink->id == snd_soc_dapm_line ||
2505 p->sink->id == snd_soc_dapm_input) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002506 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002507 break;
2508 }
2509 }
2510 break;
2511 case snd_soc_dapm_line:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002512 ep = 0;
2513 snd_soc_dapm_for_each_direction(dir) {
2514 if (!list_empty(&w->edges[dir]))
2515 ep |= SND_SOC_DAPM_DIR_TO_EP(dir);
2516 }
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002517 break;
2518 default:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002519 return;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002520 }
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002521
2522 w->is_ep = ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002523}
2524
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002525static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm,
2526 struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink,
2527 const char *control)
2528{
2529 bool dynamic_source = false;
2530 bool dynamic_sink = false;
2531
2532 if (!control)
2533 return 0;
2534
2535 switch (source->id) {
2536 case snd_soc_dapm_demux:
2537 dynamic_source = true;
2538 break;
2539 default:
2540 break;
2541 }
2542
2543 switch (sink->id) {
2544 case snd_soc_dapm_mux:
2545 case snd_soc_dapm_switch:
2546 case snd_soc_dapm_mixer:
2547 case snd_soc_dapm_mixer_named_ctl:
2548 dynamic_sink = true;
2549 break;
2550 default:
2551 break;
2552 }
2553
2554 if (dynamic_source && dynamic_sink) {
2555 dev_err(dapm->dev,
2556 "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2557 source->name, control, sink->name);
2558 return -EINVAL;
2559 } else if (!dynamic_source && !dynamic_sink) {
2560 dev_err(dapm->dev,
2561 "Control not supported for path %s -> [%s] -> %s\n",
2562 source->name, control, sink->name);
2563 return -EINVAL;
2564 }
2565
2566 return 0;
2567}
2568
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002569static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2570 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2571 const char *control,
2572 int (*connected)(struct snd_soc_dapm_widget *source,
2573 struct snd_soc_dapm_widget *sink))
Richard Purdie2b97eab2006-10-06 18:32:18 +02002574{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002575 struct snd_soc_dapm_widget *widgets[2];
2576 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002577 struct snd_soc_dapm_path *path;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002578 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002579
Lars-Peter Clausene409dfb2014-10-25 17:42:02 +02002580 if (wsink->is_supply && !wsource->is_supply) {
2581 dev_err(dapm->dev,
2582 "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2583 wsource->name, wsink->name);
2584 return -EINVAL;
2585 }
2586
2587 if (connected && !wsource->is_supply) {
2588 dev_err(dapm->dev,
2589 "connected() callback only supported for supply widgets (%s -> %s)\n",
2590 wsource->name, wsink->name);
2591 return -EINVAL;
2592 }
2593
2594 if (wsource->is_supply && control) {
2595 dev_err(dapm->dev,
2596 "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2597 wsource->name, control, wsink->name);
2598 return -EINVAL;
2599 }
2600
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002601 ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control);
2602 if (ret)
2603 return ret;
2604
Richard Purdie2b97eab2006-10-06 18:32:18 +02002605 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2606 if (!path)
2607 return -ENOMEM;
2608
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002609 path->node[SND_SOC_DAPM_DIR_IN] = wsource;
2610 path->node[SND_SOC_DAPM_DIR_OUT] = wsink;
2611 widgets[SND_SOC_DAPM_DIR_IN] = wsource;
2612 widgets[SND_SOC_DAPM_DIR_OUT] = wsink;
2613
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002614 path->connected = connected;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002615 INIT_LIST_HEAD(&path->list);
Mark Brown69c2d342013-08-13 00:20:36 +01002616 INIT_LIST_HEAD(&path->list_kcontrol);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002617
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02002618 if (wsource->is_supply || wsink->is_supply)
2619 path->is_supply = 1;
2620
Richard Purdie2b97eab2006-10-06 18:32:18 +02002621 /* connect static paths */
2622 if (control == NULL) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002623 path->connect = 1;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002624 } else {
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002625 switch (wsource->id) {
2626 case snd_soc_dapm_demux:
2627 ret = dapm_connect_mux(dapm, path, control, wsource);
2628 if (ret)
2629 goto err;
2630 break;
2631 default:
2632 break;
2633 }
2634
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002635 switch (wsink->id) {
2636 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002637 ret = dapm_connect_mux(dapm, path, control, wsink);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002638 if (ret != 0)
2639 goto err;
2640 break;
2641 case snd_soc_dapm_switch:
2642 case snd_soc_dapm_mixer:
2643 case snd_soc_dapm_mixer_named_ctl:
2644 ret = dapm_connect_mixer(dapm, path, control);
2645 if (ret != 0)
2646 goto err;
2647 break;
2648 default:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002649 break;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002650 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002651 }
2652
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002653 list_add(&path->list, &dapm->card->paths);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002654 snd_soc_dapm_for_each_direction(dir)
2655 list_add(&path->list_node[dir], &widgets[dir]->edges[dir]);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002656
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002657 snd_soc_dapm_for_each_direction(dir) {
2658 dapm_update_widget_flags(widgets[dir]);
2659 dapm_mark_dirty(widgets[dir], "Route added");
2660 }
Mark Brownfabd0382012-07-05 17:20:06 +01002661
Sudheer Papothif8028fe2016-11-03 02:30:27 +05302662 dapm_path_invalidate(path);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002663
Richard Purdie2b97eab2006-10-06 18:32:18 +02002664 return 0;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002665err:
2666 kfree(path);
2667 return ret;
2668}
Richard Purdie2b97eab2006-10-06 18:32:18 +02002669
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002670static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002671 const struct snd_soc_dapm_route *route)
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002672{
2673 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2674 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2675 const char *sink;
2676 const char *source;
2677 char prefixed_sink[80];
2678 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002679 const char *prefix;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002680 int ret;
2681
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002682 prefix = soc_dapm_prefix(dapm);
2683 if (prefix) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002684 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002685 prefix, route->sink);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002686 sink = prefixed_sink;
2687 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002688 prefix, route->source);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002689 source = prefixed_source;
2690 } else {
2691 sink = route->sink;
2692 source = route->source;
2693 }
2694
Charles Keepax45a110a2015-05-11 13:50:30 +01002695 wsource = dapm_wcache_lookup(&dapm->path_source_cache, source);
2696 wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink);
2697
2698 if (wsink && wsource)
2699 goto skip_search;
2700
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002701 /*
2702 * find src and dest widgets over all widgets but favor a widget from
2703 * current DAPM context
2704 */
2705 list_for_each_entry(w, &dapm->card->widgets, list) {
2706 if (!wsink && !(strcmp(w->name, sink))) {
2707 wtsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002708 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002709 wsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002710 if (wsource)
2711 break;
2712 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002713 continue;
2714 }
2715 if (!wsource && !(strcmp(w->name, source))) {
2716 wtsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002717 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002718 wsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002719 if (wsink)
2720 break;
2721 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002722 }
2723 }
2724 /* use widget from another DAPM context if not found from this */
2725 if (!wsink)
2726 wsink = wtsink;
2727 if (!wsource)
2728 wsource = wtsource;
2729
2730 if (wsource == NULL) {
2731 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2732 route->source);
2733 return -ENODEV;
2734 }
2735 if (wsink == NULL) {
2736 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2737 route->sink);
2738 return -ENODEV;
2739 }
2740
Charles Keepax45a110a2015-05-11 13:50:30 +01002741skip_search:
2742 dapm_wcache_update(&dapm->path_sink_cache, wsink);
2743 dapm_wcache_update(&dapm->path_source_cache, wsource);
2744
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002745 ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2746 route->connected);
2747 if (ret)
2748 goto err;
2749
2750 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002751err:
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002752 dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002753 source, route->control, sink);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002754 return ret;
2755}
Mark Brown105f1c22008-05-13 14:52:19 +02002756
Mark Brownefcc3c62012-07-05 17:24:19 +01002757static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
2758 const struct snd_soc_dapm_route *route)
2759{
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002760 struct snd_soc_dapm_widget *wsource, *wsink;
Mark Brownefcc3c62012-07-05 17:24:19 +01002761 struct snd_soc_dapm_path *path, *p;
2762 const char *sink;
2763 const char *source;
2764 char prefixed_sink[80];
2765 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002766 const char *prefix;
Mark Brownefcc3c62012-07-05 17:24:19 +01002767
2768 if (route->control) {
2769 dev_err(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002770 "ASoC: Removal of routes with controls not supported\n");
Mark Brownefcc3c62012-07-05 17:24:19 +01002771 return -EINVAL;
2772 }
2773
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002774 prefix = soc_dapm_prefix(dapm);
2775 if (prefix) {
Mark Brownefcc3c62012-07-05 17:24:19 +01002776 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002777 prefix, route->sink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002778 sink = prefixed_sink;
2779 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002780 prefix, route->source);
Mark Brownefcc3c62012-07-05 17:24:19 +01002781 source = prefixed_source;
2782 } else {
2783 sink = route->sink;
2784 source = route->source;
2785 }
2786
2787 path = NULL;
2788 list_for_each_entry(p, &dapm->card->paths, list) {
2789 if (strcmp(p->source->name, source) != 0)
2790 continue;
2791 if (strcmp(p->sink->name, sink) != 0)
2792 continue;
2793 path = p;
2794 break;
2795 }
2796
2797 if (path) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002798 wsource = path->source;
2799 wsink = path->sink;
2800
2801 dapm_mark_dirty(wsource, "Route removed");
2802 dapm_mark_dirty(wsink, "Route removed");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002803 if (path->connect)
2804 dapm_path_invalidate(path);
Mark Brownefcc3c62012-07-05 17:24:19 +01002805
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002806 dapm_free_path(path);
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002807
2808 /* Update any path related flags */
2809 dapm_update_widget_flags(wsource);
2810 dapm_update_widget_flags(wsink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002811 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002812 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
Mark Brownefcc3c62012-07-05 17:24:19 +01002813 source, sink);
2814 }
2815
2816 return 0;
2817}
2818
Mark Brown105f1c22008-05-13 14:52:19 +02002819/**
Mark Brown105f1c22008-05-13 14:52:19 +02002820 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002821 * @dapm: DAPM context
Mark Brown105f1c22008-05-13 14:52:19 +02002822 * @route: audio routes
2823 * @num: number of routes
2824 *
2825 * Connects 2 dapm widgets together via a named audio path. The sink is
2826 * the widget receiving the audio signal, whilst the source is the sender
2827 * of the audio signal.
2828 *
2829 * Returns 0 for success else error. On error all resources can be freed
2830 * with a call to snd_soc_card_free().
2831 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002832int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
Mark Brown105f1c22008-05-13 14:52:19 +02002833 const struct snd_soc_dapm_route *route, int num)
2834{
Mark Brown62d4a4b2012-06-22 12:21:49 +01002835 int i, r, ret = 0;
Mark Brown105f1c22008-05-13 14:52:19 +02002836
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002837 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown105f1c22008-05-13 14:52:19 +02002838 for (i = 0; i < num; i++) {
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002839 r = snd_soc_dapm_add_route(dapm, route);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002840 if (r < 0) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002841 dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
2842 route->source,
2843 route->control ? route->control : "direct",
2844 route->sink);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002845 ret = r;
Mark Brown105f1c22008-05-13 14:52:19 +02002846 }
2847 route++;
2848 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002849 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown105f1c22008-05-13 14:52:19 +02002850
Dan Carpenter60884c22012-04-13 22:25:43 +03002851 return ret;
Mark Brown105f1c22008-05-13 14:52:19 +02002852}
2853EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2854
Mark Brownefcc3c62012-07-05 17:24:19 +01002855/**
2856 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2857 * @dapm: DAPM context
2858 * @route: audio routes
2859 * @num: number of routes
2860 *
2861 * Removes routes from the DAPM context.
2862 */
2863int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
2864 const struct snd_soc_dapm_route *route, int num)
2865{
Rajan Vajae066ea22016-02-11 11:23:35 +05302866 int i;
Mark Brownefcc3c62012-07-05 17:24:19 +01002867
2868 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2869 for (i = 0; i < num; i++) {
2870 snd_soc_dapm_del_route(dapm, route);
2871 route++;
2872 }
2873 mutex_unlock(&dapm->card->dapm_mutex);
2874
Rajan Vajae066ea22016-02-11 11:23:35 +05302875 return 0;
Mark Brownefcc3c62012-07-05 17:24:19 +01002876}
2877EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
2878
Mark Brownbf3a9e12011-06-13 16:42:29 +01002879static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2880 const struct snd_soc_dapm_route *route)
2881{
2882 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2883 route->source,
2884 true);
2885 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2886 route->sink,
2887 true);
2888 struct snd_soc_dapm_path *path;
2889 int count = 0;
2890
2891 if (!source) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002892 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002893 route->source);
2894 return -ENODEV;
2895 }
2896
2897 if (!sink) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002898 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002899 route->sink);
2900 return -ENODEV;
2901 }
2902
2903 if (route->control || route->connected)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002904 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002905 route->source, route->sink);
2906
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002907 snd_soc_dapm_widget_for_each_sink_path(source, path) {
Mark Brownbf3a9e12011-06-13 16:42:29 +01002908 if (path->sink == sink) {
2909 path->weak = 1;
2910 count++;
2911 }
2912 }
2913
2914 if (count == 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002915 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002916 route->source, route->sink);
2917 if (count > 1)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002918 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002919 count, route->source, route->sink);
2920
2921 return 0;
2922}
2923
2924/**
2925 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2926 * @dapm: DAPM context
2927 * @route: audio routes
2928 * @num: number of routes
2929 *
2930 * Mark existing routes matching those specified in the passed array
2931 * as being weak, meaning that they are ignored for the purpose of
2932 * power decisions. The main intended use case is for sidetone paths
2933 * which couple audio between other independent paths if they are both
2934 * active in order to make the combination work better at the user
2935 * level but which aren't intended to be "used".
2936 *
2937 * Note that CODEC drivers should not use this as sidetone type paths
2938 * can frequently also be used as bypass paths.
2939 */
2940int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2941 const struct snd_soc_dapm_route *route, int num)
2942{
2943 int i, err;
2944 int ret = 0;
2945
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002946 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002947 for (i = 0; i < num; i++) {
2948 err = snd_soc_dapm_weak_route(dapm, route);
2949 if (err)
2950 ret = err;
2951 route++;
2952 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002953 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002954
2955 return ret;
2956}
2957EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2958
Mark Brown105f1c22008-05-13 14:52:19 +02002959/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02002960 * snd_soc_dapm_new_widgets - add new dapm widgets
Jonathan Corbet628536e2015-08-25 01:14:48 -06002961 * @card: card to be checked for new dapm widgets
Richard Purdie2b97eab2006-10-06 18:32:18 +02002962 *
2963 * Checks the codec for any new dapm widgets and creates them if found.
2964 *
2965 * Returns 0 for success.
2966 */
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02002967int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002968{
2969 struct snd_soc_dapm_widget *w;
Mark Brownb66a70d2011-02-09 18:04:11 +00002970 unsigned int val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002971
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002972 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002973
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002974 list_for_each_entry(w, &card->widgets, list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002975 {
2976 if (w->new)
2977 continue;
2978
Stephen Warrenfad59882011-04-28 17:37:59 -06002979 if (w->num_kcontrols) {
2980 w->kcontrols = kzalloc(w->num_kcontrols *
2981 sizeof(struct snd_kcontrol *),
2982 GFP_KERNEL);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002983 if (!w->kcontrols) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002984 mutex_unlock(&card->dapm_mutex);
Stephen Warrenfad59882011-04-28 17:37:59 -06002985 return -ENOMEM;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002986 }
Stephen Warrenfad59882011-04-28 17:37:59 -06002987 }
2988
Richard Purdie2b97eab2006-10-06 18:32:18 +02002989 switch(w->id) {
2990 case snd_soc_dapm_switch:
2991 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002992 case snd_soc_dapm_mixer_named_ctl:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002993 dapm_new_mixer(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002994 break;
2995 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002996 case snd_soc_dapm_demux:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002997 dapm_new_mux(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002998 break;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002999 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06003000 case snd_soc_dapm_out_drv:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02003001 dapm_new_pga(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003002 break;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003003 case snd_soc_dapm_dai_link:
3004 dapm_new_dai_link(w);
3005 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01003006 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02003007 break;
3008 }
Mark Brownb66a70d2011-02-09 18:04:11 +00003009
3010 /* Read the initial power state from the device */
3011 if (w->reg >= 0) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003012 soc_dapm_read(w->dapm, w->reg, &val);
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -08003013 val = val >> w->shift;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003014 val &= w->mask;
3015 if (val == w->on_val)
Mark Brownb66a70d2011-02-09 18:04:11 +00003016 w->power = 1;
3017 }
3018
Richard Purdie2b97eab2006-10-06 18:32:18 +02003019 w->new = 1;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02003020
Mark Brown7508b122011-10-05 12:09:12 +01003021 dapm_mark_dirty(w, "new widget");
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02003022 dapm_debugfs_add_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003023 }
3024
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003025 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
3026 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003027 return 0;
3028}
3029EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
3030
3031/**
3032 * snd_soc_dapm_get_volsw - dapm mixer get callback
3033 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003034 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003035 *
3036 * Callback to get the value of a dapm mixer control.
3037 *
3038 * Returns 0 for success.
3039 */
3040int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
3041 struct snd_ctl_elem_value *ucontrol)
3042{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003043 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3044 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003045 struct soc_mixer_control *mc =
3046 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003047 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003048 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003049 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003050 unsigned int mask = (1 << fls(max)) - 1;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003051 unsigned int invert = mc->invert;
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003052 unsigned int val;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003053 int ret = 0;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003054
3055 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003056 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003057 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003058 kcontrol->id.name);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003059
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003060 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003061 if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) {
3062 ret = soc_dapm_read(dapm, reg, &val);
3063 val = (val >> shift) & mask;
3064 } else {
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003065 val = dapm_kcontrol_get_value(kcontrol);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003066 }
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003067 mutex_unlock(&card->dapm_mutex);
3068
Chen-Yu Tsai01ad5e72016-08-27 19:27:58 +08003069 if (ret)
3070 return ret;
3071
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003072 if (invert)
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003073 ucontrol->value.integer.value[0] = max - val;
3074 else
3075 ucontrol->value.integer.value[0] = val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003076
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003077 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003078}
3079EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
3080
3081/**
3082 * snd_soc_dapm_put_volsw - dapm mixer set callback
3083 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003084 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003085 *
3086 * Callback to set the value of a dapm mixer control.
3087 *
3088 * Returns 0 for success.
3089 */
3090int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
3091 struct snd_ctl_elem_value *ucontrol)
3092{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003093 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3094 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003095 struct soc_mixer_control *mc =
3096 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003097 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003098 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003099 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003100 unsigned int mask = (1 << fls(max)) - 1;
3101 unsigned int invert = mc->invert;
Stephen Warrene9cf7042011-01-27 14:54:05 -07003102 unsigned int val;
Jarkko Nikula18626c72014-06-09 14:20:29 +03003103 int connect, change, reg_change = 0;
Mark Brown97404f22010-12-14 16:13:57 +00003104 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003105 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003106
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003107 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003108 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003109 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003110 kcontrol->id.name);
3111
Richard Purdie2b97eab2006-10-06 18:32:18 +02003112 val = (ucontrol->value.integer.value[0] & mask);
Benoît Thébaudeau8a720712012-06-18 22:41:28 +02003113 connect = !!val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003114
3115 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01003116 val = max - val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003117
Liam Girdwood3cd04342012-03-09 12:02:08 +00003118 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003119
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003120 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown283375c2009-12-07 18:09:03 +00003121
Jarkko Nikula18626c72014-06-09 14:20:29 +03003122 if (reg != SND_SOC_NOPM) {
3123 mask = mask << shift;
3124 val = val << shift;
Lars-Peter Clausenc9e065c2014-05-04 19:17:05 +02003125
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003126 reg_change = soc_dapm_test_bits(dapm, reg, mask, val);
Jarkko Nikula18626c72014-06-09 14:20:29 +03003127 }
3128
3129 if (change || reg_change) {
3130 if (reg_change) {
3131 update.kcontrol = kcontrol;
3132 update.reg = reg;
3133 update.mask = mask;
3134 update.val = val;
3135 card->update = &update;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003136 }
Jarkko Nikula18626c72014-06-09 14:20:29 +03003137 change |= reg_change;
Mark Brown97404f22010-12-14 16:13:57 +00003138
Nenghua Cao52765972013-12-13 20:13:49 +08003139 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Mark Brown97404f22010-12-14 16:13:57 +00003140
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003141 card->update = NULL;
Mark Brown283375c2009-12-07 18:09:03 +00003142 }
3143
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003144 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003145
3146 if (ret > 0)
3147 soc_dpcm_runtime_update(card);
3148
Lars-Peter Clausen56a67832013-07-24 15:27:35 +02003149 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003150}
3151EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3152
3153/**
3154 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3155 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003156 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003157 *
3158 * Callback to get the value of a dapm enumerated double mixer control.
3159 *
3160 * Returns 0 for success.
3161 */
3162int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3163 struct snd_ctl_elem_value *ucontrol)
3164{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003165 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
Charles Keepax561ed682015-05-01 12:37:26 +01003166 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003167 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003168 unsigned int reg_val, val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003169
Charles Keepax561ed682015-05-01 12:37:26 +01003170 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3171 if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003172 int ret = soc_dapm_read(dapm, e->reg, &reg_val);
Charles Keepax964a0b82015-05-08 10:50:10 +01003173 if (ret) {
3174 mutex_unlock(&card->dapm_mutex);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003175 return ret;
Charles Keepax964a0b82015-05-08 10:50:10 +01003176 }
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003177 } else {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003178 reg_val = dapm_kcontrol_get_value(kcontrol);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003179 }
Charles Keepax561ed682015-05-01 12:37:26 +01003180 mutex_unlock(&card->dapm_mutex);
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003181
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003182 val = (reg_val >> e->shift_l) & e->mask;
3183 ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3184 if (e->shift_l != e->shift_r) {
3185 val = (reg_val >> e->shift_r) & e->mask;
3186 val = snd_soc_enum_val_to_item(e, val);
3187 ucontrol->value.enumerated.item[1] = val;
3188 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003189
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003190 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003191}
3192EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3193
3194/**
3195 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3196 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003197 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003198 *
3199 * Callback to set the value of a dapm enumerated double mixer control.
3200 *
3201 * Returns 0 for success.
3202 */
3203int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3204 struct snd_ctl_elem_value *ucontrol)
3205{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003206 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3207 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003208 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003209 unsigned int *item = ucontrol->value.enumerated.item;
Charles Keepax561ed682015-05-01 12:37:26 +01003210 unsigned int val, change, reg_change = 0;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003211 unsigned int mask;
Mark Brown97404f22010-12-14 16:13:57 +00003212 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003213 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003214
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003215 if (item[0] >= e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003216 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003217
3218 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003219 mask = e->mask << e->shift_l;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003220 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003221 if (item[1] > e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003222 return -EINVAL;
Chen-Yu Tsai071133a2016-08-27 19:27:59 +08003223 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003224 mask |= e->mask << e->shift_r;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003225 }
3226
Liam Girdwood3cd04342012-03-09 12:02:08 +00003227 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06003228
Charles Keepax561ed682015-05-01 12:37:26 +01003229 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown97404f22010-12-14 16:13:57 +00003230
Charles Keepax561ed682015-05-01 12:37:26 +01003231 if (e->reg != SND_SOC_NOPM)
3232 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3233
3234 if (change || reg_change) {
3235 if (reg_change) {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003236 update.kcontrol = kcontrol;
3237 update.reg = e->reg;
3238 update.mask = mask;
3239 update.val = val;
3240 card->update = &update;
3241 }
Charles Keepax561ed682015-05-01 12:37:26 +01003242 change |= reg_change;
Mark Brown3a655772009-10-05 17:23:30 +01003243
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003244 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
Mark Brown1642e3d2009-10-05 16:24:26 +01003245
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003246 card->update = NULL;
Stephen Warrenfafd2172011-04-28 17:38:00 -06003247 }
3248
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003249 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003250
3251 if (ret > 0)
3252 soc_dpcm_runtime_update(card);
3253
Mark Brown97404f22010-12-14 16:13:57 +00003254 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003255}
3256EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3257
3258/**
Mark Brown8b37dbd2009-02-28 21:14:20 +00003259 * snd_soc_dapm_info_pin_switch - Info for a pin switch
3260 *
3261 * @kcontrol: mixer control
3262 * @uinfo: control element information
3263 *
3264 * Callback to provide information about a pin switch control.
3265 */
3266int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3267 struct snd_ctl_elem_info *uinfo)
3268{
3269 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3270 uinfo->count = 1;
3271 uinfo->value.integer.min = 0;
3272 uinfo->value.integer.max = 1;
3273
3274 return 0;
3275}
3276EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3277
3278/**
3279 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3280 *
3281 * @kcontrol: mixer control
3282 * @ucontrol: Value
3283 */
3284int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3285 struct snd_ctl_elem_value *ucontrol)
3286{
Mark Brown48a8c392012-02-14 17:11:15 -08003287 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003288 const char *pin = (const char *)kcontrol->private_value;
3289
Liam Girdwood3cd04342012-03-09 12:02:08 +00003290 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003291
3292 ucontrol->value.integer.value[0] =
Mark Brown48a8c392012-02-14 17:11:15 -08003293 snd_soc_dapm_get_pin_status(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003294
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003295 mutex_unlock(&card->dapm_mutex);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003296
3297 return 0;
3298}
3299EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3300
3301/**
3302 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3303 *
3304 * @kcontrol: mixer control
3305 * @ucontrol: Value
3306 */
3307int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3308 struct snd_ctl_elem_value *ucontrol)
3309{
Mark Brown48a8c392012-02-14 17:11:15 -08003310 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003311 const char *pin = (const char *)kcontrol->private_value;
3312
Mark Brown8b37dbd2009-02-28 21:14:20 +00003313 if (ucontrol->value.integer.value[0])
Mark Brown48a8c392012-02-14 17:11:15 -08003314 snd_soc_dapm_enable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003315 else
Mark Brown48a8c392012-02-14 17:11:15 -08003316 snd_soc_dapm_disable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003317
Mark Brown48a8c392012-02-14 17:11:15 -08003318 snd_soc_dapm_sync(&card->dapm);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003319 return 0;
3320}
3321EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3322
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +01003323struct snd_soc_dapm_widget *
Mark Brown5ba06fc2012-02-16 11:07:13 -08003324snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003325 const struct snd_soc_dapm_widget *widget)
3326{
3327 struct snd_soc_dapm_widget *w;
3328
3329 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3330 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3331 if (!w)
3332 dev_err(dapm->dev,
3333 "ASoC: Failed to create DAPM control %s\n",
3334 widget->name);
3335
3336 mutex_unlock(&dapm->card->dapm_mutex);
3337 return w;
3338}
Subhransu S. Prustya5d56392016-06-27 09:18:03 +05303339EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control);
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003340
3341struct snd_soc_dapm_widget *
3342snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003343 const struct snd_soc_dapm_widget *widget)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003344{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003345 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003346 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003347 const char *prefix;
Mark Brown62ea8742012-01-21 21:14:48 +00003348 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003349
3350 if ((w = dapm_cnew_widget(widget)) == NULL)
Mark Brown5ba06fc2012-02-16 11:07:13 -08003351 return NULL;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003352
Mark Brown62ea8742012-01-21 21:14:48 +00003353 switch (w->id) {
3354 case snd_soc_dapm_regulator_supply:
Liam Girdwooda3cc0562012-03-09 17:20:16 +00003355 w->regulator = devm_regulator_get(dapm->dev, w->name);
3356 if (IS_ERR(w->regulator)) {
3357 ret = PTR_ERR(w->regulator);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003358 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Mark Brown62ea8742012-01-21 21:14:48 +00003359 w->name, ret);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003360 return NULL;
Mark Brown62ea8742012-01-21 21:14:48 +00003361 }
Mark Brown8784c772013-01-10 19:33:47 +00003362
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003363 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00003364 ret = regulator_allow_bypass(w->regulator, true);
3365 if (ret != 0)
3366 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00003367 "ASoC: Failed to bypass %s: %d\n",
Mark Brown8784c772013-01-10 19:33:47 +00003368 w->name, ret);
3369 }
Mark Brown62ea8742012-01-21 21:14:48 +00003370 break;
Ola Liljad7e7eb92012-05-24 15:26:25 +02003371 case snd_soc_dapm_clock_supply:
Mark Brown165961e2012-06-05 10:44:23 +01003372#ifdef CONFIG_CLKDEV_LOOKUP
Mark Brown695594f12012-06-04 08:14:13 +01003373 w->clk = devm_clk_get(dapm->dev, w->name);
Ola Liljad7e7eb92012-05-24 15:26:25 +02003374 if (IS_ERR(w->clk)) {
3375 ret = PTR_ERR(w->clk);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003376 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Ola Liljad7e7eb92012-05-24 15:26:25 +02003377 w->name, ret);
3378 return NULL;
3379 }
Mark Brownec029952012-06-04 08:16:20 +01003380#else
3381 return NULL;
3382#endif
Ola Liljad7e7eb92012-05-24 15:26:25 +02003383 break;
Mark Brown62ea8742012-01-21 21:14:48 +00003384 default:
3385 break;
3386 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003387
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003388 prefix = soc_dapm_prefix(dapm);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003389 if (prefix)
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003390 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003391 else
Lars-Peter Clausen48068962015-07-21 18:11:08 +02003392 w->name = kstrdup_const(widget->name, GFP_KERNEL);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003393 if (w->name == NULL) {
3394 kfree(w);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003395 return NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003396 }
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003397
Mark Brown7ca3a182011-10-08 14:04:50 +01003398 switch (w->id) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003399 case snd_soc_dapm_mic:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003400 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003401 w->power_check = dapm_generic_check_power;
3402 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003403 case snd_soc_dapm_input:
3404 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003405 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003406 w->power_check = dapm_generic_check_power;
3407 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003408 case snd_soc_dapm_spk:
3409 case snd_soc_dapm_hp:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003410 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003411 w->power_check = dapm_generic_check_power;
3412 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003413 case snd_soc_dapm_output:
3414 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003415 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003416 w->power_check = dapm_generic_check_power;
3417 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003418 case snd_soc_dapm_vmid:
3419 case snd_soc_dapm_siggen:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003420 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003421 w->power_check = dapm_always_on_check_power;
3422 break;
Vinod Koul56b44372015-11-23 21:22:30 +05303423 case snd_soc_dapm_sink:
3424 w->is_ep = SND_SOC_DAPM_EP_SINK;
3425 w->power_check = dapm_always_on_check_power;
3426 break;
3427
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003428 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02003429 case snd_soc_dapm_demux:
Mark Brown7ca3a182011-10-08 14:04:50 +01003430 case snd_soc_dapm_switch:
3431 case snd_soc_dapm_mixer:
3432 case snd_soc_dapm_mixer_named_ctl:
Mark Brown63c69a62013-07-18 22:03:01 +01003433 case snd_soc_dapm_adc:
3434 case snd_soc_dapm_aif_out:
3435 case snd_soc_dapm_dac:
3436 case snd_soc_dapm_aif_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003437 case snd_soc_dapm_pga:
3438 case snd_soc_dapm_out_drv:
Mark Brown7ca3a182011-10-08 14:04:50 +01003439 case snd_soc_dapm_micbias:
Mark Brown7ca3a182011-10-08 14:04:50 +01003440 case snd_soc_dapm_line:
Mark Brownc74184e2012-04-04 22:12:09 +01003441 case snd_soc_dapm_dai_link:
Lars-Peter Clausencdef2ad2014-10-20 19:36:38 +02003442 case snd_soc_dapm_dai_out:
3443 case snd_soc_dapm_dai_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003444 w->power_check = dapm_generic_check_power;
3445 break;
3446 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00003447 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02003448 case snd_soc_dapm_clock_supply:
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003449 case snd_soc_dapm_kcontrol:
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003450 w->is_supply = 1;
Mark Brown7ca3a182011-10-08 14:04:50 +01003451 w->power_check = dapm_supply_check_power;
3452 break;
3453 default:
3454 w->power_check = dapm_always_on_check_power;
3455 break;
3456 }
3457
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003458 w->dapm = dapm;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003459 INIT_LIST_HEAD(&w->list);
Mark Browndb432b42011-10-03 21:06:40 +01003460 INIT_LIST_HEAD(&w->dirty);
Lars-Peter Clausen92fa1242015-05-01 18:02:42 +02003461 list_add_tail(&w->list, &dapm->card->widgets);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003462
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003463 snd_soc_dapm_for_each_direction(dir) {
3464 INIT_LIST_HEAD(&w->edges[dir]);
3465 w->endpoints[dir] = -1;
3466 }
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02003467
Peter Meerwald-Stadlerc8046002016-08-16 16:56:17 +02003468 /* machine layer sets up unconnected pins and insertions */
Richard Purdie2b97eab2006-10-06 18:32:18 +02003469 w->connected = 1;
Mark Brown5ba06fc2012-02-16 11:07:13 -08003470 return w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003471}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003472
3473/**
Mark Brown4ba13272008-05-13 14:51:19 +02003474 * snd_soc_dapm_new_controls - create new dapm controls
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003475 * @dapm: DAPM context
Mark Brown4ba13272008-05-13 14:51:19 +02003476 * @widget: widget array
3477 * @num: number of widgets
3478 *
3479 * Creates new DAPM controls based upon the templates.
3480 *
3481 * Returns 0 for success else error.
3482 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003483int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
Mark Brown4ba13272008-05-13 14:51:19 +02003484 const struct snd_soc_dapm_widget *widget,
3485 int num)
3486{
Mark Brown5ba06fc2012-02-16 11:07:13 -08003487 struct snd_soc_dapm_widget *w;
3488 int i;
Dan Carpenter60884c22012-04-13 22:25:43 +03003489 int ret = 0;
Mark Brown4ba13272008-05-13 14:51:19 +02003490
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003491 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown4ba13272008-05-13 14:51:19 +02003492 for (i = 0; i < num; i++) {
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003493 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003494 if (!w) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02003495 dev_err(dapm->dev,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003496 "ASoC: Failed to create DAPM control %s\n",
3497 widget->name);
Dan Carpenter60884c22012-04-13 22:25:43 +03003498 ret = -ENOMEM;
3499 break;
Mark Brownb8b33cb2008-12-18 11:19:30 +00003500 }
Mark Brown4ba13272008-05-13 14:51:19 +02003501 widget++;
3502 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003503 mutex_unlock(&dapm->card->dapm_mutex);
Dan Carpenter60884c22012-04-13 22:25:43 +03003504 return ret;
Mark Brown4ba13272008-05-13 14:51:19 +02003505}
3506EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3507
Mark Brownc74184e2012-04-04 22:12:09 +01003508static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3509 struct snd_kcontrol *kcontrol, int event)
3510{
3511 struct snd_soc_dapm_path *source_p, *sink_p;
3512 struct snd_soc_dai *source, *sink;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003513 const struct snd_soc_pcm_stream *config = w->params + w->params_select;
Mark Brownc74184e2012-04-04 22:12:09 +01003514 struct snd_pcm_substream substream;
Mark Brown9747cec2012-04-26 19:12:21 +01003515 struct snd_pcm_hw_params *params = NULL;
Nicolin Chen8053f212016-07-26 14:55:51 -07003516 struct snd_pcm_runtime *runtime = NULL;
Mark Brownc74184e2012-04-04 22:12:09 +01003517 u64 fmt;
3518 int ret;
3519
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003520 if (WARN_ON(!config) ||
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003521 WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3522 list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003523 return -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003524
3525 /* We only support a single source and sink, pick the first */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003526 source_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_OUT],
3527 struct snd_soc_dapm_path,
3528 list_node[SND_SOC_DAPM_DIR_OUT]);
3529 sink_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_IN],
3530 struct snd_soc_dapm_path,
3531 list_node[SND_SOC_DAPM_DIR_IN]);
Mark Brownc74184e2012-04-04 22:12:09 +01003532
3533 source = source_p->source->priv;
3534 sink = sink_p->sink->priv;
3535
3536 /* Be a little careful as we don't want to overflow the mask array */
3537 if (config->formats) {
3538 fmt = ffs(config->formats) - 1;
3539 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003540 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003541 config->formats);
3542 fmt = 0;
3543 }
3544
3545 /* Currently very limited parameter selection */
Mark Brown9747cec2012-04-26 19:12:21 +01003546 params = kzalloc(sizeof(*params), GFP_KERNEL);
3547 if (!params) {
3548 ret = -ENOMEM;
3549 goto out;
3550 }
3551 snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
Mark Brownc74184e2012-04-04 22:12:09 +01003552
Mark Brown9747cec2012-04-26 19:12:21 +01003553 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
Mark Brownc74184e2012-04-04 22:12:09 +01003554 config->rate_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003555 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
Mark Brownc74184e2012-04-04 22:12:09 +01003556 config->rate_max;
3557
Mark Brown9747cec2012-04-26 19:12:21 +01003558 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
Mark Brownc74184e2012-04-04 22:12:09 +01003559 = config->channels_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003560 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
Mark Brownc74184e2012-04-04 22:12:09 +01003561 = config->channels_max;
3562
3563 memset(&substream, 0, sizeof(substream));
3564
Nicolin Chen8053f212016-07-26 14:55:51 -07003565 /* Allocate a dummy snd_pcm_runtime for startup() and other ops() */
3566 runtime = kzalloc(sizeof(*runtime), GFP_KERNEL);
3567 if (!runtime) {
3568 ret = -ENOMEM;
3569 goto out;
3570 }
3571 substream.runtime = runtime;
3572
Mark Brownc74184e2012-04-04 22:12:09 +01003573 switch (event) {
3574 case SND_SOC_DAPM_PRE_PMU:
Benoit Cousson93e69582014-07-08 23:19:38 +02003575 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303576 if (source->driver->ops && source->driver->ops->startup) {
3577 ret = source->driver->ops->startup(&substream, source);
3578 if (ret < 0) {
3579 dev_err(source->dev,
3580 "ASoC: startup() failed: %d\n", ret);
3581 goto out;
3582 }
3583 source->active++;
3584 }
Benoit Cousson93e69582014-07-08 23:19:38 +02003585 ret = soc_dai_hw_params(&substream, params, source);
3586 if (ret < 0)
3587 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003588
Benoit Cousson93e69582014-07-08 23:19:38 +02003589 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303590 if (sink->driver->ops && sink->driver->ops->startup) {
3591 ret = sink->driver->ops->startup(&substream, sink);
3592 if (ret < 0) {
3593 dev_err(sink->dev,
3594 "ASoC: startup() failed: %d\n", ret);
3595 goto out;
3596 }
3597 sink->active++;
3598 }
Benoit Cousson93e69582014-07-08 23:19:38 +02003599 ret = soc_dai_hw_params(&substream, params, sink);
3600 if (ret < 0)
3601 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003602 break;
3603
3604 case SND_SOC_DAPM_POST_PMU:
Mark Brownda183962013-02-06 15:44:07 +00003605 ret = snd_soc_dai_digital_mute(sink, 0,
3606 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003607 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003608 dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003609 ret = 0;
Mark Brownc74184e2012-04-04 22:12:09 +01003610 break;
3611
3612 case SND_SOC_DAPM_PRE_PMD:
Mark Brownda183962013-02-06 15:44:07 +00003613 ret = snd_soc_dai_digital_mute(sink, 1,
3614 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003615 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003616 dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003617 ret = 0;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303618
3619 source->active--;
3620 if (source->driver->ops && source->driver->ops->shutdown) {
3621 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3622 source->driver->ops->shutdown(&substream, source);
3623 }
3624
3625 sink->active--;
3626 if (sink->driver->ops && sink->driver->ops->shutdown) {
3627 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3628 sink->driver->ops->shutdown(&substream, sink);
3629 }
Mark Brownc74184e2012-04-04 22:12:09 +01003630 break;
3631
3632 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01003633 WARN(1, "Unknown event %d\n", event);
Sudip Mukherjee75881df2015-09-10 18:01:44 +05303634 ret = -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003635 }
3636
Mark Brown9747cec2012-04-26 19:12:21 +01003637out:
Nicolin Chen8053f212016-07-26 14:55:51 -07003638 kfree(runtime);
Mark Brown9747cec2012-04-26 19:12:21 +01003639 kfree(params);
3640 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003641}
3642
Nikesh Oswalc6615082015-02-02 17:06:44 +00003643static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
3644 struct snd_ctl_elem_value *ucontrol)
3645{
3646 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3647
Takashi Iwai741338f2016-02-29 17:20:48 +01003648 ucontrol->value.enumerated.item[0] = w->params_select;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003649
3650 return 0;
3651}
3652
3653static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
3654 struct snd_ctl_elem_value *ucontrol)
3655{
3656 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3657
3658 /* Can't change the config when widget is already powered */
3659 if (w->power)
3660 return -EBUSY;
3661
Takashi Iwai741338f2016-02-29 17:20:48 +01003662 if (ucontrol->value.enumerated.item[0] == w->params_select)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003663 return 0;
3664
Takashi Iwai741338f2016-02-29 17:20:48 +01003665 if (ucontrol->value.enumerated.item[0] >= w->num_params)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003666 return -EINVAL;
3667
Takashi Iwai741338f2016-02-29 17:20:48 +01003668 w->params_select = ucontrol->value.enumerated.item[0];
Nikesh Oswalc6615082015-02-02 17:06:44 +00003669
3670 return 0;
3671}
3672
Mark Brownc74184e2012-04-04 22:12:09 +01003673int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3674 const struct snd_soc_pcm_stream *params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00003675 unsigned int num_params,
Mark Brownc74184e2012-04-04 22:12:09 +01003676 struct snd_soc_dapm_widget *source,
3677 struct snd_soc_dapm_widget *sink)
3678{
Mark Brownc74184e2012-04-04 22:12:09 +01003679 struct snd_soc_dapm_widget template;
3680 struct snd_soc_dapm_widget *w;
Mark Brownc74184e2012-04-04 22:12:09 +01003681 char *link_name;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003682 int ret, count;
3683 unsigned long private_value;
3684 const char **w_param_text;
3685 struct soc_enum w_param_enum[] = {
3686 SOC_ENUM_SINGLE(0, 0, 0, NULL),
3687 };
3688 struct snd_kcontrol_new kcontrol_dai_link[] = {
3689 SOC_ENUM_EXT(NULL, w_param_enum[0],
3690 snd_soc_dapm_dai_link_get,
3691 snd_soc_dapm_dai_link_put),
3692 };
3693 const struct snd_soc_pcm_stream *config = params;
Mark Brownc74184e2012-04-04 22:12:09 +01003694
Nikesh Oswalc6615082015-02-02 17:06:44 +00003695 w_param_text = devm_kcalloc(card->dev, num_params,
3696 sizeof(char *), GFP_KERNEL);
3697 if (!w_param_text)
Mark Brownc74184e2012-04-04 22:12:09 +01003698 return -ENOMEM;
Mark Brownc74184e2012-04-04 22:12:09 +01003699
Charles Keepax46172b62015-03-25 11:22:35 +00003700 link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
3701 source->name, sink->name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003702 if (!link_name) {
3703 ret = -ENOMEM;
3704 goto outfree_w_param;
3705 }
Mark Brownc74184e2012-04-04 22:12:09 +01003706
Nikesh Oswalc6615082015-02-02 17:06:44 +00003707 for (count = 0 ; count < num_params; count++) {
3708 if (!config->stream_name) {
3709 dev_warn(card->dapm.dev,
3710 "ASoC: anonymous config %d for dai link %s\n",
3711 count, link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003712 w_param_text[count] =
Charles Keepax46172b62015-03-25 11:22:35 +00003713 devm_kasprintf(card->dev, GFP_KERNEL,
3714 "Anonymous Configuration %d",
3715 count);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003716 if (!w_param_text[count]) {
3717 ret = -ENOMEM;
3718 goto outfree_link_name;
3719 }
Nikesh Oswalc6615082015-02-02 17:06:44 +00003720 } else {
3721 w_param_text[count] = devm_kmemdup(card->dev,
3722 config->stream_name,
3723 strlen(config->stream_name) + 1,
3724 GFP_KERNEL);
3725 if (!w_param_text[count]) {
3726 ret = -ENOMEM;
3727 goto outfree_link_name;
3728 }
3729 }
3730 config++;
3731 }
3732 w_param_enum[0].items = num_params;
3733 w_param_enum[0].texts = w_param_text;
Mark Brownc74184e2012-04-04 22:12:09 +01003734
3735 memset(&template, 0, sizeof(template));
3736 template.reg = SND_SOC_NOPM;
3737 template.id = snd_soc_dapm_dai_link;
3738 template.name = link_name;
3739 template.event = snd_soc_dai_link_event;
3740 template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3741 SND_SOC_DAPM_PRE_PMD;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003742 template.num_kcontrols = 1;
3743 /* duplicate w_param_enum on heap so that memory persists */
3744 private_value =
3745 (unsigned long) devm_kmemdup(card->dev,
3746 (void *)(kcontrol_dai_link[0].private_value),
3747 sizeof(struct soc_enum), GFP_KERNEL);
3748 if (!private_value) {
3749 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3750 link_name);
3751 ret = -ENOMEM;
3752 goto outfree_link_name;
3753 }
3754 kcontrol_dai_link[0].private_value = private_value;
3755 /* duplicate kcontrol_dai_link on heap so that memory persists */
3756 template.kcontrol_news =
3757 devm_kmemdup(card->dev, &kcontrol_dai_link[0],
3758 sizeof(struct snd_kcontrol_new),
3759 GFP_KERNEL);
3760 if (!template.kcontrol_news) {
3761 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3762 link_name);
3763 ret = -ENOMEM;
3764 goto outfree_private_value;
3765 }
Mark Brownc74184e2012-04-04 22:12:09 +01003766
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003767 dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
Mark Brownc74184e2012-04-04 22:12:09 +01003768
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003769 w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
Mark Brownc74184e2012-04-04 22:12:09 +01003770 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003771 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003772 link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003773 ret = -ENOMEM;
3774 goto outfree_kcontrol_news;
Mark Brownc74184e2012-04-04 22:12:09 +01003775 }
3776
3777 w->params = params;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003778 w->num_params = num_params;
Mark Brownc74184e2012-04-04 22:12:09 +01003779
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003780 ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3781 if (ret)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003782 goto outfree_w;
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003783 return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003784
3785outfree_w:
3786 devm_kfree(card->dev, w);
3787outfree_kcontrol_news:
3788 devm_kfree(card->dev, (void *)template.kcontrol_news);
3789outfree_private_value:
3790 devm_kfree(card->dev, (void *)private_value);
3791outfree_link_name:
3792 devm_kfree(card->dev, link_name);
3793outfree_w_param:
3794 for (count = 0 ; count < num_params; count++)
3795 devm_kfree(card->dev, (void *)w_param_text[count]);
3796 devm_kfree(card->dev, w_param_text);
3797
3798 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003799}
3800
Mark Brown888df392012-02-16 19:37:51 -08003801int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3802 struct snd_soc_dai *dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003803{
Mark Brown888df392012-02-16 19:37:51 -08003804 struct snd_soc_dapm_widget template;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003805 struct snd_soc_dapm_widget *w;
3806
Mark Brown888df392012-02-16 19:37:51 -08003807 WARN_ON(dapm->dev != dai->dev);
3808
3809 memset(&template, 0, sizeof(template));
3810 template.reg = SND_SOC_NOPM;
3811
3812 if (dai->driver->playback.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003813 template.id = snd_soc_dapm_dai_in;
Mark Brown888df392012-02-16 19:37:51 -08003814 template.name = dai->driver->playback.stream_name;
3815 template.sname = dai->driver->playback.stream_name;
3816
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003817 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003818 template.name);
3819
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003820 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003821 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003822 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003823 dai->driver->playback.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003824 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003825 }
3826
3827 w->priv = dai;
3828 dai->playback_widget = w;
3829 }
3830
3831 if (dai->driver->capture.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003832 template.id = snd_soc_dapm_dai_out;
Mark Brown888df392012-02-16 19:37:51 -08003833 template.name = dai->driver->capture.stream_name;
3834 template.sname = dai->driver->capture.stream_name;
3835
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003836 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003837 template.name);
3838
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003839 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003840 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003841 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003842 dai->driver->capture.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003843 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003844 }
3845
3846 w->priv = dai;
3847 dai->capture_widget = w;
3848 }
3849
3850 return 0;
3851}
3852
3853int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3854{
3855 struct snd_soc_dapm_widget *dai_w, *w;
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003856 struct snd_soc_dapm_widget *src, *sink;
Mark Brown888df392012-02-16 19:37:51 -08003857 struct snd_soc_dai *dai;
Mark Brown888df392012-02-16 19:37:51 -08003858
3859 /* For each DAI widget... */
3860 list_for_each_entry(dai_w, &card->widgets, list) {
Mark Brown46162742013-06-05 19:36:11 +01003861 switch (dai_w->id) {
3862 case snd_soc_dapm_dai_in:
3863 case snd_soc_dapm_dai_out:
3864 break;
3865 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02003866 continue;
Mark Brown46162742013-06-05 19:36:11 +01003867 }
Mark Brown888df392012-02-16 19:37:51 -08003868
3869 dai = dai_w->priv;
3870
3871 /* ...find all widgets with the same stream and link them */
3872 list_for_each_entry(w, &card->widgets, list) {
3873 if (w->dapm != dai_w->dapm)
3874 continue;
3875
Mark Brown46162742013-06-05 19:36:11 +01003876 switch (w->id) {
3877 case snd_soc_dapm_dai_in:
3878 case snd_soc_dapm_dai_out:
Mark Brown888df392012-02-16 19:37:51 -08003879 continue;
Mark Brown46162742013-06-05 19:36:11 +01003880 default:
3881 break;
3882 }
Mark Brown888df392012-02-16 19:37:51 -08003883
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003884 if (!w->sname || !strstr(w->sname, dai_w->sname))
Mark Brown888df392012-02-16 19:37:51 -08003885 continue;
3886
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003887 if (dai_w->id == snd_soc_dapm_dai_in) {
3888 src = dai_w;
3889 sink = w;
3890 } else {
3891 src = w;
3892 sink = dai_w;
Mark Brown888df392012-02-16 19:37:51 -08003893 }
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003894 dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3895 snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003896 }
3897 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003898
Mark Brown888df392012-02-16 19:37:51 -08003899 return 0;
3900}
Liam Girdwood64a648c2011-07-25 11:15:15 +01003901
Benoit Cousson44ba2642014-07-08 23:19:36 +02003902static void dapm_connect_dai_link_widgets(struct snd_soc_card *card,
3903 struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003904{
Benoit Cousson44ba2642014-07-08 23:19:36 +02003905 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003906 struct snd_soc_dapm_widget *sink, *source;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003907 int i;
3908
Benoit Cousson44ba2642014-07-08 23:19:36 +02003909 for (i = 0; i < rtd->num_codecs; i++) {
3910 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003911
Phani Kumar Uppalapati05e2fe82015-06-22 20:46:49 -07003912 if (!cpu_dai->component->codec)
3913 continue;
3914
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003915 /* connect BE DAI playback if widgets are valid */
3916 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003917 source = cpu_dai->playback_widget;
3918 sink = codec_dai->playback_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003919 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003920 cpu_dai->component->name, source->name,
3921 codec_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003922
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003923 snd_soc_dapm_add_path(&card->dapm, source, sink,
3924 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003925 }
3926
3927 /* connect BE DAI capture if widgets are valid */
3928 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003929 source = codec_dai->capture_widget;
3930 sink = cpu_dai->capture_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003931 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003932 codec_dai->component->name, source->name,
3933 cpu_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003934
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003935 snd_soc_dapm_add_path(&card->dapm, source, sink,
3936 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003937 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003938 }
3939}
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003940
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003941static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
3942 int event)
3943{
3944 struct snd_soc_dapm_widget *w;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003945 unsigned int ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003946
3947 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
3948 w = dai->playback_widget;
3949 else
3950 w = dai->capture_widget;
3951
3952 if (w) {
3953 dapm_mark_dirty(w, "stream event");
3954
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003955 if (w->id == snd_soc_dapm_dai_in) {
3956 ep = SND_SOC_DAPM_EP_SOURCE;
3957 dapm_widget_invalidate_input_paths(w);
3958 } else {
3959 ep = SND_SOC_DAPM_EP_SINK;
3960 dapm_widget_invalidate_output_paths(w);
3961 }
3962
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003963 switch (event) {
3964 case SND_SOC_DAPM_STREAM_START:
3965 w->active = 1;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003966 w->is_ep = ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003967 break;
3968 case SND_SOC_DAPM_STREAM_STOP:
3969 w->active = 0;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003970 w->is_ep = 0;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003971 break;
3972 case SND_SOC_DAPM_STREAM_SUSPEND:
3973 case SND_SOC_DAPM_STREAM_RESUME:
3974 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3975 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3976 break;
3977 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003978 }
3979}
3980
Benoit Cousson44ba2642014-07-08 23:19:36 +02003981void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
3982{
Mengdong Lin1a497982015-11-18 02:34:11 -05003983 struct snd_soc_pcm_runtime *rtd;
Benoit Cousson44ba2642014-07-08 23:19:36 +02003984
3985 /* for each BE DAI link... */
Mengdong Lin1a497982015-11-18 02:34:11 -05003986 list_for_each_entry(rtd, &card->rtd_list, list) {
Benoit Cousson44ba2642014-07-08 23:19:36 +02003987 /*
3988 * dynamic FE links have no fixed DAI mapping.
3989 * CODEC<->CODEC links have no direct connection.
3990 */
3991 if (rtd->dai_link->dynamic || rtd->dai_link->params)
3992 continue;
3993
3994 dapm_connect_dai_link_widgets(card, rtd);
3995 }
3996}
3997
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003998static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3999 int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004000{
Benoit Cousson44ba2642014-07-08 23:19:36 +02004001 int i;
4002
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02004003 soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
Benoit Cousson44ba2642014-07-08 23:19:36 +02004004 for (i = 0; i < rtd->num_codecs; i++)
4005 soc_dapm_dai_stream_event(rtd->codec_dais[i], stream, event);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004006
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004007 dapm_power_widgets(rtd->card, event);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004008}
4009
4010/**
4011 * snd_soc_dapm_stream_event - send a stream event to the dapm core
4012 * @rtd: PCM runtime data
4013 * @stream: stream name
4014 * @event: stream event
4015 *
4016 * Sends a stream event to the dapm core. The core then makes any
4017 * necessary widget power changes.
4018 *
4019 * Returns 0 for success else error.
4020 */
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004021void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
4022 int event)
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004023{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00004024 struct snd_soc_card *card = rtd->card;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004025
Liam Girdwood3cd04342012-03-09 12:02:08 +00004026 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00004027 soc_dapm_stream_event(rtd, stream, event);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00004028 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004029}
Richard Purdie2b97eab2006-10-06 18:32:18 +02004030
4031/**
Charles Keepax11391102014-02-18 15:22:14 +00004032 * snd_soc_dapm_enable_pin_unlocked - enable pin.
4033 * @dapm: DAPM context
4034 * @pin: pin name
4035 *
4036 * Enables input/output pin and its parents or children widgets iff there is
4037 * a valid audio route and active audio stream.
4038 *
4039 * Requires external locking.
4040 *
4041 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4042 * do any widget power switching.
4043 */
4044int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4045 const char *pin)
4046{
4047 return snd_soc_dapm_set_pin(dapm, pin, 1);
4048}
4049EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
4050
4051/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004052 * snd_soc_dapm_enable_pin - enable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004053 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004054 * @pin: pin name
Richard Purdie2b97eab2006-10-06 18:32:18 +02004055 *
Mark Brown74b8f952009-06-06 11:26:15 +01004056 * Enables input/output pin and its parents or children widgets iff there is
Liam Girdwooda5302182008-07-07 13:35:17 +01004057 * a valid audio route and active audio stream.
Charles Keepax11391102014-02-18 15:22:14 +00004058 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004059 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4060 * do any widget power switching.
Richard Purdie2b97eab2006-10-06 18:32:18 +02004061 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004062int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004063{
Charles Keepax11391102014-02-18 15:22:14 +00004064 int ret;
4065
4066 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4067
4068 ret = snd_soc_dapm_set_pin(dapm, pin, 1);
4069
4070 mutex_unlock(&dapm->card->dapm_mutex);
4071
4072 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02004073}
Liam Girdwooda5302182008-07-07 13:35:17 +01004074EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004075
4076/**
Charles Keepax11391102014-02-18 15:22:14 +00004077 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4078 * @dapm: DAPM context
4079 * @pin: pin name
4080 *
4081 * Enables input/output pin regardless of any other state. This is
4082 * intended for use with microphone bias supplies used in microphone
4083 * jack detection.
4084 *
4085 * Requires external locking.
4086 *
4087 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4088 * do any widget power switching.
4089 */
4090int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4091 const char *pin)
4092{
4093 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4094
4095 if (!w) {
4096 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4097 return -EINVAL;
4098 }
4099
4100 dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02004101 if (!w->connected) {
4102 /*
4103 * w->force does not affect the number of input or output paths,
4104 * so we only have to recheck if w->connected is changed
4105 */
4106 dapm_widget_invalidate_input_paths(w);
4107 dapm_widget_invalidate_output_paths(w);
4108 w->connected = 1;
4109 }
Charles Keepax11391102014-02-18 15:22:14 +00004110 w->force = 1;
4111 dapm_mark_dirty(w, "force enable");
4112
4113 return 0;
4114}
4115EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
4116
4117/**
Mark Brownda341832010-03-15 19:23:37 +00004118 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004119 * @dapm: DAPM context
Mark Brownda341832010-03-15 19:23:37 +00004120 * @pin: pin name
4121 *
4122 * Enables input/output pin regardless of any other state. This is
4123 * intended for use with microphone bias supplies used in microphone
4124 * jack detection.
4125 *
4126 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4127 * do any widget power switching.
4128 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004129int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
4130 const char *pin)
Mark Brownda341832010-03-15 19:23:37 +00004131{
Charles Keepax11391102014-02-18 15:22:14 +00004132 int ret;
Mark Brownda341832010-03-15 19:23:37 +00004133
Charles Keepax11391102014-02-18 15:22:14 +00004134 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownda341832010-03-15 19:23:37 +00004135
Charles Keepax11391102014-02-18 15:22:14 +00004136 ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
Mark Brown0d867332011-04-06 11:38:14 +09004137
Charles Keepax11391102014-02-18 15:22:14 +00004138 mutex_unlock(&dapm->card->dapm_mutex);
4139
4140 return ret;
Mark Brownda341832010-03-15 19:23:37 +00004141}
4142EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4143
4144/**
Charles Keepax11391102014-02-18 15:22:14 +00004145 * snd_soc_dapm_disable_pin_unlocked - disable pin.
4146 * @dapm: DAPM context
4147 * @pin: pin name
4148 *
4149 * Disables input/output pin and its parents or children widgets.
4150 *
4151 * Requires external locking.
4152 *
4153 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4154 * do any widget power switching.
4155 */
4156int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4157 const char *pin)
4158{
4159 return snd_soc_dapm_set_pin(dapm, pin, 0);
4160}
4161EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4162
4163/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004164 * snd_soc_dapm_disable_pin - disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004165 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004166 * @pin: pin name
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004167 *
Mark Brown74b8f952009-06-06 11:26:15 +01004168 * Disables input/output pin and its parents or children widgets.
Charles Keepax11391102014-02-18 15:22:14 +00004169 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004170 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4171 * do any widget power switching.
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004172 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004173int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4174 const char *pin)
Liam Girdwooda5302182008-07-07 13:35:17 +01004175{
Charles Keepax11391102014-02-18 15:22:14 +00004176 int ret;
4177
4178 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4179
4180 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4181
4182 mutex_unlock(&dapm->card->dapm_mutex);
4183
4184 return ret;
Liam Girdwooda5302182008-07-07 13:35:17 +01004185}
4186EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4187
4188/**
Charles Keepax11391102014-02-18 15:22:14 +00004189 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4190 * @dapm: DAPM context
4191 * @pin: pin name
4192 *
4193 * Marks the specified pin as being not connected, disabling it along
4194 * any parent or child widgets. At present this is identical to
4195 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4196 * additional things such as disabling controls which only affect
4197 * paths through the pin.
4198 *
4199 * Requires external locking.
4200 *
4201 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4202 * do any widget power switching.
4203 */
4204int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4205 const char *pin)
4206{
4207 return snd_soc_dapm_set_pin(dapm, pin, 0);
4208}
4209EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4210
4211/**
Mark Brown5817b522008-09-24 11:23:11 +01004212 * snd_soc_dapm_nc_pin - permanently disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004213 * @dapm: DAPM context
Mark Brown5817b522008-09-24 11:23:11 +01004214 * @pin: pin name
4215 *
4216 * Marks the specified pin as being not connected, disabling it along
4217 * any parent or child widgets. At present this is identical to
4218 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4219 * additional things such as disabling controls which only affect
4220 * paths through the pin.
4221 *
4222 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4223 * do any widget power switching.
4224 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004225int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Mark Brown5817b522008-09-24 11:23:11 +01004226{
Charles Keepax11391102014-02-18 15:22:14 +00004227 int ret;
4228
4229 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4230
4231 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4232
4233 mutex_unlock(&dapm->card->dapm_mutex);
4234
4235 return ret;
Mark Brown5817b522008-09-24 11:23:11 +01004236}
4237EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4238
4239/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004240 * snd_soc_dapm_get_pin_status - get audio pin status
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004241 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004242 * @pin: audio signal pin endpoint (or start point)
4243 *
4244 * Get audio pin status - connected or disconnected.
4245 *
4246 * Returns 1 for connected otherwise 0.
4247 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004248int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4249 const char *pin)
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004250{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004251 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004252
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004253 if (w)
4254 return w->connected;
Stephen Warrena68b38a2011-04-19 15:25:11 -06004255
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004256 return 0;
4257}
Liam Girdwooda5302182008-07-07 13:35:17 +01004258EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004259
4260/**
Mark Brown1547aba2010-05-07 21:11:40 +01004261 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004262 * @dapm: DAPM context
Mark Brown1547aba2010-05-07 21:11:40 +01004263 * @pin: audio signal pin endpoint (or start point)
4264 *
4265 * Mark the given endpoint or pin as ignoring suspend. When the
4266 * system is disabled a path between two endpoints flagged as ignoring
4267 * suspend will not be disabled. The path must already be enabled via
4268 * normal means at suspend time, it will not be turned on if it was not
4269 * already enabled.
4270 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004271int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4272 const char *pin)
Mark Brown1547aba2010-05-07 21:11:40 +01004273{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004274 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
Mark Brown1547aba2010-05-07 21:11:40 +01004275
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004276 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004277 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004278 return -EINVAL;
Mark Brown1547aba2010-05-07 21:11:40 +01004279 }
4280
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004281 w->ignore_suspend = 1;
4282
4283 return 0;
Mark Brown1547aba2010-05-07 21:11:40 +01004284}
4285EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4286
Lars-Peter Clausencdc45082014-10-20 19:36:33 +02004287/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02004288 * snd_soc_dapm_free - free dapm resources
Peter Ujfalusi728a5222011-08-26 16:33:52 +03004289 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02004290 *
4291 * Free all dapm widgets and resources.
4292 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004293void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004294{
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02004295 dapm_debugfs_cleanup(dapm);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004296 dapm_free_widgets(dapm);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02004297 list_del(&dapm->list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004298}
4299EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4300
Xiang Xiao57996352014-03-02 00:04:02 +08004301static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
Mark Brown51737472009-06-22 13:16:51 +01004302{
Liam Girdwood01005a72012-07-06 16:57:05 +01004303 struct snd_soc_card *card = dapm->card;
Mark Brown51737472009-06-22 13:16:51 +01004304 struct snd_soc_dapm_widget *w;
4305 LIST_HEAD(down_list);
4306 int powerdown = 0;
4307
Liam Girdwood01005a72012-07-06 16:57:05 +01004308 mutex_lock(&card->dapm_mutex);
4309
Jarkko Nikula97c866d2010-12-14 12:18:31 +02004310 list_for_each_entry(w, &dapm->card->widgets, list) {
4311 if (w->dapm != dapm)
4312 continue;
Mark Brown51737472009-06-22 13:16:51 +01004313 if (w->power) {
Mark Brown828a8422011-01-15 13:14:30 +00004314 dapm_seq_insert(w, &down_list, false);
Mark Brownc2caa4d2009-06-26 15:36:56 +01004315 w->power = 0;
Mark Brown51737472009-06-22 13:16:51 +01004316 powerdown = 1;
4317 }
4318 }
4319
4320 /* If there were no widgets to power down we're already in
4321 * standby.
4322 */
4323 if (powerdown) {
Mark Brown7679e422012-02-22 15:52:56 +00004324 if (dapm->bias_level == SND_SOC_BIAS_ON)
4325 snd_soc_dapm_set_bias_level(dapm,
4326 SND_SOC_BIAS_PREPARE);
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004327 dapm_seq_run(card, &down_list, 0, false);
Mark Brown7679e422012-02-22 15:52:56 +00004328 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4329 snd_soc_dapm_set_bias_level(dapm,
4330 SND_SOC_BIAS_STANDBY);
Mark Brown51737472009-06-22 13:16:51 +01004331 }
Liam Girdwood01005a72012-07-06 16:57:05 +01004332
4333 mutex_unlock(&card->dapm_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004334}
Mark Brown51737472009-06-22 13:16:51 +01004335
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004336/*
4337 * snd_soc_dapm_shutdown - callback for system shutdown
4338 */
4339void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4340{
Xiang Xiao57996352014-03-02 00:04:02 +08004341 struct snd_soc_dapm_context *dapm;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004342
Xiang Xiao57996352014-03-02 00:04:02 +08004343 list_for_each_entry(dapm, &card->dapm_list, list) {
Xiang Xiao17282ba2014-03-02 00:04:03 +08004344 if (dapm != &card->dapm) {
4345 soc_dapm_shutdown_dapm(dapm);
4346 if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4347 snd_soc_dapm_set_bias_level(dapm,
4348 SND_SOC_BIAS_OFF);
4349 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004350 }
Xiang Xiao17282ba2014-03-02 00:04:03 +08004351
4352 soc_dapm_shutdown_dapm(&card->dapm);
4353 if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4354 snd_soc_dapm_set_bias_level(&card->dapm,
4355 SND_SOC_BIAS_OFF);
Mark Brown51737472009-06-22 13:16:51 +01004356}
4357
Richard Purdie2b97eab2006-10-06 18:32:18 +02004358/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004359MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Richard Purdie2b97eab2006-10-06 18:32:18 +02004360MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4361MODULE_LICENSE("GPL");