blob: ff8bda471b2531fede57ea0dd225bc4081d5ba16 [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/**
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200512 * snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a
513 * kcontrol
514 * @kcontrol: The kcontrol
515 *
516 * Note: This function must only be used on kcontrols that are known to have
517 * been registered for a CODEC. Otherwise the behaviour is undefined.
518 */
519struct snd_soc_dapm_context *snd_soc_dapm_kcontrol_dapm(
520 struct snd_kcontrol *kcontrol)
521{
522 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->dapm;
523}
524EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_dapm);
525
Liam Girdwood6c120e12012-02-15 15:15:34 +0000526static void dapm_reset(struct snd_soc_card *card)
527{
528 struct snd_soc_dapm_widget *w;
529
Mark Brownf9fa2b12014-03-06 16:49:11 +0800530 lockdep_assert_held(&card->dapm_mutex);
531
Liam Girdwood6c120e12012-02-15 15:15:34 +0000532 memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
533
534 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +0200535 w->new_power = w->power;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000536 w->power_checked = false;
Liam Girdwood6c120e12012-02-15 15:15:34 +0000537 }
538}
539
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200540static const char *soc_dapm_prefix(struct snd_soc_dapm_context *dapm)
541{
542 if (!dapm->component)
543 return NULL;
544 return dapm->component->name_prefix;
545}
546
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200547static int soc_dapm_read(struct snd_soc_dapm_context *dapm, int reg,
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -0800548 unsigned int *value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100549{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200550 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200551 return -EIO;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200552 return snd_soc_component_read(dapm->component, reg, value);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100553}
554
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200555static int soc_dapm_update_bits(struct snd_soc_dapm_context *dapm,
Bard Liao34775012014-04-17 20:12:56 +0800556 int reg, unsigned int mask, unsigned int value)
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100557{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200558 if (!dapm->component)
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200559 return -EIO;
Mark Brownfcf6c5e2014-12-15 13:08:48 +0000560 return snd_soc_component_update_bits(dapm->component, reg,
561 mask, value);
Liam Girdwood49575fb52012-03-06 18:16:19 +0000562}
563
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200564static int soc_dapm_test_bits(struct snd_soc_dapm_context *dapm,
565 int reg, unsigned int mask, unsigned int value)
566{
567 if (!dapm->component)
568 return -EIO;
569 return snd_soc_component_test_bits(dapm->component, reg, mask, value);
570}
571
Mark Browneb270e92013-10-09 13:52:52 +0100572static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm)
573{
Lars-Peter Clausene2c330b2014-04-22 13:23:13 +0200574 if (dapm->component)
575 snd_soc_component_async_complete(dapm->component);
Liam Girdwood0445bdf2011-06-13 19:37:36 +0100576}
577
Charles Keepax45a110a2015-05-11 13:50:30 +0100578static struct snd_soc_dapm_widget *
579dapm_wcache_lookup(struct snd_soc_dapm_wcache *wcache, const char *name)
580{
581 struct snd_soc_dapm_widget *w = wcache->widget;
582 struct list_head *wlist;
583 const int depth = 2;
584 int i = 0;
585
586 if (w) {
587 wlist = &w->dapm->card->widgets;
588
589 list_for_each_entry_from(w, wlist, list) {
590 if (!strcmp(name, w->name))
591 return w;
592
593 if (++i == depth)
594 break;
595 }
596 }
597
598 return NULL;
599}
600
601static inline void dapm_wcache_update(struct snd_soc_dapm_wcache *wcache,
602 struct snd_soc_dapm_widget *w)
603{
604 wcache->widget = w;
605}
606
Mark Brown452c5ea2009-05-17 21:41:23 +0100607/**
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200608 * snd_soc_dapm_force_bias_level() - Sets the DAPM bias level
609 * @dapm: The DAPM context for which to set the level
610 * @level: The level to set
611 *
612 * Forces the DAPM bias level to a specific state. It will call the bias level
613 * callback of DAPM context with the specified level. This will even happen if
614 * the context is already at the same level. Furthermore it will not go through
615 * the normal bias level sequencing, meaning any intermediate states between the
616 * current and the target state will not be entered.
617 *
618 * Note that the change in bias level is only temporary and the next time
619 * snd_soc_dapm_sync() is called the state will be set to the level as
620 * determined by the DAPM core. The function is mainly intended to be used to
621 * used during probe or resume from suspend to power up the device so
622 * initialization can be done, before the DAPM core takes over.
623 */
624int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm,
625 enum snd_soc_bias_level level)
626{
627 int ret = 0;
628
629 if (dapm->set_bias_level)
630 ret = dapm->set_bias_level(dapm, level);
631
Lars-Peter Clausenf4bf8d72015-04-27 22:13:25 +0200632 if (ret == 0)
633 dapm->bias_level = level;
634
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200635 return ret;
636}
637EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level);
638
Mark Brown452c5ea2009-05-17 21:41:23 +0100639/**
640 * snd_soc_dapm_set_bias_level - set the bias level for the system
Mark Browned5a4c42011-02-18 11:12:42 -0800641 * @dapm: DAPM context
Mark Brown452c5ea2009-05-17 21:41:23 +0100642 * @level: level to configure
643 *
644 * Configure the bias (power) levels for the SoC audio device.
645 *
646 * Returns 0 for success else error.
647 */
Mark Browned5a4c42011-02-18 11:12:42 -0800648static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200649 enum snd_soc_bias_level level)
Mark Brown452c5ea2009-05-17 21:41:23 +0100650{
Mark Browned5a4c42011-02-18 11:12:42 -0800651 struct snd_soc_card *card = dapm->card;
Mark Brown452c5ea2009-05-17 21:41:23 +0100652 int ret = 0;
653
Mark Brown84e90932010-11-04 00:07:02 -0400654 trace_snd_soc_bias_level_start(card, level);
655
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000656 if (card && card->set_bias_level)
Mark Brownd4c60052011-06-06 19:13:23 +0100657 ret = card->set_bias_level(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100658 if (ret != 0)
659 goto out;
Mark Brown452c5ea2009-05-17 21:41:23 +0100660
Lars-Peter Clausenfa880772015-04-27 22:13:23 +0200661 if (!card || dapm != &card->dapm)
662 ret = snd_soc_dapm_force_bias_level(dapm, level);
Liam Girdwood41231282012-07-06 16:56:16 +0100663
Mark Brown171ec6b2011-06-06 18:15:19 +0100664 if (ret != 0)
665 goto out;
666
667 if (card && card->set_bias_level_post)
Mark Brownd4c60052011-06-06 19:13:23 +0100668 ret = card->set_bias_level_post(card, dapm, level);
Mark Brown171ec6b2011-06-06 18:15:19 +0100669out:
Mark Brown84e90932010-11-04 00:07:02 -0400670 trace_snd_soc_bias_level_done(card, level);
671
Mark Brown452c5ea2009-05-17 21:41:23 +0100672 return ret;
673}
674
Mark Brown74b8f952009-06-06 11:26:15 +0100675/* connect mux widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200676static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200677 struct snd_soc_dapm_path *path, const char *control_name,
678 struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200679{
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200680 const struct snd_kcontrol_new *kcontrol = &w->kcontrol_news[0];
Richard Purdie2b97eab2006-10-06 18:32:18 +0200681 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100682 unsigned int val, item;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200683 int i;
684
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100685 if (e->reg != SND_SOC_NOPM) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +0200686 soc_dapm_read(dapm, e->reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100687 val = (val >> e->shift_l) & e->mask;
688 item = snd_soc_enum_val_to_item(e, val);
689 } else {
690 /* since a virtual mux has no backing registers to
691 * decide which path to connect, it will try to match
692 * with the first enumeration. This is to ensure
693 * that the default mux choice (the first) will be
694 * correctly powered up during initialization.
695 */
696 item = 0;
697 }
698
Takashi Iwai9a8d38d2014-02-18 08:11:42 +0100699 for (i = 0; i < e->items; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200700 if (!(strcmp(control_name, e->texts[i]))) {
Rasmus Villemoes98ad73c2014-10-21 17:01:15 +0200701 path->name = e->texts[i];
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100702 if (i == item)
703 path->connect = 1;
704 else
705 path->connect = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200706 return 0;
707 }
708 }
709
710 return -ENODEV;
711}
712
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100713/* set up initial codec paths */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200714static void dapm_set_mixer_path_status(struct snd_soc_dapm_path *p, int i)
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100715{
716 struct soc_mixer_control *mc = (struct soc_mixer_control *)
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200717 p->sink->kcontrol_news[i].private_value;
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100718 unsigned int reg = mc->reg;
719 unsigned int shift = mc->shift;
720 unsigned int max = mc->max;
721 unsigned int mask = (1 << fls(max)) - 1;
722 unsigned int invert = mc->invert;
723 unsigned int val;
724
725 if (reg != SND_SOC_NOPM) {
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200726 soc_dapm_read(p->sink->dapm, reg, &val);
Lars-Peter Clausen234c0b82014-02-28 08:31:12 +0100727 val = (val >> shift) & mask;
728 if (invert)
729 val = max - val;
730 p->connect = !!val;
731 } else {
732 p->connect = 0;
733 }
734}
735
Mark Brown74b8f952009-06-06 11:26:15 +0100736/* connect mixer widget to its interconnecting audio paths */
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200737static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
Richard Purdie2b97eab2006-10-06 18:32:18 +0200738 struct snd_soc_dapm_path *path, const char *control_name)
739{
740 int i;
741
742 /* search for mixer kcontrol */
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +0200743 for (i = 0; i < path->sink->num_kcontrols; i++) {
744 if (!strcmp(control_name, path->sink->kcontrol_news[i].name)) {
745 path->name = path->sink->kcontrol_news[i].name;
746 dapm_set_mixer_path_status(path, i);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200747 return 0;
748 }
749 }
750 return -ENODEV;
751}
752
Stephen Warrenaf468002011-04-28 17:38:01 -0600753static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
Stephen Warren1007da02011-05-26 09:57:33 -0600754 struct snd_soc_dapm_widget *kcontrolw,
Stephen Warrenaf468002011-04-28 17:38:01 -0600755 const struct snd_kcontrol_new *kcontrol_new,
756 struct snd_kcontrol **kcontrol)
757{
758 struct snd_soc_dapm_widget *w;
759 int i;
760
761 *kcontrol = NULL;
762
763 list_for_each_entry(w, &dapm->card->widgets, list) {
Stephen Warren1007da02011-05-26 09:57:33 -0600764 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
765 continue;
Stephen Warrenaf468002011-04-28 17:38:01 -0600766 for (i = 0; i < w->num_kcontrols; i++) {
767 if (&w->kcontrol_news[i] == kcontrol_new) {
768 if (w->kcontrols)
769 *kcontrol = w->kcontrols[i];
770 return 1;
771 }
772 }
773 }
774
775 return 0;
776}
777
Stephen Warren85762e72013-03-29 15:40:10 -0600778/*
779 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
780 * create it. Either way, add the widget into the control's widget list
781 */
782static int dapm_create_or_share_mixmux_kcontrol(struct snd_soc_dapm_widget *w,
Mark Brown946d92a2013-08-12 23:28:42 +0100783 int kci)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200784{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200785 struct snd_soc_dapm_context *dapm = w->dapm;
Mark Brown12ea2c72011-03-02 18:17:32 +0000786 struct snd_card *card = dapm->card->snd_card;
Mark Brownefb7ac32011-03-08 17:23:24 +0000787 const char *prefix;
Stephen Warren85762e72013-03-29 15:40:10 -0600788 size_t prefix_len;
789 int shared;
790 struct snd_kcontrol *kcontrol;
Stephen Warren85762e72013-03-29 15:40:10 -0600791 bool wname_in_long_name, kcname_in_long_name;
Daniel Macke5092c92014-10-07 13:41:24 +0200792 char *long_name = NULL;
Stephen Warren85762e72013-03-29 15:40:10 -0600793 const char *name;
Daniel Macke5092c92014-10-07 13:41:24 +0200794 int ret = 0;
Mark Brownefb7ac32011-03-08 17:23:24 +0000795
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +0200796 prefix = soc_dapm_prefix(dapm);
Mark Brown3e5ff4d2011-03-09 11:33:09 +0000797 if (prefix)
798 prefix_len = strlen(prefix) + 1;
799 else
800 prefix_len = 0;
801
Stephen Warren85762e72013-03-29 15:40:10 -0600802 shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[kci],
803 &kcontrol);
804
Stephen Warren85762e72013-03-29 15:40:10 -0600805 if (!kcontrol) {
806 if (shared) {
807 wname_in_long_name = false;
808 kcname_in_long_name = true;
809 } else {
810 switch (w->id) {
811 case snd_soc_dapm_switch:
812 case snd_soc_dapm_mixer:
813 wname_in_long_name = true;
814 kcname_in_long_name = true;
815 break;
816 case snd_soc_dapm_mixer_named_ctl:
817 wname_in_long_name = false;
818 kcname_in_long_name = true;
819 break;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200820 case snd_soc_dapm_demux:
Stephen Warren85762e72013-03-29 15:40:10 -0600821 case snd_soc_dapm_mux:
Stephen Warren85762e72013-03-29 15:40:10 -0600822 wname_in_long_name = true;
823 kcname_in_long_name = false;
824 break;
825 default:
Stephen Warren85762e72013-03-29 15:40:10 -0600826 return -EINVAL;
827 }
828 }
829
830 if (wname_in_long_name && kcname_in_long_name) {
Stephen Warren85762e72013-03-29 15:40:10 -0600831 /*
832 * The control will get a prefix from the control
833 * creation process but we're also using the same
834 * prefix for widgets so cut the prefix off the
835 * front of the widget name.
836 */
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200837 long_name = kasprintf(GFP_KERNEL, "%s %s",
Stephen Warren85762e72013-03-29 15:40:10 -0600838 w->name + prefix_len,
839 w->kcontrol_news[kci].name);
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200840 if (long_name == NULL)
Lars-Peter Clausen2b581072013-05-14 11:05:32 +0200841 return -ENOMEM;
Stephen Warren85762e72013-03-29 15:40:10 -0600842
843 name = long_name;
844 } else if (wname_in_long_name) {
845 long_name = NULL;
846 name = w->name + prefix_len;
847 } else {
848 long_name = NULL;
849 name = w->kcontrol_news[kci].name;
850 }
851
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200852 kcontrol = snd_soc_cnew(&w->kcontrol_news[kci], NULL, name,
Stephen Warren85762e72013-03-29 15:40:10 -0600853 prefix);
Daniel Macke5092c92014-10-07 13:41:24 +0200854 if (!kcontrol) {
855 ret = -ENOMEM;
856 goto exit_free;
857 }
858
Lars-Peter Clausen9356e9d2013-08-01 14:08:06 +0200859 kcontrol->private_free = dapm_kcontrol_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200860
861 ret = dapm_kcontrol_data_alloc(w, kcontrol);
862 if (ret) {
863 snd_ctl_free_one(kcontrol);
Daniel Macke5092c92014-10-07 13:41:24 +0200864 goto exit_free;
Lars-Peter Clausene84357f2013-07-29 17:13:58 +0200865 }
866
Stephen Warren85762e72013-03-29 15:40:10 -0600867 ret = snd_ctl_add(card, kcontrol);
868 if (ret < 0) {
869 dev_err(dapm->dev,
870 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
871 w->name, name, ret);
Daniel Macke5092c92014-10-07 13:41:24 +0200872 goto exit_free;
Stephen Warren85762e72013-03-29 15:40:10 -0600873 }
Stephen Warren85762e72013-03-29 15:40:10 -0600874 }
875
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200876 ret = dapm_kcontrol_add_widget(kcontrol, w);
Daniel Macke5092c92014-10-07 13:41:24 +0200877 if (ret == 0)
878 w->kcontrols[kci] = kcontrol;
Lars-Peter Clausen2c75bdf2013-08-01 14:08:07 +0200879
Daniel Macke5092c92014-10-07 13:41:24 +0200880exit_free:
881 kfree(long_name);
Stephen Warren85762e72013-03-29 15:40:10 -0600882
Daniel Macke5092c92014-10-07 13:41:24 +0200883 return ret;
Stephen Warren85762e72013-03-29 15:40:10 -0600884}
885
886/* create new dapm mixer control */
887static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
888{
889 int i, ret;
890 struct snd_soc_dapm_path *path;
Charles Keepax561ed682015-05-01 12:37:26 +0100891 struct dapm_kcontrol_data *data;
Stephen Warren85762e72013-03-29 15:40:10 -0600892
Richard Purdie2b97eab2006-10-06 18:32:18 +0200893 /* add kcontrol */
894 for (i = 0; i < w->num_kcontrols; i++) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200895 /* match name */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +0200896 snd_soc_dapm_widget_for_each_source_path(w, path) {
Richard Purdie2b97eab2006-10-06 18:32:18 +0200897 /* mixer/mux paths name must match control name */
Stephen Warren82cfecd2011-04-28 17:37:58 -0600898 if (path->name != (char *)w->kcontrol_news[i].name)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200899 continue;
900
Charles Keepax561ed682015-05-01 12:37:26 +0100901 if (!w->kcontrols[i]) {
902 ret = dapm_create_or_share_mixmux_kcontrol(w, i);
903 if (ret < 0)
904 return ret;
Lars-Peter Clausen82cd8762011-08-15 20:15:21 +0200905 }
906
Mark Brown946d92a2013-08-12 23:28:42 +0100907 dapm_kcontrol_add_path(w->kcontrols[i], path);
Charles Keepax561ed682015-05-01 12:37:26 +0100908
909 data = snd_kcontrol_chip(w->kcontrols[i]);
910 if (data->widget)
911 snd_soc_dapm_add_path(data->widget->dapm,
912 data->widget,
913 path->source,
914 NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200915 }
916 }
Stephen Warren85762e72013-03-29 15:40:10 -0600917
918 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200919}
920
921/* create new dapm mux control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200922static int dapm_new_mux(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200923{
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200924 struct snd_soc_dapm_context *dapm = w->dapm;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200925 enum snd_soc_dapm_direction dir;
Stephen Warren85762e72013-03-29 15:40:10 -0600926 struct snd_soc_dapm_path *path;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200927 const char *type;
Stephen Warrenaf468002011-04-28 17:38:01 -0600928 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200929
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200930 switch (w->id) {
931 case snd_soc_dapm_mux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200932 dir = SND_SOC_DAPM_DIR_OUT;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200933 type = "mux";
934 break;
935 case snd_soc_dapm_demux:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200936 dir = SND_SOC_DAPM_DIR_IN;
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200937 type = "demux";
938 break;
939 default:
940 return -EINVAL;
941 }
942
Stephen Warrenaf468002011-04-28 17:38:01 -0600943 if (w->num_kcontrols != 1) {
944 dev_err(dapm->dev,
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200945 "ASoC: %s %s has incorrect number of controls\n", type,
Stephen Warrenaf468002011-04-28 17:38:01 -0600946 w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200947 return -EINVAL;
948 }
949
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200950 if (list_empty(&w->edges[dir])) {
Lars-Peter Clausend714f972015-05-01 18:02:43 +0200951 dev_err(dapm->dev, "ASoC: %s %s has no paths\n", type, w->name);
Stephen Warren85762e72013-03-29 15:40:10 -0600952 return -EINVAL;
Stephen Warrenaf468002011-04-28 17:38:01 -0600953 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +0200954
Mark Brown946d92a2013-08-12 23:28:42 +0100955 ret = dapm_create_or_share_mixmux_kcontrol(w, 0);
Stephen Warren85762e72013-03-29 15:40:10 -0600956 if (ret < 0)
957 return ret;
Stephen Warrenfad59882011-04-28 17:37:59 -0600958
Lars-Peter Clausena3423b02015-08-11 21:38:00 +0200959 snd_soc_dapm_widget_for_each_path(w, dir, path) {
960 if (path->name)
961 dapm_kcontrol_add_path(w->kcontrols[0], path);
Lars-Peter Clausen98407ef2014-10-25 17:41:57 +0200962 }
Richard Purdie2b97eab2006-10-06 18:32:18 +0200963
Stephen Warrenaf468002011-04-28 17:38:01 -0600964 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200965}
966
967/* create new dapm volume control */
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +0200968static int dapm_new_pga(struct snd_soc_dapm_widget *w)
Richard Purdie2b97eab2006-10-06 18:32:18 +0200969{
Mark Browna6c65732010-03-03 17:45:21 +0000970 if (w->num_kcontrols)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +0200971 dev_err(w->dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +0000972 "ASoC: PGA controls not supported: '%s'\n", w->name);
Richard Purdie2b97eab2006-10-06 18:32:18 +0200973
Mark Browna6c65732010-03-03 17:45:21 +0000974 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +0200975}
976
Nikesh Oswalc6615082015-02-02 17:06:44 +0000977/* create new dapm dai link control */
978static int dapm_new_dai_link(struct snd_soc_dapm_widget *w)
979{
980 int i, ret;
981 struct snd_kcontrol *kcontrol;
982 struct snd_soc_dapm_context *dapm = w->dapm;
983 struct snd_card *card = dapm->card->snd_card;
984
985 /* create control for links with > 1 config */
986 if (w->num_params <= 1)
987 return 0;
988
989 /* add kcontrol */
990 for (i = 0; i < w->num_kcontrols; i++) {
991 kcontrol = snd_soc_cnew(&w->kcontrol_news[i], w,
992 w->name, NULL);
993 ret = snd_ctl_add(card, kcontrol);
994 if (ret < 0) {
995 dev_err(dapm->dev,
996 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
997 w->name, w->kcontrol_news[i].name, ret);
998 return ret;
999 }
1000 kcontrol->private_data = w;
1001 w->kcontrols[i] = kcontrol;
1002 }
1003
1004 return 0;
1005}
1006
Mark Brown99497882010-05-07 20:24:05 +01001007/* We implement power down on suspend by checking the power state of
1008 * the ALSA card - when we are suspending the ALSA state for the card
1009 * is set to D3.
1010 */
1011static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
1012{
Mark Brown12ea2c72011-03-02 18:17:32 +00001013 int level = snd_power_get_state(widget->dapm->card->snd_card);
Mark Brown99497882010-05-07 20:24:05 +01001014
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00001015 switch (level) {
Mark Brown99497882010-05-07 20:24:05 +01001016 case SNDRV_CTL_POWER_D3hot:
1017 case SNDRV_CTL_POWER_D3cold:
Mark Brown1547aba2010-05-07 21:11:40 +01001018 if (widget->ignore_suspend)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001019 dev_dbg(widget->dapm->dev, "ASoC: %s ignoring suspend\n",
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001020 widget->name);
Mark Brown1547aba2010-05-07 21:11:40 +01001021 return widget->ignore_suspend;
Mark Brown99497882010-05-07 20:24:05 +01001022 default:
1023 return 1;
1024 }
1025}
1026
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001027static int dapm_widget_list_create(struct snd_soc_dapm_widget_list **list,
1028 struct list_head *widgets)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001029{
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001030 struct snd_soc_dapm_widget *w;
1031 struct list_head *it;
1032 unsigned int size = 0;
1033 unsigned int i = 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001034
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001035 list_for_each(it, widgets)
1036 size++;
1037
1038 *list = kzalloc(sizeof(**list) + size * sizeof(*w), GFP_KERNEL);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001039 if (*list == NULL)
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001040 return -ENOMEM;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001041
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001042 list_for_each_entry(w, widgets, work_list)
1043 (*list)->widgets[i++] = w;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001044
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001045 (*list)->num_widgets = i;
1046
1047 return 0;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001048}
1049
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001050/*
1051 * Common implementation for is_connected_output_ep() and
1052 * is_connected_input_ep(). The function is inlined since the combined size of
1053 * the two specialized functions is only marginally larger then the size of the
1054 * generic function and at the same time the fast path of the specialized
1055 * functions is significantly smaller than the generic function.
1056 */
1057static __always_inline int is_connected_ep(struct snd_soc_dapm_widget *widget,
1058 struct list_head *list, enum snd_soc_dapm_direction dir,
1059 int (*fn)(struct snd_soc_dapm_widget *, struct list_head *))
1060{
1061 enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001062 struct snd_soc_dapm_path *path;
1063 int con = 0;
1064
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001065 if (widget->endpoints[dir] >= 0)
1066 return widget->endpoints[dir];
Mark Brown024dc072011-10-09 11:52:05 +01001067
Mark Brownde02d072011-09-20 21:43:24 +01001068 DAPM_UPDATE_STAT(widget, path_checks);
1069
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001070 /* do we need to add this widget to the list ? */
1071 if (list)
1072 list_add_tail(&widget->work_list, list);
1073
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001074 if ((widget->is_ep & SND_SOC_DAPM_DIR_TO_EP(dir)) && widget->connected) {
1075 widget->endpoints[dir] = snd_soc_dapm_suspend_check(widget);
1076 return widget->endpoints[dir];
Richard Purdie2b97eab2006-10-06 18:32:18 +02001077 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02001078
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001079 snd_soc_dapm_widget_for_each_path(widget, rdir, path) {
Mark Browne56235e2011-09-21 18:19:14 +01001080 DAPM_UPDATE_STAT(widget, neighbour_checks);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001081
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001082 if (path->weak || path->is_supply)
Mark Brownbf3a9e12011-06-13 16:42:29 +01001083 continue;
1084
Mark Brown8af294b2013-02-22 17:48:15 +00001085 if (path->walking)
1086 return 1;
1087
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001088 trace_snd_soc_dapm_path(widget, dir, path);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001089
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001090 if (path->connect) {
Mark Brown8af294b2013-02-22 17:48:15 +00001091 path->walking = 1;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001092 con += fn(path->node[dir], list);
Mark Brown8af294b2013-02-22 17:48:15 +00001093 path->walking = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001094 }
1095 }
1096
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001097 widget->endpoints[dir] = con;
Mark Brown024dc072011-10-09 11:52:05 +01001098
Richard Purdie2b97eab2006-10-06 18:32:18 +02001099 return con;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001100}
1101
1102/*
1103 * Recursively check for a completed path to an active or physically connected
1104 * output widget. Returns number of complete paths.
1105 */
1106static int is_connected_output_ep(struct snd_soc_dapm_widget *widget,
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001107 struct list_head *list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001108{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001109 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_OUT,
1110 is_connected_output_ep);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001111}
1112
1113/*
1114 * Recursively check for a completed path to an active or physically connected
1115 * input widget. Returns number of complete paths.
1116 */
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001117static int is_connected_input_ep(struct snd_soc_dapm_widget *widget,
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001118 struct list_head *list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001119{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001120 return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_IN,
1121 is_connected_input_ep);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001122}
1123
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001124/**
1125 * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1126 * @dai: the soc DAI.
1127 * @stream: stream direction.
1128 * @list: list of active widgets for this stream.
1129 *
1130 * Queries DAPM graph as to whether an valid audio stream path exists for
1131 * the initial stream specified by name. This takes into account
1132 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1133 *
1134 * Returns the number of valid paths or negative error.
1135 */
1136int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
1137 struct snd_soc_dapm_widget_list **list)
1138{
Lars-Peter Clausen313665b2014-11-04 11:30:58 +01001139 struct snd_soc_card *card = dai->component->card;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001140 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001141 LIST_HEAD(widgets);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001142 int paths;
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001143 int ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001144
1145 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001146
1147 /*
1148 * For is_connected_{output,input}_ep fully discover the graph we need
1149 * to reset the cached number of inputs and outputs.
1150 */
1151 list_for_each_entry(w, &card->widgets, list) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001152 w->endpoints[SND_SOC_DAPM_DIR_IN] = -1;
1153 w->endpoints[SND_SOC_DAPM_DIR_OUT] = -1;
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02001154 }
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001155
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001156 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001157 paths = is_connected_output_ep(dai->playback_widget, &widgets);
Lars-Peter Clausen130897a2014-10-20 19:36:39 +02001158 else
Lars-Peter Clausen1ce43ac2015-07-26 19:04:59 +02001159 paths = is_connected_input_ep(dai->capture_widget, &widgets);
1160
1161 /* Drop starting point */
1162 list_del(widgets.next);
1163
1164 ret = dapm_widget_list_create(list, &widgets);
1165 if (ret)
Lars-Peter Clausen30abbe72015-08-11 21:37:59 +02001166 paths = ret;
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001167
1168 trace_snd_soc_dapm_connected(paths, stream);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001169 mutex_unlock(&card->dapm_mutex);
1170
1171 return paths;
1172}
1173
Richard Purdie2b97eab2006-10-06 18:32:18 +02001174/*
Mark Brown62ea8742012-01-21 21:14:48 +00001175 * Handler for regulator supply widget.
1176 */
1177int dapm_regulator_event(struct snd_soc_dapm_widget *w,
1178 struct snd_kcontrol *kcontrol, int event)
1179{
Mark Brownc05b84d2012-09-07 12:57:11 +08001180 int ret;
1181
Mark Browneb270e92013-10-09 13:52:52 +01001182 soc_dapm_async_complete(w->dapm);
1183
Mark Brownc05b84d2012-09-07 12:57:11 +08001184 if (SND_SOC_DAPM_EVENT_ON(event)) {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001185 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001186 ret = regulator_allow_bypass(w->regulator, false);
Mark Brownc05b84d2012-09-07 12:57:11 +08001187 if (ret != 0)
1188 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001189 "ASoC: Failed to unbypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001190 w->name, ret);
1191 }
1192
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001193 return regulator_enable(w->regulator);
Mark Brownc05b84d2012-09-07 12:57:11 +08001194 } else {
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001195 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00001196 ret = regulator_allow_bypass(w->regulator, true);
Mark Brownc05b84d2012-09-07 12:57:11 +08001197 if (ret != 0)
1198 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00001199 "ASoC: Failed to bypass %s: %d\n",
Mark Brownc05b84d2012-09-07 12:57:11 +08001200 w->name, ret);
1201 }
1202
Liam Girdwooda3cc0562012-03-09 17:20:16 +00001203 return regulator_disable_deferred(w->regulator, w->shift);
Mark Brownc05b84d2012-09-07 12:57:11 +08001204 }
Mark Brown62ea8742012-01-21 21:14:48 +00001205}
1206EXPORT_SYMBOL_GPL(dapm_regulator_event);
1207
Ola Liljad7e7eb92012-05-24 15:26:25 +02001208/*
1209 * Handler for clock supply widget.
1210 */
1211int dapm_clock_event(struct snd_soc_dapm_widget *w,
1212 struct snd_kcontrol *kcontrol, int event)
1213{
1214 if (!w->clk)
1215 return -EIO;
1216
Mark Browneb270e92013-10-09 13:52:52 +01001217 soc_dapm_async_complete(w->dapm);
1218
Mark Brownec029952012-06-04 08:16:20 +01001219#ifdef CONFIG_HAVE_CLK
Ola Liljad7e7eb92012-05-24 15:26:25 +02001220 if (SND_SOC_DAPM_EVENT_ON(event)) {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001221 return clk_prepare_enable(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001222 } else {
Fabio Baltieri37c1b922013-04-30 16:09:52 +02001223 clk_disable_unprepare(w->clk);
Ola Liljad7e7eb92012-05-24 15:26:25 +02001224 return 0;
1225 }
Mark Brownec029952012-06-04 08:16:20 +01001226#endif
Marek Belisko98b3cf12012-07-12 23:00:16 +02001227 return 0;
Ola Liljad7e7eb92012-05-24 15:26:25 +02001228}
1229EXPORT_SYMBOL_GPL(dapm_clock_event);
1230
Mark Brownd8050022011-09-28 18:28:23 +01001231static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
1232{
Mark Brown9b8a83b2011-10-04 22:15:59 +01001233 if (w->power_checked)
1234 return w->new_power;
1235
Mark Brownd8050022011-09-28 18:28:23 +01001236 if (w->force)
Mark Brown9b8a83b2011-10-04 22:15:59 +01001237 w->new_power = 1;
Mark Brownd8050022011-09-28 18:28:23 +01001238 else
Mark Brown9b8a83b2011-10-04 22:15:59 +01001239 w->new_power = w->power_check(w);
1240
1241 w->power_checked = true;
1242
1243 return w->new_power;
Mark Brownd8050022011-09-28 18:28:23 +01001244}
1245
Mark Browncd0f2d42009-04-20 16:56:59 +01001246/* Generic check to see if a widget should be powered.
1247 */
1248static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
1249{
1250 int in, out;
1251
Mark Brownde02d072011-09-20 21:43:24 +01001252 DAPM_UPDATE_STAT(w, power_checks);
1253
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001254 in = is_connected_input_ep(w, NULL);
Liam Girdwoodec2e3032012-04-18 11:41:11 +01001255 out = is_connected_output_ep(w, NULL);
Mark Browncd0f2d42009-04-20 16:56:59 +01001256 return out != 0 && in != 0;
1257}
1258
Mark Brown246d0a12009-04-22 18:24:55 +01001259/* Check to see if a power supply is needed */
1260static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
1261{
1262 struct snd_soc_dapm_path *path;
Mark Brown246d0a12009-04-22 18:24:55 +01001263
Mark Brownde02d072011-09-20 21:43:24 +01001264 DAPM_UPDATE_STAT(w, power_checks);
1265
Mark Brown246d0a12009-04-22 18:24:55 +01001266 /* Check if one of our outputs is connected */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001267 snd_soc_dapm_widget_for_each_sink_path(w, path) {
Mark Browna8fdac82011-09-28 18:20:26 +01001268 DAPM_UPDATE_STAT(w, neighbour_checks);
1269
Mark Brownbf3a9e12011-06-13 16:42:29 +01001270 if (path->weak)
1271 continue;
1272
Mark Brown215edda2009-09-08 18:59:05 +01001273 if (path->connected &&
1274 !path->connected(path->source, path->sink))
1275 continue;
1276
Mark Brownf68d7e12011-10-04 22:57:50 +01001277 if (dapm_widget_power_check(path->sink))
1278 return 1;
Mark Brown246d0a12009-04-22 18:24:55 +01001279 }
1280
Mark Brownf68d7e12011-10-04 22:57:50 +01001281 return 0;
Mark Brown246d0a12009-04-22 18:24:55 +01001282}
1283
Mark Brown35c64bc2011-09-28 18:23:53 +01001284static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
1285{
1286 return 1;
1287}
1288
Mark Brown38357ab2009-06-06 19:03:23 +01001289static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1290 struct snd_soc_dapm_widget *b,
Mark Brown828a8422011-01-15 13:14:30 +00001291 bool power_up)
Mark Brown42aa3412009-03-01 19:21:10 +00001292{
Mark Brown828a8422011-01-15 13:14:30 +00001293 int *sort;
1294
1295 if (power_up)
1296 sort = dapm_up_seq;
1297 else
1298 sort = dapm_down_seq;
1299
Mark Brown38357ab2009-06-06 19:03:23 +01001300 if (sort[a->id] != sort[b->id])
1301 return sort[a->id] - sort[b->id];
Mark Brown20e48592011-01-15 13:40:50 +00001302 if (a->subseq != b->subseq) {
1303 if (power_up)
1304 return a->subseq - b->subseq;
1305 else
1306 return b->subseq - a->subseq;
1307 }
Mark Brownb22ead22009-06-07 12:51:26 +01001308 if (a->reg != b->reg)
1309 return a->reg - b->reg;
Mark Brown84dab562010-11-12 15:28:42 +00001310 if (a->dapm != b->dapm)
1311 return (unsigned long)a->dapm - (unsigned long)b->dapm;
Mark Brown42aa3412009-03-01 19:21:10 +00001312
Mark Brown38357ab2009-06-06 19:03:23 +01001313 return 0;
1314}
Mark Brown42aa3412009-03-01 19:21:10 +00001315
Mark Brown38357ab2009-06-06 19:03:23 +01001316/* Insert a widget in order into a DAPM power sequence. */
1317static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1318 struct list_head *list,
Mark Brown828a8422011-01-15 13:14:30 +00001319 bool power_up)
Mark Brown38357ab2009-06-06 19:03:23 +01001320{
1321 struct snd_soc_dapm_widget *w;
1322
1323 list_for_each_entry(w, list, power_list)
Mark Brown828a8422011-01-15 13:14:30 +00001324 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
Mark Brown38357ab2009-06-06 19:03:23 +01001325 list_add_tail(&new_widget->power_list, &w->power_list);
1326 return;
Mark Brown42aa3412009-03-01 19:21:10 +00001327 }
Mark Brown6ea31b92009-04-20 17:15:41 +01001328
Mark Brown38357ab2009-06-06 19:03:23 +01001329 list_add_tail(&new_widget->power_list, list);
1330}
Mark Brown42aa3412009-03-01 19:21:10 +00001331
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001332static void dapm_seq_check_event(struct snd_soc_card *card,
Mark Brown68f89ad2010-11-03 23:51:49 -04001333 struct snd_soc_dapm_widget *w, int event)
1334{
Mark Brown68f89ad2010-11-03 23:51:49 -04001335 const char *ev_name;
1336 int power, ret;
1337
1338 switch (event) {
1339 case SND_SOC_DAPM_PRE_PMU:
1340 ev_name = "PRE_PMU";
1341 power = 1;
1342 break;
1343 case SND_SOC_DAPM_POST_PMU:
1344 ev_name = "POST_PMU";
1345 power = 1;
1346 break;
1347 case SND_SOC_DAPM_PRE_PMD:
1348 ev_name = "PRE_PMD";
1349 power = 0;
1350 break;
1351 case SND_SOC_DAPM_POST_PMD:
1352 ev_name = "POST_PMD";
1353 power = 0;
1354 break;
Mark Brown80114122013-02-25 15:14:19 +00001355 case SND_SOC_DAPM_WILL_PMU:
1356 ev_name = "WILL_PMU";
1357 power = 1;
1358 break;
1359 case SND_SOC_DAPM_WILL_PMD:
1360 ev_name = "WILL_PMD";
1361 power = 0;
1362 break;
Mark Brown68f89ad2010-11-03 23:51:49 -04001363 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01001364 WARN(1, "Unknown event %d\n", event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001365 return;
1366 }
1367
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001368 if (w->new_power != power)
Mark Brown68f89ad2010-11-03 23:51:49 -04001369 return;
1370
1371 if (w->event && (w->event_flags & event)) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001372 pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001373 w->name, ev_name);
Mark Browneb270e92013-10-09 13:52:52 +01001374 soc_dapm_async_complete(w->dapm);
Mark Brown84e90932010-11-04 00:07:02 -04001375 trace_snd_soc_dapm_widget_event_start(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001376 ret = w->event(w, NULL, event);
Mark Brown84e90932010-11-04 00:07:02 -04001377 trace_snd_soc_dapm_widget_event_done(w, event);
Mark Brown68f89ad2010-11-03 23:51:49 -04001378 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001379 dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n",
Mark Brown68f89ad2010-11-03 23:51:49 -04001380 ev_name, w->name, ret);
1381 }
1382}
1383
Mark Brownb22ead22009-06-07 12:51:26 +01001384/* Apply the coalesced changes from a DAPM sequence */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001385static void dapm_seq_run_coalesced(struct snd_soc_card *card,
Mark Brownb22ead22009-06-07 12:51:26 +01001386 struct list_head *pending)
Mark Brown163cac02009-06-07 10:12:52 +01001387{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001388 struct snd_soc_dapm_context *dapm;
Mark Brown68f89ad2010-11-03 23:51:49 -04001389 struct snd_soc_dapm_widget *w;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001390 int reg;
Mark Brownb22ead22009-06-07 12:51:26 +01001391 unsigned int value = 0;
1392 unsigned int mask = 0;
Mark Brownb22ead22009-06-07 12:51:26 +01001393
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001394 w = list_first_entry(pending, struct snd_soc_dapm_widget, power_list);
1395 reg = w->reg;
1396 dapm = w->dapm;
Mark Brownb22ead22009-06-07 12:51:26 +01001397
1398 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001399 WARN_ON(reg != w->reg || dapm != w->dapm);
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001400 w->power = w->new_power;
Mark Brownb22ead22009-06-07 12:51:26 +01001401
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001402 mask |= w->mask << w->shift;
1403 if (w->power)
1404 value |= w->on_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001405 else
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001406 value |= w->off_val << w->shift;
Mark Brownb22ead22009-06-07 12:51:26 +01001407
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001408 pop_dbg(dapm->dev, card->pop_time,
Mark Brownb22ead22009-06-07 12:51:26 +01001409 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1410 w->name, reg, value, mask);
Mark Brown81628102009-06-07 13:21:24 +01001411
Mark Brown68f89ad2010-11-03 23:51:49 -04001412 /* Check for events */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001413 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU);
1414 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001415 }
1416
Mark Brown81628102009-06-07 13:21:24 +01001417 if (reg >= 0) {
Mark Brown29376bc2011-06-19 13:49:28 +01001418 /* Any widget will do, they should all be updating the
1419 * same register.
1420 */
Mark Brown29376bc2011-06-19 13:49:28 +01001421
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001422 pop_dbg(dapm->dev, card->pop_time,
Mark Brown81628102009-06-07 13:21:24 +01001423 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001424 value, mask, reg, card->pop_time);
1425 pop_wait(card->pop_time);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001426 soc_dapm_update_bits(dapm, reg, mask, value);
Mark Brown81628102009-06-07 13:21:24 +01001427 }
1428
1429 list_for_each_entry(w, pending, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001430 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU);
1431 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD);
Mark Brown42aa3412009-03-01 19:21:10 +00001432 }
Mark Brown42aa3412009-03-01 19:21:10 +00001433}
1434
Mark Brownb22ead22009-06-07 12:51:26 +01001435/* Apply a DAPM power sequence.
1436 *
1437 * We walk over a pre-sorted list of widgets to apply power to. In
1438 * order to minimise the number of writes to the device required
1439 * multiple widgets will be updated in a single write where possible.
1440 * Currently anything that requires more than a single write is not
1441 * handled.
1442 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001443static void dapm_seq_run(struct snd_soc_card *card,
1444 struct list_head *list, int event, bool power_up)
Mark Brownb22ead22009-06-07 12:51:26 +01001445{
1446 struct snd_soc_dapm_widget *w, *n;
Mark Browneb270e92013-10-09 13:52:52 +01001447 struct snd_soc_dapm_context *d;
Mark Brownb22ead22009-06-07 12:51:26 +01001448 LIST_HEAD(pending);
1449 int cur_sort = -1;
Mark Brown20e48592011-01-15 13:40:50 +00001450 int cur_subseq = -1;
Mark Brownb22ead22009-06-07 12:51:26 +01001451 int cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001452 struct snd_soc_dapm_context *cur_dapm = NULL;
Mark Brown474b62d2011-01-18 16:14:44 +00001453 int ret, i;
Mark Brown828a8422011-01-15 13:14:30 +00001454 int *sort;
1455
1456 if (power_up)
1457 sort = dapm_up_seq;
1458 else
1459 sort = dapm_down_seq;
Mark Brown163cac02009-06-07 10:12:52 +01001460
Mark Brownb22ead22009-06-07 12:51:26 +01001461 list_for_each_entry_safe(w, n, list, power_list) {
1462 ret = 0;
1463
1464 /* Do we need to apply any queued changes? */
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001465 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
Mark Brown20e48592011-01-15 13:40:50 +00001466 w->dapm != cur_dapm || w->subseq != cur_subseq) {
Mark Brownb22ead22009-06-07 12:51:26 +01001467 if (!list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001468 dapm_seq_run_coalesced(card, &pending);
Mark Brownb22ead22009-06-07 12:51:26 +01001469
Mark Brown474b62d2011-01-18 16:14:44 +00001470 if (cur_dapm && cur_dapm->seq_notifier) {
1471 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1472 if (sort[i] == cur_sort)
1473 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001474 i,
1475 cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001476 }
1477
Mark Browneb270e92013-10-09 13:52:52 +01001478 if (cur_dapm && w->dapm != cur_dapm)
1479 soc_dapm_async_complete(cur_dapm);
1480
Mark Brownb22ead22009-06-07 12:51:26 +01001481 INIT_LIST_HEAD(&pending);
1482 cur_sort = -1;
Mark Brownb0b3e6f2011-07-16 10:55:08 +09001483 cur_subseq = INT_MIN;
Mark Brownb22ead22009-06-07 12:51:26 +01001484 cur_reg = SND_SOC_NOPM;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001485 cur_dapm = NULL;
Mark Brownb22ead22009-06-07 12:51:26 +01001486 }
1487
Mark Brown163cac02009-06-07 10:12:52 +01001488 switch (w->id) {
1489 case snd_soc_dapm_pre:
1490 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001491 list_for_each_entry_safe_continue(w, n, list,
1492 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001493
Mark Brownb22ead22009-06-07 12:51:26 +01001494 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001495 ret = w->event(w,
1496 NULL, SND_SOC_DAPM_PRE_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001497 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001498 ret = w->event(w,
1499 NULL, SND_SOC_DAPM_PRE_PMD);
Mark Brown163cac02009-06-07 10:12:52 +01001500 break;
1501
1502 case snd_soc_dapm_post:
1503 if (!w->event)
Mark Brownb22ead22009-06-07 12:51:26 +01001504 list_for_each_entry_safe_continue(w, n, list,
1505 power_list);
Mark Brown163cac02009-06-07 10:12:52 +01001506
Mark Brownb22ead22009-06-07 12:51:26 +01001507 if (event == SND_SOC_DAPM_STREAM_START)
Mark Brown163cac02009-06-07 10:12:52 +01001508 ret = w->event(w,
1509 NULL, SND_SOC_DAPM_POST_PMU);
Mark Brownb22ead22009-06-07 12:51:26 +01001510 else if (event == SND_SOC_DAPM_STREAM_STOP)
Mark Brown163cac02009-06-07 10:12:52 +01001511 ret = w->event(w,
1512 NULL, SND_SOC_DAPM_POST_PMD);
Mark Brownb22ead22009-06-07 12:51:26 +01001513 break;
1514
Mark Brown163cac02009-06-07 10:12:52 +01001515 default:
Mark Brown81628102009-06-07 13:21:24 +01001516 /* Queue it up for application */
1517 cur_sort = sort[w->id];
Mark Brown20e48592011-01-15 13:40:50 +00001518 cur_subseq = w->subseq;
Mark Brown81628102009-06-07 13:21:24 +01001519 cur_reg = w->reg;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001520 cur_dapm = w->dapm;
Mark Brown81628102009-06-07 13:21:24 +01001521 list_move(&w->power_list, &pending);
1522 break;
Mark Brown163cac02009-06-07 10:12:52 +01001523 }
Mark Brownb22ead22009-06-07 12:51:26 +01001524
1525 if (ret < 0)
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02001526 dev_err(w->dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001527 "ASoC: Failed to apply widget power: %d\n", ret);
Mark Brown163cac02009-06-07 10:12:52 +01001528 }
Mark Brownb22ead22009-06-07 12:51:26 +01001529
1530 if (!list_empty(&pending))
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001531 dapm_seq_run_coalesced(card, &pending);
Mark Brown474b62d2011-01-18 16:14:44 +00001532
1533 if (cur_dapm && cur_dapm->seq_notifier) {
1534 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1535 if (sort[i] == cur_sort)
1536 cur_dapm->seq_notifier(cur_dapm,
Mark Brownf85a9e02011-01-26 21:41:28 +00001537 i, cur_subseq);
Mark Brown474b62d2011-01-18 16:14:44 +00001538 }
Mark Browneb270e92013-10-09 13:52:52 +01001539
1540 list_for_each_entry(d, &card->dapm_list, list) {
1541 soc_dapm_async_complete(d);
1542 }
Mark Brown163cac02009-06-07 10:12:52 +01001543}
1544
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001545static void dapm_widget_update(struct snd_soc_card *card)
Mark Brown97404f22010-12-14 16:13:57 +00001546{
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001547 struct snd_soc_dapm_update *update = card->update;
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001548 struct snd_soc_dapm_widget_list *wlist;
1549 struct snd_soc_dapm_widget *w = NULL;
1550 unsigned int wi;
Mark Brown97404f22010-12-14 16:13:57 +00001551 int ret;
1552
Lars-Peter Clausen57295072013-08-05 11:27:31 +02001553 if (!update || !dapm_kcontrol_is_powered(update->kcontrol))
Mark Brown97404f22010-12-14 16:13:57 +00001554 return;
1555
Lars-Peter Clausene84357f2013-07-29 17:13:58 +02001556 wlist = dapm_kcontrol_get_wlist(update->kcontrol);
Mark Brown97404f22010-12-14 16:13:57 +00001557
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001558 for (wi = 0; wi < wlist->num_widgets; wi++) {
1559 w = wlist->widgets[wi];
1560
1561 if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1562 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1563 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001564 dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001565 w->name, ret);
1566 }
Mark Brown97404f22010-12-14 16:13:57 +00001567 }
1568
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001569 if (!w)
1570 return;
1571
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02001572 ret = soc_dapm_update_bits(w->dapm, update->reg, update->mask,
1573 update->val);
Mark Brown97404f22010-12-14 16:13:57 +00001574 if (ret < 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001575 dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001576 w->name, ret);
Mark Brown97404f22010-12-14 16:13:57 +00001577
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001578 for (wi = 0; wi < wlist->num_widgets; wi++) {
1579 w = wlist->widgets[wi];
1580
1581 if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1582 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1583 if (ret != 0)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001584 dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n",
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02001585 w->name, ret);
1586 }
Mark Brown97404f22010-12-14 16:13:57 +00001587 }
1588}
1589
Mark Brown9d0624a2011-02-18 11:49:43 -08001590/* Async callback run prior to DAPM sequences - brings to _PREPARE if
1591 * they're changing state.
1592 */
1593static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1594{
1595 struct snd_soc_dapm_context *d = data;
1596 int ret;
Mark Brown97404f22010-12-14 16:13:57 +00001597
Mark Brown56fba412011-06-04 11:25:10 +01001598 /* If we're off and we're not supposed to be go into STANDBY */
1599 if (d->bias_level == SND_SOC_BIAS_OFF &&
1600 d->target_bias_level != SND_SOC_BIAS_OFF) {
Mark Brownf1aac482011-12-05 15:17:06 +00001601 if (d->dev)
1602 pm_runtime_get_sync(d->dev);
1603
Mark Brown9d0624a2011-02-18 11:49:43 -08001604 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1605 if (ret != 0)
1606 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001607 "ASoC: Failed to turn on bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001608 }
1609
Lars-Peter Clausence85a4d2014-05-06 10:32:15 +02001610 /* Prepare for a transition to ON or away from ON */
1611 if ((d->target_bias_level == SND_SOC_BIAS_ON &&
1612 d->bias_level != SND_SOC_BIAS_ON) ||
1613 (d->target_bias_level != SND_SOC_BIAS_ON &&
1614 d->bias_level == SND_SOC_BIAS_ON)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001615 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1616 if (ret != 0)
1617 dev_err(d->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001618 "ASoC: Failed to prepare bias: %d\n", ret);
Mark Brown9d0624a2011-02-18 11:49:43 -08001619 }
1620}
1621
1622/* Async callback run prior to DAPM sequences - brings to their final
1623 * state.
1624 */
1625static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1626{
1627 struct snd_soc_dapm_context *d = data;
1628 int ret;
1629
1630 /* If we just powered the last thing off drop to standby bias */
Mark Brown56fba412011-06-04 11:25:10 +01001631 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1632 (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1633 d->target_bias_level == SND_SOC_BIAS_OFF)) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001634 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1635 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001636 dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001637 ret);
1638 }
1639
1640 /* If we're in standby and can support bias off then do that */
Mark Brown56fba412011-06-04 11:25:10 +01001641 if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1642 d->target_bias_level == SND_SOC_BIAS_OFF) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001643 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1644 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001645 dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n",
1646 ret);
Mark Brownf1aac482011-12-05 15:17:06 +00001647
1648 if (d->dev)
Mark Brownfb644e92012-01-25 19:53:58 +00001649 pm_runtime_put(d->dev);
Mark Brown9d0624a2011-02-18 11:49:43 -08001650 }
1651
1652 /* If we just powered up then move to active bias */
Mark Brown56fba412011-06-04 11:25:10 +01001653 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1654 d->target_bias_level == SND_SOC_BIAS_ON) {
Mark Brown9d0624a2011-02-18 11:49:43 -08001655 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1656 if (ret != 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00001657 dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n",
Mark Brown9d0624a2011-02-18 11:49:43 -08001658 ret);
1659 }
1660}
Mark Brown97404f22010-12-14 16:13:57 +00001661
Mark Brownfe4fda52011-10-03 22:36:57 +01001662static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1663 bool power, bool connect)
1664{
1665 /* If a connection is being made or broken then that update
1666 * will have marked the peer dirty, otherwise the widgets are
1667 * not connected and this update has no impact. */
1668 if (!connect)
1669 return;
1670
1671 /* If the peer is already in the state we're moving to then we
1672 * won't have an impact on it. */
1673 if (power != peer->power)
Mark Brown75c1f892011-10-04 22:28:08 +01001674 dapm_mark_dirty(peer, "peer state change");
Mark Brownfe4fda52011-10-03 22:36:57 +01001675}
1676
Mark Brown05623c42011-09-28 17:02:31 +01001677static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1678 struct list_head *up_list,
1679 struct list_head *down_list)
1680{
Mark Browndb432b42011-10-03 21:06:40 +01001681 struct snd_soc_dapm_path *path;
1682
Mark Brown05623c42011-09-28 17:02:31 +01001683 if (w->power == power)
1684 return;
1685
1686 trace_snd_soc_dapm_widget_power(w, power);
1687
Mark Browndb432b42011-10-03 21:06:40 +01001688 /* If we changed our power state perhaps our neigbours changed
Mark Brownfe4fda52011-10-03 22:36:57 +01001689 * also.
Mark Browndb432b42011-10-03 21:06:40 +01001690 */
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001691 snd_soc_dapm_widget_for_each_source_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001692 dapm_widget_set_peer_power(path->source, power, path->connect);
1693
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02001694 /* Supplies can't affect their outputs, only their inputs */
1695 if (!w->is_supply) {
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02001696 snd_soc_dapm_widget_for_each_sink_path(w, path)
Lars-Peter Clausen7ddd4cd2014-10-20 19:36:34 +02001697 dapm_widget_set_peer_power(path->sink, power,
1698 path->connect);
Mark Browndb432b42011-10-03 21:06:40 +01001699 }
1700
Mark Brown05623c42011-09-28 17:02:31 +01001701 if (power)
1702 dapm_seq_insert(w, up_list, true);
1703 else
1704 dapm_seq_insert(w, down_list, false);
Mark Brown05623c42011-09-28 17:02:31 +01001705}
1706
Mark Brown7c81beb2011-09-20 22:22:32 +01001707static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1708 struct list_head *up_list,
1709 struct list_head *down_list)
1710{
Mark Brown7c81beb2011-09-20 22:22:32 +01001711 int power;
1712
1713 switch (w->id) {
1714 case snd_soc_dapm_pre:
1715 dapm_seq_insert(w, down_list, false);
1716 break;
1717 case snd_soc_dapm_post:
1718 dapm_seq_insert(w, up_list, true);
1719 break;
1720
1721 default:
Mark Brownd8050022011-09-28 18:28:23 +01001722 power = dapm_widget_power_check(w);
Mark Brown7c81beb2011-09-20 22:22:32 +01001723
Mark Brown05623c42011-09-28 17:02:31 +01001724 dapm_widget_set_power(w, power, up_list, down_list);
Mark Brown7c81beb2011-09-20 22:22:32 +01001725 break;
1726 }
1727}
1728
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001729static bool dapm_idle_bias_off(struct snd_soc_dapm_context *dapm)
1730{
1731 if (dapm->idle_bias_off)
1732 return true;
1733
1734 switch (snd_power_get_state(dapm->card->snd_card)) {
1735 case SNDRV_CTL_POWER_D3hot:
1736 case SNDRV_CTL_POWER_D3cold:
1737 return dapm->suspend_bias_off;
1738 default:
1739 break;
1740 }
1741
1742 return false;
1743}
1744
Mark Brown42aa3412009-03-01 19:21:10 +00001745/*
Richard Purdie2b97eab2006-10-06 18:32:18 +02001746 * Scan each dapm widget for complete audio path.
1747 * A complete path is a route that has valid endpoints i.e.:-
1748 *
1749 * o DAC to output pin.
1750 * o Input Pin to ADC.
1751 * o Input pin to Output pin (bypass, sidetone)
1752 * o DAC to ADC (loopback).
1753 */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001754static int dapm_power_widgets(struct snd_soc_card *card, int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02001755{
1756 struct snd_soc_dapm_widget *w;
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001757 struct snd_soc_dapm_context *d;
Mark Brown291f3bb2009-06-07 13:57:17 +01001758 LIST_HEAD(up_list);
1759 LIST_HEAD(down_list);
Dan Williams2955b472012-07-09 19:33:25 -07001760 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
Mark Brown56fba412011-06-04 11:25:10 +01001761 enum snd_soc_bias_level bias;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001762
Mark Brownf9fa2b12014-03-06 16:49:11 +08001763 lockdep_assert_held(&card->dapm_mutex);
1764
Mark Brown84e90932010-11-04 00:07:02 -04001765 trace_snd_soc_dapm_start(card);
1766
Mark Brown56fba412011-06-04 11:25:10 +01001767 list_for_each_entry(d, &card->dapm_list, list) {
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001768 if (dapm_idle_bias_off(d))
Mark Brown497098be2012-03-08 15:06:09 +00001769 d->target_bias_level = SND_SOC_BIAS_OFF;
1770 else
1771 d->target_bias_level = SND_SOC_BIAS_STANDBY;
Mark Brown56fba412011-06-04 11:25:10 +01001772 }
Jarkko Nikula7be31be82010-12-14 12:18:32 +02001773
Liam Girdwood6c120e12012-02-15 15:15:34 +00001774 dapm_reset(card);
Mark Brown9b8a83b2011-10-04 22:15:59 +01001775
Mark Brown6d3ddc82009-05-16 17:47:29 +01001776 /* Check which widgets we need to power and store them in
Mark Browndb432b42011-10-03 21:06:40 +01001777 * lists indicating if they should be powered up or down. We
1778 * only check widgets that have been flagged as dirty but note
1779 * that new widgets may be added to the dirty list while we
1780 * iterate.
Mark Brown6d3ddc82009-05-16 17:47:29 +01001781 */
Mark Browndb432b42011-10-03 21:06:40 +01001782 list_for_each_entry(w, &card->dapm_dirty, dirty) {
Mark Brown7c81beb2011-09-20 22:22:32 +01001783 dapm_power_one_widget(w, &up_list, &down_list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001784 }
1785
Mark Brownf9de6d72011-09-28 17:19:47 +01001786 list_for_each_entry(w, &card->widgets, list) {
Mark Brown0ff97eb2012-07-20 17:29:34 +01001787 switch (w->id) {
1788 case snd_soc_dapm_pre:
1789 case snd_soc_dapm_post:
1790 /* These widgets always need to be powered */
1791 break;
1792 default:
1793 list_del_init(&w->dirty);
1794 break;
1795 }
Mark Browndb432b42011-10-03 21:06:40 +01001796
Lars-Peter Clausen39eb5fd2013-07-29 17:14:03 +02001797 if (w->new_power) {
Mark Brownf9de6d72011-09-28 17:19:47 +01001798 d = w->dapm;
1799
1800 /* Supplies and micbiases only bring the
1801 * context up to STANDBY as unless something
1802 * else is active and passing audio they
Mark Brownafe62362012-01-25 19:55:22 +00001803 * generally don't require full power. Signal
1804 * generators are virtual pins and have no
1805 * power impact themselves.
Mark Brownf9de6d72011-09-28 17:19:47 +01001806 */
1807 switch (w->id) {
Mark Brownafe62362012-01-25 19:55:22 +00001808 case snd_soc_dapm_siggen:
Lars-Peter Clausenda83fea2013-10-05 19:26:17 +02001809 case snd_soc_dapm_vmid:
Mark Brownafe62362012-01-25 19:55:22 +00001810 break;
Mark Brownf9de6d72011-09-28 17:19:47 +01001811 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00001812 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02001813 case snd_soc_dapm_clock_supply:
Mark Brownf9de6d72011-09-28 17:19:47 +01001814 case snd_soc_dapm_micbias:
1815 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1816 d->target_bias_level = SND_SOC_BIAS_STANDBY;
1817 break;
1818 default:
1819 d->target_bias_level = SND_SOC_BIAS_ON;
1820 break;
1821 }
1822 }
1823
1824 }
1825
Mark Brown85a843c2011-09-21 21:29:47 +01001826 /* Force all contexts in the card to the same bias state if
1827 * they're not ground referenced.
1828 */
Mark Brown56fba412011-06-04 11:25:10 +01001829 bias = SND_SOC_BIAS_OFF;
Mark Brown52ba67b2011-04-04 21:05:11 +09001830 list_for_each_entry(d, &card->dapm_list, list)
Mark Brown56fba412011-06-04 11:25:10 +01001831 if (d->target_bias_level > bias)
1832 bias = d->target_bias_level;
Mark Brown52ba67b2011-04-04 21:05:11 +09001833 list_for_each_entry(d, &card->dapm_list, list)
Lars-Peter Clausen86dbf2a2014-09-04 19:44:06 +02001834 if (!dapm_idle_bias_off(d))
Mark Brown85a843c2011-09-21 21:29:47 +01001835 d->target_bias_level = bias;
Mark Brown52ba67b2011-04-04 21:05:11 +09001836
Mark Brownde02d072011-09-20 21:43:24 +01001837 trace_snd_soc_dapm_walk_done(card);
Mark Brown52ba67b2011-04-04 21:05:11 +09001838
Xiang Xiao17282ba2014-03-02 00:04:03 +08001839 /* Run card bias changes at first */
1840 dapm_pre_sequence_async(&card->dapm, 0);
1841 /* Run other bias changes in parallel */
1842 list_for_each_entry(d, &card->dapm_list, list) {
1843 if (d != &card->dapm)
1844 async_schedule_domain(dapm_pre_sequence_async, d,
1845 &async_domain);
1846 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001847 async_synchronize_full_domain(&async_domain);
Mark Brown452c5ea2009-05-17 21:41:23 +01001848
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001849 list_for_each_entry(w, &down_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001850 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD);
Mark Brown80114122013-02-25 15:14:19 +00001851 }
1852
Lars-Peter Clausencf1f7c62013-05-23 00:12:53 +02001853 list_for_each_entry(w, &up_list, power_list) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001854 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU);
Mark Brown80114122013-02-25 15:14:19 +00001855 }
1856
Mark Brown6d3ddc82009-05-16 17:47:29 +01001857 /* Power down widgets first; try to avoid amplifying pops. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001858 dapm_seq_run(card, &down_list, event, false);
Mark Brown6d3ddc82009-05-16 17:47:29 +01001859
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001860 dapm_widget_update(card);
Mark Brown97404f22010-12-14 16:13:57 +00001861
Mark Brown6d3ddc82009-05-16 17:47:29 +01001862 /* Now power up. */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001863 dapm_seq_run(card, &up_list, event, true);
Richard Purdie2b97eab2006-10-06 18:32:18 +02001864
Mark Brown9d0624a2011-02-18 11:49:43 -08001865 /* Run all the bias changes in parallel */
Xiang Xiao17282ba2014-03-02 00:04:03 +08001866 list_for_each_entry(d, &card->dapm_list, list) {
1867 if (d != &card->dapm)
1868 async_schedule_domain(dapm_post_sequence_async, d,
1869 &async_domain);
1870 }
Mark Brown9d0624a2011-02-18 11:49:43 -08001871 async_synchronize_full_domain(&async_domain);
Xiang Xiao17282ba2014-03-02 00:04:03 +08001872 /* Run card bias changes at last */
1873 dapm_post_sequence_async(&card->dapm, 0);
Mark Brown452c5ea2009-05-17 21:41:23 +01001874
Liam Girdwood8078d872012-02-15 15:15:35 +00001875 /* do we need to notify any clients that DAPM event is complete */
1876 list_for_each_entry(d, &card->dapm_list, list) {
1877 if (d->stream_event)
1878 d->stream_event(d, event);
1879 }
1880
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02001881 pop_dbg(card->dev, card->pop_time,
Jarkko Nikulafd8d3bc2010-11-09 14:40:28 +02001882 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
Jarkko Nikula3a45b862010-11-05 20:35:21 +02001883 pop_wait(card->pop_time);
Mark Browncb507e72009-07-08 18:54:57 +01001884
Mark Brown84e90932010-11-04 00:07:02 -04001885 trace_snd_soc_dapm_done(card);
1886
Mark Brown42aa3412009-03-01 19:21:10 +00001887 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02001888}
1889
Mark Brown79fb9382009-08-21 16:38:13 +01001890#ifdef CONFIG_DEBUG_FS
Mark Brown79fb9382009-08-21 16:38:13 +01001891static ssize_t dapm_widget_power_read_file(struct file *file,
1892 char __user *user_buf,
1893 size_t count, loff_t *ppos)
1894{
1895 struct snd_soc_dapm_widget *w = file->private_data;
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001896 struct snd_soc_card *card = w->dapm->card;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001897 enum snd_soc_dapm_direction dir, rdir;
Mark Brown79fb9382009-08-21 16:38:13 +01001898 char *buf;
1899 int in, out;
1900 ssize_t ret;
1901 struct snd_soc_dapm_path *p = NULL;
1902
1903 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1904 if (!buf)
1905 return -ENOMEM;
1906
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001907 mutex_lock(&card->dapm_mutex);
1908
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02001909 /* Supply widgets are not handled by is_connected_{input,output}_ep() */
1910 if (w->is_supply) {
1911 in = 0;
1912 out = 0;
1913 } else {
1914 in = is_connected_input_ep(w, NULL);
1915 out = is_connected_output_ep(w, NULL);
1916 }
Mark Brown79fb9382009-08-21 16:38:13 +01001917
Mark Brownf13ebad2012-03-03 18:01:01 +00001918 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1919 w->name, w->power ? "On" : "Off",
1920 w->force ? " (forced)" : "", in, out);
Mark Brown79fb9382009-08-21 16:38:13 +01001921
Mark Brownd033c362009-12-04 15:25:56 +00001922 if (w->reg >= 0)
1923 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02001924 " - R%d(0x%x) mask 0x%x",
1925 w->reg, w->reg, w->mask << w->shift);
Mark Brownd033c362009-12-04 15:25:56 +00001926
1927 ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1928
Mark Brown3eef08b2009-09-14 16:49:00 +01001929 if (w->sname)
1930 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1931 w->sname,
1932 w->active ? "active" : "inactive");
Mark Brown79fb9382009-08-21 16:38:13 +01001933
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001934 snd_soc_dapm_for_each_direction(dir) {
1935 rdir = SND_SOC_DAPM_DIR_REVERSE(dir);
1936 snd_soc_dapm_widget_for_each_path(w, dir, p) {
1937 if (p->connected && !p->connected(w, p->node[rdir]))
1938 continue;
Mark Brown215edda2009-09-08 18:59:05 +01001939
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001940 if (!p->connect)
1941 continue;
Mark Brown215edda2009-09-08 18:59:05 +01001942
Mark Brown79fb9382009-08-21 16:38:13 +01001943 ret += snprintf(buf + ret, PAGE_SIZE - ret,
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001944 " %s \"%s\" \"%s\"\n",
1945 (rdir == SND_SOC_DAPM_DIR_IN) ? "in" : "out",
Mark Brown79fb9382009-08-21 16:38:13 +01001946 p->name ? p->name : "static",
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02001947 p->node[rdir]->name);
1948 }
Mark Brown79fb9382009-08-21 16:38:13 +01001949 }
1950
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02001951 mutex_unlock(&card->dapm_mutex);
1952
Mark Brown79fb9382009-08-21 16:38:13 +01001953 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1954
1955 kfree(buf);
1956 return ret;
1957}
1958
1959static const struct file_operations dapm_widget_power_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07001960 .open = simple_open,
Mark Brown79fb9382009-08-21 16:38:13 +01001961 .read = dapm_widget_power_read_file,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001962 .llseek = default_llseek,
Mark Brown79fb9382009-08-21 16:38:13 +01001963};
1964
Mark Brownef49e4f2011-04-04 20:48:13 +09001965static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
1966 size_t count, loff_t *ppos)
1967{
1968 struct snd_soc_dapm_context *dapm = file->private_data;
1969 char *level;
1970
1971 switch (dapm->bias_level) {
1972 case SND_SOC_BIAS_ON:
1973 level = "On\n";
1974 break;
1975 case SND_SOC_BIAS_PREPARE:
1976 level = "Prepare\n";
1977 break;
1978 case SND_SOC_BIAS_STANDBY:
1979 level = "Standby\n";
1980 break;
1981 case SND_SOC_BIAS_OFF:
1982 level = "Off\n";
1983 break;
1984 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01001985 WARN(1, "Unknown bias_level %d\n", dapm->bias_level);
Mark Brownef49e4f2011-04-04 20:48:13 +09001986 level = "Unknown\n";
1987 break;
1988 }
1989
1990 return simple_read_from_buffer(user_buf, count, ppos, level,
1991 strlen(level));
1992}
1993
1994static const struct file_operations dapm_bias_fops = {
Stephen Boyd234e3402012-04-05 14:25:11 -07001995 .open = simple_open,
Mark Brownef49e4f2011-04-04 20:48:13 +09001996 .read = dapm_bias_read_file,
1997 .llseek = default_llseek,
1998};
1999
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002000void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2001 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002002{
Mark Brown79fb9382009-08-21 16:38:13 +01002003 struct dentry *d;
2004
Lars-Peter Clausen6553bf062015-04-09 10:52:38 +02002005 if (!parent)
2006 return;
2007
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002008 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
2009
2010 if (!dapm->debugfs_dapm) {
Liam Girdwoodf1e90af2012-03-06 18:13:25 +00002011 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002012 "ASoC: Failed to create DAPM debugfs directory\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002013 return;
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002014 }
Mark Brown79fb9382009-08-21 16:38:13 +01002015
Mark Brownef49e4f2011-04-04 20:48:13 +09002016 d = debugfs_create_file("bias_level", 0444,
2017 dapm->debugfs_dapm, dapm,
2018 &dapm_bias_fops);
2019 if (!d)
2020 dev_warn(dapm->dev,
2021 "ASoC: Failed to create bias level debugfs file\n");
Mark Brown79fb9382009-08-21 16:38:13 +01002022}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002023
2024static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2025{
2026 struct snd_soc_dapm_context *dapm = w->dapm;
2027 struct dentry *d;
2028
2029 if (!dapm->debugfs_dapm || !w->name)
2030 return;
2031
2032 d = debugfs_create_file(w->name, 0444,
2033 dapm->debugfs_dapm, w,
2034 &dapm_widget_power_fops);
2035 if (!d)
2036 dev_warn(w->dapm->dev,
2037 "ASoC: Failed to create %s debugfs file\n",
2038 w->name);
2039}
2040
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002041static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2042{
2043 debugfs_remove_recursive(dapm->debugfs_dapm);
2044}
2045
Mark Brown79fb9382009-08-21 16:38:13 +01002046#else
Lars-Peter Clausen8eecaf62011-04-30 19:45:48 +02002047void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
2048 struct dentry *parent)
Mark Brown79fb9382009-08-21 16:38:13 +01002049{
2050}
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002051
2052static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
2053{
2054}
2055
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02002056static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
2057{
2058}
2059
Mark Brown79fb9382009-08-21 16:38:13 +01002060#endif
2061
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002062/*
2063 * soc_dapm_connect_path() - Connects or disconnects a path
2064 * @path: The path to update
2065 * @connect: The new connect state of the path. True if the path is connected,
2066 * false if it is disconneted.
2067 * @reason: The reason why the path changed (for debugging only)
2068 */
2069static void soc_dapm_connect_path(struct snd_soc_dapm_path *path,
2070 bool connect, const char *reason)
2071{
2072 if (path->connect == connect)
2073 return;
2074
2075 path->connect = connect;
2076 dapm_mark_dirty(path->source, reason);
2077 dapm_mark_dirty(path->sink, reason);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002078 dapm_path_invalidate(path);
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002079}
2080
Richard Purdie2b97eab2006-10-06 18:32:18 +02002081/* test and update the power status of a mux widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002082static int soc_dapm_mux_update_power(struct snd_soc_card *card,
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002083 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002084{
2085 struct snd_soc_dapm_path *path;
2086 int found = 0;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002087 bool connect;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002088
Mark Brownf9fa2b12014-03-06 16:49:11 +08002089 lockdep_assert_held(&card->dapm_mutex);
2090
Richard Purdie2b97eab2006-10-06 18:32:18 +02002091 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002092 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002093 found = 1;
2094 /* we now need to match the string in the enum to the path */
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002095 if (!(strcmp(path->name, e->texts[mux])))
2096 connect = true;
2097 else
2098 connect = false;
2099
2100 soc_dapm_connect_path(path, connect, "mux update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002101 }
2102
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002103 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002104 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002105
Liam Girdwood618dae12012-04-25 12:12:51 +01002106 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002107}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002108
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002109int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002110 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e,
2111 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002112{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002113 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002114 int ret;
2115
Liam Girdwood3cd04342012-03-09 12:02:08 +00002116 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002117 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002118 ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002119 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002120 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002121 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002122 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002123 return ret;
2124}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002125EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002126
Milan plzik1b075e32008-01-10 14:39:46 +01002127/* test and update the power status of a mixer or switch widget */
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002128static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
Mark Brown283375c2009-12-07 18:09:03 +00002129 struct snd_kcontrol *kcontrol, int connect)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002130{
2131 struct snd_soc_dapm_path *path;
2132 int found = 0;
2133
Mark Brownf9fa2b12014-03-06 16:49:11 +08002134 lockdep_assert_held(&card->dapm_mutex);
2135
Richard Purdie2b97eab2006-10-06 18:32:18 +02002136 /* find dapm widget path assoc with kcontrol */
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002137 dapm_kcontrol_for_each_path(path, kcontrol) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002138 found = 1;
Lars-Peter Clausen4a201942014-10-25 17:41:56 +02002139 soc_dapm_connect_path(path, connect, "mixer update");
Richard Purdie2b97eab2006-10-06 18:32:18 +02002140 }
2141
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002142 if (found)
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002143 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002144
Liam Girdwood618dae12012-04-25 12:12:51 +01002145 return found;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002146}
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002147
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002148int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausen6b3fc032013-07-24 15:27:38 +02002149 struct snd_kcontrol *kcontrol, int connect,
2150 struct snd_soc_dapm_update *update)
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002151{
Lars-Peter Clausence6cfaf2013-07-24 15:27:37 +02002152 struct snd_soc_card *card = dapm->card;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002153 int ret;
2154
Liam Girdwood3cd04342012-03-09 12:02:08 +00002155 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002156 card->update = update;
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002157 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02002158 card->update = NULL;
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002159 mutex_unlock(&card->dapm_mutex);
Liam Girdwood618dae12012-04-25 12:12:51 +01002160 if (ret > 0)
Lars-Peter Clausenc3f48ae2013-07-24 15:27:36 +02002161 soc_dpcm_runtime_update(card);
Liam Girdwood4edbb3452012-03-07 10:38:27 +00002162 return ret;
2163}
Liam Girdwood40f02cd2012-02-06 16:05:14 +00002164EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002165
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002166static ssize_t dapm_widget_show_component(struct snd_soc_component *cmpnt,
2167 char *buf)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002168{
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002169 struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(cmpnt);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002170 struct snd_soc_dapm_widget *w;
2171 int count = 0;
2172 char *state = "not set";
2173
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002174 list_for_each_entry(w, &cmpnt->card->widgets, list) {
2175 if (w->dapm != dapm)
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002176 continue;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002177
2178 /* only display widgets that burnm power */
2179 switch (w->id) {
2180 case snd_soc_dapm_hp:
2181 case snd_soc_dapm_mic:
2182 case snd_soc_dapm_spk:
2183 case snd_soc_dapm_line:
2184 case snd_soc_dapm_micbias:
2185 case snd_soc_dapm_dac:
2186 case snd_soc_dapm_adc:
2187 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002188 case snd_soc_dapm_out_drv:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002189 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002190 case snd_soc_dapm_mixer_named_ctl:
Mark Brown246d0a12009-04-22 18:24:55 +01002191 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00002192 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02002193 case snd_soc_dapm_clock_supply:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002194 if (w->name)
2195 count += sprintf(buf + count, "%s: %s\n",
2196 w->name, w->power ? "On":"Off");
2197 break;
2198 default:
2199 break;
2200 }
2201 }
2202
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002203 switch (snd_soc_dapm_get_bias_level(dapm)) {
Mark Brown0be98982008-05-19 12:31:28 +02002204 case SND_SOC_BIAS_ON:
2205 state = "On";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002206 break;
Mark Brown0be98982008-05-19 12:31:28 +02002207 case SND_SOC_BIAS_PREPARE:
2208 state = "Prepare";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002209 break;
Mark Brown0be98982008-05-19 12:31:28 +02002210 case SND_SOC_BIAS_STANDBY:
2211 state = "Standby";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002212 break;
Mark Brown0be98982008-05-19 12:31:28 +02002213 case SND_SOC_BIAS_OFF:
2214 state = "Off";
Richard Purdie2b97eab2006-10-06 18:32:18 +02002215 break;
2216 }
2217 count += sprintf(buf + count, "PM State: %s\n", state);
2218
2219 return count;
2220}
2221
Benoit Cousson44ba2642014-07-08 23:19:36 +02002222/* show dapm widget status in sys fs */
2223static ssize_t dapm_widget_show(struct device *dev,
2224 struct device_attribute *attr, char *buf)
2225{
2226 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
2227 int i, count = 0;
2228
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002229 mutex_lock(&rtd->card->dapm_mutex);
2230
Benoit Cousson44ba2642014-07-08 23:19:36 +02002231 for (i = 0; i < rtd->num_codecs; i++) {
Lars-Peter Clausenb3c25fb2015-07-06 15:38:10 +02002232 struct snd_soc_component *cmpnt = rtd->codec_dais[i]->component;
2233
2234 count += dapm_widget_show_component(cmpnt, buf + count);
Benoit Cousson44ba2642014-07-08 23:19:36 +02002235 }
2236
Lars-Peter Clausene50b1e02015-07-06 17:01:24 +02002237 mutex_unlock(&rtd->card->dapm_mutex);
2238
Benoit Cousson44ba2642014-07-08 23:19:36 +02002239 return count;
2240}
2241
Richard Purdie2b97eab2006-10-06 18:32:18 +02002242static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
2243
Takashi Iwaid29697d2015-01-30 20:16:37 +01002244struct attribute *soc_dapm_dev_attrs[] = {
2245 &dev_attr_dapm_widget.attr,
2246 NULL
2247};
Richard Purdie2b97eab2006-10-06 18:32:18 +02002248
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002249static void dapm_free_path(struct snd_soc_dapm_path *path)
2250{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002251 list_del(&path->list_node[SND_SOC_DAPM_DIR_IN]);
2252 list_del(&path->list_node[SND_SOC_DAPM_DIR_OUT]);
Lars-Peter Clausen5106b922013-07-29 17:14:00 +02002253 list_del(&path->list_kcontrol);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002254 list_del(&path->list);
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002255 kfree(path);
2256}
2257
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002258void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
2259{
2260 struct snd_soc_dapm_path *p, *next_p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002261 enum snd_soc_dapm_direction dir;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002262
2263 list_del(&w->list);
2264 /*
2265 * remove source and sink paths associated to this widget.
2266 * While removing the path, remove reference to it from both
2267 * source and sink widgets so that path is removed only once.
2268 */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002269 snd_soc_dapm_for_each_direction(dir) {
2270 snd_soc_dapm_widget_for_each_path_safe(w, dir, p, next_p)
2271 dapm_free_path(p);
2272 }
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002273
2274 kfree(w->kcontrols);
Lars-Peter Clausen48068962015-07-21 18:11:08 +02002275 kfree_const(w->name);
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002276 kfree(w);
2277}
2278
Richard Purdie2b97eab2006-10-06 18:32:18 +02002279/* free all dapm widgets and resources */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002280static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002281{
2282 struct snd_soc_dapm_widget *w, *next_w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002283
Jarkko Nikula97c866d2010-12-14 12:18:31 +02002284 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2285 if (w->dapm != dapm)
2286 continue;
Lars-Peter Clausenb97e2692015-07-21 18:11:07 +02002287 snd_soc_dapm_free_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002288 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002289}
2290
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002291static struct snd_soc_dapm_widget *dapm_find_widget(
2292 struct snd_soc_dapm_context *dapm, const char *pin,
2293 bool search_other_contexts)
2294{
2295 struct snd_soc_dapm_widget *w;
2296 struct snd_soc_dapm_widget *fallback = NULL;
2297
2298 list_for_each_entry(w, &dapm->card->widgets, list) {
2299 if (!strcmp(w->name, pin)) {
2300 if (w->dapm == dapm)
2301 return w;
2302 else
2303 fallback = w;
2304 }
2305 }
2306
2307 if (search_other_contexts)
2308 return fallback;
2309
2310 return NULL;
2311}
2312
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002313static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
Mark Brown16499232009-01-07 18:25:13 +00002314 const char *pin, int status)
Liam Girdwooda5302182008-07-07 13:35:17 +01002315{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002316 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Liam Girdwooda5302182008-07-07 13:35:17 +01002317
Mark Brownf9fa2b12014-03-06 16:49:11 +08002318 dapm_assert_locked(dapm);
2319
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002320 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002321 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002322 return -EINVAL;
Liam Girdwooda5302182008-07-07 13:35:17 +01002323 }
2324
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002325 if (w->connected != status) {
Mark Brown1a8b2d92012-02-16 11:50:07 -08002326 dapm_mark_dirty(w, "pin configuration");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002327 dapm_widget_invalidate_input_paths(w);
2328 dapm_widget_invalidate_output_paths(w);
2329 }
Mark Brown1a8b2d92012-02-16 11:50:07 -08002330
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002331 w->connected = status;
2332 if (status == 0)
2333 w->force = 0;
Mark Brown0d867332011-04-06 11:38:14 +09002334
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02002335 return 0;
Liam Girdwooda5302182008-07-07 13:35:17 +01002336}
2337
Richard Purdie2b97eab2006-10-06 18:32:18 +02002338/**
Charles Keepax3eb29df2014-02-18 15:22:15 +00002339 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2340 * @dapm: DAPM context
2341 *
2342 * Walks all dapm audio paths and powers widgets according to their
2343 * stream or path usage.
2344 *
2345 * Requires external locking.
2346 *
2347 * Returns 0 for success.
2348 */
2349int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2350{
2351 /*
2352 * Suppress early reports (eg, jacks syncing their state) to avoid
2353 * silly DAPM runs during card startup.
2354 */
2355 if (!dapm->card || !dapm->card->instantiated)
2356 return 0;
2357
2358 return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2359}
2360EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2361
2362/**
Liam Girdwooda5302182008-07-07 13:35:17 +01002363 * snd_soc_dapm_sync - scan and power dapm paths
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002364 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02002365 *
2366 * Walks all dapm audio paths and powers widgets according to their
2367 * stream or path usage.
2368 *
2369 * Returns 0 for success.
2370 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002371int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002372{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002373 int ret;
2374
Liam Girdwood3cd04342012-03-09 12:02:08 +00002375 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Charles Keepax3eb29df2014-02-18 15:22:15 +00002376 ret = snd_soc_dapm_sync_unlocked(dapm);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002377 mutex_unlock(&dapm->card->dapm_mutex);
2378 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002379}
Liam Girdwooda5302182008-07-07 13:35:17 +01002380EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002381
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002382/*
2383 * dapm_update_widget_flags() - Re-compute widget sink and source flags
2384 * @w: The widget for which to update the flags
2385 *
2386 * Some widgets have a dynamic category which depends on which neighbors they
2387 * are connected to. This function update the category for these widgets.
2388 *
2389 * This function must be called whenever a path is added or removed to a widget.
2390 */
2391static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w)
2392{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002393 enum snd_soc_dapm_direction dir;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002394 struct snd_soc_dapm_path *p;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002395 unsigned int ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002396
2397 switch (w->id) {
2398 case snd_soc_dapm_input:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002399 /* On a fully routed card a input is never a source */
2400 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002401 return;
2402 ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002403 snd_soc_dapm_widget_for_each_source_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002404 if (p->source->id == snd_soc_dapm_micbias ||
2405 p->source->id == snd_soc_dapm_mic ||
2406 p->source->id == snd_soc_dapm_line ||
2407 p->source->id == snd_soc_dapm_output) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002408 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002409 break;
2410 }
2411 }
2412 break;
2413 case snd_soc_dapm_output:
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01002414 /* On a fully routed card a output is never a sink */
2415 if (w->dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002416 return;
2417 ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002418 snd_soc_dapm_widget_for_each_sink_path(w, p) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002419 if (p->sink->id == snd_soc_dapm_spk ||
2420 p->sink->id == snd_soc_dapm_hp ||
2421 p->sink->id == snd_soc_dapm_line ||
2422 p->sink->id == snd_soc_dapm_input) {
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002423 ep = 0;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002424 break;
2425 }
2426 }
2427 break;
2428 case snd_soc_dapm_line:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002429 ep = 0;
2430 snd_soc_dapm_for_each_direction(dir) {
2431 if (!list_empty(&w->edges[dir]))
2432 ep |= SND_SOC_DAPM_DIR_TO_EP(dir);
2433 }
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002434 break;
2435 default:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002436 return;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002437 }
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002438
2439 w->is_ep = ep;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002440}
2441
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002442static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm,
2443 struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink,
2444 const char *control)
2445{
2446 bool dynamic_source = false;
2447 bool dynamic_sink = false;
2448
2449 if (!control)
2450 return 0;
2451
2452 switch (source->id) {
2453 case snd_soc_dapm_demux:
2454 dynamic_source = true;
2455 break;
2456 default:
2457 break;
2458 }
2459
2460 switch (sink->id) {
2461 case snd_soc_dapm_mux:
2462 case snd_soc_dapm_switch:
2463 case snd_soc_dapm_mixer:
2464 case snd_soc_dapm_mixer_named_ctl:
2465 dynamic_sink = true;
2466 break;
2467 default:
2468 break;
2469 }
2470
2471 if (dynamic_source && dynamic_sink) {
2472 dev_err(dapm->dev,
2473 "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n",
2474 source->name, control, sink->name);
2475 return -EINVAL;
2476 } else if (!dynamic_source && !dynamic_sink) {
2477 dev_err(dapm->dev,
2478 "Control not supported for path %s -> [%s] -> %s\n",
2479 source->name, control, sink->name);
2480 return -EINVAL;
2481 }
2482
2483 return 0;
2484}
2485
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002486static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2487 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2488 const char *control,
2489 int (*connected)(struct snd_soc_dapm_widget *source,
2490 struct snd_soc_dapm_widget *sink))
Richard Purdie2b97eab2006-10-06 18:32:18 +02002491{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002492 struct snd_soc_dapm_widget *widgets[2];
2493 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002494 struct snd_soc_dapm_path *path;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002495 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002496
Lars-Peter Clausene409dfb2014-10-25 17:42:02 +02002497 if (wsink->is_supply && !wsource->is_supply) {
2498 dev_err(dapm->dev,
2499 "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n",
2500 wsource->name, wsink->name);
2501 return -EINVAL;
2502 }
2503
2504 if (connected && !wsource->is_supply) {
2505 dev_err(dapm->dev,
2506 "connected() callback only supported for supply widgets (%s -> %s)\n",
2507 wsource->name, wsink->name);
2508 return -EINVAL;
2509 }
2510
2511 if (wsource->is_supply && control) {
2512 dev_err(dapm->dev,
2513 "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n",
2514 wsource->name, control, wsink->name);
2515 return -EINVAL;
2516 }
2517
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002518 ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control);
2519 if (ret)
2520 return ret;
2521
Richard Purdie2b97eab2006-10-06 18:32:18 +02002522 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2523 if (!path)
2524 return -ENOMEM;
2525
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002526 path->node[SND_SOC_DAPM_DIR_IN] = wsource;
2527 path->node[SND_SOC_DAPM_DIR_OUT] = wsink;
2528 widgets[SND_SOC_DAPM_DIR_IN] = wsource;
2529 widgets[SND_SOC_DAPM_DIR_OUT] = wsink;
2530
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002531 path->connected = connected;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002532 INIT_LIST_HEAD(&path->list);
Mark Brown69c2d342013-08-13 00:20:36 +01002533 INIT_LIST_HEAD(&path->list_kcontrol);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002534
Lars-Peter Clausenc1862c82014-10-25 17:42:00 +02002535 if (wsource->is_supply || wsink->is_supply)
2536 path->is_supply = 1;
2537
Richard Purdie2b97eab2006-10-06 18:32:18 +02002538 /* connect static paths */
2539 if (control == NULL) {
Richard Purdie2b97eab2006-10-06 18:32:18 +02002540 path->connect = 1;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002541 } else {
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002542 switch (wsource->id) {
2543 case snd_soc_dapm_demux:
2544 ret = dapm_connect_mux(dapm, path, control, wsource);
2545 if (ret)
2546 goto err;
2547 break;
2548 default:
2549 break;
2550 }
2551
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002552 switch (wsink->id) {
2553 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002554 ret = dapm_connect_mux(dapm, path, control, wsink);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002555 if (ret != 0)
2556 goto err;
2557 break;
2558 case snd_soc_dapm_switch:
2559 case snd_soc_dapm_mixer:
2560 case snd_soc_dapm_mixer_named_ctl:
2561 ret = dapm_connect_mixer(dapm, path, control);
2562 if (ret != 0)
2563 goto err;
2564 break;
2565 default:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002566 break;
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002567 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02002568 }
2569
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002570 list_add(&path->list, &dapm->card->paths);
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002571 snd_soc_dapm_for_each_direction(dir)
2572 list_add(&path->list_node[dir], &widgets[dir]->edges[dir]);
Lars-Peter Clausen5fe5b762014-10-25 17:41:58 +02002573
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02002574 snd_soc_dapm_for_each_direction(dir) {
2575 dapm_update_widget_flags(widgets[dir]);
2576 dapm_mark_dirty(widgets[dir], "Route added");
2577 }
Mark Brownfabd0382012-07-05 17:20:06 +01002578
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002579 if (dapm->card->instantiated && path->connect)
2580 dapm_path_invalidate(path);
2581
Richard Purdie2b97eab2006-10-06 18:32:18 +02002582 return 0;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002583err:
2584 kfree(path);
2585 return ret;
2586}
Richard Purdie2b97eab2006-10-06 18:32:18 +02002587
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002588static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002589 const struct snd_soc_dapm_route *route)
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002590{
2591 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2592 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2593 const char *sink;
2594 const char *source;
2595 char prefixed_sink[80];
2596 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002597 const char *prefix;
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002598 int ret;
2599
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002600 prefix = soc_dapm_prefix(dapm);
2601 if (prefix) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002602 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002603 prefix, route->sink);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002604 sink = prefixed_sink;
2605 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002606 prefix, route->source);
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002607 source = prefixed_source;
2608 } else {
2609 sink = route->sink;
2610 source = route->source;
2611 }
2612
Charles Keepax45a110a2015-05-11 13:50:30 +01002613 wsource = dapm_wcache_lookup(&dapm->path_source_cache, source);
2614 wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink);
2615
2616 if (wsink && wsource)
2617 goto skip_search;
2618
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002619 /*
2620 * find src and dest widgets over all widgets but favor a widget from
2621 * current DAPM context
2622 */
2623 list_for_each_entry(w, &dapm->card->widgets, list) {
2624 if (!wsink && !(strcmp(w->name, sink))) {
2625 wtsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002626 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002627 wsink = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002628 if (wsource)
2629 break;
2630 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002631 continue;
2632 }
2633 if (!wsource && !(strcmp(w->name, source))) {
2634 wtsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002635 if (w->dapm == dapm) {
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002636 wsource = w;
Charles Keepax70c75102015-05-07 11:33:58 +01002637 if (wsink)
2638 break;
2639 }
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002640 }
2641 }
2642 /* use widget from another DAPM context if not found from this */
2643 if (!wsink)
2644 wsink = wtsink;
2645 if (!wsource)
2646 wsource = wtsource;
2647
2648 if (wsource == NULL) {
2649 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2650 route->source);
2651 return -ENODEV;
2652 }
2653 if (wsink == NULL) {
2654 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2655 route->sink);
2656 return -ENODEV;
2657 }
2658
Charles Keepax45a110a2015-05-11 13:50:30 +01002659skip_search:
2660 dapm_wcache_update(&dapm->path_sink_cache, wsink);
2661 dapm_wcache_update(&dapm->path_source_cache, wsource);
2662
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002663 ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2664 route->connected);
2665 if (ret)
2666 goto err;
2667
2668 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002669err:
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002670 dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
Lars-Peter Clausen25536282013-07-29 17:14:02 +02002671 source, route->control, sink);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002672 return ret;
2673}
Mark Brown105f1c22008-05-13 14:52:19 +02002674
Mark Brownefcc3c62012-07-05 17:24:19 +01002675static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
2676 const struct snd_soc_dapm_route *route)
2677{
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002678 struct snd_soc_dapm_widget *wsource, *wsink;
Mark Brownefcc3c62012-07-05 17:24:19 +01002679 struct snd_soc_dapm_path *path, *p;
2680 const char *sink;
2681 const char *source;
2682 char prefixed_sink[80];
2683 char prefixed_source[80];
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002684 const char *prefix;
Mark Brownefcc3c62012-07-05 17:24:19 +01002685
2686 if (route->control) {
2687 dev_err(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002688 "ASoC: Removal of routes with controls not supported\n");
Mark Brownefcc3c62012-07-05 17:24:19 +01002689 return -EINVAL;
2690 }
2691
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002692 prefix = soc_dapm_prefix(dapm);
2693 if (prefix) {
Mark Brownefcc3c62012-07-05 17:24:19 +01002694 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002695 prefix, route->sink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002696 sink = prefixed_sink;
2697 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02002698 prefix, route->source);
Mark Brownefcc3c62012-07-05 17:24:19 +01002699 source = prefixed_source;
2700 } else {
2701 sink = route->sink;
2702 source = route->source;
2703 }
2704
2705 path = NULL;
2706 list_for_each_entry(p, &dapm->card->paths, list) {
2707 if (strcmp(p->source->name, source) != 0)
2708 continue;
2709 if (strcmp(p->sink->name, sink) != 0)
2710 continue;
2711 path = p;
2712 break;
2713 }
2714
2715 if (path) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002716 wsource = path->source;
2717 wsink = path->sink;
2718
2719 dapm_mark_dirty(wsource, "Route removed");
2720 dapm_mark_dirty(wsink, "Route removed");
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02002721 if (path->connect)
2722 dapm_path_invalidate(path);
Mark Brownefcc3c62012-07-05 17:24:19 +01002723
Lars-Peter Clausen88722932013-06-14 13:16:53 +02002724 dapm_free_path(path);
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02002725
2726 /* Update any path related flags */
2727 dapm_update_widget_flags(wsource);
2728 dapm_update_widget_flags(wsink);
Mark Brownefcc3c62012-07-05 17:24:19 +01002729 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002730 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
Mark Brownefcc3c62012-07-05 17:24:19 +01002731 source, sink);
2732 }
2733
2734 return 0;
2735}
2736
Mark Brown105f1c22008-05-13 14:52:19 +02002737/**
Mark Brown105f1c22008-05-13 14:52:19 +02002738 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002739 * @dapm: DAPM context
Mark Brown105f1c22008-05-13 14:52:19 +02002740 * @route: audio routes
2741 * @num: number of routes
2742 *
2743 * Connects 2 dapm widgets together via a named audio path. The sink is
2744 * the widget receiving the audio signal, whilst the source is the sender
2745 * of the audio signal.
2746 *
2747 * Returns 0 for success else error. On error all resources can be freed
2748 * with a call to snd_soc_card_free().
2749 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02002750int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
Mark Brown105f1c22008-05-13 14:52:19 +02002751 const struct snd_soc_dapm_route *route, int num)
2752{
Mark Brown62d4a4b2012-06-22 12:21:49 +01002753 int i, r, ret = 0;
Mark Brown105f1c22008-05-13 14:52:19 +02002754
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002755 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown105f1c22008-05-13 14:52:19 +02002756 for (i = 0; i < num; i++) {
Lars-Peter Clausena4e91542014-05-07 16:20:25 +02002757 r = snd_soc_dapm_add_route(dapm, route);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002758 if (r < 0) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002759 dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
2760 route->source,
2761 route->control ? route->control : "direct",
2762 route->sink);
Mark Brown62d4a4b2012-06-22 12:21:49 +01002763 ret = r;
Mark Brown105f1c22008-05-13 14:52:19 +02002764 }
2765 route++;
2766 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002767 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brown105f1c22008-05-13 14:52:19 +02002768
Dan Carpenter60884c22012-04-13 22:25:43 +03002769 return ret;
Mark Brown105f1c22008-05-13 14:52:19 +02002770}
2771EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2772
Mark Brownefcc3c62012-07-05 17:24:19 +01002773/**
2774 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2775 * @dapm: DAPM context
2776 * @route: audio routes
2777 * @num: number of routes
2778 *
2779 * Removes routes from the DAPM context.
2780 */
2781int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
2782 const struct snd_soc_dapm_route *route, int num)
2783{
2784 int i, ret = 0;
2785
2786 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2787 for (i = 0; i < num; i++) {
2788 snd_soc_dapm_del_route(dapm, route);
2789 route++;
2790 }
2791 mutex_unlock(&dapm->card->dapm_mutex);
2792
2793 return ret;
2794}
2795EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
2796
Mark Brownbf3a9e12011-06-13 16:42:29 +01002797static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2798 const struct snd_soc_dapm_route *route)
2799{
2800 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2801 route->source,
2802 true);
2803 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2804 route->sink,
2805 true);
2806 struct snd_soc_dapm_path *path;
2807 int count = 0;
2808
2809 if (!source) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002810 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002811 route->source);
2812 return -ENODEV;
2813 }
2814
2815 if (!sink) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002816 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002817 route->sink);
2818 return -ENODEV;
2819 }
2820
2821 if (route->control || route->connected)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002822 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002823 route->source, route->sink);
2824
Lars-Peter Clausene63bfd42015-07-26 19:05:00 +02002825 snd_soc_dapm_widget_for_each_sink_path(source, path) {
Mark Brownbf3a9e12011-06-13 16:42:29 +01002826 if (path->sink == sink) {
2827 path->weak = 1;
2828 count++;
2829 }
2830 }
2831
2832 if (count == 0)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002833 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002834 route->source, route->sink);
2835 if (count > 1)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002836 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
Mark Brownbf3a9e12011-06-13 16:42:29 +01002837 count, route->source, route->sink);
2838
2839 return 0;
2840}
2841
2842/**
2843 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2844 * @dapm: DAPM context
2845 * @route: audio routes
2846 * @num: number of routes
2847 *
2848 * Mark existing routes matching those specified in the passed array
2849 * as being weak, meaning that they are ignored for the purpose of
2850 * power decisions. The main intended use case is for sidetone paths
2851 * which couple audio between other independent paths if they are both
2852 * active in order to make the combination work better at the user
2853 * level but which aren't intended to be "used".
2854 *
2855 * Note that CODEC drivers should not use this as sidetone type paths
2856 * can frequently also be used as bypass paths.
2857 */
2858int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2859 const struct snd_soc_dapm_route *route, int num)
2860{
2861 int i, err;
2862 int ret = 0;
2863
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002864 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002865 for (i = 0; i < num; i++) {
2866 err = snd_soc_dapm_weak_route(dapm, route);
2867 if (err)
2868 ret = err;
2869 route++;
2870 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002871 mutex_unlock(&dapm->card->dapm_mutex);
Mark Brownbf3a9e12011-06-13 16:42:29 +01002872
2873 return ret;
2874}
2875EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2876
Mark Brown105f1c22008-05-13 14:52:19 +02002877/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02002878 * snd_soc_dapm_new_widgets - add new dapm widgets
Jonathan Corbet628536e2015-08-25 01:14:48 -06002879 * @card: card to be checked for new dapm widgets
Richard Purdie2b97eab2006-10-06 18:32:18 +02002880 *
2881 * Checks the codec for any new dapm widgets and creates them if found.
2882 *
2883 * Returns 0 for success.
2884 */
Lars-Peter Clausen824ef822013-08-27 15:51:01 +02002885int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002886{
2887 struct snd_soc_dapm_widget *w;
Mark Brownb66a70d2011-02-09 18:04:11 +00002888 unsigned int val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002889
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002890 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002891
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002892 list_for_each_entry(w, &card->widgets, list)
Richard Purdie2b97eab2006-10-06 18:32:18 +02002893 {
2894 if (w->new)
2895 continue;
2896
Stephen Warrenfad59882011-04-28 17:37:59 -06002897 if (w->num_kcontrols) {
2898 w->kcontrols = kzalloc(w->num_kcontrols *
2899 sizeof(struct snd_kcontrol *),
2900 GFP_KERNEL);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002901 if (!w->kcontrols) {
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002902 mutex_unlock(&card->dapm_mutex);
Stephen Warrenfad59882011-04-28 17:37:59 -06002903 return -ENOMEM;
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00002904 }
Stephen Warrenfad59882011-04-28 17:37:59 -06002905 }
2906
Richard Purdie2b97eab2006-10-06 18:32:18 +02002907 switch(w->id) {
2908 case snd_soc_dapm_switch:
2909 case snd_soc_dapm_mixer:
Ian Moltonca9c1aa2009-01-06 20:11:51 +00002910 case snd_soc_dapm_mixer_named_ctl:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002911 dapm_new_mixer(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002912 break;
2913 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02002914 case snd_soc_dapm_demux:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002915 dapm_new_mux(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002916 break;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002917 case snd_soc_dapm_pga:
Olaya, Margaritad88429a2010-12-10 21:11:44 -06002918 case snd_soc_dapm_out_drv:
Lars-Peter Clausen4b80b8c2011-06-09 13:22:36 +02002919 dapm_new_pga(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002920 break;
Nikesh Oswalc6615082015-02-02 17:06:44 +00002921 case snd_soc_dapm_dai_link:
2922 dapm_new_dai_link(w);
2923 break;
Mark Brown7ca3a182011-10-08 14:04:50 +01002924 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02002925 break;
2926 }
Mark Brownb66a70d2011-02-09 18:04:11 +00002927
2928 /* Read the initial power state from the device */
2929 if (w->reg >= 0) {
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002930 soc_dapm_read(w->dapm, w->reg, &val);
Arun Shamanna Lakshmif7d3c172014-01-14 15:31:54 -08002931 val = val >> w->shift;
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02002932 val &= w->mask;
2933 if (val == w->on_val)
Mark Brownb66a70d2011-02-09 18:04:11 +00002934 w->power = 1;
2935 }
2936
Richard Purdie2b97eab2006-10-06 18:32:18 +02002937 w->new = 1;
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002938
Mark Brown7508b122011-10-05 12:09:12 +01002939 dapm_mark_dirty(w, "new widget");
Lars-Peter Clausend5d1e0b2011-04-30 19:45:49 +02002940 dapm_debugfs_add_widget(w);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002941 }
2942
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02002943 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
2944 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002945 return 0;
2946}
2947EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
2948
2949/**
2950 * snd_soc_dapm_get_volsw - dapm mixer get callback
2951 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002952 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02002953 *
2954 * Callback to get the value of a dapm mixer control.
2955 *
2956 * Returns 0 for success.
2957 */
2958int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
2959 struct snd_ctl_elem_value *ucontrol)
2960{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002961 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
2962 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002963 struct soc_mixer_control *mc =
2964 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02002965 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002966 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01002967 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04002968 unsigned int mask = (1 << fls(max)) - 1;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02002969 unsigned int invert = mc->invert;
Lars-Peter Clausen57295072013-08-05 11:27:31 +02002970 unsigned int val;
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002971 int ret = 0;
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02002972
2973 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002974 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00002975 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02002976 kcontrol->id.name);
Richard Purdie2b97eab2006-10-06 18:32:18 +02002977
Lars-Peter Clausen57295072013-08-05 11:27:31 +02002978 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002979 if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) {
2980 ret = soc_dapm_read(dapm, reg, &val);
2981 val = (val >> shift) & mask;
2982 } else {
Lars-Peter Clausen57295072013-08-05 11:27:31 +02002983 val = dapm_kcontrol_get_value(kcontrol);
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002984 }
Lars-Peter Clausen57295072013-08-05 11:27:31 +02002985 mutex_unlock(&card->dapm_mutex);
2986
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02002987 if (invert)
Lars-Peter Clausen57295072013-08-05 11:27:31 +02002988 ucontrol->value.integer.value[0] = max - val;
2989 else
2990 ucontrol->value.integer.value[0] = val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002991
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02002992 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02002993}
2994EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
2995
2996/**
2997 * snd_soc_dapm_put_volsw - dapm mixer set callback
2998 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00002999 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003000 *
3001 * Callback to set the value of a dapm mixer control.
3002 *
3003 * Returns 0 for success.
3004 */
3005int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
3006 struct snd_ctl_elem_value *ucontrol)
3007{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003008 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3009 struct snd_soc_card *card = dapm->card;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003010 struct soc_mixer_control *mc =
3011 (struct soc_mixer_control *)kcontrol->private_value;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003012 int reg = mc->reg;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003013 unsigned int shift = mc->shift;
Jon Smirl4eaa9812008-07-29 11:42:26 +01003014 int max = mc->max;
Jon Smirl815ecf8d2008-07-29 10:22:24 -04003015 unsigned int mask = (1 << fls(max)) - 1;
3016 unsigned int invert = mc->invert;
Stephen Warrene9cf7042011-01-27 14:54:05 -07003017 unsigned int val;
Jarkko Nikula18626c72014-06-09 14:20:29 +03003018 int connect, change, reg_change = 0;
Mark Brown97404f22010-12-14 16:13:57 +00003019 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003020 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003021
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003022 if (snd_soc_volsw_is_stereo(mc))
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003023 dev_warn(dapm->dev,
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003024 "ASoC: Control '%s' is stereo, which is not supported\n",
Benoît Thébaudeauda602ab2012-07-03 20:18:17 +02003025 kcontrol->id.name);
3026
Richard Purdie2b97eab2006-10-06 18:32:18 +02003027 val = (ucontrol->value.integer.value[0] & mask);
Benoît Thébaudeau8a720712012-06-18 22:41:28 +02003028 connect = !!val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003029
3030 if (invert)
Philipp Zabela7a4ac82008-01-10 14:37:42 +01003031 val = max - val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003032
Liam Girdwood3cd04342012-03-09 12:02:08 +00003033 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003034
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003035 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown283375c2009-12-07 18:09:03 +00003036
Jarkko Nikula18626c72014-06-09 14:20:29 +03003037 if (reg != SND_SOC_NOPM) {
3038 mask = mask << shift;
3039 val = val << shift;
Lars-Peter Clausenc9e065c2014-05-04 19:17:05 +02003040
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003041 reg_change = soc_dapm_test_bits(dapm, reg, mask, val);
Jarkko Nikula18626c72014-06-09 14:20:29 +03003042 }
3043
3044 if (change || reg_change) {
3045 if (reg_change) {
3046 update.kcontrol = kcontrol;
3047 update.reg = reg;
3048 update.mask = mask;
3049 update.val = val;
3050 card->update = &update;
Lars-Peter Clausen249ce132013-10-06 13:43:49 +02003051 }
Jarkko Nikula18626c72014-06-09 14:20:29 +03003052 change |= reg_change;
Mark Brown97404f22010-12-14 16:13:57 +00003053
Nenghua Cao52765972013-12-13 20:13:49 +08003054 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
Mark Brown97404f22010-12-14 16:13:57 +00003055
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003056 card->update = NULL;
Mark Brown283375c2009-12-07 18:09:03 +00003057 }
3058
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003059 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003060
3061 if (ret > 0)
3062 soc_dpcm_runtime_update(card);
3063
Lars-Peter Clausen56a67832013-07-24 15:27:35 +02003064 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003065}
3066EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
3067
3068/**
3069 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
3070 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003071 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003072 *
3073 * Callback to get the value of a dapm enumerated double mixer control.
3074 *
3075 * Returns 0 for success.
3076 */
3077int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
3078 struct snd_ctl_elem_value *ucontrol)
3079{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003080 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
Charles Keepax561ed682015-05-01 12:37:26 +01003081 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003082 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003083 unsigned int reg_val, val;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003084
Charles Keepax561ed682015-05-01 12:37:26 +01003085 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3086 if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003087 int ret = soc_dapm_read(dapm, e->reg, &reg_val);
Charles Keepax964a0b82015-05-08 10:50:10 +01003088 if (ret) {
3089 mutex_unlock(&card->dapm_mutex);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003090 return ret;
Charles Keepax964a0b82015-05-08 10:50:10 +01003091 }
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003092 } else {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003093 reg_val = dapm_kcontrol_get_value(kcontrol);
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003094 }
Charles Keepax561ed682015-05-01 12:37:26 +01003095 mutex_unlock(&card->dapm_mutex);
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003096
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003097 val = (reg_val >> e->shift_l) & e->mask;
3098 ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
3099 if (e->shift_l != e->shift_r) {
3100 val = (reg_val >> e->shift_r) & e->mask;
3101 val = snd_soc_enum_val_to_item(e, val);
3102 ucontrol->value.enumerated.item[1] = val;
3103 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003104
Geert Uytterhoeven69128312014-08-08 17:29:35 +02003105 return 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003106}
3107EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
3108
3109/**
3110 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
3111 * @kcontrol: mixer control
Mark Brownac11a2b2009-01-01 12:18:17 +00003112 * @ucontrol: control element information
Richard Purdie2b97eab2006-10-06 18:32:18 +02003113 *
3114 * Callback to set the value of a dapm enumerated double mixer control.
3115 *
3116 * Returns 0 for success.
3117 */
3118int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
3119 struct snd_ctl_elem_value *ucontrol)
3120{
Lars-Peter Clausence0fc932014-06-16 18:13:06 +02003121 struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
3122 struct snd_soc_card *card = dapm->card;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003123 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003124 unsigned int *item = ucontrol->value.enumerated.item;
Charles Keepax561ed682015-05-01 12:37:26 +01003125 unsigned int val, change, reg_change = 0;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003126 unsigned int mask;
Mark Brown97404f22010-12-14 16:13:57 +00003127 struct snd_soc_dapm_update update;
Nenghua Cao52765972013-12-13 20:13:49 +08003128 int ret = 0;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003129
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003130 if (item[0] >= e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003131 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003132
3133 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003134 mask = e->mask << e->shift_l;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003135 if (e->shift_l != e->shift_r) {
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003136 if (item[1] > e->items)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003137 return -EINVAL;
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003138 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_l;
Lars-Peter Clausen86767b72012-09-14 13:57:27 +02003139 mask |= e->mask << e->shift_r;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003140 }
3141
Liam Girdwood3cd04342012-03-09 12:02:08 +00003142 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Stephen Warrenfafd2172011-04-28 17:38:00 -06003143
Charles Keepax561ed682015-05-01 12:37:26 +01003144 change = dapm_kcontrol_set_value(kcontrol, val);
Mark Brown97404f22010-12-14 16:13:57 +00003145
Charles Keepax561ed682015-05-01 12:37:26 +01003146 if (e->reg != SND_SOC_NOPM)
3147 reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
3148
3149 if (change || reg_change) {
3150 if (reg_change) {
Lars-Peter Clausen236aaa62014-02-28 08:31:11 +01003151 update.kcontrol = kcontrol;
3152 update.reg = e->reg;
3153 update.mask = mask;
3154 update.val = val;
3155 card->update = &update;
3156 }
Charles Keepax561ed682015-05-01 12:37:26 +01003157 change |= reg_change;
Mark Brown3a655772009-10-05 17:23:30 +01003158
Lars-Peter Clausen3727b492014-02-28 08:31:04 +01003159 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
Mark Brown1642e3d2009-10-05 16:24:26 +01003160
Lars-Peter Clausen564c65042013-07-29 17:13:55 +02003161 card->update = NULL;
Stephen Warrenfafd2172011-04-28 17:38:00 -06003162 }
3163
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003164 mutex_unlock(&card->dapm_mutex);
Nenghua Cao52765972013-12-13 20:13:49 +08003165
3166 if (ret > 0)
3167 soc_dpcm_runtime_update(card);
3168
Mark Brown97404f22010-12-14 16:13:57 +00003169 return change;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003170}
3171EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
3172
3173/**
Mark Brown8b37dbd2009-02-28 21:14:20 +00003174 * snd_soc_dapm_info_pin_switch - Info for a pin switch
3175 *
3176 * @kcontrol: mixer control
3177 * @uinfo: control element information
3178 *
3179 * Callback to provide information about a pin switch control.
3180 */
3181int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
3182 struct snd_ctl_elem_info *uinfo)
3183{
3184 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
3185 uinfo->count = 1;
3186 uinfo->value.integer.min = 0;
3187 uinfo->value.integer.max = 1;
3188
3189 return 0;
3190}
3191EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
3192
3193/**
3194 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
3195 *
3196 * @kcontrol: mixer control
3197 * @ucontrol: Value
3198 */
3199int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
3200 struct snd_ctl_elem_value *ucontrol)
3201{
Mark Brown48a8c392012-02-14 17:11:15 -08003202 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003203 const char *pin = (const char *)kcontrol->private_value;
3204
Liam Girdwood3cd04342012-03-09 12:02:08 +00003205 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003206
3207 ucontrol->value.integer.value[0] =
Mark Brown48a8c392012-02-14 17:11:15 -08003208 snd_soc_dapm_get_pin_status(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003209
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003210 mutex_unlock(&card->dapm_mutex);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003211
3212 return 0;
3213}
3214EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
3215
3216/**
3217 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
3218 *
3219 * @kcontrol: mixer control
3220 * @ucontrol: Value
3221 */
3222int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
3223 struct snd_ctl_elem_value *ucontrol)
3224{
Mark Brown48a8c392012-02-14 17:11:15 -08003225 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003226 const char *pin = (const char *)kcontrol->private_value;
3227
Mark Brown8b37dbd2009-02-28 21:14:20 +00003228 if (ucontrol->value.integer.value[0])
Mark Brown48a8c392012-02-14 17:11:15 -08003229 snd_soc_dapm_enable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003230 else
Mark Brown48a8c392012-02-14 17:11:15 -08003231 snd_soc_dapm_disable_pin(&card->dapm, pin);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003232
Mark Brown48a8c392012-02-14 17:11:15 -08003233 snd_soc_dapm_sync(&card->dapm);
Mark Brown8b37dbd2009-02-28 21:14:20 +00003234 return 0;
3235}
3236EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
3237
Liam Girdwoodcc76e7d2015-06-04 15:13:09 +01003238struct snd_soc_dapm_widget *
Mark Brown5ba06fc2012-02-16 11:07:13 -08003239snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003240 const struct snd_soc_dapm_widget *widget)
3241{
3242 struct snd_soc_dapm_widget *w;
3243
3244 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3245 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
3246 if (!w)
3247 dev_err(dapm->dev,
3248 "ASoC: Failed to create DAPM control %s\n",
3249 widget->name);
3250
3251 mutex_unlock(&dapm->card->dapm_mutex);
3252 return w;
3253}
3254
3255struct snd_soc_dapm_widget *
3256snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003257 const struct snd_soc_dapm_widget *widget)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003258{
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003259 enum snd_soc_dapm_direction dir;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003260 struct snd_soc_dapm_widget *w;
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003261 const char *prefix;
Mark Brown62ea8742012-01-21 21:14:48 +00003262 int ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003263
3264 if ((w = dapm_cnew_widget(widget)) == NULL)
Mark Brown5ba06fc2012-02-16 11:07:13 -08003265 return NULL;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003266
Mark Brown62ea8742012-01-21 21:14:48 +00003267 switch (w->id) {
3268 case snd_soc_dapm_regulator_supply:
Liam Girdwooda3cc0562012-03-09 17:20:16 +00003269 w->regulator = devm_regulator_get(dapm->dev, w->name);
3270 if (IS_ERR(w->regulator)) {
3271 ret = PTR_ERR(w->regulator);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003272 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Mark Brown62ea8742012-01-21 21:14:48 +00003273 w->name, ret);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003274 return NULL;
Mark Brown62ea8742012-01-21 21:14:48 +00003275 }
Mark Brown8784c772013-01-10 19:33:47 +00003276
Lars-Peter Clausende9ba982013-07-29 17:14:01 +02003277 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
Mark Brown8784c772013-01-10 19:33:47 +00003278 ret = regulator_allow_bypass(w->regulator, true);
3279 if (ret != 0)
3280 dev_warn(w->dapm->dev,
Charles Keepax30686c32014-02-18 16:05:27 +00003281 "ASoC: Failed to bypass %s: %d\n",
Mark Brown8784c772013-01-10 19:33:47 +00003282 w->name, ret);
3283 }
Mark Brown62ea8742012-01-21 21:14:48 +00003284 break;
Ola Liljad7e7eb92012-05-24 15:26:25 +02003285 case snd_soc_dapm_clock_supply:
Mark Brown165961e2012-06-05 10:44:23 +01003286#ifdef CONFIG_CLKDEV_LOOKUP
Mark Brown695594f12012-06-04 08:14:13 +01003287 w->clk = devm_clk_get(dapm->dev, w->name);
Ola Liljad7e7eb92012-05-24 15:26:25 +02003288 if (IS_ERR(w->clk)) {
3289 ret = PTR_ERR(w->clk);
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003290 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
Ola Liljad7e7eb92012-05-24 15:26:25 +02003291 w->name, ret);
3292 return NULL;
3293 }
Mark Brownec029952012-06-04 08:16:20 +01003294#else
3295 return NULL;
3296#endif
Ola Liljad7e7eb92012-05-24 15:26:25 +02003297 break;
Mark Brown62ea8742012-01-21 21:14:48 +00003298 default:
3299 break;
3300 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003301
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003302 prefix = soc_dapm_prefix(dapm);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003303 if (prefix)
Lars-Peter Clausen94f99c82014-06-16 18:13:01 +02003304 w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name);
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003305 else
Lars-Peter Clausen48068962015-07-21 18:11:08 +02003306 w->name = kstrdup_const(widget->name, GFP_KERNEL);
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003307 if (w->name == NULL) {
3308 kfree(w);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003309 return NULL;
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003310 }
Jarkko Nikulaead9b912010-11-13 20:40:44 +02003311
Mark Brown7ca3a182011-10-08 14:04:50 +01003312 switch (w->id) {
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003313 case snd_soc_dapm_mic:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003314 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003315 w->power_check = dapm_generic_check_power;
3316 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003317 case snd_soc_dapm_input:
3318 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003319 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003320 w->power_check = dapm_generic_check_power;
3321 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003322 case snd_soc_dapm_spk:
3323 case snd_soc_dapm_hp:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003324 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003325 w->power_check = dapm_generic_check_power;
3326 break;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003327 case snd_soc_dapm_output:
3328 if (!dapm->card->fully_routed)
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003329 w->is_ep = SND_SOC_DAPM_EP_SINK;
Lars-Peter Clausen86d75002014-12-21 11:05:44 +01003330 w->power_check = dapm_generic_check_power;
3331 break;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003332 case snd_soc_dapm_vmid:
3333 case snd_soc_dapm_siggen:
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003334 w->is_ep = SND_SOC_DAPM_EP_SOURCE;
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003335 w->power_check = dapm_always_on_check_power;
3336 break;
3337 case snd_soc_dapm_mux:
Lars-Peter Clausend714f972015-05-01 18:02:43 +02003338 case snd_soc_dapm_demux:
Mark Brown7ca3a182011-10-08 14:04:50 +01003339 case snd_soc_dapm_switch:
3340 case snd_soc_dapm_mixer:
3341 case snd_soc_dapm_mixer_named_ctl:
Mark Brown63c69a62013-07-18 22:03:01 +01003342 case snd_soc_dapm_adc:
3343 case snd_soc_dapm_aif_out:
3344 case snd_soc_dapm_dac:
3345 case snd_soc_dapm_aif_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003346 case snd_soc_dapm_pga:
3347 case snd_soc_dapm_out_drv:
Mark Brown7ca3a182011-10-08 14:04:50 +01003348 case snd_soc_dapm_micbias:
Mark Brown7ca3a182011-10-08 14:04:50 +01003349 case snd_soc_dapm_line:
Mark Brownc74184e2012-04-04 22:12:09 +01003350 case snd_soc_dapm_dai_link:
Lars-Peter Clausencdef2ad2014-10-20 19:36:38 +02003351 case snd_soc_dapm_dai_out:
3352 case snd_soc_dapm_dai_in:
Mark Brown7ca3a182011-10-08 14:04:50 +01003353 w->power_check = dapm_generic_check_power;
3354 break;
3355 case snd_soc_dapm_supply:
Mark Brown62ea8742012-01-21 21:14:48 +00003356 case snd_soc_dapm_regulator_supply:
Ola Liljad7e7eb92012-05-24 15:26:25 +02003357 case snd_soc_dapm_clock_supply:
Lars-Peter Clausen57295072013-08-05 11:27:31 +02003358 case snd_soc_dapm_kcontrol:
Lars-Peter Clausen6dd98b02014-10-25 17:41:59 +02003359 w->is_supply = 1;
Mark Brown7ca3a182011-10-08 14:04:50 +01003360 w->power_check = dapm_supply_check_power;
3361 break;
3362 default:
3363 w->power_check = dapm_always_on_check_power;
3364 break;
3365 }
3366
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003367 w->dapm = dapm;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003368 INIT_LIST_HEAD(&w->list);
Mark Browndb432b42011-10-03 21:06:40 +01003369 INIT_LIST_HEAD(&w->dirty);
Lars-Peter Clausen92fa1242015-05-01 18:02:42 +02003370 list_add_tail(&w->list, &dapm->card->widgets);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003371
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003372 snd_soc_dapm_for_each_direction(dir) {
3373 INIT_LIST_HEAD(&w->edges[dir]);
3374 w->endpoints[dir] = -1;
3375 }
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02003376
Richard Purdie2b97eab2006-10-06 18:32:18 +02003377 /* machine layer set ups unconnected pins and insertions */
3378 w->connected = 1;
Mark Brown5ba06fc2012-02-16 11:07:13 -08003379 return w;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003380}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003381
3382/**
Mark Brown4ba13272008-05-13 14:51:19 +02003383 * snd_soc_dapm_new_controls - create new dapm controls
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003384 * @dapm: DAPM context
Mark Brown4ba13272008-05-13 14:51:19 +02003385 * @widget: widget array
3386 * @num: number of widgets
3387 *
3388 * Creates new DAPM controls based upon the templates.
3389 *
3390 * Returns 0 for success else error.
3391 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003392int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
Mark Brown4ba13272008-05-13 14:51:19 +02003393 const struct snd_soc_dapm_widget *widget,
3394 int num)
3395{
Mark Brown5ba06fc2012-02-16 11:07:13 -08003396 struct snd_soc_dapm_widget *w;
3397 int i;
Dan Carpenter60884c22012-04-13 22:25:43 +03003398 int ret = 0;
Mark Brown4ba13272008-05-13 14:51:19 +02003399
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003400 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
Mark Brown4ba13272008-05-13 14:51:19 +02003401 for (i = 0; i < num; i++) {
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003402 w = snd_soc_dapm_new_control_unlocked(dapm, widget);
Mark Brown5ba06fc2012-02-16 11:07:13 -08003403 if (!w) {
Jarkko Nikulaf7d41ae2010-11-09 14:40:27 +02003404 dev_err(dapm->dev,
Mark Brown5ba06fc2012-02-16 11:07:13 -08003405 "ASoC: Failed to create DAPM control %s\n",
3406 widget->name);
Dan Carpenter60884c22012-04-13 22:25:43 +03003407 ret = -ENOMEM;
3408 break;
Mark Brownb8b33cb2008-12-18 11:19:30 +00003409 }
Mark Brown4ba13272008-05-13 14:51:19 +02003410 widget++;
3411 }
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003412 mutex_unlock(&dapm->card->dapm_mutex);
Dan Carpenter60884c22012-04-13 22:25:43 +03003413 return ret;
Mark Brown4ba13272008-05-13 14:51:19 +02003414}
3415EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3416
Mark Brownc74184e2012-04-04 22:12:09 +01003417static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3418 struct snd_kcontrol *kcontrol, int event)
3419{
3420 struct snd_soc_dapm_path *source_p, *sink_p;
3421 struct snd_soc_dai *source, *sink;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003422 const struct snd_soc_pcm_stream *config = w->params + w->params_select;
Mark Brownc74184e2012-04-04 22:12:09 +01003423 struct snd_pcm_substream substream;
Mark Brown9747cec2012-04-26 19:12:21 +01003424 struct snd_pcm_hw_params *params = NULL;
Mark Brownc74184e2012-04-04 22:12:09 +01003425 u64 fmt;
3426 int ret;
3427
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003428 if (WARN_ON(!config) ||
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003429 WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) ||
3430 list_empty(&w->edges[SND_SOC_DAPM_DIR_IN])))
Takashi Iwaibf4edea2013-11-07 18:38:47 +01003431 return -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003432
3433 /* We only support a single source and sink, pick the first */
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003434 source_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_OUT],
3435 struct snd_soc_dapm_path,
3436 list_node[SND_SOC_DAPM_DIR_OUT]);
3437 sink_p = list_first_entry(&w->edges[SND_SOC_DAPM_DIR_IN],
3438 struct snd_soc_dapm_path,
3439 list_node[SND_SOC_DAPM_DIR_IN]);
Mark Brownc74184e2012-04-04 22:12:09 +01003440
3441 source = source_p->source->priv;
3442 sink = sink_p->sink->priv;
3443
3444 /* Be a little careful as we don't want to overflow the mask array */
3445 if (config->formats) {
3446 fmt = ffs(config->formats) - 1;
3447 } else {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003448 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003449 config->formats);
3450 fmt = 0;
3451 }
3452
3453 /* Currently very limited parameter selection */
Mark Brown9747cec2012-04-26 19:12:21 +01003454 params = kzalloc(sizeof(*params), GFP_KERNEL);
3455 if (!params) {
3456 ret = -ENOMEM;
3457 goto out;
3458 }
3459 snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
Mark Brownc74184e2012-04-04 22:12:09 +01003460
Mark Brown9747cec2012-04-26 19:12:21 +01003461 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
Mark Brownc74184e2012-04-04 22:12:09 +01003462 config->rate_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003463 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
Mark Brownc74184e2012-04-04 22:12:09 +01003464 config->rate_max;
3465
Mark Brown9747cec2012-04-26 19:12:21 +01003466 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
Mark Brownc74184e2012-04-04 22:12:09 +01003467 = config->channels_min;
Mark Brown9747cec2012-04-26 19:12:21 +01003468 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
Mark Brownc74184e2012-04-04 22:12:09 +01003469 = config->channels_max;
3470
3471 memset(&substream, 0, sizeof(substream));
3472
3473 switch (event) {
3474 case SND_SOC_DAPM_PRE_PMU:
Benoit Cousson93e69582014-07-08 23:19:38 +02003475 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3476 ret = soc_dai_hw_params(&substream, params, source);
3477 if (ret < 0)
3478 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003479
Benoit Cousson93e69582014-07-08 23:19:38 +02003480 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3481 ret = soc_dai_hw_params(&substream, params, sink);
3482 if (ret < 0)
3483 goto out;
Mark Brownc74184e2012-04-04 22:12:09 +01003484 break;
3485
3486 case SND_SOC_DAPM_POST_PMU:
Mark Brownda183962013-02-06 15:44:07 +00003487 ret = snd_soc_dai_digital_mute(sink, 0,
3488 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003489 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003490 dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003491 ret = 0;
Mark Brownc74184e2012-04-04 22:12:09 +01003492 break;
3493
3494 case SND_SOC_DAPM_PRE_PMD:
Mark Brownda183962013-02-06 15:44:07 +00003495 ret = snd_soc_dai_digital_mute(sink, 1,
3496 SNDRV_PCM_STREAM_PLAYBACK);
Mark Brownc74184e2012-04-04 22:12:09 +01003497 if (ret != 0 && ret != -ENOTSUPP)
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003498 dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
Mark Brown9747cec2012-04-26 19:12:21 +01003499 ret = 0;
Mark Brownc74184e2012-04-04 22:12:09 +01003500 break;
3501
3502 default:
Takashi Iwaia6ed0602013-11-06 11:07:19 +01003503 WARN(1, "Unknown event %d\n", event);
Sudip Mukherjee75881df2015-09-10 18:01:44 +05303504 ret = -EINVAL;
Mark Brownc74184e2012-04-04 22:12:09 +01003505 }
3506
Mark Brown9747cec2012-04-26 19:12:21 +01003507out:
3508 kfree(params);
3509 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003510}
3511
Nikesh Oswalc6615082015-02-02 17:06:44 +00003512static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol,
3513 struct snd_ctl_elem_value *ucontrol)
3514{
3515 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3516
3517 ucontrol->value.integer.value[0] = w->params_select;
3518
3519 return 0;
3520}
3521
3522static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol,
3523 struct snd_ctl_elem_value *ucontrol)
3524{
3525 struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol);
3526
3527 /* Can't change the config when widget is already powered */
3528 if (w->power)
3529 return -EBUSY;
3530
3531 if (ucontrol->value.integer.value[0] == w->params_select)
3532 return 0;
3533
3534 if (ucontrol->value.integer.value[0] >= w->num_params)
3535 return -EINVAL;
3536
3537 w->params_select = ucontrol->value.integer.value[0];
3538
3539 return 0;
3540}
3541
Mark Brownc74184e2012-04-04 22:12:09 +01003542int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3543 const struct snd_soc_pcm_stream *params,
Nikesh Oswalc6615082015-02-02 17:06:44 +00003544 unsigned int num_params,
Mark Brownc74184e2012-04-04 22:12:09 +01003545 struct snd_soc_dapm_widget *source,
3546 struct snd_soc_dapm_widget *sink)
3547{
Mark Brownc74184e2012-04-04 22:12:09 +01003548 struct snd_soc_dapm_widget template;
3549 struct snd_soc_dapm_widget *w;
Mark Brownc74184e2012-04-04 22:12:09 +01003550 char *link_name;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003551 int ret, count;
3552 unsigned long private_value;
3553 const char **w_param_text;
3554 struct soc_enum w_param_enum[] = {
3555 SOC_ENUM_SINGLE(0, 0, 0, NULL),
3556 };
3557 struct snd_kcontrol_new kcontrol_dai_link[] = {
3558 SOC_ENUM_EXT(NULL, w_param_enum[0],
3559 snd_soc_dapm_dai_link_get,
3560 snd_soc_dapm_dai_link_put),
3561 };
3562 const struct snd_soc_pcm_stream *config = params;
Mark Brownc74184e2012-04-04 22:12:09 +01003563
Nikesh Oswalc6615082015-02-02 17:06:44 +00003564 w_param_text = devm_kcalloc(card->dev, num_params,
3565 sizeof(char *), GFP_KERNEL);
3566 if (!w_param_text)
Mark Brownc74184e2012-04-04 22:12:09 +01003567 return -ENOMEM;
Mark Brownc74184e2012-04-04 22:12:09 +01003568
Charles Keepax46172b62015-03-25 11:22:35 +00003569 link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s",
3570 source->name, sink->name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003571 if (!link_name) {
3572 ret = -ENOMEM;
3573 goto outfree_w_param;
3574 }
Mark Brownc74184e2012-04-04 22:12:09 +01003575
Nikesh Oswalc6615082015-02-02 17:06:44 +00003576 for (count = 0 ; count < num_params; count++) {
3577 if (!config->stream_name) {
3578 dev_warn(card->dapm.dev,
3579 "ASoC: anonymous config %d for dai link %s\n",
3580 count, link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003581 w_param_text[count] =
Charles Keepax46172b62015-03-25 11:22:35 +00003582 devm_kasprintf(card->dev, GFP_KERNEL,
3583 "Anonymous Configuration %d",
3584 count);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003585 if (!w_param_text[count]) {
3586 ret = -ENOMEM;
3587 goto outfree_link_name;
3588 }
Nikesh Oswalc6615082015-02-02 17:06:44 +00003589 } else {
3590 w_param_text[count] = devm_kmemdup(card->dev,
3591 config->stream_name,
3592 strlen(config->stream_name) + 1,
3593 GFP_KERNEL);
3594 if (!w_param_text[count]) {
3595 ret = -ENOMEM;
3596 goto outfree_link_name;
3597 }
3598 }
3599 config++;
3600 }
3601 w_param_enum[0].items = num_params;
3602 w_param_enum[0].texts = w_param_text;
Mark Brownc74184e2012-04-04 22:12:09 +01003603
3604 memset(&template, 0, sizeof(template));
3605 template.reg = SND_SOC_NOPM;
3606 template.id = snd_soc_dapm_dai_link;
3607 template.name = link_name;
3608 template.event = snd_soc_dai_link_event;
3609 template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3610 SND_SOC_DAPM_PRE_PMD;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003611 template.num_kcontrols = 1;
3612 /* duplicate w_param_enum on heap so that memory persists */
3613 private_value =
3614 (unsigned long) devm_kmemdup(card->dev,
3615 (void *)(kcontrol_dai_link[0].private_value),
3616 sizeof(struct soc_enum), GFP_KERNEL);
3617 if (!private_value) {
3618 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3619 link_name);
3620 ret = -ENOMEM;
3621 goto outfree_link_name;
3622 }
3623 kcontrol_dai_link[0].private_value = private_value;
3624 /* duplicate kcontrol_dai_link on heap so that memory persists */
3625 template.kcontrol_news =
3626 devm_kmemdup(card->dev, &kcontrol_dai_link[0],
3627 sizeof(struct snd_kcontrol_new),
3628 GFP_KERNEL);
3629 if (!template.kcontrol_news) {
3630 dev_err(card->dev, "ASoC: Failed to create control for %s widget\n",
3631 link_name);
3632 ret = -ENOMEM;
3633 goto outfree_private_value;
3634 }
Mark Brownc74184e2012-04-04 22:12:09 +01003635
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003636 dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
Mark Brownc74184e2012-04-04 22:12:09 +01003637
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003638 w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template);
Mark Brownc74184e2012-04-04 22:12:09 +01003639 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003640 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
Mark Brownc74184e2012-04-04 22:12:09 +01003641 link_name);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003642 ret = -ENOMEM;
3643 goto outfree_kcontrol_news;
Mark Brownc74184e2012-04-04 22:12:09 +01003644 }
3645
3646 w->params = params;
Nikesh Oswalc6615082015-02-02 17:06:44 +00003647 w->num_params = num_params;
Mark Brownc74184e2012-04-04 22:12:09 +01003648
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003649 ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3650 if (ret)
Nikesh Oswalc6615082015-02-02 17:06:44 +00003651 goto outfree_w;
Lars-Peter Clausenfe838972014-05-07 16:20:27 +02003652 return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
Nikesh Oswalc6615082015-02-02 17:06:44 +00003653
3654outfree_w:
3655 devm_kfree(card->dev, w);
3656outfree_kcontrol_news:
3657 devm_kfree(card->dev, (void *)template.kcontrol_news);
3658outfree_private_value:
3659 devm_kfree(card->dev, (void *)private_value);
3660outfree_link_name:
3661 devm_kfree(card->dev, link_name);
3662outfree_w_param:
3663 for (count = 0 ; count < num_params; count++)
3664 devm_kfree(card->dev, (void *)w_param_text[count]);
3665 devm_kfree(card->dev, w_param_text);
3666
3667 return ret;
Mark Brownc74184e2012-04-04 22:12:09 +01003668}
3669
Mark Brown888df392012-02-16 19:37:51 -08003670int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3671 struct snd_soc_dai *dai)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003672{
Mark Brown888df392012-02-16 19:37:51 -08003673 struct snd_soc_dapm_widget template;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003674 struct snd_soc_dapm_widget *w;
3675
Mark Brown888df392012-02-16 19:37:51 -08003676 WARN_ON(dapm->dev != dai->dev);
3677
3678 memset(&template, 0, sizeof(template));
3679 template.reg = SND_SOC_NOPM;
3680
3681 if (dai->driver->playback.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003682 template.id = snd_soc_dapm_dai_in;
Mark Brown888df392012-02-16 19:37:51 -08003683 template.name = dai->driver->playback.stream_name;
3684 template.sname = dai->driver->playback.stream_name;
3685
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003686 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003687 template.name);
3688
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003689 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003690 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003691 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003692 dai->driver->playback.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003693 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003694 }
3695
3696 w->priv = dai;
3697 dai->playback_widget = w;
3698 }
3699
3700 if (dai->driver->capture.stream_name) {
Mark Brown46162742013-06-05 19:36:11 +01003701 template.id = snd_soc_dapm_dai_out;
Mark Brown888df392012-02-16 19:37:51 -08003702 template.name = dai->driver->capture.stream_name;
3703 template.sname = dai->driver->capture.stream_name;
3704
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003705 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003706 template.name);
3707
Liam Girdwood02aa78a2015-05-25 18:21:17 +01003708 w = snd_soc_dapm_new_control_unlocked(dapm, &template);
Mark Brown888df392012-02-16 19:37:51 -08003709 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00003710 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
Mark Brown888df392012-02-16 19:37:51 -08003711 dai->driver->capture.stream_name);
Takashi Iwai298402a2013-10-28 14:21:50 +01003712 return -ENOMEM;
Mark Brown888df392012-02-16 19:37:51 -08003713 }
3714
3715 w->priv = dai;
3716 dai->capture_widget = w;
3717 }
3718
3719 return 0;
3720}
3721
3722int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3723{
3724 struct snd_soc_dapm_widget *dai_w, *w;
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003725 struct snd_soc_dapm_widget *src, *sink;
Mark Brown888df392012-02-16 19:37:51 -08003726 struct snd_soc_dai *dai;
Mark Brown888df392012-02-16 19:37:51 -08003727
3728 /* For each DAI widget... */
3729 list_for_each_entry(dai_w, &card->widgets, list) {
Mark Brown46162742013-06-05 19:36:11 +01003730 switch (dai_w->id) {
3731 case snd_soc_dapm_dai_in:
3732 case snd_soc_dapm_dai_out:
3733 break;
3734 default:
Richard Purdie2b97eab2006-10-06 18:32:18 +02003735 continue;
Mark Brown46162742013-06-05 19:36:11 +01003736 }
Mark Brown888df392012-02-16 19:37:51 -08003737
3738 dai = dai_w->priv;
3739
3740 /* ...find all widgets with the same stream and link them */
3741 list_for_each_entry(w, &card->widgets, list) {
3742 if (w->dapm != dai_w->dapm)
3743 continue;
3744
Mark Brown46162742013-06-05 19:36:11 +01003745 switch (w->id) {
3746 case snd_soc_dapm_dai_in:
3747 case snd_soc_dapm_dai_out:
Mark Brown888df392012-02-16 19:37:51 -08003748 continue;
Mark Brown46162742013-06-05 19:36:11 +01003749 default:
3750 break;
3751 }
Mark Brown888df392012-02-16 19:37:51 -08003752
Lars-Peter Clausena798c242015-07-21 11:51:35 +02003753 if (!w->sname || !strstr(w->sname, dai_w->sname))
Mark Brown888df392012-02-16 19:37:51 -08003754 continue;
3755
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003756 if (dai_w->id == snd_soc_dapm_dai_in) {
3757 src = dai_w;
3758 sink = w;
3759 } else {
3760 src = w;
3761 sink = dai_w;
Mark Brown888df392012-02-16 19:37:51 -08003762 }
Lars-Peter Clausen0f9bd7b2014-05-07 16:20:28 +02003763 dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3764 snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003765 }
3766 }
Richard Purdie2b97eab2006-10-06 18:32:18 +02003767
Mark Brown888df392012-02-16 19:37:51 -08003768 return 0;
3769}
Liam Girdwood64a648c2011-07-25 11:15:15 +01003770
Benoit Cousson44ba2642014-07-08 23:19:36 +02003771static void dapm_connect_dai_link_widgets(struct snd_soc_card *card,
3772 struct snd_soc_pcm_runtime *rtd)
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003773{
Benoit Cousson44ba2642014-07-08 23:19:36 +02003774 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003775 struct snd_soc_dapm_widget *sink, *source;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003776 int i;
3777
Benoit Cousson44ba2642014-07-08 23:19:36 +02003778 for (i = 0; i < rtd->num_codecs; i++) {
3779 struct snd_soc_dai *codec_dai = rtd->codec_dais[i];
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003780
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003781 /* connect BE DAI playback if widgets are valid */
3782 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003783 source = cpu_dai->playback_widget;
3784 sink = codec_dai->playback_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003785 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003786 cpu_dai->component->name, source->name,
3787 codec_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003788
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003789 snd_soc_dapm_add_path(&card->dapm, source, sink,
3790 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003791 }
3792
3793 /* connect BE DAI capture if widgets are valid */
3794 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003795 source = codec_dai->capture_widget;
3796 sink = cpu_dai->capture_widget;
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003797 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
Lars-Peter Clausenf4333202014-06-16 18:13:02 +02003798 codec_dai->component->name, source->name,
3799 cpu_dai->component->name, sink->name);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003800
Lars-Peter Clausen9887c202014-05-07 16:20:26 +02003801 snd_soc_dapm_add_path(&card->dapm, source, sink,
3802 NULL, NULL);
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003803 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003804 }
3805}
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003806
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003807static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
3808 int event)
3809{
3810 struct snd_soc_dapm_widget *w;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003811 unsigned int ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003812
3813 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
3814 w = dai->playback_widget;
3815 else
3816 w = dai->capture_widget;
3817
3818 if (w) {
3819 dapm_mark_dirty(w, "stream event");
3820
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003821 if (w->id == snd_soc_dapm_dai_in) {
3822 ep = SND_SOC_DAPM_EP_SOURCE;
3823 dapm_widget_invalidate_input_paths(w);
3824 } else {
3825 ep = SND_SOC_DAPM_EP_SINK;
3826 dapm_widget_invalidate_output_paths(w);
3827 }
3828
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003829 switch (event) {
3830 case SND_SOC_DAPM_STREAM_START:
3831 w->active = 1;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003832 w->is_ep = ep;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003833 break;
3834 case SND_SOC_DAPM_STREAM_STOP:
3835 w->active = 0;
Lars-Peter Clausena3423b02015-08-11 21:38:00 +02003836 w->is_ep = 0;
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003837 break;
3838 case SND_SOC_DAPM_STREAM_SUSPEND:
3839 case SND_SOC_DAPM_STREAM_RESUME:
3840 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3841 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3842 break;
3843 }
Liam Girdwoodb893ea52014-01-08 10:40:19 +00003844 }
3845}
3846
Benoit Cousson44ba2642014-07-08 23:19:36 +02003847void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
3848{
3849 struct snd_soc_pcm_runtime *rtd = card->rtd;
3850 int i;
3851
3852 /* for each BE DAI link... */
3853 for (i = 0; i < card->num_rtd; i++) {
3854 rtd = &card->rtd[i];
3855
3856 /*
3857 * dynamic FE links have no fixed DAI mapping.
3858 * CODEC<->CODEC links have no direct connection.
3859 */
3860 if (rtd->dai_link->dynamic || rtd->dai_link->params)
3861 continue;
3862
3863 dapm_connect_dai_link_widgets(card, rtd);
3864 }
3865}
3866
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003867static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3868 int event)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003869{
Benoit Cousson44ba2642014-07-08 23:19:36 +02003870 int i;
3871
Lars-Peter Clausenc471fdd2014-04-29 14:51:22 +02003872 soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
Benoit Cousson44ba2642014-07-08 23:19:36 +02003873 for (i = 0; i < rtd->num_codecs; i++)
3874 soc_dapm_dai_stream_event(rtd->codec_dais[i], stream, event);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003875
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02003876 dapm_power_widgets(rtd->card, event);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003877}
3878
3879/**
3880 * snd_soc_dapm_stream_event - send a stream event to the dapm core
3881 * @rtd: PCM runtime data
3882 * @stream: stream name
3883 * @event: stream event
3884 *
3885 * Sends a stream event to the dapm core. The core then makes any
3886 * necessary widget power changes.
3887 *
3888 * Returns 0 for success else error.
3889 */
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003890void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3891 int event)
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003892{
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003893 struct snd_soc_card *card = rtd->card;
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003894
Liam Girdwood3cd04342012-03-09 12:02:08 +00003895 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Liam Girdwoodd9b09512012-03-07 16:32:59 +00003896 soc_dapm_stream_event(rtd, stream, event);
Liam Girdwooda73fb2d2012-03-07 10:38:26 +00003897 mutex_unlock(&card->dapm_mutex);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003898}
Richard Purdie2b97eab2006-10-06 18:32:18 +02003899
3900/**
Charles Keepax11391102014-02-18 15:22:14 +00003901 * snd_soc_dapm_enable_pin_unlocked - enable pin.
3902 * @dapm: DAPM context
3903 * @pin: pin name
3904 *
3905 * Enables input/output pin and its parents or children widgets iff there is
3906 * a valid audio route and active audio stream.
3907 *
3908 * Requires external locking.
3909 *
3910 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3911 * do any widget power switching.
3912 */
3913int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
3914 const char *pin)
3915{
3916 return snd_soc_dapm_set_pin(dapm, pin, 1);
3917}
3918EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
3919
3920/**
Liam Girdwooda5302182008-07-07 13:35:17 +01003921 * snd_soc_dapm_enable_pin - enable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003922 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01003923 * @pin: pin name
Richard Purdie2b97eab2006-10-06 18:32:18 +02003924 *
Mark Brown74b8f952009-06-06 11:26:15 +01003925 * Enables input/output pin and its parents or children widgets iff there is
Liam Girdwooda5302182008-07-07 13:35:17 +01003926 * a valid audio route and active audio stream.
Charles Keepax11391102014-02-18 15:22:14 +00003927 *
Liam Girdwooda5302182008-07-07 13:35:17 +01003928 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3929 * do any widget power switching.
Richard Purdie2b97eab2006-10-06 18:32:18 +02003930 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003931int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Richard Purdie2b97eab2006-10-06 18:32:18 +02003932{
Charles Keepax11391102014-02-18 15:22:14 +00003933 int ret;
3934
3935 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3936
3937 ret = snd_soc_dapm_set_pin(dapm, pin, 1);
3938
3939 mutex_unlock(&dapm->card->dapm_mutex);
3940
3941 return ret;
Richard Purdie2b97eab2006-10-06 18:32:18 +02003942}
Liam Girdwooda5302182008-07-07 13:35:17 +01003943EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
Richard Purdie2b97eab2006-10-06 18:32:18 +02003944
3945/**
Charles Keepax11391102014-02-18 15:22:14 +00003946 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
3947 * @dapm: DAPM context
3948 * @pin: pin name
3949 *
3950 * Enables input/output pin regardless of any other state. This is
3951 * intended for use with microphone bias supplies used in microphone
3952 * jack detection.
3953 *
3954 * Requires external locking.
3955 *
3956 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3957 * do any widget power switching.
3958 */
3959int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
3960 const char *pin)
3961{
3962 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
3963
3964 if (!w) {
3965 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
3966 return -EINVAL;
3967 }
3968
3969 dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
Lars-Peter Clausen92a99ea2014-10-25 17:42:03 +02003970 if (!w->connected) {
3971 /*
3972 * w->force does not affect the number of input or output paths,
3973 * so we only have to recheck if w->connected is changed
3974 */
3975 dapm_widget_invalidate_input_paths(w);
3976 dapm_widget_invalidate_output_paths(w);
3977 w->connected = 1;
3978 }
Charles Keepax11391102014-02-18 15:22:14 +00003979 w->force = 1;
3980 dapm_mark_dirty(w, "force enable");
3981
3982 return 0;
3983}
3984EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
3985
3986/**
Mark Brownda341832010-03-15 19:23:37 +00003987 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003988 * @dapm: DAPM context
Mark Brownda341832010-03-15 19:23:37 +00003989 * @pin: pin name
3990 *
3991 * Enables input/output pin regardless of any other state. This is
3992 * intended for use with microphone bias supplies used in microphone
3993 * jack detection.
3994 *
3995 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3996 * do any widget power switching.
3997 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02003998int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
3999 const char *pin)
Mark Brownda341832010-03-15 19:23:37 +00004000{
Charles Keepax11391102014-02-18 15:22:14 +00004001 int ret;
Mark Brownda341832010-03-15 19:23:37 +00004002
Charles Keepax11391102014-02-18 15:22:14 +00004003 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
Mark Brownda341832010-03-15 19:23:37 +00004004
Charles Keepax11391102014-02-18 15:22:14 +00004005 ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
Mark Brown0d867332011-04-06 11:38:14 +09004006
Charles Keepax11391102014-02-18 15:22:14 +00004007 mutex_unlock(&dapm->card->dapm_mutex);
4008
4009 return ret;
Mark Brownda341832010-03-15 19:23:37 +00004010}
4011EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
4012
4013/**
Charles Keepax11391102014-02-18 15:22:14 +00004014 * snd_soc_dapm_disable_pin_unlocked - disable pin.
4015 * @dapm: DAPM context
4016 * @pin: pin name
4017 *
4018 * Disables input/output pin and its parents or children widgets.
4019 *
4020 * Requires external locking.
4021 *
4022 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4023 * do any widget power switching.
4024 */
4025int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
4026 const char *pin)
4027{
4028 return snd_soc_dapm_set_pin(dapm, pin, 0);
4029}
4030EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
4031
4032/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004033 * snd_soc_dapm_disable_pin - disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004034 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004035 * @pin: pin name
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004036 *
Mark Brown74b8f952009-06-06 11:26:15 +01004037 * Disables input/output pin and its parents or children widgets.
Charles Keepax11391102014-02-18 15:22:14 +00004038 *
Liam Girdwooda5302182008-07-07 13:35:17 +01004039 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4040 * do any widget power switching.
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004041 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004042int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
4043 const char *pin)
Liam Girdwooda5302182008-07-07 13:35:17 +01004044{
Charles Keepax11391102014-02-18 15:22:14 +00004045 int ret;
4046
4047 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4048
4049 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4050
4051 mutex_unlock(&dapm->card->dapm_mutex);
4052
4053 return ret;
Liam Girdwooda5302182008-07-07 13:35:17 +01004054}
4055EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
4056
4057/**
Charles Keepax11391102014-02-18 15:22:14 +00004058 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
4059 * @dapm: DAPM context
4060 * @pin: pin name
4061 *
4062 * Marks the specified pin as being not connected, disabling it along
4063 * any parent or child widgets. At present this is identical to
4064 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4065 * additional things such as disabling controls which only affect
4066 * paths through the pin.
4067 *
4068 * Requires external locking.
4069 *
4070 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4071 * do any widget power switching.
4072 */
4073int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
4074 const char *pin)
4075{
4076 return snd_soc_dapm_set_pin(dapm, pin, 0);
4077}
4078EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
4079
4080/**
Mark Brown5817b522008-09-24 11:23:11 +01004081 * snd_soc_dapm_nc_pin - permanently disable pin.
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004082 * @dapm: DAPM context
Mark Brown5817b522008-09-24 11:23:11 +01004083 * @pin: pin name
4084 *
4085 * Marks the specified pin as being not connected, disabling it along
4086 * any parent or child widgets. At present this is identical to
4087 * snd_soc_dapm_disable_pin() but in future it will be extended to do
4088 * additional things such as disabling controls which only affect
4089 * paths through the pin.
4090 *
4091 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
4092 * do any widget power switching.
4093 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004094int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
Mark Brown5817b522008-09-24 11:23:11 +01004095{
Charles Keepax11391102014-02-18 15:22:14 +00004096 int ret;
4097
4098 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
4099
4100 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
4101
4102 mutex_unlock(&dapm->card->dapm_mutex);
4103
4104 return ret;
Mark Brown5817b522008-09-24 11:23:11 +01004105}
4106EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
4107
4108/**
Liam Girdwooda5302182008-07-07 13:35:17 +01004109 * snd_soc_dapm_get_pin_status - get audio pin status
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004110 * @dapm: DAPM context
Liam Girdwooda5302182008-07-07 13:35:17 +01004111 * @pin: audio signal pin endpoint (or start point)
4112 *
4113 * Get audio pin status - connected or disconnected.
4114 *
4115 * Returns 1 for connected otherwise 0.
4116 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004117int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
4118 const char *pin)
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004119{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004120 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004121
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004122 if (w)
4123 return w->connected;
Stephen Warrena68b38a2011-04-19 15:25:11 -06004124
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004125 return 0;
4126}
Liam Girdwooda5302182008-07-07 13:35:17 +01004127EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
Graeme Gregoryeeec12b2008-04-30 19:27:40 +02004128
4129/**
Mark Brown1547aba2010-05-07 21:11:40 +01004130 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004131 * @dapm: DAPM context
Mark Brown1547aba2010-05-07 21:11:40 +01004132 * @pin: audio signal pin endpoint (or start point)
4133 *
4134 * Mark the given endpoint or pin as ignoring suspend. When the
4135 * system is disabled a path between two endpoints flagged as ignoring
4136 * suspend will not be disabled. The path must already be enabled via
4137 * normal means at suspend time, it will not be turned on if it was not
4138 * already enabled.
4139 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004140int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
4141 const char *pin)
Mark Brown1547aba2010-05-07 21:11:40 +01004142{
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004143 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
Mark Brown1547aba2010-05-07 21:11:40 +01004144
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004145 if (!w) {
Liam Girdwood30a6a1a2012-11-19 14:39:12 +00004146 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004147 return -EINVAL;
Mark Brown1547aba2010-05-07 21:11:40 +01004148 }
4149
Lars-Peter Clausen91a5fca2011-04-27 18:34:31 +02004150 w->ignore_suspend = 1;
4151
4152 return 0;
Mark Brown1547aba2010-05-07 21:11:40 +01004153}
4154EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
4155
Lars-Peter Clausencdc45082014-10-20 19:36:33 +02004156/**
Richard Purdie2b97eab2006-10-06 18:32:18 +02004157 * snd_soc_dapm_free - free dapm resources
Peter Ujfalusi728a5222011-08-26 16:33:52 +03004158 * @dapm: DAPM context
Richard Purdie2b97eab2006-10-06 18:32:18 +02004159 *
4160 * Free all dapm widgets and resources.
4161 */
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004162void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
Richard Purdie2b97eab2006-10-06 18:32:18 +02004163{
Lars-Peter Clausen6c45e122011-04-30 19:45:50 +02004164 dapm_debugfs_cleanup(dapm);
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004165 dapm_free_widgets(dapm);
Jarkko Nikula7be31be82010-12-14 12:18:32 +02004166 list_del(&dapm->list);
Richard Purdie2b97eab2006-10-06 18:32:18 +02004167}
4168EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
4169
Xiang Xiao57996352014-03-02 00:04:02 +08004170static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
Mark Brown51737472009-06-22 13:16:51 +01004171{
Liam Girdwood01005a72012-07-06 16:57:05 +01004172 struct snd_soc_card *card = dapm->card;
Mark Brown51737472009-06-22 13:16:51 +01004173 struct snd_soc_dapm_widget *w;
4174 LIST_HEAD(down_list);
4175 int powerdown = 0;
4176
Liam Girdwood01005a72012-07-06 16:57:05 +01004177 mutex_lock(&card->dapm_mutex);
4178
Jarkko Nikula97c866d2010-12-14 12:18:31 +02004179 list_for_each_entry(w, &dapm->card->widgets, list) {
4180 if (w->dapm != dapm)
4181 continue;
Mark Brown51737472009-06-22 13:16:51 +01004182 if (w->power) {
Mark Brown828a8422011-01-15 13:14:30 +00004183 dapm_seq_insert(w, &down_list, false);
Mark Brownc2caa4d2009-06-26 15:36:56 +01004184 w->power = 0;
Mark Brown51737472009-06-22 13:16:51 +01004185 powerdown = 1;
4186 }
4187 }
4188
4189 /* If there were no widgets to power down we're already in
4190 * standby.
4191 */
4192 if (powerdown) {
Mark Brown7679e422012-02-22 15:52:56 +00004193 if (dapm->bias_level == SND_SOC_BIAS_ON)
4194 snd_soc_dapm_set_bias_level(dapm,
4195 SND_SOC_BIAS_PREPARE);
Lars-Peter Clausen95dd5cd2013-07-29 17:13:56 +02004196 dapm_seq_run(card, &down_list, 0, false);
Mark Brown7679e422012-02-22 15:52:56 +00004197 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
4198 snd_soc_dapm_set_bias_level(dapm,
4199 SND_SOC_BIAS_STANDBY);
Mark Brown51737472009-06-22 13:16:51 +01004200 }
Liam Girdwood01005a72012-07-06 16:57:05 +01004201
4202 mutex_unlock(&card->dapm_mutex);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004203}
Mark Brown51737472009-06-22 13:16:51 +01004204
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004205/*
4206 * snd_soc_dapm_shutdown - callback for system shutdown
4207 */
4208void snd_soc_dapm_shutdown(struct snd_soc_card *card)
4209{
Xiang Xiao57996352014-03-02 00:04:02 +08004210 struct snd_soc_dapm_context *dapm;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +00004211
Xiang Xiao57996352014-03-02 00:04:02 +08004212 list_for_each_entry(dapm, &card->dapm_list, list) {
Xiang Xiao17282ba2014-03-02 00:04:03 +08004213 if (dapm != &card->dapm) {
4214 soc_dapm_shutdown_dapm(dapm);
4215 if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
4216 snd_soc_dapm_set_bias_level(dapm,
4217 SND_SOC_BIAS_OFF);
4218 }
Liam Girdwoodce6120c2010-11-05 15:53:46 +02004219 }
Xiang Xiao17282ba2014-03-02 00:04:03 +08004220
4221 soc_dapm_shutdown_dapm(&card->dapm);
4222 if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
4223 snd_soc_dapm_set_bias_level(&card->dapm,
4224 SND_SOC_BIAS_OFF);
Mark Brown51737472009-06-22 13:16:51 +01004225}
4226
Richard Purdie2b97eab2006-10-06 18:32:18 +02004227/* Module information */
Liam Girdwoodd3311242008-10-12 13:17:36 +01004228MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
Richard Purdie2b97eab2006-10-06 18:32:18 +02004229MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
4230MODULE_LICENSE("GPL");