blob: 335c7de2b0466ecfbae706fc0420078ed3bd6e48 [file] [log] [blame]
Richard Purdie2b97eab2006-10-06 18:32:18 +02001/*
2 * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
3 *
4 * Copyright 2005 Wolfson Microelectronics PLC.
Liam Girdwoodd3311242008-10-12 13:17:36 +01005 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
Richard Purdie2b97eab2006-10-06 18:32:18 +02006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
Richard Purdie2b97eab2006-10-06 18:32:18 +020012 * Features:
13 * o Changes power status of internal codec blocks depending on the
14 * dynamic configuration of codec internal audio paths and active
Mark Brown74b8f952009-06-06 11:26:15 +010015 * DACs/ADCs.
Richard Purdie2b97eab2006-10-06 18:32:18 +020016 * o Platform power domain - can support external components i.e. amps and
Liam Girdwood612a3fe2012-02-06 16:05:29 +000017 * mic/headphone insertion events.
Richard Purdie2b97eab2006-10-06 18:32:18 +020018 * o Automatic Mic Bias support
19 * o Jack insertion power event initiation - e.g. hp insertion will enable
20 * sinks, dacs, etc
Liam Girdwood612a3fe2012-02-06 16:05:29 +000021 * o Delayed power down of audio subsystem to reduce pops between a quick
Richard Purdie2b97eab2006-10-06 18:32:18 +020022 * device reopen.
23 *
Richard Purdie2b97eab2006-10-06 18:32:18 +020024 */
25
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/init.h>
Mark Brown9d0624a2011-02-18 11:49:43 -080029#include <linux/async.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020030#include <linux/delay.h>
31#include <linux/pm.h>
32#include <linux/bitops.h>
33#include <linux/platform_device.h>
34#include <linux/jiffies.h>
Takashi Iwai20496ff2009-08-24 09:40:34 +020035#include <linux/debugfs.h>
Mark Brownf1aac482011-12-05 15:17:06 +000036#include <linux/pm_runtime.h>
Mark Brown62ea8742012-01-21 21:14:48 +000037#include <linux/regulator/consumer.h>
Ola Liljad7e7eb92012-05-24 15:26:25 +020038#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020040#include <sound/core.h>
41#include <sound/pcm.h>
42#include <sound/pcm_params.h>
Liam Girdwoodce6120c2010-11-05 15:53:46 +020043#include <sound/soc.h>
Richard Purdie2b97eab2006-10-06 18:32:18 +020044#include <sound/initval.h>
45
Mark Brown84e90932010-11-04 00:07:02 -040046#include <trace/events/asoc.h>
47
Mark Brownde02d072011-09-20 21:43:24 +010048#define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++;
49
Lars-Peter Clausena3423b02015-08-11 21:38:00 +020050#define SND_SOC_DAPM_DIR_REVERSE(x) ((x == SND_SOC_DAPM_DIR_IN) ? \
51 SND_SOC_DAPM_DIR_OUT : SND_SOC_DAPM_DIR_IN)
52
53#define snd_soc_dapm_for_each_direction(dir) \
54 for ((dir) = SND_SOC_DAPM_DIR_IN; (dir) <= SND_SOC_DAPM_DIR_OUT; \
55 (dir)++)
56
Lars-Peter Clausen57295072013-08-05 11:27:31 +020057static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
58 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
59 const char *control,
60 int (*connected)(struct snd_soc_dapm_widget *source,
61 struct snd_soc_dapm_widget *sink));
Vladimir Zapolskiy5353f652015-06-02 00:57:53 +030062
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +010063struct snd_soc_dapm_widget *
Lars-Peter Clausen57295072013-08-05 11:27:31 +020064snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
65 const struct snd_soc_dapm_widget *widget);
66
Liam Girdwood02aa78a2015-05-25 18:21:17 +010067struct snd_soc_dapm_widget *
68snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +020069 const struct snd_soc_dapm_widget *widget);
70
Richard Purdie2b97eab2006-10-06 18:32:18 +020071/* dapm power sequences - make this per codec in the future */
72static int dapm_up_seq[] = {
Mark Brown38357ab2009-06-06 19:03:23 +010073 [snd_soc_dapm_pre] = 0,
Mark Brown62ea8742012-01-21 21:14:48 +000074 [snd_soc_dapm_regulator_supply] = 1,
Ola Liljad7e7eb92012-05-24 15:26:25 +020075 [snd_soc_dapm_clock_supply] = 1,
Mark Brown1dd275b2013-10-09 13:56:37 +010076 [snd_soc_dapm_supply] = 2,
77 [snd_soc_dapm_micbias] = 3,
Mark Brownc74184e2012-04-04 22:12:09 +010078 [snd_soc_dapm_dai_link] = 2,
Mark Brown1dd275b2013-10-09 13:56:37 +010079 [snd_soc_dapm_dai_in] = 4,
80 [snd_soc_dapm_dai_out] = 4,
81 [snd_soc_dapm_aif_in] = 4,
82 [snd_soc_dapm_aif_out] = 4,
83 [snd_soc_dapm_mic] = 5,
84 [snd_soc_dapm_mux] = 6,
Lars-Peter Clausend714f972015-05-01 18:02:43 +020085 [snd_soc_dapm_demux] = 6,
Mark Brown1dd275b2013-10-09 13:56:37 +010086 [snd_soc_dapm_dac] = 7,
87 [snd_soc_dapm_switch] = 8,
88 [snd_soc_dapm_mixer] = 8,
89 [snd_soc_dapm_mixer_named_ctl] = 8,
90 [snd_soc_dapm_pga] = 9,
91 [snd_soc_dapm_adc] = 10,
92 [snd_soc_dapm_out_drv] = 11,
93 [snd_soc_dapm_hp] = 11,
94 [snd_soc_dapm_spk] = 11,
95 [snd_soc_dapm_line] = 11,
96 [snd_soc_dapm_kcontrol] = 12,
97 [snd_soc_dapm_post] = 13,
Richard Purdie2b97eab2006-10-06 18:32:18 +020098};
Ian Moltonca9c1aa2009-01-06 20:11:51 +000099
Richard Purdie2b97eab2006-10-06 18:32:18 +0200100static int dapm_down_seq[] = {
Mark Brown38357ab2009-06-06 19:03:23 +0100101 [snd_soc_dapm_pre] = 0,
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200102 [snd_soc_dapm_kcontrol] = 1,
103 [snd_soc_dapm_adc] = 2,
104 [snd_soc_dapm_hp] = 3,
105 [snd_soc_dapm_spk] = 3,
106 [snd_soc_dapm_line] = 3,
107 [snd_soc_dapm_out_drv] = 3,
Mark Brown38357ab2009-06-06 19:03:23 +0100108 [snd_soc_dapm_pga] = 4,
Lars-Peter Clausenefc77e32013-06-14 13:16:50 +0200109 [snd_soc_dapm_switch] = 5,
Mark Brown38357ab2009-06-06 19:03:23 +0100110 [snd_soc_dapm_mixer_named_ctl] = 5,
Mark Browne3d4dab2009-06-07 13:08:45 +0100111 [snd_soc_dapm_mixer] = 5,
112 [snd_soc_dapm_dac] = 6,
113 [snd_soc_dapm_mic] = 7,
114 [snd_soc_dapm_micbias] = 8,
115 [snd_soc_dapm_mux] = 9,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200116 [snd_soc_dapm_demux] = 9,
Mark Brown010ff262009-08-17 17:39:22 +0100117 [snd_soc_dapm_aif_in] = 10,
118 [snd_soc_dapm_aif_out] = 10,
Mark Brown46162742013-06-05 19:36:11 +0100119 [snd_soc_dapm_dai_in] = 10,
120 [snd_soc_dapm_dai_out] = 10,
Mark Brownc74184e2012-04-04 22:12:09 +0100121 [snd_soc_dapm_dai_link] = 11,
Mark Brownc74184e2012-04-04 22:12:09 +0100122 [snd_soc_dapm_supply] = 12,
Mark Brown1dd275b2013-10-09 13:56:37 +0100123 [snd_soc_dapm_clock_supply] = 13,
124 [snd_soc_dapm_regulator_supply] = 13,
125 [snd_soc_dapm_post] = 14,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200126};
127
Mark Brownf9fa2b12014-03-06 16:49:11 +0800128static void dapm_assert_locked(struct snd_soc_dapm_context *dapm)
129{
130 if (dapm->card && dapm->card->instantiated)
131 lockdep_assert_held(&dapm->card->dapm_mutex);
132}
133
Troy Kisky12ef1932008-10-13 17:42:14 -0700134static void pop_wait(u32 pop_time)
Mark Brown15e4c722008-07-02 11:51:20 +0100135{
136 if (pop_time)
137 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
138}
139
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200140static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...)
Mark Brown15e4c722008-07-02 11:51:20 +0100141{
142 va_list args;
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200143 char *buf;
144
145 if (!pop_time)
146 return;
147
148 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
149 if (buf == NULL)
150 return;
Mark Brown15e4c722008-07-02 11:51:20 +0100151
152 va_start(args, fmt);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200153 vsnprintf(buf, PAGE_SIZE, fmt, args);
Takashi Iwai9d01df02010-12-22 14:08:40 +0100154 dev_info(dev, "%s", buf);
Mark Brown15e4c722008-07-02 11:51:20 +0100155 va_end(args);
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +0200156
157 kfree(buf);
Mark Brown15e4c722008-07-02 11:51:20 +0100158}
159
Mark Browndb432b42011-10-03 21:06:40 +0100160static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w)
161{
162 return !list_empty(&w->dirty);
163}
164
Mark Brown492c0a12014-03-06 16:15:48 +0800165static void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason)
Mark Browndb432b42011-10-03 21:06:40 +0100166{
Mark Brownf9fa2b12014-03-06 16:49:11 +0800167 dapm_assert_locked(w->dapm);
168
Mark Brown75c1f892011-10-04 22:28:08 +0100169 if (!dapm_dirty_widget(w)) {
170 dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n",
171 w->name, reason);
Mark Browndb432b42011-10-03 21:06:40 +0100172 list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty);
Mark Brown75c1f892011-10-04 22:28:08 +0100173 }
Mark Browndb432b42011-10-03 21:06:40 +0100174}
175
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200176/*
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200177 * Common implementation for dapm_widget_invalidate_input_paths() and
178 * dapm_widget_invalidate_output_paths(). The function is inlined since the
179 * combined size of the two specialized functions is only marginally larger then
180 * the size of the generic function and at the same time the fast path of the
181 * specialized functions is significantly smaller than the generic function.
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200182 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200183static __always_inline void dapm_widget_invalidate_paths(
184 struct snd_soc_dapm_widget *w, enum snd_soc_dapm_direction dir)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200185{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200186 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
187 struct snd_soc_dapm_widget *node;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200188 struct snd_soc_dapm_path *p;
189 LIST_HEAD(list);
190
191 dapm_assert_locked(w->dapm);
192
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200193 if (w->endpoints[dir] == -1)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200194 return;
195
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200196 list_add_tail(&w->work_list, &list);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200197 w->endpoints[dir] = -1;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200198
199 list_for_each_entry(w, &list, work_list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200200 snd_soc_dapm_widget_for_each_path(w, dir, p) {
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200201 if (p->is_supply || p->weak || !p->connect)
202 continue;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200203 node = p->node[rdir];
204 if (node->endpoints[dir] != -1) {
205 node->endpoints[dir] = -1;
206 list_add_tail(&node->work_list, &list);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200207 }
208 }
209 }
210}
211
212/*
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200213 * dapm_widget_invalidate_input_paths() - Invalidate the cached number of
214 * input paths
215 * @w: The widget for which to invalidate the cached number of input paths
216 *
217 * Resets the cached number of inputs for the specified widget and all widgets
218 * that can be reached via outcoming paths from the widget.
219 *
220 * This function must be called if the number of output paths for a widget might
221 * have changed. E.g. if the source state of a widget changes or a path is added
222 * or activated with the widget as the sink.
223 */
224static void dapm_widget_invalidate_input_paths(struct snd_soc_dapm_widget *w)
225{
226 dapm_widget_invalidate_paths(w, SND_SOC_DAPM_DIR_IN);
227}
228
229/*
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200230 * dapm_widget_invalidate_output_paths() - Invalidate the cached number of
231 * output paths
232 * @w: The widget for which to invalidate the cached number of output paths
233 *
234 * Resets the cached number of outputs for the specified widget and all widgets
235 * that can be reached via incoming paths from the widget.
236 *
237 * This function must be called if the number of output paths for a widget might
238 * have changed. E.g. if the sink state of a widget changes or a path is added
239 * or activated with the widget as the source.
240 */
241static void dapm_widget_invalidate_output_paths(struct snd_soc_dapm_widget *w)
242{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200243 dapm_widget_invalidate_paths(w, SND_SOC_DAPM_DIR_OUT);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200244}
245
246/*
247 * dapm_path_invalidate() - Invalidates the cached number of inputs and outputs
248 * for the widgets connected to a path
249 * @p: The path to invalidate
250 *
251 * Resets the cached number of inputs for the sink of the path and the cached
252 * number of outputs for the source of the path.
253 *
254 * This function must be called when a path is added, removed or the connected
255 * state changes.
256 */
257static void dapm_path_invalidate(struct snd_soc_dapm_path *p)
258{
259 /*
260 * Weak paths or supply paths do not influence the number of input or
261 * output paths of their neighbors.
262 */
263 if (p->weak || p->is_supply)
264 return;
265
266 /*
267 * The number of connected endpoints is the sum of the number of
268 * connected endpoints of all neighbors. If a node with 0 connected
269 * endpoints is either connected or disconnected that sum won't change,
270 * so there is no need to re-check the path.
271 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200272 if (p->source->endpoints[SND_SOC_DAPM_DIR_IN] != 0)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200273 dapm_widget_invalidate_input_paths(p->sink);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200274 if (p->sink->endpoints[SND_SOC_DAPM_DIR_OUT] != 0)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200275 dapm_widget_invalidate_output_paths(p->source);
276}
277
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200278void dapm_mark_endpoints_dirty(struct snd_soc_card *card)
Mark Browne2d32ff2012-08-31 17:38:32 -0700279{
Mark Browne2d32ff2012-08-31 17:38:32 -0700280 struct snd_soc_dapm_widget *w;
281
282 mutex_lock(&card->dapm_mutex);
283
284 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200285 if (w->is_ep) {
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200286 dapm_mark_dirty(w, "Rechecking endpoints");
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200287 if (w->is_ep & SND_SOC_DAPM_EP_SINK)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200288 dapm_widget_invalidate_output_paths(w);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200289 if (w->is_ep & SND_SOC_DAPM_EP_SOURCE)
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +0200290 dapm_widget_invalidate_input_paths(w);
291 }
Mark Browne2d32ff2012-08-31 17:38:32 -0700292 }
293
294 mutex_unlock(&card->dapm_mutex);
295}
Lars-Peter Clausen8be4da22014-10-25 17:42:01 +0200296EXPORT_SYMBOL_GPL(dapm_mark_endpoints_dirty);
Mark Browne2d32ff2012-08-31 17:38:32 -0700297
Richard Purdie2b97eab2006-10-06 18:32:18 +0200298/* create a new dapm widget */
Takashi Iwai88cb4292007-02-05 14:56:20 +0100299static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
Richard Purdie2b97eab2006-10-06 18:32:18 +0200300 const struct snd_soc_dapm_widget *_widget)
301{
Takashi Iwai88cb4292007-02-05 14:56:20 +0100302 return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200303}
304
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200305struct dapm_kcontrol_data {
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200306 unsigned int value;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200307 struct snd_soc_dapm_widget *widget;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200308 struct list_head paths;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200309 struct snd_soc_dapm_widget_list *wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200310};
311
312static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
313 struct snd_kcontrol *kcontrol)
314{
315 struct dapm_kcontrol_data *data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200316 struct soc_mixer_control *mc;
Charles Keepax561ed682015-05-01 12:37:26 +0100317 struct soc_enum *e;
Charles Keepax773da9b2015-05-01 12:37:25 +0100318 const char *name;
319 int ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200320
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200321 data = kzalloc(sizeof(*data), GFP_KERNEL);
Charles Keepax40b7bea2015-05-01 12:37:24 +0100322 if (!data)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200323 return -ENOMEM;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200324
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200325 INIT_LIST_HEAD(&data->paths);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200326
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200327 switch (widget->id) {
328 case snd_soc_dapm_switch:
329 case snd_soc_dapm_mixer:
330 case snd_soc_dapm_mixer_named_ctl:
331 mc = (struct soc_mixer_control *)kcontrol->private_value;
332
333 if (mc->autodisable) {
334 struct snd_soc_dapm_widget template;
335
Charles Keepax773da9b2015-05-01 12:37:25 +0100336 name = kasprintf(GFP_KERNEL, "%s %s", kcontrol->id.name,
337 "Autodisable");
338 if (!name) {
339 ret = -ENOMEM;
340 goto err_data;
341 }
342
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200343 memset(&template, 0, sizeof(template));
344 template.reg = mc->reg;
345 template.mask = (1 << fls(mc->max)) - 1;
346 template.shift = mc->shift;
347 if (mc->invert)
348 template.off_val = mc->max;
349 else
350 template.off_val = 0;
351 template.on_val = template.off_val;
352 template.id = snd_soc_dapm_kcontrol;
Charles Keepax773da9b2015-05-01 12:37:25 +0100353 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200354
Lars-Peter Clausen2daabd72013-08-30 17:39:33 +0200355 data->value = template.on_val;
356
Liam Girdwood02aa78a2015-05-25 18:21:17 +0100357 data->widget =
358 snd_soc_dapm_new_control_unlocked(widget->dapm,
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200359 &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200360 kfree(name);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200361 if (!data->widget) {
Charles Keepax773da9b2015-05-01 12:37:25 +0100362 ret = -ENOMEM;
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200363 goto err_data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200364 }
365 }
366 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200367 case snd_soc_dapm_demux:
Charles Keepax561ed682015-05-01 12:37:26 +0100368 case snd_soc_dapm_mux:
369 e = (struct soc_enum *)kcontrol->private_value;
370
371 if (e->autodisable) {
372 struct snd_soc_dapm_widget template;
373
374 name = kasprintf(GFP_KERNEL, "%s %s", kcontrol->id.name,
375 "Autodisable");
376 if (!name) {
377 ret = -ENOMEM;
378 goto err_data;
379 }
380
381 memset(&template, 0, sizeof(template));
382 template.reg = e->reg;
383 template.mask = e->mask << e->shift_l;
384 template.shift = e->shift_l;
385 template.off_val = snd_soc_enum_item_to_val(e, 0);
386 template.on_val = template.off_val;
387 template.id = snd_soc_dapm_kcontrol;
388 template.name = name;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200389
390 data->value = template.on_val;
391
Charles Keepaxffacb482015-06-26 10:39:43 +0100392 data->widget = snd_soc_dapm_new_control_unlocked(
393 widget->dapm, &template);
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200394 kfree(name);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200395 if (!data->widget) {
Charles Keepax561ed682015-05-01 12:37:26 +0100396 ret = -ENOMEM;
Lars-Peter Clausene18077b2015-07-08 21:59:59 +0200397 goto err_data;
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200398 }
Charles Keepax561ed682015-05-01 12:37:26 +0100399
400 snd_soc_dapm_add_path(widget->dapm, data->widget,
401 widget, NULL, NULL);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200402 }
403 break;
404 default:
405 break;
406 }
407
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200408 kcontrol->private_data = data;
409
410 return 0;
Charles Keepax773da9b2015-05-01 12:37:25 +0100411
Charles Keepax773da9b2015-05-01 12:37:25 +0100412err_data:
413 kfree(data);
414 return ret;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200415}
416
417static void dapm_kcontrol_free(struct snd_kcontrol *kctl)
418{
419 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kctl);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200420 kfree(data->wlist);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200421 kfree(data);
422}
423
424static struct snd_soc_dapm_widget_list *dapm_kcontrol_get_wlist(
425 const struct snd_kcontrol *kcontrol)
426{
427 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
428
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200429 return data->wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200430}
431
432static int dapm_kcontrol_add_widget(struct snd_kcontrol *kcontrol,
433 struct snd_soc_dapm_widget *widget)
434{
435 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200436 struct snd_soc_dapm_widget_list *new_wlist;
437 unsigned int n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200438
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200439 if (data->wlist)
440 n = data->wlist->num_widgets + 1;
441 else
442 n = 1;
443
444 new_wlist = krealloc(data->wlist,
445 sizeof(*new_wlist) + sizeof(widget) * n, GFP_KERNEL);
446 if (!new_wlist)
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200447 return -ENOMEM;
448
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200449 new_wlist->widgets[n - 1] = widget;
450 new_wlist->num_widgets = n;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200451
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200452 data->wlist = new_wlist;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200453
454 return 0;
455}
456
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200457static void dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol,
458 struct snd_soc_dapm_path *path)
459{
460 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
461
462 list_add_tail(&path->list_kcontrol, &data->paths);
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200463}
464
465static bool dapm_kcontrol_is_powered(const struct snd_kcontrol *kcontrol)
466{
467 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
468
469 if (!data->widget)
470 return true;
471
472 return data->widget->power;
Lars-Peter Clausen5106b922013-07-29 17:14:00 +0200473}
474
475static struct list_head *dapm_kcontrol_get_path_list(
476 const struct snd_kcontrol *kcontrol)
477{
478 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
479
480 return &data->paths;
481}
482
483#define dapm_kcontrol_for_each_path(path, kcontrol) \
484 list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \
485 list_kcontrol)
486
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530487unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol *kcontrol)
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200488{
489 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
490
491 return data->value;
492}
Subhransu S. Prusty5dc0158a2014-09-19 16:46:05 +0530493EXPORT_SYMBOL_GPL(dapm_kcontrol_get_value);
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200494
495static bool dapm_kcontrol_set_value(const struct snd_kcontrol *kcontrol,
496 unsigned int value)
497{
498 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
499
500 if (data->value == value)
501 return false;
502
Lars-Peter Clausen57295072013-08-05 11:27:31 +0200503 if (data->widget)
504 data->widget->on_val = value;
505
Lars-Peter Clausencf7c1de2013-07-29 17:13:59 +0200506 data->value = value;
507
508 return true;
509}
510
Lars-Peter Clauseneee5d7f2013-07-29 17:13:57 +0200511/**
Mythri P K93e39a12015-10-20 22:30:08 +0530512 * snd_soc_dapm_kcontrol_widget() - Returns the widget associated to a
513 * kcontrol
514 * @kcontrol: The kcontrol
515 */
516struct snd_soc_dapm_widget *snd_soc_dapm_kcontrol_widget(
517 struct snd_kcontrol *kcontrol)
518{
519 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0];
520}
521EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_widget);
522
523/**
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200524 * snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a
525 * kcontrol
526 * @kcontrol: The kcontrol
527 *
528 * Note: This function must only be used on kcontrols that are known to have
529 * been registered for a CODEC. Otherwise the behaviour is undefined.
530 */
531struct snd_soc_dapm_context *snd_soc_dapm_kcontrol_dapm(
532 struct snd_kcontrol *kcontrol)
533{
534 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->dapm;
535}
536EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_dapm);
537
Liam Girdwood6c120e12012-02-15 15:15:34 +0000538static void dapm_reset(struct snd_soc_card *card)
539{
540 struct snd_soc_dapm_widget *w;
541
Mark Brownf9fa2b12014-03-06 16:49:11 +0800542 lockdep_assert_held(&card->dapm_mutex);
543
Liam Girdwood6c120e12012-02-15 15:15:34 +0000544 memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
545
546 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +0200547 w->new_power = w->power;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000548 w->power_checked = false;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000549 }
550}
551
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200552static const char *soc_dapm_prefix(struct snd_soc_dapm_context *dapm)
553{
554 if (!dapm->component)
555 return NULL;
556 return dapm->component->name_prefix;
557}
558
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200559static int soc_dapm_read(struct snd_soc_dapm_context *dapm, int reg,
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -0800560 unsigned int *value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100561{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200562 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200563 return -EIO;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200564 return snd_soc_component_read(dapm->component, reg, value);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100565}
566
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200567static int soc_dapm_update_bits(struct snd_soc_dapm_context *dapm,
Bard Liao34775012014-04-17 20:12:56 +0800568 int reg, unsigned int mask, unsigned int value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100569{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200570 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200571 return -EIO;
Mark Brownfcf6c5e2014-12-15 13:08:48 +0000572 return snd_soc_component_update_bits(dapm->component, reg,
573 mask, value);
Liam Girdwood49575fb52012-03-06 18:16:19 +0000574}
575
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200576static int soc_dapm_test_bits(struct snd_soc_dapm_context *dapm,
577 int reg, unsigned int mask, unsigned int value)
578{
579 if (!dapm->component)
580 return -EIO;
581 return snd_soc_component_test_bits(dapm->component, reg, mask, value);
582}
583
Mark Browneb270e92013-10-09 13:52:52 +0100584static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm)
585{
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200586 if (dapm->component)
587 snd_soc_component_async_complete(dapm->component);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100588}
589
Charles Keepax45a110a2015-05-11 13:50:30 +0100590static struct snd_soc_dapm_widget *
591dapm_wcache_lookup(struct snd_soc_dapm_wcache *wcache, const char *name)
592{
593 struct snd_soc_dapm_widget *w = wcache->widget;
594 struct list_head *wlist;
595 const int depth = 2;
596 int i = 0;
597
598 if (w) {
599 wlist = &w->dapm->card->widgets;
600
601 list_for_each_entry_from(w, wlist, list) {
602 if (!strcmp(name, w->name))
603 return w;
604
605 if (++i == depth)
606 break;
607 }
608 }
609
610 return NULL;
611}
612
613static inline void dapm_wcache_update(struct snd_soc_dapm_wcache *wcache,
614 struct snd_soc_dapm_widget *w)
615{
616 wcache->widget = w;
617}
618
Mark Brown452c5ea2009-05-17 21:41:23 +0100619/**
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200620 * snd_soc_dapm_force_bias_level() - Sets the DAPM bias level
621 * @dapm: The DAPM context for which to set the level
622 * @level: The level to set
623 *
624 * Forces the DAPM bias level to a specific state. It will call the bias level
625 * callback of DAPM context with the specified level. This will even happen if
626 * the context is already at the same level. Furthermore it will not go through
627 * the normal bias level sequencing, meaning any intermediate states between the
628 * current and the target state will not be entered.
629 *
630 * Note that the change in bias level is only temporary and the next time
631 * snd_soc_dapm_sync() is called the state will be set to the level as
632 * determined by the DAPM core. The function is mainly intended to be used to
633 * used during probe or resume from suspend to power up the device so
634 * initialization can be done, before the DAPM core takes over.
635 */
636int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm,
637 enum snd_soc_bias_level level)
638{
639 int ret = 0;
640
641 if (dapm->set_bias_level)
642 ret = dapm->set_bias_level(dapm, level);
643
Lars-Peter Clausenf4bf8d72015-04-27 22:13:25 +0200644 if (ret == 0)
645 dapm->bias_level = level;
646
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200647 return ret;
648}
649EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level);
650
Mark Brown452c5ea2009-05-17 21:41:23 +0100651/**
652 * snd_soc_dapm_set_bias_level - set the bias level for the system
Mark Browned5a4c42011-02-18 11:12:42 -0800653 * @dapm: DAPM context
Mark Brown452c5ea2009-05-17 21:41:23 +0100654 * @level: level to configure
655 *
656 * Configure the bias (power) levels for the SoC audio device.
657 *
658 * Returns 0 for success else error.
659 */
Mark Browned5a4c42011-02-18 11:12:42 -0800660static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200661 enum snd_soc_bias_level level)
Mark Brown452c5ea2009-05-17 21:41:23 +0100662{
Mark Browned5a4c42011-02-18 11:12:42 -0800663 struct snd_soc_card *card = dapm->card;
Mark Brown452c5ea2009-05-17 21:41:23 +0100664 int ret = 0;
665
Mark Brown84e90932010-11-04 00:07:02 -0400666 trace_snd_soc_bias_level_start(card, level);
667
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000668 if (card && card->set_bias_level)
Mark Brownd4c60052011-06-06 19:13:23 +0100669 ret = card->set_bias_level(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100670 if (ret != 0)
671 goto out;
Mark Brown452c5ea2009-05-17 21:41:23 +0100672
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200673 if (!card || dapm != &card->dapm)
674 ret = snd_soc_dapm_force_bias_level(dapm, level);
Liam Girdwood41231282012-07-06 16:56:16 +0100675
Mark Brown171ec6b2011-06-06 18:15:19 +0100676 if (ret != 0)
677 goto out;
678
679 if (card && card->set_bias_level_post)
Mark Brownd4c60052011-06-06 19:13:23 +0100680 ret = card->set_bias_level_post(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100681out:
Mark Brown84e90932010-11-04 00:07:02 -0400682 trace_snd_soc_bias_level_done(card, level);
683
Mark Brown452c5ea2009-05-17 21:41:23 +0100684 return ret;
685}
686
Mark Brown74b8f952009-06-06 11:26:15 +0100687/* connect mux widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200688static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200689 struct snd_soc_dapm_path *path, const char *control_name,
690 struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200691{
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200692 const struct snd_kcontrol_new *kcontrol = &w->kcontrol_news[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +0200693 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100694 unsigned int val, item;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200695 int i;
696
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100697 if (e->reg != SND_SOC_NOPM) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200698 soc_dapm_read(dapm, e->reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100699 val = (val >> e->shift_l) & e->mask;
700 item = snd_soc_enum_val_to_item(e, val);
701 } else {
702 /* since a virtual mux has no backing registers to
703 * decide which path to connect, it will try to match
704 * with the first enumeration. This is to ensure
705 * that the default mux choice (the first) will be
706 * correctly powered up during initialization.
707 */
708 item = 0;
709 }
710
Takashi Iwai9a8d38d2014-02-18 08:11:42 +0100711 for (i = 0; i < e->items; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200712 if (!(strcmp(control_name, e->texts[i]))) {
Rasmus Villemoes98ad73c2014-10-21 17:01:15 +0200713 path->name = e->texts[i];
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100714 if (i == item)
715 path->connect = 1;
716 else
717 path->connect = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200718 return 0;
719 }
720 }
721
722 return -ENODEV;
723}
724
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100725/* set up initial codec paths */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200726static void dapm_set_mixer_path_status(struct snd_soc_dapm_path *p, int i)
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100727{
728 struct soc_mixer_control *mc = (struct soc_mixer_control *)
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200729 p->sink->kcontrol_news[i].private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100730 unsigned int reg = mc->reg;
731 unsigned int shift = mc->shift;
732 unsigned int max = mc->max;
733 unsigned int mask = (1 << fls(max)) - 1;
734 unsigned int invert = mc->invert;
735 unsigned int val;
736
737 if (reg != SND_SOC_NOPM) {
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200738 soc_dapm_read(p->sink->dapm, reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100739 val = (val >> shift) & mask;
740 if (invert)
741 val = max - val;
742 p->connect = !!val;
743 } else {
744 p->connect = 0;
745 }
746}
747
Mark Brown74b8f952009-06-06 11:26:15 +0100748/* connect mixer widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200749static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200750 struct snd_soc_dapm_path *path, const char *control_name)
751{
752 int i;
753
754 /* search for mixer kcontrol */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200755 for (i = 0; i < path->sink->num_kcontrols; i++) {
756 if (!strcmp(control_name, path->sink->kcontrol_news[i].name)) {
757 path->name = path->sink->kcontrol_news[i].name;
758 dapm_set_mixer_path_status(path, i);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200759 return 0;
760 }
761 }
762 return -ENODEV;
763}
764
Stephen Warrenaf468002011-04-28 17:38:01 -0600765static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
Stephen Warren1007da02011-05-26 09:57:33 -0600766 struct snd_soc_dapm_widget *kcontrolw,
Stephen Warrenaf468002011-04-28 17:38:01 -0600767 const struct snd_kcontrol_new *kcontrol_new,
768 struct snd_kcontrol **kcontrol)
769{
770 struct snd_soc_dapm_widget *w;
771 int i;
772
773 *kcontrol = NULL;
774
775 list_for_each_entry(w, &dapm->card->widgets, list) {
Stephen Warren1007da02011-05-26 09:57:33 -0600776 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
777 continue;
Stephen Warrenaf468002011-04-28 17:38:01 -0600778 for (i = 0; i < w->num_kcontrols; i++) {
779 if (&w->kcontrol_news[i] == kcontrol_new) {
780 if (w->kcontrols)
781 *kcontrol = w->kcontrols[i];
782 return 1;
783 }
784 }
785 }
786
787 return 0;
788}
789
Stephen Warren85762e72013-03-29 15:40:10 -0600790/*
791 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
792 * create it. Either way, add the widget into the control's widget list
793 */
Jeeja KP19a2557b2015-10-20 22:30:06 +0530794static int dapm_create_or_share_kcontrol(struct snd_soc_dapm_widget *w,
Mark Brown946d92a2013-08-12 23:28:42 +0100795 int kci)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200796{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200797 struct snd_soc_dapm_context *dapm = w->dapm;
Mark Brown12ea2c72011-03-02 18:17:32 +0000798 struct snd_card *card = dapm->card->snd_card;
Mark Brownefb7ac32011-03-08 17:23:24 +0000799 const char *prefix;
Stephen Warren85762e72013-03-29 15:40:10 -0600800 size_t prefix_len;
801 int shared;
802 struct snd_kcontrol *kcontrol;
Stephen Warren85762e72013-03-29 15:40:10 -0600803 bool wname_in_long_name, kcname_in_long_name;
Daniel Macke5092c92014-10-07 13:41:24 +0200804 char *long_name = NULL;
Stephen Warren85762e72013-03-29 15:40:10 -0600805 const char *name;
Daniel Macke5092c92014-10-07 13:41:24 +0200806 int ret = 0;
Mark Brownefb7ac32011-03-08 17:23:24 +0000807
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200808 prefix = soc_dapm_prefix(dapm);
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000809 if (prefix)
810 prefix_len = strlen(prefix) + 1;
811 else
812 prefix_len = 0;
813
Stephen Warren85762e72013-03-29 15:40:10 -0600814 shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[kci],
815 &kcontrol);
816
Stephen Warren85762e72013-03-29 15:40:10 -0600817 if (!kcontrol) {
818 if (shared) {
819 wname_in_long_name = false;
820 kcname_in_long_name = true;
821 } else {
822 switch (w->id) {
823 case snd_soc_dapm_switch:
824 case snd_soc_dapm_mixer:
Jeeja KP19a2557b2015-10-20 22:30:06 +0530825 case snd_soc_dapm_pga:
Stephen Warren85762e72013-03-29 15:40:10 -0600826 wname_in_long_name = true;
827 kcname_in_long_name = true;
828 break;
829 case snd_soc_dapm_mixer_named_ctl:
830 wname_in_long_name = false;
831 kcname_in_long_name = true;
832 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200833 case snd_soc_dapm_demux:
Stephen Warren85762e72013-03-29 15:40:10 -0600834 case snd_soc_dapm_mux:
Stephen Warren85762e72013-03-29 15:40:10 -0600835 wname_in_long_name = true;
836 kcname_in_long_name = false;
837 break;
838 default:
Stephen Warren85762e72013-03-29 15:40:10 -0600839 return -EINVAL;
840 }
841 }
842
843 if (wname_in_long_name && kcname_in_long_name) {
Stephen Warren85762e72013-03-29 15:40:10 -0600844 /*
845 * The control will get a prefix from the control
846 * creation process but we're also using the same
847 * prefix for widgets so cut the prefix off the
848 * front of the widget name.
849 */
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200850 long_name = kasprintf(GFP_KERNEL, "%s %s",
Stephen Warren85762e72013-03-29 15:40:10 -0600851 w->name + prefix_len,
852 w->kcontrol_news[kci].name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200853 if (long_name == NULL)
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200854 return -ENOMEM;
Stephen Warren85762e72013-03-29 15:40:10 -0600855
856 name = long_name;
857 } else if (wname_in_long_name) {
858 long_name = NULL;
859 name = w->name + prefix_len;
860 } else {
861 long_name = NULL;
862 name = w->kcontrol_news[kci].name;
863 }
864
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200865 kcontrol = snd_soc_cnew(&w->kcontrol_news[kci], NULL, name,
Stephen Warren85762e72013-03-29 15:40:10 -0600866 prefix);
Daniel Macke5092c92014-10-07 13:41:24 +0200867 if (!kcontrol) {
868 ret = -ENOMEM;
869 goto exit_free;
870 }
871
Lars-Peter Clausen9356e9d2013-08-01 14:08:06 +0200872 kcontrol->private_free = dapm_kcontrol_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200873
874 ret = dapm_kcontrol_data_alloc(w, kcontrol);
875 if (ret) {
876 snd_ctl_free_one(kcontrol);
Daniel Macke5092c92014-10-07 13:41:24 +0200877 goto exit_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200878 }
879
Stephen Warren85762e72013-03-29 15:40:10 -0600880 ret = snd_ctl_add(card, kcontrol);
881 if (ret < 0) {
882 dev_err(dapm->dev,
883 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
884 w->name, name, ret);
Daniel Macke5092c92014-10-07 13:41:24 +0200885 goto exit_free;
Stephen Warren85762e72013-03-29 15:40:10 -0600886 }
Stephen Warren85762e72013-03-29 15:40:10 -0600887 }
888
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200889 ret = dapm_kcontrol_add_widget(kcontrol, w);
Daniel Macke5092c92014-10-07 13:41:24 +0200890 if (ret == 0)
891 w->kcontrols[kci] = kcontrol;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200892
Daniel Macke5092c92014-10-07 13:41:24 +0200893exit_free:
894 kfree(long_name);
Stephen Warren85762e72013-03-29 15:40:10 -0600895
Daniel Macke5092c92014-10-07 13:41:24 +0200896 return ret;
Stephen Warren85762e72013-03-29 15:40:10 -0600897}
898
899/* create new dapm mixer control */
900static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
901{
902 int i, ret;
903 struct snd_soc_dapm_path *path;
Charles Keepax561ed682015-05-01 12:37:26 +0100904 struct dapm_kcontrol_data *data;
Stephen Warren85762e72013-03-29 15:40:10 -0600905
Richard Purdie2b97eab2006-10-06 18:32:18 +0200906 /* add kcontrol */
907 for (i = 0; i < w->num_kcontrols; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200908 /* match name */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +0200909 snd_soc_dapm_widget_for_each_source_path(w, path) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200910 /* mixer/mux paths name must match control name */
Stephen Warren82cfecd2011-04-28 17:37:58 -0600911 if (path->name != (char *)w->kcontrol_news[i].name)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200912 continue;
913
Charles Keepax561ed682015-05-01 12:37:26 +0100914 if (!w->kcontrols[i]) {
Jeeja KP19a2557b2015-10-20 22:30:06 +0530915 ret = dapm_create_or_share_kcontrol(w, i);
Charles Keepax561ed682015-05-01 12:37:26 +0100916 if (ret < 0)
917 return ret;
Lars-Peter Clausen82cd8762011-08-15 20:15:21 +0200918 }
919
Mark Brown946d92a2013-08-12 23:28:42 +0100920 dapm_kcontrol_add_path(w->kcontrols[i], path);
Charles Keepax561ed682015-05-01 12:37:26 +0100921
922 data = snd_kcontrol_chip(w->kcontrols[i]);
923 if (data->widget)
924 snd_soc_dapm_add_path(data->widget->dapm,
925 data->widget,
926 path->source,
927 NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200928 }
929 }
Stephen Warren85762e72013-03-29 15:40:10 -0600930
931 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200932}
933
934/* create new dapm mux control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200935static int dapm_new_mux(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200936{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200937 struct snd_soc_dapm_context *dapm = w->dapm;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200938 enum snd_soc_dapm_direction dir;
Stephen Warren85762e72013-03-29 15:40:10 -0600939 struct snd_soc_dapm_path *path;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200940 const char *type;
Stephen Warrenaf468002011-04-28 17:38:01 -0600941 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200942
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200943 switch (w->id) {
944 case snd_soc_dapm_mux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200945 dir = SND_SOC_DAPM_DIR_OUT;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200946 type = "mux";
947 break;
948 case snd_soc_dapm_demux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200949 dir = SND_SOC_DAPM_DIR_IN;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200950 type = "demux";
951 break;
952 default:
953 return -EINVAL;
954 }
955
Stephen Warrenaf468002011-04-28 17:38:01 -0600956 if (w->num_kcontrols != 1) {
957 dev_err(dapm->dev,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200958 "ASoC: %s %s has incorrect number of controls\n", type,
Stephen Warrenaf468002011-04-28 17:38:01 -0600959 w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200960 return -EINVAL;
961 }
962
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200963 if (list_empty(&w->edges[dir])) {
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200964 dev_err(dapm->dev, "ASoC: %s %s has no paths\n", type, w->name);
Stephen Warren85762e72013-03-29 15:40:10 -0600965 return -EINVAL;
Stephen Warrenaf468002011-04-28 17:38:01 -0600966 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200967
Jeeja KP19a2557b2015-10-20 22:30:06 +0530968 ret = dapm_create_or_share_kcontrol(w, 0);
Stephen Warren85762e72013-03-29 15:40:10 -0600969 if (ret < 0)
970 return ret;
Stephen Warrenfad59882011-04-28 17:37:59 -0600971
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200972 snd_soc_dapm_widget_for_each_path(w, dir, path) {
973 if (path->name)
974 dapm_kcontrol_add_path(w->kcontrols[0], path);
Lars-Peter Clausen98407ef2014-10-25 17:41:57 +0200975 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200976
Stephen Warrenaf468002011-04-28 17:38:01 -0600977 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200978}
979
980/* create new dapm volume control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200981static int dapm_new_pga(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200982{
Jeeja KP19a2557b2015-10-20 22:30:06 +0530983 int i, ret;
984
985 for (i = 0; i < w->num_kcontrols; i++) {
986 ret = dapm_create_or_share_kcontrol(w, i);
987 if (ret < 0)
988 return ret;
989 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200990
Mark Browna6c65732010-03-03 17:45:21 +0000991 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200992}
993
Nikesh Oswalc6615082015-02-02 17:06:44 +0000994/* create new dapm dai link control */
995static int dapm_new_dai_link(struct snd_soc_dapm_widget *w)
996{
997 int i, ret;
998 struct snd_kcontrol *kcontrol;
999 struct snd_soc_dapm_context *dapm = w->dapm;
1000 struct snd_card *card = dapm->card->snd_card;
1001
1002 /* create control for links with > 1 config */
1003 if (w->num_params <= 1)
1004 return 0;
1005
1006 /* add kcontrol */
1007 for (i = 0; i < w->num_kcontrols; i++) {
1008 kcontrol = snd_soc_cnew(&w->kcontrol_news[i], w,
1009 w->name, NULL);
1010 ret = snd_ctl_add(card, kcontrol);
1011 if (ret < 0) {
1012 dev_err(dapm->dev,
1013 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
1014 w->name, w->kcontrol_news[i].name, ret);
1015 return ret;
1016 }
1017 kcontrol->private_data = w;
1018 w->kcontrols[i] = kcontrol;
1019 }
1020
1021 return 0;
1022}
1023
Mark Brown99497882010-05-07 20:24:05 +01001024/* We implement power down on suspend by checking the power state of
1025 * the ALSA card - when we are suspending the ALSA state for the card
1026 * is set to D3.
1027 */
1028static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
1029{
Mark Brown12ea2c72011-03-02 18:17:32 +00001030 int level = snd_power_get_state(widget->dapm->card->snd_card);
Mark Brown99497882010-05-07 20:24:05 +01001031
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001032 switch (level) {
Mark Brown99497882010-05-07 20:24:05 +01001033 case SNDRV_CTL_POWER_D3hot:
1034 case SNDRV_CTL_POWER_D3cold:
Mark Brown1547aba2010-05-07 21:11:40 +01001035 if (widget->ignore_suspend)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001036 dev_dbg(widget->dapm->dev, "ASoC: %s ignoring suspend\n",
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001037 widget->name);
Mark Brown1547aba2010-05-07 21:11:40 +01001038 return widget->ignore_suspend;
Mark Brown99497882010-05-07 20:24:05 +01001039 default:
1040 return 1;
1041 }
1042}
1043
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001044static int dapm_widget_list_create(struct snd_soc_dapm_widget_list **list,
1045 struct list_head *widgets)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001046{
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001047 struct snd_soc_dapm_widget *w;
1048 struct list_head *it;
1049 unsigned int size = 0;
1050 unsigned int i = 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001051
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001052 list_for_each(it, widgets)
1053 size++;
1054
1055 *list = kzalloc(sizeof(**list) + size * sizeof(*w), GFP_KERNEL);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001056 if (*list == NULL)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001057 return -ENOMEM;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001058
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001059 list_for_each_entry(w, widgets, work_list)
1060 (*list)->widgets[i++] = w;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001061
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001062 (*list)->num_widgets = i;
1063
1064 return 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001065}
1066
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001067/*
1068 * Common implementation for is_connected_output_ep() and
1069 * is_connected_input_ep(). The function is inlined since the combined size of
1070 * the two specialized functions is only marginally larger then the size of the
1071 * generic function and at the same time the fast path of the specialized
1072 * functions is significantly smaller than the generic function.
1073 */
1074static __always_inline int is_connected_ep(struct snd_soc_dapm_widget *widget,
1075 struct list_head *list, enum snd_soc_dapm_direction dir,
1076 int (*fn)(struct snd_soc_dapm_widget *, struct list_head *))
1077{
1078 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001079 struct snd_soc_dapm_path *path;
1080 int con = 0;
1081
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001082 if (widget->endpoints[dir] >= 0)
1083 return widget->endpoints[dir];
Mark Brown024dc072011-10-09 11:52:05 +01001084
Mark Brownde02d072011-09-20 21:43:24 +01001085 DAPM_UPDATE_STAT(widget, path_checks);
1086
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001087 /* do we need to add this widget to the list ? */
1088 if (list)
1089 list_add_tail(&widget->work_list, list);
1090
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001091 if ((widget->is_ep & SND_SOC_DAPM_DIR_TO_EP(dir)) && widget->connected) {
1092 widget->endpoints[dir] = snd_soc_dapm_suspend_check(widget);
1093 return widget->endpoints[dir];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001094 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001095
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001096 snd_soc_dapm_widget_for_each_path(widget, rdir, path) {
Mark Browne56235e2011-09-21 18:19:14 +01001097 DAPM_UPDATE_STAT(widget, neighbour_checks);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001098
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001099 if (path->weak || path->is_supply)
Mark Brownbf3a9e12011-06-13 16:42:29 +01001100 continue;
1101
Mark Brown8af294b2013-02-22 17:48:15 +00001102 if (path->walking)
1103 return 1;
1104
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001105 trace_snd_soc_dapm_path(widget, dir, path);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001106
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001107 if (path->connect) {
Mark Brown8af294b2013-02-22 17:48:15 +00001108 path->walking = 1;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001109 con += fn(path->node[dir], list);
Mark Brown8af294b2013-02-22 17:48:15 +00001110 path->walking = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001111 }
1112 }
1113
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001114 widget->endpoints[dir] = con;
Mark Brown024dc072011-10-09 11:52:05 +01001115
Richard Purdie2b97eab2006-10-06 18:32:18 +02001116 return con;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001117}
1118
1119/*
1120 * Recursively check for a completed path to an active or physically connected
1121 * output widget. Returns number of complete paths.
1122 */
1123static int is_connected_output_ep(struct snd_soc_dapm_widget *widget,
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001124 struct list_head *list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001125{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001126 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_OUT,
1127 is_connected_output_ep);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001128}
1129
1130/*
1131 * Recursively check for a completed path to an active or physically connected
1132 * input widget. Returns number of complete paths.
1133 */
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001134static int is_connected_input_ep(struct snd_soc_dapm_widget *widget,
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001135 struct list_head *list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001136{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001137 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_IN,
1138 is_connected_input_ep);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001139}
1140
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001141/**
1142 * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1143 * @dai: the soc DAI.
1144 * @stream: stream direction.
1145 * @list: list of active widgets for this stream.
1146 *
1147 * Queries DAPM graph as to whether an valid audio stream path exists for
1148 * the initial stream specified by name. This takes into account
1149 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1150 *
1151 * Returns the number of valid paths or negative error.
1152 */
1153int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
1154 struct snd_soc_dapm_widget_list **list)
1155{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001156 struct snd_soc_card *card = dai->component->card;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001157 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001158 LIST_HEAD(widgets);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001159 int paths;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001160 int ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001161
1162 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001163
1164 /*
1165 * For is_connected_{output,input}_ep fully discover the graph we need
1166 * to reset the cached number of inputs and outputs.
1167 */
1168 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001169 w->endpoints[SND_SOC_DAPM_DIR_IN] = -1;
1170 w->endpoints[SND_SOC_DAPM_DIR_OUT] = -1;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001171 }
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001172
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001173 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001174 paths = is_connected_output_ep(dai->playback_widget, &widgets);
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001175 else
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001176 paths = is_connected_input_ep(dai->capture_widget, &widgets);
1177
1178 /* Drop starting point */
1179 list_del(widgets.next);
1180
1181 ret = dapm_widget_list_create(list, &widgets);
1182 if (ret)
Lars-Peter Clausen30abbe72015-08-11 21:37:59 +02001183 paths = ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001184
1185 trace_snd_soc_dapm_connected(paths, stream);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001186 mutex_unlock(&card->dapm_mutex);
1187
1188 return paths;
1189}
1190
Richard Purdie2b97eab2006-10-06 18:32:18 +02001191/*
Mark Brown62ea8742012-01-21 21:14:48 +00001192 * Handler for regulator supply widget.
1193 */
1194int dapm_regulator_event(struct snd_soc_dapm_widget *w,
1195 struct snd_kcontrol *kcontrol, int event)
1196{
Mark Brownc05b84d2012-09-07 12:57:11 +08001197 int ret;
1198
Mark Browneb270e92013-10-09 13:52:52 +01001199 soc_dapm_async_complete(w->dapm);
1200
Mark Brownc05b84d2012-09-07 12:57:11 +08001201 if (SND_SOC_DAPM_EVENT_ON(event)) {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001202 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001203 ret = regulator_allow_bypass(w->regulator, false);
Mark Brownc05b84d2012-09-07 12:57:11 +08001204 if (ret != 0)
1205 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001206 "ASoC: Failed to unbypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001207 w->name, ret);
1208 }
1209
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001210 return regulator_enable(w->regulator);
Mark Brownc05b84d2012-09-07 12:57:11 +08001211 } else {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001212 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001213 ret = regulator_allow_bypass(w->regulator, true);
Mark Brownc05b84d2012-09-07 12:57:11 +08001214 if (ret != 0)
1215 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001216 "ASoC: Failed to bypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001217 w->name, ret);
1218 }
1219
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001220 return regulator_disable_deferred(w->regulator, w->shift);
Mark Brownc05b84d2012-09-07 12:57:11 +08001221 }
Mark Brown62ea8742012-01-21 21:14:48 +00001222}
1223EXPORT_SYMBOL_GPL(dapm_regulator_event);
1224
Ola Liljad7e7eb92012-05-24 15:26:25 +02001225/*
1226 * Handler for clock supply widget.
1227 */
1228int dapm_clock_event(struct snd_soc_dapm_widget *w,
1229 struct snd_kcontrol *kcontrol, int event)
1230{
1231 if (!w->clk)
1232 return -EIO;
1233
Mark Browneb270e92013-10-09 13:52:52 +01001234 soc_dapm_async_complete(w->dapm);
1235
Mark Brownec029952012-06-04 08:16:20 +01001236#ifdef CONFIG_HAVE_CLK
Ola Liljad7e7eb92012-05-24 15:26:25 +02001237 if (SND_SOC_DAPM_EVENT_ON(event)) {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001238 return clk_prepare_enable(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001239 } else {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001240 clk_disable_unprepare(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001241 return 0;
1242 }
Mark Brownec029952012-06-04 08:16:20 +01001243#endif
Marek Belisko98b3cf12012-07-12 23:00:16 +02001244 return 0;
Ola Liljad7e7eb92012-05-24 15:26:25 +02001245}
1246EXPORT_SYMBOL_GPL(dapm_clock_event);
1247
Mark Brownd8050022011-09-28 18:28:23 +01001248static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
1249{
Mark Brown9b8a83b2011-10-04 22:15:59 +01001250 if (w->power_checked)
1251 return w->new_power;
1252
Mark Brownd8050022011-09-28 18:28:23 +01001253 if (w->force)
Mark Brown9b8a83b2011-10-04 22:15:59 +01001254 w->new_power = 1;
Mark Brownd8050022011-09-28 18:28:23 +01001255 else
Mark Brown9b8a83b2011-10-04 22:15:59 +01001256 w->new_power = w->power_check(w);
1257
1258 w->power_checked = true;
1259
1260 return w->new_power;
Mark Brownd8050022011-09-28 18:28:23 +01001261}
1262
Mark Browncd0f2d42009-04-20 16:56:59 +01001263/* Generic check to see if a widget should be powered.
1264 */
1265static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
1266{
1267 int in, out;
1268
Mark Brownde02d072011-09-20 21:43:24 +01001269 DAPM_UPDATE_STAT(w, power_checks);
1270
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001271 in = is_connected_input_ep(w, NULL);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001272 out = is_connected_output_ep(w, NULL);
Mark Browncd0f2d42009-04-20 16:56:59 +01001273 return out != 0 && in != 0;
1274}
1275
Mark Brown246d0a12009-04-22 18:24:55 +01001276/* Check to see if a power supply is needed */
1277static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
1278{
1279 struct snd_soc_dapm_path *path;
Mark Brown246d0a12009-04-22 18:24:55 +01001280
Mark Brownde02d072011-09-20 21:43:24 +01001281 DAPM_UPDATE_STAT(w, power_checks);
1282
Mark Brown246d0a12009-04-22 18:24:55 +01001283 /* Check if one of our outputs is connected */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001284 snd_soc_dapm_widget_for_each_sink_path(w, path) {
Mark Browna8fdac82011-09-28 18:20:26 +01001285 DAPM_UPDATE_STAT(w, neighbour_checks);
1286
Mark Brownbf3a9e12011-06-13 16:42:29 +01001287 if (path->weak)
1288 continue;
1289
Mark Brown215edda2009-09-08 18:59:05 +01001290 if (path->connected &&
1291 !path->connected(path->source, path->sink))
1292 continue;
1293
Mark Brownf68d7e12011-10-04 22:57:50 +01001294 if (dapm_widget_power_check(path->sink))
1295 return 1;
Mark Brown246d0a12009-04-22 18:24:55 +01001296 }
1297
Mark Brownf68d7e12011-10-04 22:57:50 +01001298 return 0;
Mark Brown246d0a12009-04-22 18:24:55 +01001299}
1300
Mark Brown35c64bc2011-09-28 18:23:53 +01001301static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
1302{
Charles Keepax20bb0182015-12-02 10:22:16 +00001303 return w->connected;
Mark Brown35c64bc2011-09-28 18:23:53 +01001304}
1305
Mark Brown38357ab2009-06-06 19:03:23 +01001306static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1307 struct snd_soc_dapm_widget *b,
Mark Brown828a8422011-01-15 13:14:30 +00001308 bool power_up)
Mark Brown42aa3412009-03-01 19:21:10 +00001309{
Mark Brown828a8422011-01-15 13:14:30 +00001310 int *sort;
1311
1312 if (power_up)
1313 sort = dapm_up_seq;
1314 else
1315 sort = dapm_down_seq;
1316
Mark Brown38357ab2009-06-06 19:03:23 +01001317 if (sort[a->id] != sort[b->id])
1318 return sort[a->id] - sort[b->id];
Mark Brown20e48592011-01-15 13:40:50 +00001319 if (a->subseq != b->subseq) {
1320 if (power_up)
1321 return a->subseq - b->subseq;
1322 else
1323 return b->subseq - a->subseq;
1324 }
Mark Brownb22ead22009-06-07 12:51:26 +01001325 if (a->reg != b->reg)
1326 return a->reg - b->reg;
Mark Brown84dab562010-11-12 15:28:42 +00001327 if (a->dapm != b->dapm)
1328 return (unsigned long)a->dapm - (unsigned long)b->dapm;
Mark Brown42aa3412009-03-01 19:21:10 +00001329
Mark Brown38357ab2009-06-06 19:03:23 +01001330 return 0;
1331}
Mark Brown42aa3412009-03-01 19:21:10 +00001332
Mark Brown38357ab2009-06-06 19:03:23 +01001333/* Insert a widget in order into a DAPM power sequence. */
1334static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1335 struct list_head *list,
Mark Brown828a8422011-01-15 13:14:30 +00001336 bool power_up)
Mark Brown38357ab2009-06-06 19:03:23 +01001337{
1338 struct snd_soc_dapm_widget *w;
1339
1340 list_for_each_entry(w, list, power_list)
Mark Brown828a8422011-01-15 13:14:30 +00001341 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
Mark Brown38357ab2009-06-06 19:03:23 +01001342 list_add_tail(&new_widget->power_list, &w->power_list);
1343 return;
Mark Brown42aa3412009-03-01 19:21:10 +00001344 }
Mark Brown6ea31b92009-04-20 17:15:41 +01001345
Mark Brown38357ab2009-06-06 19:03:23 +01001346 list_add_tail(&new_widget->power_list, list);
1347}
Mark Brown42aa3412009-03-01 19:21:10 +00001348
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001349static void dapm_seq_check_event(struct snd_soc_card *card,
Mark Brown68f89ad2010-11-03 23:51:49 -04001350 struct snd_soc_dapm_widget *w, int event)
1351{
Mark Brown68f89ad2010-11-03 23:51:49 -04001352 const char *ev_name;
1353 int power, ret;
1354
1355 switch (event) {
1356 case SND_SOC_DAPM_PRE_PMU:
1357 ev_name = "PRE_PMU";
1358 power = 1;
1359 break;
1360 case SND_SOC_DAPM_POST_PMU:
1361 ev_name = "POST_PMU";
1362 power = 1;
1363 break;
1364 case SND_SOC_DAPM_PRE_PMD:
1365 ev_name = "PRE_PMD";
1366 power = 0;
1367 break;
1368 case SND_SOC_DAPM_POST_PMD:
1369 ev_name = "POST_PMD";
1370 power = 0;
1371 break;
Mark Brown80114122013-02-25 15:14:19 +00001372 case SND_SOC_DAPM_WILL_PMU:
1373 ev_name = "WILL_PMU";
1374 power = 1;
1375 break;
1376 case SND_SOC_DAPM_WILL_PMD:
1377 ev_name = "WILL_PMD";
1378 power = 0;
1379 break;
Mark Brown68f89ad2010-11-03 23:51:49 -04001380 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01001381 WARN(1, "Unknown event %d\n", event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001382 return;
1383 }
1384
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001385 if (w->new_power != power)
Mark Brown68f89ad2010-11-03 23:51:49 -04001386 return;
1387
1388 if (w->event && (w->event_flags & event)) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001389 pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001390 w->name, ev_name);
Mark Browneb270e92013-10-09 13:52:52 +01001391 soc_dapm_async_complete(w->dapm);
Mark Brown84e90932010-11-04 00:07:02 -04001392 trace_snd_soc_dapm_widget_event_start(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001393 ret = w->event(w, NULL, event);
Mark Brown84e90932010-11-04 00:07:02 -04001394 trace_snd_soc_dapm_widget_event_done(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001395 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001396 dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001397 ev_name, w->name, ret);
1398 }
1399}
1400
Mark Brownb22ead22009-06-07 12:51:26 +01001401/* Apply the coalesced changes from a DAPM sequence */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001402static void dapm_seq_run_coalesced(struct snd_soc_card *card,
Mark Brownb22ead22009-06-07 12:51:26 +01001403 struct list_head *pending)
Mark Brown163cac02009-06-07 10:12:52 +01001404{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001405 struct snd_soc_dapm_context *dapm;
Mark Brown68f89ad2010-11-03 23:51:49 -04001406 struct snd_soc_dapm_widget *w;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001407 int reg;
Mark Brownb22ead22009-06-07 12:51:26 +01001408 unsigned int value = 0;
1409 unsigned int mask = 0;
Mark Brownb22ead22009-06-07 12:51:26 +01001410
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001411 w = list_first_entry(pending, struct snd_soc_dapm_widget, power_list);
1412 reg = w->reg;
1413 dapm = w->dapm;
Mark Brownb22ead22009-06-07 12:51:26 +01001414
1415 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001416 WARN_ON(reg != w->reg || dapm != w->dapm);
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001417 w->power = w->new_power;
Mark Brownb22ead22009-06-07 12:51:26 +01001418
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001419 mask |= w->mask << w->shift;
1420 if (w->power)
1421 value |= w->on_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001422 else
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001423 value |= w->off_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001424
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001425 pop_dbg(dapm->dev, card->pop_time,
Mark Brownb22ead22009-06-07 12:51:26 +01001426 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1427 w->name, reg, value, mask);
Mark Brown81628102009-06-07 13:21:24 +01001428
Mark Brown68f89ad2010-11-03 23:51:49 -04001429 /* Check for events */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001430 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU);
1431 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001432 }
1433
Mark Brown81628102009-06-07 13:21:24 +01001434 if (reg >= 0) {
Mark Brown29376bc2011-06-19 13:49:28 +01001435 /* Any widget will do, they should all be updating the
1436 * same register.
1437 */
Mark Brown29376bc2011-06-19 13:49:28 +01001438
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001439 pop_dbg(dapm->dev, card->pop_time,
Mark Brown81628102009-06-07 13:21:24 +01001440 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001441 value, mask, reg, card->pop_time);
1442 pop_wait(card->pop_time);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001443 soc_dapm_update_bits(dapm, reg, mask, value);
Mark Brown81628102009-06-07 13:21:24 +01001444 }
1445
1446 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001447 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU);
1448 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD);
Mark Brown42aa3412009-03-01 19:21:10 +00001449 }
Mark Brown42aa3412009-03-01 19:21:10 +00001450}
1451
Mark Brownb22ead22009-06-07 12:51:26 +01001452/* Apply a DAPM power sequence.
1453 *
1454 * We walk over a pre-sorted list of widgets to apply power to. In
1455 * order to minimise the number of writes to the device required
1456 * multiple widgets will be updated in a single write where possible.
1457 * Currently anything that requires more than a single write is not
1458 * handled.
1459 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001460static void dapm_seq_run(struct snd_soc_card *card,
1461 struct list_head *list, int event, bool power_up)
Mark Brownb22ead22009-06-07 12:51:26 +01001462{
1463 struct snd_soc_dapm_widget *w, *n;
Mark Browneb270e92013-10-09 13:52:52 +01001464 struct snd_soc_dapm_context *d;
Mark Brownb22ead22009-06-07 12:51:26 +01001465 LIST_HEAD(pending);
1466 int cur_sort = -1;
Mark Brown20e48592011-01-15 13:40:50 +00001467 int cur_subseq = -1;
Mark Brownb22ead22009-06-07 12:51:26 +01001468 int cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001469 struct snd_soc_dapm_context *cur_dapm = NULL;
Mark Brown474b62d2011-01-18 16:14:44 +00001470 int ret, i;
Mark Brown828a8422011-01-15 13:14:30 +00001471 int *sort;
1472
1473 if (power_up)
1474 sort = dapm_up_seq;
1475 else
1476 sort = dapm_down_seq;
Mark Brown163cac02009-06-07 10:12:52 +01001477
Mark Brownb22ead22009-06-07 12:51:26 +01001478 list_for_each_entry_safe(w, n, list, power_list) {
1479 ret = 0;
1480
1481 /* Do we need to apply any queued changes? */
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001482 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
Mark Brown20e48592011-01-15 13:40:50 +00001483 w->dapm != cur_dapm || w->subseq != cur_subseq) {
Mark Brownb22ead22009-06-07 12:51:26 +01001484 if (!list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001485 dapm_seq_run_coalesced(card, &pending);
Mark Brownb22ead22009-06-07 12:51:26 +01001486
Mark Brown474b62d2011-01-18 16:14:44 +00001487 if (cur_dapm && cur_dapm->seq_notifier) {
1488 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1489 if (sort[i] == cur_sort)
1490 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001491 i,
1492 cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001493 }
1494
Mark Browneb270e92013-10-09 13:52:52 +01001495 if (cur_dapm && w->dapm != cur_dapm)
1496 soc_dapm_async_complete(cur_dapm);
1497
Mark Brownb22ead22009-06-07 12:51:26 +01001498 INIT_LIST_HEAD(&pending);
1499 cur_sort = -1;
Mark Brownb0b3e6f2011-07-16 10:55:08 +09001500 cur_subseq = INT_MIN;
Mark Brownb22ead22009-06-07 12:51:26 +01001501 cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001502 cur_dapm = NULL;
Mark Brownb22ead22009-06-07 12:51:26 +01001503 }
1504
Mark Brown163cac02009-06-07 10:12:52 +01001505 switch (w->id) {
1506 case snd_soc_dapm_pre:
1507 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001508 list_for_each_entry_safe_continue(w, n, list,
1509 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001510
Mark Brownb22ead22009-06-07 12:51:26 +01001511 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001512 ret = w->event(w,
1513 NULL, SND_SOC_DAPM_PRE_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001514 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001515 ret = w->event(w,
1516 NULL, SND_SOC_DAPM_PRE_PMD);
Mark Brown163cac02009-06-07 10:12:52 +01001517 break;
1518
1519 case snd_soc_dapm_post:
1520 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001521 list_for_each_entry_safe_continue(w, n, list,
1522 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001523
Mark Brownb22ead22009-06-07 12:51:26 +01001524 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001525 ret = w->event(w,
1526 NULL, SND_SOC_DAPM_POST_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001527 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001528 ret = w->event(w,
1529 NULL, SND_SOC_DAPM_POST_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001530 break;
1531
Mark Brown163cac02009-06-07 10:12:52 +01001532 default:
Mark Brown81628102009-06-07 13:21:24 +01001533 /* Queue it up for application */
1534 cur_sort = sort[w->id];
Mark Brown20e48592011-01-15 13:40:50 +00001535 cur_subseq = w->subseq;
Mark Brown81628102009-06-07 13:21:24 +01001536 cur_reg = w->reg;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001537 cur_dapm = w->dapm;
Mark Brown81628102009-06-07 13:21:24 +01001538 list_move(&w->power_list, &pending);
1539 break;
Mark Brown163cac02009-06-07 10:12:52 +01001540 }
Mark Brownb22ead22009-06-07 12:51:26 +01001541
1542 if (ret < 0)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001543 dev_err(w->dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001544 "ASoC: Failed to apply widget power: %d\n", ret);
Mark Brown163cac02009-06-07 10:12:52 +01001545 }
Mark Brownb22ead22009-06-07 12:51:26 +01001546
1547 if (!list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001548 dapm_seq_run_coalesced(card, &pending);
Mark Brown474b62d2011-01-18 16:14:44 +00001549
1550 if (cur_dapm && cur_dapm->seq_notifier) {
1551 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1552 if (sort[i] == cur_sort)
1553 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001554 i, cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001555 }
Mark Browneb270e92013-10-09 13:52:52 +01001556
1557 list_for_each_entry(d, &card->dapm_list, list) {
1558 soc_dapm_async_complete(d);
1559 }
Mark Brown163cac02009-06-07 10:12:52 +01001560}
1561
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001562static void dapm_widget_update(struct snd_soc_card *card)
Mark Brown97404f22010-12-14 16:13:57 +00001563{
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001564 struct snd_soc_dapm_update *update = card->update;
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001565 struct snd_soc_dapm_widget_list *wlist;
1566 struct snd_soc_dapm_widget *w = NULL;
1567 unsigned int wi;
Mark Brown97404f22010-12-14 16:13:57 +00001568 int ret;
1569
Lars-Peter Clausen57295072013-08-05 11:27:31 +02001570 if (!update || !dapm_kcontrol_is_powered(update->kcontrol))
Mark Brown97404f22010-12-14 16:13:57 +00001571 return;
1572
Lars-Peter Clausene84357f2013-07-29 17:13:58 +02001573 wlist = dapm_kcontrol_get_wlist(update->kcontrol);
Mark Brown97404f22010-12-14 16:13:57 +00001574
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001575 for (wi = 0; wi < wlist->num_widgets; wi++) {
1576 w = wlist->widgets[wi];
1577
1578 if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1579 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1580 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001581 dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001582 w->name, ret);
1583 }
Mark Brown97404f22010-12-14 16:13:57 +00001584 }
1585
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001586 if (!w)
1587 return;
1588
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001589 ret = soc_dapm_update_bits(w->dapm, update->reg, update->mask,
1590 update->val);
Mark Brown97404f22010-12-14 16:13:57 +00001591 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001592 dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001593 w->name, ret);
Mark Brown97404f22010-12-14 16:13:57 +00001594
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001595 for (wi = 0; wi < wlist->num_widgets; wi++) {
1596 w = wlist->widgets[wi];
1597
1598 if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1599 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1600 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001601 dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001602 w->name, ret);
1603 }
Mark Brown97404f22010-12-14 16:13:57 +00001604 }
1605}
1606
Mark Brown9d0624a2011-02-18 11:49:43 -08001607/* Async callback run prior to DAPM sequences - brings to _PREPARE if
1608 * they're changing state.
1609 */
1610static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1611{
1612 struct snd_soc_dapm_context *d = data;
1613 int ret;
Mark Brown97404f22010-12-14 16:13:57 +00001614
Mark Brown56fba412011-06-04 11:25:10 +01001615 /* If we're off and we're not supposed to be go into STANDBY */
1616 if (d->bias_level == SND_SOC_BIAS_OFF &&
1617 d->target_bias_level != SND_SOC_BIAS_OFF) {
Mark Brownf1aac482011-12-05 15:17:06 +00001618 if (d->dev)
1619 pm_runtime_get_sync(d->dev);
1620
Mark Brown9d0624a2011-02-18 11:49:43 -08001621 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1622 if (ret != 0)
1623 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001624 "ASoC: Failed to turn on bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001625 }
1626
Lars-Peter Clausence85a4d2014-05-06 10:32:15 +02001627 /* Prepare for a transition to ON or away from ON */
1628 if ((d->target_bias_level == SND_SOC_BIAS_ON &&
1629 d->bias_level != SND_SOC_BIAS_ON) ||
1630 (d->target_bias_level != SND_SOC_BIAS_ON &&
1631 d->bias_level == SND_SOC_BIAS_ON)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001632 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1633 if (ret != 0)
1634 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001635 "ASoC: Failed to prepare bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001636 }
1637}
1638
1639/* Async callback run prior to DAPM sequences - brings to their final
1640 * state.
1641 */
1642static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1643{
1644 struct snd_soc_dapm_context *d = data;
1645 int ret;
1646
1647 /* If we just powered the last thing off drop to standby bias */
Mark Brown56fba412011-06-04 11:25:10 +01001648 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1649 (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1650 d->target_bias_level == SND_SOC_BIAS_OFF)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001651 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1652 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001653 dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001654 ret);
1655 }
1656
1657 /* If we're in standby and can support bias off then do that */
Mark Brown56fba412011-06-04 11:25:10 +01001658 if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1659 d->target_bias_level == SND_SOC_BIAS_OFF) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001660 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1661 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001662 dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n",
1663 ret);
Mark Brownf1aac482011-12-05 15:17:06 +00001664
1665 if (d->dev)
Mark Brownfb644e92012-01-25 19:53:58 +00001666 pm_runtime_put(d->dev);
Mark Brown9d0624a2011-02-18 11:49:43 -08001667 }
1668
1669 /* If we just powered up then move to active bias */
Mark Brown56fba412011-06-04 11:25:10 +01001670 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1671 d->target_bias_level == SND_SOC_BIAS_ON) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001672 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1673 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001674 dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001675 ret);
1676 }
1677}
Mark Brown97404f22010-12-14 16:13:57 +00001678
Mark Brownfe4fda52011-10-03 22:36:57 +01001679static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1680 bool power, bool connect)
1681{
1682 /* If a connection is being made or broken then that update
1683 * will have marked the peer dirty, otherwise the widgets are
1684 * not connected and this update has no impact. */
1685 if (!connect)
1686 return;
1687
1688 /* If the peer is already in the state we're moving to then we
1689 * won't have an impact on it. */
1690 if (power != peer->power)
Mark Brown75c1f892011-10-04 22:28:08 +01001691 dapm_mark_dirty(peer, "peer state change");
Mark Brownfe4fda52011-10-03 22:36:57 +01001692}
1693
Mark Brown05623c42011-09-28 17:02:31 +01001694static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1695 struct list_head *up_list,
1696 struct list_head *down_list)
1697{
Mark Browndb432b42011-10-03 21:06:40 +01001698 struct snd_soc_dapm_path *path;
1699
Mark Brown05623c42011-09-28 17:02:31 +01001700 if (w->power == power)
1701 return;
1702
1703 trace_snd_soc_dapm_widget_power(w, power);
1704
Mark Browndb432b42011-10-03 21:06:40 +01001705 /* If we changed our power state perhaps our neigbours changed
Mark Brownfe4fda52011-10-03 22:36:57 +01001706 * also.
Mark Browndb432b42011-10-03 21:06:40 +01001707 */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001708 snd_soc_dapm_widget_for_each_source_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001709 dapm_widget_set_peer_power(path->source, power, path->connect);
1710
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02001711 /* Supplies can't affect their outputs, only their inputs */
1712 if (!w->is_supply) {
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001713 snd_soc_dapm_widget_for_each_sink_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001714 dapm_widget_set_peer_power(path->sink, power,
1715 path->connect);
Mark Browndb432b42011-10-03 21:06:40 +01001716 }
1717
Mark Brown05623c42011-09-28 17:02:31 +01001718 if (power)
1719 dapm_seq_insert(w, up_list, true);
1720 else
1721 dapm_seq_insert(w, down_list, false);
Mark Brown05623c42011-09-28 17:02:31 +01001722}
1723
Mark Brown7c81beb2011-09-20 22:22:32 +01001724static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1725 struct list_head *up_list,
1726 struct list_head *down_list)
1727{
Mark Brown7c81beb2011-09-20 22:22:32 +01001728 int power;
1729
1730 switch (w->id) {
1731 case snd_soc_dapm_pre:
1732 dapm_seq_insert(w, down_list, false);
1733 break;
1734 case snd_soc_dapm_post:
1735 dapm_seq_insert(w, up_list, true);
1736 break;
1737
1738 default:
Mark Brownd8050022011-09-28 18:28:23 +01001739 power = dapm_widget_power_check(w);
Mark Brown7c81beb2011-09-20 22:22:32 +01001740
Mark Brown05623c42011-09-28 17:02:31 +01001741 dapm_widget_set_power(w, power, up_list, down_list);
Mark Brown7c81beb2011-09-20 22:22:32 +01001742 break;
1743 }
1744}
1745
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001746static bool dapm_idle_bias_off(struct snd_soc_dapm_context *dapm)
1747{
1748 if (dapm->idle_bias_off)
1749 return true;
1750
1751 switch (snd_power_get_state(dapm->card->snd_card)) {
1752 case SNDRV_CTL_POWER_D3hot:
1753 case SNDRV_CTL_POWER_D3cold:
1754 return dapm->suspend_bias_off;
1755 default:
1756 break;
1757 }
1758
1759 return false;
1760}
1761
Mark Brown42aa3412009-03-01 19:21:10 +00001762/*
Richard Purdie2b97eab2006-10-06 18:32:18 +02001763 * Scan each dapm widget for complete audio path.
1764 * A complete path is a route that has valid endpoints i.e.:-
1765 *
1766 * o DAC to output pin.
1767 * o Input Pin to ADC.
1768 * o Input pin to Output pin (bypass, sidetone)
1769 * o DAC to ADC (loopback).
1770 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001771static int dapm_power_widgets(struct snd_soc_card *card, int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001772{
1773 struct snd_soc_dapm_widget *w;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001774 struct snd_soc_dapm_context *d;
Mark Brown291f3bb2009-06-07 13:57:17 +01001775 LIST_HEAD(up_list);
1776 LIST_HEAD(down_list);
Dan Williams2955b472012-07-09 19:33:25 -07001777 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Mark Brown56fba412011-06-04 11:25:10 +01001778 enum snd_soc_bias_level bias;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001779
Mark Brownf9fa2b12014-03-06 16:49:11 +08001780 lockdep_assert_held(&card->dapm_mutex);
1781
Mark Brown84e90932010-11-04 00:07:02 -04001782 trace_snd_soc_dapm_start(card);
1783
Mark Brown56fba412011-06-04 11:25:10 +01001784 list_for_each_entry(d, &card->dapm_list, list) {
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001785 if (dapm_idle_bias_off(d))
Mark Brown497098be2012-03-08 15:06:09 +00001786 d->target_bias_level = SND_SOC_BIAS_OFF;
1787 else
1788 d->target_bias_level = SND_SOC_BIAS_STANDBY;
Mark Brown56fba412011-06-04 11:25:10 +01001789 }
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001790
Liam Girdwood6c120e12012-02-15 15:15:34 +00001791 dapm_reset(card);
Mark Brown9b8a83b2011-10-04 22:15:59 +01001792
Mark Brown6d3ddc82009-05-16 17:47:29 +01001793 /* Check which widgets we need to power and store them in
Mark Browndb432b42011-10-03 21:06:40 +01001794 * lists indicating if they should be powered up or down. We
1795 * only check widgets that have been flagged as dirty but note
1796 * that new widgets may be added to the dirty list while we
1797 * iterate.
Mark Brown6d3ddc82009-05-16 17:47:29 +01001798 */
Mark Browndb432b42011-10-03 21:06:40 +01001799 list_for_each_entry(w, &card->dapm_dirty, dirty) {
Mark Brown7c81beb2011-09-20 22:22:32 +01001800 dapm_power_one_widget(w, &up_list, &down_list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001801 }
1802
Mark Brownf9de6d72011-09-28 17:19:47 +01001803 list_for_each_entry(w, &card->widgets, list) {
Mark Brown0ff97eb2012-07-20 17:29:34 +01001804 switch (w->id) {
1805 case snd_soc_dapm_pre:
1806 case snd_soc_dapm_post:
1807 /* These widgets always need to be powered */
1808 break;
1809 default:
1810 list_del_init(&w->dirty);
1811 break;
1812 }
Mark Browndb432b42011-10-03 21:06:40 +01001813
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001814 if (w->new_power) {
Mark Brownf9de6d72011-09-28 17:19:47 +01001815 d = w->dapm;
1816
1817 /* Supplies and micbiases only bring the
1818 * context up to STANDBY as unless something
1819 * else is active and passing audio they
Mark Brownafe62362012-01-25 19:55:22 +00001820 * generally don't require full power. Signal
1821 * generators are virtual pins and have no
1822 * power impact themselves.
Mark Brownf9de6d72011-09-28 17:19:47 +01001823 */
1824 switch (w->id) {
Mark Brownafe62362012-01-25 19:55:22 +00001825 case snd_soc_dapm_siggen:
Lars-Peter Clausenda83fea2013-10-05 19:26:17 +02001826 case snd_soc_dapm_vmid:
Mark Brownafe62362012-01-25 19:55:22 +00001827 break;
Mark Brownf9de6d72011-09-28 17:19:47 +01001828 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001829 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02001830 case snd_soc_dapm_clock_supply:
Mark Brownf9de6d72011-09-28 17:19:47 +01001831 case snd_soc_dapm_micbias:
1832 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1833 d->target_bias_level = SND_SOC_BIAS_STANDBY;
1834 break;
1835 default:
1836 d->target_bias_level = SND_SOC_BIAS_ON;
1837 break;
1838 }
1839 }
1840
1841 }
1842
Mark Brown85a843c2011-09-21 21:29:47 +01001843 /* Force all contexts in the card to the same bias state if
1844 * they're not ground referenced.
1845 */
Mark Brown56fba412011-06-04 11:25:10 +01001846 bias = SND_SOC_BIAS_OFF;
Mark Brown52ba67b2011-04-04 21:05:11 +09001847 list_for_each_entry(d, &card->dapm_list, list)
Mark Brown56fba412011-06-04 11:25:10 +01001848 if (d->target_bias_level > bias)
1849 bias = d->target_bias_level;
Mark Brown52ba67b2011-04-04 21:05:11 +09001850 list_for_each_entry(d, &card->dapm_list, list)
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001851 if (!dapm_idle_bias_off(d))
Mark Brown85a843c2011-09-21 21:29:47 +01001852 d->target_bias_level = bias;
Mark Brown52ba67b2011-04-04 21:05:11 +09001853
Mark Brownde02d072011-09-20 21:43:24 +01001854 trace_snd_soc_dapm_walk_done(card);
Mark Brown52ba67b2011-04-04 21:05:11 +09001855
Xiang Xiao17282ba2014-03-02 00:04:03 +08001856 /* Run card bias changes at first */
1857 dapm_pre_sequence_async(&card->dapm, 0);
1858 /* Run other bias changes in parallel */
1859 list_for_each_entry(d, &card->dapm_list, list) {
1860 if (d != &card->dapm)
1861 async_schedule_domain(dapm_pre_sequence_async, d,
1862 &async_domain);
1863 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001864 async_synchronize_full_domain(&async_domain);
Mark Brown452c5ea2009-05-17 21:41:23 +01001865
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001866 list_for_each_entry(w, &down_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001867 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD);
Mark Brown80114122013-02-25 15:14:19 +00001868 }
1869
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001870 list_for_each_entry(w, &up_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001871 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU);
Mark Brown80114122013-02-25 15:14:19 +00001872 }
1873
Mark Brown6d3ddc82009-05-16 17:47:29 +01001874 /* Power down widgets first; try to avoid amplifying pops. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001875 dapm_seq_run(card, &down_list, event, false);
Mark Brown6d3ddc82009-05-16 17:47:29 +01001876
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001877 dapm_widget_update(card);
Mark Brown97404f22010-12-14 16:13:57 +00001878
Mark Brown6d3ddc82009-05-16 17:47:29 +01001879 /* Now power up. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001880 dapm_seq_run(card, &up_list, event, true);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001881
Mark Brown9d0624a2011-02-18 11:49:43 -08001882 /* Run all the bias changes in parallel */
Xiang Xiao17282ba2014-03-02 00:04:03 +08001883 list_for_each_entry(d, &card->dapm_list, list) {
1884 if (d != &card->dapm)
1885 async_schedule_domain(dapm_post_sequence_async, d,
1886 &async_domain);
1887 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001888 async_synchronize_full_domain(&async_domain);
Xiang Xiao17282ba2014-03-02 00:04:03 +08001889 /* Run card bias changes at last */
1890 dapm_post_sequence_async(&card->dapm, 0);
Mark Brown452c5ea2009-05-17 21:41:23 +01001891
Liam Girdwood8078d872012-02-15 15:15:35 +00001892 /* do we need to notify any clients that DAPM event is complete */
1893 list_for_each_entry(d, &card->dapm_list, list) {
1894 if (d->stream_event)
1895 d->stream_event(d, event);
1896 }
1897
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001898 pop_dbg(card->dev, card->pop_time,
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02001899 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001900 pop_wait(card->pop_time);
Mark Browncb507e72009-07-08 18:54:57 +01001901
Mark Brown84e90932010-11-04 00:07:02 -04001902 trace_snd_soc_dapm_done(card);
1903
Mark Brown42aa3412009-03-01 19:21:10 +00001904 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001905}
1906
Mark Brown79fb9382009-08-21 16:38:13 +01001907#ifdef CONFIG_DEBUG_FS
Mark Brown79fb9382009-08-21 16:38:13 +01001908static ssize_t dapm_widget_power_read_file(struct file *file,
1909 char __user *user_buf,
1910 size_t count, loff_t *ppos)
1911{
1912 struct snd_soc_dapm_widget *w = file->private_data;
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001913 struct snd_soc_card *card = w->dapm->card;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001914 enum snd_soc_dapm_direction dir, rdir;
Mark Brown79fb9382009-08-21 16:38:13 +01001915 char *buf;
1916 int in, out;
1917 ssize_t ret;
1918 struct snd_soc_dapm_path *p = NULL;
1919
1920 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1921 if (!buf)
1922 return -ENOMEM;
1923
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001924 mutex_lock(&card->dapm_mutex);
1925
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001926 /* Supply widgets are not handled by is_connected_{input,output}_ep() */
1927 if (w->is_supply) {
1928 in = 0;
1929 out = 0;
1930 } else {
1931 in = is_connected_input_ep(w, NULL);
1932 out = is_connected_output_ep(w, NULL);
1933 }
Mark Brown79fb9382009-08-21 16:38:13 +01001934
Mark Brownf13ebad2012-03-03 18:01:01 +00001935 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1936 w->name, w->power ? "On" : "Off",
1937 w->force ? " (forced)" : "", in, out);
Mark Brown79fb9382009-08-21 16:38:13 +01001938
Mark Brownd033c362009-12-04 15:25:56 +00001939 if (w->reg >= 0)
1940 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001941 " - R%d(0x%x) mask 0x%x",
1942 w->reg, w->reg, w->mask << w->shift);
Mark Brownd033c362009-12-04 15:25:56 +00001943
1944 ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1945
Mark Brown3eef08b2009-09-14 16:49:00 +01001946 if (w->sname)
1947 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1948 w->sname,
1949 w->active ? "active" : "inactive");
Mark Brown79fb9382009-08-21 16:38:13 +01001950
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001951 snd_soc_dapm_for_each_direction(dir) {
1952 rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
1953 snd_soc_dapm_widget_for_each_path(w, dir, p) {
1954 if (p->connected && !p->connected(w, p->node[rdir]))
1955 continue;
Mark Brown215edda2009-09-08 18:59:05 +01001956
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001957 if (!p->connect)
1958 continue;
Mark Brown215edda2009-09-08 18:59:05 +01001959
Mark Brown79fb9382009-08-21 16:38:13 +01001960 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001961 " %s \"%s\" \"%s\"\n",
1962 (rdir == SND_SOC_DAPM_DIR_IN) ? "in" : "out",
Mark Brown79fb9382009-08-21 16:38:13 +01001963 p->name ? p->name : "static",
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001964 p->node[rdir]->name);
1965 }
Mark Brown79fb9382009-08-21 16:38:13 +01001966 }
1967
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001968 mutex_unlock(&card->dapm_mutex);
1969
Mark Brown79fb9382009-08-21 16:38:13 +01001970 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1971
1972 kfree(buf);
1973 return ret;
1974}
1975
1976static const struct file_operations dapm_widget_power_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07001977 .open = simple_open,
Mark Brown79fb9382009-08-21 16:38:13 +01001978 .read = dapm_widget_power_read_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001979 .llseek = default_llseek,
Mark Brown79fb9382009-08-21 16:38:13 +01001980};
1981
Mark Brownef49e4f2011-04-04 20:48:13 +09001982static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
1983 size_t count, loff_t *ppos)
1984{
1985 struct snd_soc_dapm_context *dapm = file->private_data;
1986 char *level;
1987
1988 switch (dapm->bias_level) {
1989 case SND_SOC_BIAS_ON:
1990 level = "On\n";
1991 break;
1992 case SND_SOC_BIAS_PREPARE:
1993 level = "Prepare\n";
1994 break;
1995 case SND_SOC_BIAS_STANDBY:
1996 level = "Standby\n";
1997 break;
1998 case SND_SOC_BIAS_OFF:
1999 level = "Off\n";
2000 break;
2001 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01002002 WARN(1, "Unknown bias_level %d\n", dapm->bias_level);
Mark Brownef49e4f2011-04-04 20:48:13 +09002003 level = "Unknown\n";
2004 break;
2005 }
2006
2007 return simple_read_from_buffer(user_buf, count, ppos, level,
2008 strlen(level));
2009}
2010
2011static const struct file_operations dapm_bias_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07002012 .open = simple_open,
Mark Brownef49e4f2011-04-04 20:48:13 +09002013 .read = dapm_bias_read_file,
2014 .llseek = default_llseek,
2015};
2016
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002017void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2018 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002019{
Mark Brown79fb9382009-08-21 16:38:13 +01002020 struct dentry *d;
2021
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02002022 if (!parent)
2023 return;
2024
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002025 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
2026
2027 if (!dapm->debugfs_dapm) {
Liam Girdwoodf1e90af2012-03-06 18:13:25 +00002028 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002029 "ASoC: Failed to create DAPM debugfs directory\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002030 return;
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002031 }
Mark Brown79fb9382009-08-21 16:38:13 +01002032
Mark Brownef49e4f2011-04-04 20:48:13 +09002033 d = debugfs_create_file("bias_level", 0444,
2034 dapm->debugfs_dapm, dapm,
2035 &dapm_bias_fops);
2036 if (!d)
2037 dev_warn(dapm->dev,
2038 "ASoC: Failed to create bias level debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002039}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002040
2041static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2042{
2043 struct snd_soc_dapm_context *dapm = w->dapm;
2044 struct dentry *d;
2045
2046 if (!dapm->debugfs_dapm || !w->name)
2047 return;
2048
2049 d = debugfs_create_file(w->name, 0444,
2050 dapm->debugfs_dapm, w,
2051 &dapm_widget_power_fops);
2052 if (!d)
2053 dev_warn(w->dapm->dev,
2054 "ASoC: Failed to create %s debugfs file\n",
2055 w->name);
2056}
2057
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002058static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2059{
2060 debugfs_remove_recursive(dapm->debugfs_dapm);
2061}
2062
Mark Brown79fb9382009-08-21 16:38:13 +01002063#else
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002064void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2065 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002066{
2067}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002068
2069static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2070{
2071}
2072
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002073static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2074{
2075}
2076
Mark Brown79fb9382009-08-21 16:38:13 +01002077#endif
2078
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002079/*
2080 * soc_dapm_connect_path() - Connects or disconnects a path
2081 * @path: The path to update
2082 * @connect: The new connect state of the path. True if the path is connected,
2083 * false if it is disconneted.
2084 * @reason: The reason why the path changed (for debugging only)
2085 */
2086static void soc_dapm_connect_path(struct snd_soc_dapm_path *path,
2087 bool connect, const char *reason)
2088{
2089 if (path->connect == connect)
2090 return;
2091
2092 path->connect = connect;
2093 dapm_mark_dirty(path->source, reason);
2094 dapm_mark_dirty(path->sink, reason);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002095 dapm_path_invalidate(path);
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002096}
2097
Richard Purdie2b97eab2006-10-06 18:32:18 +02002098/* test and update the power status of a mux widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002099static int soc_dapm_mux_update_power(struct snd_soc_card *card,
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002100 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002101{
2102 struct snd_soc_dapm_path *path;
2103 int found = 0;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002104 bool connect;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002105
Mark Brownf9fa2b12014-03-06 16:49:11 +08002106 lockdep_assert_held(&card->dapm_mutex);
2107
Richard Purdie2b97eab2006-10-06 18:32:18 +02002108 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002109 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002110 found = 1;
2111 /* we now need to match the string in the enum to the path */
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002112 if (!(strcmp(path->name, e->texts[mux])))
2113 connect = true;
2114 else
2115 connect = false;
2116
2117 soc_dapm_connect_path(path, connect, "mux update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002118 }
2119
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002120 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002121 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002122
Liam Girdwood618dae12012-04-25 12:12:51 +01002123 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002124}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002125
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002126int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002127 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e,
2128 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002129{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002130 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002131 int ret;
2132
Liam Girdwood3cd04342012-03-09 12:02:08 +00002133 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002134 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002135 ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002136 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002137 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002138 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002139 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002140 return ret;
2141}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002142EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002143
Milan plzik1b075e32008-01-10 14:39:46 +01002144/* test and update the power status of a mixer or switch widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002145static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
Mark Brown283375c2009-12-07 18:09:03 +00002146 struct snd_kcontrol *kcontrol, int connect)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002147{
2148 struct snd_soc_dapm_path *path;
2149 int found = 0;
2150
Mark Brownf9fa2b12014-03-06 16:49:11 +08002151 lockdep_assert_held(&card->dapm_mutex);
2152
Richard Purdie2b97eab2006-10-06 18:32:18 +02002153 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002154 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002155 found = 1;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002156 soc_dapm_connect_path(path, connect, "mixer update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002157 }
2158
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002159 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002160 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002161
Liam Girdwood618dae12012-04-25 12:12:51 +01002162 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002163}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002164
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002165int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002166 struct snd_kcontrol *kcontrol, int connect,
2167 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002168{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002169 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002170 int ret;
2171
Liam Girdwood3cd04342012-03-09 12:02:08 +00002172 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002173 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002174 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002175 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002176 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002177 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002178 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002179 return ret;
2180}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002181EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002182
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002183static ssize_t dapm_widget_show_component(struct snd_soc_component *cmpnt,
2184 char *buf)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002185{
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002186 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(cmpnt);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002187 struct snd_soc_dapm_widget *w;
2188 int count = 0;
2189 char *state = "not set";
2190
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002191 list_for_each_entry(w, &cmpnt->card->widgets, list) {
2192 if (w->dapm != dapm)
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002193 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002194
2195 /* only display widgets that burnm power */
2196 switch (w->id) {
2197 case snd_soc_dapm_hp:
2198 case snd_soc_dapm_mic:
2199 case snd_soc_dapm_spk:
2200 case snd_soc_dapm_line:
2201 case snd_soc_dapm_micbias:
2202 case snd_soc_dapm_dac:
2203 case snd_soc_dapm_adc:
2204 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002205 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002206 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002207 case snd_soc_dapm_mixer_named_ctl:
Mark Brown246d0a12009-04-22 18:24:55 +01002208 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002209 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02002210 case snd_soc_dapm_clock_supply:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002211 if (w->name)
2212 count += sprintf(buf + count, "%s: %s\n",
2213 w->name, w->power ? "On":"Off");
2214 break;
2215 default:
2216 break;
2217 }
2218 }
2219
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002220 switch (snd_soc_dapm_get_bias_level(dapm)) {
Mark Brown0be98982008-05-19 12:31:28 +02002221 case SND_SOC_BIAS_ON:
2222 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002223 break;
Mark Brown0be98982008-05-19 12:31:28 +02002224 case SND_SOC_BIAS_PREPARE:
2225 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002226 break;
Mark Brown0be98982008-05-19 12:31:28 +02002227 case SND_SOC_BIAS_STANDBY:
2228 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002229 break;
Mark Brown0be98982008-05-19 12:31:28 +02002230 case SND_SOC_BIAS_OFF:
2231 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002232 break;
2233 }
2234 count += sprintf(buf + count, "PM State: %s\n", state);
2235
2236 return count;
2237}
2238
Benoit Cousson44ba2642014-07-08 23:19:36 +02002239/* show dapm widget status in sys fs */
2240static ssize_t dapm_widget_show(struct device *dev,
2241 struct device_attribute *attr, char *buf)
2242{
2243 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
2244 int i, count = 0;
2245
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002246 mutex_lock(&rtd->card->dapm_mutex);
2247
Benoit Cousson44ba2642014-07-08 23:19:36 +02002248 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002249 struct snd_soc_component *cmpnt = rtd->codec_dais[i]->component;
2250
2251 count += dapm_widget_show_component(cmpnt, buf + count);
Benoit Cousson44ba2642014-07-08 23:19:36 +02002252 }
2253
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002254 mutex_unlock(&rtd->card->dapm_mutex);
2255
Benoit Cousson44ba2642014-07-08 23:19:36 +02002256 return count;
2257}
2258
Richard Purdie2b97eab2006-10-06 18:32:18 +02002259static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
2260
Takashi Iwaid29697d2015-01-30 20:16:37 +01002261struct attribute *soc_dapm_dev_attrs[] = {
2262 &dev_attr_dapm_widget.attr,
2263 NULL
2264};
Richard Purdie2b97eab2006-10-06 18:32:18 +02002265
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002266static void dapm_free_path(struct snd_soc_dapm_path *path)
2267{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002268 list_del(&path->list_node[SND_SOC_DAPM_DIR_IN]);
2269 list_del(&path->list_node[SND_SOC_DAPM_DIR_OUT]);
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002270 list_del(&path->list_kcontrol);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002271 list_del(&path->list);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002272 kfree(path);
2273}
2274
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002275void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
2276{
2277 struct snd_soc_dapm_path *p, *next_p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002278 enum snd_soc_dapm_direction dir;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002279
2280 list_del(&w->list);
2281 /*
2282 * remove source and sink paths associated to this widget.
2283 * While removing the path, remove reference to it from both
2284 * source and sink widgets so that path is removed only once.
2285 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002286 snd_soc_dapm_for_each_direction(dir) {
2287 snd_soc_dapm_widget_for_each_path_safe(w, dir, p, next_p)
2288 dapm_free_path(p);
2289 }
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002290
2291 kfree(w->kcontrols);
Lars-Peter Clausen48068962015-07-21 18:11:08 +02002292 kfree_const(w->name);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002293 kfree(w);
2294}
2295
Jyri Sarhafd589a12015-11-10 18:12:42 +02002296void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context *dapm)
2297{
2298 dapm->path_sink_cache.widget = NULL;
2299 dapm->path_source_cache.widget = NULL;
2300}
2301
Richard Purdie2b97eab2006-10-06 18:32:18 +02002302/* free all dapm widgets and resources */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002303static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002304{
2305 struct snd_soc_dapm_widget *w, *next_w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002306
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002307 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2308 if (w->dapm != dapm)
2309 continue;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002310 snd_soc_dapm_free_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002311 }
Jyri Sarhafd589a12015-11-10 18:12:42 +02002312 snd_soc_dapm_reset_cache(dapm);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002313}
2314
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002315static struct snd_soc_dapm_widget *dapm_find_widget(
2316 struct snd_soc_dapm_context *dapm, const char *pin,
2317 bool search_other_contexts)
2318{
2319 struct snd_soc_dapm_widget *w;
2320 struct snd_soc_dapm_widget *fallback = NULL;
2321
2322 list_for_each_entry(w, &dapm->card->widgets, list) {
2323 if (!strcmp(w->name, pin)) {
2324 if (w->dapm == dapm)
2325 return w;
2326 else
2327 fallback = w;
2328 }
2329 }
2330
2331 if (search_other_contexts)
2332 return fallback;
2333
2334 return NULL;
2335}
2336
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002337static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
Mark Brown16499232009-01-07 18:25:13 +00002338 const char *pin, int status)
Liam Girdwooda5302182008-07-07 13:35:17 +01002339{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002340 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Liam Girdwooda5302182008-07-07 13:35:17 +01002341
Mark Brownf9fa2b12014-03-06 16:49:11 +08002342 dapm_assert_locked(dapm);
2343
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002344 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002345 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002346 return -EINVAL;
Liam Girdwooda5302182008-07-07 13:35:17 +01002347 }
2348
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002349 if (w->connected != status) {
Mark Brown1a8b2d92012-02-16 11:50:07 -08002350 dapm_mark_dirty(w, "pin configuration");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002351 dapm_widget_invalidate_input_paths(w);
2352 dapm_widget_invalidate_output_paths(w);
2353 }
Mark Brown1a8b2d92012-02-16 11:50:07 -08002354
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002355 w->connected = status;
2356 if (status == 0)
2357 w->force = 0;
Mark Brown0d867332011-04-06 11:38:14 +09002358
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002359 return 0;
Liam Girdwooda5302182008-07-07 13:35:17 +01002360}
2361
Richard Purdie2b97eab2006-10-06 18:32:18 +02002362/**
Charles Keepax3eb29df2014-02-18 15:22:15 +00002363 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2364 * @dapm: DAPM context
2365 *
2366 * Walks all dapm audio paths and powers widgets according to their
2367 * stream or path usage.
2368 *
2369 * Requires external locking.
2370 *
2371 * Returns 0 for success.
2372 */
2373int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2374{
2375 /*
2376 * Suppress early reports (eg, jacks syncing their state) to avoid
2377 * silly DAPM runs during card startup.
2378 */
2379 if (!dapm->card || !dapm->card->instantiated)
2380 return 0;
2381
2382 return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2383}
2384EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2385
2386/**
Liam Girdwooda5302182008-07-07 13:35:17 +01002387 * snd_soc_dapm_sync - scan and power dapm paths
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002388 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02002389 *
2390 * Walks all dapm audio paths and powers widgets according to their
2391 * stream or path usage.
2392 *
2393 * Returns 0 for success.
2394 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002395int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002396{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002397 int ret;
2398
Liam Girdwood3cd04342012-03-09 12:02:08 +00002399 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Charles Keepax3eb29df2014-02-18 15:22:15 +00002400 ret = snd_soc_dapm_sync_unlocked(dapm);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002401 mutex_unlock(&dapm->card->dapm_mutex);
2402 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002403}
Liam Girdwooda5302182008-07-07 13:35:17 +01002404EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002405
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002406/*
2407 * dapm_update_widget_flags() - Re-compute widget sink and source flags
2408 * @w: The widget for which to update the flags
2409 *
2410 * Some widgets have a dynamic category which depends on which neighbors they
2411 * are connected to. This function update the category for these widgets.
2412 *
2413 * This function must be called whenever a path is added or removed to a widget.
2414 */
2415static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w)
2416{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002417 enum snd_soc_dapm_direction dir;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002418 struct snd_soc_dapm_path *p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002419 unsigned int ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002420
2421 switch (w->id) {
2422 case snd_soc_dapm_input:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002423 /* On a fully routed card a input is never a source */
2424 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002425 return;
2426 ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002427 snd_soc_dapm_widget_for_each_source_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002428 if (p->source->id == snd_soc_dapm_micbias ||
2429 p->source->id == snd_soc_dapm_mic ||
2430 p->source->id == snd_soc_dapm_line ||
2431 p->source->id == snd_soc_dapm_output) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002432 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002433 break;
2434 }
2435 }
2436 break;
2437 case snd_soc_dapm_output:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002438 /* On a fully routed card a output is never a sink */
2439 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002440 return;
2441 ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002442 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002443 if (p->sink->id == snd_soc_dapm_spk ||
2444 p->sink->id == snd_soc_dapm_hp ||
2445 p->sink->id == snd_soc_dapm_line ||
2446 p->sink->id == snd_soc_dapm_input) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002447 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002448 break;
2449 }
2450 }
2451 break;
2452 case snd_soc_dapm_line:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002453 ep = 0;
2454 snd_soc_dapm_for_each_direction(dir) {
2455 if (!list_empty(&w->edges[dir]))
2456 ep |= SND_SOC_DAPM_DIR_TO_EP(dir);
2457 }
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002458 break;
2459 default:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002460 return;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002461 }
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002462
2463 w->is_ep = ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002464}
2465
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002466static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm,
2467 struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink,
2468 const char *control)
2469{
2470 bool dynamic_source = false;
2471 bool dynamic_sink = false;
2472
2473 if (!control)
2474 return 0;
2475
2476 switch (source->id) {
2477 case snd_soc_dapm_demux:
2478 dynamic_source = true;
2479 break;
2480 default:
2481 break;
2482 }
2483
2484 switch (sink->id) {
2485 case snd_soc_dapm_mux:
2486 case snd_soc_dapm_switch:
2487 case snd_soc_dapm_mixer:
2488 case snd_soc_dapm_mixer_named_ctl:
2489 dynamic_sink = true;
2490 break;
2491 default:
2492 break;
2493 }
2494
2495 if (dynamic_source && dynamic_sink) {
2496 dev_err(dapm->dev,
2497 "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2498 source->name, control, sink->name);
2499 return -EINVAL;
2500 } else if (!dynamic_source && !dynamic_sink) {
2501 dev_err(dapm->dev,
2502 "Control not supported for path %s -> [%s] -> %s\n",
2503 source->name, control, sink->name);
2504 return -EINVAL;
2505 }
2506
2507 return 0;
2508}
2509
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002510static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2511 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2512 const char *control,
2513 int (*connected)(struct snd_soc_dapm_widget *source,
2514 struct snd_soc_dapm_widget *sink))
Richard Purdie2b97eab2006-10-06 18:32:18 +02002515{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002516 struct snd_soc_dapm_widget *widgets[2];
2517 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002518 struct snd_soc_dapm_path *path;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002519 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002520
Lars-Peter Clausene409dfb2014-10-25 17:42:02 +02002521 if (wsink->is_supply && !wsource->is_supply) {
2522 dev_err(dapm->dev,
2523 "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2524 wsource->name, wsink->name);
2525 return -EINVAL;
2526 }
2527
2528 if (connected && !wsource->is_supply) {
2529 dev_err(dapm->dev,
2530 "connected() callback only supported for supply widgets (%s -> %s)\n",
2531 wsource->name, wsink->name);
2532 return -EINVAL;
2533 }
2534
2535 if (wsource->is_supply && control) {
2536 dev_err(dapm->dev,
2537 "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2538 wsource->name, control, wsink->name);
2539 return -EINVAL;
2540 }
2541
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002542 ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control);
2543 if (ret)
2544 return ret;
2545
Richard Purdie2b97eab2006-10-06 18:32:18 +02002546 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2547 if (!path)
2548 return -ENOMEM;
2549
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002550 path->node[SND_SOC_DAPM_DIR_IN] = wsource;
2551 path->node[SND_SOC_DAPM_DIR_OUT] = wsink;
2552 widgets[SND_SOC_DAPM_DIR_IN] = wsource;
2553 widgets[SND_SOC_DAPM_DIR_OUT] = wsink;
2554
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002555 path->connected = connected;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002556 INIT_LIST_HEAD(&path->list);
Mark Brown69c2d342013-08-13 00:20:36 +01002557 INIT_LIST_HEAD(&path->list_kcontrol);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002558
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02002559 if (wsource->is_supply || wsink->is_supply)
2560 path->is_supply = 1;
2561
Richard Purdie2b97eab2006-10-06 18:32:18 +02002562 /* connect static paths */
2563 if (control == NULL) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002564 path->connect = 1;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002565 } else {
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002566 switch (wsource->id) {
2567 case snd_soc_dapm_demux:
2568 ret = dapm_connect_mux(dapm, path, control, wsource);
2569 if (ret)
2570 goto err;
2571 break;
2572 default:
2573 break;
2574 }
2575
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002576 switch (wsink->id) {
2577 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002578 ret = dapm_connect_mux(dapm, path, control, wsink);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002579 if (ret != 0)
2580 goto err;
2581 break;
2582 case snd_soc_dapm_switch:
2583 case snd_soc_dapm_mixer:
2584 case snd_soc_dapm_mixer_named_ctl:
2585 ret = dapm_connect_mixer(dapm, path, control);
2586 if (ret != 0)
2587 goto err;
2588 break;
2589 default:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002590 break;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002591 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002592 }
2593
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002594 list_add(&path->list, &dapm->card->paths);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002595 snd_soc_dapm_for_each_direction(dir)
2596 list_add(&path->list_node[dir], &widgets[dir]->edges[dir]);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002597
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002598 snd_soc_dapm_for_each_direction(dir) {
2599 dapm_update_widget_flags(widgets[dir]);
2600 dapm_mark_dirty(widgets[dir], "Route added");
2601 }
Mark Brownfabd0382012-07-05 17:20:06 +01002602
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002603 if (dapm->card->instantiated && path->connect)
2604 dapm_path_invalidate(path);
2605
Richard Purdie2b97eab2006-10-06 18:32:18 +02002606 return 0;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002607err:
2608 kfree(path);
2609 return ret;
2610}
Richard Purdie2b97eab2006-10-06 18:32:18 +02002611
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002612static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002613 const struct snd_soc_dapm_route *route)
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002614{
2615 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2616 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2617 const char *sink;
2618 const char *source;
2619 char prefixed_sink[80];
2620 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002621 const char *prefix;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002622 int ret;
2623
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002624 prefix = soc_dapm_prefix(dapm);
2625 if (prefix) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002626 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002627 prefix, route->sink);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002628 sink = prefixed_sink;
2629 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002630 prefix, route->source);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002631 source = prefixed_source;
2632 } else {
2633 sink = route->sink;
2634 source = route->source;
2635 }
2636
Charles Keepax45a110a2015-05-11 13:50:30 +01002637 wsource = dapm_wcache_lookup(&dapm->path_source_cache, source);
2638 wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink);
2639
2640 if (wsink && wsource)
2641 goto skip_search;
2642
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002643 /*
2644 * find src and dest widgets over all widgets but favor a widget from
2645 * current DAPM context
2646 */
2647 list_for_each_entry(w, &dapm->card->widgets, list) {
2648 if (!wsink && !(strcmp(w->name, sink))) {
2649 wtsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002650 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002651 wsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002652 if (wsource)
2653 break;
2654 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002655 continue;
2656 }
2657 if (!wsource && !(strcmp(w->name, source))) {
2658 wtsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002659 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002660 wsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002661 if (wsink)
2662 break;
2663 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002664 }
2665 }
2666 /* use widget from another DAPM context if not found from this */
2667 if (!wsink)
2668 wsink = wtsink;
2669 if (!wsource)
2670 wsource = wtsource;
2671
2672 if (wsource == NULL) {
2673 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2674 route->source);
2675 return -ENODEV;
2676 }
2677 if (wsink == NULL) {
2678 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2679 route->sink);
2680 return -ENODEV;
2681 }
2682
Charles Keepax45a110a2015-05-11 13:50:30 +01002683skip_search:
2684 dapm_wcache_update(&dapm->path_sink_cache, wsink);
2685 dapm_wcache_update(&dapm->path_source_cache, wsource);
2686
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002687 ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2688 route->connected);
2689 if (ret)
2690 goto err;
2691
2692 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002693err:
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002694 dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002695 source, route->control, sink);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002696 return ret;
2697}
Mark Brown105f1c22008-05-13 14:52:19 +02002698
Mark Brownefcc3c62012-07-05 17:24:19 +01002699static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
2700 const struct snd_soc_dapm_route *route)
2701{
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002702 struct snd_soc_dapm_widget *wsource, *wsink;
Mark Brownefcc3c62012-07-05 17:24:19 +01002703 struct snd_soc_dapm_path *path, *p;
2704 const char *sink;
2705 const char *source;
2706 char prefixed_sink[80];
2707 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002708 const char *prefix;
Mark Brownefcc3c62012-07-05 17:24:19 +01002709
2710 if (route->control) {
2711 dev_err(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002712 "ASoC: Removal of routes with controls not supported\n");
Mark Brownefcc3c62012-07-05 17:24:19 +01002713 return -EINVAL;
2714 }
2715
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002716 prefix = soc_dapm_prefix(dapm);
2717 if (prefix) {
Mark Brownefcc3c62012-07-05 17:24:19 +01002718 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002719 prefix, route->sink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002720 sink = prefixed_sink;
2721 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002722 prefix, route->source);
Mark Brownefcc3c62012-07-05 17:24:19 +01002723 source = prefixed_source;
2724 } else {
2725 sink = route->sink;
2726 source = route->source;
2727 }
2728
2729 path = NULL;
2730 list_for_each_entry(p, &dapm->card->paths, list) {
2731 if (strcmp(p->source->name, source) != 0)
2732 continue;
2733 if (strcmp(p->sink->name, sink) != 0)
2734 continue;
2735 path = p;
2736 break;
2737 }
2738
2739 if (path) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002740 wsource = path->source;
2741 wsink = path->sink;
2742
2743 dapm_mark_dirty(wsource, "Route removed");
2744 dapm_mark_dirty(wsink, "Route removed");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002745 if (path->connect)
2746 dapm_path_invalidate(path);
Mark Brownefcc3c62012-07-05 17:24:19 +01002747
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002748 dapm_free_path(path);
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002749
2750 /* Update any path related flags */
2751 dapm_update_widget_flags(wsource);
2752 dapm_update_widget_flags(wsink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002753 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002754 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
Mark Brownefcc3c62012-07-05 17:24:19 +01002755 source, sink);
2756 }
2757
2758 return 0;
2759}
2760
Mark Brown105f1c22008-05-13 14:52:19 +02002761/**
Mark Brown105f1c22008-05-13 14:52:19 +02002762 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002763 * @dapm: DAPM context
Mark Brown105f1c22008-05-13 14:52:19 +02002764 * @route: audio routes
2765 * @num: number of routes
2766 *
2767 * Connects 2 dapm widgets together via a named audio path. The sink is
2768 * the widget receiving the audio signal, whilst the source is the sender
2769 * of the audio signal.
2770 *
2771 * Returns 0 for success else error. On error all resources can be freed
2772 * with a call to snd_soc_card_free().
2773 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002774int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
Mark Brown105f1c22008-05-13 14:52:19 +02002775 const struct snd_soc_dapm_route *route, int num)
2776{
Mark Brown62d4a4b2012-06-22 12:21:49 +01002777 int i, r, ret = 0;
Mark Brown105f1c22008-05-13 14:52:19 +02002778
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002779 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown105f1c22008-05-13 14:52:19 +02002780 for (i = 0; i < num; i++) {
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002781 r = snd_soc_dapm_add_route(dapm, route);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002782 if (r < 0) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002783 dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
2784 route->source,
2785 route->control ? route->control : "direct",
2786 route->sink);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002787 ret = r;
Mark Brown105f1c22008-05-13 14:52:19 +02002788 }
2789 route++;
2790 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002791 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown105f1c22008-05-13 14:52:19 +02002792
Dan Carpenter60884c22012-04-13 22:25:43 +03002793 return ret;
Mark Brown105f1c22008-05-13 14:52:19 +02002794}
2795EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2796
Mark Brownefcc3c62012-07-05 17:24:19 +01002797/**
2798 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2799 * @dapm: DAPM context
2800 * @route: audio routes
2801 * @num: number of routes
2802 *
2803 * Removes routes from the DAPM context.
2804 */
2805int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
2806 const struct snd_soc_dapm_route *route, int num)
2807{
2808 int i, ret = 0;
2809
2810 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2811 for (i = 0; i < num; i++) {
2812 snd_soc_dapm_del_route(dapm, route);
2813 route++;
2814 }
2815 mutex_unlock(&dapm->card->dapm_mutex);
2816
2817 return ret;
2818}
2819EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
2820
Mark Brownbf3a9e12011-06-13 16:42:29 +01002821static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2822 const struct snd_soc_dapm_route *route)
2823{
2824 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2825 route->source,
2826 true);
2827 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2828 route->sink,
2829 true);
2830 struct snd_soc_dapm_path *path;
2831 int count = 0;
2832
2833 if (!source) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002834 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002835 route->source);
2836 return -ENODEV;
2837 }
2838
2839 if (!sink) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002840 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002841 route->sink);
2842 return -ENODEV;
2843 }
2844
2845 if (route->control || route->connected)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002846 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002847 route->source, route->sink);
2848
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002849 snd_soc_dapm_widget_for_each_sink_path(source, path) {
Mark Brownbf3a9e12011-06-13 16:42:29 +01002850 if (path->sink == sink) {
2851 path->weak = 1;
2852 count++;
2853 }
2854 }
2855
2856 if (count == 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002857 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002858 route->source, route->sink);
2859 if (count > 1)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002860 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002861 count, route->source, route->sink);
2862
2863 return 0;
2864}
2865
2866/**
2867 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2868 * @dapm: DAPM context
2869 * @route: audio routes
2870 * @num: number of routes
2871 *
2872 * Mark existing routes matching those specified in the passed array
2873 * as being weak, meaning that they are ignored for the purpose of
2874 * power decisions. The main intended use case is for sidetone paths
2875 * which couple audio between other independent paths if they are both
2876 * active in order to make the combination work better at the user
2877 * level but which aren't intended to be "used".
2878 *
2879 * Note that CODEC drivers should not use this as sidetone type paths
2880 * can frequently also be used as bypass paths.
2881 */
2882int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2883 const struct snd_soc_dapm_route *route, int num)
2884{
2885 int i, err;
2886 int ret = 0;
2887
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002888 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002889 for (i = 0; i < num; i++) {
2890 err = snd_soc_dapm_weak_route(dapm, route);
2891 if (err)
2892 ret = err;
2893 route++;
2894 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002895 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002896
2897 return ret;
2898}
2899EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2900
Mark Brown105f1c22008-05-13 14:52:19 +02002901/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02002902 * snd_soc_dapm_new_widgets - add new dapm widgets
Jonathan Corbet628536e2015-08-25 01:14:48 -06002903 * @card: card to be checked for new dapm widgets
Richard Purdie2b97eab2006-10-06 18:32:18 +02002904 *
2905 * Checks the codec for any new dapm widgets and creates them if found.
2906 *
2907 * Returns 0 for success.
2908 */
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02002909int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002910{
2911 struct snd_soc_dapm_widget *w;
Mark Brownb66a70d2011-02-09 18:04:11 +00002912 unsigned int val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002913
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002914 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002915
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002916 list_for_each_entry(w, &card->widgets, list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002917 {
2918 if (w->new)
2919 continue;
2920
Stephen Warrenfad59882011-04-28 17:37:59 -06002921 if (w->num_kcontrols) {
2922 w->kcontrols = kzalloc(w->num_kcontrols *
2923 sizeof(struct snd_kcontrol *),
2924 GFP_KERNEL);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002925 if (!w->kcontrols) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002926 mutex_unlock(&card->dapm_mutex);
Stephen Warrenfad59882011-04-28 17:37:59 -06002927 return -ENOMEM;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002928 }
Stephen Warrenfad59882011-04-28 17:37:59 -06002929 }
2930
Richard Purdie2b97eab2006-10-06 18:32:18 +02002931 switch(w->id) {
2932 case snd_soc_dapm_switch:
2933 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002934 case snd_soc_dapm_mixer_named_ctl:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002935 dapm_new_mixer(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002936 break;
2937 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002938 case snd_soc_dapm_demux:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002939 dapm_new_mux(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002940 break;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002941 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002942 case snd_soc_dapm_out_drv:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002943 dapm_new_pga(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002944 break;
Nikesh Oswalc6615082015-02-02 17:06:44 +00002945 case snd_soc_dapm_dai_link:
2946 dapm_new_dai_link(w);
2947 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01002948 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002949 break;
2950 }
Mark Brownb66a70d2011-02-09 18:04:11 +00002951
2952 /* Read the initial power state from the device */
2953 if (w->reg >= 0) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002954 soc_dapm_read(w->dapm, w->reg, &val);
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -08002955 val = val >> w->shift;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02002956 val &= w->mask;
2957 if (val == w->on_val)
Mark Brownb66a70d2011-02-09 18:04:11 +00002958 w->power = 1;
2959 }
2960
Richard Purdie2b97eab2006-10-06 18:32:18 +02002961 w->new = 1;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002962
Mark Brown7508b122011-10-05 12:09:12 +01002963 dapm_mark_dirty(w, "new widget");
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002964 dapm_debugfs_add_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002965 }
2966
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002967 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
2968 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002969 return 0;
2970}
2971EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
2972
2973/**
2974 * snd_soc_dapm_get_volsw - dapm mixer get callback
2975 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002976 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002977 *
2978 * Callback to get the value of a dapm mixer control.
2979 *
2980 * Returns 0 for success.
2981 */
2982int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
2983 struct snd_ctl_elem_value *ucontrol)
2984{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002985 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
2986 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002987 struct soc_mixer_control *mc =
2988 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02002989 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002990 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002991 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002992 unsigned int mask = (1 << fls(max)) - 1;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02002993 unsigned int invert = mc->invert;
Lars-Peter Clausen57295072013-08-05 11:27:31 +02002994 unsigned int val;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002995 int ret = 0;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02002996
2997 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002998 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002999 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003000 kcontrol->id.name);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003001
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003002 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003003 if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) {
3004 ret = soc_dapm_read(dapm, reg, &val);
3005 val = (val >> shift) & mask;
3006 } else {
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003007 val = dapm_kcontrol_get_value(kcontrol);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003008 }
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003009 mutex_unlock(&card->dapm_mutex);
3010
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003011 if (invert)
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003012 ucontrol->value.integer.value[0] = max - val;
3013 else
3014 ucontrol->value.integer.value[0] = val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003015
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003016 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003017}
3018EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
3019
3020/**
3021 * snd_soc_dapm_put_volsw - dapm mixer set callback
3022 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003023 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003024 *
3025 * Callback to set the value of a dapm mixer control.
3026 *
3027 * Returns 0 for success.
3028 */
3029int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
3030 struct snd_ctl_elem_value *ucontrol)
3031{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003032 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3033 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003034 struct soc_mixer_control *mc =
3035 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003036 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003037 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003038 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003039 unsigned int mask = (1 << fls(max)) - 1;
3040 unsigned int invert = mc->invert;
Stephen Warrene9cf7042011-01-27 14:54:05 -07003041 unsigned int val;
Jarkko Nikula18626c72014-06-09 14:20:29 +03003042 int connect, change, reg_change = 0;
Mark Brown97404f22010-12-14 16:13:57 +00003043 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003044 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003045
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003046 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003047 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003048 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003049 kcontrol->id.name);
3050
Richard Purdie2b97eab2006-10-06 18:32:18 +02003051 val = (ucontrol->value.integer.value[0] & mask);
Benoît Thébaudeau8a720712012-06-18 22:41:28 +02003052 connect = !!val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003053
3054 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01003055 val = max - val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003056
Liam Girdwood3cd04342012-03-09 12:02:08 +00003057 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003058
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003059 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown283375c2009-12-07 18:09:03 +00003060
Jarkko Nikula18626c72014-06-09 14:20:29 +03003061 if (reg != SND_SOC_NOPM) {
3062 mask = mask << shift;
3063 val = val << shift;
Lars-Peter Clausenc9e065c2014-05-04 19:17:05 +02003064
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003065 reg_change = soc_dapm_test_bits(dapm, reg, mask, val);
Jarkko Nikula18626c72014-06-09 14:20:29 +03003066 }
3067
3068 if (change || reg_change) {
3069 if (reg_change) {
3070 update.kcontrol = kcontrol;
3071 update.reg = reg;
3072 update.mask = mask;
3073 update.val = val;
3074 card->update = &update;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003075 }
Jarkko Nikula18626c72014-06-09 14:20:29 +03003076 change |= reg_change;
Mark Brown97404f22010-12-14 16:13:57 +00003077
Nenghua Cao52765972013-12-13 20:13:49 +08003078 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Mark Brown97404f22010-12-14 16:13:57 +00003079
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003080 card->update = NULL;
Mark Brown283375c2009-12-07 18:09:03 +00003081 }
3082
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003083 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003084
3085 if (ret > 0)
3086 soc_dpcm_runtime_update(card);
3087
Lars-Peter Clausen56a67832013-07-24 15:27:35 +02003088 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003089}
3090EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3091
3092/**
3093 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3094 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003095 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003096 *
3097 * Callback to get the value of a dapm enumerated double mixer control.
3098 *
3099 * Returns 0 for success.
3100 */
3101int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3102 struct snd_ctl_elem_value *ucontrol)
3103{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003104 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
Charles Keepax561ed682015-05-01 12:37:26 +01003105 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003106 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003107 unsigned int reg_val, val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003108
Charles Keepax561ed682015-05-01 12:37:26 +01003109 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3110 if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003111 int ret = soc_dapm_read(dapm, e->reg, &reg_val);
Charles Keepax964a0b82015-05-08 10:50:10 +01003112 if (ret) {
3113 mutex_unlock(&card->dapm_mutex);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003114 return ret;
Charles Keepax964a0b82015-05-08 10:50:10 +01003115 }
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003116 } else {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003117 reg_val = dapm_kcontrol_get_value(kcontrol);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003118 }
Charles Keepax561ed682015-05-01 12:37:26 +01003119 mutex_unlock(&card->dapm_mutex);
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003120
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003121 val = (reg_val >> e->shift_l) & e->mask;
3122 ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3123 if (e->shift_l != e->shift_r) {
3124 val = (reg_val >> e->shift_r) & e->mask;
3125 val = snd_soc_enum_val_to_item(e, val);
3126 ucontrol->value.enumerated.item[1] = val;
3127 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003128
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003129 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003130}
3131EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3132
3133/**
3134 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3135 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003136 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003137 *
3138 * Callback to set the value of a dapm enumerated double mixer control.
3139 *
3140 * Returns 0 for success.
3141 */
3142int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3143 struct snd_ctl_elem_value *ucontrol)
3144{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003145 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3146 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003147 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003148 unsigned int *item = ucontrol->value.enumerated.item;
Charles Keepax561ed682015-05-01 12:37:26 +01003149 unsigned int val, change, reg_change = 0;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003150 unsigned int mask;
Mark Brown97404f22010-12-14 16:13:57 +00003151 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003152 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003153
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003154 if (item[0] >= e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003155 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003156
3157 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003158 mask = e->mask << e->shift_l;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003159 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003160 if (item[1] > e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003161 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003162 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003163 mask |= e->mask << e->shift_r;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003164 }
3165
Liam Girdwood3cd04342012-03-09 12:02:08 +00003166 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06003167
Charles Keepax561ed682015-05-01 12:37:26 +01003168 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown97404f22010-12-14 16:13:57 +00003169
Charles Keepax561ed682015-05-01 12:37:26 +01003170 if (e->reg != SND_SOC_NOPM)
3171 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3172
3173 if (change || reg_change) {
3174 if (reg_change) {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003175 update.kcontrol = kcontrol;
3176 update.reg = e->reg;
3177 update.mask = mask;
3178 update.val = val;
3179 card->update = &update;
3180 }
Charles Keepax561ed682015-05-01 12:37:26 +01003181 change |= reg_change;
Mark Brown3a655772009-10-05 17:23:30 +01003182
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003183 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
Mark Brown1642e3d2009-10-05 16:24:26 +01003184
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003185 card->update = NULL;
Stephen Warrenfafd2172011-04-28 17:38:00 -06003186 }
3187
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003188 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003189
3190 if (ret > 0)
3191 soc_dpcm_runtime_update(card);
3192
Mark Brown97404f22010-12-14 16:13:57 +00003193 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003194}
3195EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3196
3197/**
Mark Brown8b37dbd2009-02-28 21:14:20 +00003198 * snd_soc_dapm_info_pin_switch - Info for a pin switch
3199 *
3200 * @kcontrol: mixer control
3201 * @uinfo: control element information
3202 *
3203 * Callback to provide information about a pin switch control.
3204 */
3205int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3206 struct snd_ctl_elem_info *uinfo)
3207{
3208 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3209 uinfo->count = 1;
3210 uinfo->value.integer.min = 0;
3211 uinfo->value.integer.max = 1;
3212
3213 return 0;
3214}
3215EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3216
3217/**
3218 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3219 *
3220 * @kcontrol: mixer control
3221 * @ucontrol: Value
3222 */
3223int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3224 struct snd_ctl_elem_value *ucontrol)
3225{
Mark Brown48a8c392012-02-14 17:11:15 -08003226 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003227 const char *pin = (const char *)kcontrol->private_value;
3228
Liam Girdwood3cd04342012-03-09 12:02:08 +00003229 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003230
3231 ucontrol->value.integer.value[0] =
Mark Brown48a8c392012-02-14 17:11:15 -08003232 snd_soc_dapm_get_pin_status(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003233
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003234 mutex_unlock(&card->dapm_mutex);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003235
3236 return 0;
3237}
3238EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3239
3240/**
3241 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3242 *
3243 * @kcontrol: mixer control
3244 * @ucontrol: Value
3245 */
3246int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3247 struct snd_ctl_elem_value *ucontrol)
3248{
Mark Brown48a8c392012-02-14 17:11:15 -08003249 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003250 const char *pin = (const char *)kcontrol->private_value;
3251
Mark Brown8b37dbd2009-02-28 21:14:20 +00003252 if (ucontrol->value.integer.value[0])
Mark Brown48a8c392012-02-14 17:11:15 -08003253 snd_soc_dapm_enable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003254 else
Mark Brown48a8c392012-02-14 17:11:15 -08003255 snd_soc_dapm_disable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003256
Mark Brown48a8c392012-02-14 17:11:15 -08003257 snd_soc_dapm_sync(&card->dapm);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003258 return 0;
3259}
3260EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3261
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +01003262struct snd_soc_dapm_widget *
Mark Brown5ba06fc2012-02-16 11:07:13 -08003263snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003264 const struct snd_soc_dapm_widget *widget)
3265{
3266 struct snd_soc_dapm_widget *w;
3267
3268 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3269 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3270 if (!w)
3271 dev_err(dapm->dev,
3272 "ASoC: Failed to create DAPM control %s\n",
3273 widget->name);
3274
3275 mutex_unlock(&dapm->card->dapm_mutex);
3276 return w;
3277}
3278
3279struct snd_soc_dapm_widget *
3280snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003281 const struct snd_soc_dapm_widget *widget)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003282{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003283 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003284 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003285 const char *prefix;
Mark Brown62ea8742012-01-21 21:14:48 +00003286 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003287
3288 if ((w = dapm_cnew_widget(widget)) == NULL)
Mark Brown5ba06fc2012-02-16 11:07:13 -08003289 return NULL;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003290
Mark Brown62ea8742012-01-21 21:14:48 +00003291 switch (w->id) {
3292 case snd_soc_dapm_regulator_supply:
Liam Girdwooda3cc0562012-03-09 17:20:16 +00003293 w->regulator = devm_regulator_get(dapm->dev, w->name);
3294 if (IS_ERR(w->regulator)) {
3295 ret = PTR_ERR(w->regulator);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003296 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Mark Brown62ea8742012-01-21 21:14:48 +00003297 w->name, ret);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003298 return NULL;
Mark Brown62ea8742012-01-21 21:14:48 +00003299 }
Mark Brown8784c772013-01-10 19:33:47 +00003300
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003301 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00003302 ret = regulator_allow_bypass(w->regulator, true);
3303 if (ret != 0)
3304 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00003305 "ASoC: Failed to bypass %s: %d\n",
Mark Brown8784c772013-01-10 19:33:47 +00003306 w->name, ret);
3307 }
Mark Brown62ea8742012-01-21 21:14:48 +00003308 break;
Ola Liljad7e7eb92012-05-24 15:26:25 +02003309 case snd_soc_dapm_clock_supply:
Mark Brown165961e2012-06-05 10:44:23 +01003310#ifdef CONFIG_CLKDEV_LOOKUP
Mark Brown695594f12012-06-04 08:14:13 +01003311 w->clk = devm_clk_get(dapm->dev, w->name);
Ola Liljad7e7eb92012-05-24 15:26:25 +02003312 if (IS_ERR(w->clk)) {
3313 ret = PTR_ERR(w->clk);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003314 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Ola Liljad7e7eb92012-05-24 15:26:25 +02003315 w->name, ret);
3316 return NULL;
3317 }
Mark Brownec029952012-06-04 08:16:20 +01003318#else
3319 return NULL;
3320#endif
Ola Liljad7e7eb92012-05-24 15:26:25 +02003321 break;
Mark Brown62ea8742012-01-21 21:14:48 +00003322 default:
3323 break;
3324 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003325
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003326 prefix = soc_dapm_prefix(dapm);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003327 if (prefix)
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003328 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003329 else
Lars-Peter Clausen48068962015-07-21 18:11:08 +02003330 w->name = kstrdup_const(widget->name, GFP_KERNEL);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003331 if (w->name == NULL) {
3332 kfree(w);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003333 return NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003334 }
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003335
Mark Brown7ca3a182011-10-08 14:04:50 +01003336 switch (w->id) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003337 case snd_soc_dapm_mic:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003338 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003339 w->power_check = dapm_generic_check_power;
3340 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003341 case snd_soc_dapm_input:
3342 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003343 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003344 w->power_check = dapm_generic_check_power;
3345 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003346 case snd_soc_dapm_spk:
3347 case snd_soc_dapm_hp:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003348 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003349 w->power_check = dapm_generic_check_power;
3350 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003351 case snd_soc_dapm_output:
3352 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003353 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003354 w->power_check = dapm_generic_check_power;
3355 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003356 case snd_soc_dapm_vmid:
3357 case snd_soc_dapm_siggen:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003358 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003359 w->power_check = dapm_always_on_check_power;
3360 break;
Vinod Koul56b44372015-11-23 21:22:30 +05303361 case snd_soc_dapm_sink:
3362 w->is_ep = SND_SOC_DAPM_EP_SINK;
3363 w->power_check = dapm_always_on_check_power;
3364 break;
3365
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003366 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02003367 case snd_soc_dapm_demux:
Mark Brown7ca3a182011-10-08 14:04:50 +01003368 case snd_soc_dapm_switch:
3369 case snd_soc_dapm_mixer:
3370 case snd_soc_dapm_mixer_named_ctl:
Mark Brown63c69a62013-07-18 22:03:01 +01003371 case snd_soc_dapm_adc:
3372 case snd_soc_dapm_aif_out:
3373 case snd_soc_dapm_dac:
3374 case snd_soc_dapm_aif_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003375 case snd_soc_dapm_pga:
3376 case snd_soc_dapm_out_drv:
Mark Brown7ca3a182011-10-08 14:04:50 +01003377 case snd_soc_dapm_micbias:
Mark Brown7ca3a182011-10-08 14:04:50 +01003378 case snd_soc_dapm_line:
Mark Brownc74184e2012-04-04 22:12:09 +01003379 case snd_soc_dapm_dai_link:
Lars-Peter Clausencdef2ad2014-10-20 19:36:38 +02003380 case snd_soc_dapm_dai_out:
3381 case snd_soc_dapm_dai_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003382 w->power_check = dapm_generic_check_power;
3383 break;
3384 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00003385 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02003386 case snd_soc_dapm_clock_supply:
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003387 case snd_soc_dapm_kcontrol:
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003388 w->is_supply = 1;
Mark Brown7ca3a182011-10-08 14:04:50 +01003389 w->power_check = dapm_supply_check_power;
3390 break;
3391 default:
3392 w->power_check = dapm_always_on_check_power;
3393 break;
3394 }
3395
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003396 w->dapm = dapm;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003397 INIT_LIST_HEAD(&w->list);
Mark Browndb432b42011-10-03 21:06:40 +01003398 INIT_LIST_HEAD(&w->dirty);
Lars-Peter Clausen92fa1242015-05-01 18:02:42 +02003399 list_add_tail(&w->list, &dapm->card->widgets);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003400
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003401 snd_soc_dapm_for_each_direction(dir) {
3402 INIT_LIST_HEAD(&w->edges[dir]);
3403 w->endpoints[dir] = -1;
3404 }
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02003405
Richard Purdie2b97eab2006-10-06 18:32:18 +02003406 /* machine layer set ups unconnected pins and insertions */
3407 w->connected = 1;
Mark Brown5ba06fc2012-02-16 11:07:13 -08003408 return w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003409}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003410
3411/**
Mark Brown4ba13272008-05-13 14:51:19 +02003412 * snd_soc_dapm_new_controls - create new dapm controls
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003413 * @dapm: DAPM context
Mark Brown4ba13272008-05-13 14:51:19 +02003414 * @widget: widget array
3415 * @num: number of widgets
3416 *
3417 * Creates new DAPM controls based upon the templates.
3418 *
3419 * Returns 0 for success else error.
3420 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003421int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
Mark Brown4ba13272008-05-13 14:51:19 +02003422 const struct snd_soc_dapm_widget *widget,
3423 int num)
3424{
Mark Brown5ba06fc2012-02-16 11:07:13 -08003425 struct snd_soc_dapm_widget *w;
3426 int i;
Dan Carpenter60884c22012-04-13 22:25:43 +03003427 int ret = 0;
Mark Brown4ba13272008-05-13 14:51:19 +02003428
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003429 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown4ba13272008-05-13 14:51:19 +02003430 for (i = 0; i < num; i++) {
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003431 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003432 if (!w) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02003433 dev_err(dapm->dev,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003434 "ASoC: Failed to create DAPM control %s\n",
3435 widget->name);
Dan Carpenter60884c22012-04-13 22:25:43 +03003436 ret = -ENOMEM;
3437 break;
Mark Brownb8b33cb2008-12-18 11:19:30 +00003438 }
Mark Brown4ba13272008-05-13 14:51:19 +02003439 widget++;
3440 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003441 mutex_unlock(&dapm->card->dapm_mutex);
Dan Carpenter60884c22012-04-13 22:25:43 +03003442 return ret;
Mark Brown4ba13272008-05-13 14:51:19 +02003443}
3444EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3445
Mark Brownc74184e2012-04-04 22:12:09 +01003446static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3447 struct snd_kcontrol *kcontrol, int event)
3448{
3449 struct snd_soc_dapm_path *source_p, *sink_p;
3450 struct snd_soc_dai *source, *sink;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003451 const struct snd_soc_pcm_stream *config = w->params + w->params_select;
Mark Brownc74184e2012-04-04 22:12:09 +01003452 struct snd_pcm_substream substream;
Mark Brown9747cec2012-04-26 19:12:21 +01003453 struct snd_pcm_hw_params *params = NULL;
Mark Brownc74184e2012-04-04 22:12:09 +01003454 u64 fmt;
3455 int ret;
3456
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003457 if (WARN_ON(!config) ||
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003458 WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3459 list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003460 return -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003461
3462 /* We only support a single source and sink, pick the first */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003463 source_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_OUT],
3464 struct snd_soc_dapm_path,
3465 list_node[SND_SOC_DAPM_DIR_OUT]);
3466 sink_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_IN],
3467 struct snd_soc_dapm_path,
3468 list_node[SND_SOC_DAPM_DIR_IN]);
Mark Brownc74184e2012-04-04 22:12:09 +01003469
3470 source = source_p->source->priv;
3471 sink = sink_p->sink->priv;
3472
3473 /* Be a little careful as we don't want to overflow the mask array */
3474 if (config->formats) {
3475 fmt = ffs(config->formats) - 1;
3476 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003477 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003478 config->formats);
3479 fmt = 0;
3480 }
3481
3482 /* Currently very limited parameter selection */
Mark Brown9747cec2012-04-26 19:12:21 +01003483 params = kzalloc(sizeof(*params), GFP_KERNEL);
3484 if (!params) {
3485 ret = -ENOMEM;
3486 goto out;
3487 }
3488 snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
Mark Brownc74184e2012-04-04 22:12:09 +01003489
Mark Brown9747cec2012-04-26 19:12:21 +01003490 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
Mark Brownc74184e2012-04-04 22:12:09 +01003491 config->rate_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003492 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
Mark Brownc74184e2012-04-04 22:12:09 +01003493 config->rate_max;
3494
Mark Brown9747cec2012-04-26 19:12:21 +01003495 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
Mark Brownc74184e2012-04-04 22:12:09 +01003496 = config->channels_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003497 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
Mark Brownc74184e2012-04-04 22:12:09 +01003498 = config->channels_max;
3499
3500 memset(&substream, 0, sizeof(substream));
3501
3502 switch (event) {
3503 case SND_SOC_DAPM_PRE_PMU:
Benoit Cousson93e69582014-07-08 23:19:38 +02003504 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303505 if (source->driver->ops && source->driver->ops->startup) {
3506 ret = source->driver->ops->startup(&substream, source);
3507 if (ret < 0) {
3508 dev_err(source->dev,
3509 "ASoC: startup() failed: %d\n", ret);
3510 goto out;
3511 }
3512 source->active++;
3513 }
Benoit Cousson93e69582014-07-08 23:19:38 +02003514 ret = soc_dai_hw_params(&substream, params, source);
3515 if (ret < 0)
3516 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003517
Benoit Cousson93e69582014-07-08 23:19:38 +02003518 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303519 if (sink->driver->ops && sink->driver->ops->startup) {
3520 ret = sink->driver->ops->startup(&substream, sink);
3521 if (ret < 0) {
3522 dev_err(sink->dev,
3523 "ASoC: startup() failed: %d\n", ret);
3524 goto out;
3525 }
3526 sink->active++;
3527 }
Benoit Cousson93e69582014-07-08 23:19:38 +02003528 ret = soc_dai_hw_params(&substream, params, sink);
3529 if (ret < 0)
3530 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003531 break;
3532
3533 case SND_SOC_DAPM_POST_PMU:
Mark Brownda183962013-02-06 15:44:07 +00003534 ret = snd_soc_dai_digital_mute(sink, 0,
3535 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003536 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003537 dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003538 ret = 0;
Mark Brownc74184e2012-04-04 22:12:09 +01003539 break;
3540
3541 case SND_SOC_DAPM_PRE_PMD:
Mark Brownda183962013-02-06 15:44:07 +00003542 ret = snd_soc_dai_digital_mute(sink, 1,
3543 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003544 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003545 dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003546 ret = 0;
Jeeja KP9b8ef9f2015-10-20 22:30:07 +05303547
3548 source->active--;
3549 if (source->driver->ops && source->driver->ops->shutdown) {
3550 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3551 source->driver->ops->shutdown(&substream, source);
3552 }
3553
3554 sink->active--;
3555 if (sink->driver->ops && sink->driver->ops->shutdown) {
3556 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3557 sink->driver->ops->shutdown(&substream, sink);
3558 }
Mark Brownc74184e2012-04-04 22:12:09 +01003559 break;
3560
3561 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01003562 WARN(1, "Unknown event %d\n", event);
Sudip Mukherjee75881df2015-09-10 18:01:44 +05303563 ret = -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003564 }
3565
Mark Brown9747cec2012-04-26 19:12:21 +01003566out:
3567 kfree(params);
3568 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003569}
3570
Nikesh Oswalc6615082015-02-02 17:06:44 +00003571static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
3572 struct snd_ctl_elem_value *ucontrol)
3573{
3574 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3575
Takashi Iwai741338f2016-02-29 17:20:48 +01003576 ucontrol->value.enumerated.item[0] = w->params_select;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003577
3578 return 0;
3579}
3580
3581static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
3582 struct snd_ctl_elem_value *ucontrol)
3583{
3584 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3585
3586 /* Can't change the config when widget is already powered */
3587 if (w->power)
3588 return -EBUSY;
3589
Takashi Iwai741338f2016-02-29 17:20:48 +01003590 if (ucontrol->value.enumerated.item[0] == w->params_select)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003591 return 0;
3592
Takashi Iwai741338f2016-02-29 17:20:48 +01003593 if (ucontrol->value.enumerated.item[0] >= w->num_params)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003594 return -EINVAL;
3595
Takashi Iwai741338f2016-02-29 17:20:48 +01003596 w->params_select = ucontrol->value.enumerated.item[0];
Nikesh Oswalc6615082015-02-02 17:06:44 +00003597
3598 return 0;
3599}
3600
Mark Brownc74184e2012-04-04 22:12:09 +01003601int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3602 const struct snd_soc_pcm_stream *params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00003603 unsigned int num_params,
Mark Brownc74184e2012-04-04 22:12:09 +01003604 struct snd_soc_dapm_widget *source,
3605 struct snd_soc_dapm_widget *sink)
3606{
Mark Brownc74184e2012-04-04 22:12:09 +01003607 struct snd_soc_dapm_widget template;
3608 struct snd_soc_dapm_widget *w;
Mark Brownc74184e2012-04-04 22:12:09 +01003609 char *link_name;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003610 int ret, count;
3611 unsigned long private_value;
3612 const char **w_param_text;
3613 struct soc_enum w_param_enum[] = {
3614 SOC_ENUM_SINGLE(0, 0, 0, NULL),
3615 };
3616 struct snd_kcontrol_new kcontrol_dai_link[] = {
3617 SOC_ENUM_EXT(NULL, w_param_enum[0],
3618 snd_soc_dapm_dai_link_get,
3619 snd_soc_dapm_dai_link_put),
3620 };
3621 const struct snd_soc_pcm_stream *config = params;
Mark Brownc74184e2012-04-04 22:12:09 +01003622
Nikesh Oswalc6615082015-02-02 17:06:44 +00003623 w_param_text = devm_kcalloc(card->dev, num_params,
3624 sizeof(char *), GFP_KERNEL);
3625 if (!w_param_text)
Mark Brownc74184e2012-04-04 22:12:09 +01003626 return -ENOMEM;
Mark Brownc74184e2012-04-04 22:12:09 +01003627
Charles Keepax46172b62015-03-25 11:22:35 +00003628 link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
3629 source->name, sink->name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003630 if (!link_name) {
3631 ret = -ENOMEM;
3632 goto outfree_w_param;
3633 }
Mark Brownc74184e2012-04-04 22:12:09 +01003634
Nikesh Oswalc6615082015-02-02 17:06:44 +00003635 for (count = 0 ; count < num_params; count++) {
3636 if (!config->stream_name) {
3637 dev_warn(card->dapm.dev,
3638 "ASoC: anonymous config %d for dai link %s\n",
3639 count, link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003640 w_param_text[count] =
Charles Keepax46172b62015-03-25 11:22:35 +00003641 devm_kasprintf(card->dev, GFP_KERNEL,
3642 "Anonymous Configuration %d",
3643 count);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003644 if (!w_param_text[count]) {
3645 ret = -ENOMEM;
3646 goto outfree_link_name;
3647 }
Nikesh Oswalc6615082015-02-02 17:06:44 +00003648 } else {
3649 w_param_text[count] = devm_kmemdup(card->dev,
3650 config->stream_name,
3651 strlen(config->stream_name) + 1,
3652 GFP_KERNEL);
3653 if (!w_param_text[count]) {
3654 ret = -ENOMEM;
3655 goto outfree_link_name;
3656 }
3657 }
3658 config++;
3659 }
3660 w_param_enum[0].items = num_params;
3661 w_param_enum[0].texts = w_param_text;
Mark Brownc74184e2012-04-04 22:12:09 +01003662
3663 memset(&template, 0, sizeof(template));
3664 template.reg = SND_SOC_NOPM;
3665 template.id = snd_soc_dapm_dai_link;
3666 template.name = link_name;
3667 template.event = snd_soc_dai_link_event;
3668 template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3669 SND_SOC_DAPM_PRE_PMD;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003670 template.num_kcontrols = 1;
3671 /* duplicate w_param_enum on heap so that memory persists */
3672 private_value =
3673 (unsigned long) devm_kmemdup(card->dev,
3674 (void *)(kcontrol_dai_link[0].private_value),
3675 sizeof(struct soc_enum), GFP_KERNEL);
3676 if (!private_value) {
3677 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3678 link_name);
3679 ret = -ENOMEM;
3680 goto outfree_link_name;
3681 }
3682 kcontrol_dai_link[0].private_value = private_value;
3683 /* duplicate kcontrol_dai_link on heap so that memory persists */
3684 template.kcontrol_news =
3685 devm_kmemdup(card->dev, &kcontrol_dai_link[0],
3686 sizeof(struct snd_kcontrol_new),
3687 GFP_KERNEL);
3688 if (!template.kcontrol_news) {
3689 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3690 link_name);
3691 ret = -ENOMEM;
3692 goto outfree_private_value;
3693 }
Mark Brownc74184e2012-04-04 22:12:09 +01003694
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003695 dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
Mark Brownc74184e2012-04-04 22:12:09 +01003696
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003697 w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
Mark Brownc74184e2012-04-04 22:12:09 +01003698 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003699 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003700 link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003701 ret = -ENOMEM;
3702 goto outfree_kcontrol_news;
Mark Brownc74184e2012-04-04 22:12:09 +01003703 }
3704
3705 w->params = params;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003706 w->num_params = num_params;
Mark Brownc74184e2012-04-04 22:12:09 +01003707
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003708 ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3709 if (ret)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003710 goto outfree_w;
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003711 return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003712
3713outfree_w:
3714 devm_kfree(card->dev, w);
3715outfree_kcontrol_news:
3716 devm_kfree(card->dev, (void *)template.kcontrol_news);
3717outfree_private_value:
3718 devm_kfree(card->dev, (void *)private_value);
3719outfree_link_name:
3720 devm_kfree(card->dev, link_name);
3721outfree_w_param:
3722 for (count = 0 ; count < num_params; count++)
3723 devm_kfree(card->dev, (void *)w_param_text[count]);
3724 devm_kfree(card->dev, w_param_text);
3725
3726 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003727}
3728
Mark Brown888df392012-02-16 19:37:51 -08003729int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3730 struct snd_soc_dai *dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003731{
Mark Brown888df392012-02-16 19:37:51 -08003732 struct snd_soc_dapm_widget template;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003733 struct snd_soc_dapm_widget *w;
3734
Mark Brown888df392012-02-16 19:37:51 -08003735 WARN_ON(dapm->dev != dai->dev);
3736
3737 memset(&template, 0, sizeof(template));
3738 template.reg = SND_SOC_NOPM;
3739
3740 if (dai->driver->playback.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003741 template.id = snd_soc_dapm_dai_in;
Mark Brown888df392012-02-16 19:37:51 -08003742 template.name = dai->driver->playback.stream_name;
3743 template.sname = dai->driver->playback.stream_name;
3744
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003745 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003746 template.name);
3747
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003748 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003749 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003750 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003751 dai->driver->playback.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003752 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003753 }
3754
3755 w->priv = dai;
3756 dai->playback_widget = w;
3757 }
3758
3759 if (dai->driver->capture.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003760 template.id = snd_soc_dapm_dai_out;
Mark Brown888df392012-02-16 19:37:51 -08003761 template.name = dai->driver->capture.stream_name;
3762 template.sname = dai->driver->capture.stream_name;
3763
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003764 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003765 template.name);
3766
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003767 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003768 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003769 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003770 dai->driver->capture.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003771 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003772 }
3773
3774 w->priv = dai;
3775 dai->capture_widget = w;
3776 }
3777
3778 return 0;
3779}
3780
3781int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3782{
3783 struct snd_soc_dapm_widget *dai_w, *w;
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003784 struct snd_soc_dapm_widget *src, *sink;
Mark Brown888df392012-02-16 19:37:51 -08003785 struct snd_soc_dai *dai;
Mark Brown888df392012-02-16 19:37:51 -08003786
3787 /* For each DAI widget... */
3788 list_for_each_entry(dai_w, &card->widgets, list) {
Mark Brown46162742013-06-05 19:36:11 +01003789 switch (dai_w->id) {
3790 case snd_soc_dapm_dai_in:
3791 case snd_soc_dapm_dai_out:
3792 break;
3793 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02003794 continue;
Mark Brown46162742013-06-05 19:36:11 +01003795 }
Mark Brown888df392012-02-16 19:37:51 -08003796
3797 dai = dai_w->priv;
3798
3799 /* ...find all widgets with the same stream and link them */
3800 list_for_each_entry(w, &card->widgets, list) {
3801 if (w->dapm != dai_w->dapm)
3802 continue;
3803
Mark Brown46162742013-06-05 19:36:11 +01003804 switch (w->id) {
3805 case snd_soc_dapm_dai_in:
3806 case snd_soc_dapm_dai_out:
Mark Brown888df392012-02-16 19:37:51 -08003807 continue;
Mark Brown46162742013-06-05 19:36:11 +01003808 default:
3809 break;
3810 }
Mark Brown888df392012-02-16 19:37:51 -08003811
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003812 if (!w->sname || !strstr(w->sname, dai_w->sname))
Mark Brown888df392012-02-16 19:37:51 -08003813 continue;
3814
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003815 if (dai_w->id == snd_soc_dapm_dai_in) {
3816 src = dai_w;
3817 sink = w;
3818 } else {
3819 src = w;
3820 sink = dai_w;
Mark Brown888df392012-02-16 19:37:51 -08003821 }
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003822 dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3823 snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003824 }
3825 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003826
Mark Brown888df392012-02-16 19:37:51 -08003827 return 0;
3828}
Liam Girdwood64a648c2011-07-25 11:15:15 +01003829
Benoit Cousson44ba2642014-07-08 23:19:36 +02003830static void dapm_connect_dai_link_widgets(struct snd_soc_card *card,
3831 struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003832{
Benoit Cousson44ba2642014-07-08 23:19:36 +02003833 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003834 struct snd_soc_dapm_widget *sink, *source;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003835 int i;
3836
Benoit Cousson44ba2642014-07-08 23:19:36 +02003837 for (i = 0; i < rtd->num_codecs; i++) {
3838 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003839
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003840 /* connect BE DAI playback if widgets are valid */
3841 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003842 source = cpu_dai->playback_widget;
3843 sink = codec_dai->playback_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003844 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003845 cpu_dai->component->name, source->name,
3846 codec_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003847
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003848 snd_soc_dapm_add_path(&card->dapm, source, sink,
3849 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003850 }
3851
3852 /* connect BE DAI capture if widgets are valid */
3853 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003854 source = codec_dai->capture_widget;
3855 sink = cpu_dai->capture_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003856 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003857 codec_dai->component->name, source->name,
3858 cpu_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003859
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003860 snd_soc_dapm_add_path(&card->dapm, source, sink,
3861 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003862 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003863 }
3864}
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003865
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003866static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
3867 int event)
3868{
3869 struct snd_soc_dapm_widget *w;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003870 unsigned int ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003871
3872 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
3873 w = dai->playback_widget;
3874 else
3875 w = dai->capture_widget;
3876
3877 if (w) {
3878 dapm_mark_dirty(w, "stream event");
3879
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003880 if (w->id == snd_soc_dapm_dai_in) {
3881 ep = SND_SOC_DAPM_EP_SOURCE;
3882 dapm_widget_invalidate_input_paths(w);
3883 } else {
3884 ep = SND_SOC_DAPM_EP_SINK;
3885 dapm_widget_invalidate_output_paths(w);
3886 }
3887
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003888 switch (event) {
3889 case SND_SOC_DAPM_STREAM_START:
3890 w->active = 1;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003891 w->is_ep = ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003892 break;
3893 case SND_SOC_DAPM_STREAM_STOP:
3894 w->active = 0;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003895 w->is_ep = 0;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003896 break;
3897 case SND_SOC_DAPM_STREAM_SUSPEND:
3898 case SND_SOC_DAPM_STREAM_RESUME:
3899 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3900 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3901 break;
3902 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003903 }
3904}
3905
Benoit Cousson44ba2642014-07-08 23:19:36 +02003906void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
3907{
Mengdong Lin1a497982015-11-18 02:34:11 -05003908 struct snd_soc_pcm_runtime *rtd;
Benoit Cousson44ba2642014-07-08 23:19:36 +02003909
3910 /* for each BE DAI link... */
Mengdong Lin1a497982015-11-18 02:34:11 -05003911 list_for_each_entry(rtd, &card->rtd_list, list) {
Benoit Cousson44ba2642014-07-08 23:19:36 +02003912 /*
3913 * dynamic FE links have no fixed DAI mapping.
3914 * CODEC<->CODEC links have no direct connection.
3915 */
3916 if (rtd->dai_link->dynamic || rtd->dai_link->params)
3917 continue;
3918
3919 dapm_connect_dai_link_widgets(card, rtd);
3920 }
3921}
3922
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003923static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3924 int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003925{
Benoit Cousson44ba2642014-07-08 23:19:36 +02003926 int i;
3927
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003928 soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
Benoit Cousson44ba2642014-07-08 23:19:36 +02003929 for (i = 0; i < rtd->num_codecs; i++)
3930 soc_dapm_dai_stream_event(rtd->codec_dais[i], stream, event);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003931
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003932 dapm_power_widgets(rtd->card, event);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003933}
3934
3935/**
3936 * snd_soc_dapm_stream_event - send a stream event to the dapm core
3937 * @rtd: PCM runtime data
3938 * @stream: stream name
3939 * @event: stream event
3940 *
3941 * Sends a stream event to the dapm core. The core then makes any
3942 * necessary widget power changes.
3943 *
3944 * Returns 0 for success else error.
3945 */
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003946void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3947 int event)
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003948{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003949 struct snd_soc_card *card = rtd->card;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003950
Liam Girdwood3cd04342012-03-09 12:02:08 +00003951 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003952 soc_dapm_stream_event(rtd, stream, event);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003953 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003954}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003955
3956/**
Charles Keepax11391102014-02-18 15:22:14 +00003957 * snd_soc_dapm_enable_pin_unlocked - enable pin.
3958 * @dapm: DAPM context
3959 * @pin: pin name
3960 *
3961 * Enables input/output pin and its parents or children widgets iff there is
3962 * a valid audio route and active audio stream.
3963 *
3964 * Requires external locking.
3965 *
3966 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3967 * do any widget power switching.
3968 */
3969int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
3970 const char *pin)
3971{
3972 return snd_soc_dapm_set_pin(dapm, pin, 1);
3973}
3974EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
3975
3976/**
Liam Girdwooda5302182008-07-07 13:35:17 +01003977 * snd_soc_dapm_enable_pin - enable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003978 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01003979 * @pin: pin name
Richard Purdie2b97eab2006-10-06 18:32:18 +02003980 *
Mark Brown74b8f952009-06-06 11:26:15 +01003981 * Enables input/output pin and its parents or children widgets iff there is
Liam Girdwooda5302182008-07-07 13:35:17 +01003982 * a valid audio route and active audio stream.
Charles Keepax11391102014-02-18 15:22:14 +00003983 *
Liam Girdwooda5302182008-07-07 13:35:17 +01003984 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3985 * do any widget power switching.
Richard Purdie2b97eab2006-10-06 18:32:18 +02003986 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003987int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003988{
Charles Keepax11391102014-02-18 15:22:14 +00003989 int ret;
3990
3991 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3992
3993 ret = snd_soc_dapm_set_pin(dapm, pin, 1);
3994
3995 mutex_unlock(&dapm->card->dapm_mutex);
3996
3997 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003998}
Liam Girdwooda5302182008-07-07 13:35:17 +01003999EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004000
4001/**
Charles Keepax11391102014-02-18 15:22:14 +00004002 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
4003 * @dapm: DAPM context
4004 * @pin: pin name
4005 *
4006 * Enables input/output pin regardless of any other state. This is
4007 * intended for use with microphone bias supplies used in microphone
4008 * jack detection.
4009 *
4010 * Requires external locking.
4011 *
4012 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4013 * do any widget power switching.
4014 */
4015int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4016 const char *pin)
4017{
4018 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
4019
4020 if (!w) {
4021 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
4022 return -EINVAL;
4023 }
4024
4025 dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02004026 if (!w->connected) {
4027 /*
4028 * w->force does not affect the number of input or output paths,
4029 * so we only have to recheck if w->connected is changed
4030 */
4031 dapm_widget_invalidate_input_paths(w);
4032 dapm_widget_invalidate_output_paths(w);
4033 w->connected = 1;
4034 }
Charles Keepax11391102014-02-18 15:22:14 +00004035 w->force = 1;
4036 dapm_mark_dirty(w, "force enable");
4037
4038 return 0;
4039}
4040EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
4041
4042/**
Mark Brownda341832010-03-15 19:23:37 +00004043 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004044 * @dapm: DAPM context
Mark Brownda341832010-03-15 19:23:37 +00004045 * @pin: pin name
4046 *
4047 * Enables input/output pin regardless of any other state. This is
4048 * intended for use with microphone bias supplies used in microphone
4049 * jack detection.
4050 *
4051 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4052 * do any widget power switching.
4053 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004054int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
4055 const char *pin)
Mark Brownda341832010-03-15 19:23:37 +00004056{
Charles Keepax11391102014-02-18 15:22:14 +00004057 int ret;
Mark Brownda341832010-03-15 19:23:37 +00004058
Charles Keepax11391102014-02-18 15:22:14 +00004059 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownda341832010-03-15 19:23:37 +00004060
Charles Keepax11391102014-02-18 15:22:14 +00004061 ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
Mark Brown0d867332011-04-06 11:38:14 +09004062
Charles Keepax11391102014-02-18 15:22:14 +00004063 mutex_unlock(&dapm->card->dapm_mutex);
4064
4065 return ret;
Mark Brownda341832010-03-15 19:23:37 +00004066}
4067EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4068
4069/**
Charles Keepax11391102014-02-18 15:22:14 +00004070 * snd_soc_dapm_disable_pin_unlocked - disable pin.
4071 * @dapm: DAPM context
4072 * @pin: pin name
4073 *
4074 * Disables input/output pin and its parents or children widgets.
4075 *
4076 * Requires external locking.
4077 *
4078 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4079 * do any widget power switching.
4080 */
4081int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4082 const char *pin)
4083{
4084 return snd_soc_dapm_set_pin(dapm, pin, 0);
4085}
4086EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4087
4088/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004089 * snd_soc_dapm_disable_pin - disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004090 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004091 * @pin: pin name
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004092 *
Mark Brown74b8f952009-06-06 11:26:15 +01004093 * Disables input/output pin and its parents or children widgets.
Charles Keepax11391102014-02-18 15:22:14 +00004094 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004095 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4096 * do any widget power switching.
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004097 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004098int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4099 const char *pin)
Liam Girdwooda5302182008-07-07 13:35:17 +01004100{
Charles Keepax11391102014-02-18 15:22:14 +00004101 int ret;
4102
4103 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4104
4105 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4106
4107 mutex_unlock(&dapm->card->dapm_mutex);
4108
4109 return ret;
Liam Girdwooda5302182008-07-07 13:35:17 +01004110}
4111EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4112
4113/**
Charles Keepax11391102014-02-18 15:22:14 +00004114 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4115 * @dapm: DAPM context
4116 * @pin: pin name
4117 *
4118 * Marks the specified pin as being not connected, disabling it along
4119 * any parent or child widgets. At present this is identical to
4120 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4121 * additional things such as disabling controls which only affect
4122 * paths through the pin.
4123 *
4124 * Requires external locking.
4125 *
4126 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4127 * do any widget power switching.
4128 */
4129int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4130 const char *pin)
4131{
4132 return snd_soc_dapm_set_pin(dapm, pin, 0);
4133}
4134EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4135
4136/**
Mark Brown5817b522008-09-24 11:23:11 +01004137 * snd_soc_dapm_nc_pin - permanently disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004138 * @dapm: DAPM context
Mark Brown5817b522008-09-24 11:23:11 +01004139 * @pin: pin name
4140 *
4141 * Marks the specified pin as being not connected, disabling it along
4142 * any parent or child widgets. At present this is identical to
4143 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4144 * additional things such as disabling controls which only affect
4145 * paths through the pin.
4146 *
4147 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4148 * do any widget power switching.
4149 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004150int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Mark Brown5817b522008-09-24 11:23:11 +01004151{
Charles Keepax11391102014-02-18 15:22:14 +00004152 int ret;
4153
4154 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4155
4156 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4157
4158 mutex_unlock(&dapm->card->dapm_mutex);
4159
4160 return ret;
Mark Brown5817b522008-09-24 11:23:11 +01004161}
4162EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4163
4164/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004165 * snd_soc_dapm_get_pin_status - get audio pin status
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004166 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004167 * @pin: audio signal pin endpoint (or start point)
4168 *
4169 * Get audio pin status - connected or disconnected.
4170 *
4171 * Returns 1 for connected otherwise 0.
4172 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004173int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4174 const char *pin)
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004175{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004176 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004177
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004178 if (w)
4179 return w->connected;
Stephen Warrena68b38a2011-04-19 15:25:11 -06004180
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004181 return 0;
4182}
Liam Girdwooda5302182008-07-07 13:35:17 +01004183EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004184
4185/**
Mark Brown1547aba2010-05-07 21:11:40 +01004186 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004187 * @dapm: DAPM context
Mark Brown1547aba2010-05-07 21:11:40 +01004188 * @pin: audio signal pin endpoint (or start point)
4189 *
4190 * Mark the given endpoint or pin as ignoring suspend. When the
4191 * system is disabled a path between two endpoints flagged as ignoring
4192 * suspend will not be disabled. The path must already be enabled via
4193 * normal means at suspend time, it will not be turned on if it was not
4194 * already enabled.
4195 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004196int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4197 const char *pin)
Mark Brown1547aba2010-05-07 21:11:40 +01004198{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004199 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
Mark Brown1547aba2010-05-07 21:11:40 +01004200
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004201 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004202 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004203 return -EINVAL;
Mark Brown1547aba2010-05-07 21:11:40 +01004204 }
4205
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004206 w->ignore_suspend = 1;
4207
4208 return 0;
Mark Brown1547aba2010-05-07 21:11:40 +01004209}
4210EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4211
Lars-Peter Clausencdc45082014-10-20 19:36:33 +02004212/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02004213 * snd_soc_dapm_free - free dapm resources
Peter Ujfalusi728a5222011-08-26 16:33:52 +03004214 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02004215 *
4216 * Free all dapm widgets and resources.
4217 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004218void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004219{
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02004220 dapm_debugfs_cleanup(dapm);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004221 dapm_free_widgets(dapm);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02004222 list_del(&dapm->list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004223}
4224EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4225
Xiang Xiao57996352014-03-02 00:04:02 +08004226static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
Mark Brown51737472009-06-22 13:16:51 +01004227{
Liam Girdwood01005a72012-07-06 16:57:05 +01004228 struct snd_soc_card *card = dapm->card;
Mark Brown51737472009-06-22 13:16:51 +01004229 struct snd_soc_dapm_widget *w;
4230 LIST_HEAD(down_list);
4231 int powerdown = 0;
4232
Liam Girdwood01005a72012-07-06 16:57:05 +01004233 mutex_lock(&card->dapm_mutex);
4234
Jarkko Nikula97c866d2010-12-14 12:18:31 +02004235 list_for_each_entry(w, &dapm->card->widgets, list) {
4236 if (w->dapm != dapm)
4237 continue;
Mark Brown51737472009-06-22 13:16:51 +01004238 if (w->power) {
Mark Brown828a8422011-01-15 13:14:30 +00004239 dapm_seq_insert(w, &down_list, false);
Mark Brownc2caa4d2009-06-26 15:36:56 +01004240 w->power = 0;
Mark Brown51737472009-06-22 13:16:51 +01004241 powerdown = 1;
4242 }
4243 }
4244
4245 /* If there were no widgets to power down we're already in
4246 * standby.
4247 */
4248 if (powerdown) {
Mark Brown7679e422012-02-22 15:52:56 +00004249 if (dapm->bias_level == SND_SOC_BIAS_ON)
4250 snd_soc_dapm_set_bias_level(dapm,
4251 SND_SOC_BIAS_PREPARE);
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004252 dapm_seq_run(card, &down_list, 0, false);
Mark Brown7679e422012-02-22 15:52:56 +00004253 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4254 snd_soc_dapm_set_bias_level(dapm,
4255 SND_SOC_BIAS_STANDBY);
Mark Brown51737472009-06-22 13:16:51 +01004256 }
Liam Girdwood01005a72012-07-06 16:57:05 +01004257
4258 mutex_unlock(&card->dapm_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004259}
Mark Brown51737472009-06-22 13:16:51 +01004260
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004261/*
4262 * snd_soc_dapm_shutdown - callback for system shutdown
4263 */
4264void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4265{
Xiang Xiao57996352014-03-02 00:04:02 +08004266 struct snd_soc_dapm_context *dapm;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004267
Xiang Xiao57996352014-03-02 00:04:02 +08004268 list_for_each_entry(dapm, &card->dapm_list, list) {
Xiang Xiao17282ba2014-03-02 00:04:03 +08004269 if (dapm != &card->dapm) {
4270 soc_dapm_shutdown_dapm(dapm);
4271 if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4272 snd_soc_dapm_set_bias_level(dapm,
4273 SND_SOC_BIAS_OFF);
4274 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004275 }
Xiang Xiao17282ba2014-03-02 00:04:03 +08004276
4277 soc_dapm_shutdown_dapm(&card->dapm);
4278 if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4279 snd_soc_dapm_set_bias_level(&card->dapm,
4280 SND_SOC_BIAS_OFF);
Mark Brown51737472009-06-22 13:16:51 +01004281}
4282
Richard Purdie2b97eab2006-10-06 18:32:18 +02004283/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004284MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Richard Purdie2b97eab2006-10-06 18:32:18 +02004285MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4286MODULE_LICENSE("GPL");