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