Kuninori Morimoto | c01f3af | 2018-07-02 06:24:31 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | // |
| 3 | // soc-dapm.c -- ALSA SoC Dynamic Audio Power Management |
| 4 | // |
| 5 | // Copyright 2005 Wolfson Microelectronics PLC. |
| 6 | // Author: Liam Girdwood <lrg@slimlogic.co.uk> |
| 7 | // |
| 8 | // Features: |
| 9 | // o Changes power status of internal codec blocks depending on the |
| 10 | // dynamic configuration of codec internal audio paths and active |
| 11 | // DACs/ADCs. |
| 12 | // o Platform power domain - can support external components i.e. amps and |
| 13 | // mic/headphone insertion events. |
| 14 | // o Automatic Mic Bias support |
| 15 | // o Jack insertion power event initiation - e.g. hp insertion will enable |
| 16 | // sinks, dacs, etc |
| 17 | // o Delayed power down of audio subsystem to reduce pops between a quick |
| 18 | // device reopen. |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 19 | |
| 20 | #include <linux/module.h> |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 21 | #include <linux/init.h> |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 22 | #include <linux/async.h> |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 23 | #include <linux/delay.h> |
| 24 | #include <linux/pm.h> |
| 25 | #include <linux/bitops.h> |
| 26 | #include <linux/platform_device.h> |
| 27 | #include <linux/jiffies.h> |
Takashi Iwai | 20496ff | 2009-08-24 09:40:34 +0200 | [diff] [blame] | 28 | #include <linux/debugfs.h> |
Mark Brown | f1aac48 | 2011-12-05 15:17:06 +0000 | [diff] [blame] | 29 | #include <linux/pm_runtime.h> |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 30 | #include <linux/regulator/consumer.h> |
Srinivas Kandagatla | 5b2d15b | 2018-03-10 02:37:27 +0000 | [diff] [blame] | 31 | #include <linux/pinctrl/consumer.h> |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 32 | #include <linux/clk.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 34 | #include <sound/core.h> |
| 35 | #include <sound/pcm.h> |
| 36 | #include <sound/pcm_params.h> |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 37 | #include <sound/soc.h> |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 38 | #include <sound/initval.h> |
| 39 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 40 | #include <trace/events/asoc.h> |
| 41 | |
Mark Brown | de02d07 | 2011-09-20 21:43:24 +0100 | [diff] [blame] | 42 | #define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++; |
| 43 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 44 | #define SND_SOC_DAPM_DIR_REVERSE(x) ((x == SND_SOC_DAPM_DIR_IN) ? \ |
| 45 | SND_SOC_DAPM_DIR_OUT : SND_SOC_DAPM_DIR_IN) |
| 46 | |
| 47 | #define snd_soc_dapm_for_each_direction(dir) \ |
| 48 | for ((dir) = SND_SOC_DAPM_DIR_IN; (dir) <= SND_SOC_DAPM_DIR_OUT; \ |
| 49 | (dir)++) |
| 50 | |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 51 | static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm, |
| 52 | struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink, |
| 53 | const char *control, |
| 54 | int (*connected)(struct snd_soc_dapm_widget *source, |
| 55 | struct snd_soc_dapm_widget *sink)); |
Vladimir Zapolskiy | 5353f65 | 2015-06-02 00:57:53 +0300 | [diff] [blame] | 56 | |
Liam Girdwood | cc76e7d | 2015-06-04 15:13:09 +0100 | [diff] [blame] | 57 | struct snd_soc_dapm_widget * |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 58 | snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm, |
| 59 | const struct snd_soc_dapm_widget *widget); |
| 60 | |
Liam Girdwood | 02aa78a | 2015-05-25 18:21:17 +0100 | [diff] [blame] | 61 | struct snd_soc_dapm_widget * |
| 62 | snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 63 | const struct snd_soc_dapm_widget *widget); |
| 64 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 65 | /* dapm power sequences - make this per codec in the future */ |
| 66 | static int dapm_up_seq[] = { |
Pierre-Louis Bossart | f13d4b5 | 2019-02-05 10:22:28 -0600 | [diff] [blame] | 67 | [snd_soc_dapm_pre] = 1, |
| 68 | [snd_soc_dapm_regulator_supply] = 2, |
| 69 | [snd_soc_dapm_pinctrl] = 2, |
| 70 | [snd_soc_dapm_clock_supply] = 2, |
| 71 | [snd_soc_dapm_supply] = 3, |
| 72 | [snd_soc_dapm_micbias] = 4, |
| 73 | [snd_soc_dapm_vmid] = 4, |
| 74 | [snd_soc_dapm_dai_link] = 3, |
| 75 | [snd_soc_dapm_dai_in] = 5, |
| 76 | [snd_soc_dapm_dai_out] = 5, |
| 77 | [snd_soc_dapm_aif_in] = 5, |
| 78 | [snd_soc_dapm_aif_out] = 5, |
| 79 | [snd_soc_dapm_mic] = 6, |
| 80 | [snd_soc_dapm_siggen] = 6, |
| 81 | [snd_soc_dapm_input] = 6, |
| 82 | [snd_soc_dapm_output] = 6, |
| 83 | [snd_soc_dapm_mux] = 7, |
| 84 | [snd_soc_dapm_demux] = 7, |
| 85 | [snd_soc_dapm_dac] = 8, |
| 86 | [snd_soc_dapm_switch] = 9, |
| 87 | [snd_soc_dapm_mixer] = 9, |
| 88 | [snd_soc_dapm_mixer_named_ctl] = 9, |
| 89 | [snd_soc_dapm_pga] = 10, |
| 90 | [snd_soc_dapm_buffer] = 10, |
| 91 | [snd_soc_dapm_scheduler] = 10, |
| 92 | [snd_soc_dapm_effect] = 10, |
| 93 | [snd_soc_dapm_src] = 10, |
| 94 | [snd_soc_dapm_asrc] = 10, |
| 95 | [snd_soc_dapm_encoder] = 10, |
| 96 | [snd_soc_dapm_decoder] = 10, |
| 97 | [snd_soc_dapm_adc] = 11, |
| 98 | [snd_soc_dapm_out_drv] = 12, |
| 99 | [snd_soc_dapm_hp] = 12, |
| 100 | [snd_soc_dapm_spk] = 12, |
| 101 | [snd_soc_dapm_line] = 12, |
| 102 | [snd_soc_dapm_sink] = 12, |
| 103 | [snd_soc_dapm_kcontrol] = 13, |
| 104 | [snd_soc_dapm_post] = 14, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 105 | }; |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 106 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 107 | static int dapm_down_seq[] = { |
Pierre-Louis Bossart | f13d4b5 | 2019-02-05 10:22:28 -0600 | [diff] [blame] | 108 | [snd_soc_dapm_pre] = 1, |
| 109 | [snd_soc_dapm_kcontrol] = 2, |
| 110 | [snd_soc_dapm_adc] = 3, |
| 111 | [snd_soc_dapm_hp] = 4, |
| 112 | [snd_soc_dapm_spk] = 4, |
| 113 | [snd_soc_dapm_line] = 4, |
| 114 | [snd_soc_dapm_out_drv] = 4, |
| 115 | [snd_soc_dapm_sink] = 4, |
| 116 | [snd_soc_dapm_pga] = 5, |
| 117 | [snd_soc_dapm_buffer] = 5, |
| 118 | [snd_soc_dapm_scheduler] = 5, |
| 119 | [snd_soc_dapm_effect] = 5, |
| 120 | [snd_soc_dapm_src] = 5, |
| 121 | [snd_soc_dapm_asrc] = 5, |
| 122 | [snd_soc_dapm_encoder] = 5, |
| 123 | [snd_soc_dapm_decoder] = 5, |
| 124 | [snd_soc_dapm_switch] = 6, |
| 125 | [snd_soc_dapm_mixer_named_ctl] = 6, |
| 126 | [snd_soc_dapm_mixer] = 6, |
| 127 | [snd_soc_dapm_dac] = 7, |
| 128 | [snd_soc_dapm_mic] = 8, |
| 129 | [snd_soc_dapm_siggen] = 8, |
| 130 | [snd_soc_dapm_input] = 8, |
| 131 | [snd_soc_dapm_output] = 8, |
| 132 | [snd_soc_dapm_micbias] = 9, |
| 133 | [snd_soc_dapm_vmid] = 9, |
| 134 | [snd_soc_dapm_mux] = 10, |
| 135 | [snd_soc_dapm_demux] = 10, |
| 136 | [snd_soc_dapm_aif_in] = 11, |
| 137 | [snd_soc_dapm_aif_out] = 11, |
| 138 | [snd_soc_dapm_dai_in] = 11, |
| 139 | [snd_soc_dapm_dai_out] = 11, |
| 140 | [snd_soc_dapm_dai_link] = 12, |
| 141 | [snd_soc_dapm_supply] = 13, |
| 142 | [snd_soc_dapm_clock_supply] = 14, |
| 143 | [snd_soc_dapm_pinctrl] = 14, |
| 144 | [snd_soc_dapm_regulator_supply] = 14, |
| 145 | [snd_soc_dapm_post] = 15, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 146 | }; |
| 147 | |
Mark Brown | f9fa2b1 | 2014-03-06 16:49:11 +0800 | [diff] [blame] | 148 | static void dapm_assert_locked(struct snd_soc_dapm_context *dapm) |
| 149 | { |
| 150 | if (dapm->card && dapm->card->instantiated) |
| 151 | lockdep_assert_held(&dapm->card->dapm_mutex); |
| 152 | } |
| 153 | |
Troy Kisky | 12ef193 | 2008-10-13 17:42:14 -0700 | [diff] [blame] | 154 | static void pop_wait(u32 pop_time) |
Mark Brown | 15e4c72f | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 155 | { |
| 156 | if (pop_time) |
| 157 | schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time)); |
| 158 | } |
| 159 | |
Mathieu Malaterre | 595d2f7 | 2019-01-23 20:41:30 +0100 | [diff] [blame] | 160 | __printf(3, 4) |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 161 | static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...) |
Mark Brown | 15e4c72f | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 162 | { |
| 163 | va_list args; |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 164 | char *buf; |
| 165 | |
| 166 | if (!pop_time) |
| 167 | return; |
| 168 | |
| 169 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 170 | if (buf == NULL) |
| 171 | return; |
Mark Brown | 15e4c72f | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 172 | |
| 173 | va_start(args, fmt); |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 174 | vsnprintf(buf, PAGE_SIZE, fmt, args); |
Takashi Iwai | 9d01df0 | 2010-12-22 14:08:40 +0100 | [diff] [blame] | 175 | dev_info(dev, "%s", buf); |
Mark Brown | 15e4c72f | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 176 | va_end(args); |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 177 | |
| 178 | kfree(buf); |
Mark Brown | 15e4c72f | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 179 | } |
| 180 | |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 181 | static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w) |
| 182 | { |
| 183 | return !list_empty(&w->dirty); |
| 184 | } |
| 185 | |
Mark Brown | 492c0a1 | 2014-03-06 16:15:48 +0800 | [diff] [blame] | 186 | static void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason) |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 187 | { |
Mark Brown | f9fa2b1 | 2014-03-06 16:49:11 +0800 | [diff] [blame] | 188 | dapm_assert_locked(w->dapm); |
| 189 | |
Mark Brown | 75c1f89 | 2011-10-04 22:28:08 +0100 | [diff] [blame] | 190 | if (!dapm_dirty_widget(w)) { |
| 191 | dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n", |
| 192 | w->name, reason); |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 193 | list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty); |
Mark Brown | 75c1f89 | 2011-10-04 22:28:08 +0100 | [diff] [blame] | 194 | } |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 195 | } |
| 196 | |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 197 | /* |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 198 | * Common implementation for dapm_widget_invalidate_input_paths() and |
| 199 | * dapm_widget_invalidate_output_paths(). The function is inlined since the |
| 200 | * combined size of the two specialized functions is only marginally larger then |
| 201 | * the size of the generic function and at the same time the fast path of the |
| 202 | * specialized functions is significantly smaller than the generic function. |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 203 | */ |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 204 | static __always_inline void dapm_widget_invalidate_paths( |
| 205 | struct snd_soc_dapm_widget *w, enum snd_soc_dapm_direction dir) |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 206 | { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 207 | enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir); |
| 208 | struct snd_soc_dapm_widget *node; |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 209 | struct snd_soc_dapm_path *p; |
| 210 | LIST_HEAD(list); |
| 211 | |
| 212 | dapm_assert_locked(w->dapm); |
| 213 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 214 | if (w->endpoints[dir] == -1) |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 215 | return; |
| 216 | |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 217 | list_add_tail(&w->work_list, &list); |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 218 | w->endpoints[dir] = -1; |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 219 | |
| 220 | list_for_each_entry(w, &list, work_list) { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 221 | snd_soc_dapm_widget_for_each_path(w, dir, p) { |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 222 | if (p->is_supply || p->weak || !p->connect) |
| 223 | continue; |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 224 | node = p->node[rdir]; |
| 225 | if (node->endpoints[dir] != -1) { |
| 226 | node->endpoints[dir] = -1; |
| 227 | list_add_tail(&node->work_list, &list); |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 228 | } |
| 229 | } |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | /* |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 234 | * dapm_widget_invalidate_input_paths() - Invalidate the cached number of |
| 235 | * input paths |
| 236 | * @w: The widget for which to invalidate the cached number of input paths |
| 237 | * |
| 238 | * Resets the cached number of inputs for the specified widget and all widgets |
| 239 | * that can be reached via outcoming paths from the widget. |
| 240 | * |
| 241 | * This function must be called if the number of output paths for a widget might |
| 242 | * have changed. E.g. if the source state of a widget changes or a path is added |
| 243 | * or activated with the widget as the sink. |
| 244 | */ |
| 245 | static void dapm_widget_invalidate_input_paths(struct snd_soc_dapm_widget *w) |
| 246 | { |
| 247 | dapm_widget_invalidate_paths(w, SND_SOC_DAPM_DIR_IN); |
| 248 | } |
| 249 | |
| 250 | /* |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 251 | * dapm_widget_invalidate_output_paths() - Invalidate the cached number of |
| 252 | * output paths |
| 253 | * @w: The widget for which to invalidate the cached number of output paths |
| 254 | * |
| 255 | * Resets the cached number of outputs for the specified widget and all widgets |
| 256 | * that can be reached via incoming paths from the widget. |
| 257 | * |
| 258 | * This function must be called if the number of output paths for a widget might |
| 259 | * have changed. E.g. if the sink state of a widget changes or a path is added |
| 260 | * or activated with the widget as the source. |
| 261 | */ |
| 262 | static void dapm_widget_invalidate_output_paths(struct snd_soc_dapm_widget *w) |
| 263 | { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 264 | dapm_widget_invalidate_paths(w, SND_SOC_DAPM_DIR_OUT); |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | /* |
| 268 | * dapm_path_invalidate() - Invalidates the cached number of inputs and outputs |
| 269 | * for the widgets connected to a path |
| 270 | * @p: The path to invalidate |
| 271 | * |
| 272 | * Resets the cached number of inputs for the sink of the path and the cached |
| 273 | * number of outputs for the source of the path. |
| 274 | * |
| 275 | * This function must be called when a path is added, removed or the connected |
| 276 | * state changes. |
| 277 | */ |
| 278 | static void dapm_path_invalidate(struct snd_soc_dapm_path *p) |
| 279 | { |
| 280 | /* |
| 281 | * Weak paths or supply paths do not influence the number of input or |
| 282 | * output paths of their neighbors. |
| 283 | */ |
| 284 | if (p->weak || p->is_supply) |
| 285 | return; |
| 286 | |
| 287 | /* |
| 288 | * The number of connected endpoints is the sum of the number of |
| 289 | * connected endpoints of all neighbors. If a node with 0 connected |
| 290 | * endpoints is either connected or disconnected that sum won't change, |
| 291 | * so there is no need to re-check the path. |
| 292 | */ |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 293 | if (p->source->endpoints[SND_SOC_DAPM_DIR_IN] != 0) |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 294 | dapm_widget_invalidate_input_paths(p->sink); |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 295 | if (p->sink->endpoints[SND_SOC_DAPM_DIR_OUT] != 0) |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 296 | dapm_widget_invalidate_output_paths(p->source); |
| 297 | } |
| 298 | |
Lars-Peter Clausen | 8be4da2 | 2014-10-25 17:42:01 +0200 | [diff] [blame] | 299 | void dapm_mark_endpoints_dirty(struct snd_soc_card *card) |
Mark Brown | e2d32ff | 2012-08-31 17:38:32 -0700 | [diff] [blame] | 300 | { |
Mark Brown | e2d32ff | 2012-08-31 17:38:32 -0700 | [diff] [blame] | 301 | struct snd_soc_dapm_widget *w; |
| 302 | |
| 303 | mutex_lock(&card->dapm_mutex); |
| 304 | |
| 305 | list_for_each_entry(w, &card->widgets, list) { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 306 | if (w->is_ep) { |
Lars-Peter Clausen | 8be4da2 | 2014-10-25 17:42:01 +0200 | [diff] [blame] | 307 | dapm_mark_dirty(w, "Rechecking endpoints"); |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 308 | if (w->is_ep & SND_SOC_DAPM_EP_SINK) |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 309 | dapm_widget_invalidate_output_paths(w); |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 310 | if (w->is_ep & SND_SOC_DAPM_EP_SOURCE) |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 311 | dapm_widget_invalidate_input_paths(w); |
| 312 | } |
Mark Brown | e2d32ff | 2012-08-31 17:38:32 -0700 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | mutex_unlock(&card->dapm_mutex); |
| 316 | } |
Lars-Peter Clausen | 8be4da2 | 2014-10-25 17:42:01 +0200 | [diff] [blame] | 317 | EXPORT_SYMBOL_GPL(dapm_mark_endpoints_dirty); |
Mark Brown | e2d32ff | 2012-08-31 17:38:32 -0700 | [diff] [blame] | 318 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 319 | /* create a new dapm widget */ |
Takashi Iwai | 88cb429 | 2007-02-05 14:56:20 +0100 | [diff] [blame] | 320 | static inline struct snd_soc_dapm_widget *dapm_cnew_widget( |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 321 | const struct snd_soc_dapm_widget *_widget) |
| 322 | { |
Pierre-Louis Bossart | 199ed3e | 2019-02-01 11:05:12 -0600 | [diff] [blame] | 323 | struct snd_soc_dapm_widget *w; |
| 324 | |
| 325 | w = kmemdup(_widget, sizeof(*_widget), GFP_KERNEL); |
| 326 | if (!w) |
| 327 | return NULL; |
| 328 | |
| 329 | /* |
| 330 | * w->name is duplicated in caller, but w->sname isn't. |
| 331 | * Duplicate it here if defined |
| 332 | */ |
| 333 | if (_widget->sname) { |
| 334 | w->sname = kstrdup_const(_widget->sname, GFP_KERNEL); |
Dan Carpenter | a6d9cef | 2019-02-19 15:04:27 +0300 | [diff] [blame] | 335 | if (!w->sname) { |
| 336 | kfree(w); |
Pierre-Louis Bossart | 199ed3e | 2019-02-01 11:05:12 -0600 | [diff] [blame] | 337 | return NULL; |
Dan Carpenter | a6d9cef | 2019-02-19 15:04:27 +0300 | [diff] [blame] | 338 | } |
Pierre-Louis Bossart | 199ed3e | 2019-02-01 11:05:12 -0600 | [diff] [blame] | 339 | } |
| 340 | return w; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 341 | } |
| 342 | |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 343 | struct dapm_kcontrol_data { |
Lars-Peter Clausen | cf7c1de | 2013-07-29 17:13:59 +0200 | [diff] [blame] | 344 | unsigned int value; |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 345 | struct snd_soc_dapm_widget *widget; |
Lars-Peter Clausen | 5106b92 | 2013-07-29 17:14:00 +0200 | [diff] [blame] | 346 | struct list_head paths; |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 347 | struct snd_soc_dapm_widget_list *wlist; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 348 | }; |
| 349 | |
| 350 | static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget, |
Lars-Peter Clausen | 41d8002 | 2016-02-03 21:59:50 +0100 | [diff] [blame] | 351 | struct snd_kcontrol *kcontrol, const char *ctrl_name) |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 352 | { |
| 353 | struct dapm_kcontrol_data *data; |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 354 | struct soc_mixer_control *mc; |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 355 | struct soc_enum *e; |
Charles Keepax | 773da9b | 2015-05-01 12:37:25 +0100 | [diff] [blame] | 356 | const char *name; |
| 357 | int ret; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 358 | |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 359 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
Charles Keepax | 40b7bea | 2015-05-01 12:37:24 +0100 | [diff] [blame] | 360 | if (!data) |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 361 | return -ENOMEM; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 362 | |
Lars-Peter Clausen | 5106b92 | 2013-07-29 17:14:00 +0200 | [diff] [blame] | 363 | INIT_LIST_HEAD(&data->paths); |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 364 | |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 365 | switch (widget->id) { |
| 366 | case snd_soc_dapm_switch: |
| 367 | case snd_soc_dapm_mixer: |
| 368 | case snd_soc_dapm_mixer_named_ctl: |
| 369 | mc = (struct soc_mixer_control *)kcontrol->private_value; |
| 370 | |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 371 | if (mc->autodisable && snd_soc_volsw_is_stereo(mc)) |
| 372 | dev_warn(widget->dapm->dev, |
| 373 | "ASoC: Unsupported stereo autodisable control '%s'\n", |
| 374 | ctrl_name); |
| 375 | |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 376 | if (mc->autodisable) { |
| 377 | struct snd_soc_dapm_widget template; |
| 378 | |
Lars-Peter Clausen | 41d8002 | 2016-02-03 21:59:50 +0100 | [diff] [blame] | 379 | name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name, |
Charles Keepax | 773da9b | 2015-05-01 12:37:25 +0100 | [diff] [blame] | 380 | "Autodisable"); |
| 381 | if (!name) { |
| 382 | ret = -ENOMEM; |
| 383 | goto err_data; |
| 384 | } |
| 385 | |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 386 | memset(&template, 0, sizeof(template)); |
| 387 | template.reg = mc->reg; |
| 388 | template.mask = (1 << fls(mc->max)) - 1; |
| 389 | template.shift = mc->shift; |
| 390 | if (mc->invert) |
| 391 | template.off_val = mc->max; |
| 392 | else |
| 393 | template.off_val = 0; |
| 394 | template.on_val = template.off_val; |
| 395 | template.id = snd_soc_dapm_kcontrol; |
Charles Keepax | 773da9b | 2015-05-01 12:37:25 +0100 | [diff] [blame] | 396 | template.name = name; |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 397 | |
Lars-Peter Clausen | 2daabd7 | 2013-08-30 17:39:33 +0200 | [diff] [blame] | 398 | data->value = template.on_val; |
| 399 | |
Liam Girdwood | 02aa78a | 2015-05-25 18:21:17 +0100 | [diff] [blame] | 400 | data->widget = |
| 401 | snd_soc_dapm_new_control_unlocked(widget->dapm, |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 402 | &template); |
Lars-Peter Clausen | e18077b | 2015-07-08 21:59:59 +0200 | [diff] [blame] | 403 | kfree(name); |
Linus Walleij | 37e1df8 | 2017-01-13 10:23:52 +0100 | [diff] [blame] | 404 | if (IS_ERR(data->widget)) { |
| 405 | ret = PTR_ERR(data->widget); |
| 406 | goto err_data; |
| 407 | } |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 408 | } |
| 409 | break; |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 410 | case snd_soc_dapm_demux: |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 411 | case snd_soc_dapm_mux: |
| 412 | e = (struct soc_enum *)kcontrol->private_value; |
| 413 | |
| 414 | if (e->autodisable) { |
| 415 | struct snd_soc_dapm_widget template; |
| 416 | |
Lars-Peter Clausen | 41d8002 | 2016-02-03 21:59:50 +0100 | [diff] [blame] | 417 | name = kasprintf(GFP_KERNEL, "%s %s", ctrl_name, |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 418 | "Autodisable"); |
| 419 | if (!name) { |
| 420 | ret = -ENOMEM; |
| 421 | goto err_data; |
| 422 | } |
| 423 | |
| 424 | memset(&template, 0, sizeof(template)); |
| 425 | template.reg = e->reg; |
| 426 | template.mask = e->mask << e->shift_l; |
| 427 | template.shift = e->shift_l; |
| 428 | template.off_val = snd_soc_enum_item_to_val(e, 0); |
| 429 | template.on_val = template.off_val; |
| 430 | template.id = snd_soc_dapm_kcontrol; |
| 431 | template.name = name; |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 432 | |
| 433 | data->value = template.on_val; |
| 434 | |
Charles Keepax | ffacb48 | 2015-06-26 10:39:43 +0100 | [diff] [blame] | 435 | data->widget = snd_soc_dapm_new_control_unlocked( |
| 436 | widget->dapm, &template); |
Lars-Peter Clausen | e18077b | 2015-07-08 21:59:59 +0200 | [diff] [blame] | 437 | kfree(name); |
Linus Walleij | 37e1df8 | 2017-01-13 10:23:52 +0100 | [diff] [blame] | 438 | if (IS_ERR(data->widget)) { |
| 439 | ret = PTR_ERR(data->widget); |
| 440 | goto err_data; |
| 441 | } |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 442 | |
| 443 | snd_soc_dapm_add_path(widget->dapm, data->widget, |
| 444 | widget, NULL, NULL); |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 445 | } |
| 446 | break; |
| 447 | default: |
| 448 | break; |
| 449 | } |
| 450 | |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 451 | kcontrol->private_data = data; |
| 452 | |
| 453 | return 0; |
Charles Keepax | 773da9b | 2015-05-01 12:37:25 +0100 | [diff] [blame] | 454 | |
Charles Keepax | 773da9b | 2015-05-01 12:37:25 +0100 | [diff] [blame] | 455 | err_data: |
| 456 | kfree(data); |
| 457 | return ret; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | static void dapm_kcontrol_free(struct snd_kcontrol *kctl) |
| 461 | { |
| 462 | struct dapm_kcontrol_data *data = snd_kcontrol_chip(kctl); |
Srinivas Kandagatla | ff2faf1 | 2018-06-04 12:13:26 +0100 | [diff] [blame] | 463 | |
| 464 | list_del(&data->paths); |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 465 | kfree(data->wlist); |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 466 | kfree(data); |
| 467 | } |
| 468 | |
| 469 | static struct snd_soc_dapm_widget_list *dapm_kcontrol_get_wlist( |
| 470 | const struct snd_kcontrol *kcontrol) |
| 471 | { |
| 472 | struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol); |
| 473 | |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 474 | return data->wlist; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | static int dapm_kcontrol_add_widget(struct snd_kcontrol *kcontrol, |
| 478 | struct snd_soc_dapm_widget *widget) |
| 479 | { |
| 480 | struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol); |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 481 | struct snd_soc_dapm_widget_list *new_wlist; |
| 482 | unsigned int n; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 483 | |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 484 | if (data->wlist) |
| 485 | n = data->wlist->num_widgets + 1; |
| 486 | else |
| 487 | n = 1; |
| 488 | |
| 489 | new_wlist = krealloc(data->wlist, |
Gustavo A. R. Silva | 0759791 | 2019-05-23 15:36:37 -0500 | [diff] [blame] | 490 | struct_size(new_wlist, widgets, n), |
| 491 | GFP_KERNEL); |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 492 | if (!new_wlist) |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 493 | return -ENOMEM; |
| 494 | |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 495 | new_wlist->widgets[n - 1] = widget; |
| 496 | new_wlist->num_widgets = n; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 497 | |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 498 | data->wlist = new_wlist; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 499 | |
| 500 | return 0; |
| 501 | } |
| 502 | |
Lars-Peter Clausen | 5106b92 | 2013-07-29 17:14:00 +0200 | [diff] [blame] | 503 | static void dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol, |
| 504 | struct snd_soc_dapm_path *path) |
| 505 | { |
| 506 | struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol); |
| 507 | |
| 508 | list_add_tail(&path->list_kcontrol, &data->paths); |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | static bool dapm_kcontrol_is_powered(const struct snd_kcontrol *kcontrol) |
| 512 | { |
| 513 | struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol); |
| 514 | |
| 515 | if (!data->widget) |
| 516 | return true; |
| 517 | |
| 518 | return data->widget->power; |
Lars-Peter Clausen | 5106b92 | 2013-07-29 17:14:00 +0200 | [diff] [blame] | 519 | } |
| 520 | |
| 521 | static struct list_head *dapm_kcontrol_get_path_list( |
| 522 | const struct snd_kcontrol *kcontrol) |
| 523 | { |
| 524 | struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol); |
| 525 | |
| 526 | return &data->paths; |
| 527 | } |
| 528 | |
| 529 | #define dapm_kcontrol_for_each_path(path, kcontrol) \ |
| 530 | list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \ |
| 531 | list_kcontrol) |
| 532 | |
Subhransu S. Prusty | 5dc0158a | 2014-09-19 16:46:05 +0530 | [diff] [blame] | 533 | unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol *kcontrol) |
Lars-Peter Clausen | cf7c1de | 2013-07-29 17:13:59 +0200 | [diff] [blame] | 534 | { |
| 535 | struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol); |
| 536 | |
| 537 | return data->value; |
| 538 | } |
Subhransu S. Prusty | 5dc0158a | 2014-09-19 16:46:05 +0530 | [diff] [blame] | 539 | EXPORT_SYMBOL_GPL(dapm_kcontrol_get_value); |
Lars-Peter Clausen | cf7c1de | 2013-07-29 17:13:59 +0200 | [diff] [blame] | 540 | |
| 541 | static bool dapm_kcontrol_set_value(const struct snd_kcontrol *kcontrol, |
| 542 | unsigned int value) |
| 543 | { |
| 544 | struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol); |
| 545 | |
| 546 | if (data->value == value) |
| 547 | return false; |
| 548 | |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 549 | if (data->widget) |
| 550 | data->widget->on_val = value; |
| 551 | |
Lars-Peter Clausen | cf7c1de | 2013-07-29 17:13:59 +0200 | [diff] [blame] | 552 | data->value = value; |
| 553 | |
| 554 | return true; |
| 555 | } |
| 556 | |
Lars-Peter Clausen | eee5d7f | 2013-07-29 17:13:57 +0200 | [diff] [blame] | 557 | /** |
Mythri P K | 93e39a1 | 2015-10-20 22:30:08 +0530 | [diff] [blame] | 558 | * snd_soc_dapm_kcontrol_widget() - Returns the widget associated to a |
| 559 | * kcontrol |
| 560 | * @kcontrol: The kcontrol |
| 561 | */ |
| 562 | struct snd_soc_dapm_widget *snd_soc_dapm_kcontrol_widget( |
| 563 | struct snd_kcontrol *kcontrol) |
| 564 | { |
| 565 | return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]; |
| 566 | } |
| 567 | EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_widget); |
| 568 | |
| 569 | /** |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 570 | * snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a |
| 571 | * kcontrol |
| 572 | * @kcontrol: The kcontrol |
| 573 | * |
| 574 | * Note: This function must only be used on kcontrols that are known to have |
| 575 | * been registered for a CODEC. Otherwise the behaviour is undefined. |
| 576 | */ |
| 577 | struct snd_soc_dapm_context *snd_soc_dapm_kcontrol_dapm( |
| 578 | struct snd_kcontrol *kcontrol) |
| 579 | { |
| 580 | return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->dapm; |
| 581 | } |
| 582 | EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_dapm); |
| 583 | |
Liam Girdwood | 6c120e1 | 2012-02-15 15:15:34 +0000 | [diff] [blame] | 584 | static void dapm_reset(struct snd_soc_card *card) |
| 585 | { |
| 586 | struct snd_soc_dapm_widget *w; |
| 587 | |
Mark Brown | f9fa2b1 | 2014-03-06 16:49:11 +0800 | [diff] [blame] | 588 | lockdep_assert_held(&card->dapm_mutex); |
| 589 | |
Liam Girdwood | 6c120e1 | 2012-02-15 15:15:34 +0000 | [diff] [blame] | 590 | memset(&card->dapm_stats, 0, sizeof(card->dapm_stats)); |
| 591 | |
| 592 | list_for_each_entry(w, &card->widgets, list) { |
Lars-Peter Clausen | 39eb5fd | 2013-07-29 17:14:03 +0200 | [diff] [blame] | 593 | w->new_power = w->power; |
Liam Girdwood | 6c120e1 | 2012-02-15 15:15:34 +0000 | [diff] [blame] | 594 | w->power_checked = false; |
Liam Girdwood | 6c120e1 | 2012-02-15 15:15:34 +0000 | [diff] [blame] | 595 | } |
| 596 | } |
| 597 | |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 598 | static const char *soc_dapm_prefix(struct snd_soc_dapm_context *dapm) |
| 599 | { |
| 600 | if (!dapm->component) |
| 601 | return NULL; |
| 602 | return dapm->component->name_prefix; |
| 603 | } |
| 604 | |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 605 | static int soc_dapm_read(struct snd_soc_dapm_context *dapm, int reg, |
Arun Shamanna Lakshmi | f7d3c17 | 2014-01-14 15:31:54 -0800 | [diff] [blame] | 606 | unsigned int *value) |
Liam Girdwood | 0445bdf | 2011-06-13 19:37:36 +0100 | [diff] [blame] | 607 | { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 608 | if (!dapm->component) |
Lars-Peter Clausen | e2c330b | 2014-04-22 13:23:13 +0200 | [diff] [blame] | 609 | return -EIO; |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 610 | return snd_soc_component_read(dapm->component, reg, value); |
Liam Girdwood | 0445bdf | 2011-06-13 19:37:36 +0100 | [diff] [blame] | 611 | } |
| 612 | |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 613 | static int soc_dapm_update_bits(struct snd_soc_dapm_context *dapm, |
Bard Liao | 3477501 | 2014-04-17 20:12:56 +0800 | [diff] [blame] | 614 | int reg, unsigned int mask, unsigned int value) |
Liam Girdwood | 0445bdf | 2011-06-13 19:37:36 +0100 | [diff] [blame] | 615 | { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 616 | if (!dapm->component) |
Lars-Peter Clausen | e2c330b | 2014-04-22 13:23:13 +0200 | [diff] [blame] | 617 | return -EIO; |
Mark Brown | fcf6c5e | 2014-12-15 13:08:48 +0000 | [diff] [blame] | 618 | return snd_soc_component_update_bits(dapm->component, reg, |
| 619 | mask, value); |
Liam Girdwood | 49575fb5 | 2012-03-06 18:16:19 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 622 | static int soc_dapm_test_bits(struct snd_soc_dapm_context *dapm, |
| 623 | int reg, unsigned int mask, unsigned int value) |
| 624 | { |
| 625 | if (!dapm->component) |
| 626 | return -EIO; |
| 627 | return snd_soc_component_test_bits(dapm->component, reg, mask, value); |
| 628 | } |
| 629 | |
Mark Brown | eb270e9 | 2013-10-09 13:52:52 +0100 | [diff] [blame] | 630 | static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm) |
| 631 | { |
Lars-Peter Clausen | e2c330b | 2014-04-22 13:23:13 +0200 | [diff] [blame] | 632 | if (dapm->component) |
| 633 | snd_soc_component_async_complete(dapm->component); |
Liam Girdwood | 0445bdf | 2011-06-13 19:37:36 +0100 | [diff] [blame] | 634 | } |
| 635 | |
Charles Keepax | 45a110a | 2015-05-11 13:50:30 +0100 | [diff] [blame] | 636 | static struct snd_soc_dapm_widget * |
| 637 | dapm_wcache_lookup(struct snd_soc_dapm_wcache *wcache, const char *name) |
| 638 | { |
| 639 | struct snd_soc_dapm_widget *w = wcache->widget; |
| 640 | struct list_head *wlist; |
| 641 | const int depth = 2; |
| 642 | int i = 0; |
| 643 | |
| 644 | if (w) { |
| 645 | wlist = &w->dapm->card->widgets; |
| 646 | |
| 647 | list_for_each_entry_from(w, wlist, list) { |
| 648 | if (!strcmp(name, w->name)) |
| 649 | return w; |
| 650 | |
| 651 | if (++i == depth) |
| 652 | break; |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | return NULL; |
| 657 | } |
| 658 | |
| 659 | static inline void dapm_wcache_update(struct snd_soc_dapm_wcache *wcache, |
| 660 | struct snd_soc_dapm_widget *w) |
| 661 | { |
| 662 | wcache->widget = w; |
| 663 | } |
| 664 | |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 665 | /** |
Lars-Peter Clausen | fa88077 | 2015-04-27 22:13:23 +0200 | [diff] [blame] | 666 | * snd_soc_dapm_force_bias_level() - Sets the DAPM bias level |
| 667 | * @dapm: The DAPM context for which to set the level |
| 668 | * @level: The level to set |
| 669 | * |
| 670 | * Forces the DAPM bias level to a specific state. It will call the bias level |
| 671 | * callback of DAPM context with the specified level. This will even happen if |
| 672 | * the context is already at the same level. Furthermore it will not go through |
| 673 | * the normal bias level sequencing, meaning any intermediate states between the |
| 674 | * current and the target state will not be entered. |
| 675 | * |
| 676 | * Note that the change in bias level is only temporary and the next time |
| 677 | * snd_soc_dapm_sync() is called the state will be set to the level as |
| 678 | * determined by the DAPM core. The function is mainly intended to be used to |
| 679 | * used during probe or resume from suspend to power up the device so |
| 680 | * initialization can be done, before the DAPM core takes over. |
| 681 | */ |
| 682 | int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm, |
| 683 | enum snd_soc_bias_level level) |
| 684 | { |
| 685 | int ret = 0; |
| 686 | |
Kuninori Morimoto | 7951b146 | 2019-07-26 13:51:43 +0900 | [diff] [blame] | 687 | if (dapm->component) |
| 688 | ret = snd_soc_component_set_bias_level(dapm->component, level); |
Lars-Peter Clausen | fa88077 | 2015-04-27 22:13:23 +0200 | [diff] [blame] | 689 | |
Lars-Peter Clausen | f4bf8d7 | 2015-04-27 22:13:25 +0200 | [diff] [blame] | 690 | if (ret == 0) |
| 691 | dapm->bias_level = level; |
| 692 | |
Lars-Peter Clausen | fa88077 | 2015-04-27 22:13:23 +0200 | [diff] [blame] | 693 | return ret; |
| 694 | } |
| 695 | EXPORT_SYMBOL_GPL(snd_soc_dapm_force_bias_level); |
| 696 | |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 697 | /** |
| 698 | * snd_soc_dapm_set_bias_level - set the bias level for the system |
Mark Brown | ed5a4c4 | 2011-02-18 11:12:42 -0800 | [diff] [blame] | 699 | * @dapm: DAPM context |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 700 | * @level: level to configure |
| 701 | * |
| 702 | * Configure the bias (power) levels for the SoC audio device. |
| 703 | * |
| 704 | * Returns 0 for success else error. |
| 705 | */ |
Mark Brown | ed5a4c4 | 2011-02-18 11:12:42 -0800 | [diff] [blame] | 706 | static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm, |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 707 | enum snd_soc_bias_level level) |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 708 | { |
Mark Brown | ed5a4c4 | 2011-02-18 11:12:42 -0800 | [diff] [blame] | 709 | struct snd_soc_card *card = dapm->card; |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 710 | int ret = 0; |
| 711 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 712 | trace_snd_soc_bias_level_start(card, level); |
| 713 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 714 | if (card && card->set_bias_level) |
Mark Brown | d4c6005 | 2011-06-06 19:13:23 +0100 | [diff] [blame] | 715 | ret = card->set_bias_level(card, dapm, level); |
Mark Brown | 171ec6b | 2011-06-06 18:15:19 +0100 | [diff] [blame] | 716 | if (ret != 0) |
| 717 | goto out; |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 718 | |
Lars-Peter Clausen | fa88077 | 2015-04-27 22:13:23 +0200 | [diff] [blame] | 719 | if (!card || dapm != &card->dapm) |
| 720 | ret = snd_soc_dapm_force_bias_level(dapm, level); |
Liam Girdwood | 4123128 | 2012-07-06 16:56:16 +0100 | [diff] [blame] | 721 | |
Mark Brown | 171ec6b | 2011-06-06 18:15:19 +0100 | [diff] [blame] | 722 | if (ret != 0) |
| 723 | goto out; |
| 724 | |
| 725 | if (card && card->set_bias_level_post) |
Mark Brown | d4c6005 | 2011-06-06 19:13:23 +0100 | [diff] [blame] | 726 | ret = card->set_bias_level_post(card, dapm, level); |
Mark Brown | 171ec6b | 2011-06-06 18:15:19 +0100 | [diff] [blame] | 727 | out: |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 728 | trace_snd_soc_bias_level_done(card, level); |
| 729 | |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 730 | return ret; |
| 731 | } |
| 732 | |
Mark Brown | 74b8f95 | 2009-06-06 11:26:15 +0100 | [diff] [blame] | 733 | /* connect mux widget to its interconnecting audio paths */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 734 | static int dapm_connect_mux(struct snd_soc_dapm_context *dapm, |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 735 | struct snd_soc_dapm_path *path, const char *control_name, |
| 736 | struct snd_soc_dapm_widget *w) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 737 | { |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 738 | const struct snd_kcontrol_new *kcontrol = &w->kcontrol_news[0]; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 739 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Lars-Peter Clausen | 234c0b8 | 2014-02-28 08:31:12 +0100 | [diff] [blame] | 740 | unsigned int val, item; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 741 | int i; |
| 742 | |
Lars-Peter Clausen | 234c0b8 | 2014-02-28 08:31:12 +0100 | [diff] [blame] | 743 | if (e->reg != SND_SOC_NOPM) { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 744 | soc_dapm_read(dapm, e->reg, &val); |
Lars-Peter Clausen | 234c0b8 | 2014-02-28 08:31:12 +0100 | [diff] [blame] | 745 | val = (val >> e->shift_l) & e->mask; |
| 746 | item = snd_soc_enum_val_to_item(e, val); |
| 747 | } else { |
| 748 | /* since a virtual mux has no backing registers to |
| 749 | * decide which path to connect, it will try to match |
| 750 | * with the first enumeration. This is to ensure |
| 751 | * that the default mux choice (the first) will be |
| 752 | * correctly powered up during initialization. |
| 753 | */ |
| 754 | item = 0; |
| 755 | } |
| 756 | |
Xie Yisheng | f9e0b4a | 2018-05-31 19:11:23 +0800 | [diff] [blame] | 757 | i = match_string(e->texts, e->items, control_name); |
| 758 | if (i < 0) |
| 759 | return -ENODEV; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 760 | |
Xie Yisheng | f9e0b4a | 2018-05-31 19:11:23 +0800 | [diff] [blame] | 761 | path->name = e->texts[i]; |
| 762 | path->connect = (i == item); |
| 763 | return 0; |
| 764 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 765 | } |
| 766 | |
Lars-Peter Clausen | 234c0b8 | 2014-02-28 08:31:12 +0100 | [diff] [blame] | 767 | /* set up initial codec paths */ |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 768 | static void dapm_set_mixer_path_status(struct snd_soc_dapm_path *p, int i, |
| 769 | int nth_path) |
Lars-Peter Clausen | 234c0b8 | 2014-02-28 08:31:12 +0100 | [diff] [blame] | 770 | { |
| 771 | struct soc_mixer_control *mc = (struct soc_mixer_control *) |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 772 | p->sink->kcontrol_news[i].private_value; |
Lars-Peter Clausen | 234c0b8 | 2014-02-28 08:31:12 +0100 | [diff] [blame] | 773 | unsigned int reg = mc->reg; |
| 774 | unsigned int shift = mc->shift; |
| 775 | unsigned int max = mc->max; |
| 776 | unsigned int mask = (1 << fls(max)) - 1; |
| 777 | unsigned int invert = mc->invert; |
| 778 | unsigned int val; |
| 779 | |
| 780 | if (reg != SND_SOC_NOPM) { |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 781 | soc_dapm_read(p->sink->dapm, reg, &val); |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 782 | /* |
| 783 | * The nth_path argument allows this function to know |
| 784 | * which path of a kcontrol it is setting the initial |
| 785 | * status for. Ideally this would support any number |
| 786 | * of paths and channels. But since kcontrols only come |
| 787 | * in mono and stereo variants, we are limited to 2 |
| 788 | * channels. |
| 789 | * |
| 790 | * The following code assumes for stereo controls the |
| 791 | * first path is the left channel, and all remaining |
| 792 | * paths are the right channel. |
| 793 | */ |
| 794 | if (snd_soc_volsw_is_stereo(mc) && nth_path > 0) { |
| 795 | if (reg != mc->rreg) |
| 796 | soc_dapm_read(p->sink->dapm, mc->rreg, &val); |
| 797 | val = (val >> mc->rshift) & mask; |
| 798 | } else { |
| 799 | val = (val >> shift) & mask; |
| 800 | } |
Lars-Peter Clausen | 234c0b8 | 2014-02-28 08:31:12 +0100 | [diff] [blame] | 801 | if (invert) |
| 802 | val = max - val; |
| 803 | p->connect = !!val; |
| 804 | } else { |
| 805 | p->connect = 0; |
| 806 | } |
| 807 | } |
| 808 | |
Mark Brown | 74b8f95 | 2009-06-06 11:26:15 +0100 | [diff] [blame] | 809 | /* connect mixer widget to its interconnecting audio paths */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 810 | static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 811 | struct snd_soc_dapm_path *path, const char *control_name) |
| 812 | { |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 813 | int i, nth_path = 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 814 | |
| 815 | /* search for mixer kcontrol */ |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 816 | for (i = 0; i < path->sink->num_kcontrols; i++) { |
| 817 | if (!strcmp(control_name, path->sink->kcontrol_news[i].name)) { |
| 818 | path->name = path->sink->kcontrol_news[i].name; |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 819 | dapm_set_mixer_path_status(path, i, nth_path++); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 820 | return 0; |
| 821 | } |
| 822 | } |
| 823 | return -ENODEV; |
| 824 | } |
| 825 | |
Stephen Warren | af46800 | 2011-04-28 17:38:01 -0600 | [diff] [blame] | 826 | static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm, |
Stephen Warren | 1007da0 | 2011-05-26 09:57:33 -0600 | [diff] [blame] | 827 | struct snd_soc_dapm_widget *kcontrolw, |
Stephen Warren | af46800 | 2011-04-28 17:38:01 -0600 | [diff] [blame] | 828 | const struct snd_kcontrol_new *kcontrol_new, |
| 829 | struct snd_kcontrol **kcontrol) |
| 830 | { |
| 831 | struct snd_soc_dapm_widget *w; |
| 832 | int i; |
| 833 | |
| 834 | *kcontrol = NULL; |
| 835 | |
| 836 | list_for_each_entry(w, &dapm->card->widgets, list) { |
Stephen Warren | 1007da0 | 2011-05-26 09:57:33 -0600 | [diff] [blame] | 837 | if (w == kcontrolw || w->dapm != kcontrolw->dapm) |
| 838 | continue; |
Stephen Warren | af46800 | 2011-04-28 17:38:01 -0600 | [diff] [blame] | 839 | for (i = 0; i < w->num_kcontrols; i++) { |
| 840 | if (&w->kcontrol_news[i] == kcontrol_new) { |
| 841 | if (w->kcontrols) |
| 842 | *kcontrol = w->kcontrols[i]; |
| 843 | return 1; |
| 844 | } |
| 845 | } |
| 846 | } |
| 847 | |
| 848 | return 0; |
| 849 | } |
| 850 | |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 851 | /* |
| 852 | * Determine if a kcontrol is shared. If it is, look it up. If it isn't, |
| 853 | * create it. Either way, add the widget into the control's widget list |
| 854 | */ |
Jeeja KP | 19a2557b | 2015-10-20 22:30:06 +0530 | [diff] [blame] | 855 | static int dapm_create_or_share_kcontrol(struct snd_soc_dapm_widget *w, |
Mark Brown | 946d92a | 2013-08-12 23:28:42 +0100 | [diff] [blame] | 856 | int kci) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 857 | { |
Lars-Peter Clausen | 4b80b8c | 2011-06-09 13:22:36 +0200 | [diff] [blame] | 858 | struct snd_soc_dapm_context *dapm = w->dapm; |
Mark Brown | 12ea2c7 | 2011-03-02 18:17:32 +0000 | [diff] [blame] | 859 | struct snd_card *card = dapm->card->snd_card; |
Mark Brown | efb7ac3 | 2011-03-08 17:23:24 +0000 | [diff] [blame] | 860 | const char *prefix; |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 861 | size_t prefix_len; |
| 862 | int shared; |
| 863 | struct snd_kcontrol *kcontrol; |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 864 | bool wname_in_long_name, kcname_in_long_name; |
Daniel Mack | e5092c9 | 2014-10-07 13:41:24 +0200 | [diff] [blame] | 865 | char *long_name = NULL; |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 866 | const char *name; |
Daniel Mack | e5092c9 | 2014-10-07 13:41:24 +0200 | [diff] [blame] | 867 | int ret = 0; |
Mark Brown | efb7ac3 | 2011-03-08 17:23:24 +0000 | [diff] [blame] | 868 | |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 869 | prefix = soc_dapm_prefix(dapm); |
Mark Brown | 3e5ff4d | 2011-03-09 11:33:09 +0000 | [diff] [blame] | 870 | if (prefix) |
| 871 | prefix_len = strlen(prefix) + 1; |
| 872 | else |
| 873 | prefix_len = 0; |
| 874 | |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 875 | shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[kci], |
| 876 | &kcontrol); |
| 877 | |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 878 | if (!kcontrol) { |
| 879 | if (shared) { |
| 880 | wname_in_long_name = false; |
| 881 | kcname_in_long_name = true; |
| 882 | } else { |
| 883 | switch (w->id) { |
| 884 | case snd_soc_dapm_switch: |
| 885 | case snd_soc_dapm_mixer: |
Jeeja KP | 19a2557b | 2015-10-20 22:30:06 +0530 | [diff] [blame] | 886 | case snd_soc_dapm_pga: |
Seppo Ingalsuo | 882c8b4a | 2019-04-30 18:11:34 -0500 | [diff] [blame] | 887 | case snd_soc_dapm_effect: |
Chen-Yu Tsai | a3930ed | 2016-08-27 19:28:00 +0800 | [diff] [blame] | 888 | case snd_soc_dapm_out_drv: |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 889 | wname_in_long_name = true; |
| 890 | kcname_in_long_name = true; |
| 891 | break; |
| 892 | case snd_soc_dapm_mixer_named_ctl: |
| 893 | wname_in_long_name = false; |
| 894 | kcname_in_long_name = true; |
| 895 | break; |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 896 | case snd_soc_dapm_demux: |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 897 | case snd_soc_dapm_mux: |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 898 | wname_in_long_name = true; |
| 899 | kcname_in_long_name = false; |
| 900 | break; |
| 901 | default: |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 902 | return -EINVAL; |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | if (wname_in_long_name && kcname_in_long_name) { |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 907 | /* |
| 908 | * The control will get a prefix from the control |
| 909 | * creation process but we're also using the same |
| 910 | * prefix for widgets so cut the prefix off the |
| 911 | * front of the widget name. |
| 912 | */ |
Lars-Peter Clausen | 2b58107 | 2013-05-14 11:05:32 +0200 | [diff] [blame] | 913 | long_name = kasprintf(GFP_KERNEL, "%s %s", |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 914 | w->name + prefix_len, |
| 915 | w->kcontrol_news[kci].name); |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 916 | if (long_name == NULL) |
Lars-Peter Clausen | 2b58107 | 2013-05-14 11:05:32 +0200 | [diff] [blame] | 917 | return -ENOMEM; |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 918 | |
| 919 | name = long_name; |
| 920 | } else if (wname_in_long_name) { |
| 921 | long_name = NULL; |
| 922 | name = w->name + prefix_len; |
| 923 | } else { |
| 924 | long_name = NULL; |
| 925 | name = w->kcontrol_news[kci].name; |
| 926 | } |
| 927 | |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 928 | kcontrol = snd_soc_cnew(&w->kcontrol_news[kci], NULL, name, |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 929 | prefix); |
Daniel Mack | e5092c9 | 2014-10-07 13:41:24 +0200 | [diff] [blame] | 930 | if (!kcontrol) { |
| 931 | ret = -ENOMEM; |
| 932 | goto exit_free; |
| 933 | } |
| 934 | |
Lars-Peter Clausen | 9356e9d | 2013-08-01 14:08:06 +0200 | [diff] [blame] | 935 | kcontrol->private_free = dapm_kcontrol_free; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 936 | |
Lars-Peter Clausen | 41d8002 | 2016-02-03 21:59:50 +0100 | [diff] [blame] | 937 | ret = dapm_kcontrol_data_alloc(w, kcontrol, name); |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 938 | if (ret) { |
| 939 | snd_ctl_free_one(kcontrol); |
Daniel Mack | e5092c9 | 2014-10-07 13:41:24 +0200 | [diff] [blame] | 940 | goto exit_free; |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 941 | } |
| 942 | |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 943 | ret = snd_ctl_add(card, kcontrol); |
| 944 | if (ret < 0) { |
| 945 | dev_err(dapm->dev, |
| 946 | "ASoC: failed to add widget %s dapm kcontrol %s: %d\n", |
| 947 | w->name, name, ret); |
Daniel Mack | e5092c9 | 2014-10-07 13:41:24 +0200 | [diff] [blame] | 948 | goto exit_free; |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 949 | } |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 950 | } |
| 951 | |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 952 | ret = dapm_kcontrol_add_widget(kcontrol, w); |
Daniel Mack | e5092c9 | 2014-10-07 13:41:24 +0200 | [diff] [blame] | 953 | if (ret == 0) |
| 954 | w->kcontrols[kci] = kcontrol; |
Lars-Peter Clausen | 2c75bdf | 2013-08-01 14:08:07 +0200 | [diff] [blame] | 955 | |
Daniel Mack | e5092c9 | 2014-10-07 13:41:24 +0200 | [diff] [blame] | 956 | exit_free: |
| 957 | kfree(long_name); |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 958 | |
Daniel Mack | e5092c9 | 2014-10-07 13:41:24 +0200 | [diff] [blame] | 959 | return ret; |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | /* create new dapm mixer control */ |
| 963 | static int dapm_new_mixer(struct snd_soc_dapm_widget *w) |
| 964 | { |
| 965 | int i, ret; |
| 966 | struct snd_soc_dapm_path *path; |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 967 | struct dapm_kcontrol_data *data; |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 968 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 969 | /* add kcontrol */ |
| 970 | for (i = 0; i < w->num_kcontrols; i++) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 971 | /* match name */ |
Lars-Peter Clausen | e63bfd4 | 2015-07-26 19:05:00 +0200 | [diff] [blame] | 972 | snd_soc_dapm_widget_for_each_source_path(w, path) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 973 | /* mixer/mux paths name must match control name */ |
Stephen Warren | 82cfecd | 2011-04-28 17:37:58 -0600 | [diff] [blame] | 974 | if (path->name != (char *)w->kcontrol_news[i].name) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 975 | continue; |
| 976 | |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 977 | if (!w->kcontrols[i]) { |
Jeeja KP | 19a2557b | 2015-10-20 22:30:06 +0530 | [diff] [blame] | 978 | ret = dapm_create_or_share_kcontrol(w, i); |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 979 | if (ret < 0) |
| 980 | return ret; |
Lars-Peter Clausen | 82cd876 | 2011-08-15 20:15:21 +0200 | [diff] [blame] | 981 | } |
| 982 | |
Mark Brown | 946d92a | 2013-08-12 23:28:42 +0100 | [diff] [blame] | 983 | dapm_kcontrol_add_path(w->kcontrols[i], path); |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 984 | |
| 985 | data = snd_kcontrol_chip(w->kcontrols[i]); |
| 986 | if (data->widget) |
| 987 | snd_soc_dapm_add_path(data->widget->dapm, |
| 988 | data->widget, |
| 989 | path->source, |
| 990 | NULL, NULL); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 991 | } |
| 992 | } |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 993 | |
| 994 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 995 | } |
| 996 | |
| 997 | /* create new dapm mux control */ |
Lars-Peter Clausen | 4b80b8c | 2011-06-09 13:22:36 +0200 | [diff] [blame] | 998 | static int dapm_new_mux(struct snd_soc_dapm_widget *w) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 999 | { |
Lars-Peter Clausen | 4b80b8c | 2011-06-09 13:22:36 +0200 | [diff] [blame] | 1000 | struct snd_soc_dapm_context *dapm = w->dapm; |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1001 | enum snd_soc_dapm_direction dir; |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 1002 | struct snd_soc_dapm_path *path; |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 1003 | const char *type; |
Stephen Warren | af46800 | 2011-04-28 17:38:01 -0600 | [diff] [blame] | 1004 | int ret; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1005 | |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 1006 | switch (w->id) { |
| 1007 | case snd_soc_dapm_mux: |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1008 | dir = SND_SOC_DAPM_DIR_OUT; |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 1009 | type = "mux"; |
| 1010 | break; |
| 1011 | case snd_soc_dapm_demux: |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1012 | dir = SND_SOC_DAPM_DIR_IN; |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 1013 | type = "demux"; |
| 1014 | break; |
| 1015 | default: |
| 1016 | return -EINVAL; |
| 1017 | } |
| 1018 | |
Stephen Warren | af46800 | 2011-04-28 17:38:01 -0600 | [diff] [blame] | 1019 | if (w->num_kcontrols != 1) { |
| 1020 | dev_err(dapm->dev, |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 1021 | "ASoC: %s %s has incorrect number of controls\n", type, |
Stephen Warren | af46800 | 2011-04-28 17:38:01 -0600 | [diff] [blame] | 1022 | w->name); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1023 | return -EINVAL; |
| 1024 | } |
| 1025 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1026 | if (list_empty(&w->edges[dir])) { |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 1027 | dev_err(dapm->dev, "ASoC: %s %s has no paths\n", type, w->name); |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 1028 | return -EINVAL; |
Stephen Warren | af46800 | 2011-04-28 17:38:01 -0600 | [diff] [blame] | 1029 | } |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1030 | |
Jeeja KP | 19a2557b | 2015-10-20 22:30:06 +0530 | [diff] [blame] | 1031 | ret = dapm_create_or_share_kcontrol(w, 0); |
Stephen Warren | 85762e7 | 2013-03-29 15:40:10 -0600 | [diff] [blame] | 1032 | if (ret < 0) |
| 1033 | return ret; |
Stephen Warren | fad5988 | 2011-04-28 17:37:59 -0600 | [diff] [blame] | 1034 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1035 | snd_soc_dapm_widget_for_each_path(w, dir, path) { |
| 1036 | if (path->name) |
| 1037 | dapm_kcontrol_add_path(w->kcontrols[0], path); |
Lars-Peter Clausen | 98407ef | 2014-10-25 17:41:57 +0200 | [diff] [blame] | 1038 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1039 | |
Stephen Warren | af46800 | 2011-04-28 17:38:01 -0600 | [diff] [blame] | 1040 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | /* create new dapm volume control */ |
Lars-Peter Clausen | 4b80b8c | 2011-06-09 13:22:36 +0200 | [diff] [blame] | 1044 | static int dapm_new_pga(struct snd_soc_dapm_widget *w) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1045 | { |
Jeeja KP | 19a2557b | 2015-10-20 22:30:06 +0530 | [diff] [blame] | 1046 | int i, ret; |
| 1047 | |
| 1048 | for (i = 0; i < w->num_kcontrols; i++) { |
| 1049 | ret = dapm_create_or_share_kcontrol(w, i); |
| 1050 | if (ret < 0) |
| 1051 | return ret; |
| 1052 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1053 | |
Mark Brown | a6c6573 | 2010-03-03 17:45:21 +0000 | [diff] [blame] | 1054 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1055 | } |
| 1056 | |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 1057 | /* create new dapm dai link control */ |
| 1058 | static int dapm_new_dai_link(struct snd_soc_dapm_widget *w) |
| 1059 | { |
| 1060 | int i, ret; |
| 1061 | struct snd_kcontrol *kcontrol; |
| 1062 | struct snd_soc_dapm_context *dapm = w->dapm; |
| 1063 | struct snd_card *card = dapm->card->snd_card; |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 1064 | struct snd_soc_pcm_runtime *rtd = w->priv; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 1065 | |
| 1066 | /* create control for links with > 1 config */ |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 1067 | if (rtd->dai_link->num_params <= 1) |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 1068 | return 0; |
| 1069 | |
| 1070 | /* add kcontrol */ |
| 1071 | for (i = 0; i < w->num_kcontrols; i++) { |
| 1072 | kcontrol = snd_soc_cnew(&w->kcontrol_news[i], w, |
| 1073 | w->name, NULL); |
| 1074 | ret = snd_ctl_add(card, kcontrol); |
| 1075 | if (ret < 0) { |
| 1076 | dev_err(dapm->dev, |
| 1077 | "ASoC: failed to add widget %s dapm kcontrol %s: %d\n", |
| 1078 | w->name, w->kcontrol_news[i].name, ret); |
| 1079 | return ret; |
| 1080 | } |
| 1081 | kcontrol->private_data = w; |
| 1082 | w->kcontrols[i] = kcontrol; |
| 1083 | } |
| 1084 | |
| 1085 | return 0; |
| 1086 | } |
| 1087 | |
Mark Brown | 9949788b | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 1088 | /* We implement power down on suspend by checking the power state of |
| 1089 | * the ALSA card - when we are suspending the ALSA state for the card |
| 1090 | * is set to D3. |
| 1091 | */ |
| 1092 | static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget) |
| 1093 | { |
Mark Brown | 12ea2c7 | 2011-03-02 18:17:32 +0000 | [diff] [blame] | 1094 | int level = snd_power_get_state(widget->dapm->card->snd_card); |
Mark Brown | 9949788b | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 1095 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1096 | switch (level) { |
Mark Brown | 9949788b | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 1097 | case SNDRV_CTL_POWER_D3hot: |
| 1098 | case SNDRV_CTL_POWER_D3cold: |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 1099 | if (widget->ignore_suspend) |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 1100 | dev_dbg(widget->dapm->dev, "ASoC: %s ignoring suspend\n", |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 1101 | widget->name); |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 1102 | return widget->ignore_suspend; |
Mark Brown | 9949788b | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 1103 | default: |
| 1104 | return 1; |
| 1105 | } |
| 1106 | } |
| 1107 | |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1108 | static int dapm_widget_list_create(struct snd_soc_dapm_widget_list **list, |
| 1109 | struct list_head *widgets) |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1110 | { |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1111 | struct snd_soc_dapm_widget *w; |
| 1112 | struct list_head *it; |
| 1113 | unsigned int size = 0; |
| 1114 | unsigned int i = 0; |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1115 | |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1116 | list_for_each(it, widgets) |
| 1117 | size++; |
| 1118 | |
Kees Cook | acafe7e | 2018-05-08 13:45:50 -0700 | [diff] [blame] | 1119 | *list = kzalloc(struct_size(*list, widgets, size), GFP_KERNEL); |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1120 | if (*list == NULL) |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1121 | return -ENOMEM; |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1122 | |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1123 | list_for_each_entry(w, widgets, work_list) |
| 1124 | (*list)->widgets[i++] = w; |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1125 | |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1126 | (*list)->num_widgets = i; |
| 1127 | |
| 1128 | return 0; |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1129 | } |
| 1130 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1131 | /* |
Szymon Mielczarek | 872f3ac | 2019-08-09 10:40:34 +0200 | [diff] [blame] | 1132 | * Recursively reset the cached number of inputs or outputs for the specified |
| 1133 | * widget and all widgets that can be reached via incoming or outcoming paths |
| 1134 | * from the widget. |
| 1135 | */ |
| 1136 | static void invalidate_paths_ep(struct snd_soc_dapm_widget *widget, |
| 1137 | enum snd_soc_dapm_direction dir) |
| 1138 | { |
| 1139 | enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir); |
| 1140 | struct snd_soc_dapm_path *path; |
| 1141 | |
| 1142 | widget->endpoints[dir] = -1; |
| 1143 | |
| 1144 | snd_soc_dapm_widget_for_each_path(widget, rdir, path) { |
| 1145 | if (path->weak || path->is_supply) |
| 1146 | continue; |
| 1147 | |
| 1148 | if (path->walking) |
| 1149 | return; |
| 1150 | |
| 1151 | if (path->connect) { |
| 1152 | path->walking = 1; |
| 1153 | invalidate_paths_ep(path->node[dir], dir); |
| 1154 | path->walking = 0; |
| 1155 | } |
| 1156 | } |
| 1157 | } |
| 1158 | |
| 1159 | /* |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1160 | * Common implementation for is_connected_output_ep() and |
| 1161 | * is_connected_input_ep(). The function is inlined since the combined size of |
| 1162 | * the two specialized functions is only marginally larger then the size of the |
| 1163 | * generic function and at the same time the fast path of the specialized |
| 1164 | * functions is significantly smaller than the generic function. |
| 1165 | */ |
| 1166 | static __always_inline int is_connected_ep(struct snd_soc_dapm_widget *widget, |
| 1167 | struct list_head *list, enum snd_soc_dapm_direction dir, |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1168 | int (*fn)(struct snd_soc_dapm_widget *, struct list_head *, |
| 1169 | bool (*custom_stop_condition)(struct snd_soc_dapm_widget *, |
| 1170 | enum snd_soc_dapm_direction)), |
| 1171 | bool (*custom_stop_condition)(struct snd_soc_dapm_widget *, |
| 1172 | enum snd_soc_dapm_direction)) |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1173 | { |
| 1174 | enum snd_soc_dapm_direction rdir = SND_SOC_DAPM_DIR_REVERSE(dir); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1175 | struct snd_soc_dapm_path *path; |
| 1176 | int con = 0; |
| 1177 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1178 | if (widget->endpoints[dir] >= 0) |
| 1179 | return widget->endpoints[dir]; |
Mark Brown | 024dc07 | 2011-10-09 11:52:05 +0100 | [diff] [blame] | 1180 | |
Mark Brown | de02d07 | 2011-09-20 21:43:24 +0100 | [diff] [blame] | 1181 | DAPM_UPDATE_STAT(widget, path_checks); |
| 1182 | |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1183 | /* do we need to add this widget to the list ? */ |
| 1184 | if (list) |
| 1185 | list_add_tail(&widget->work_list, list); |
| 1186 | |
Jeeja KP | 0946497 | 2016-06-15 11:16:55 +0530 | [diff] [blame] | 1187 | if (custom_stop_condition && custom_stop_condition(widget, dir)) { |
Charles Keepax | 8dd26df | 2019-07-18 09:43:33 +0100 | [diff] [blame] | 1188 | list = NULL; |
| 1189 | custom_stop_condition = NULL; |
Jeeja KP | 0946497 | 2016-06-15 11:16:55 +0530 | [diff] [blame] | 1190 | } |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1191 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1192 | if ((widget->is_ep & SND_SOC_DAPM_DIR_TO_EP(dir)) && widget->connected) { |
| 1193 | widget->endpoints[dir] = snd_soc_dapm_suspend_check(widget); |
| 1194 | return widget->endpoints[dir]; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1195 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1196 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1197 | snd_soc_dapm_widget_for_each_path(widget, rdir, path) { |
Mark Brown | e56235e0 | 2011-09-21 18:19:14 +0100 | [diff] [blame] | 1198 | DAPM_UPDATE_STAT(widget, neighbour_checks); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1199 | |
Lars-Peter Clausen | c1862c8 | 2014-10-25 17:42:00 +0200 | [diff] [blame] | 1200 | if (path->weak || path->is_supply) |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 1201 | continue; |
| 1202 | |
Mark Brown | 8af294b | 2013-02-22 17:48:15 +0000 | [diff] [blame] | 1203 | if (path->walking) |
| 1204 | return 1; |
| 1205 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1206 | trace_snd_soc_dapm_path(widget, dir, path); |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1207 | |
Lars-Peter Clausen | 7ddd4cd | 2014-10-20 19:36:34 +0200 | [diff] [blame] | 1208 | if (path->connect) { |
Mark Brown | 8af294b | 2013-02-22 17:48:15 +0000 | [diff] [blame] | 1209 | path->walking = 1; |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1210 | con += fn(path->node[dir], list, custom_stop_condition); |
Mark Brown | 8af294b | 2013-02-22 17:48:15 +0000 | [diff] [blame] | 1211 | path->walking = 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1212 | } |
| 1213 | } |
| 1214 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1215 | widget->endpoints[dir] = con; |
Mark Brown | 024dc07 | 2011-10-09 11:52:05 +0100 | [diff] [blame] | 1216 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1217 | return con; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1218 | } |
| 1219 | |
| 1220 | /* |
| 1221 | * Recursively check for a completed path to an active or physically connected |
| 1222 | * output widget. Returns number of complete paths. |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1223 | * |
| 1224 | * Optionally, can be supplied with a function acting as a stopping condition. |
| 1225 | * This function takes the dapm widget currently being examined and the walk |
Charles Keepax | 8dd26df | 2019-07-18 09:43:33 +0100 | [diff] [blame] | 1226 | * direction as an arguments, it should return true if widgets from that point |
| 1227 | * in the graph onwards should not be added to the widget list. |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1228 | */ |
| 1229 | static int is_connected_output_ep(struct snd_soc_dapm_widget *widget, |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1230 | struct list_head *list, |
| 1231 | bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i, |
| 1232 | enum snd_soc_dapm_direction)) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1233 | { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1234 | return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_OUT, |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1235 | is_connected_output_ep, custom_stop_condition); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | /* |
| 1239 | * Recursively check for a completed path to an active or physically connected |
| 1240 | * input widget. Returns number of complete paths. |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1241 | * |
| 1242 | * Optionally, can be supplied with a function acting as a stopping condition. |
| 1243 | * This function takes the dapm widget currently being examined and the walk |
| 1244 | * direction as an arguments, it should return true if the walk should be |
| 1245 | * stopped and false otherwise. |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1246 | */ |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1247 | static int is_connected_input_ep(struct snd_soc_dapm_widget *widget, |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1248 | struct list_head *list, |
| 1249 | bool (*custom_stop_condition)(struct snd_soc_dapm_widget *i, |
| 1250 | enum snd_soc_dapm_direction)) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1251 | { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 1252 | return is_connected_ep(widget, list, SND_SOC_DAPM_DIR_IN, |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1253 | is_connected_input_ep, custom_stop_condition); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1254 | } |
| 1255 | |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1256 | /** |
| 1257 | * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets. |
| 1258 | * @dai: the soc DAI. |
| 1259 | * @stream: stream direction. |
| 1260 | * @list: list of active widgets for this stream. |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1261 | * @custom_stop_condition: (optional) a function meant to stop the widget graph |
| 1262 | * walk based on custom logic. |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1263 | * |
Peter Meerwald-Stadler | c804600 | 2016-08-16 16:56:17 +0200 | [diff] [blame] | 1264 | * Queries DAPM graph as to whether a valid audio stream path exists for |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1265 | * the initial stream specified by name. This takes into account |
| 1266 | * current mixer and mux kcontrol settings. Creates list of valid widgets. |
| 1267 | * |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1268 | * Optionally, can be supplied with a function acting as a stopping condition. |
| 1269 | * This function takes the dapm widget currently being examined and the walk |
| 1270 | * direction as an arguments, it should return true if the walk should be |
| 1271 | * stopped and false otherwise. |
| 1272 | * |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1273 | * Returns the number of valid paths or negative error. |
| 1274 | */ |
| 1275 | int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream, |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1276 | struct snd_soc_dapm_widget_list **list, |
| 1277 | bool (*custom_stop_condition)(struct snd_soc_dapm_widget *, |
| 1278 | enum snd_soc_dapm_direction)) |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1279 | { |
Lars-Peter Clausen | 313665b | 2014-11-04 11:30:58 +0100 | [diff] [blame] | 1280 | struct snd_soc_card *card = dai->component->card; |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 1281 | struct snd_soc_dapm_widget *w; |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1282 | LIST_HEAD(widgets); |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1283 | int paths; |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1284 | int ret; |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1285 | |
| 1286 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 1287 | |
Szymon Mielczarek | 872f3ac | 2019-08-09 10:40:34 +0200 | [diff] [blame] | 1288 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 1289 | w = dai->playback_widget; |
| 1290 | invalidate_paths_ep(w, SND_SOC_DAPM_DIR_OUT); |
| 1291 | paths = is_connected_output_ep(w, &widgets, |
| 1292 | custom_stop_condition); |
| 1293 | } else { |
| 1294 | w = dai->capture_widget; |
| 1295 | invalidate_paths_ep(w, SND_SOC_DAPM_DIR_IN); |
| 1296 | paths = is_connected_input_ep(w, &widgets, |
| 1297 | custom_stop_condition); |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 1298 | } |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1299 | |
Lars-Peter Clausen | 1ce43ac | 2015-07-26 19:04:59 +0200 | [diff] [blame] | 1300 | /* Drop starting point */ |
| 1301 | list_del(widgets.next); |
| 1302 | |
| 1303 | ret = dapm_widget_list_create(list, &widgets); |
| 1304 | if (ret) |
Lars-Peter Clausen | 30abbe7 | 2015-08-11 21:37:59 +0200 | [diff] [blame] | 1305 | paths = ret; |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1306 | |
| 1307 | trace_snd_soc_dapm_connected(paths, stream); |
Liam Girdwood | ec2e303 | 2012-04-18 11:41:11 +0100 | [diff] [blame] | 1308 | mutex_unlock(&card->dapm_mutex); |
| 1309 | |
| 1310 | return paths; |
| 1311 | } |
| 1312 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1313 | /* |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 1314 | * Handler for regulator supply widget. |
| 1315 | */ |
| 1316 | int dapm_regulator_event(struct snd_soc_dapm_widget *w, |
| 1317 | struct snd_kcontrol *kcontrol, int event) |
| 1318 | { |
Mark Brown | c05b84d | 2012-09-07 12:57:11 +0800 | [diff] [blame] | 1319 | int ret; |
| 1320 | |
Mark Brown | eb270e9 | 2013-10-09 13:52:52 +0100 | [diff] [blame] | 1321 | soc_dapm_async_complete(w->dapm); |
| 1322 | |
Mark Brown | c05b84d | 2012-09-07 12:57:11 +0800 | [diff] [blame] | 1323 | if (SND_SOC_DAPM_EVENT_ON(event)) { |
Lars-Peter Clausen | de9ba98 | 2013-07-29 17:14:01 +0200 | [diff] [blame] | 1324 | if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) { |
Mark Brown | 8784c77 | 2013-01-10 19:33:47 +0000 | [diff] [blame] | 1325 | ret = regulator_allow_bypass(w->regulator, false); |
Mark Brown | c05b84d | 2012-09-07 12:57:11 +0800 | [diff] [blame] | 1326 | if (ret != 0) |
| 1327 | dev_warn(w->dapm->dev, |
Charles Keepax | 30686c3 | 2014-02-18 16:05:27 +0000 | [diff] [blame] | 1328 | "ASoC: Failed to unbypass %s: %d\n", |
Mark Brown | c05b84d | 2012-09-07 12:57:11 +0800 | [diff] [blame] | 1329 | w->name, ret); |
| 1330 | } |
| 1331 | |
Liam Girdwood | a3cc056 | 2012-03-09 17:20:16 +0000 | [diff] [blame] | 1332 | return regulator_enable(w->regulator); |
Mark Brown | c05b84d | 2012-09-07 12:57:11 +0800 | [diff] [blame] | 1333 | } else { |
Lars-Peter Clausen | de9ba98 | 2013-07-29 17:14:01 +0200 | [diff] [blame] | 1334 | if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) { |
Mark Brown | 8784c77 | 2013-01-10 19:33:47 +0000 | [diff] [blame] | 1335 | ret = regulator_allow_bypass(w->regulator, true); |
Mark Brown | c05b84d | 2012-09-07 12:57:11 +0800 | [diff] [blame] | 1336 | if (ret != 0) |
| 1337 | dev_warn(w->dapm->dev, |
Charles Keepax | 30686c3 | 2014-02-18 16:05:27 +0000 | [diff] [blame] | 1338 | "ASoC: Failed to bypass %s: %d\n", |
Mark Brown | c05b84d | 2012-09-07 12:57:11 +0800 | [diff] [blame] | 1339 | w->name, ret); |
| 1340 | } |
| 1341 | |
Liam Girdwood | a3cc056 | 2012-03-09 17:20:16 +0000 | [diff] [blame] | 1342 | return regulator_disable_deferred(w->regulator, w->shift); |
Mark Brown | c05b84d | 2012-09-07 12:57:11 +0800 | [diff] [blame] | 1343 | } |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 1344 | } |
| 1345 | EXPORT_SYMBOL_GPL(dapm_regulator_event); |
| 1346 | |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 1347 | /* |
Srinivas Kandagatla | 5b2d15b | 2018-03-10 02:37:27 +0000 | [diff] [blame] | 1348 | * Handler for pinctrl widget. |
| 1349 | */ |
| 1350 | int dapm_pinctrl_event(struct snd_soc_dapm_widget *w, |
| 1351 | struct snd_kcontrol *kcontrol, int event) |
| 1352 | { |
| 1353 | struct snd_soc_dapm_pinctrl_priv *priv = w->priv; |
| 1354 | struct pinctrl *p = w->pinctrl; |
| 1355 | struct pinctrl_state *s; |
| 1356 | |
| 1357 | if (!p || !priv) |
| 1358 | return -EIO; |
| 1359 | |
| 1360 | if (SND_SOC_DAPM_EVENT_ON(event)) |
| 1361 | s = pinctrl_lookup_state(p, priv->active_state); |
| 1362 | else |
| 1363 | s = pinctrl_lookup_state(p, priv->sleep_state); |
| 1364 | |
| 1365 | if (IS_ERR(s)) |
| 1366 | return PTR_ERR(s); |
| 1367 | |
| 1368 | return pinctrl_select_state(p, s); |
| 1369 | } |
| 1370 | EXPORT_SYMBOL_GPL(dapm_pinctrl_event); |
| 1371 | |
| 1372 | /* |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 1373 | * Handler for clock supply widget. |
| 1374 | */ |
| 1375 | int dapm_clock_event(struct snd_soc_dapm_widget *w, |
| 1376 | struct snd_kcontrol *kcontrol, int event) |
| 1377 | { |
| 1378 | if (!w->clk) |
| 1379 | return -EIO; |
| 1380 | |
Mark Brown | eb270e9 | 2013-10-09 13:52:52 +0100 | [diff] [blame] | 1381 | soc_dapm_async_complete(w->dapm); |
| 1382 | |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 1383 | if (SND_SOC_DAPM_EVENT_ON(event)) { |
Fabio Baltieri | 37c1b92 | 2013-04-30 16:09:52 +0200 | [diff] [blame] | 1384 | return clk_prepare_enable(w->clk); |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 1385 | } else { |
Fabio Baltieri | 37c1b92 | 2013-04-30 16:09:52 +0200 | [diff] [blame] | 1386 | clk_disable_unprepare(w->clk); |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 1387 | return 0; |
| 1388 | } |
Charles Keepax | d78b1e43 | 2018-08-28 14:35:02 +0100 | [diff] [blame] | 1389 | |
Marek Belisko | 98b3cf1 | 2012-07-12 23:00:16 +0200 | [diff] [blame] | 1390 | return 0; |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 1391 | } |
| 1392 | EXPORT_SYMBOL_GPL(dapm_clock_event); |
| 1393 | |
Mark Brown | d805002b | 2011-09-28 18:28:23 +0100 | [diff] [blame] | 1394 | static int dapm_widget_power_check(struct snd_soc_dapm_widget *w) |
| 1395 | { |
Mark Brown | 9b8a83b | 2011-10-04 22:15:59 +0100 | [diff] [blame] | 1396 | if (w->power_checked) |
| 1397 | return w->new_power; |
| 1398 | |
Mark Brown | d805002b | 2011-09-28 18:28:23 +0100 | [diff] [blame] | 1399 | if (w->force) |
Mark Brown | 9b8a83b | 2011-10-04 22:15:59 +0100 | [diff] [blame] | 1400 | w->new_power = 1; |
Mark Brown | d805002b | 2011-09-28 18:28:23 +0100 | [diff] [blame] | 1401 | else |
Mark Brown | 9b8a83b | 2011-10-04 22:15:59 +0100 | [diff] [blame] | 1402 | w->new_power = w->power_check(w); |
| 1403 | |
| 1404 | w->power_checked = true; |
| 1405 | |
| 1406 | return w->new_power; |
Mark Brown | d805002b | 2011-09-28 18:28:23 +0100 | [diff] [blame] | 1407 | } |
| 1408 | |
Peter Meerwald-Stadler | c804600 | 2016-08-16 16:56:17 +0200 | [diff] [blame] | 1409 | /* Generic check to see if a widget should be powered. */ |
Mark Brown | cd0f2d4 | 2009-04-20 16:56:59 +0100 | [diff] [blame] | 1410 | static int dapm_generic_check_power(struct snd_soc_dapm_widget *w) |
| 1411 | { |
| 1412 | int in, out; |
| 1413 | |
Mark Brown | de02d07 | 2011-09-20 21:43:24 +0100 | [diff] [blame] | 1414 | DAPM_UPDATE_STAT(w, power_checks); |
| 1415 | |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 1416 | in = is_connected_input_ep(w, NULL, NULL); |
| 1417 | out = is_connected_output_ep(w, NULL, NULL); |
Mark Brown | cd0f2d4 | 2009-04-20 16:56:59 +0100 | [diff] [blame] | 1418 | return out != 0 && in != 0; |
| 1419 | } |
| 1420 | |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 1421 | /* Check to see if a power supply is needed */ |
| 1422 | static int dapm_supply_check_power(struct snd_soc_dapm_widget *w) |
| 1423 | { |
| 1424 | struct snd_soc_dapm_path *path; |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 1425 | |
Mark Brown | de02d07 | 2011-09-20 21:43:24 +0100 | [diff] [blame] | 1426 | DAPM_UPDATE_STAT(w, power_checks); |
| 1427 | |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 1428 | /* Check if one of our outputs is connected */ |
Lars-Peter Clausen | e63bfd4 | 2015-07-26 19:05:00 +0200 | [diff] [blame] | 1429 | snd_soc_dapm_widget_for_each_sink_path(w, path) { |
Mark Brown | a8fdac8 | 2011-09-28 18:20:26 +0100 | [diff] [blame] | 1430 | DAPM_UPDATE_STAT(w, neighbour_checks); |
| 1431 | |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 1432 | if (path->weak) |
| 1433 | continue; |
| 1434 | |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 1435 | if (path->connected && |
| 1436 | !path->connected(path->source, path->sink)) |
| 1437 | continue; |
| 1438 | |
Mark Brown | f68d7e1 | 2011-10-04 22:57:50 +0100 | [diff] [blame] | 1439 | if (dapm_widget_power_check(path->sink)) |
| 1440 | return 1; |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 1441 | } |
| 1442 | |
Mark Brown | f68d7e1 | 2011-10-04 22:57:50 +0100 | [diff] [blame] | 1443 | return 0; |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 1444 | } |
| 1445 | |
Mark Brown | 35c64bc | 2011-09-28 18:23:53 +0100 | [diff] [blame] | 1446 | static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w) |
| 1447 | { |
Charles Keepax | 20bb018 | 2015-12-02 10:22:16 +0000 | [diff] [blame] | 1448 | return w->connected; |
Mark Brown | 35c64bc | 2011-09-28 18:23:53 +0100 | [diff] [blame] | 1449 | } |
| 1450 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 1451 | static int dapm_seq_compare(struct snd_soc_dapm_widget *a, |
| 1452 | struct snd_soc_dapm_widget *b, |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1453 | bool power_up) |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1454 | { |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1455 | int *sort; |
| 1456 | |
Pierre-Louis Bossart | f13d4b5 | 2019-02-05 10:22:28 -0600 | [diff] [blame] | 1457 | BUILD_BUG_ON(ARRAY_SIZE(dapm_up_seq) != SND_SOC_DAPM_TYPE_COUNT); |
| 1458 | BUILD_BUG_ON(ARRAY_SIZE(dapm_down_seq) != SND_SOC_DAPM_TYPE_COUNT); |
| 1459 | |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1460 | if (power_up) |
| 1461 | sort = dapm_up_seq; |
| 1462 | else |
| 1463 | sort = dapm_down_seq; |
| 1464 | |
Pierre-Louis Bossart | f13d4b5 | 2019-02-05 10:22:28 -0600 | [diff] [blame] | 1465 | WARN_ONCE(sort[a->id] == 0, "offset a->id %d not initialized\n", a->id); |
| 1466 | WARN_ONCE(sort[b->id] == 0, "offset b->id %d not initialized\n", b->id); |
| 1467 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 1468 | if (sort[a->id] != sort[b->id]) |
| 1469 | return sort[a->id] - sort[b->id]; |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 1470 | if (a->subseq != b->subseq) { |
| 1471 | if (power_up) |
| 1472 | return a->subseq - b->subseq; |
| 1473 | else |
| 1474 | return b->subseq - a->subseq; |
| 1475 | } |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1476 | if (a->reg != b->reg) |
| 1477 | return a->reg - b->reg; |
Mark Brown | 84dab56 | 2010-11-12 15:28:42 +0000 | [diff] [blame] | 1478 | if (a->dapm != b->dapm) |
| 1479 | return (unsigned long)a->dapm - (unsigned long)b->dapm; |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1480 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 1481 | return 0; |
| 1482 | } |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1483 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 1484 | /* Insert a widget in order into a DAPM power sequence. */ |
| 1485 | static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget, |
| 1486 | struct list_head *list, |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1487 | bool power_up) |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 1488 | { |
| 1489 | struct snd_soc_dapm_widget *w; |
| 1490 | |
| 1491 | list_for_each_entry(w, list, power_list) |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1492 | if (dapm_seq_compare(new_widget, w, power_up) < 0) { |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 1493 | list_add_tail(&new_widget->power_list, &w->power_list); |
| 1494 | return; |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1495 | } |
Mark Brown | 6ea31b9 | 2009-04-20 17:15:41 +0100 | [diff] [blame] | 1496 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 1497 | list_add_tail(&new_widget->power_list, list); |
| 1498 | } |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1499 | |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1500 | static void dapm_seq_check_event(struct snd_soc_card *card, |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1501 | struct snd_soc_dapm_widget *w, int event) |
| 1502 | { |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1503 | const char *ev_name; |
| 1504 | int power, ret; |
| 1505 | |
| 1506 | switch (event) { |
| 1507 | case SND_SOC_DAPM_PRE_PMU: |
| 1508 | ev_name = "PRE_PMU"; |
| 1509 | power = 1; |
| 1510 | break; |
| 1511 | case SND_SOC_DAPM_POST_PMU: |
| 1512 | ev_name = "POST_PMU"; |
| 1513 | power = 1; |
| 1514 | break; |
| 1515 | case SND_SOC_DAPM_PRE_PMD: |
| 1516 | ev_name = "PRE_PMD"; |
| 1517 | power = 0; |
| 1518 | break; |
| 1519 | case SND_SOC_DAPM_POST_PMD: |
| 1520 | ev_name = "POST_PMD"; |
| 1521 | power = 0; |
| 1522 | break; |
Mark Brown | 8011412 | 2013-02-25 15:14:19 +0000 | [diff] [blame] | 1523 | case SND_SOC_DAPM_WILL_PMU: |
| 1524 | ev_name = "WILL_PMU"; |
| 1525 | power = 1; |
| 1526 | break; |
| 1527 | case SND_SOC_DAPM_WILL_PMD: |
| 1528 | ev_name = "WILL_PMD"; |
| 1529 | power = 0; |
| 1530 | break; |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1531 | default: |
Takashi Iwai | a6ed060 | 2013-11-06 11:07:19 +0100 | [diff] [blame] | 1532 | WARN(1, "Unknown event %d\n", event); |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1533 | return; |
| 1534 | } |
| 1535 | |
Lars-Peter Clausen | 39eb5fd | 2013-07-29 17:14:03 +0200 | [diff] [blame] | 1536 | if (w->new_power != power) |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1537 | return; |
| 1538 | |
| 1539 | if (w->event && (w->event_flags & event)) { |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1540 | pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n", |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1541 | w->name, ev_name); |
Mark Brown | eb270e9 | 2013-10-09 13:52:52 +0100 | [diff] [blame] | 1542 | soc_dapm_async_complete(w->dapm); |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 1543 | trace_snd_soc_dapm_widget_event_start(w, event); |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1544 | ret = w->event(w, NULL, event); |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 1545 | trace_snd_soc_dapm_widget_event_done(w, event); |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1546 | if (ret < 0) |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1547 | dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n", |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1548 | ev_name, w->name, ret); |
| 1549 | } |
| 1550 | } |
| 1551 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1552 | /* Apply the coalesced changes from a DAPM sequence */ |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1553 | static void dapm_seq_run_coalesced(struct snd_soc_card *card, |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1554 | struct list_head *pending) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1555 | { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 1556 | struct snd_soc_dapm_context *dapm; |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1557 | struct snd_soc_dapm_widget *w; |
Lars-Peter Clausen | de9ba98 | 2013-07-29 17:14:01 +0200 | [diff] [blame] | 1558 | int reg; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1559 | unsigned int value = 0; |
| 1560 | unsigned int mask = 0; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1561 | |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 1562 | w = list_first_entry(pending, struct snd_soc_dapm_widget, power_list); |
| 1563 | reg = w->reg; |
| 1564 | dapm = w->dapm; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1565 | |
| 1566 | list_for_each_entry(w, pending, power_list) { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 1567 | WARN_ON(reg != w->reg || dapm != w->dapm); |
Lars-Peter Clausen | 39eb5fd | 2013-07-29 17:14:03 +0200 | [diff] [blame] | 1568 | w->power = w->new_power; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1569 | |
Lars-Peter Clausen | de9ba98 | 2013-07-29 17:14:01 +0200 | [diff] [blame] | 1570 | mask |= w->mask << w->shift; |
| 1571 | if (w->power) |
| 1572 | value |= w->on_val << w->shift; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1573 | else |
Lars-Peter Clausen | de9ba98 | 2013-07-29 17:14:01 +0200 | [diff] [blame] | 1574 | value |= w->off_val << w->shift; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1575 | |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 1576 | pop_dbg(dapm->dev, card->pop_time, |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1577 | "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n", |
| 1578 | w->name, reg, value, mask); |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 1579 | |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 1580 | /* Check for events */ |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1581 | dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU); |
| 1582 | dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1583 | } |
| 1584 | |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 1585 | if (reg >= 0) { |
Mark Brown | 29376bc | 2011-06-19 13:49:28 +0100 | [diff] [blame] | 1586 | /* Any widget will do, they should all be updating the |
| 1587 | * same register. |
| 1588 | */ |
Mark Brown | 29376bc | 2011-06-19 13:49:28 +0100 | [diff] [blame] | 1589 | |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 1590 | pop_dbg(dapm->dev, card->pop_time, |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 1591 | "pop test : Applying 0x%x/0x%x to %x in %dms\n", |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 1592 | value, mask, reg, card->pop_time); |
| 1593 | pop_wait(card->pop_time); |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 1594 | soc_dapm_update_bits(dapm, reg, mask, value); |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 1595 | } |
| 1596 | |
| 1597 | list_for_each_entry(w, pending, power_list) { |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1598 | dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU); |
| 1599 | dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD); |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1600 | } |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1601 | } |
| 1602 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1603 | /* Apply a DAPM power sequence. |
| 1604 | * |
| 1605 | * We walk over a pre-sorted list of widgets to apply power to. In |
| 1606 | * order to minimise the number of writes to the device required |
| 1607 | * multiple widgets will be updated in a single write where possible. |
| 1608 | * Currently anything that requires more than a single write is not |
| 1609 | * handled. |
| 1610 | */ |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1611 | static void dapm_seq_run(struct snd_soc_card *card, |
| 1612 | struct list_head *list, int event, bool power_up) |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1613 | { |
| 1614 | struct snd_soc_dapm_widget *w, *n; |
Mark Brown | eb270e9 | 2013-10-09 13:52:52 +0100 | [diff] [blame] | 1615 | struct snd_soc_dapm_context *d; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1616 | LIST_HEAD(pending); |
| 1617 | int cur_sort = -1; |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 1618 | int cur_subseq = -1; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1619 | int cur_reg = SND_SOC_NOPM; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1620 | struct snd_soc_dapm_context *cur_dapm = NULL; |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 1621 | int ret, i; |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1622 | int *sort; |
| 1623 | |
| 1624 | if (power_up) |
| 1625 | sort = dapm_up_seq; |
| 1626 | else |
| 1627 | sort = dapm_down_seq; |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1628 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1629 | list_for_each_entry_safe(w, n, list, power_list) { |
| 1630 | ret = 0; |
| 1631 | |
| 1632 | /* Do we need to apply any queued changes? */ |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1633 | if (sort[w->id] != cur_sort || w->reg != cur_reg || |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 1634 | w->dapm != cur_dapm || w->subseq != cur_subseq) { |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1635 | if (!list_empty(&pending)) |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1636 | dapm_seq_run_coalesced(card, &pending); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1637 | |
Kuninori Morimoto | 9d415fb | 2019-07-26 13:51:35 +0900 | [diff] [blame] | 1638 | if (cur_dapm && cur_dapm->component) { |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 1639 | for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++) |
| 1640 | if (sort[i] == cur_sort) |
Kuninori Morimoto | 9d415fb | 2019-07-26 13:51:35 +0900 | [diff] [blame] | 1641 | snd_soc_component_seq_notifier( |
| 1642 | cur_dapm->component, |
| 1643 | i, cur_subseq); |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 1644 | } |
| 1645 | |
Mark Brown | eb270e9 | 2013-10-09 13:52:52 +0100 | [diff] [blame] | 1646 | if (cur_dapm && w->dapm != cur_dapm) |
| 1647 | soc_dapm_async_complete(cur_dapm); |
| 1648 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1649 | INIT_LIST_HEAD(&pending); |
| 1650 | cur_sort = -1; |
Mark Brown | b0b3e6f | 2011-07-16 10:55:08 +0900 | [diff] [blame] | 1651 | cur_subseq = INT_MIN; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1652 | cur_reg = SND_SOC_NOPM; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1653 | cur_dapm = NULL; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1654 | } |
| 1655 | |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1656 | switch (w->id) { |
| 1657 | case snd_soc_dapm_pre: |
| 1658 | if (!w->event) |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1659 | list_for_each_entry_safe_continue(w, n, list, |
| 1660 | power_list); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1661 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1662 | if (event == SND_SOC_DAPM_STREAM_START) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1663 | ret = w->event(w, |
| 1664 | NULL, SND_SOC_DAPM_PRE_PMU); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1665 | else if (event == SND_SOC_DAPM_STREAM_STOP) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1666 | ret = w->event(w, |
| 1667 | NULL, SND_SOC_DAPM_PRE_PMD); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1668 | break; |
| 1669 | |
| 1670 | case snd_soc_dapm_post: |
| 1671 | if (!w->event) |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1672 | list_for_each_entry_safe_continue(w, n, list, |
| 1673 | power_list); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1674 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1675 | if (event == SND_SOC_DAPM_STREAM_START) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1676 | ret = w->event(w, |
| 1677 | NULL, SND_SOC_DAPM_POST_PMU); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1678 | else if (event == SND_SOC_DAPM_STREAM_STOP) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1679 | ret = w->event(w, |
| 1680 | NULL, SND_SOC_DAPM_POST_PMD); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1681 | break; |
| 1682 | |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1683 | default: |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 1684 | /* Queue it up for application */ |
| 1685 | cur_sort = sort[w->id]; |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 1686 | cur_subseq = w->subseq; |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 1687 | cur_reg = w->reg; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1688 | cur_dapm = w->dapm; |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 1689 | list_move(&w->power_list, &pending); |
| 1690 | break; |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1691 | } |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1692 | |
| 1693 | if (ret < 0) |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 1694 | dev_err(w->dapm->dev, |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 1695 | "ASoC: Failed to apply widget power: %d\n", ret); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1696 | } |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1697 | |
| 1698 | if (!list_empty(&pending)) |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1699 | dapm_seq_run_coalesced(card, &pending); |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 1700 | |
Kuninori Morimoto | 9d415fb | 2019-07-26 13:51:35 +0900 | [diff] [blame] | 1701 | if (cur_dapm && cur_dapm->component) { |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 1702 | for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++) |
| 1703 | if (sort[i] == cur_sort) |
Kuninori Morimoto | 9d415fb | 2019-07-26 13:51:35 +0900 | [diff] [blame] | 1704 | snd_soc_component_seq_notifier( |
| 1705 | cur_dapm->component, |
| 1706 | i, cur_subseq); |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 1707 | } |
Mark Brown | eb270e9 | 2013-10-09 13:52:52 +0100 | [diff] [blame] | 1708 | |
| 1709 | list_for_each_entry(d, &card->dapm_list, list) { |
| 1710 | soc_dapm_async_complete(d); |
| 1711 | } |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1712 | } |
| 1713 | |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1714 | static void dapm_widget_update(struct snd_soc_card *card) |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1715 | { |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1716 | struct snd_soc_dapm_update *update = card->update; |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 1717 | struct snd_soc_dapm_widget_list *wlist; |
| 1718 | struct snd_soc_dapm_widget *w = NULL; |
| 1719 | unsigned int wi; |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1720 | int ret; |
| 1721 | |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 1722 | if (!update || !dapm_kcontrol_is_powered(update->kcontrol)) |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1723 | return; |
| 1724 | |
Lars-Peter Clausen | e84357f | 2013-07-29 17:13:58 +0200 | [diff] [blame] | 1725 | wlist = dapm_kcontrol_get_wlist(update->kcontrol); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1726 | |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 1727 | for (wi = 0; wi < wlist->num_widgets; wi++) { |
| 1728 | w = wlist->widgets[wi]; |
| 1729 | |
| 1730 | if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) { |
| 1731 | ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG); |
| 1732 | if (ret != 0) |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1733 | dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n", |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 1734 | w->name, ret); |
| 1735 | } |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1736 | } |
| 1737 | |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 1738 | if (!w) |
| 1739 | return; |
| 1740 | |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 1741 | ret = soc_dapm_update_bits(w->dapm, update->reg, update->mask, |
| 1742 | update->val); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1743 | if (ret < 0) |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1744 | dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n", |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 1745 | w->name, ret); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1746 | |
Chen-Yu Tsai | e411b0b | 2016-11-02 15:35:58 +0800 | [diff] [blame] | 1747 | if (update->has_second_set) { |
| 1748 | ret = soc_dapm_update_bits(w->dapm, update->reg2, |
| 1749 | update->mask2, update->val2); |
| 1750 | if (ret < 0) |
| 1751 | dev_err(w->dapm->dev, |
| 1752 | "ASoC: %s DAPM update failed: %d\n", |
| 1753 | w->name, ret); |
| 1754 | } |
| 1755 | |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 1756 | for (wi = 0; wi < wlist->num_widgets; wi++) { |
| 1757 | w = wlist->widgets[wi]; |
| 1758 | |
| 1759 | if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) { |
| 1760 | ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG); |
| 1761 | if (ret != 0) |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1762 | dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n", |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 1763 | w->name, ret); |
| 1764 | } |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1765 | } |
| 1766 | } |
| 1767 | |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1768 | /* Async callback run prior to DAPM sequences - brings to _PREPARE if |
| 1769 | * they're changing state. |
| 1770 | */ |
| 1771 | static void dapm_pre_sequence_async(void *data, async_cookie_t cookie) |
| 1772 | { |
| 1773 | struct snd_soc_dapm_context *d = data; |
| 1774 | int ret; |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1775 | |
Peter Meerwald-Stadler | c804600 | 2016-08-16 16:56:17 +0200 | [diff] [blame] | 1776 | /* If we're off and we're not supposed to go into STANDBY */ |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 1777 | if (d->bias_level == SND_SOC_BIAS_OFF && |
| 1778 | d->target_bias_level != SND_SOC_BIAS_OFF) { |
Mark Brown | f1aac48 | 2011-12-05 15:17:06 +0000 | [diff] [blame] | 1779 | if (d->dev) |
| 1780 | pm_runtime_get_sync(d->dev); |
| 1781 | |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1782 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY); |
| 1783 | if (ret != 0) |
| 1784 | dev_err(d->dev, |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 1785 | "ASoC: Failed to turn on bias: %d\n", ret); |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1786 | } |
| 1787 | |
Lars-Peter Clausen | ce85a4d | 2014-05-06 10:32:15 +0200 | [diff] [blame] | 1788 | /* Prepare for a transition to ON or away from ON */ |
| 1789 | if ((d->target_bias_level == SND_SOC_BIAS_ON && |
| 1790 | d->bias_level != SND_SOC_BIAS_ON) || |
| 1791 | (d->target_bias_level != SND_SOC_BIAS_ON && |
| 1792 | d->bias_level == SND_SOC_BIAS_ON)) { |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1793 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE); |
| 1794 | if (ret != 0) |
| 1795 | dev_err(d->dev, |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 1796 | "ASoC: Failed to prepare bias: %d\n", ret); |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1797 | } |
| 1798 | } |
| 1799 | |
| 1800 | /* Async callback run prior to DAPM sequences - brings to their final |
| 1801 | * state. |
| 1802 | */ |
| 1803 | static void dapm_post_sequence_async(void *data, async_cookie_t cookie) |
| 1804 | { |
| 1805 | struct snd_soc_dapm_context *d = data; |
| 1806 | int ret; |
| 1807 | |
| 1808 | /* If we just powered the last thing off drop to standby bias */ |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 1809 | if (d->bias_level == SND_SOC_BIAS_PREPARE && |
| 1810 | (d->target_bias_level == SND_SOC_BIAS_STANDBY || |
| 1811 | d->target_bias_level == SND_SOC_BIAS_OFF)) { |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1812 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY); |
| 1813 | if (ret != 0) |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 1814 | dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n", |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1815 | ret); |
| 1816 | } |
| 1817 | |
| 1818 | /* If we're in standby and can support bias off then do that */ |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 1819 | if (d->bias_level == SND_SOC_BIAS_STANDBY && |
| 1820 | d->target_bias_level == SND_SOC_BIAS_OFF) { |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1821 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF); |
| 1822 | if (ret != 0) |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 1823 | dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n", |
| 1824 | ret); |
Mark Brown | f1aac48 | 2011-12-05 15:17:06 +0000 | [diff] [blame] | 1825 | |
| 1826 | if (d->dev) |
Mark Brown | fb644e9 | 2012-01-25 19:53:58 +0000 | [diff] [blame] | 1827 | pm_runtime_put(d->dev); |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | /* If we just powered up then move to active bias */ |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 1831 | if (d->bias_level == SND_SOC_BIAS_PREPARE && |
| 1832 | d->target_bias_level == SND_SOC_BIAS_ON) { |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1833 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON); |
| 1834 | if (ret != 0) |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 1835 | dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n", |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1836 | ret); |
| 1837 | } |
| 1838 | } |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1839 | |
Mark Brown | fe4fda5 | 2011-10-03 22:36:57 +0100 | [diff] [blame] | 1840 | static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer, |
| 1841 | bool power, bool connect) |
| 1842 | { |
| 1843 | /* If a connection is being made or broken then that update |
| 1844 | * will have marked the peer dirty, otherwise the widgets are |
| 1845 | * not connected and this update has no impact. */ |
| 1846 | if (!connect) |
| 1847 | return; |
| 1848 | |
| 1849 | /* If the peer is already in the state we're moving to then we |
| 1850 | * won't have an impact on it. */ |
| 1851 | if (power != peer->power) |
Mark Brown | 75c1f89 | 2011-10-04 22:28:08 +0100 | [diff] [blame] | 1852 | dapm_mark_dirty(peer, "peer state change"); |
Mark Brown | fe4fda5 | 2011-10-03 22:36:57 +0100 | [diff] [blame] | 1853 | } |
| 1854 | |
Mark Brown | 05623c4 | 2011-09-28 17:02:31 +0100 | [diff] [blame] | 1855 | static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power, |
| 1856 | struct list_head *up_list, |
| 1857 | struct list_head *down_list) |
| 1858 | { |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 1859 | struct snd_soc_dapm_path *path; |
| 1860 | |
Mark Brown | 05623c4 | 2011-09-28 17:02:31 +0100 | [diff] [blame] | 1861 | if (w->power == power) |
| 1862 | return; |
| 1863 | |
| 1864 | trace_snd_soc_dapm_widget_power(w, power); |
| 1865 | |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 1866 | /* If we changed our power state perhaps our neigbours changed |
Mark Brown | fe4fda5 | 2011-10-03 22:36:57 +0100 | [diff] [blame] | 1867 | * also. |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 1868 | */ |
Lars-Peter Clausen | e63bfd4 | 2015-07-26 19:05:00 +0200 | [diff] [blame] | 1869 | snd_soc_dapm_widget_for_each_source_path(w, path) |
Lars-Peter Clausen | 7ddd4cd | 2014-10-20 19:36:34 +0200 | [diff] [blame] | 1870 | dapm_widget_set_peer_power(path->source, power, path->connect); |
| 1871 | |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 1872 | /* Supplies can't affect their outputs, only their inputs */ |
| 1873 | if (!w->is_supply) { |
Lars-Peter Clausen | e63bfd4 | 2015-07-26 19:05:00 +0200 | [diff] [blame] | 1874 | snd_soc_dapm_widget_for_each_sink_path(w, path) |
Lars-Peter Clausen | 7ddd4cd | 2014-10-20 19:36:34 +0200 | [diff] [blame] | 1875 | dapm_widget_set_peer_power(path->sink, power, |
| 1876 | path->connect); |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 1877 | } |
| 1878 | |
Mark Brown | 05623c4 | 2011-09-28 17:02:31 +0100 | [diff] [blame] | 1879 | if (power) |
| 1880 | dapm_seq_insert(w, up_list, true); |
| 1881 | else |
| 1882 | dapm_seq_insert(w, down_list, false); |
Mark Brown | 05623c4 | 2011-09-28 17:02:31 +0100 | [diff] [blame] | 1883 | } |
| 1884 | |
Mark Brown | 7c81beb | 2011-09-20 22:22:32 +0100 | [diff] [blame] | 1885 | static void dapm_power_one_widget(struct snd_soc_dapm_widget *w, |
| 1886 | struct list_head *up_list, |
| 1887 | struct list_head *down_list) |
| 1888 | { |
Mark Brown | 7c81beb | 2011-09-20 22:22:32 +0100 | [diff] [blame] | 1889 | int power; |
| 1890 | |
| 1891 | switch (w->id) { |
| 1892 | case snd_soc_dapm_pre: |
| 1893 | dapm_seq_insert(w, down_list, false); |
| 1894 | break; |
| 1895 | case snd_soc_dapm_post: |
| 1896 | dapm_seq_insert(w, up_list, true); |
| 1897 | break; |
| 1898 | |
| 1899 | default: |
Mark Brown | d805002b | 2011-09-28 18:28:23 +0100 | [diff] [blame] | 1900 | power = dapm_widget_power_check(w); |
Mark Brown | 7c81beb | 2011-09-20 22:22:32 +0100 | [diff] [blame] | 1901 | |
Mark Brown | 05623c4 | 2011-09-28 17:02:31 +0100 | [diff] [blame] | 1902 | dapm_widget_set_power(w, power, up_list, down_list); |
Mark Brown | 7c81beb | 2011-09-20 22:22:32 +0100 | [diff] [blame] | 1903 | break; |
| 1904 | } |
| 1905 | } |
| 1906 | |
Lars-Peter Clausen | 86dbf2a | 2014-09-04 19:44:06 +0200 | [diff] [blame] | 1907 | static bool dapm_idle_bias_off(struct snd_soc_dapm_context *dapm) |
| 1908 | { |
| 1909 | if (dapm->idle_bias_off) |
| 1910 | return true; |
| 1911 | |
| 1912 | switch (snd_power_get_state(dapm->card->snd_card)) { |
| 1913 | case SNDRV_CTL_POWER_D3hot: |
| 1914 | case SNDRV_CTL_POWER_D3cold: |
| 1915 | return dapm->suspend_bias_off; |
| 1916 | default: |
| 1917 | break; |
| 1918 | } |
| 1919 | |
| 1920 | return false; |
| 1921 | } |
| 1922 | |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1923 | /* |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1924 | * Scan each dapm widget for complete audio path. |
| 1925 | * A complete path is a route that has valid endpoints i.e.:- |
| 1926 | * |
| 1927 | * o DAC to output pin. |
Peter Meerwald-Stadler | c804600 | 2016-08-16 16:56:17 +0200 | [diff] [blame] | 1928 | * o Input pin to ADC. |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1929 | * o Input pin to Output pin (bypass, sidetone) |
| 1930 | * o DAC to ADC (loopback). |
| 1931 | */ |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 1932 | static int dapm_power_widgets(struct snd_soc_card *card, int event) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1933 | { |
| 1934 | struct snd_soc_dapm_widget *w; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1935 | struct snd_soc_dapm_context *d; |
Mark Brown | 291f3bb | 2009-06-07 13:57:17 +0100 | [diff] [blame] | 1936 | LIST_HEAD(up_list); |
| 1937 | LIST_HEAD(down_list); |
Dan Williams | 2955b47 | 2012-07-09 19:33:25 -0700 | [diff] [blame] | 1938 | ASYNC_DOMAIN_EXCLUSIVE(async_domain); |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 1939 | enum snd_soc_bias_level bias; |
Kuninori Morimoto | 8e2a990 | 2019-07-26 13:51:39 +0900 | [diff] [blame] | 1940 | int ret; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1941 | |
Mark Brown | f9fa2b1 | 2014-03-06 16:49:11 +0800 | [diff] [blame] | 1942 | lockdep_assert_held(&card->dapm_mutex); |
| 1943 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 1944 | trace_snd_soc_dapm_start(card); |
| 1945 | |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 1946 | list_for_each_entry(d, &card->dapm_list, list) { |
Lars-Peter Clausen | 86dbf2a | 2014-09-04 19:44:06 +0200 | [diff] [blame] | 1947 | if (dapm_idle_bias_off(d)) |
Mark Brown | 497098be | 2012-03-08 15:06:09 +0000 | [diff] [blame] | 1948 | d->target_bias_level = SND_SOC_BIAS_OFF; |
| 1949 | else |
| 1950 | d->target_bias_level = SND_SOC_BIAS_STANDBY; |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 1951 | } |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1952 | |
Liam Girdwood | 6c120e1 | 2012-02-15 15:15:34 +0000 | [diff] [blame] | 1953 | dapm_reset(card); |
Mark Brown | 9b8a83b | 2011-10-04 22:15:59 +0100 | [diff] [blame] | 1954 | |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1955 | /* Check which widgets we need to power and store them in |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 1956 | * lists indicating if they should be powered up or down. We |
| 1957 | * only check widgets that have been flagged as dirty but note |
| 1958 | * that new widgets may be added to the dirty list while we |
| 1959 | * iterate. |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1960 | */ |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 1961 | list_for_each_entry(w, &card->dapm_dirty, dirty) { |
Mark Brown | 7c81beb | 2011-09-20 22:22:32 +0100 | [diff] [blame] | 1962 | dapm_power_one_widget(w, &up_list, &down_list); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1963 | } |
| 1964 | |
Mark Brown | f9de6d7 | 2011-09-28 17:19:47 +0100 | [diff] [blame] | 1965 | list_for_each_entry(w, &card->widgets, list) { |
Mark Brown | 0ff97eb | 2012-07-20 17:29:34 +0100 | [diff] [blame] | 1966 | switch (w->id) { |
| 1967 | case snd_soc_dapm_pre: |
| 1968 | case snd_soc_dapm_post: |
| 1969 | /* These widgets always need to be powered */ |
| 1970 | break; |
| 1971 | default: |
| 1972 | list_del_init(&w->dirty); |
| 1973 | break; |
| 1974 | } |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 1975 | |
Lars-Peter Clausen | 39eb5fd | 2013-07-29 17:14:03 +0200 | [diff] [blame] | 1976 | if (w->new_power) { |
Mark Brown | f9de6d7 | 2011-09-28 17:19:47 +0100 | [diff] [blame] | 1977 | d = w->dapm; |
| 1978 | |
| 1979 | /* Supplies and micbiases only bring the |
| 1980 | * context up to STANDBY as unless something |
| 1981 | * else is active and passing audio they |
Mark Brown | afe6236 | 2012-01-25 19:55:22 +0000 | [diff] [blame] | 1982 | * generally don't require full power. Signal |
| 1983 | * generators are virtual pins and have no |
| 1984 | * power impact themselves. |
Mark Brown | f9de6d7 | 2011-09-28 17:19:47 +0100 | [diff] [blame] | 1985 | */ |
| 1986 | switch (w->id) { |
Mark Brown | afe6236 | 2012-01-25 19:55:22 +0000 | [diff] [blame] | 1987 | case snd_soc_dapm_siggen: |
Lars-Peter Clausen | da83fea | 2013-10-05 19:26:17 +0200 | [diff] [blame] | 1988 | case snd_soc_dapm_vmid: |
Mark Brown | afe6236 | 2012-01-25 19:55:22 +0000 | [diff] [blame] | 1989 | break; |
Mark Brown | f9de6d7 | 2011-09-28 17:19:47 +0100 | [diff] [blame] | 1990 | case snd_soc_dapm_supply: |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 1991 | case snd_soc_dapm_regulator_supply: |
Srinivas Kandagatla | 5b2d15b | 2018-03-10 02:37:27 +0000 | [diff] [blame] | 1992 | case snd_soc_dapm_pinctrl: |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 1993 | case snd_soc_dapm_clock_supply: |
Mark Brown | f9de6d7 | 2011-09-28 17:19:47 +0100 | [diff] [blame] | 1994 | case snd_soc_dapm_micbias: |
| 1995 | if (d->target_bias_level < SND_SOC_BIAS_STANDBY) |
| 1996 | d->target_bias_level = SND_SOC_BIAS_STANDBY; |
| 1997 | break; |
| 1998 | default: |
| 1999 | d->target_bias_level = SND_SOC_BIAS_ON; |
| 2000 | break; |
| 2001 | } |
| 2002 | } |
| 2003 | |
| 2004 | } |
| 2005 | |
Mark Brown | 85a843c | 2011-09-21 21:29:47 +0100 | [diff] [blame] | 2006 | /* Force all contexts in the card to the same bias state if |
| 2007 | * they're not ground referenced. |
| 2008 | */ |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 2009 | bias = SND_SOC_BIAS_OFF; |
Mark Brown | 52ba67b | 2011-04-04 21:05:11 +0900 | [diff] [blame] | 2010 | list_for_each_entry(d, &card->dapm_list, list) |
Mark Brown | 56fba41 | 2011-06-04 11:25:10 +0100 | [diff] [blame] | 2011 | if (d->target_bias_level > bias) |
| 2012 | bias = d->target_bias_level; |
Mark Brown | 52ba67b | 2011-04-04 21:05:11 +0900 | [diff] [blame] | 2013 | list_for_each_entry(d, &card->dapm_list, list) |
Lars-Peter Clausen | 86dbf2a | 2014-09-04 19:44:06 +0200 | [diff] [blame] | 2014 | if (!dapm_idle_bias_off(d)) |
Mark Brown | 85a843c | 2011-09-21 21:29:47 +0100 | [diff] [blame] | 2015 | d->target_bias_level = bias; |
Mark Brown | 52ba67b | 2011-04-04 21:05:11 +0900 | [diff] [blame] | 2016 | |
Mark Brown | de02d07 | 2011-09-20 21:43:24 +0100 | [diff] [blame] | 2017 | trace_snd_soc_dapm_walk_done(card); |
Mark Brown | 52ba67b | 2011-04-04 21:05:11 +0900 | [diff] [blame] | 2018 | |
Xiang Xiao | 17282ba | 2014-03-02 00:04:03 +0800 | [diff] [blame] | 2019 | /* Run card bias changes at first */ |
| 2020 | dapm_pre_sequence_async(&card->dapm, 0); |
| 2021 | /* Run other bias changes in parallel */ |
| 2022 | list_for_each_entry(d, &card->dapm_list, list) { |
Jon Hunter | e03546d | 2018-08-17 16:35:43 +0100 | [diff] [blame] | 2023 | if (d != &card->dapm && d->bias_level != d->target_bias_level) |
Xiang Xiao | 17282ba | 2014-03-02 00:04:03 +0800 | [diff] [blame] | 2024 | async_schedule_domain(dapm_pre_sequence_async, d, |
| 2025 | &async_domain); |
| 2026 | } |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 2027 | async_synchronize_full_domain(&async_domain); |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 2028 | |
Lars-Peter Clausen | cf1f7c6 | 2013-05-23 00:12:53 +0200 | [diff] [blame] | 2029 | list_for_each_entry(w, &down_list, power_list) { |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2030 | dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD); |
Mark Brown | 8011412 | 2013-02-25 15:14:19 +0000 | [diff] [blame] | 2031 | } |
| 2032 | |
Lars-Peter Clausen | cf1f7c6 | 2013-05-23 00:12:53 +0200 | [diff] [blame] | 2033 | list_for_each_entry(w, &up_list, power_list) { |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2034 | dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU); |
Mark Brown | 8011412 | 2013-02-25 15:14:19 +0000 | [diff] [blame] | 2035 | } |
| 2036 | |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 2037 | /* Power down widgets first; try to avoid amplifying pops. */ |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2038 | dapm_seq_run(card, &down_list, event, false); |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 2039 | |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2040 | dapm_widget_update(card); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 2041 | |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 2042 | /* Now power up. */ |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2043 | dapm_seq_run(card, &up_list, event, true); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2044 | |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 2045 | /* Run all the bias changes in parallel */ |
Xiang Xiao | 17282ba | 2014-03-02 00:04:03 +0800 | [diff] [blame] | 2046 | list_for_each_entry(d, &card->dapm_list, list) { |
Jon Hunter | e03546d | 2018-08-17 16:35:43 +0100 | [diff] [blame] | 2047 | if (d != &card->dapm && d->bias_level != d->target_bias_level) |
Xiang Xiao | 17282ba | 2014-03-02 00:04:03 +0800 | [diff] [blame] | 2048 | async_schedule_domain(dapm_post_sequence_async, d, |
| 2049 | &async_domain); |
| 2050 | } |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 2051 | async_synchronize_full_domain(&async_domain); |
Xiang Xiao | 17282ba | 2014-03-02 00:04:03 +0800 | [diff] [blame] | 2052 | /* Run card bias changes at last */ |
| 2053 | dapm_post_sequence_async(&card->dapm, 0); |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 2054 | |
Liam Girdwood | 8078d87 | 2012-02-15 15:15:35 +0000 | [diff] [blame] | 2055 | /* do we need to notify any clients that DAPM event is complete */ |
| 2056 | list_for_each_entry(d, &card->dapm_list, list) { |
Kuninori Morimoto | 8e2a990 | 2019-07-26 13:51:39 +0900 | [diff] [blame] | 2057 | if (!d->component) |
| 2058 | continue; |
| 2059 | |
| 2060 | ret = snd_soc_component_stream_event(d->component, event); |
| 2061 | if (ret < 0) |
| 2062 | return ret; |
Liam Girdwood | 8078d87 | 2012-02-15 15:15:35 +0000 | [diff] [blame] | 2063 | } |
| 2064 | |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2065 | pop_dbg(card->dev, card->pop_time, |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 2066 | "DAPM sequencing finished, waiting %dms\n", card->pop_time); |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 2067 | pop_wait(card->pop_time); |
Mark Brown | cb507e7 | 2009-07-08 18:54:57 +0100 | [diff] [blame] | 2068 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 2069 | trace_snd_soc_dapm_done(card); |
| 2070 | |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 2071 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2072 | } |
| 2073 | |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2074 | #ifdef CONFIG_DEBUG_FS |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2075 | static ssize_t dapm_widget_power_read_file(struct file *file, |
| 2076 | char __user *user_buf, |
| 2077 | size_t count, loff_t *ppos) |
| 2078 | { |
| 2079 | struct snd_soc_dapm_widget *w = file->private_data; |
Lars-Peter Clausen | e50b1e0 | 2015-07-06 17:01:24 +0200 | [diff] [blame] | 2080 | struct snd_soc_card *card = w->dapm->card; |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2081 | enum snd_soc_dapm_direction dir, rdir; |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2082 | char *buf; |
| 2083 | int in, out; |
| 2084 | ssize_t ret; |
| 2085 | struct snd_soc_dapm_path *p = NULL; |
| 2086 | |
| 2087 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 2088 | if (!buf) |
| 2089 | return -ENOMEM; |
| 2090 | |
Lars-Peter Clausen | e50b1e0 | 2015-07-06 17:01:24 +0200 | [diff] [blame] | 2091 | mutex_lock(&card->dapm_mutex); |
| 2092 | |
Lars-Peter Clausen | c1862c8 | 2014-10-25 17:42:00 +0200 | [diff] [blame] | 2093 | /* Supply widgets are not handled by is_connected_{input,output}_ep() */ |
| 2094 | if (w->is_supply) { |
| 2095 | in = 0; |
| 2096 | out = 0; |
| 2097 | } else { |
Piotr Stankiewicz | 6742064 | 2016-05-13 17:03:55 +0100 | [diff] [blame] | 2098 | in = is_connected_input_ep(w, NULL, NULL); |
| 2099 | out = is_connected_output_ep(w, NULL, NULL); |
Lars-Peter Clausen | c1862c8 | 2014-10-25 17:42:00 +0200 | [diff] [blame] | 2100 | } |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2101 | |
Silvio Cesare | e581e15 | 2019-01-12 16:28:43 +0100 | [diff] [blame] | 2102 | ret = scnprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d", |
Mark Brown | f13ebad | 2012-03-03 18:01:01 +0000 | [diff] [blame] | 2103 | w->name, w->power ? "On" : "Off", |
| 2104 | w->force ? " (forced)" : "", in, out); |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2105 | |
Mark Brown | d033c36 | 2009-12-04 15:25:56 +0000 | [diff] [blame] | 2106 | if (w->reg >= 0) |
Silvio Cesare | e581e15 | 2019-01-12 16:28:43 +0100 | [diff] [blame] | 2107 | ret += scnprintf(buf + ret, PAGE_SIZE - ret, |
Lars-Peter Clausen | de9ba98 | 2013-07-29 17:14:01 +0200 | [diff] [blame] | 2108 | " - R%d(0x%x) mask 0x%x", |
| 2109 | w->reg, w->reg, w->mask << w->shift); |
Mark Brown | d033c36 | 2009-12-04 15:25:56 +0000 | [diff] [blame] | 2110 | |
Silvio Cesare | e581e15 | 2019-01-12 16:28:43 +0100 | [diff] [blame] | 2111 | ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n"); |
Mark Brown | d033c36 | 2009-12-04 15:25:56 +0000 | [diff] [blame] | 2112 | |
Mark Brown | 3eef08b | 2009-09-14 16:49:00 +0100 | [diff] [blame] | 2113 | if (w->sname) |
Silvio Cesare | e581e15 | 2019-01-12 16:28:43 +0100 | [diff] [blame] | 2114 | ret += scnprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n", |
Mark Brown | 3eef08b | 2009-09-14 16:49:00 +0100 | [diff] [blame] | 2115 | w->sname, |
| 2116 | w->active ? "active" : "inactive"); |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2117 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2118 | snd_soc_dapm_for_each_direction(dir) { |
| 2119 | rdir = SND_SOC_DAPM_DIR_REVERSE(dir); |
| 2120 | snd_soc_dapm_widget_for_each_path(w, dir, p) { |
KaiChieh Chuang | 28735af | 2018-02-05 13:00:00 +0800 | [diff] [blame] | 2121 | if (p->connected && !p->connected(p->source, p->sink)) |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2122 | continue; |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 2123 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2124 | if (!p->connect) |
| 2125 | continue; |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 2126 | |
Silvio Cesare | e581e15 | 2019-01-12 16:28:43 +0100 | [diff] [blame] | 2127 | ret += scnprintf(buf + ret, PAGE_SIZE - ret, |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2128 | " %s \"%s\" \"%s\"\n", |
| 2129 | (rdir == SND_SOC_DAPM_DIR_IN) ? "in" : "out", |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2130 | p->name ? p->name : "static", |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2131 | p->node[rdir]->name); |
| 2132 | } |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2133 | } |
| 2134 | |
Lars-Peter Clausen | e50b1e0 | 2015-07-06 17:01:24 +0200 | [diff] [blame] | 2135 | mutex_unlock(&card->dapm_mutex); |
| 2136 | |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2137 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); |
| 2138 | |
| 2139 | kfree(buf); |
| 2140 | return ret; |
| 2141 | } |
| 2142 | |
| 2143 | static const struct file_operations dapm_widget_power_fops = { |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame] | 2144 | .open = simple_open, |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2145 | .read = dapm_widget_power_read_file, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 2146 | .llseek = default_llseek, |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2147 | }; |
| 2148 | |
Mark Brown | ef49e4f | 2011-04-04 20:48:13 +0900 | [diff] [blame] | 2149 | static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf, |
| 2150 | size_t count, loff_t *ppos) |
| 2151 | { |
| 2152 | struct snd_soc_dapm_context *dapm = file->private_data; |
| 2153 | char *level; |
| 2154 | |
| 2155 | switch (dapm->bias_level) { |
| 2156 | case SND_SOC_BIAS_ON: |
| 2157 | level = "On\n"; |
| 2158 | break; |
| 2159 | case SND_SOC_BIAS_PREPARE: |
| 2160 | level = "Prepare\n"; |
| 2161 | break; |
| 2162 | case SND_SOC_BIAS_STANDBY: |
| 2163 | level = "Standby\n"; |
| 2164 | break; |
| 2165 | case SND_SOC_BIAS_OFF: |
| 2166 | level = "Off\n"; |
| 2167 | break; |
| 2168 | default: |
Takashi Iwai | a6ed060 | 2013-11-06 11:07:19 +0100 | [diff] [blame] | 2169 | WARN(1, "Unknown bias_level %d\n", dapm->bias_level); |
Mark Brown | ef49e4f | 2011-04-04 20:48:13 +0900 | [diff] [blame] | 2170 | level = "Unknown\n"; |
| 2171 | break; |
| 2172 | } |
| 2173 | |
| 2174 | return simple_read_from_buffer(user_buf, count, ppos, level, |
| 2175 | strlen(level)); |
| 2176 | } |
| 2177 | |
| 2178 | static const struct file_operations dapm_bias_fops = { |
Stephen Boyd | 234e340 | 2012-04-05 14:25:11 -0700 | [diff] [blame] | 2179 | .open = simple_open, |
Mark Brown | ef49e4f | 2011-04-04 20:48:13 +0900 | [diff] [blame] | 2180 | .read = dapm_bias_read_file, |
| 2181 | .llseek = default_llseek, |
| 2182 | }; |
| 2183 | |
Lars-Peter Clausen | 8eecaf6 | 2011-04-30 19:45:48 +0200 | [diff] [blame] | 2184 | void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm, |
| 2185 | struct dentry *parent) |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2186 | { |
Mark Brown | ceaea85 | 2019-06-21 12:33:57 +0100 | [diff] [blame] | 2187 | if (!parent || IS_ERR(parent)) |
Lars-Peter Clausen | 6553bf06 | 2015-04-09 10:52:38 +0200 | [diff] [blame] | 2188 | return; |
| 2189 | |
Lars-Peter Clausen | 8eecaf6 | 2011-04-30 19:45:48 +0200 | [diff] [blame] | 2190 | dapm->debugfs_dapm = debugfs_create_dir("dapm", parent); |
| 2191 | |
Greg Kroah-Hartman | fee531d | 2019-07-31 15:17:15 +0200 | [diff] [blame] | 2192 | debugfs_create_file("bias_level", 0444, dapm->debugfs_dapm, dapm, |
| 2193 | &dapm_bias_fops); |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2194 | } |
Lars-Peter Clausen | d5d1e0b | 2011-04-30 19:45:49 +0200 | [diff] [blame] | 2195 | |
| 2196 | static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w) |
| 2197 | { |
| 2198 | struct snd_soc_dapm_context *dapm = w->dapm; |
Lars-Peter Clausen | d5d1e0b | 2011-04-30 19:45:49 +0200 | [diff] [blame] | 2199 | |
| 2200 | if (!dapm->debugfs_dapm || !w->name) |
| 2201 | return; |
| 2202 | |
Greg Kroah-Hartman | fee531d | 2019-07-31 15:17:15 +0200 | [diff] [blame] | 2203 | debugfs_create_file(w->name, 0444, dapm->debugfs_dapm, w, |
| 2204 | &dapm_widget_power_fops); |
Lars-Peter Clausen | d5d1e0b | 2011-04-30 19:45:49 +0200 | [diff] [blame] | 2205 | } |
| 2206 | |
Lars-Peter Clausen | 6c45e12 | 2011-04-30 19:45:50 +0200 | [diff] [blame] | 2207 | static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm) |
| 2208 | { |
| 2209 | debugfs_remove_recursive(dapm->debugfs_dapm); |
Kuninori Morimoto | 29040d1 | 2019-05-27 16:51:34 +0900 | [diff] [blame] | 2210 | dapm->debugfs_dapm = NULL; |
Lars-Peter Clausen | 6c45e12 | 2011-04-30 19:45:50 +0200 | [diff] [blame] | 2211 | } |
| 2212 | |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2213 | #else |
Lars-Peter Clausen | 8eecaf6 | 2011-04-30 19:45:48 +0200 | [diff] [blame] | 2214 | void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm, |
| 2215 | struct dentry *parent) |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2216 | { |
| 2217 | } |
Lars-Peter Clausen | d5d1e0b | 2011-04-30 19:45:49 +0200 | [diff] [blame] | 2218 | |
| 2219 | static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w) |
| 2220 | { |
| 2221 | } |
| 2222 | |
Lars-Peter Clausen | 6c45e12 | 2011-04-30 19:45:50 +0200 | [diff] [blame] | 2223 | static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm) |
| 2224 | { |
| 2225 | } |
| 2226 | |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 2227 | #endif |
| 2228 | |
Lars-Peter Clausen | 4a20194 | 2014-10-25 17:41:56 +0200 | [diff] [blame] | 2229 | /* |
| 2230 | * soc_dapm_connect_path() - Connects or disconnects a path |
| 2231 | * @path: The path to update |
| 2232 | * @connect: The new connect state of the path. True if the path is connected, |
Peter Meerwald-Stadler | c804600 | 2016-08-16 16:56:17 +0200 | [diff] [blame] | 2233 | * false if it is disconnected. |
Lars-Peter Clausen | 4a20194 | 2014-10-25 17:41:56 +0200 | [diff] [blame] | 2234 | * @reason: The reason why the path changed (for debugging only) |
| 2235 | */ |
| 2236 | static void soc_dapm_connect_path(struct snd_soc_dapm_path *path, |
| 2237 | bool connect, const char *reason) |
| 2238 | { |
| 2239 | if (path->connect == connect) |
| 2240 | return; |
| 2241 | |
| 2242 | path->connect = connect; |
| 2243 | dapm_mark_dirty(path->source, reason); |
| 2244 | dapm_mark_dirty(path->sink, reason); |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 2245 | dapm_path_invalidate(path); |
Lars-Peter Clausen | 4a20194 | 2014-10-25 17:41:56 +0200 | [diff] [blame] | 2246 | } |
| 2247 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2248 | /* test and update the power status of a mux widget */ |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2249 | static int soc_dapm_mux_update_power(struct snd_soc_card *card, |
Liam Girdwood | 40f02cd | 2012-02-06 16:05:14 +0000 | [diff] [blame] | 2250 | struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2251 | { |
| 2252 | struct snd_soc_dapm_path *path; |
| 2253 | int found = 0; |
Lars-Peter Clausen | 4a20194 | 2014-10-25 17:41:56 +0200 | [diff] [blame] | 2254 | bool connect; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2255 | |
Mark Brown | f9fa2b1 | 2014-03-06 16:49:11 +0800 | [diff] [blame] | 2256 | lockdep_assert_held(&card->dapm_mutex); |
| 2257 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2258 | /* find dapm widget path assoc with kcontrol */ |
Lars-Peter Clausen | 5106b92 | 2013-07-29 17:14:00 +0200 | [diff] [blame] | 2259 | dapm_kcontrol_for_each_path(path, kcontrol) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2260 | found = 1; |
| 2261 | /* we now need to match the string in the enum to the path */ |
Jerome Brunet | c3456a4 | 2019-05-15 15:18:55 +0200 | [diff] [blame] | 2262 | if (e && !(strcmp(path->name, e->texts[mux]))) |
Lars-Peter Clausen | 4a20194 | 2014-10-25 17:41:56 +0200 | [diff] [blame] | 2263 | connect = true; |
| 2264 | else |
| 2265 | connect = false; |
| 2266 | |
| 2267 | soc_dapm_connect_path(path, connect, "mux update"); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2268 | } |
| 2269 | |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 2270 | if (found) |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2271 | dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2272 | |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2273 | return found; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2274 | } |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2275 | |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 2276 | int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm, |
Lars-Peter Clausen | 6b3fc03 | 2013-07-24 15:27:38 +0200 | [diff] [blame] | 2277 | struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e, |
| 2278 | struct snd_soc_dapm_update *update) |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2279 | { |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 2280 | struct snd_soc_card *card = dapm->card; |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2281 | int ret; |
| 2282 | |
Liam Girdwood | 3cd0434 | 2012-03-09 12:02:08 +0000 | [diff] [blame] | 2283 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Lars-Peter Clausen | 564c6504 | 2013-07-29 17:13:55 +0200 | [diff] [blame] | 2284 | card->update = update; |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2285 | ret = soc_dapm_mux_update_power(card, kcontrol, mux, e); |
Lars-Peter Clausen | 564c6504 | 2013-07-29 17:13:55 +0200 | [diff] [blame] | 2286 | card->update = NULL; |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2287 | mutex_unlock(&card->dapm_mutex); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2288 | if (ret > 0) |
Lars-Peter Clausen | c3f48ae | 2013-07-24 15:27:36 +0200 | [diff] [blame] | 2289 | soc_dpcm_runtime_update(card); |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2290 | return ret; |
| 2291 | } |
Liam Girdwood | 40f02cd | 2012-02-06 16:05:14 +0000 | [diff] [blame] | 2292 | EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2293 | |
Milan plzik | 1b075e3 | 2008-01-10 14:39:46 +0100 | [diff] [blame] | 2294 | /* test and update the power status of a mixer or switch widget */ |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2295 | static int soc_dapm_mixer_update_power(struct snd_soc_card *card, |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 2296 | struct snd_kcontrol *kcontrol, |
| 2297 | int connect, int rconnect) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2298 | { |
| 2299 | struct snd_soc_dapm_path *path; |
| 2300 | int found = 0; |
| 2301 | |
Mark Brown | f9fa2b1 | 2014-03-06 16:49:11 +0800 | [diff] [blame] | 2302 | lockdep_assert_held(&card->dapm_mutex); |
| 2303 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2304 | /* find dapm widget path assoc with kcontrol */ |
Lars-Peter Clausen | 5106b92 | 2013-07-29 17:14:00 +0200 | [diff] [blame] | 2305 | dapm_kcontrol_for_each_path(path, kcontrol) { |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 2306 | /* |
| 2307 | * Ideally this function should support any number of |
| 2308 | * paths and channels. But since kcontrols only come |
| 2309 | * in mono and stereo variants, we are limited to 2 |
| 2310 | * channels. |
| 2311 | * |
| 2312 | * The following code assumes for stereo controls the |
| 2313 | * first path (when 'found == 0') is the left channel, |
| 2314 | * and all remaining paths (when 'found == 1') are the |
| 2315 | * right channel. |
| 2316 | * |
| 2317 | * A stereo control is signified by a valid 'rconnect' |
| 2318 | * value, either 0 for unconnected, or >= 0 for connected. |
| 2319 | * This is chosen instead of using snd_soc_volsw_is_stereo, |
| 2320 | * so that the behavior of snd_soc_dapm_mixer_update_power |
| 2321 | * doesn't change even when the kcontrol passed in is |
| 2322 | * stereo. |
| 2323 | * |
| 2324 | * It passes 'connect' as the path connect status for |
| 2325 | * the left channel, and 'rconnect' for the right |
| 2326 | * channel. |
| 2327 | */ |
| 2328 | if (found && rconnect >= 0) |
| 2329 | soc_dapm_connect_path(path, rconnect, "mixer update"); |
| 2330 | else |
| 2331 | soc_dapm_connect_path(path, connect, "mixer update"); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2332 | found = 1; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2333 | } |
| 2334 | |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 2335 | if (found) |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 2336 | dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2337 | |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2338 | return found; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2339 | } |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2340 | |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 2341 | int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm, |
Lars-Peter Clausen | 6b3fc03 | 2013-07-24 15:27:38 +0200 | [diff] [blame] | 2342 | struct snd_kcontrol *kcontrol, int connect, |
| 2343 | struct snd_soc_dapm_update *update) |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2344 | { |
Lars-Peter Clausen | ce6cfaf | 2013-07-24 15:27:37 +0200 | [diff] [blame] | 2345 | struct snd_soc_card *card = dapm->card; |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2346 | int ret; |
| 2347 | |
Liam Girdwood | 3cd0434 | 2012-03-09 12:02:08 +0000 | [diff] [blame] | 2348 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Lars-Peter Clausen | 564c6504 | 2013-07-29 17:13:55 +0200 | [diff] [blame] | 2349 | card->update = update; |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 2350 | ret = soc_dapm_mixer_update_power(card, kcontrol, connect, -1); |
Lars-Peter Clausen | 564c6504 | 2013-07-29 17:13:55 +0200 | [diff] [blame] | 2351 | card->update = NULL; |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2352 | mutex_unlock(&card->dapm_mutex); |
Liam Girdwood | 618dae1 | 2012-04-25 12:12:51 +0100 | [diff] [blame] | 2353 | if (ret > 0) |
Lars-Peter Clausen | c3f48ae | 2013-07-24 15:27:36 +0200 | [diff] [blame] | 2354 | soc_dpcm_runtime_update(card); |
Liam Girdwood | 4edbb345 | 2012-03-07 10:38:27 +0000 | [diff] [blame] | 2355 | return ret; |
| 2356 | } |
Liam Girdwood | 40f02cd | 2012-02-06 16:05:14 +0000 | [diff] [blame] | 2357 | EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2358 | |
Lars-Peter Clausen | b3c25fb | 2015-07-06 15:38:10 +0200 | [diff] [blame] | 2359 | static ssize_t dapm_widget_show_component(struct snd_soc_component *cmpnt, |
| 2360 | char *buf) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2361 | { |
Lars-Peter Clausen | b3c25fb | 2015-07-06 15:38:10 +0200 | [diff] [blame] | 2362 | struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(cmpnt); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2363 | struct snd_soc_dapm_widget *w; |
| 2364 | int count = 0; |
| 2365 | char *state = "not set"; |
| 2366 | |
Mark Brown | 4732507 | 2016-03-18 12:04:23 +0000 | [diff] [blame] | 2367 | /* card won't be set for the dummy component, as a spot fix |
| 2368 | * we're checking for that case specifically here but in future |
| 2369 | * we will ensure that the dummy component looks like others. |
| 2370 | */ |
| 2371 | if (!cmpnt->card) |
| 2372 | return 0; |
| 2373 | |
Lars-Peter Clausen | b3c25fb | 2015-07-06 15:38:10 +0200 | [diff] [blame] | 2374 | list_for_each_entry(w, &cmpnt->card->widgets, list) { |
| 2375 | if (w->dapm != dapm) |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2376 | continue; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2377 | |
Peter Meerwald-Stadler | c804600 | 2016-08-16 16:56:17 +0200 | [diff] [blame] | 2378 | /* only display widgets that burn power */ |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2379 | switch (w->id) { |
| 2380 | case snd_soc_dapm_hp: |
| 2381 | case snd_soc_dapm_mic: |
| 2382 | case snd_soc_dapm_spk: |
| 2383 | case snd_soc_dapm_line: |
| 2384 | case snd_soc_dapm_micbias: |
| 2385 | case snd_soc_dapm_dac: |
| 2386 | case snd_soc_dapm_adc: |
| 2387 | case snd_soc_dapm_pga: |
Seppo Ingalsuo | 882c8b4a | 2019-04-30 18:11:34 -0500 | [diff] [blame] | 2388 | case snd_soc_dapm_effect: |
Olaya, Margarita | d88429a | 2010-12-10 21:11:44 -0600 | [diff] [blame] | 2389 | case snd_soc_dapm_out_drv: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2390 | case snd_soc_dapm_mixer: |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 2391 | case snd_soc_dapm_mixer_named_ctl: |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 2392 | case snd_soc_dapm_supply: |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 2393 | case snd_soc_dapm_regulator_supply: |
Srinivas Kandagatla | 5b2d15b | 2018-03-10 02:37:27 +0000 | [diff] [blame] | 2394 | case snd_soc_dapm_pinctrl: |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 2395 | case snd_soc_dapm_clock_supply: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2396 | if (w->name) |
| 2397 | count += sprintf(buf + count, "%s: %s\n", |
| 2398 | w->name, w->power ? "On":"Off"); |
| 2399 | break; |
| 2400 | default: |
| 2401 | break; |
| 2402 | } |
| 2403 | } |
| 2404 | |
Lars-Peter Clausen | b3c25fb | 2015-07-06 15:38:10 +0200 | [diff] [blame] | 2405 | switch (snd_soc_dapm_get_bias_level(dapm)) { |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 2406 | case SND_SOC_BIAS_ON: |
| 2407 | state = "On"; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2408 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 2409 | case SND_SOC_BIAS_PREPARE: |
| 2410 | state = "Prepare"; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2411 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 2412 | case SND_SOC_BIAS_STANDBY: |
| 2413 | state = "Standby"; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2414 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 2415 | case SND_SOC_BIAS_OFF: |
| 2416 | state = "Off"; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2417 | break; |
| 2418 | } |
| 2419 | count += sprintf(buf + count, "PM State: %s\n", state); |
| 2420 | |
| 2421 | return count; |
| 2422 | } |
| 2423 | |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 2424 | /* show dapm widget status in sys fs */ |
| 2425 | static ssize_t dapm_widget_show(struct device *dev, |
| 2426 | struct device_attribute *attr, char *buf) |
| 2427 | { |
| 2428 | struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev); |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 2429 | struct snd_soc_dai *codec_dai; |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 2430 | int i, count = 0; |
| 2431 | |
Lars-Peter Clausen | e50b1e0 | 2015-07-06 17:01:24 +0200 | [diff] [blame] | 2432 | mutex_lock(&rtd->card->dapm_mutex); |
| 2433 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 2434 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
| 2435 | struct snd_soc_component *cmpnt = codec_dai->component; |
Lars-Peter Clausen | b3c25fb | 2015-07-06 15:38:10 +0200 | [diff] [blame] | 2436 | |
| 2437 | count += dapm_widget_show_component(cmpnt, buf + count); |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 2438 | } |
| 2439 | |
Lars-Peter Clausen | e50b1e0 | 2015-07-06 17:01:24 +0200 | [diff] [blame] | 2440 | mutex_unlock(&rtd->card->dapm_mutex); |
| 2441 | |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 2442 | return count; |
| 2443 | } |
| 2444 | |
Joe Perches | c828a89 | 2017-12-19 10:15:08 -0800 | [diff] [blame] | 2445 | static DEVICE_ATTR_RO(dapm_widget); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2446 | |
Takashi Iwai | d29697d | 2015-01-30 20:16:37 +0100 | [diff] [blame] | 2447 | struct attribute *soc_dapm_dev_attrs[] = { |
| 2448 | &dev_attr_dapm_widget.attr, |
| 2449 | NULL |
| 2450 | }; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2451 | |
Lars-Peter Clausen | 8872293 | 2013-06-14 13:16:53 +0200 | [diff] [blame] | 2452 | static void dapm_free_path(struct snd_soc_dapm_path *path) |
| 2453 | { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2454 | list_del(&path->list_node[SND_SOC_DAPM_DIR_IN]); |
| 2455 | list_del(&path->list_node[SND_SOC_DAPM_DIR_OUT]); |
Lars-Peter Clausen | 5106b92 | 2013-07-29 17:14:00 +0200 | [diff] [blame] | 2456 | list_del(&path->list_kcontrol); |
Lars-Peter Clausen | 8872293 | 2013-06-14 13:16:53 +0200 | [diff] [blame] | 2457 | list_del(&path->list); |
Lars-Peter Clausen | 8872293 | 2013-06-14 13:16:53 +0200 | [diff] [blame] | 2458 | kfree(path); |
| 2459 | } |
| 2460 | |
Lars-Peter Clausen | b97e269 | 2015-07-21 18:11:07 +0200 | [diff] [blame] | 2461 | void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w) |
| 2462 | { |
| 2463 | struct snd_soc_dapm_path *p, *next_p; |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2464 | enum snd_soc_dapm_direction dir; |
Lars-Peter Clausen | b97e269 | 2015-07-21 18:11:07 +0200 | [diff] [blame] | 2465 | |
| 2466 | list_del(&w->list); |
| 2467 | /* |
| 2468 | * remove source and sink paths associated to this widget. |
| 2469 | * While removing the path, remove reference to it from both |
| 2470 | * source and sink widgets so that path is removed only once. |
| 2471 | */ |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2472 | snd_soc_dapm_for_each_direction(dir) { |
| 2473 | snd_soc_dapm_widget_for_each_path_safe(w, dir, p, next_p) |
| 2474 | dapm_free_path(p); |
| 2475 | } |
Lars-Peter Clausen | b97e269 | 2015-07-21 18:11:07 +0200 | [diff] [blame] | 2476 | |
| 2477 | kfree(w->kcontrols); |
Lars-Peter Clausen | 4806896 | 2015-07-21 18:11:08 +0200 | [diff] [blame] | 2478 | kfree_const(w->name); |
Pierre-Louis Bossart | 199ed3e | 2019-02-01 11:05:12 -0600 | [diff] [blame] | 2479 | kfree_const(w->sname); |
Lars-Peter Clausen | b97e269 | 2015-07-21 18:11:07 +0200 | [diff] [blame] | 2480 | kfree(w); |
| 2481 | } |
| 2482 | |
Jyri Sarha | fd589a1 | 2015-11-10 18:12:42 +0200 | [diff] [blame] | 2483 | void snd_soc_dapm_reset_cache(struct snd_soc_dapm_context *dapm) |
| 2484 | { |
| 2485 | dapm->path_sink_cache.widget = NULL; |
| 2486 | dapm->path_source_cache.widget = NULL; |
| 2487 | } |
| 2488 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2489 | /* free all dapm widgets and resources */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2490 | static void dapm_free_widgets(struct snd_soc_dapm_context *dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2491 | { |
| 2492 | struct snd_soc_dapm_widget *w, *next_w; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2493 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2494 | list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) { |
| 2495 | if (w->dapm != dapm) |
| 2496 | continue; |
Lars-Peter Clausen | b97e269 | 2015-07-21 18:11:07 +0200 | [diff] [blame] | 2497 | snd_soc_dapm_free_widget(w); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2498 | } |
Jyri Sarha | fd589a1 | 2015-11-10 18:12:42 +0200 | [diff] [blame] | 2499 | snd_soc_dapm_reset_cache(dapm); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2500 | } |
| 2501 | |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 2502 | static struct snd_soc_dapm_widget *dapm_find_widget( |
| 2503 | struct snd_soc_dapm_context *dapm, const char *pin, |
| 2504 | bool search_other_contexts) |
| 2505 | { |
| 2506 | struct snd_soc_dapm_widget *w; |
| 2507 | struct snd_soc_dapm_widget *fallback = NULL; |
| 2508 | |
| 2509 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 2510 | if (!strcmp(w->name, pin)) { |
| 2511 | if (w->dapm == dapm) |
| 2512 | return w; |
| 2513 | else |
| 2514 | fallback = w; |
| 2515 | } |
| 2516 | } |
| 2517 | |
| 2518 | if (search_other_contexts) |
| 2519 | return fallback; |
| 2520 | |
| 2521 | return NULL; |
| 2522 | } |
| 2523 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2524 | static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm, |
Mark Brown | 1649923 | 2009-01-07 18:25:13 +0000 | [diff] [blame] | 2525 | const char *pin, int status) |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2526 | { |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 2527 | struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true); |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2528 | |
Mark Brown | f9fa2b1 | 2014-03-06 16:49:11 +0800 | [diff] [blame] | 2529 | dapm_assert_locked(dapm); |
| 2530 | |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 2531 | if (!w) { |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 2532 | dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin); |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 2533 | return -EINVAL; |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2534 | } |
| 2535 | |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 2536 | if (w->connected != status) { |
Mark Brown | 1a8b2d9 | 2012-02-16 11:50:07 -0800 | [diff] [blame] | 2537 | dapm_mark_dirty(w, "pin configuration"); |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 2538 | dapm_widget_invalidate_input_paths(w); |
| 2539 | dapm_widget_invalidate_output_paths(w); |
| 2540 | } |
Mark Brown | 1a8b2d9 | 2012-02-16 11:50:07 -0800 | [diff] [blame] | 2541 | |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 2542 | w->connected = status; |
| 2543 | if (status == 0) |
| 2544 | w->force = 0; |
Mark Brown | 0d86733 | 2011-04-06 11:38:14 +0900 | [diff] [blame] | 2545 | |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 2546 | return 0; |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2547 | } |
| 2548 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2549 | /** |
Charles Keepax | 3eb29df | 2014-02-18 15:22:15 +0000 | [diff] [blame] | 2550 | * snd_soc_dapm_sync_unlocked - scan and power dapm paths |
| 2551 | * @dapm: DAPM context |
| 2552 | * |
| 2553 | * Walks all dapm audio paths and powers widgets according to their |
| 2554 | * stream or path usage. |
| 2555 | * |
| 2556 | * Requires external locking. |
| 2557 | * |
| 2558 | * Returns 0 for success. |
| 2559 | */ |
| 2560 | int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm) |
| 2561 | { |
| 2562 | /* |
| 2563 | * Suppress early reports (eg, jacks syncing their state) to avoid |
| 2564 | * silly DAPM runs during card startup. |
| 2565 | */ |
| 2566 | if (!dapm->card || !dapm->card->instantiated) |
| 2567 | return 0; |
| 2568 | |
| 2569 | return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP); |
| 2570 | } |
| 2571 | EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked); |
| 2572 | |
| 2573 | /** |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2574 | * snd_soc_dapm_sync - scan and power dapm paths |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2575 | * @dapm: DAPM context |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2576 | * |
| 2577 | * Walks all dapm audio paths and powers widgets according to their |
| 2578 | * stream or path usage. |
| 2579 | * |
| 2580 | * Returns 0 for success. |
| 2581 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2582 | int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2583 | { |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 2584 | int ret; |
| 2585 | |
Liam Girdwood | 3cd0434 | 2012-03-09 12:02:08 +0000 | [diff] [blame] | 2586 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Charles Keepax | 3eb29df | 2014-02-18 15:22:15 +0000 | [diff] [blame] | 2587 | ret = snd_soc_dapm_sync_unlocked(dapm); |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 2588 | mutex_unlock(&dapm->card->dapm_mutex); |
| 2589 | return ret; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2590 | } |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2591 | EXPORT_SYMBOL_GPL(snd_soc_dapm_sync); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2592 | |
Charles Keepax | 078a85f | 2019-01-31 13:30:18 +0000 | [diff] [blame] | 2593 | static int dapm_update_dai_chan(struct snd_soc_dapm_path *p, |
| 2594 | struct snd_soc_dapm_widget *w, |
| 2595 | int channels) |
| 2596 | { |
| 2597 | switch (w->id) { |
| 2598 | case snd_soc_dapm_aif_out: |
| 2599 | case snd_soc_dapm_aif_in: |
| 2600 | break; |
| 2601 | default: |
| 2602 | return 0; |
| 2603 | } |
| 2604 | |
| 2605 | dev_dbg(w->dapm->dev, "%s DAI route %s -> %s\n", |
| 2606 | w->channel < channels ? "Connecting" : "Disconnecting", |
| 2607 | p->source->name, p->sink->name); |
| 2608 | |
| 2609 | if (w->channel < channels) |
| 2610 | soc_dapm_connect_path(p, true, "dai update"); |
| 2611 | else |
| 2612 | soc_dapm_connect_path(p, false, "dai update"); |
| 2613 | |
| 2614 | return 0; |
| 2615 | } |
| 2616 | |
| 2617 | static int dapm_update_dai_unlocked(struct snd_pcm_substream *substream, |
| 2618 | struct snd_pcm_hw_params *params, |
| 2619 | struct snd_soc_dai *dai) |
| 2620 | { |
| 2621 | int dir = substream->stream; |
| 2622 | int channels = params_channels(params); |
| 2623 | struct snd_soc_dapm_path *p; |
| 2624 | struct snd_soc_dapm_widget *w; |
| 2625 | int ret; |
| 2626 | |
| 2627 | if (dir == SNDRV_PCM_STREAM_PLAYBACK) |
| 2628 | w = dai->playback_widget; |
| 2629 | else |
| 2630 | w = dai->capture_widget; |
| 2631 | |
Charles Keepax | cf17a5f | 2019-02-06 11:13:59 +0000 | [diff] [blame] | 2632 | if (!w) |
| 2633 | return 0; |
| 2634 | |
Charles Keepax | 078a85f | 2019-01-31 13:30:18 +0000 | [diff] [blame] | 2635 | dev_dbg(dai->dev, "Update DAI routes for %s %s\n", dai->name, |
| 2636 | dir == SNDRV_PCM_STREAM_PLAYBACK ? "playback" : "capture"); |
| 2637 | |
| 2638 | snd_soc_dapm_widget_for_each_sink_path(w, p) { |
| 2639 | ret = dapm_update_dai_chan(p, p->sink, channels); |
| 2640 | if (ret < 0) |
| 2641 | return ret; |
| 2642 | } |
| 2643 | |
| 2644 | snd_soc_dapm_widget_for_each_source_path(w, p) { |
| 2645 | ret = dapm_update_dai_chan(p, p->source, channels); |
| 2646 | if (ret < 0) |
| 2647 | return ret; |
| 2648 | } |
| 2649 | |
| 2650 | return 0; |
| 2651 | } |
| 2652 | |
| 2653 | int snd_soc_dapm_update_dai(struct snd_pcm_substream *substream, |
| 2654 | struct snd_pcm_hw_params *params, |
| 2655 | struct snd_soc_dai *dai) |
| 2656 | { |
| 2657 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| 2658 | int ret; |
| 2659 | |
| 2660 | mutex_lock_nested(&rtd->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
| 2661 | ret = dapm_update_dai_unlocked(substream, params, dai); |
| 2662 | mutex_unlock(&rtd->card->dapm_mutex); |
| 2663 | |
| 2664 | return ret; |
| 2665 | } |
| 2666 | EXPORT_SYMBOL_GPL(snd_soc_dapm_update_dai); |
| 2667 | |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2668 | /* |
| 2669 | * dapm_update_widget_flags() - Re-compute widget sink and source flags |
| 2670 | * @w: The widget for which to update the flags |
| 2671 | * |
| 2672 | * Some widgets have a dynamic category which depends on which neighbors they |
| 2673 | * are connected to. This function update the category for these widgets. |
| 2674 | * |
| 2675 | * This function must be called whenever a path is added or removed to a widget. |
| 2676 | */ |
| 2677 | static void dapm_update_widget_flags(struct snd_soc_dapm_widget *w) |
| 2678 | { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2679 | enum snd_soc_dapm_direction dir; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2680 | struct snd_soc_dapm_path *p; |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2681 | unsigned int ep; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2682 | |
| 2683 | switch (w->id) { |
| 2684 | case snd_soc_dapm_input: |
Peter Meerwald-Stadler | c804600 | 2016-08-16 16:56:17 +0200 | [diff] [blame] | 2685 | /* On a fully routed card an input is never a source */ |
Lars-Peter Clausen | 86d7500 | 2014-12-21 11:05:44 +0100 | [diff] [blame] | 2686 | if (w->dapm->card->fully_routed) |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2687 | return; |
| 2688 | ep = SND_SOC_DAPM_EP_SOURCE; |
Lars-Peter Clausen | e63bfd4 | 2015-07-26 19:05:00 +0200 | [diff] [blame] | 2689 | snd_soc_dapm_widget_for_each_source_path(w, p) { |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2690 | if (p->source->id == snd_soc_dapm_micbias || |
| 2691 | p->source->id == snd_soc_dapm_mic || |
| 2692 | p->source->id == snd_soc_dapm_line || |
| 2693 | p->source->id == snd_soc_dapm_output) { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2694 | ep = 0; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2695 | break; |
| 2696 | } |
| 2697 | } |
| 2698 | break; |
| 2699 | case snd_soc_dapm_output: |
Lars-Peter Clausen | 86d7500 | 2014-12-21 11:05:44 +0100 | [diff] [blame] | 2700 | /* On a fully routed card a output is never a sink */ |
| 2701 | if (w->dapm->card->fully_routed) |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2702 | return; |
| 2703 | ep = SND_SOC_DAPM_EP_SINK; |
Lars-Peter Clausen | e63bfd4 | 2015-07-26 19:05:00 +0200 | [diff] [blame] | 2704 | snd_soc_dapm_widget_for_each_sink_path(w, p) { |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2705 | if (p->sink->id == snd_soc_dapm_spk || |
| 2706 | p->sink->id == snd_soc_dapm_hp || |
| 2707 | p->sink->id == snd_soc_dapm_line || |
| 2708 | p->sink->id == snd_soc_dapm_input) { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2709 | ep = 0; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2710 | break; |
| 2711 | } |
| 2712 | } |
| 2713 | break; |
| 2714 | case snd_soc_dapm_line: |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2715 | ep = 0; |
| 2716 | snd_soc_dapm_for_each_direction(dir) { |
| 2717 | if (!list_empty(&w->edges[dir])) |
| 2718 | ep |= SND_SOC_DAPM_DIR_TO_EP(dir); |
| 2719 | } |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2720 | break; |
| 2721 | default: |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2722 | return; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2723 | } |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2724 | |
| 2725 | w->is_ep = ep; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2726 | } |
| 2727 | |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 2728 | static int snd_soc_dapm_check_dynamic_path(struct snd_soc_dapm_context *dapm, |
| 2729 | struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *sink, |
| 2730 | const char *control) |
| 2731 | { |
| 2732 | bool dynamic_source = false; |
| 2733 | bool dynamic_sink = false; |
| 2734 | |
| 2735 | if (!control) |
| 2736 | return 0; |
| 2737 | |
| 2738 | switch (source->id) { |
| 2739 | case snd_soc_dapm_demux: |
| 2740 | dynamic_source = true; |
| 2741 | break; |
| 2742 | default: |
| 2743 | break; |
| 2744 | } |
| 2745 | |
| 2746 | switch (sink->id) { |
| 2747 | case snd_soc_dapm_mux: |
| 2748 | case snd_soc_dapm_switch: |
| 2749 | case snd_soc_dapm_mixer: |
| 2750 | case snd_soc_dapm_mixer_named_ctl: |
| 2751 | dynamic_sink = true; |
| 2752 | break; |
| 2753 | default: |
| 2754 | break; |
| 2755 | } |
| 2756 | |
| 2757 | if (dynamic_source && dynamic_sink) { |
| 2758 | dev_err(dapm->dev, |
| 2759 | "Direct connection between demux and mixer/mux not supported for path %s -> [%s] -> %s\n", |
| 2760 | source->name, control, sink->name); |
| 2761 | return -EINVAL; |
| 2762 | } else if (!dynamic_source && !dynamic_sink) { |
| 2763 | dev_err(dapm->dev, |
| 2764 | "Control not supported for path %s -> [%s] -> %s\n", |
| 2765 | source->name, control, sink->name); |
| 2766 | return -EINVAL; |
| 2767 | } |
| 2768 | |
| 2769 | return 0; |
| 2770 | } |
| 2771 | |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2772 | static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm, |
| 2773 | struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink, |
| 2774 | const char *control, |
| 2775 | int (*connected)(struct snd_soc_dapm_widget *source, |
| 2776 | struct snd_soc_dapm_widget *sink)) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2777 | { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2778 | struct snd_soc_dapm_widget *widgets[2]; |
| 2779 | enum snd_soc_dapm_direction dir; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2780 | struct snd_soc_dapm_path *path; |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2781 | int ret; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2782 | |
Lars-Peter Clausen | e409dfb | 2014-10-25 17:42:02 +0200 | [diff] [blame] | 2783 | if (wsink->is_supply && !wsource->is_supply) { |
| 2784 | dev_err(dapm->dev, |
| 2785 | "Connecting non-supply widget to supply widget is not supported (%s -> %s)\n", |
| 2786 | wsource->name, wsink->name); |
| 2787 | return -EINVAL; |
| 2788 | } |
| 2789 | |
| 2790 | if (connected && !wsource->is_supply) { |
| 2791 | dev_err(dapm->dev, |
| 2792 | "connected() callback only supported for supply widgets (%s -> %s)\n", |
| 2793 | wsource->name, wsink->name); |
| 2794 | return -EINVAL; |
| 2795 | } |
| 2796 | |
| 2797 | if (wsource->is_supply && control) { |
| 2798 | dev_err(dapm->dev, |
| 2799 | "Conditional paths are not supported for supply widgets (%s -> [%s] -> %s)\n", |
| 2800 | wsource->name, control, wsink->name); |
| 2801 | return -EINVAL; |
| 2802 | } |
| 2803 | |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 2804 | ret = snd_soc_dapm_check_dynamic_path(dapm, wsource, wsink, control); |
| 2805 | if (ret) |
| 2806 | return ret; |
| 2807 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2808 | path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL); |
| 2809 | if (!path) |
| 2810 | return -ENOMEM; |
| 2811 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2812 | path->node[SND_SOC_DAPM_DIR_IN] = wsource; |
| 2813 | path->node[SND_SOC_DAPM_DIR_OUT] = wsink; |
| 2814 | widgets[SND_SOC_DAPM_DIR_IN] = wsource; |
| 2815 | widgets[SND_SOC_DAPM_DIR_OUT] = wsink; |
| 2816 | |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2817 | path->connected = connected; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2818 | INIT_LIST_HEAD(&path->list); |
Mark Brown | 69c2d34 | 2013-08-13 00:20:36 +0100 | [diff] [blame] | 2819 | INIT_LIST_HEAD(&path->list_kcontrol); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2820 | |
Lars-Peter Clausen | c1862c8 | 2014-10-25 17:42:00 +0200 | [diff] [blame] | 2821 | if (wsource->is_supply || wsink->is_supply) |
| 2822 | path->is_supply = 1; |
| 2823 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2824 | /* connect static paths */ |
| 2825 | if (control == NULL) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2826 | path->connect = 1; |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 2827 | } else { |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 2828 | switch (wsource->id) { |
| 2829 | case snd_soc_dapm_demux: |
| 2830 | ret = dapm_connect_mux(dapm, path, control, wsource); |
| 2831 | if (ret) |
| 2832 | goto err; |
| 2833 | break; |
| 2834 | default: |
| 2835 | break; |
| 2836 | } |
| 2837 | |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 2838 | switch (wsink->id) { |
| 2839 | case snd_soc_dapm_mux: |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 2840 | ret = dapm_connect_mux(dapm, path, control, wsink); |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 2841 | if (ret != 0) |
| 2842 | goto err; |
| 2843 | break; |
| 2844 | case snd_soc_dapm_switch: |
| 2845 | case snd_soc_dapm_mixer: |
| 2846 | case snd_soc_dapm_mixer_named_ctl: |
| 2847 | ret = dapm_connect_mixer(dapm, path, control); |
| 2848 | if (ret != 0) |
| 2849 | goto err; |
| 2850 | break; |
| 2851 | default: |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 2852 | break; |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 2853 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2854 | } |
| 2855 | |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 2856 | list_add(&path->list, &dapm->card->paths); |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2857 | snd_soc_dapm_for_each_direction(dir) |
| 2858 | list_add(&path->list_node[dir], &widgets[dir]->edges[dir]); |
Lars-Peter Clausen | 5fe5b76 | 2014-10-25 17:41:58 +0200 | [diff] [blame] | 2859 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 2860 | snd_soc_dapm_for_each_direction(dir) { |
| 2861 | dapm_update_widget_flags(widgets[dir]); |
| 2862 | dapm_mark_dirty(widgets[dir], "Route added"); |
| 2863 | } |
Mark Brown | fabd038 | 2012-07-05 17:20:06 +0100 | [diff] [blame] | 2864 | |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 2865 | if (dapm->card->instantiated && path->connect) |
| 2866 | dapm_path_invalidate(path); |
| 2867 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2868 | return 0; |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2869 | err: |
| 2870 | kfree(path); |
| 2871 | return ret; |
| 2872 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2873 | |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2874 | static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm, |
Lars-Peter Clausen | a4e9154 | 2014-05-07 16:20:25 +0200 | [diff] [blame] | 2875 | const struct snd_soc_dapm_route *route) |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2876 | { |
| 2877 | struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w; |
| 2878 | struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL; |
| 2879 | const char *sink; |
| 2880 | const char *source; |
| 2881 | char prefixed_sink[80]; |
| 2882 | char prefixed_source[80]; |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 2883 | const char *prefix; |
Zhiwei Jiang | 411db2a | 2019-01-31 19:30:05 +0800 | [diff] [blame] | 2884 | unsigned int sink_ref = 0; |
| 2885 | unsigned int source_ref = 0; |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2886 | int ret; |
| 2887 | |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 2888 | prefix = soc_dapm_prefix(dapm); |
| 2889 | if (prefix) { |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2890 | snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s", |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 2891 | prefix, route->sink); |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2892 | sink = prefixed_sink; |
| 2893 | snprintf(prefixed_source, sizeof(prefixed_source), "%s %s", |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 2894 | prefix, route->source); |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2895 | source = prefixed_source; |
| 2896 | } else { |
| 2897 | sink = route->sink; |
| 2898 | source = route->source; |
| 2899 | } |
| 2900 | |
Charles Keepax | 45a110a | 2015-05-11 13:50:30 +0100 | [diff] [blame] | 2901 | wsource = dapm_wcache_lookup(&dapm->path_source_cache, source); |
| 2902 | wsink = dapm_wcache_lookup(&dapm->path_sink_cache, sink); |
| 2903 | |
| 2904 | if (wsink && wsource) |
| 2905 | goto skip_search; |
| 2906 | |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2907 | /* |
| 2908 | * find src and dest widgets over all widgets but favor a widget from |
| 2909 | * current DAPM context |
| 2910 | */ |
| 2911 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 2912 | if (!wsink && !(strcmp(w->name, sink))) { |
| 2913 | wtsink = w; |
Charles Keepax | 70c7510 | 2015-05-07 11:33:58 +0100 | [diff] [blame] | 2914 | if (w->dapm == dapm) { |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2915 | wsink = w; |
Charles Keepax | 70c7510 | 2015-05-07 11:33:58 +0100 | [diff] [blame] | 2916 | if (wsource) |
| 2917 | break; |
| 2918 | } |
Zhiwei Jiang | 411db2a | 2019-01-31 19:30:05 +0800 | [diff] [blame] | 2919 | sink_ref++; |
| 2920 | if (sink_ref > 1) |
| 2921 | dev_warn(dapm->dev, |
| 2922 | "ASoC: sink widget %s overwritten\n", |
| 2923 | w->name); |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2924 | continue; |
| 2925 | } |
| 2926 | if (!wsource && !(strcmp(w->name, source))) { |
| 2927 | wtsource = w; |
Charles Keepax | 70c7510 | 2015-05-07 11:33:58 +0100 | [diff] [blame] | 2928 | if (w->dapm == dapm) { |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2929 | wsource = w; |
Charles Keepax | 70c7510 | 2015-05-07 11:33:58 +0100 | [diff] [blame] | 2930 | if (wsink) |
| 2931 | break; |
| 2932 | } |
Zhiwei Jiang | 411db2a | 2019-01-31 19:30:05 +0800 | [diff] [blame] | 2933 | source_ref++; |
| 2934 | if (source_ref > 1) |
| 2935 | dev_warn(dapm->dev, |
| 2936 | "ASoC: source widget %s overwritten\n", |
| 2937 | w->name); |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2938 | } |
| 2939 | } |
| 2940 | /* use widget from another DAPM context if not found from this */ |
| 2941 | if (!wsink) |
| 2942 | wsink = wtsink; |
| 2943 | if (!wsource) |
| 2944 | wsource = wtsource; |
| 2945 | |
| 2946 | if (wsource == NULL) { |
| 2947 | dev_err(dapm->dev, "ASoC: no source widget found for %s\n", |
| 2948 | route->source); |
| 2949 | return -ENODEV; |
| 2950 | } |
| 2951 | if (wsink == NULL) { |
| 2952 | dev_err(dapm->dev, "ASoC: no sink widget found for %s\n", |
| 2953 | route->sink); |
| 2954 | return -ENODEV; |
| 2955 | } |
| 2956 | |
Charles Keepax | 45a110a | 2015-05-11 13:50:30 +0100 | [diff] [blame] | 2957 | skip_search: |
| 2958 | dapm_wcache_update(&dapm->path_sink_cache, wsink); |
| 2959 | dapm_wcache_update(&dapm->path_source_cache, wsource); |
| 2960 | |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2961 | ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control, |
| 2962 | route->connected); |
| 2963 | if (ret) |
| 2964 | goto err; |
| 2965 | |
| 2966 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2967 | err: |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 2968 | dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n", |
Lars-Peter Clausen | 2553628 | 2013-07-29 17:14:02 +0200 | [diff] [blame] | 2969 | source, route->control, sink); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2970 | return ret; |
| 2971 | } |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 2972 | |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 2973 | static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm, |
| 2974 | const struct snd_soc_dapm_route *route) |
| 2975 | { |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 2976 | struct snd_soc_dapm_widget *wsource, *wsink; |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 2977 | struct snd_soc_dapm_path *path, *p; |
| 2978 | const char *sink; |
| 2979 | const char *source; |
| 2980 | char prefixed_sink[80]; |
| 2981 | char prefixed_source[80]; |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 2982 | const char *prefix; |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 2983 | |
| 2984 | if (route->control) { |
| 2985 | dev_err(dapm->dev, |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 2986 | "ASoC: Removal of routes with controls not supported\n"); |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 2987 | return -EINVAL; |
| 2988 | } |
| 2989 | |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 2990 | prefix = soc_dapm_prefix(dapm); |
| 2991 | if (prefix) { |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 2992 | snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s", |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 2993 | prefix, route->sink); |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 2994 | sink = prefixed_sink; |
| 2995 | snprintf(prefixed_source, sizeof(prefixed_source), "%s %s", |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 2996 | prefix, route->source); |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 2997 | source = prefixed_source; |
| 2998 | } else { |
| 2999 | sink = route->sink; |
| 3000 | source = route->source; |
| 3001 | } |
| 3002 | |
| 3003 | path = NULL; |
| 3004 | list_for_each_entry(p, &dapm->card->paths, list) { |
| 3005 | if (strcmp(p->source->name, source) != 0) |
| 3006 | continue; |
| 3007 | if (strcmp(p->sink->name, sink) != 0) |
| 3008 | continue; |
| 3009 | path = p; |
| 3010 | break; |
| 3011 | } |
| 3012 | |
| 3013 | if (path) { |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3014 | wsource = path->source; |
| 3015 | wsink = path->sink; |
| 3016 | |
| 3017 | dapm_mark_dirty(wsource, "Route removed"); |
| 3018 | dapm_mark_dirty(wsink, "Route removed"); |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 3019 | if (path->connect) |
| 3020 | dapm_path_invalidate(path); |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 3021 | |
Lars-Peter Clausen | 8872293 | 2013-06-14 13:16:53 +0200 | [diff] [blame] | 3022 | dapm_free_path(path); |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3023 | |
| 3024 | /* Update any path related flags */ |
| 3025 | dapm_update_widget_flags(wsource); |
| 3026 | dapm_update_widget_flags(wsink); |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 3027 | } else { |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 3028 | dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n", |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 3029 | source, sink); |
| 3030 | } |
| 3031 | |
| 3032 | return 0; |
| 3033 | } |
| 3034 | |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3035 | /** |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3036 | * snd_soc_dapm_add_routes - Add routes between DAPM widgets |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 3037 | * @dapm: DAPM context |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3038 | * @route: audio routes |
| 3039 | * @num: number of routes |
| 3040 | * |
| 3041 | * Connects 2 dapm widgets together via a named audio path. The sink is |
| 3042 | * the widget receiving the audio signal, whilst the source is the sender |
| 3043 | * of the audio signal. |
| 3044 | * |
| 3045 | * Returns 0 for success else error. On error all resources can be freed |
| 3046 | * with a call to snd_soc_card_free(). |
| 3047 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 3048 | int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm, |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3049 | const struct snd_soc_dapm_route *route, int num) |
| 3050 | { |
Mark Brown | 62d4a4b | 2012-06-22 12:21:49 +0100 | [diff] [blame] | 3051 | int i, r, ret = 0; |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3052 | |
Stuart Henderson | f19c181 | 2017-09-21 11:02:12 +0100 | [diff] [blame] | 3053 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3054 | for (i = 0; i < num; i++) { |
Lars-Peter Clausen | a4e9154 | 2014-05-07 16:20:25 +0200 | [diff] [blame] | 3055 | r = snd_soc_dapm_add_route(dapm, route); |
Mark Brown | 62d4a4b | 2012-06-22 12:21:49 +0100 | [diff] [blame] | 3056 | if (r < 0) { |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 3057 | dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n", |
| 3058 | route->source, |
| 3059 | route->control ? route->control : "direct", |
| 3060 | route->sink); |
Mark Brown | 62d4a4b | 2012-06-22 12:21:49 +0100 | [diff] [blame] | 3061 | ret = r; |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3062 | } |
| 3063 | route++; |
| 3064 | } |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3065 | mutex_unlock(&dapm->card->dapm_mutex); |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3066 | |
Dan Carpenter | 60884c2 | 2012-04-13 22:25:43 +0300 | [diff] [blame] | 3067 | return ret; |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3068 | } |
| 3069 | EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes); |
| 3070 | |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 3071 | /** |
| 3072 | * snd_soc_dapm_del_routes - Remove routes between DAPM widgets |
| 3073 | * @dapm: DAPM context |
| 3074 | * @route: audio routes |
| 3075 | * @num: number of routes |
| 3076 | * |
| 3077 | * Removes routes from the DAPM context. |
| 3078 | */ |
| 3079 | int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm, |
| 3080 | const struct snd_soc_dapm_route *route, int num) |
| 3081 | { |
Rajan Vaja | e066ea2 | 2016-02-11 11:23:35 +0530 | [diff] [blame] | 3082 | int i; |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 3083 | |
Stuart Henderson | f19c181 | 2017-09-21 11:02:12 +0100 | [diff] [blame] | 3084 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 3085 | for (i = 0; i < num; i++) { |
| 3086 | snd_soc_dapm_del_route(dapm, route); |
| 3087 | route++; |
| 3088 | } |
| 3089 | mutex_unlock(&dapm->card->dapm_mutex); |
| 3090 | |
Rajan Vaja | e066ea2 | 2016-02-11 11:23:35 +0530 | [diff] [blame] | 3091 | return 0; |
Mark Brown | efcc3c6 | 2012-07-05 17:24:19 +0100 | [diff] [blame] | 3092 | } |
| 3093 | EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes); |
| 3094 | |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3095 | static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm, |
| 3096 | const struct snd_soc_dapm_route *route) |
| 3097 | { |
| 3098 | struct snd_soc_dapm_widget *source = dapm_find_widget(dapm, |
| 3099 | route->source, |
| 3100 | true); |
| 3101 | struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm, |
| 3102 | route->sink, |
| 3103 | true); |
| 3104 | struct snd_soc_dapm_path *path; |
| 3105 | int count = 0; |
| 3106 | |
| 3107 | if (!source) { |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 3108 | dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n", |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3109 | route->source); |
| 3110 | return -ENODEV; |
| 3111 | } |
| 3112 | |
| 3113 | if (!sink) { |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 3114 | dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n", |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3115 | route->sink); |
| 3116 | return -ENODEV; |
| 3117 | } |
| 3118 | |
| 3119 | if (route->control || route->connected) |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 3120 | dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n", |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3121 | route->source, route->sink); |
| 3122 | |
Lars-Peter Clausen | e63bfd4 | 2015-07-26 19:05:00 +0200 | [diff] [blame] | 3123 | snd_soc_dapm_widget_for_each_sink_path(source, path) { |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3124 | if (path->sink == sink) { |
| 3125 | path->weak = 1; |
| 3126 | count++; |
| 3127 | } |
| 3128 | } |
| 3129 | |
| 3130 | if (count == 0) |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 3131 | dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n", |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3132 | route->source, route->sink); |
| 3133 | if (count > 1) |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 3134 | dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n", |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3135 | count, route->source, route->sink); |
| 3136 | |
| 3137 | return 0; |
| 3138 | } |
| 3139 | |
| 3140 | /** |
| 3141 | * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak |
| 3142 | * @dapm: DAPM context |
| 3143 | * @route: audio routes |
| 3144 | * @num: number of routes |
| 3145 | * |
| 3146 | * Mark existing routes matching those specified in the passed array |
| 3147 | * as being weak, meaning that they are ignored for the purpose of |
| 3148 | * power decisions. The main intended use case is for sidetone paths |
| 3149 | * which couple audio between other independent paths if they are both |
| 3150 | * active in order to make the combination work better at the user |
| 3151 | * level but which aren't intended to be "used". |
| 3152 | * |
| 3153 | * Note that CODEC drivers should not use this as sidetone type paths |
| 3154 | * can frequently also be used as bypass paths. |
| 3155 | */ |
| 3156 | int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm, |
| 3157 | const struct snd_soc_dapm_route *route, int num) |
| 3158 | { |
| 3159 | int i, err; |
| 3160 | int ret = 0; |
| 3161 | |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3162 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT); |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3163 | for (i = 0; i < num; i++) { |
| 3164 | err = snd_soc_dapm_weak_route(dapm, route); |
| 3165 | if (err) |
| 3166 | ret = err; |
| 3167 | route++; |
| 3168 | } |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3169 | mutex_unlock(&dapm->card->dapm_mutex); |
Mark Brown | bf3a9e1 | 2011-06-13 16:42:29 +0100 | [diff] [blame] | 3170 | |
| 3171 | return ret; |
| 3172 | } |
| 3173 | EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes); |
| 3174 | |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 3175 | /** |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3176 | * snd_soc_dapm_new_widgets - add new dapm widgets |
Jonathan Corbet | 628536e | 2015-08-25 01:14:48 -0600 | [diff] [blame] | 3177 | * @card: card to be checked for new dapm widgets |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3178 | * |
| 3179 | * Checks the codec for any new dapm widgets and creates them if found. |
| 3180 | * |
| 3181 | * Returns 0 for success. |
| 3182 | */ |
Lars-Peter Clausen | 824ef82 | 2013-08-27 15:51:01 +0200 | [diff] [blame] | 3183 | int snd_soc_dapm_new_widgets(struct snd_soc_card *card) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3184 | { |
| 3185 | struct snd_soc_dapm_widget *w; |
Mark Brown | b66a70d | 2011-02-09 18:04:11 +0000 | [diff] [blame] | 3186 | unsigned int val; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3187 | |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 3188 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT); |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3189 | |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 3190 | list_for_each_entry(w, &card->widgets, list) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3191 | { |
| 3192 | if (w->new) |
| 3193 | continue; |
| 3194 | |
Stephen Warren | fad5988 | 2011-04-28 17:37:59 -0600 | [diff] [blame] | 3195 | if (w->num_kcontrols) { |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 3196 | w->kcontrols = kcalloc(w->num_kcontrols, |
Stephen Warren | fad5988 | 2011-04-28 17:37:59 -0600 | [diff] [blame] | 3197 | sizeof(struct snd_kcontrol *), |
| 3198 | GFP_KERNEL); |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3199 | if (!w->kcontrols) { |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 3200 | mutex_unlock(&card->dapm_mutex); |
Stephen Warren | fad5988 | 2011-04-28 17:37:59 -0600 | [diff] [blame] | 3201 | return -ENOMEM; |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3202 | } |
Stephen Warren | fad5988 | 2011-04-28 17:37:59 -0600 | [diff] [blame] | 3203 | } |
| 3204 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3205 | switch(w->id) { |
| 3206 | case snd_soc_dapm_switch: |
| 3207 | case snd_soc_dapm_mixer: |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 3208 | case snd_soc_dapm_mixer_named_ctl: |
Lars-Peter Clausen | 4b80b8c | 2011-06-09 13:22:36 +0200 | [diff] [blame] | 3209 | dapm_new_mixer(w); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3210 | break; |
| 3211 | case snd_soc_dapm_mux: |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 3212 | case snd_soc_dapm_demux: |
Lars-Peter Clausen | 4b80b8c | 2011-06-09 13:22:36 +0200 | [diff] [blame] | 3213 | dapm_new_mux(w); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3214 | break; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3215 | case snd_soc_dapm_pga: |
Seppo Ingalsuo | 882c8b4a | 2019-04-30 18:11:34 -0500 | [diff] [blame] | 3216 | case snd_soc_dapm_effect: |
Olaya, Margarita | d88429a | 2010-12-10 21:11:44 -0600 | [diff] [blame] | 3217 | case snd_soc_dapm_out_drv: |
Lars-Peter Clausen | 4b80b8c | 2011-06-09 13:22:36 +0200 | [diff] [blame] | 3218 | dapm_new_pga(w); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3219 | break; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 3220 | case snd_soc_dapm_dai_link: |
| 3221 | dapm_new_dai_link(w); |
| 3222 | break; |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3223 | default: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3224 | break; |
| 3225 | } |
Mark Brown | b66a70d | 2011-02-09 18:04:11 +0000 | [diff] [blame] | 3226 | |
| 3227 | /* Read the initial power state from the device */ |
| 3228 | if (w->reg >= 0) { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3229 | soc_dapm_read(w->dapm, w->reg, &val); |
Arun Shamanna Lakshmi | f7d3c17 | 2014-01-14 15:31:54 -0800 | [diff] [blame] | 3230 | val = val >> w->shift; |
Lars-Peter Clausen | de9ba98 | 2013-07-29 17:14:01 +0200 | [diff] [blame] | 3231 | val &= w->mask; |
| 3232 | if (val == w->on_val) |
Mark Brown | b66a70d | 2011-02-09 18:04:11 +0000 | [diff] [blame] | 3233 | w->power = 1; |
| 3234 | } |
| 3235 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3236 | w->new = 1; |
Lars-Peter Clausen | d5d1e0b | 2011-04-30 19:45:49 +0200 | [diff] [blame] | 3237 | |
Mark Brown | 7508b12 | 2011-10-05 12:09:12 +0100 | [diff] [blame] | 3238 | dapm_mark_dirty(w, "new widget"); |
Lars-Peter Clausen | d5d1e0b | 2011-04-30 19:45:49 +0200 | [diff] [blame] | 3239 | dapm_debugfs_add_widget(w); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3240 | } |
| 3241 | |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 3242 | dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP); |
| 3243 | mutex_unlock(&card->dapm_mutex); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3244 | return 0; |
| 3245 | } |
| 3246 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets); |
| 3247 | |
| 3248 | /** |
| 3249 | * snd_soc_dapm_get_volsw - dapm mixer get callback |
| 3250 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3251 | * @ucontrol: control element information |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3252 | * |
| 3253 | * Callback to get the value of a dapm mixer control. |
| 3254 | * |
| 3255 | * Returns 0 for success. |
| 3256 | */ |
| 3257 | int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol, |
| 3258 | struct snd_ctl_elem_value *ucontrol) |
| 3259 | { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3260 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol); |
| 3261 | struct snd_soc_card *card = dapm->card; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 3262 | struct soc_mixer_control *mc = |
| 3263 | (struct soc_mixer_control *)kcontrol->private_value; |
Lars-Peter Clausen | 249ce13 | 2013-10-06 13:43:49 +0200 | [diff] [blame] | 3264 | int reg = mc->reg; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 3265 | unsigned int shift = mc->shift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 3266 | int max = mc->max; |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3267 | unsigned int width = fls(max); |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 3268 | unsigned int mask = (1 << fls(max)) - 1; |
Benoît Thébaudeau | da602ab | 2012-07-03 20:18:17 +0200 | [diff] [blame] | 3269 | unsigned int invert = mc->invert; |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3270 | unsigned int reg_val, val, rval = 0; |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3271 | int ret = 0; |
Benoît Thébaudeau | da602ab | 2012-07-03 20:18:17 +0200 | [diff] [blame] | 3272 | |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 3273 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3274 | if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM) { |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3275 | ret = soc_dapm_read(dapm, reg, ®_val); |
| 3276 | val = (reg_val >> shift) & mask; |
| 3277 | |
| 3278 | if (ret == 0 && reg != mc->rreg) |
| 3279 | ret = soc_dapm_read(dapm, mc->rreg, ®_val); |
| 3280 | |
| 3281 | if (snd_soc_volsw_is_stereo(mc)) |
| 3282 | rval = (reg_val >> mc->rshift) & mask; |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3283 | } else { |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3284 | reg_val = dapm_kcontrol_get_value(kcontrol); |
| 3285 | val = reg_val & mask; |
| 3286 | |
| 3287 | if (snd_soc_volsw_is_stereo(mc)) |
| 3288 | rval = (reg_val >> width) & mask; |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3289 | } |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 3290 | mutex_unlock(&card->dapm_mutex); |
| 3291 | |
Chen-Yu Tsai | 01ad5e7 | 2016-08-27 19:27:58 +0800 | [diff] [blame] | 3292 | if (ret) |
| 3293 | return ret; |
| 3294 | |
Benoît Thébaudeau | da602ab | 2012-07-03 20:18:17 +0200 | [diff] [blame] | 3295 | if (invert) |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 3296 | ucontrol->value.integer.value[0] = max - val; |
| 3297 | else |
| 3298 | ucontrol->value.integer.value[0] = val; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3299 | |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3300 | if (snd_soc_volsw_is_stereo(mc)) { |
| 3301 | if (invert) |
| 3302 | ucontrol->value.integer.value[1] = max - rval; |
| 3303 | else |
| 3304 | ucontrol->value.integer.value[1] = rval; |
| 3305 | } |
| 3306 | |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3307 | return ret; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3308 | } |
| 3309 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw); |
| 3310 | |
| 3311 | /** |
| 3312 | * snd_soc_dapm_put_volsw - dapm mixer set callback |
| 3313 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3314 | * @ucontrol: control element information |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3315 | * |
| 3316 | * Callback to set the value of a dapm mixer control. |
| 3317 | * |
| 3318 | * Returns 0 for success. |
| 3319 | */ |
| 3320 | int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol, |
| 3321 | struct snd_ctl_elem_value *ucontrol) |
| 3322 | { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3323 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol); |
| 3324 | struct snd_soc_card *card = dapm->card; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 3325 | struct soc_mixer_control *mc = |
| 3326 | (struct soc_mixer_control *)kcontrol->private_value; |
Lars-Peter Clausen | 249ce13 | 2013-10-06 13:43:49 +0200 | [diff] [blame] | 3327 | int reg = mc->reg; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 3328 | unsigned int shift = mc->shift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 3329 | int max = mc->max; |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3330 | unsigned int width = fls(max); |
| 3331 | unsigned int mask = (1 << width) - 1; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 3332 | unsigned int invert = mc->invert; |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3333 | unsigned int val, rval = 0; |
| 3334 | int connect, rconnect = -1, change, reg_change = 0; |
Fabio Estevam | 33d9245 | 2018-02-14 13:39:05 -0200 | [diff] [blame] | 3335 | struct snd_soc_dapm_update update = {}; |
Nenghua Cao | 5276597 | 2013-12-13 20:13:49 +0800 | [diff] [blame] | 3336 | int ret = 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3337 | |
| 3338 | val = (ucontrol->value.integer.value[0] & mask); |
Benoît Thébaudeau | 8a72071 | 2012-06-18 22:41:28 +0200 | [diff] [blame] | 3339 | connect = !!val; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3340 | |
| 3341 | if (invert) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 3342 | val = max - val; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3343 | |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3344 | if (snd_soc_volsw_is_stereo(mc)) { |
| 3345 | rval = (ucontrol->value.integer.value[1] & mask); |
| 3346 | rconnect = !!rval; |
| 3347 | if (invert) |
| 3348 | rval = max - rval; |
| 3349 | } |
| 3350 | |
Liam Girdwood | 3cd0434 | 2012-03-09 12:02:08 +0000 | [diff] [blame] | 3351 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3352 | |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3353 | /* This assumes field width < (bits in unsigned int / 2) */ |
| 3354 | if (width > sizeof(unsigned int) * 8 / 2) |
| 3355 | dev_warn(dapm->dev, |
| 3356 | "ASoC: control %s field width limit exceeded\n", |
| 3357 | kcontrol->id.name); |
| 3358 | change = dapm_kcontrol_set_value(kcontrol, val | (rval << width)); |
Mark Brown | 283375c | 2009-12-07 18:09:03 +0000 | [diff] [blame] | 3359 | |
Jarkko Nikula | 18626c7 | 2014-06-09 14:20:29 +0300 | [diff] [blame] | 3360 | if (reg != SND_SOC_NOPM) { |
Jarkko Nikula | 18626c7 | 2014-06-09 14:20:29 +0300 | [diff] [blame] | 3361 | val = val << shift; |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3362 | rval = rval << mc->rshift; |
Lars-Peter Clausen | c9e065c | 2014-05-04 19:17:05 +0200 | [diff] [blame] | 3363 | |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3364 | reg_change = soc_dapm_test_bits(dapm, reg, mask << shift, val); |
| 3365 | |
| 3366 | if (snd_soc_volsw_is_stereo(mc)) |
| 3367 | reg_change |= soc_dapm_test_bits(dapm, mc->rreg, |
| 3368 | mask << mc->rshift, |
| 3369 | rval); |
Jarkko Nikula | 18626c7 | 2014-06-09 14:20:29 +0300 | [diff] [blame] | 3370 | } |
| 3371 | |
| 3372 | if (change || reg_change) { |
| 3373 | if (reg_change) { |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3374 | if (snd_soc_volsw_is_stereo(mc)) { |
| 3375 | update.has_second_set = true; |
| 3376 | update.reg2 = mc->rreg; |
| 3377 | update.mask2 = mask << mc->rshift; |
| 3378 | update.val2 = rval; |
| 3379 | } |
Jarkko Nikula | 18626c7 | 2014-06-09 14:20:29 +0300 | [diff] [blame] | 3380 | update.kcontrol = kcontrol; |
| 3381 | update.reg = reg; |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3382 | update.mask = mask << shift; |
Jarkko Nikula | 18626c7 | 2014-06-09 14:20:29 +0300 | [diff] [blame] | 3383 | update.val = val; |
| 3384 | card->update = &update; |
Lars-Peter Clausen | 249ce13 | 2013-10-06 13:43:49 +0200 | [diff] [blame] | 3385 | } |
Jarkko Nikula | 18626c7 | 2014-06-09 14:20:29 +0300 | [diff] [blame] | 3386 | change |= reg_change; |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 3387 | |
Chen-Yu Tsai | e7aa450 | 2016-11-02 15:35:59 +0800 | [diff] [blame] | 3388 | ret = soc_dapm_mixer_update_power(card, kcontrol, connect, |
| 3389 | rconnect); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 3390 | |
Lars-Peter Clausen | 564c6504 | 2013-07-29 17:13:55 +0200 | [diff] [blame] | 3391 | card->update = NULL; |
Mark Brown | 283375c | 2009-12-07 18:09:03 +0000 | [diff] [blame] | 3392 | } |
| 3393 | |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3394 | mutex_unlock(&card->dapm_mutex); |
Nenghua Cao | 5276597 | 2013-12-13 20:13:49 +0800 | [diff] [blame] | 3395 | |
| 3396 | if (ret > 0) |
| 3397 | soc_dpcm_runtime_update(card); |
| 3398 | |
Lars-Peter Clausen | 56a6783 | 2013-07-24 15:27:35 +0200 | [diff] [blame] | 3399 | return change; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3400 | } |
| 3401 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw); |
| 3402 | |
| 3403 | /** |
| 3404 | * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback |
| 3405 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3406 | * @ucontrol: control element information |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3407 | * |
| 3408 | * Callback to get the value of a dapm enumerated double mixer control. |
| 3409 | * |
| 3410 | * Returns 0 for success. |
| 3411 | */ |
| 3412 | int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol, |
| 3413 | struct snd_ctl_elem_value *ucontrol) |
| 3414 | { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3415 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol); |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 3416 | struct snd_soc_card *card = dapm->card; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3417 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Lars-Peter Clausen | 3727b49 | 2014-02-28 08:31:04 +0100 | [diff] [blame] | 3418 | unsigned int reg_val, val; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3419 | |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 3420 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
| 3421 | if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) { |
Geert Uytterhoeven | 6912831 | 2014-08-08 17:29:35 +0200 | [diff] [blame] | 3422 | int ret = soc_dapm_read(dapm, e->reg, ®_val); |
Charles Keepax | 964a0b8 | 2015-05-08 10:50:10 +0100 | [diff] [blame] | 3423 | if (ret) { |
| 3424 | mutex_unlock(&card->dapm_mutex); |
Geert Uytterhoeven | 6912831 | 2014-08-08 17:29:35 +0200 | [diff] [blame] | 3425 | return ret; |
Charles Keepax | 964a0b8 | 2015-05-08 10:50:10 +0100 | [diff] [blame] | 3426 | } |
Geert Uytterhoeven | 6912831 | 2014-08-08 17:29:35 +0200 | [diff] [blame] | 3427 | } else { |
Lars-Peter Clausen | 236aaa6 | 2014-02-28 08:31:11 +0100 | [diff] [blame] | 3428 | reg_val = dapm_kcontrol_get_value(kcontrol); |
Geert Uytterhoeven | 6912831 | 2014-08-08 17:29:35 +0200 | [diff] [blame] | 3429 | } |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 3430 | mutex_unlock(&card->dapm_mutex); |
Lars-Peter Clausen | 236aaa6 | 2014-02-28 08:31:11 +0100 | [diff] [blame] | 3431 | |
Lars-Peter Clausen | 3727b49 | 2014-02-28 08:31:04 +0100 | [diff] [blame] | 3432 | val = (reg_val >> e->shift_l) & e->mask; |
| 3433 | ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val); |
| 3434 | if (e->shift_l != e->shift_r) { |
| 3435 | val = (reg_val >> e->shift_r) & e->mask; |
| 3436 | val = snd_soc_enum_val_to_item(e, val); |
| 3437 | ucontrol->value.enumerated.item[1] = val; |
| 3438 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3439 | |
Geert Uytterhoeven | 6912831 | 2014-08-08 17:29:35 +0200 | [diff] [blame] | 3440 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3441 | } |
| 3442 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double); |
| 3443 | |
| 3444 | /** |
| 3445 | * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback |
| 3446 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3447 | * @ucontrol: control element information |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3448 | * |
| 3449 | * Callback to set the value of a dapm enumerated double mixer control. |
| 3450 | * |
| 3451 | * Returns 0 for success. |
| 3452 | */ |
| 3453 | int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol, |
| 3454 | struct snd_ctl_elem_value *ucontrol) |
| 3455 | { |
Lars-Peter Clausen | ce0fc93 | 2014-06-16 18:13:06 +0200 | [diff] [blame] | 3456 | struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol); |
| 3457 | struct snd_soc_card *card = dapm->card; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3458 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Lars-Peter Clausen | 3727b49 | 2014-02-28 08:31:04 +0100 | [diff] [blame] | 3459 | unsigned int *item = ucontrol->value.enumerated.item; |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 3460 | unsigned int val, change, reg_change = 0; |
Lars-Peter Clausen | 86767b7 | 2012-09-14 13:57:27 +0200 | [diff] [blame] | 3461 | unsigned int mask; |
Fabio Estevam | 33d9245 | 2018-02-14 13:39:05 -0200 | [diff] [blame] | 3462 | struct snd_soc_dapm_update update = {}; |
Nenghua Cao | 5276597 | 2013-12-13 20:13:49 +0800 | [diff] [blame] | 3463 | int ret = 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3464 | |
Lars-Peter Clausen | 3727b49 | 2014-02-28 08:31:04 +0100 | [diff] [blame] | 3465 | if (item[0] >= e->items) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3466 | return -EINVAL; |
Lars-Peter Clausen | 3727b49 | 2014-02-28 08:31:04 +0100 | [diff] [blame] | 3467 | |
| 3468 | val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l; |
Lars-Peter Clausen | 86767b7 | 2012-09-14 13:57:27 +0200 | [diff] [blame] | 3469 | mask = e->mask << e->shift_l; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3470 | if (e->shift_l != e->shift_r) { |
Lars-Peter Clausen | 3727b49 | 2014-02-28 08:31:04 +0100 | [diff] [blame] | 3471 | if (item[1] > e->items) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3472 | return -EINVAL; |
Chen-Yu Tsai | 071133a | 2016-08-27 19:27:59 +0800 | [diff] [blame] | 3473 | val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_r; |
Lars-Peter Clausen | 86767b7 | 2012-09-14 13:57:27 +0200 | [diff] [blame] | 3474 | mask |= e->mask << e->shift_r; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3475 | } |
| 3476 | |
Liam Girdwood | 3cd0434 | 2012-03-09 12:02:08 +0000 | [diff] [blame] | 3477 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Stephen Warren | fafd217 | 2011-04-28 17:38:00 -0600 | [diff] [blame] | 3478 | |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 3479 | change = dapm_kcontrol_set_value(kcontrol, val); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 3480 | |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 3481 | if (e->reg != SND_SOC_NOPM) |
| 3482 | reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val); |
| 3483 | |
| 3484 | if (change || reg_change) { |
| 3485 | if (reg_change) { |
Lars-Peter Clausen | 236aaa6 | 2014-02-28 08:31:11 +0100 | [diff] [blame] | 3486 | update.kcontrol = kcontrol; |
| 3487 | update.reg = e->reg; |
| 3488 | update.mask = mask; |
| 3489 | update.val = val; |
| 3490 | card->update = &update; |
| 3491 | } |
Charles Keepax | 561ed68 | 2015-05-01 12:37:26 +0100 | [diff] [blame] | 3492 | change |= reg_change; |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 3493 | |
Lars-Peter Clausen | 3727b49 | 2014-02-28 08:31:04 +0100 | [diff] [blame] | 3494 | ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e); |
Mark Brown | 1642e3d | 2009-10-05 16:24:26 +0100 | [diff] [blame] | 3495 | |
Lars-Peter Clausen | 564c6504 | 2013-07-29 17:13:55 +0200 | [diff] [blame] | 3496 | card->update = NULL; |
Stephen Warren | fafd217 | 2011-04-28 17:38:00 -0600 | [diff] [blame] | 3497 | } |
| 3498 | |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3499 | mutex_unlock(&card->dapm_mutex); |
Nenghua Cao | 5276597 | 2013-12-13 20:13:49 +0800 | [diff] [blame] | 3500 | |
| 3501 | if (ret > 0) |
| 3502 | soc_dpcm_runtime_update(card); |
| 3503 | |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 3504 | return change; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3505 | } |
| 3506 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double); |
| 3507 | |
| 3508 | /** |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3509 | * snd_soc_dapm_info_pin_switch - Info for a pin switch |
| 3510 | * |
| 3511 | * @kcontrol: mixer control |
| 3512 | * @uinfo: control element information |
| 3513 | * |
| 3514 | * Callback to provide information about a pin switch control. |
| 3515 | */ |
| 3516 | int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol, |
| 3517 | struct snd_ctl_elem_info *uinfo) |
| 3518 | { |
| 3519 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 3520 | uinfo->count = 1; |
| 3521 | uinfo->value.integer.min = 0; |
| 3522 | uinfo->value.integer.max = 1; |
| 3523 | |
| 3524 | return 0; |
| 3525 | } |
| 3526 | EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch); |
| 3527 | |
| 3528 | /** |
| 3529 | * snd_soc_dapm_get_pin_switch - Get information for a pin switch |
| 3530 | * |
| 3531 | * @kcontrol: mixer control |
| 3532 | * @ucontrol: Value |
| 3533 | */ |
| 3534 | int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol, |
| 3535 | struct snd_ctl_elem_value *ucontrol) |
| 3536 | { |
Mark Brown | 48a8c39 | 2012-02-14 17:11:15 -0800 | [diff] [blame] | 3537 | struct snd_soc_card *card = snd_kcontrol_chip(kcontrol); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3538 | const char *pin = (const char *)kcontrol->private_value; |
| 3539 | |
Liam Girdwood | 3cd0434 | 2012-03-09 12:02:08 +0000 | [diff] [blame] | 3540 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3541 | |
| 3542 | ucontrol->value.integer.value[0] = |
Mark Brown | 48a8c39 | 2012-02-14 17:11:15 -0800 | [diff] [blame] | 3543 | snd_soc_dapm_get_pin_status(&card->dapm, pin); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3544 | |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3545 | mutex_unlock(&card->dapm_mutex); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3546 | |
| 3547 | return 0; |
| 3548 | } |
| 3549 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch); |
| 3550 | |
| 3551 | /** |
| 3552 | * snd_soc_dapm_put_pin_switch - Set information for a pin switch |
| 3553 | * |
| 3554 | * @kcontrol: mixer control |
| 3555 | * @ucontrol: Value |
| 3556 | */ |
| 3557 | int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol, |
| 3558 | struct snd_ctl_elem_value *ucontrol) |
| 3559 | { |
Mark Brown | 48a8c39 | 2012-02-14 17:11:15 -0800 | [diff] [blame] | 3560 | struct snd_soc_card *card = snd_kcontrol_chip(kcontrol); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3561 | const char *pin = (const char *)kcontrol->private_value; |
| 3562 | |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3563 | if (ucontrol->value.integer.value[0]) |
Mark Brown | 48a8c39 | 2012-02-14 17:11:15 -0800 | [diff] [blame] | 3564 | snd_soc_dapm_enable_pin(&card->dapm, pin); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3565 | else |
Mark Brown | 48a8c39 | 2012-02-14 17:11:15 -0800 | [diff] [blame] | 3566 | snd_soc_dapm_disable_pin(&card->dapm, pin); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3567 | |
Mark Brown | 48a8c39 | 2012-02-14 17:11:15 -0800 | [diff] [blame] | 3568 | snd_soc_dapm_sync(&card->dapm); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 3569 | return 0; |
| 3570 | } |
| 3571 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch); |
| 3572 | |
Liam Girdwood | cc76e7d | 2015-06-04 15:13:09 +0100 | [diff] [blame] | 3573 | struct snd_soc_dapm_widget * |
Liam Girdwood | 02aa78a | 2015-05-25 18:21:17 +0100 | [diff] [blame] | 3574 | snd_soc_dapm_new_control_unlocked(struct snd_soc_dapm_context *dapm, |
Mark Brown | 5ba06fc | 2012-02-16 11:07:13 -0800 | [diff] [blame] | 3575 | const struct snd_soc_dapm_widget *widget) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3576 | { |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 3577 | enum snd_soc_dapm_direction dir; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3578 | struct snd_soc_dapm_widget *w; |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 3579 | const char *prefix; |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 3580 | int ret; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3581 | |
| 3582 | if ((w = dapm_cnew_widget(widget)) == NULL) |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 3583 | return ERR_PTR(-ENOMEM); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3584 | |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 3585 | switch (w->id) { |
| 3586 | case snd_soc_dapm_regulator_supply: |
Liam Girdwood | a3cc056 | 2012-03-09 17:20:16 +0000 | [diff] [blame] | 3587 | w->regulator = devm_regulator_get(dapm->dev, w->name); |
| 3588 | if (IS_ERR(w->regulator)) { |
| 3589 | ret = PTR_ERR(w->regulator); |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 3590 | goto request_failed; |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 3591 | } |
Mark Brown | 8784c77 | 2013-01-10 19:33:47 +0000 | [diff] [blame] | 3592 | |
Lars-Peter Clausen | de9ba98 | 2013-07-29 17:14:01 +0200 | [diff] [blame] | 3593 | if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) { |
Mark Brown | 8784c77 | 2013-01-10 19:33:47 +0000 | [diff] [blame] | 3594 | ret = regulator_allow_bypass(w->regulator, true); |
| 3595 | if (ret != 0) |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 3596 | dev_warn(dapm->dev, |
Charles Keepax | 30686c3 | 2014-02-18 16:05:27 +0000 | [diff] [blame] | 3597 | "ASoC: Failed to bypass %s: %d\n", |
Mark Brown | 8784c77 | 2013-01-10 19:33:47 +0000 | [diff] [blame] | 3598 | w->name, ret); |
| 3599 | } |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 3600 | break; |
Srinivas Kandagatla | 5b2d15b | 2018-03-10 02:37:27 +0000 | [diff] [blame] | 3601 | case snd_soc_dapm_pinctrl: |
| 3602 | w->pinctrl = devm_pinctrl_get(dapm->dev); |
Charles Keepax | a5cd7e9 | 2018-08-28 14:35:03 +0100 | [diff] [blame] | 3603 | if (IS_ERR(w->pinctrl)) { |
Srinivas Kandagatla | 5b2d15b | 2018-03-10 02:37:27 +0000 | [diff] [blame] | 3604 | ret = PTR_ERR(w->pinctrl); |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 3605 | goto request_failed; |
Srinivas Kandagatla | 5b2d15b | 2018-03-10 02:37:27 +0000 | [diff] [blame] | 3606 | } |
| 3607 | break; |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 3608 | case snd_soc_dapm_clock_supply: |
Mark Brown | 695594f1 | 2012-06-04 08:14:13 +0100 | [diff] [blame] | 3609 | w->clk = devm_clk_get(dapm->dev, w->name); |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 3610 | if (IS_ERR(w->clk)) { |
| 3611 | ret = PTR_ERR(w->clk); |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 3612 | goto request_failed; |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 3613 | } |
| 3614 | break; |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 3615 | default: |
| 3616 | break; |
| 3617 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3618 | |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 3619 | prefix = soc_dapm_prefix(dapm); |
Lars-Peter Clausen | a798c24 | 2015-07-21 11:51:35 +0200 | [diff] [blame] | 3620 | if (prefix) |
Lars-Peter Clausen | 94f99c8 | 2014-06-16 18:13:01 +0200 | [diff] [blame] | 3621 | w->name = kasprintf(GFP_KERNEL, "%s %s", prefix, widget->name); |
Lars-Peter Clausen | a798c24 | 2015-07-21 11:51:35 +0200 | [diff] [blame] | 3622 | else |
Lars-Peter Clausen | 4806896 | 2015-07-21 18:11:08 +0200 | [diff] [blame] | 3623 | w->name = kstrdup_const(widget->name, GFP_KERNEL); |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 3624 | if (w->name == NULL) { |
Pierre-Louis Bossart | 199ed3e | 2019-02-01 11:05:12 -0600 | [diff] [blame] | 3625 | kfree_const(w->sname); |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 3626 | kfree(w); |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 3627 | return ERR_PTR(-ENOMEM); |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 3628 | } |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 3629 | |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3630 | switch (w->id) { |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3631 | case snd_soc_dapm_mic: |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 3632 | w->is_ep = SND_SOC_DAPM_EP_SOURCE; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3633 | w->power_check = dapm_generic_check_power; |
| 3634 | break; |
Lars-Peter Clausen | 86d7500 | 2014-12-21 11:05:44 +0100 | [diff] [blame] | 3635 | case snd_soc_dapm_input: |
| 3636 | if (!dapm->card->fully_routed) |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 3637 | w->is_ep = SND_SOC_DAPM_EP_SOURCE; |
Lars-Peter Clausen | 86d7500 | 2014-12-21 11:05:44 +0100 | [diff] [blame] | 3638 | w->power_check = dapm_generic_check_power; |
| 3639 | break; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3640 | case snd_soc_dapm_spk: |
| 3641 | case snd_soc_dapm_hp: |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 3642 | w->is_ep = SND_SOC_DAPM_EP_SINK; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3643 | w->power_check = dapm_generic_check_power; |
| 3644 | break; |
Lars-Peter Clausen | 86d7500 | 2014-12-21 11:05:44 +0100 | [diff] [blame] | 3645 | case snd_soc_dapm_output: |
| 3646 | if (!dapm->card->fully_routed) |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 3647 | w->is_ep = SND_SOC_DAPM_EP_SINK; |
Lars-Peter Clausen | 86d7500 | 2014-12-21 11:05:44 +0100 | [diff] [blame] | 3648 | w->power_check = dapm_generic_check_power; |
| 3649 | break; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3650 | case snd_soc_dapm_vmid: |
| 3651 | case snd_soc_dapm_siggen: |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 3652 | w->is_ep = SND_SOC_DAPM_EP_SOURCE; |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3653 | w->power_check = dapm_always_on_check_power; |
| 3654 | break; |
Vinod Koul | 56b4437 | 2015-11-23 21:22:30 +0530 | [diff] [blame] | 3655 | case snd_soc_dapm_sink: |
| 3656 | w->is_ep = SND_SOC_DAPM_EP_SINK; |
| 3657 | w->power_check = dapm_always_on_check_power; |
| 3658 | break; |
| 3659 | |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3660 | case snd_soc_dapm_mux: |
Lars-Peter Clausen | d714f97 | 2015-05-01 18:02:43 +0200 | [diff] [blame] | 3661 | case snd_soc_dapm_demux: |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3662 | case snd_soc_dapm_switch: |
| 3663 | case snd_soc_dapm_mixer: |
| 3664 | case snd_soc_dapm_mixer_named_ctl: |
Mark Brown | 63c69a6 | 2013-07-18 22:03:01 +0100 | [diff] [blame] | 3665 | case snd_soc_dapm_adc: |
| 3666 | case snd_soc_dapm_aif_out: |
| 3667 | case snd_soc_dapm_dac: |
| 3668 | case snd_soc_dapm_aif_in: |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3669 | case snd_soc_dapm_pga: |
Ranjani Sridharan | 6e3bfcf | 2019-03-01 19:08:53 -0600 | [diff] [blame] | 3670 | case snd_soc_dapm_buffer: |
| 3671 | case snd_soc_dapm_scheduler: |
| 3672 | case snd_soc_dapm_effect: |
| 3673 | case snd_soc_dapm_src: |
| 3674 | case snd_soc_dapm_asrc: |
| 3675 | case snd_soc_dapm_encoder: |
| 3676 | case snd_soc_dapm_decoder: |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3677 | case snd_soc_dapm_out_drv: |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3678 | case snd_soc_dapm_micbias: |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3679 | case snd_soc_dapm_line: |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3680 | case snd_soc_dapm_dai_link: |
Lars-Peter Clausen | cdef2ad | 2014-10-20 19:36:38 +0200 | [diff] [blame] | 3681 | case snd_soc_dapm_dai_out: |
| 3682 | case snd_soc_dapm_dai_in: |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3683 | w->power_check = dapm_generic_check_power; |
| 3684 | break; |
| 3685 | case snd_soc_dapm_supply: |
Mark Brown | 62ea874 | 2012-01-21 21:14:48 +0000 | [diff] [blame] | 3686 | case snd_soc_dapm_regulator_supply: |
Srinivas Kandagatla | 5b2d15b | 2018-03-10 02:37:27 +0000 | [diff] [blame] | 3687 | case snd_soc_dapm_pinctrl: |
Ola Lilja | d7e7eb9 | 2012-05-24 15:26:25 +0200 | [diff] [blame] | 3688 | case snd_soc_dapm_clock_supply: |
Lars-Peter Clausen | 5729507 | 2013-08-05 11:27:31 +0200 | [diff] [blame] | 3689 | case snd_soc_dapm_kcontrol: |
Lars-Peter Clausen | 6dd98b0 | 2014-10-25 17:41:59 +0200 | [diff] [blame] | 3690 | w->is_supply = 1; |
Mark Brown | 7ca3a18 | 2011-10-08 14:04:50 +0100 | [diff] [blame] | 3691 | w->power_check = dapm_supply_check_power; |
| 3692 | break; |
| 3693 | default: |
| 3694 | w->power_check = dapm_always_on_check_power; |
| 3695 | break; |
| 3696 | } |
| 3697 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 3698 | w->dapm = dapm; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3699 | INIT_LIST_HEAD(&w->list); |
Mark Brown | db432b4 | 2011-10-03 21:06:40 +0100 | [diff] [blame] | 3700 | INIT_LIST_HEAD(&w->dirty); |
Lars-Peter Clausen | 92fa124 | 2015-05-01 18:02:42 +0200 | [diff] [blame] | 3701 | list_add_tail(&w->list, &dapm->card->widgets); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3702 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 3703 | snd_soc_dapm_for_each_direction(dir) { |
| 3704 | INIT_LIST_HEAD(&w->edges[dir]); |
| 3705 | w->endpoints[dir] = -1; |
| 3706 | } |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 3707 | |
Peter Meerwald-Stadler | c804600 | 2016-08-16 16:56:17 +0200 | [diff] [blame] | 3708 | /* machine layer sets up unconnected pins and insertions */ |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3709 | w->connected = 1; |
Mark Brown | 5ba06fc | 2012-02-16 11:07:13 -0800 | [diff] [blame] | 3710 | return w; |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 3711 | |
| 3712 | request_failed: |
| 3713 | if (ret != -EPROBE_DEFER) |
| 3714 | dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n", |
| 3715 | w->name, ret); |
| 3716 | |
Wenwen Wang | 45004d6 | 2019-07-22 08:57:44 -0500 | [diff] [blame] | 3717 | kfree_const(w->sname); |
| 3718 | kfree(w); |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 3719 | return ERR_PTR(ret); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3720 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 3721 | |
| 3722 | /** |
Charles Keepax | 94e630a | 2018-09-05 15:20:59 +0100 | [diff] [blame] | 3723 | * snd_soc_dapm_new_control - create new dapm control |
| 3724 | * @dapm: DAPM context |
| 3725 | * @widget: widget template |
| 3726 | * |
| 3727 | * Creates new DAPM control based upon a template. |
| 3728 | * |
| 3729 | * Returns a widget pointer on success or an error pointer on failure |
| 3730 | */ |
| 3731 | struct snd_soc_dapm_widget * |
| 3732 | snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm, |
| 3733 | const struct snd_soc_dapm_widget *widget) |
| 3734 | { |
| 3735 | struct snd_soc_dapm_widget *w; |
| 3736 | |
| 3737 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
| 3738 | w = snd_soc_dapm_new_control_unlocked(dapm, widget); |
| 3739 | mutex_unlock(&dapm->card->dapm_mutex); |
| 3740 | |
| 3741 | return w; |
| 3742 | } |
| 3743 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control); |
| 3744 | |
| 3745 | /** |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 3746 | * snd_soc_dapm_new_controls - create new dapm controls |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 3747 | * @dapm: DAPM context |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 3748 | * @widget: widget array |
| 3749 | * @num: number of widgets |
| 3750 | * |
| 3751 | * Creates new DAPM controls based upon the templates. |
| 3752 | * |
| 3753 | * Returns 0 for success else error. |
| 3754 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 3755 | int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm, |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 3756 | const struct snd_soc_dapm_widget *widget, |
| 3757 | int num) |
| 3758 | { |
Mark Brown | 5ba06fc | 2012-02-16 11:07:13 -0800 | [diff] [blame] | 3759 | struct snd_soc_dapm_widget *w; |
| 3760 | int i; |
Dan Carpenter | 60884c2 | 2012-04-13 22:25:43 +0300 | [diff] [blame] | 3761 | int ret = 0; |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 3762 | |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3763 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT); |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 3764 | for (i = 0; i < num; i++) { |
Liam Girdwood | 02aa78a | 2015-05-25 18:21:17 +0100 | [diff] [blame] | 3765 | w = snd_soc_dapm_new_control_unlocked(dapm, widget); |
Linus Walleij | 37e1df8 | 2017-01-13 10:23:52 +0100 | [diff] [blame] | 3766 | if (IS_ERR(w)) { |
| 3767 | ret = PTR_ERR(w); |
Dan Carpenter | 60884c2 | 2012-04-13 22:25:43 +0300 | [diff] [blame] | 3768 | break; |
Mark Brown | b8b33cb | 2008-12-18 11:19:30 +0000 | [diff] [blame] | 3769 | } |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 3770 | widget++; |
| 3771 | } |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 3772 | mutex_unlock(&dapm->card->dapm_mutex); |
Dan Carpenter | 60884c2 | 2012-04-13 22:25:43 +0300 | [diff] [blame] | 3773 | return ret; |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 3774 | } |
| 3775 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls); |
| 3776 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3777 | static int |
| 3778 | snd_soc_dai_link_event_pre_pmu(struct snd_soc_dapm_widget *w, |
| 3779 | struct snd_pcm_substream *substream) |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3780 | { |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3781 | struct snd_soc_dapm_path *path; |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3782 | struct snd_soc_dai *source, *sink; |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3783 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Mark Brown | 9747cec | 2012-04-26 19:12:21 +0100 | [diff] [blame] | 3784 | struct snd_pcm_hw_params *params = NULL; |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3785 | const struct snd_soc_pcm_stream *config = NULL; |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3786 | struct snd_pcm_runtime *runtime = NULL; |
Takashi Iwai | 3ba66fe | 2018-07-25 22:43:26 +0200 | [diff] [blame] | 3787 | unsigned int fmt; |
Colin Ian King | c841583 | 2019-07-26 13:33:27 +0100 | [diff] [blame] | 3788 | int ret = 0; |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3789 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3790 | params = kzalloc(sizeof(*params), GFP_KERNEL); |
| 3791 | if (!params) |
| 3792 | return -ENOMEM; |
| 3793 | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3794 | runtime = kzalloc(sizeof(*runtime), GFP_KERNEL); |
| 3795 | if (!runtime) { |
| 3796 | ret = -ENOMEM; |
| 3797 | goto out; |
| 3798 | } |
| 3799 | |
| 3800 | substream->runtime = runtime; |
| 3801 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3802 | substream->stream = SNDRV_PCM_STREAM_CAPTURE; |
| 3803 | snd_soc_dapm_widget_for_each_source_path(w, path) { |
| 3804 | source = path->source->priv; |
| 3805 | |
| 3806 | ret = snd_soc_dai_startup(source, substream); |
| 3807 | if (ret < 0) { |
| 3808 | dev_err(source->dev, |
| 3809 | "ASoC: startup() failed: %d\n", ret); |
| 3810 | goto out; |
| 3811 | } |
| 3812 | source->active++; |
| 3813 | } |
| 3814 | |
| 3815 | substream->stream = SNDRV_PCM_STREAM_PLAYBACK; |
| 3816 | snd_soc_dapm_widget_for_each_sink_path(w, path) { |
| 3817 | sink = path->sink->priv; |
| 3818 | |
| 3819 | ret = snd_soc_dai_startup(sink, substream); |
| 3820 | if (ret < 0) { |
| 3821 | dev_err(sink->dev, |
| 3822 | "ASoC: startup() failed: %d\n", ret); |
| 3823 | goto out; |
| 3824 | } |
| 3825 | sink->active++; |
| 3826 | } |
| 3827 | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3828 | substream->hw_opened = 1; |
| 3829 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3830 | /* |
| 3831 | * Note: getting the config after .startup() gives a chance to |
| 3832 | * either party on the link to alter the configuration if |
| 3833 | * necessary |
| 3834 | */ |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 3835 | config = rtd->dai_link->params + rtd->params_select; |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3836 | if (WARN_ON(!config)) { |
| 3837 | dev_err(w->dapm->dev, "ASoC: link config missing\n"); |
| 3838 | ret = -EINVAL; |
| 3839 | goto out; |
| 3840 | } |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3841 | |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3842 | /* Be a little careful as we don't want to overflow the mask array */ |
| 3843 | if (config->formats) { |
| 3844 | fmt = ffs(config->formats) - 1; |
| 3845 | } else { |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 3846 | dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n", |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3847 | config->formats); |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3848 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3849 | ret = -EINVAL; |
Mark Brown | 9747cec | 2012-04-26 19:12:21 +0100 | [diff] [blame] | 3850 | goto out; |
| 3851 | } |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3852 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3853 | snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt); |
Mark Brown | 9747cec | 2012-04-26 19:12:21 +0100 | [diff] [blame] | 3854 | hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min = |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3855 | config->rate_min; |
Mark Brown | 9747cec | 2012-04-26 19:12:21 +0100 | [diff] [blame] | 3856 | hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max = |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3857 | config->rate_max; |
Mark Brown | 9747cec | 2012-04-26 19:12:21 +0100 | [diff] [blame] | 3858 | hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3859 | = config->channels_min; |
Mark Brown | 9747cec | 2012-04-26 19:12:21 +0100 | [diff] [blame] | 3860 | hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3861 | = config->channels_max; |
| 3862 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3863 | substream->stream = SNDRV_PCM_STREAM_CAPTURE; |
| 3864 | snd_soc_dapm_widget_for_each_source_path(w, path) { |
| 3865 | source = path->source->priv; |
| 3866 | |
| 3867 | ret = snd_soc_dai_hw_params(source, substream, params); |
| 3868 | if (ret < 0) |
| 3869 | goto out; |
| 3870 | |
| 3871 | dapm_update_dai_unlocked(substream, params, source); |
| 3872 | } |
| 3873 | |
| 3874 | substream->stream = SNDRV_PCM_STREAM_PLAYBACK; |
| 3875 | snd_soc_dapm_widget_for_each_sink_path(w, path) { |
| 3876 | sink = path->sink->priv; |
| 3877 | |
| 3878 | ret = snd_soc_dai_hw_params(sink, substream, params); |
| 3879 | if (ret < 0) |
| 3880 | goto out; |
| 3881 | |
| 3882 | dapm_update_dai_unlocked(substream, params, sink); |
| 3883 | } |
| 3884 | |
Jerome Brunet | 9de9862 | 2019-07-25 18:59:49 +0200 | [diff] [blame] | 3885 | runtime->format = params_format(params); |
| 3886 | runtime->subformat = params_subformat(params); |
| 3887 | runtime->channels = params_channels(params); |
| 3888 | runtime->rate = params_rate(params); |
| 3889 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3890 | out: |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3891 | if (ret < 0) |
| 3892 | kfree(runtime); |
| 3893 | |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3894 | kfree(params); |
Colin Ian King | c841583 | 2019-07-26 13:33:27 +0100 | [diff] [blame] | 3895 | return ret; |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3896 | } |
| 3897 | |
| 3898 | static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w, |
| 3899 | struct snd_kcontrol *kcontrol, int event) |
| 3900 | { |
| 3901 | struct snd_soc_dapm_path *path; |
| 3902 | struct snd_soc_dai *source, *sink; |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3903 | struct snd_pcm_substream *substream = w->priv; |
| 3904 | int ret = 0, saved_stream = substream->stream; |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3905 | |
| 3906 | if (WARN_ON(list_empty(&w->edges[SND_SOC_DAPM_DIR_OUT]) || |
| 3907 | list_empty(&w->edges[SND_SOC_DAPM_DIR_IN]))) |
| 3908 | return -EINVAL; |
| 3909 | |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3910 | switch (event) { |
| 3911 | case SND_SOC_DAPM_PRE_PMU: |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3912 | ret = snd_soc_dai_link_event_pre_pmu(w, substream); |
Jerome Brunet | 3dcfb39 | 2019-07-25 18:59:46 +0200 | [diff] [blame] | 3913 | if (ret < 0) |
| 3914 | goto out; |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3915 | |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3916 | break; |
| 3917 | |
| 3918 | case SND_SOC_DAPM_POST_PMU: |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3919 | snd_soc_dapm_widget_for_each_sink_path(w, path) { |
| 3920 | sink = path->sink->priv; |
| 3921 | |
| 3922 | ret = snd_soc_dai_digital_mute(sink, 0, |
| 3923 | SNDRV_PCM_STREAM_PLAYBACK); |
| 3924 | if (ret != 0 && ret != -ENOTSUPP) |
| 3925 | dev_warn(sink->dev, |
| 3926 | "ASoC: Failed to unmute: %d\n", ret); |
| 3927 | ret = 0; |
| 3928 | } |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3929 | break; |
| 3930 | |
| 3931 | case SND_SOC_DAPM_PRE_PMD: |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3932 | snd_soc_dapm_widget_for_each_sink_path(w, path) { |
| 3933 | sink = path->sink->priv; |
Jeeja KP | 9b8ef9f | 2015-10-20 22:30:07 +0530 | [diff] [blame] | 3934 | |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3935 | ret = snd_soc_dai_digital_mute(sink, 1, |
| 3936 | SNDRV_PCM_STREAM_PLAYBACK); |
| 3937 | if (ret != 0 && ret != -ENOTSUPP) |
| 3938 | dev_warn(sink->dev, |
| 3939 | "ASoC: Failed to mute: %d\n", ret); |
| 3940 | ret = 0; |
Jeeja KP | 9b8ef9f | 2015-10-20 22:30:07 +0530 | [diff] [blame] | 3941 | } |
| 3942 | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3943 | substream->stream = SNDRV_PCM_STREAM_CAPTURE; |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3944 | snd_soc_dapm_widget_for_each_source_path(w, path) { |
| 3945 | source = path->source->priv; |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3946 | snd_soc_dai_hw_free(source, substream); |
Jerome Brunet | 68c907f | 2019-07-25 18:59:44 +0200 | [diff] [blame] | 3947 | } |
Charles Keepax | 3c01b0e | 2018-10-11 17:28:28 +0100 | [diff] [blame] | 3948 | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3949 | substream->stream = SNDRV_PCM_STREAM_PLAYBACK; |
Jerome Brunet | 68c907f | 2019-07-25 18:59:44 +0200 | [diff] [blame] | 3950 | snd_soc_dapm_widget_for_each_sink_path(w, path) { |
| 3951 | sink = path->sink->priv; |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3952 | snd_soc_dai_hw_free(sink, substream); |
Jerome Brunet | 68c907f | 2019-07-25 18:59:44 +0200 | [diff] [blame] | 3953 | } |
| 3954 | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3955 | substream->stream = SNDRV_PCM_STREAM_CAPTURE; |
Jerome Brunet | 68c907f | 2019-07-25 18:59:44 +0200 | [diff] [blame] | 3956 | snd_soc_dapm_widget_for_each_source_path(w, path) { |
| 3957 | source = path->source->priv; |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3958 | source->active--; |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3959 | snd_soc_dai_shutdown(source, substream); |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3960 | } |
| 3961 | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3962 | substream->stream = SNDRV_PCM_STREAM_PLAYBACK; |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3963 | snd_soc_dapm_widget_for_each_sink_path(w, path) { |
| 3964 | sink = path->sink->priv; |
Charles Keepax | 4a75aae | 2018-09-05 15:21:01 +0100 | [diff] [blame] | 3965 | sink->active--; |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3966 | snd_soc_dai_shutdown(sink, substream); |
Jeeja KP | 9b8ef9f | 2015-10-20 22:30:07 +0530 | [diff] [blame] | 3967 | } |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3968 | break; |
| 3969 | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3970 | case SND_SOC_DAPM_POST_PMD: |
| 3971 | kfree(substream->runtime); |
| 3972 | break; |
| 3973 | |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3974 | default: |
Takashi Iwai | a6ed060 | 2013-11-06 11:07:19 +0100 | [diff] [blame] | 3975 | WARN(1, "Unknown event %d\n", event); |
Sudip Mukherjee | 75881df | 2015-09-10 18:01:44 +0530 | [diff] [blame] | 3976 | ret = -EINVAL; |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3977 | } |
| 3978 | |
Mark Brown | 9747cec | 2012-04-26 19:12:21 +0100 | [diff] [blame] | 3979 | out: |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 3980 | /* Restore the substream direction */ |
| 3981 | substream->stream = saved_stream; |
Mark Brown | 9747cec | 2012-04-26 19:12:21 +0100 | [diff] [blame] | 3982 | return ret; |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 3983 | } |
| 3984 | |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 3985 | static int snd_soc_dapm_dai_link_get(struct snd_kcontrol *kcontrol, |
| 3986 | struct snd_ctl_elem_value *ucontrol) |
| 3987 | { |
| 3988 | struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol); |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 3989 | struct snd_soc_pcm_runtime *rtd = w->priv; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 3990 | |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 3991 | ucontrol->value.enumerated.item[0] = rtd->params_select; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 3992 | |
| 3993 | return 0; |
| 3994 | } |
| 3995 | |
| 3996 | static int snd_soc_dapm_dai_link_put(struct snd_kcontrol *kcontrol, |
| 3997 | struct snd_ctl_elem_value *ucontrol) |
| 3998 | { |
| 3999 | struct snd_soc_dapm_widget *w = snd_kcontrol_chip(kcontrol); |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 4000 | struct snd_soc_pcm_runtime *rtd = w->priv; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4001 | |
| 4002 | /* Can't change the config when widget is already powered */ |
| 4003 | if (w->power) |
| 4004 | return -EBUSY; |
| 4005 | |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 4006 | if (ucontrol->value.enumerated.item[0] == rtd->params_select) |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4007 | return 0; |
| 4008 | |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 4009 | if (ucontrol->value.enumerated.item[0] >= rtd->dai_link->num_params) |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4010 | return -EINVAL; |
| 4011 | |
Charles Keepax | 243bcfa | 2018-09-05 15:21:02 +0100 | [diff] [blame] | 4012 | rtd->params_select = ucontrol->value.enumerated.item[0]; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4013 | |
| 4014 | return 0; |
| 4015 | } |
| 4016 | |
Arnd Bergmann | c42c5ac | 2017-10-10 11:20:11 +0200 | [diff] [blame] | 4017 | static void |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4018 | snd_soc_dapm_free_kcontrol(struct snd_soc_card *card, |
| 4019 | unsigned long *private_value, |
| 4020 | int num_params, |
| 4021 | const char **w_param_text) |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4022 | { |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4023 | int count; |
| 4024 | |
| 4025 | devm_kfree(card->dev, (void *)*private_value); |
Pankaj Bharadiya | cacea3a | 2019-03-22 18:00:09 +0530 | [diff] [blame] | 4026 | |
| 4027 | if (!w_param_text) |
| 4028 | return; |
| 4029 | |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4030 | for (count = 0 ; count < num_params; count++) |
| 4031 | devm_kfree(card->dev, (void *)w_param_text[count]); |
| 4032 | devm_kfree(card->dev, w_param_text); |
| 4033 | } |
| 4034 | |
| 4035 | static struct snd_kcontrol_new * |
| 4036 | snd_soc_dapm_alloc_kcontrol(struct snd_soc_card *card, |
| 4037 | char *link_name, |
| 4038 | const struct snd_soc_pcm_stream *params, |
| 4039 | int num_params, const char **w_param_text, |
| 4040 | unsigned long *private_value) |
| 4041 | { |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4042 | struct soc_enum w_param_enum[] = { |
| 4043 | SOC_ENUM_SINGLE(0, 0, 0, NULL), |
| 4044 | }; |
| 4045 | struct snd_kcontrol_new kcontrol_dai_link[] = { |
| 4046 | SOC_ENUM_EXT(NULL, w_param_enum[0], |
| 4047 | snd_soc_dapm_dai_link_get, |
| 4048 | snd_soc_dapm_dai_link_put), |
| 4049 | }; |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4050 | struct snd_kcontrol_new *kcontrol_news; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4051 | const struct snd_soc_pcm_stream *config = params; |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4052 | int count; |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4053 | |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4054 | for (count = 0 ; count < num_params; count++) { |
| 4055 | if (!config->stream_name) { |
| 4056 | dev_warn(card->dapm.dev, |
| 4057 | "ASoC: anonymous config %d for dai link %s\n", |
| 4058 | count, link_name); |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4059 | w_param_text[count] = |
Charles Keepax | 46172b6 | 2015-03-25 11:22:35 +0000 | [diff] [blame] | 4060 | devm_kasprintf(card->dev, GFP_KERNEL, |
| 4061 | "Anonymous Configuration %d", |
| 4062 | count); |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4063 | } else { |
| 4064 | w_param_text[count] = devm_kmemdup(card->dev, |
| 4065 | config->stream_name, |
| 4066 | strlen(config->stream_name) + 1, |
| 4067 | GFP_KERNEL); |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4068 | } |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4069 | if (!w_param_text[count]) |
| 4070 | goto outfree_w_param; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4071 | config++; |
| 4072 | } |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4073 | |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4074 | w_param_enum[0].items = num_params; |
| 4075 | w_param_enum[0].texts = w_param_text; |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4076 | |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4077 | *private_value = |
| 4078 | (unsigned long) devm_kmemdup(card->dev, |
| 4079 | (void *)(kcontrol_dai_link[0].private_value), |
| 4080 | sizeof(struct soc_enum), GFP_KERNEL); |
| 4081 | if (!*private_value) { |
| 4082 | dev_err(card->dev, "ASoC: Failed to create control for %s widget\n", |
| 4083 | link_name); |
| 4084 | goto outfree_w_param; |
| 4085 | } |
| 4086 | kcontrol_dai_link[0].private_value = *private_value; |
| 4087 | /* duplicate kcontrol_dai_link on heap so that memory persists */ |
| 4088 | kcontrol_news = devm_kmemdup(card->dev, &kcontrol_dai_link[0], |
| 4089 | sizeof(struct snd_kcontrol_new), |
| 4090 | GFP_KERNEL); |
| 4091 | if (!kcontrol_news) { |
| 4092 | dev_err(card->dev, "ASoC: Failed to create control for %s widget\n", |
| 4093 | link_name); |
| 4094 | goto outfree_w_param; |
| 4095 | } |
| 4096 | return kcontrol_news; |
| 4097 | |
| 4098 | outfree_w_param: |
| 4099 | snd_soc_dapm_free_kcontrol(card, private_value, num_params, w_param_text); |
| 4100 | return NULL; |
| 4101 | } |
| 4102 | |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4103 | static struct snd_soc_dapm_widget * |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 4104 | snd_soc_dapm_new_dai(struct snd_soc_card *card, |
| 4105 | struct snd_pcm_substream *substream, |
Jerome Brunet | 054d650 | 2019-07-25 18:59:45 +0200 | [diff] [blame] | 4106 | char *id) |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4107 | { |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 4108 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4109 | struct snd_soc_dapm_widget template; |
| 4110 | struct snd_soc_dapm_widget *w; |
| 4111 | const char **w_param_text; |
Pankaj Bharadiya | 8633d44 | 2019-03-22 21:53:39 +0530 | [diff] [blame] | 4112 | unsigned long private_value = 0; |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4113 | char *link_name; |
| 4114 | int ret; |
| 4115 | |
| 4116 | link_name = devm_kasprintf(card->dev, GFP_KERNEL, "%s-%s", |
Jerome Brunet | 054d650 | 2019-07-25 18:59:45 +0200 | [diff] [blame] | 4117 | rtd->dai_link->name, id); |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4118 | if (!link_name) |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4119 | return ERR_PTR(-ENOMEM); |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4120 | |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4121 | memset(&template, 0, sizeof(template)); |
| 4122 | template.reg = SND_SOC_NOPM; |
| 4123 | template.id = snd_soc_dapm_dai_link; |
| 4124 | template.name = link_name; |
| 4125 | template.event = snd_soc_dai_link_event; |
| 4126 | template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 4127 | SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD; |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4128 | template.kcontrol_news = NULL; |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4129 | |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4130 | /* allocate memory for control, only in case of multiple configs */ |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4131 | if (rtd->dai_link->num_params > 1) { |
| 4132 | w_param_text = devm_kcalloc(card->dev, |
| 4133 | rtd->dai_link->num_params, |
| 4134 | sizeof(char *), GFP_KERNEL); |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4135 | if (!w_param_text) { |
| 4136 | ret = -ENOMEM; |
| 4137 | goto param_fail; |
| 4138 | } |
| 4139 | |
| 4140 | template.num_kcontrols = 1; |
| 4141 | template.kcontrol_news = |
| 4142 | snd_soc_dapm_alloc_kcontrol(card, |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4143 | link_name, |
| 4144 | rtd->dai_link->params, |
| 4145 | rtd->dai_link->num_params, |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4146 | w_param_text, &private_value); |
| 4147 | if (!template.kcontrol_news) { |
| 4148 | ret = -ENOMEM; |
| 4149 | goto param_fail; |
| 4150 | } |
Arnd Bergmann | 667ebc9 | 2017-10-10 11:20:10 +0200 | [diff] [blame] | 4151 | } else { |
| 4152 | w_param_text = NULL; |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4153 | } |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 4154 | dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name); |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4155 | |
Liam Girdwood | 02aa78a | 2015-05-25 18:21:17 +0100 | [diff] [blame] | 4156 | w = snd_soc_dapm_new_control_unlocked(&card->dapm, &template); |
Dan Carpenter | 2e558a8 | 2018-09-07 22:40:33 +0300 | [diff] [blame] | 4157 | if (IS_ERR(w)) { |
| 4158 | ret = PTR_ERR(w); |
Linus Walleij | 37e1df8 | 2017-01-13 10:23:52 +0100 | [diff] [blame] | 4159 | goto outfree_kcontrol_news; |
Dan Carpenter | 2e558a8 | 2018-09-07 22:40:33 +0300 | [diff] [blame] | 4160 | } |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4161 | |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 4162 | w->priv = substream; |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4163 | |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4164 | return w; |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4165 | |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4166 | outfree_kcontrol_news: |
| 4167 | devm_kfree(card->dev, (void *)template.kcontrol_news); |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4168 | snd_soc_dapm_free_kcontrol(card, &private_value, |
| 4169 | rtd->dai_link->num_params, w_param_text); |
anish kumar | 19ad683 | 2017-09-28 21:52:39 -0700 | [diff] [blame] | 4170 | param_fail: |
Nikesh Oswal | c661508 | 2015-02-02 17:06:44 +0000 | [diff] [blame] | 4171 | devm_kfree(card->dev, link_name); |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4172 | return ERR_PTR(ret); |
Mark Brown | c74184e | 2012-04-04 22:12:09 +0100 | [diff] [blame] | 4173 | } |
| 4174 | |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4175 | int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm, |
| 4176 | struct snd_soc_dai *dai) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4177 | { |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4178 | struct snd_soc_dapm_widget template; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4179 | struct snd_soc_dapm_widget *w; |
| 4180 | |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4181 | WARN_ON(dapm->dev != dai->dev); |
| 4182 | |
| 4183 | memset(&template, 0, sizeof(template)); |
| 4184 | template.reg = SND_SOC_NOPM; |
| 4185 | |
| 4186 | if (dai->driver->playback.stream_name) { |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 4187 | template.id = snd_soc_dapm_dai_in; |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4188 | template.name = dai->driver->playback.stream_name; |
| 4189 | template.sname = dai->driver->playback.stream_name; |
| 4190 | |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 4191 | dev_dbg(dai->dev, "ASoC: adding %s widget\n", |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4192 | template.name); |
| 4193 | |
Liam Girdwood | 02aa78a | 2015-05-25 18:21:17 +0100 | [diff] [blame] | 4194 | w = snd_soc_dapm_new_control_unlocked(dapm, &template); |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 4195 | if (IS_ERR(w)) |
| 4196 | return PTR_ERR(w); |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4197 | |
| 4198 | w->priv = dai; |
| 4199 | dai->playback_widget = w; |
| 4200 | } |
| 4201 | |
| 4202 | if (dai->driver->capture.stream_name) { |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 4203 | template.id = snd_soc_dapm_dai_out; |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4204 | template.name = dai->driver->capture.stream_name; |
| 4205 | template.sname = dai->driver->capture.stream_name; |
| 4206 | |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 4207 | dev_dbg(dai->dev, "ASoC: adding %s widget\n", |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4208 | template.name); |
| 4209 | |
Liam Girdwood | 02aa78a | 2015-05-25 18:21:17 +0100 | [diff] [blame] | 4210 | w = snd_soc_dapm_new_control_unlocked(dapm, &template); |
Charles Keepax | 3bbf5d3 | 2018-09-05 15:20:58 +0100 | [diff] [blame] | 4211 | if (IS_ERR(w)) |
| 4212 | return PTR_ERR(w); |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4213 | |
| 4214 | w->priv = dai; |
| 4215 | dai->capture_widget = w; |
| 4216 | } |
| 4217 | |
| 4218 | return 0; |
| 4219 | } |
| 4220 | |
| 4221 | int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card) |
| 4222 | { |
| 4223 | struct snd_soc_dapm_widget *dai_w, *w; |
Lars-Peter Clausen | 0f9bd7b | 2014-05-07 16:20:28 +0200 | [diff] [blame] | 4224 | struct snd_soc_dapm_widget *src, *sink; |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4225 | struct snd_soc_dai *dai; |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4226 | |
| 4227 | /* For each DAI widget... */ |
| 4228 | list_for_each_entry(dai_w, &card->widgets, list) { |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 4229 | switch (dai_w->id) { |
| 4230 | case snd_soc_dapm_dai_in: |
| 4231 | case snd_soc_dapm_dai_out: |
| 4232 | break; |
| 4233 | default: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4234 | continue; |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 4235 | } |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4236 | |
Liam Girdwood | e01b4f6 | 2018-06-14 20:26:42 +0100 | [diff] [blame] | 4237 | /* let users know there is no DAI to link */ |
| 4238 | if (!dai_w->priv) { |
| 4239 | dev_dbg(card->dev, "dai widget %s has no DAI\n", |
| 4240 | dai_w->name); |
| 4241 | continue; |
| 4242 | } |
| 4243 | |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4244 | dai = dai_w->priv; |
| 4245 | |
| 4246 | /* ...find all widgets with the same stream and link them */ |
| 4247 | list_for_each_entry(w, &card->widgets, list) { |
| 4248 | if (w->dapm != dai_w->dapm) |
| 4249 | continue; |
| 4250 | |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 4251 | switch (w->id) { |
| 4252 | case snd_soc_dapm_dai_in: |
| 4253 | case snd_soc_dapm_dai_out: |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4254 | continue; |
Mark Brown | 4616274 | 2013-06-05 19:36:11 +0100 | [diff] [blame] | 4255 | default: |
| 4256 | break; |
| 4257 | } |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4258 | |
Lars-Peter Clausen | a798c24 | 2015-07-21 11:51:35 +0200 | [diff] [blame] | 4259 | if (!w->sname || !strstr(w->sname, dai_w->sname)) |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4260 | continue; |
| 4261 | |
Lars-Peter Clausen | 0f9bd7b | 2014-05-07 16:20:28 +0200 | [diff] [blame] | 4262 | if (dai_w->id == snd_soc_dapm_dai_in) { |
| 4263 | src = dai_w; |
| 4264 | sink = w; |
| 4265 | } else { |
| 4266 | src = w; |
| 4267 | sink = dai_w; |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4268 | } |
Lars-Peter Clausen | 0f9bd7b | 2014-05-07 16:20:28 +0200 | [diff] [blame] | 4269 | dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name); |
| 4270 | snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4271 | } |
| 4272 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4273 | |
Mark Brown | 888df39 | 2012-02-16 19:37:51 -0800 | [diff] [blame] | 4274 | return 0; |
| 4275 | } |
Liam Girdwood | 64a648c | 2011-07-25 11:15:15 +0100 | [diff] [blame] | 4276 | |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 4277 | static void dapm_connect_dai_link_widgets(struct snd_soc_card *card, |
| 4278 | struct snd_soc_pcm_runtime *rtd) |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4279 | { |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 4280 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 4281 | struct snd_soc_dai *codec_dai; |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4282 | struct snd_soc_dapm_widget *playback = NULL, *capture = NULL; |
| 4283 | struct snd_soc_dapm_widget *codec, *playback_cpu, *capture_cpu; |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 4284 | struct snd_pcm_substream *substream; |
| 4285 | struct snd_pcm_str *streams = rtd->pcm->streams; |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4286 | int i; |
| 4287 | |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4288 | if (rtd->dai_link->params) { |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4289 | playback_cpu = cpu_dai->capture_widget; |
| 4290 | capture_cpu = cpu_dai->playback_widget; |
| 4291 | } else { |
| 4292 | playback = cpu_dai->playback_widget; |
| 4293 | capture = cpu_dai->capture_widget; |
| 4294 | playback_cpu = playback; |
| 4295 | capture_cpu = capture; |
| 4296 | } |
| 4297 | |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 4298 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4299 | /* connect BE DAI playback if widgets are valid */ |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4300 | codec = codec_dai->playback_widget; |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4301 | |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4302 | if (playback_cpu && codec) { |
| 4303 | if (!playback) { |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 4304 | substream = streams[SNDRV_PCM_STREAM_PLAYBACK].substream; |
| 4305 | playback = snd_soc_dapm_new_dai(card, substream, |
Jerome Brunet | 054d650 | 2019-07-25 18:59:45 +0200 | [diff] [blame] | 4306 | "playback"); |
Charles Keepax | e36a1d0 | 2018-09-10 15:28:39 +0100 | [diff] [blame] | 4307 | if (IS_ERR(playback)) { |
| 4308 | dev_err(rtd->dev, |
| 4309 | "ASoC: Failed to create DAI %s: %ld\n", |
| 4310 | codec_dai->name, |
| 4311 | PTR_ERR(playback)); |
| 4312 | continue; |
| 4313 | } |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4314 | |
| 4315 | snd_soc_dapm_add_path(&card->dapm, playback_cpu, |
| 4316 | playback, NULL, NULL); |
| 4317 | } |
| 4318 | |
| 4319 | dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n", |
| 4320 | cpu_dai->component->name, playback_cpu->name, |
| 4321 | codec_dai->component->name, codec->name); |
| 4322 | |
| 4323 | snd_soc_dapm_add_path(&card->dapm, playback, codec, |
| 4324 | NULL, NULL); |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4325 | } |
Charles Keepax | e36a1d0 | 2018-09-10 15:28:39 +0100 | [diff] [blame] | 4326 | } |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4327 | |
Charles Keepax | e36a1d0 | 2018-09-10 15:28:39 +0100 | [diff] [blame] | 4328 | for_each_rtd_codec_dai(rtd, i, codec_dai) { |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4329 | /* connect BE DAI capture if widgets are valid */ |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4330 | codec = codec_dai->capture_widget; |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4331 | |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4332 | if (codec && capture_cpu) { |
| 4333 | if (!capture) { |
Jerome Brunet | a72706e | 2019-07-25 18:59:48 +0200 | [diff] [blame] | 4334 | substream = streams[SNDRV_PCM_STREAM_CAPTURE].substream; |
| 4335 | capture = snd_soc_dapm_new_dai(card, substream, |
Jerome Brunet | 054d650 | 2019-07-25 18:59:45 +0200 | [diff] [blame] | 4336 | "capture"); |
Charles Keepax | e36a1d0 | 2018-09-10 15:28:39 +0100 | [diff] [blame] | 4337 | if (IS_ERR(capture)) { |
| 4338 | dev_err(rtd->dev, |
| 4339 | "ASoC: Failed to create DAI %s: %ld\n", |
| 4340 | codec_dai->name, |
| 4341 | PTR_ERR(capture)); |
| 4342 | continue; |
| 4343 | } |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4344 | |
| 4345 | snd_soc_dapm_add_path(&card->dapm, capture, |
| 4346 | capture_cpu, NULL, NULL); |
| 4347 | } |
| 4348 | |
| 4349 | dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n", |
| 4350 | codec_dai->component->name, codec->name, |
| 4351 | cpu_dai->component->name, capture_cpu->name); |
| 4352 | |
| 4353 | snd_soc_dapm_add_path(&card->dapm, codec, capture, |
| 4354 | NULL, NULL); |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4355 | } |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4356 | } |
| 4357 | } |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4358 | |
Lars-Peter Clausen | c471fdd | 2014-04-29 14:51:22 +0200 | [diff] [blame] | 4359 | static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream, |
| 4360 | int event) |
| 4361 | { |
| 4362 | struct snd_soc_dapm_widget *w; |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 4363 | unsigned int ep; |
Lars-Peter Clausen | c471fdd | 2014-04-29 14:51:22 +0200 | [diff] [blame] | 4364 | |
| 4365 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 4366 | w = dai->playback_widget; |
| 4367 | else |
| 4368 | w = dai->capture_widget; |
| 4369 | |
| 4370 | if (w) { |
| 4371 | dapm_mark_dirty(w, "stream event"); |
| 4372 | |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 4373 | if (w->id == snd_soc_dapm_dai_in) { |
| 4374 | ep = SND_SOC_DAPM_EP_SOURCE; |
| 4375 | dapm_widget_invalidate_input_paths(w); |
| 4376 | } else { |
| 4377 | ep = SND_SOC_DAPM_EP_SINK; |
| 4378 | dapm_widget_invalidate_output_paths(w); |
| 4379 | } |
| 4380 | |
Lars-Peter Clausen | c471fdd | 2014-04-29 14:51:22 +0200 | [diff] [blame] | 4381 | switch (event) { |
| 4382 | case SND_SOC_DAPM_STREAM_START: |
| 4383 | w->active = 1; |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 4384 | w->is_ep = ep; |
Lars-Peter Clausen | c471fdd | 2014-04-29 14:51:22 +0200 | [diff] [blame] | 4385 | break; |
| 4386 | case SND_SOC_DAPM_STREAM_STOP: |
| 4387 | w->active = 0; |
Lars-Peter Clausen | a3423b0 | 2015-08-11 21:38:00 +0200 | [diff] [blame] | 4388 | w->is_ep = 0; |
Lars-Peter Clausen | c471fdd | 2014-04-29 14:51:22 +0200 | [diff] [blame] | 4389 | break; |
| 4390 | case SND_SOC_DAPM_STREAM_SUSPEND: |
| 4391 | case SND_SOC_DAPM_STREAM_RESUME: |
| 4392 | case SND_SOC_DAPM_STREAM_PAUSE_PUSH: |
| 4393 | case SND_SOC_DAPM_STREAM_PAUSE_RELEASE: |
| 4394 | break; |
| 4395 | } |
Liam Girdwood | b893ea5 | 2014-01-08 10:40:19 +0000 | [diff] [blame] | 4396 | } |
| 4397 | } |
| 4398 | |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 4399 | void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card) |
| 4400 | { |
Mengdong Lin | 1a49798 | 2015-11-18 02:34:11 -0500 | [diff] [blame] | 4401 | struct snd_soc_pcm_runtime *rtd; |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 4402 | |
| 4403 | /* for each BE DAI link... */ |
Kuninori Morimoto | bcb1fd1 | 2018-09-18 01:29:35 +0000 | [diff] [blame] | 4404 | for_each_card_rtds(card, rtd) { |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 4405 | /* |
| 4406 | * dynamic FE links have no fixed DAI mapping. |
| 4407 | * CODEC<->CODEC links have no direct connection. |
| 4408 | */ |
Charles Keepax | 778ff5b | 2018-09-05 15:21:00 +0100 | [diff] [blame] | 4409 | if (rtd->dai_link->dynamic) |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 4410 | continue; |
| 4411 | |
| 4412 | dapm_connect_dai_link_widgets(card, rtd); |
| 4413 | } |
| 4414 | } |
| 4415 | |
Liam Girdwood | d9b0951 | 2012-03-07 16:32:59 +0000 | [diff] [blame] | 4416 | static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream, |
| 4417 | int event) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4418 | { |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 4419 | struct snd_soc_dai *codec_dai; |
Benoit Cousson | 44ba264 | 2014-07-08 23:19:36 +0200 | [diff] [blame] | 4420 | int i; |
| 4421 | |
Lars-Peter Clausen | c471fdd | 2014-04-29 14:51:22 +0200 | [diff] [blame] | 4422 | soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event); |
Kuninori Morimoto | 0b7990e | 2018-09-03 02:12:56 +0000 | [diff] [blame] | 4423 | for_each_rtd_codec_dai(rtd, i, codec_dai) |
| 4424 | soc_dapm_dai_stream_event(codec_dai, stream, event); |
Liam Girdwood | d9b0951 | 2012-03-07 16:32:59 +0000 | [diff] [blame] | 4425 | |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 4426 | dapm_power_widgets(rtd->card, event); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4427 | } |
| 4428 | |
| 4429 | /** |
| 4430 | * snd_soc_dapm_stream_event - send a stream event to the dapm core |
| 4431 | * @rtd: PCM runtime data |
| 4432 | * @stream: stream name |
| 4433 | * @event: stream event |
| 4434 | * |
| 4435 | * Sends a stream event to the dapm core. The core then makes any |
| 4436 | * necessary widget power changes. |
| 4437 | * |
| 4438 | * Returns 0 for success else error. |
| 4439 | */ |
Liam Girdwood | d9b0951 | 2012-03-07 16:32:59 +0000 | [diff] [blame] | 4440 | void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream, |
| 4441 | int event) |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4442 | { |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 4443 | struct snd_soc_card *card = rtd->card; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4444 | |
Liam Girdwood | 3cd0434 | 2012-03-09 12:02:08 +0000 | [diff] [blame] | 4445 | mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Liam Girdwood | d9b0951 | 2012-03-07 16:32:59 +0000 | [diff] [blame] | 4446 | soc_dapm_stream_event(rtd, stream, event); |
Liam Girdwood | a73fb2d | 2012-03-07 10:38:26 +0000 | [diff] [blame] | 4447 | mutex_unlock(&card->dapm_mutex); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4448 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4449 | |
| 4450 | /** |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4451 | * snd_soc_dapm_enable_pin_unlocked - enable pin. |
| 4452 | * @dapm: DAPM context |
| 4453 | * @pin: pin name |
| 4454 | * |
| 4455 | * Enables input/output pin and its parents or children widgets iff there is |
| 4456 | * a valid audio route and active audio stream. |
| 4457 | * |
| 4458 | * Requires external locking. |
| 4459 | * |
| 4460 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 4461 | * do any widget power switching. |
| 4462 | */ |
| 4463 | int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm, |
| 4464 | const char *pin) |
| 4465 | { |
| 4466 | return snd_soc_dapm_set_pin(dapm, pin, 1); |
| 4467 | } |
| 4468 | EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked); |
| 4469 | |
| 4470 | /** |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4471 | * snd_soc_dapm_enable_pin - enable pin. |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4472 | * @dapm: DAPM context |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4473 | * @pin: pin name |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4474 | * |
Mark Brown | 74b8f95 | 2009-06-06 11:26:15 +0100 | [diff] [blame] | 4475 | * Enables input/output pin and its parents or children widgets iff there is |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4476 | * a valid audio route and active audio stream. |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4477 | * |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4478 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 4479 | * do any widget power switching. |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4480 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4481 | int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4482 | { |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4483 | int ret; |
| 4484 | |
| 4485 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
| 4486 | |
| 4487 | ret = snd_soc_dapm_set_pin(dapm, pin, 1); |
| 4488 | |
| 4489 | mutex_unlock(&dapm->card->dapm_mutex); |
| 4490 | |
| 4491 | return ret; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4492 | } |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4493 | EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4494 | |
| 4495 | /** |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4496 | * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled |
| 4497 | * @dapm: DAPM context |
| 4498 | * @pin: pin name |
| 4499 | * |
| 4500 | * Enables input/output pin regardless of any other state. This is |
| 4501 | * intended for use with microphone bias supplies used in microphone |
| 4502 | * jack detection. |
| 4503 | * |
| 4504 | * Requires external locking. |
| 4505 | * |
| 4506 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 4507 | * do any widget power switching. |
| 4508 | */ |
| 4509 | int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm, |
| 4510 | const char *pin) |
| 4511 | { |
| 4512 | struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true); |
| 4513 | |
| 4514 | if (!w) { |
| 4515 | dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin); |
| 4516 | return -EINVAL; |
| 4517 | } |
| 4518 | |
| 4519 | dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin); |
Lars-Peter Clausen | 92a99ea | 2014-10-25 17:42:03 +0200 | [diff] [blame] | 4520 | if (!w->connected) { |
| 4521 | /* |
| 4522 | * w->force does not affect the number of input or output paths, |
| 4523 | * so we only have to recheck if w->connected is changed |
| 4524 | */ |
| 4525 | dapm_widget_invalidate_input_paths(w); |
| 4526 | dapm_widget_invalidate_output_paths(w); |
| 4527 | w->connected = 1; |
| 4528 | } |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4529 | w->force = 1; |
| 4530 | dapm_mark_dirty(w, "force enable"); |
| 4531 | |
| 4532 | return 0; |
| 4533 | } |
| 4534 | EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked); |
| 4535 | |
| 4536 | /** |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 4537 | * snd_soc_dapm_force_enable_pin - force a pin to be enabled |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4538 | * @dapm: DAPM context |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 4539 | * @pin: pin name |
| 4540 | * |
| 4541 | * Enables input/output pin regardless of any other state. This is |
| 4542 | * intended for use with microphone bias supplies used in microphone |
| 4543 | * jack detection. |
| 4544 | * |
| 4545 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 4546 | * do any widget power switching. |
| 4547 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4548 | int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm, |
| 4549 | const char *pin) |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 4550 | { |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4551 | int ret; |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 4552 | |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4553 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 4554 | |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4555 | ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin); |
Mark Brown | 0d86733 | 2011-04-06 11:38:14 +0900 | [diff] [blame] | 4556 | |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4557 | mutex_unlock(&dapm->card->dapm_mutex); |
| 4558 | |
| 4559 | return ret; |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 4560 | } |
| 4561 | EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin); |
| 4562 | |
| 4563 | /** |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4564 | * snd_soc_dapm_disable_pin_unlocked - disable pin. |
| 4565 | * @dapm: DAPM context |
| 4566 | * @pin: pin name |
| 4567 | * |
| 4568 | * Disables input/output pin and its parents or children widgets. |
| 4569 | * |
| 4570 | * Requires external locking. |
| 4571 | * |
| 4572 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 4573 | * do any widget power switching. |
| 4574 | */ |
| 4575 | int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm, |
| 4576 | const char *pin) |
| 4577 | { |
| 4578 | return snd_soc_dapm_set_pin(dapm, pin, 0); |
| 4579 | } |
| 4580 | EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked); |
| 4581 | |
| 4582 | /** |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4583 | * snd_soc_dapm_disable_pin - disable pin. |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4584 | * @dapm: DAPM context |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4585 | * @pin: pin name |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 4586 | * |
Mark Brown | 74b8f95 | 2009-06-06 11:26:15 +0100 | [diff] [blame] | 4587 | * Disables input/output pin and its parents or children widgets. |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4588 | * |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4589 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 4590 | * do any widget power switching. |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 4591 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4592 | int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm, |
| 4593 | const char *pin) |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4594 | { |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4595 | int ret; |
| 4596 | |
| 4597 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
| 4598 | |
| 4599 | ret = snd_soc_dapm_set_pin(dapm, pin, 0); |
| 4600 | |
| 4601 | mutex_unlock(&dapm->card->dapm_mutex); |
| 4602 | |
| 4603 | return ret; |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4604 | } |
| 4605 | EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin); |
| 4606 | |
| 4607 | /** |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4608 | * snd_soc_dapm_nc_pin_unlocked - permanently disable pin. |
| 4609 | * @dapm: DAPM context |
| 4610 | * @pin: pin name |
| 4611 | * |
| 4612 | * Marks the specified pin as being not connected, disabling it along |
| 4613 | * any parent or child widgets. At present this is identical to |
| 4614 | * snd_soc_dapm_disable_pin() but in future it will be extended to do |
| 4615 | * additional things such as disabling controls which only affect |
| 4616 | * paths through the pin. |
| 4617 | * |
| 4618 | * Requires external locking. |
| 4619 | * |
| 4620 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 4621 | * do any widget power switching. |
| 4622 | */ |
| 4623 | int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm, |
| 4624 | const char *pin) |
| 4625 | { |
| 4626 | return snd_soc_dapm_set_pin(dapm, pin, 0); |
| 4627 | } |
| 4628 | EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked); |
| 4629 | |
| 4630 | /** |
Mark Brown | 5817b52 | 2008-09-24 11:23:11 +0100 | [diff] [blame] | 4631 | * snd_soc_dapm_nc_pin - permanently disable pin. |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4632 | * @dapm: DAPM context |
Mark Brown | 5817b52 | 2008-09-24 11:23:11 +0100 | [diff] [blame] | 4633 | * @pin: pin name |
| 4634 | * |
| 4635 | * Marks the specified pin as being not connected, disabling it along |
| 4636 | * any parent or child widgets. At present this is identical to |
| 4637 | * snd_soc_dapm_disable_pin() but in future it will be extended to do |
| 4638 | * additional things such as disabling controls which only affect |
| 4639 | * paths through the pin. |
| 4640 | * |
| 4641 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 4642 | * do any widget power switching. |
| 4643 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4644 | int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin) |
Mark Brown | 5817b52 | 2008-09-24 11:23:11 +0100 | [diff] [blame] | 4645 | { |
Charles Keepax | 1139110 | 2014-02-18 15:22:14 +0000 | [diff] [blame] | 4646 | int ret; |
| 4647 | |
| 4648 | mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME); |
| 4649 | |
| 4650 | ret = snd_soc_dapm_set_pin(dapm, pin, 0); |
| 4651 | |
| 4652 | mutex_unlock(&dapm->card->dapm_mutex); |
| 4653 | |
| 4654 | return ret; |
Mark Brown | 5817b52 | 2008-09-24 11:23:11 +0100 | [diff] [blame] | 4655 | } |
| 4656 | EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin); |
| 4657 | |
| 4658 | /** |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4659 | * snd_soc_dapm_get_pin_status - get audio pin status |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4660 | * @dapm: DAPM context |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4661 | * @pin: audio signal pin endpoint (or start point) |
| 4662 | * |
| 4663 | * Get audio pin status - connected or disconnected. |
| 4664 | * |
| 4665 | * Returns 1 for connected otherwise 0. |
| 4666 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4667 | int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm, |
| 4668 | const char *pin) |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 4669 | { |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 4670 | struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true); |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 4671 | |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 4672 | if (w) |
| 4673 | return w->connected; |
Stephen Warren | a68b38a | 2011-04-19 15:25:11 -0600 | [diff] [blame] | 4674 | |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 4675 | return 0; |
| 4676 | } |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 4677 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status); |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 4678 | |
| 4679 | /** |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 4680 | * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4681 | * @dapm: DAPM context |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 4682 | * @pin: audio signal pin endpoint (or start point) |
| 4683 | * |
| 4684 | * Mark the given endpoint or pin as ignoring suspend. When the |
| 4685 | * system is disabled a path between two endpoints flagged as ignoring |
| 4686 | * suspend will not be disabled. The path must already be enabled via |
| 4687 | * normal means at suspend time, it will not be turned on if it was not |
| 4688 | * already enabled. |
| 4689 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4690 | int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm, |
| 4691 | const char *pin) |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 4692 | { |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 4693 | struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false); |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 4694 | |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 4695 | if (!w) { |
Liam Girdwood | 30a6a1a | 2012-11-19 14:39:12 +0000 | [diff] [blame] | 4696 | dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin); |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 4697 | return -EINVAL; |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 4698 | } |
| 4699 | |
Lars-Peter Clausen | 91a5fca | 2011-04-27 18:34:31 +0200 | [diff] [blame] | 4700 | w->ignore_suspend = 1; |
| 4701 | |
| 4702 | return 0; |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 4703 | } |
| 4704 | EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend); |
| 4705 | |
Lars-Peter Clausen | cdc4508 | 2014-10-20 19:36:33 +0200 | [diff] [blame] | 4706 | /** |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4707 | * snd_soc_dapm_free - free dapm resources |
Peter Ujfalusi | 728a522 | 2011-08-26 16:33:52 +0300 | [diff] [blame] | 4708 | * @dapm: DAPM context |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4709 | * |
| 4710 | * Free all dapm widgets and resources. |
| 4711 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4712 | void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4713 | { |
Lars-Peter Clausen | 6c45e12 | 2011-04-30 19:45:50 +0200 | [diff] [blame] | 4714 | dapm_debugfs_cleanup(dapm); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4715 | dapm_free_widgets(dapm); |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 4716 | list_del(&dapm->list); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4717 | } |
| 4718 | EXPORT_SYMBOL_GPL(snd_soc_dapm_free); |
| 4719 | |
Kuninori Morimoto | 95c267d | 2019-08-23 09:58:52 +0900 | [diff] [blame] | 4720 | void snd_soc_dapm_init(struct snd_soc_dapm_context *dapm, |
| 4721 | struct snd_soc_card *card, |
| 4722 | struct snd_soc_component *component) |
| 4723 | { |
| 4724 | dapm->card = card; |
| 4725 | dapm->component = component; |
| 4726 | dapm->bias_level = SND_SOC_BIAS_OFF; |
| 4727 | |
| 4728 | if (component) { |
| 4729 | dapm->dev = component->dev; |
| 4730 | dapm->idle_bias_off = !component->driver->idle_bias_on, |
| 4731 | dapm->suspend_bias_off = component->driver->suspend_bias_off; |
| 4732 | } else { |
| 4733 | dapm->dev = card->dev; |
| 4734 | } |
| 4735 | |
| 4736 | INIT_LIST_HEAD(&dapm->list); |
| 4737 | list_add(&dapm->list, &card->dapm_list); |
| 4738 | } |
| 4739 | EXPORT_SYMBOL_GPL(snd_soc_dapm_init); |
| 4740 | |
Xiang Xiao | 5799635 | 2014-03-02 00:04:02 +0800 | [diff] [blame] | 4741 | static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm) |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 4742 | { |
Liam Girdwood | 01005a7 | 2012-07-06 16:57:05 +0100 | [diff] [blame] | 4743 | struct snd_soc_card *card = dapm->card; |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 4744 | struct snd_soc_dapm_widget *w; |
| 4745 | LIST_HEAD(down_list); |
| 4746 | int powerdown = 0; |
| 4747 | |
Liam Girdwood | 01005a7 | 2012-07-06 16:57:05 +0100 | [diff] [blame] | 4748 | mutex_lock(&card->dapm_mutex); |
| 4749 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 4750 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 4751 | if (w->dapm != dapm) |
| 4752 | continue; |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 4753 | if (w->power) { |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 4754 | dapm_seq_insert(w, &down_list, false); |
Mark Brown | c2caa4d | 2009-06-26 15:36:56 +0100 | [diff] [blame] | 4755 | w->power = 0; |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 4756 | powerdown = 1; |
| 4757 | } |
| 4758 | } |
| 4759 | |
| 4760 | /* If there were no widgets to power down we're already in |
| 4761 | * standby. |
| 4762 | */ |
| 4763 | if (powerdown) { |
Mark Brown | 7679e42 | 2012-02-22 15:52:56 +0000 | [diff] [blame] | 4764 | if (dapm->bias_level == SND_SOC_BIAS_ON) |
| 4765 | snd_soc_dapm_set_bias_level(dapm, |
| 4766 | SND_SOC_BIAS_PREPARE); |
Lars-Peter Clausen | 95dd5cd | 2013-07-29 17:13:56 +0200 | [diff] [blame] | 4767 | dapm_seq_run(card, &down_list, 0, false); |
Mark Brown | 7679e42 | 2012-02-22 15:52:56 +0000 | [diff] [blame] | 4768 | if (dapm->bias_level == SND_SOC_BIAS_PREPARE) |
| 4769 | snd_soc_dapm_set_bias_level(dapm, |
| 4770 | SND_SOC_BIAS_STANDBY); |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 4771 | } |
Liam Girdwood | 01005a7 | 2012-07-06 16:57:05 +0100 | [diff] [blame] | 4772 | |
| 4773 | mutex_unlock(&card->dapm_mutex); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 4774 | } |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 4775 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 4776 | /* |
| 4777 | * snd_soc_dapm_shutdown - callback for system shutdown |
| 4778 | */ |
| 4779 | void snd_soc_dapm_shutdown(struct snd_soc_card *card) |
| 4780 | { |
Xiang Xiao | 5799635 | 2014-03-02 00:04:02 +0800 | [diff] [blame] | 4781 | struct snd_soc_dapm_context *dapm; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 4782 | |
Xiang Xiao | 5799635 | 2014-03-02 00:04:02 +0800 | [diff] [blame] | 4783 | list_for_each_entry(dapm, &card->dapm_list, list) { |
Xiang Xiao | 17282ba | 2014-03-02 00:04:03 +0800 | [diff] [blame] | 4784 | if (dapm != &card->dapm) { |
| 4785 | soc_dapm_shutdown_dapm(dapm); |
| 4786 | if (dapm->bias_level == SND_SOC_BIAS_STANDBY) |
| 4787 | snd_soc_dapm_set_bias_level(dapm, |
| 4788 | SND_SOC_BIAS_OFF); |
| 4789 | } |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 4790 | } |
Xiang Xiao | 17282ba | 2014-03-02 00:04:03 +0800 | [diff] [blame] | 4791 | |
| 4792 | soc_dapm_shutdown_dapm(&card->dapm); |
| 4793 | if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY) |
| 4794 | snd_soc_dapm_set_bias_level(&card->dapm, |
| 4795 | SND_SOC_BIAS_OFF); |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 4796 | } |
| 4797 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4798 | /* Module information */ |
Liam Girdwood | d331124 | 2008-10-12 13:17:36 +0100 | [diff] [blame] | 4799 | MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk"); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 4800 | MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC"); |
| 4801 | MODULE_LICENSE("GPL"); |