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 |
| 17 | * mic/meadphone insertion events. |
| 18 | * o Automatic Mic Bias support |
| 19 | * o Jack insertion power event initiation - e.g. hp insertion will enable |
| 20 | * sinks, dacs, etc |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 21 | * o Delayed powerdown of audio susbsystem to reduce pops between a quick |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 22 | * device reopen. |
| 23 | * |
| 24 | * Todo: |
| 25 | * o DAPM power change sequencing - allow for configurable per |
| 26 | * codec sequences. |
| 27 | * o Support for analogue bias optimisation. |
| 28 | * o Support for reduced codec oversampling rates. |
| 29 | * o Support for reduced codec bias currents. |
| 30 | */ |
| 31 | |
| 32 | #include <linux/module.h> |
| 33 | #include <linux/moduleparam.h> |
| 34 | #include <linux/init.h> |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 35 | #include <linux/async.h> |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 36 | #include <linux/delay.h> |
| 37 | #include <linux/pm.h> |
| 38 | #include <linux/bitops.h> |
| 39 | #include <linux/platform_device.h> |
| 40 | #include <linux/jiffies.h> |
Takashi Iwai | 20496ff | 2009-08-24 09:40:34 +0200 | [diff] [blame] | 41 | #include <linux/debugfs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 42 | #include <linux/slab.h> |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 43 | #include <sound/core.h> |
| 44 | #include <sound/pcm.h> |
| 45 | #include <sound/pcm_params.h> |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 46 | #include <sound/soc.h> |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 47 | #include <sound/initval.h> |
| 48 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 49 | #include <trace/events/asoc.h> |
| 50 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 51 | /* dapm power sequences - make this per codec in the future */ |
| 52 | static int dapm_up_seq[] = { |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 53 | [snd_soc_dapm_pre] = 0, |
| 54 | [snd_soc_dapm_supply] = 1, |
| 55 | [snd_soc_dapm_micbias] = 2, |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 56 | [snd_soc_dapm_aif_in] = 3, |
| 57 | [snd_soc_dapm_aif_out] = 3, |
| 58 | [snd_soc_dapm_mic] = 4, |
| 59 | [snd_soc_dapm_mux] = 5, |
Dimitris Papastamos | 24ff33a | 2010-12-16 15:53:39 +0000 | [diff] [blame] | 60 | [snd_soc_dapm_virt_mux] = 5, |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 61 | [snd_soc_dapm_value_mux] = 5, |
| 62 | [snd_soc_dapm_dac] = 6, |
| 63 | [snd_soc_dapm_mixer] = 7, |
| 64 | [snd_soc_dapm_mixer_named_ctl] = 7, |
| 65 | [snd_soc_dapm_pga] = 8, |
| 66 | [snd_soc_dapm_adc] = 9, |
Olaya, Margarita | d88429a | 2010-12-10 21:11:44 -0600 | [diff] [blame] | 67 | [snd_soc_dapm_out_drv] = 10, |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 68 | [snd_soc_dapm_hp] = 10, |
| 69 | [snd_soc_dapm_spk] = 10, |
| 70 | [snd_soc_dapm_post] = 11, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 71 | }; |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 72 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 73 | static int dapm_down_seq[] = { |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 74 | [snd_soc_dapm_pre] = 0, |
| 75 | [snd_soc_dapm_adc] = 1, |
| 76 | [snd_soc_dapm_hp] = 2, |
Mark Brown | 1ca0406 | 2009-08-17 16:26:59 +0100 | [diff] [blame] | 77 | [snd_soc_dapm_spk] = 2, |
Olaya, Margarita | d88429a | 2010-12-10 21:11:44 -0600 | [diff] [blame] | 78 | [snd_soc_dapm_out_drv] = 2, |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 79 | [snd_soc_dapm_pga] = 4, |
| 80 | [snd_soc_dapm_mixer_named_ctl] = 5, |
Mark Brown | e3d4dab | 2009-06-07 13:08:45 +0100 | [diff] [blame] | 81 | [snd_soc_dapm_mixer] = 5, |
| 82 | [snd_soc_dapm_dac] = 6, |
| 83 | [snd_soc_dapm_mic] = 7, |
| 84 | [snd_soc_dapm_micbias] = 8, |
| 85 | [snd_soc_dapm_mux] = 9, |
Dimitris Papastamos | 24ff33a | 2010-12-16 15:53:39 +0000 | [diff] [blame] | 86 | [snd_soc_dapm_virt_mux] = 9, |
Mark Brown | e3d4dab | 2009-06-07 13:08:45 +0100 | [diff] [blame] | 87 | [snd_soc_dapm_value_mux] = 9, |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 88 | [snd_soc_dapm_aif_in] = 10, |
| 89 | [snd_soc_dapm_aif_out] = 10, |
| 90 | [snd_soc_dapm_supply] = 11, |
| 91 | [snd_soc_dapm_post] = 12, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 92 | }; |
| 93 | |
Troy Kisky | 12ef193 | 2008-10-13 17:42:14 -0700 | [diff] [blame] | 94 | static void pop_wait(u32 pop_time) |
Mark Brown | 15e4c72 | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 95 | { |
| 96 | if (pop_time) |
| 97 | schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time)); |
| 98 | } |
| 99 | |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 100 | 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] | 101 | { |
| 102 | va_list args; |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 103 | char *buf; |
| 104 | |
| 105 | if (!pop_time) |
| 106 | return; |
| 107 | |
| 108 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 109 | if (buf == NULL) |
| 110 | return; |
Mark Brown | 15e4c72 | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 111 | |
| 112 | va_start(args, fmt); |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 113 | vsnprintf(buf, PAGE_SIZE, fmt, args); |
Takashi Iwai | 9d01df0 | 2010-12-22 14:08:40 +0100 | [diff] [blame] | 114 | dev_info(dev, "%s", buf); |
Mark Brown | 15e4c72 | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 115 | va_end(args); |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 116 | |
| 117 | kfree(buf); |
Mark Brown | 15e4c72 | 2008-07-02 11:51:20 +0100 | [diff] [blame] | 118 | } |
| 119 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 120 | /* create a new dapm widget */ |
Takashi Iwai | 88cb429 | 2007-02-05 14:56:20 +0100 | [diff] [blame] | 121 | static inline struct snd_soc_dapm_widget *dapm_cnew_widget( |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 122 | const struct snd_soc_dapm_widget *_widget) |
| 123 | { |
Takashi Iwai | 88cb429 | 2007-02-05 14:56:20 +0100 | [diff] [blame] | 124 | return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 125 | } |
| 126 | |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 127 | /** |
| 128 | * 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] | 129 | * @dapm: DAPM context |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 130 | * @level: level to configure |
| 131 | * |
| 132 | * Configure the bias (power) levels for the SoC audio device. |
| 133 | * |
| 134 | * Returns 0 for success else error. |
| 135 | */ |
Mark Brown | ed5a4c4 | 2011-02-18 11:12:42 -0800 | [diff] [blame] | 136 | 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] | 137 | enum snd_soc_bias_level level) |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 138 | { |
Mark Brown | ed5a4c4 | 2011-02-18 11:12:42 -0800 | [diff] [blame] | 139 | struct snd_soc_card *card = dapm->card; |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 140 | int ret = 0; |
| 141 | |
Mark Brown | f83fba8 | 2009-05-18 15:44:43 +0100 | [diff] [blame] | 142 | switch (level) { |
| 143 | case SND_SOC_BIAS_ON: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 144 | dev_dbg(dapm->dev, "Setting full bias\n"); |
Mark Brown | f83fba8 | 2009-05-18 15:44:43 +0100 | [diff] [blame] | 145 | break; |
| 146 | case SND_SOC_BIAS_PREPARE: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 147 | dev_dbg(dapm->dev, "Setting bias prepare\n"); |
Mark Brown | f83fba8 | 2009-05-18 15:44:43 +0100 | [diff] [blame] | 148 | break; |
| 149 | case SND_SOC_BIAS_STANDBY: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 150 | dev_dbg(dapm->dev, "Setting standby bias\n"); |
Mark Brown | f83fba8 | 2009-05-18 15:44:43 +0100 | [diff] [blame] | 151 | break; |
| 152 | case SND_SOC_BIAS_OFF: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 153 | dev_dbg(dapm->dev, "Setting bias off\n"); |
Mark Brown | f83fba8 | 2009-05-18 15:44:43 +0100 | [diff] [blame] | 154 | break; |
| 155 | default: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 156 | dev_err(dapm->dev, "Setting invalid bias %d\n", level); |
Mark Brown | f83fba8 | 2009-05-18 15:44:43 +0100 | [diff] [blame] | 157 | return -EINVAL; |
| 158 | } |
| 159 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 160 | trace_snd_soc_bias_level_start(card, level); |
| 161 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 162 | if (card && card->set_bias_level) |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 163 | ret = card->set_bias_level(card, level); |
Mark Brown | 474e09c | 2009-08-19 14:18:53 +0100 | [diff] [blame] | 164 | if (ret == 0) { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 165 | if (dapm->codec && dapm->codec->driver->set_bias_level) |
| 166 | ret = dapm->codec->driver->set_bias_level(dapm->codec, level); |
Mark Brown | 474e09c | 2009-08-19 14:18:53 +0100 | [diff] [blame] | 167 | else |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 168 | dapm->bias_level = level; |
Mark Brown | 474e09c | 2009-08-19 14:18:53 +0100 | [diff] [blame] | 169 | } |
Mark Brown | 1badabd | 2010-12-04 12:41:04 +0000 | [diff] [blame] | 170 | if (ret == 0) { |
| 171 | if (card && card->set_bias_level_post) |
| 172 | ret = card->set_bias_level_post(card, level); |
| 173 | } |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 174 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 175 | trace_snd_soc_bias_level_done(card, level); |
| 176 | |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 177 | return ret; |
| 178 | } |
| 179 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 180 | /* set up initial codec paths */ |
| 181 | static void dapm_set_path_status(struct snd_soc_dapm_widget *w, |
| 182 | struct snd_soc_dapm_path *p, int i) |
| 183 | { |
| 184 | switch (w->id) { |
| 185 | case snd_soc_dapm_switch: |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 186 | case snd_soc_dapm_mixer: |
| 187 | case snd_soc_dapm_mixer_named_ctl: { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 188 | int val; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 189 | struct soc_mixer_control *mc = (struct soc_mixer_control *) |
| 190 | w->kcontrols[i].private_value; |
Jon Smirl | 815ecf8 | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 191 | unsigned int reg = mc->reg; |
| 192 | unsigned int shift = mc->shift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 193 | int max = mc->max; |
Jon Smirl | 815ecf8 | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 194 | unsigned int mask = (1 << fls(max)) - 1; |
| 195 | unsigned int invert = mc->invert; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 196 | |
| 197 | val = snd_soc_read(w->codec, reg); |
| 198 | val = (val >> shift) & mask; |
| 199 | |
| 200 | if ((invert && !val) || (!invert && val)) |
| 201 | p->connect = 1; |
| 202 | else |
| 203 | p->connect = 0; |
| 204 | } |
| 205 | break; |
| 206 | case snd_soc_dapm_mux: { |
| 207 | struct soc_enum *e = (struct soc_enum *)w->kcontrols[i].private_value; |
| 208 | int val, item, bitmask; |
| 209 | |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 210 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 211 | ; |
| 212 | val = snd_soc_read(w->codec, e->reg); |
| 213 | item = (val >> e->shift_l) & (bitmask - 1); |
| 214 | |
| 215 | p->connect = 0; |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 216 | for (i = 0; i < e->max; i++) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 217 | if (!(strcmp(p->name, e->texts[i])) && item == i) |
| 218 | p->connect = 1; |
| 219 | } |
| 220 | } |
| 221 | break; |
Dimitris Papastamos | 24ff33a | 2010-12-16 15:53:39 +0000 | [diff] [blame] | 222 | case snd_soc_dapm_virt_mux: { |
| 223 | struct soc_enum *e = (struct soc_enum *)w->kcontrols[i].private_value; |
| 224 | |
| 225 | p->connect = 0; |
| 226 | /* since a virtual mux has no backing registers to |
| 227 | * decide which path to connect, it will try to match |
| 228 | * with the first enumeration. This is to ensure |
| 229 | * that the default mux choice (the first) will be |
| 230 | * correctly powered up during initialization. |
| 231 | */ |
| 232 | if (!strcmp(p->name, e->texts[0])) |
| 233 | p->connect = 1; |
| 234 | } |
| 235 | break; |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 236 | case snd_soc_dapm_value_mux: { |
Peter Ujfalusi | 7415555 | 2009-01-08 13:34:29 +0200 | [diff] [blame] | 237 | struct soc_enum *e = (struct soc_enum *) |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 238 | w->kcontrols[i].private_value; |
| 239 | int val, item; |
| 240 | |
| 241 | val = snd_soc_read(w->codec, e->reg); |
| 242 | val = (val >> e->shift_l) & e->mask; |
| 243 | for (item = 0; item < e->max; item++) { |
| 244 | if (val == e->values[item]) |
| 245 | break; |
| 246 | } |
| 247 | |
| 248 | p->connect = 0; |
| 249 | for (i = 0; i < e->max; i++) { |
| 250 | if (!(strcmp(p->name, e->texts[i])) && item == i) |
| 251 | p->connect = 1; |
| 252 | } |
| 253 | } |
| 254 | break; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 255 | /* does not effect routing - always connected */ |
| 256 | case snd_soc_dapm_pga: |
Olaya, Margarita | d88429a | 2010-12-10 21:11:44 -0600 | [diff] [blame] | 257 | case snd_soc_dapm_out_drv: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 258 | case snd_soc_dapm_output: |
| 259 | case snd_soc_dapm_adc: |
| 260 | case snd_soc_dapm_input: |
| 261 | case snd_soc_dapm_dac: |
| 262 | case snd_soc_dapm_micbias: |
| 263 | case snd_soc_dapm_vmid: |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 264 | case snd_soc_dapm_supply: |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 265 | case snd_soc_dapm_aif_in: |
| 266 | case snd_soc_dapm_aif_out: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 267 | p->connect = 1; |
| 268 | break; |
| 269 | /* does effect routing - dynamically connected */ |
| 270 | case snd_soc_dapm_hp: |
| 271 | case snd_soc_dapm_mic: |
| 272 | case snd_soc_dapm_spk: |
| 273 | case snd_soc_dapm_line: |
| 274 | case snd_soc_dapm_pre: |
| 275 | case snd_soc_dapm_post: |
| 276 | p->connect = 0; |
| 277 | break; |
| 278 | } |
| 279 | } |
| 280 | |
Mark Brown | 74b8f95 | 2009-06-06 11:26:15 +0100 | [diff] [blame] | 281 | /* connect mux widget to its interconnecting audio paths */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 282 | static int dapm_connect_mux(struct snd_soc_dapm_context *dapm, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 283 | struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest, |
| 284 | struct snd_soc_dapm_path *path, const char *control_name, |
| 285 | const struct snd_kcontrol_new *kcontrol) |
| 286 | { |
| 287 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
| 288 | int i; |
| 289 | |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 290 | for (i = 0; i < e->max; i++) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 291 | if (!(strcmp(control_name, e->texts[i]))) { |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 292 | list_add(&path->list, &dapm->card->paths); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 293 | list_add(&path->list_sink, &dest->sources); |
| 294 | list_add(&path->list_source, &src->sinks); |
| 295 | path->name = (char*)e->texts[i]; |
| 296 | dapm_set_path_status(dest, path, 0); |
| 297 | return 0; |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | return -ENODEV; |
| 302 | } |
| 303 | |
Mark Brown | 74b8f95 | 2009-06-06 11:26:15 +0100 | [diff] [blame] | 304 | /* connect mixer widget to its interconnecting audio paths */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 305 | static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 306 | struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest, |
| 307 | struct snd_soc_dapm_path *path, const char *control_name) |
| 308 | { |
| 309 | int i; |
| 310 | |
| 311 | /* search for mixer kcontrol */ |
| 312 | for (i = 0; i < dest->num_kcontrols; i++) { |
| 313 | if (!strcmp(control_name, dest->kcontrols[i].name)) { |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 314 | list_add(&path->list, &dapm->card->paths); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 315 | list_add(&path->list_sink, &dest->sources); |
| 316 | list_add(&path->list_source, &src->sinks); |
| 317 | path->name = dest->kcontrols[i].name; |
| 318 | dapm_set_path_status(dest, path, i); |
| 319 | return 0; |
| 320 | } |
| 321 | } |
| 322 | return -ENODEV; |
| 323 | } |
| 324 | |
| 325 | /* update dapm codec register bits */ |
| 326 | static int dapm_update_bits(struct snd_soc_dapm_widget *widget) |
| 327 | { |
| 328 | int change, power; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 329 | unsigned int old, new; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 330 | struct snd_soc_codec *codec = widget->codec; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 331 | struct snd_soc_dapm_context *dapm = widget->dapm; |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 332 | struct snd_soc_card *card = dapm->card; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 333 | |
| 334 | /* check for valid widgets */ |
| 335 | if (widget->reg < 0 || widget->id == snd_soc_dapm_input || |
| 336 | widget->id == snd_soc_dapm_output || |
| 337 | widget->id == snd_soc_dapm_hp || |
| 338 | widget->id == snd_soc_dapm_mic || |
| 339 | widget->id == snd_soc_dapm_line || |
| 340 | widget->id == snd_soc_dapm_spk) |
| 341 | return 0; |
| 342 | |
| 343 | power = widget->power; |
| 344 | if (widget->invert) |
| 345 | power = (power ? 0:1); |
| 346 | |
| 347 | old = snd_soc_read(codec, widget->reg); |
| 348 | new = (old & ~(0x1 << widget->shift)) | (power << widget->shift); |
| 349 | |
| 350 | change = old != new; |
| 351 | if (change) { |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 352 | pop_dbg(dapm->dev, card->pop_time, |
| 353 | "pop test %s : %s in %d ms\n", |
Troy Kisky | 12ef193 | 2008-10-13 17:42:14 -0700 | [diff] [blame] | 354 | widget->name, widget->power ? "on" : "off", |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 355 | card->pop_time); |
| 356 | pop_wait(card->pop_time); |
Mark Brown | 6922471 | 2010-03-03 14:57:09 +0000 | [diff] [blame] | 357 | snd_soc_write(codec, widget->reg, new); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 358 | } |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 359 | dev_dbg(dapm->dev, "reg %x old %x new %x change %d\n", widget->reg, |
| 360 | old, new, change); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 361 | return change; |
| 362 | } |
| 363 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 364 | /* create new dapm mixer control */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 365 | static int dapm_new_mixer(struct snd_soc_dapm_context *dapm, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 366 | struct snd_soc_dapm_widget *w) |
| 367 | { |
| 368 | int i, ret = 0; |
Mark Brown | 3e5ff4d | 2011-03-09 11:33:09 +0000 | [diff] [blame] | 369 | size_t name_len, prefix_len; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 370 | struct snd_soc_dapm_path *path; |
Mark Brown | 12ea2c7 | 2011-03-02 18:17:32 +0000 | [diff] [blame] | 371 | struct snd_card *card = dapm->card->snd_card; |
Mark Brown | efb7ac3 | 2011-03-08 17:23:24 +0000 | [diff] [blame] | 372 | const char *prefix; |
| 373 | |
| 374 | if (dapm->codec) |
| 375 | prefix = dapm->codec->name_prefix; |
| 376 | else |
| 377 | prefix = NULL; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 378 | |
Mark Brown | 3e5ff4d | 2011-03-09 11:33:09 +0000 | [diff] [blame] | 379 | if (prefix) |
| 380 | prefix_len = strlen(prefix) + 1; |
| 381 | else |
| 382 | prefix_len = 0; |
| 383 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 384 | /* add kcontrol */ |
| 385 | for (i = 0; i < w->num_kcontrols; i++) { |
| 386 | |
| 387 | /* match name */ |
| 388 | list_for_each_entry(path, &w->sources, list_sink) { |
| 389 | |
| 390 | /* mixer/mux paths name must match control name */ |
| 391 | if (path->name != (char*)w->kcontrols[i].name) |
| 392 | continue; |
| 393 | |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 394 | /* add dapm control with long name. |
| 395 | * for dapm_mixer this is the concatenation of the |
| 396 | * mixer and kcontrol name. |
| 397 | * for dapm_mixer_named_ctl this is simply the |
| 398 | * kcontrol name. |
| 399 | */ |
| 400 | name_len = strlen(w->kcontrols[i].name) + 1; |
Mark Brown | 07495f3 | 2009-03-05 17:06:23 +0000 | [diff] [blame] | 401 | if (w->id != snd_soc_dapm_mixer_named_ctl) |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 402 | name_len += 1 + strlen(w->name); |
| 403 | |
Mark Brown | 219b93f | 2008-10-28 13:02:31 +0000 | [diff] [blame] | 404 | path->long_name = kmalloc(name_len, GFP_KERNEL); |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 405 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 406 | if (path->long_name == NULL) |
| 407 | return -ENOMEM; |
| 408 | |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 409 | switch (w->id) { |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 410 | default: |
Mark Brown | 3e5ff4d | 2011-03-09 11:33:09 +0000 | [diff] [blame] | 411 | /* The control will get a prefix from |
| 412 | * the control creation process but |
| 413 | * we're also using the same prefix |
| 414 | * for widgets so cut the prefix off |
| 415 | * the front of the widget name. |
| 416 | */ |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 417 | snprintf(path->long_name, name_len, "%s %s", |
Mark Brown | 3e5ff4d | 2011-03-09 11:33:09 +0000 | [diff] [blame] | 418 | w->name + prefix_len, |
| 419 | w->kcontrols[i].name); |
Mark Brown | 07495f3 | 2009-03-05 17:06:23 +0000 | [diff] [blame] | 420 | break; |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 421 | case snd_soc_dapm_mixer_named_ctl: |
| 422 | snprintf(path->long_name, name_len, "%s", |
| 423 | w->kcontrols[i].name); |
Mark Brown | 07495f3 | 2009-03-05 17:06:23 +0000 | [diff] [blame] | 424 | break; |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 425 | } |
| 426 | |
Mark Brown | 219b93f | 2008-10-28 13:02:31 +0000 | [diff] [blame] | 427 | path->long_name[name_len - 1] = '\0'; |
| 428 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 429 | path->kcontrol = snd_soc_cnew(&w->kcontrols[i], w, |
Mark Brown | efb7ac3 | 2011-03-08 17:23:24 +0000 | [diff] [blame] | 430 | path->long_name, prefix); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 431 | ret = snd_ctl_add(card, path->kcontrol); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 432 | if (ret < 0) { |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 433 | dev_err(dapm->dev, |
| 434 | "asoc: failed to add dapm kcontrol %s: %d\n", |
| 435 | path->long_name, ret); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 436 | kfree(path->long_name); |
| 437 | path->long_name = NULL; |
| 438 | return ret; |
| 439 | } |
| 440 | } |
| 441 | } |
| 442 | return ret; |
| 443 | } |
| 444 | |
| 445 | /* create new dapm mux control */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 446 | static int dapm_new_mux(struct snd_soc_dapm_context *dapm, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 447 | struct snd_soc_dapm_widget *w) |
| 448 | { |
| 449 | struct snd_soc_dapm_path *path = NULL; |
| 450 | struct snd_kcontrol *kcontrol; |
Mark Brown | 12ea2c7 | 2011-03-02 18:17:32 +0000 | [diff] [blame] | 451 | struct snd_card *card = dapm->card->snd_card; |
Mark Brown | efb7ac3 | 2011-03-08 17:23:24 +0000 | [diff] [blame] | 452 | const char *prefix; |
Mark Brown | 3e5ff4d | 2011-03-09 11:33:09 +0000 | [diff] [blame] | 453 | size_t prefix_len; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 454 | int ret = 0; |
| 455 | |
| 456 | if (!w->num_kcontrols) { |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 457 | dev_err(dapm->dev, "asoc: mux %s has no controls\n", w->name); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 458 | return -EINVAL; |
| 459 | } |
| 460 | |
Mark Brown | efb7ac3 | 2011-03-08 17:23:24 +0000 | [diff] [blame] | 461 | if (dapm->codec) |
| 462 | prefix = dapm->codec->name_prefix; |
| 463 | else |
| 464 | prefix = NULL; |
| 465 | |
Mark Brown | 3e5ff4d | 2011-03-09 11:33:09 +0000 | [diff] [blame] | 466 | if (prefix) |
| 467 | prefix_len = strlen(prefix) + 1; |
| 468 | else |
| 469 | prefix_len = 0; |
| 470 | |
| 471 | /* The control will get a prefix from the control creation |
| 472 | * process but we're also using the same prefix for widgets so |
| 473 | * cut the prefix off the front of the widget name. |
| 474 | */ |
| 475 | kcontrol = snd_soc_cnew(&w->kcontrols[0], w, w->name + prefix_len, |
| 476 | prefix); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 477 | ret = snd_ctl_add(card, kcontrol); |
| 478 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 479 | if (ret < 0) |
| 480 | goto err; |
| 481 | |
| 482 | list_for_each_entry(path, &w->sources, list_sink) |
| 483 | path->kcontrol = kcontrol; |
| 484 | |
| 485 | return ret; |
| 486 | |
| 487 | err: |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 488 | dev_err(dapm->dev, "asoc: failed to add kcontrol %s\n", w->name); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 489 | return ret; |
| 490 | } |
| 491 | |
| 492 | /* create new dapm volume control */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 493 | static int dapm_new_pga(struct snd_soc_dapm_context *dapm, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 494 | struct snd_soc_dapm_widget *w) |
| 495 | { |
Mark Brown | a6c6573 | 2010-03-03 17:45:21 +0000 | [diff] [blame] | 496 | if (w->num_kcontrols) |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 497 | dev_err(w->dapm->dev, |
| 498 | "asoc: PGA controls not supported: '%s'\n", w->name); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 499 | |
Mark Brown | a6c6573 | 2010-03-03 17:45:21 +0000 | [diff] [blame] | 500 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | /* reset 'walked' bit for each dapm path */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 504 | static inline void dapm_clear_walk(struct snd_soc_dapm_context *dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 505 | { |
| 506 | struct snd_soc_dapm_path *p; |
| 507 | |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 508 | list_for_each_entry(p, &dapm->card->paths, list) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 509 | p->walked = 0; |
| 510 | } |
| 511 | |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 512 | /* We implement power down on suspend by checking the power state of |
| 513 | * the ALSA card - when we are suspending the ALSA state for the card |
| 514 | * is set to D3. |
| 515 | */ |
| 516 | static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget) |
| 517 | { |
Mark Brown | 12ea2c7 | 2011-03-02 18:17:32 +0000 | [diff] [blame] | 518 | int level = snd_power_get_state(widget->dapm->card->snd_card); |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 519 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 520 | switch (level) { |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 521 | case SNDRV_CTL_POWER_D3hot: |
| 522 | case SNDRV_CTL_POWER_D3cold: |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 523 | if (widget->ignore_suspend) |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 524 | dev_dbg(widget->dapm->dev, "%s ignoring suspend\n", |
| 525 | widget->name); |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 526 | return widget->ignore_suspend; |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 527 | default: |
| 528 | return 1; |
| 529 | } |
| 530 | } |
| 531 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 532 | /* |
| 533 | * Recursively check for a completed path to an active or physically connected |
| 534 | * output widget. Returns number of complete paths. |
| 535 | */ |
| 536 | static int is_connected_output_ep(struct snd_soc_dapm_widget *widget) |
| 537 | { |
| 538 | struct snd_soc_dapm_path *path; |
| 539 | int con = 0; |
| 540 | |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 541 | if (widget->id == snd_soc_dapm_supply) |
| 542 | return 0; |
| 543 | |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 544 | switch (widget->id) { |
| 545 | case snd_soc_dapm_adc: |
| 546 | case snd_soc_dapm_aif_out: |
| 547 | if (widget->active) |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 548 | return snd_soc_dapm_suspend_check(widget); |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 549 | default: |
| 550 | break; |
| 551 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 552 | |
| 553 | if (widget->connected) { |
| 554 | /* connected pin ? */ |
| 555 | if (widget->id == snd_soc_dapm_output && !widget->ext) |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 556 | return snd_soc_dapm_suspend_check(widget); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 557 | |
| 558 | /* connected jack or spk ? */ |
| 559 | if (widget->id == snd_soc_dapm_hp || widget->id == snd_soc_dapm_spk || |
Peter Ujfalusi | eaeae5d | 2009-09-30 09:27:24 +0300 | [diff] [blame] | 560 | (widget->id == snd_soc_dapm_line && !list_empty(&widget->sources))) |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 561 | return snd_soc_dapm_suspend_check(widget); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | list_for_each_entry(path, &widget->sinks, list_source) { |
| 565 | if (path->walked) |
| 566 | continue; |
| 567 | |
| 568 | if (path->sink && path->connect) { |
| 569 | path->walked = 1; |
| 570 | con += is_connected_output_ep(path->sink); |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | return con; |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | * Recursively check for a completed path to an active or physically connected |
| 579 | * input widget. Returns number of complete paths. |
| 580 | */ |
| 581 | static int is_connected_input_ep(struct snd_soc_dapm_widget *widget) |
| 582 | { |
| 583 | struct snd_soc_dapm_path *path; |
| 584 | int con = 0; |
| 585 | |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 586 | if (widget->id == snd_soc_dapm_supply) |
| 587 | return 0; |
| 588 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 589 | /* active stream ? */ |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 590 | switch (widget->id) { |
| 591 | case snd_soc_dapm_dac: |
| 592 | case snd_soc_dapm_aif_in: |
| 593 | if (widget->active) |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 594 | return snd_soc_dapm_suspend_check(widget); |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 595 | default: |
| 596 | break; |
| 597 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 598 | |
| 599 | if (widget->connected) { |
| 600 | /* connected pin ? */ |
| 601 | if (widget->id == snd_soc_dapm_input && !widget->ext) |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 602 | return snd_soc_dapm_suspend_check(widget); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 603 | |
| 604 | /* connected VMID/Bias for lower pops */ |
| 605 | if (widget->id == snd_soc_dapm_vmid) |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 606 | return snd_soc_dapm_suspend_check(widget); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 607 | |
| 608 | /* connected jack ? */ |
Peter Ujfalusi | eaeae5d | 2009-09-30 09:27:24 +0300 | [diff] [blame] | 609 | if (widget->id == snd_soc_dapm_mic || |
| 610 | (widget->id == snd_soc_dapm_line && !list_empty(&widget->sinks))) |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 611 | return snd_soc_dapm_suspend_check(widget); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | list_for_each_entry(path, &widget->sources, list_sink) { |
| 615 | if (path->walked) |
| 616 | continue; |
| 617 | |
| 618 | if (path->source && path->connect) { |
| 619 | path->walked = 1; |
| 620 | con += is_connected_input_ep(path->source); |
| 621 | } |
| 622 | } |
| 623 | |
| 624 | return con; |
| 625 | } |
| 626 | |
| 627 | /* |
Jarkko Nikula | e2be2cc | 2008-06-25 14:42:07 +0300 | [diff] [blame] | 628 | * Handler for generic register modifier widget. |
| 629 | */ |
| 630 | int dapm_reg_event(struct snd_soc_dapm_widget *w, |
| 631 | struct snd_kcontrol *kcontrol, int event) |
| 632 | { |
| 633 | unsigned int val; |
| 634 | |
| 635 | if (SND_SOC_DAPM_EVENT_ON(event)) |
| 636 | val = w->on_val; |
| 637 | else |
| 638 | val = w->off_val; |
| 639 | |
| 640 | snd_soc_update_bits(w->codec, -(w->reg + 1), |
| 641 | w->mask << w->shift, val << w->shift); |
| 642 | |
| 643 | return 0; |
| 644 | } |
Mark Brown | 1158941 | 2008-07-29 11:42:23 +0100 | [diff] [blame] | 645 | EXPORT_SYMBOL_GPL(dapm_reg_event); |
Jarkko Nikula | e2be2cc | 2008-06-25 14:42:07 +0300 | [diff] [blame] | 646 | |
Mark Brown | 025756e | 2009-04-13 11:09:18 +0100 | [diff] [blame] | 647 | /* Standard power change method, used to apply power changes to most |
| 648 | * widgets. |
| 649 | */ |
| 650 | static int dapm_generic_apply_power(struct snd_soc_dapm_widget *w) |
| 651 | { |
| 652 | int ret; |
| 653 | |
| 654 | /* call any power change event handlers */ |
| 655 | if (w->event) |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 656 | dev_dbg(w->dapm->dev, "power %s event for %s flags %x\n", |
Mark Brown | 025756e | 2009-04-13 11:09:18 +0100 | [diff] [blame] | 657 | w->power ? "on" : "off", |
| 658 | w->name, w->event_flags); |
| 659 | |
| 660 | /* power up pre event */ |
| 661 | if (w->power && w->event && |
| 662 | (w->event_flags & SND_SOC_DAPM_PRE_PMU)) { |
| 663 | ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMU); |
| 664 | if (ret < 0) |
| 665 | return ret; |
| 666 | } |
| 667 | |
| 668 | /* power down pre event */ |
| 669 | if (!w->power && w->event && |
| 670 | (w->event_flags & SND_SOC_DAPM_PRE_PMD)) { |
| 671 | ret = w->event(w, NULL, SND_SOC_DAPM_PRE_PMD); |
| 672 | if (ret < 0) |
| 673 | return ret; |
| 674 | } |
| 675 | |
Mark Brown | 025756e | 2009-04-13 11:09:18 +0100 | [diff] [blame] | 676 | dapm_update_bits(w); |
| 677 | |
Mark Brown | 025756e | 2009-04-13 11:09:18 +0100 | [diff] [blame] | 678 | /* power up post event */ |
| 679 | if (w->power && w->event && |
| 680 | (w->event_flags & SND_SOC_DAPM_POST_PMU)) { |
| 681 | ret = w->event(w, |
| 682 | NULL, SND_SOC_DAPM_POST_PMU); |
| 683 | if (ret < 0) |
| 684 | return ret; |
| 685 | } |
| 686 | |
| 687 | /* power down post event */ |
| 688 | if (!w->power && w->event && |
| 689 | (w->event_flags & SND_SOC_DAPM_POST_PMD)) { |
| 690 | ret = w->event(w, NULL, SND_SOC_DAPM_POST_PMD); |
| 691 | if (ret < 0) |
| 692 | return ret; |
| 693 | } |
| 694 | |
| 695 | return 0; |
| 696 | } |
| 697 | |
Mark Brown | cd0f2d4 | 2009-04-20 16:56:59 +0100 | [diff] [blame] | 698 | /* Generic check to see if a widget should be powered. |
| 699 | */ |
| 700 | static int dapm_generic_check_power(struct snd_soc_dapm_widget *w) |
| 701 | { |
| 702 | int in, out; |
| 703 | |
| 704 | in = is_connected_input_ep(w); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 705 | dapm_clear_walk(w->dapm); |
Mark Brown | cd0f2d4 | 2009-04-20 16:56:59 +0100 | [diff] [blame] | 706 | out = is_connected_output_ep(w); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 707 | dapm_clear_walk(w->dapm); |
Mark Brown | cd0f2d4 | 2009-04-20 16:56:59 +0100 | [diff] [blame] | 708 | return out != 0 && in != 0; |
| 709 | } |
| 710 | |
Mark Brown | 6ea31b9 | 2009-04-20 17:15:41 +0100 | [diff] [blame] | 711 | /* Check to see if an ADC has power */ |
| 712 | static int dapm_adc_check_power(struct snd_soc_dapm_widget *w) |
| 713 | { |
| 714 | int in; |
| 715 | |
| 716 | if (w->active) { |
| 717 | in = is_connected_input_ep(w); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 718 | dapm_clear_walk(w->dapm); |
Mark Brown | 6ea31b9 | 2009-04-20 17:15:41 +0100 | [diff] [blame] | 719 | return in != 0; |
| 720 | } else { |
| 721 | return dapm_generic_check_power(w); |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | /* Check to see if a DAC has power */ |
| 726 | static int dapm_dac_check_power(struct snd_soc_dapm_widget *w) |
| 727 | { |
| 728 | int out; |
| 729 | |
| 730 | if (w->active) { |
| 731 | out = is_connected_output_ep(w); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 732 | dapm_clear_walk(w->dapm); |
Mark Brown | 6ea31b9 | 2009-04-20 17:15:41 +0100 | [diff] [blame] | 733 | return out != 0; |
| 734 | } else { |
| 735 | return dapm_generic_check_power(w); |
| 736 | } |
| 737 | } |
| 738 | |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 739 | /* Check to see if a power supply is needed */ |
| 740 | static int dapm_supply_check_power(struct snd_soc_dapm_widget *w) |
| 741 | { |
| 742 | struct snd_soc_dapm_path *path; |
| 743 | int power = 0; |
| 744 | |
| 745 | /* Check if one of our outputs is connected */ |
| 746 | list_for_each_entry(path, &w->sinks, list_source) { |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 747 | if (path->connected && |
| 748 | !path->connected(path->source, path->sink)) |
| 749 | continue; |
| 750 | |
Mark Brown | 3017358 | 2011-02-11 11:42:19 +0000 | [diff] [blame] | 751 | if (!path->sink) |
| 752 | continue; |
| 753 | |
| 754 | if (path->sink->force) { |
| 755 | power = 1; |
| 756 | break; |
| 757 | } |
| 758 | |
| 759 | if (path->sink->power_check && |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 760 | path->sink->power_check(path->sink)) { |
| 761 | power = 1; |
| 762 | break; |
| 763 | } |
| 764 | } |
| 765 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 766 | dapm_clear_walk(w->dapm); |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 767 | |
| 768 | return power; |
| 769 | } |
| 770 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 771 | static int dapm_seq_compare(struct snd_soc_dapm_widget *a, |
| 772 | struct snd_soc_dapm_widget *b, |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 773 | bool power_up) |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 774 | { |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 775 | int *sort; |
| 776 | |
| 777 | if (power_up) |
| 778 | sort = dapm_up_seq; |
| 779 | else |
| 780 | sort = dapm_down_seq; |
| 781 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 782 | if (sort[a->id] != sort[b->id]) |
| 783 | return sort[a->id] - sort[b->id]; |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 784 | if (a->subseq != b->subseq) { |
| 785 | if (power_up) |
| 786 | return a->subseq - b->subseq; |
| 787 | else |
| 788 | return b->subseq - a->subseq; |
| 789 | } |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 790 | if (a->reg != b->reg) |
| 791 | return a->reg - b->reg; |
Mark Brown | 84dab56 | 2010-11-12 15:28:42 +0000 | [diff] [blame] | 792 | if (a->dapm != b->dapm) |
| 793 | return (unsigned long)a->dapm - (unsigned long)b->dapm; |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 794 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 795 | return 0; |
| 796 | } |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 797 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 798 | /* Insert a widget in order into a DAPM power sequence. */ |
| 799 | static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget, |
| 800 | struct list_head *list, |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 801 | bool power_up) |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 802 | { |
| 803 | struct snd_soc_dapm_widget *w; |
| 804 | |
| 805 | list_for_each_entry(w, list, power_list) |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 806 | if (dapm_seq_compare(new_widget, w, power_up) < 0) { |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 807 | list_add_tail(&new_widget->power_list, &w->power_list); |
| 808 | return; |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 809 | } |
Mark Brown | 6ea31b9 | 2009-04-20 17:15:41 +0100 | [diff] [blame] | 810 | |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 811 | list_add_tail(&new_widget->power_list, list); |
| 812 | } |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 813 | |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 814 | static void dapm_seq_check_event(struct snd_soc_dapm_context *dapm, |
| 815 | struct snd_soc_dapm_widget *w, int event) |
| 816 | { |
| 817 | struct snd_soc_card *card = dapm->card; |
| 818 | const char *ev_name; |
| 819 | int power, ret; |
| 820 | |
| 821 | switch (event) { |
| 822 | case SND_SOC_DAPM_PRE_PMU: |
| 823 | ev_name = "PRE_PMU"; |
| 824 | power = 1; |
| 825 | break; |
| 826 | case SND_SOC_DAPM_POST_PMU: |
| 827 | ev_name = "POST_PMU"; |
| 828 | power = 1; |
| 829 | break; |
| 830 | case SND_SOC_DAPM_PRE_PMD: |
| 831 | ev_name = "PRE_PMD"; |
| 832 | power = 0; |
| 833 | break; |
| 834 | case SND_SOC_DAPM_POST_PMD: |
| 835 | ev_name = "POST_PMD"; |
| 836 | power = 0; |
| 837 | break; |
| 838 | default: |
| 839 | BUG(); |
| 840 | return; |
| 841 | } |
| 842 | |
| 843 | if (w->power != power) |
| 844 | return; |
| 845 | |
| 846 | if (w->event && (w->event_flags & event)) { |
| 847 | pop_dbg(dapm->dev, card->pop_time, "pop test : %s %s\n", |
| 848 | w->name, ev_name); |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 849 | trace_snd_soc_dapm_widget_event_start(w, event); |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 850 | ret = w->event(w, NULL, event); |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 851 | trace_snd_soc_dapm_widget_event_done(w, event); |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 852 | if (ret < 0) |
| 853 | pr_err("%s: %s event failed: %d\n", |
| 854 | ev_name, w->name, ret); |
| 855 | } |
| 856 | } |
| 857 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 858 | /* Apply the coalesced changes from a DAPM sequence */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 859 | static void dapm_seq_run_coalesced(struct snd_soc_dapm_context *dapm, |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 860 | struct list_head *pending) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 861 | { |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 862 | struct snd_soc_card *card = dapm->card; |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 863 | struct snd_soc_dapm_widget *w; |
| 864 | int reg, power; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 865 | unsigned int value = 0; |
| 866 | unsigned int mask = 0; |
| 867 | unsigned int cur_mask; |
| 868 | |
| 869 | reg = list_first_entry(pending, struct snd_soc_dapm_widget, |
| 870 | power_list)->reg; |
| 871 | |
| 872 | list_for_each_entry(w, pending, power_list) { |
| 873 | cur_mask = 1 << w->shift; |
| 874 | BUG_ON(reg != w->reg); |
| 875 | |
| 876 | if (w->invert) |
| 877 | power = !w->power; |
| 878 | else |
| 879 | power = w->power; |
| 880 | |
| 881 | mask |= cur_mask; |
| 882 | if (power) |
| 883 | value |= cur_mask; |
| 884 | |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 885 | pop_dbg(dapm->dev, card->pop_time, |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 886 | "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n", |
| 887 | w->name, reg, value, mask); |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 888 | |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 889 | /* Check for events */ |
| 890 | dapm_seq_check_event(dapm, w, SND_SOC_DAPM_PRE_PMU); |
| 891 | dapm_seq_check_event(dapm, w, SND_SOC_DAPM_PRE_PMD); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 892 | } |
| 893 | |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 894 | if (reg >= 0) { |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 895 | pop_dbg(dapm->dev, card->pop_time, |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 896 | "pop test : Applying 0x%x/0x%x to %x in %dms\n", |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 897 | value, mask, reg, card->pop_time); |
| 898 | pop_wait(card->pop_time); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 899 | snd_soc_update_bits(dapm->codec, reg, mask, value); |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | list_for_each_entry(w, pending, power_list) { |
Mark Brown | 68f89ad | 2010-11-03 23:51:49 -0400 | [diff] [blame] | 903 | dapm_seq_check_event(dapm, w, SND_SOC_DAPM_POST_PMU); |
| 904 | dapm_seq_check_event(dapm, w, SND_SOC_DAPM_POST_PMD); |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 905 | } |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 906 | } |
| 907 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 908 | /* Apply a DAPM power sequence. |
| 909 | * |
| 910 | * We walk over a pre-sorted list of widgets to apply power to. In |
| 911 | * order to minimise the number of writes to the device required |
| 912 | * multiple widgets will be updated in a single write where possible. |
| 913 | * Currently anything that requires more than a single write is not |
| 914 | * handled. |
| 915 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 916 | static void dapm_seq_run(struct snd_soc_dapm_context *dapm, |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 917 | struct list_head *list, int event, bool power_up) |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 918 | { |
| 919 | struct snd_soc_dapm_widget *w, *n; |
| 920 | LIST_HEAD(pending); |
| 921 | int cur_sort = -1; |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 922 | int cur_subseq = -1; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 923 | int cur_reg = SND_SOC_NOPM; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 924 | struct snd_soc_dapm_context *cur_dapm = NULL; |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 925 | int ret, i; |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 926 | int *sort; |
| 927 | |
| 928 | if (power_up) |
| 929 | sort = dapm_up_seq; |
| 930 | else |
| 931 | sort = dapm_down_seq; |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 932 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 933 | list_for_each_entry_safe(w, n, list, power_list) { |
| 934 | ret = 0; |
| 935 | |
| 936 | /* Do we need to apply any queued changes? */ |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 937 | if (sort[w->id] != cur_sort || w->reg != cur_reg || |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 938 | w->dapm != cur_dapm || w->subseq != cur_subseq) { |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 939 | if (!list_empty(&pending)) |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 940 | dapm_seq_run_coalesced(cur_dapm, &pending); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 941 | |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 942 | if (cur_dapm && cur_dapm->seq_notifier) { |
| 943 | for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++) |
| 944 | if (sort[i] == cur_sort) |
| 945 | cur_dapm->seq_notifier(cur_dapm, |
Mark Brown | f85a9e0 | 2011-01-26 21:41:28 +0000 | [diff] [blame] | 946 | i, |
| 947 | cur_subseq); |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 948 | } |
| 949 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 950 | INIT_LIST_HEAD(&pending); |
| 951 | cur_sort = -1; |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 952 | cur_subseq = -1; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 953 | cur_reg = SND_SOC_NOPM; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 954 | cur_dapm = NULL; |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 955 | } |
| 956 | |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 957 | switch (w->id) { |
| 958 | case snd_soc_dapm_pre: |
| 959 | if (!w->event) |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 960 | list_for_each_entry_safe_continue(w, n, list, |
| 961 | power_list); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 962 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 963 | if (event == SND_SOC_DAPM_STREAM_START) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 964 | ret = w->event(w, |
| 965 | NULL, SND_SOC_DAPM_PRE_PMU); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 966 | else if (event == SND_SOC_DAPM_STREAM_STOP) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 967 | ret = w->event(w, |
| 968 | NULL, SND_SOC_DAPM_PRE_PMD); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 969 | break; |
| 970 | |
| 971 | case snd_soc_dapm_post: |
| 972 | if (!w->event) |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 973 | list_for_each_entry_safe_continue(w, n, list, |
| 974 | power_list); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 975 | |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 976 | if (event == SND_SOC_DAPM_STREAM_START) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 977 | ret = w->event(w, |
| 978 | NULL, SND_SOC_DAPM_POST_PMU); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 979 | else if (event == SND_SOC_DAPM_STREAM_STOP) |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 980 | ret = w->event(w, |
| 981 | NULL, SND_SOC_DAPM_POST_PMD); |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 982 | break; |
| 983 | |
| 984 | case snd_soc_dapm_input: |
| 985 | case snd_soc_dapm_output: |
| 986 | case snd_soc_dapm_hp: |
| 987 | case snd_soc_dapm_mic: |
| 988 | case snd_soc_dapm_line: |
| 989 | case snd_soc_dapm_spk: |
| 990 | /* No register support currently */ |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 991 | ret = dapm_generic_apply_power(w); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 992 | break; |
| 993 | |
| 994 | default: |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 995 | /* Queue it up for application */ |
| 996 | cur_sort = sort[w->id]; |
Mark Brown | 20e4859 | 2011-01-15 13:40:50 +0000 | [diff] [blame] | 997 | cur_subseq = w->subseq; |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 998 | cur_reg = w->reg; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 999 | cur_dapm = w->dapm; |
Mark Brown | 8162810 | 2009-06-07 13:21:24 +0100 | [diff] [blame] | 1000 | list_move(&w->power_list, &pending); |
| 1001 | break; |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1002 | } |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1003 | |
| 1004 | if (ret < 0) |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 1005 | dev_err(w->dapm->dev, |
| 1006 | "Failed to apply widget power: %d\n", ret); |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1007 | } |
Mark Brown | b22ead2 | 2009-06-07 12:51:26 +0100 | [diff] [blame] | 1008 | |
| 1009 | if (!list_empty(&pending)) |
Mark Brown | 28e8680 | 2011-03-08 19:29:53 +0000 | [diff] [blame] | 1010 | dapm_seq_run_coalesced(cur_dapm, &pending); |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 1011 | |
| 1012 | if (cur_dapm && cur_dapm->seq_notifier) { |
| 1013 | for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++) |
| 1014 | if (sort[i] == cur_sort) |
| 1015 | cur_dapm->seq_notifier(cur_dapm, |
Mark Brown | f85a9e0 | 2011-01-26 21:41:28 +0000 | [diff] [blame] | 1016 | i, cur_subseq); |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 1017 | } |
Mark Brown | 163cac0 | 2009-06-07 10:12:52 +0100 | [diff] [blame] | 1018 | } |
| 1019 | |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1020 | static void dapm_widget_update(struct snd_soc_dapm_context *dapm) |
| 1021 | { |
| 1022 | struct snd_soc_dapm_update *update = dapm->update; |
| 1023 | struct snd_soc_dapm_widget *w; |
| 1024 | int ret; |
| 1025 | |
| 1026 | if (!update) |
| 1027 | return; |
| 1028 | |
| 1029 | w = update->widget; |
| 1030 | |
| 1031 | if (w->event && |
| 1032 | (w->event_flags & SND_SOC_DAPM_PRE_REG)) { |
| 1033 | ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG); |
| 1034 | if (ret != 0) |
| 1035 | pr_err("%s DAPM pre-event failed: %d\n", |
| 1036 | w->name, ret); |
| 1037 | } |
| 1038 | |
| 1039 | ret = snd_soc_update_bits(w->codec, update->reg, update->mask, |
| 1040 | update->val); |
| 1041 | if (ret < 0) |
| 1042 | pr_err("%s DAPM update failed: %d\n", w->name, ret); |
| 1043 | |
| 1044 | if (w->event && |
| 1045 | (w->event_flags & SND_SOC_DAPM_POST_REG)) { |
| 1046 | ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG); |
| 1047 | if (ret != 0) |
| 1048 | pr_err("%s DAPM post-event failed: %d\n", |
| 1049 | w->name, ret); |
| 1050 | } |
| 1051 | } |
| 1052 | |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1053 | /* Async callback run prior to DAPM sequences - brings to _PREPARE if |
| 1054 | * they're changing state. |
| 1055 | */ |
| 1056 | static void dapm_pre_sequence_async(void *data, async_cookie_t cookie) |
| 1057 | { |
| 1058 | struct snd_soc_dapm_context *d = data; |
| 1059 | int ret; |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1060 | |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1061 | if (d->dev_power && d->bias_level == SND_SOC_BIAS_OFF) { |
| 1062 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY); |
| 1063 | if (ret != 0) |
| 1064 | dev_err(d->dev, |
| 1065 | "Failed to turn on bias: %d\n", ret); |
| 1066 | } |
| 1067 | |
| 1068 | /* If we're changing to all on or all off then prepare */ |
| 1069 | if ((d->dev_power && d->bias_level == SND_SOC_BIAS_STANDBY) || |
| 1070 | (!d->dev_power && d->bias_level == SND_SOC_BIAS_ON)) { |
| 1071 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE); |
| 1072 | if (ret != 0) |
| 1073 | dev_err(d->dev, |
| 1074 | "Failed to prepare bias: %d\n", ret); |
| 1075 | } |
| 1076 | } |
| 1077 | |
| 1078 | /* Async callback run prior to DAPM sequences - brings to their final |
| 1079 | * state. |
| 1080 | */ |
| 1081 | static void dapm_post_sequence_async(void *data, async_cookie_t cookie) |
| 1082 | { |
| 1083 | struct snd_soc_dapm_context *d = data; |
| 1084 | int ret; |
| 1085 | |
| 1086 | /* If we just powered the last thing off drop to standby bias */ |
| 1087 | if (d->bias_level == SND_SOC_BIAS_PREPARE && !d->dev_power) { |
| 1088 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY); |
| 1089 | if (ret != 0) |
| 1090 | dev_err(d->dev, "Failed to apply standby bias: %d\n", |
| 1091 | ret); |
| 1092 | } |
| 1093 | |
| 1094 | /* If we're in standby and can support bias off then do that */ |
| 1095 | if (d->bias_level == SND_SOC_BIAS_STANDBY && d->idle_bias_off) { |
| 1096 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF); |
| 1097 | if (ret != 0) |
| 1098 | dev_err(d->dev, "Failed to turn off bias: %d\n", ret); |
| 1099 | } |
| 1100 | |
| 1101 | /* If we just powered up then move to active bias */ |
| 1102 | if (d->bias_level == SND_SOC_BIAS_PREPARE && d->dev_power) { |
| 1103 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON); |
| 1104 | if (ret != 0) |
| 1105 | dev_err(d->dev, "Failed to apply active bias: %d\n", |
| 1106 | ret); |
| 1107 | } |
| 1108 | } |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1109 | |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1110 | /* |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1111 | * Scan each dapm widget for complete audio path. |
| 1112 | * A complete path is a route that has valid endpoints i.e.:- |
| 1113 | * |
| 1114 | * o DAC to output pin. |
| 1115 | * o Input Pin to ADC. |
| 1116 | * o Input pin to Output pin (bypass, sidetone) |
| 1117 | * o DAC to ADC (loopback). |
| 1118 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1119 | static int dapm_power_widgets(struct snd_soc_dapm_context *dapm, int event) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1120 | { |
Mark Brown | 12ea2c7 | 2011-03-02 18:17:32 +0000 | [diff] [blame] | 1121 | struct snd_soc_card *card = dapm->card; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1122 | struct snd_soc_dapm_widget *w; |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1123 | struct snd_soc_dapm_context *d; |
Mark Brown | 291f3bb | 2009-06-07 13:57:17 +0100 | [diff] [blame] | 1124 | LIST_HEAD(up_list); |
| 1125 | LIST_HEAD(down_list); |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1126 | LIST_HEAD(async_domain); |
Mark Brown | 38357ab | 2009-06-06 19:03:23 +0100 | [diff] [blame] | 1127 | int power; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1128 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 1129 | trace_snd_soc_dapm_start(card); |
| 1130 | |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1131 | list_for_each_entry(d, &card->dapm_list, list) |
| 1132 | if (d->n_widgets) |
| 1133 | d->dev_power = 0; |
| 1134 | |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1135 | /* Check which widgets we need to power and store them in |
| 1136 | * lists indicating if they should be powered up or down. |
| 1137 | */ |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1138 | list_for_each_entry(w, &card->widgets, list) { |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1139 | switch (w->id) { |
| 1140 | case snd_soc_dapm_pre: |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1141 | dapm_seq_insert(w, &down_list, false); |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1142 | break; |
| 1143 | case snd_soc_dapm_post: |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1144 | dapm_seq_insert(w, &up_list, true); |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1145 | break; |
| 1146 | |
| 1147 | default: |
| 1148 | if (!w->power_check) |
| 1149 | continue; |
| 1150 | |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 1151 | if (!w->force) |
Mark Brown | 50b6bce | 2009-11-23 13:11:53 +0000 | [diff] [blame] | 1152 | power = w->power_check(w); |
Mark Brown | 9949788 | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 1153 | else |
| 1154 | power = 1; |
| 1155 | if (power) |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1156 | w->dapm->dev_power = 1; |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 1157 | |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1158 | if (w->power == power) |
| 1159 | continue; |
| 1160 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 1161 | trace_snd_soc_dapm_widget_power(w, power); |
| 1162 | |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1163 | if (power) |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1164 | dapm_seq_insert(w, &up_list, true); |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1165 | else |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1166 | dapm_seq_insert(w, &down_list, false); |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1167 | |
| 1168 | w->power = power; |
| 1169 | break; |
| 1170 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1171 | } |
| 1172 | |
Mark Brown | b14b76a | 2009-08-17 11:55:38 +0100 | [diff] [blame] | 1173 | /* If there are no DAPM widgets then try to figure out power from the |
| 1174 | * event type. |
| 1175 | */ |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1176 | if (!dapm->n_widgets) { |
Mark Brown | b14b76a | 2009-08-17 11:55:38 +0100 | [diff] [blame] | 1177 | switch (event) { |
| 1178 | case SND_SOC_DAPM_STREAM_START: |
| 1179 | case SND_SOC_DAPM_STREAM_RESUME: |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1180 | dapm->dev_power = 1; |
Mark Brown | b14b76a | 2009-08-17 11:55:38 +0100 | [diff] [blame] | 1181 | break; |
Jarkko Nikula | 862af8a | 2010-12-10 20:53:55 +0200 | [diff] [blame] | 1182 | case SND_SOC_DAPM_STREAM_STOP: |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1183 | dapm->dev_power = !!dapm->codec->active; |
Jarkko Nikula | 862af8a | 2010-12-10 20:53:55 +0200 | [diff] [blame] | 1184 | break; |
Mark Brown | 50b6bce | 2009-11-23 13:11:53 +0000 | [diff] [blame] | 1185 | case SND_SOC_DAPM_STREAM_SUSPEND: |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1186 | dapm->dev_power = 0; |
Mark Brown | 50b6bce | 2009-11-23 13:11:53 +0000 | [diff] [blame] | 1187 | break; |
Mark Brown | b14b76a | 2009-08-17 11:55:38 +0100 | [diff] [blame] | 1188 | case SND_SOC_DAPM_STREAM_NOP: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1189 | switch (dapm->bias_level) { |
Mark Brown | a96ca33 | 2010-01-19 22:49:43 +0000 | [diff] [blame] | 1190 | case SND_SOC_BIAS_STANDBY: |
| 1191 | case SND_SOC_BIAS_OFF: |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1192 | dapm->dev_power = 0; |
Mark Brown | a96ca33 | 2010-01-19 22:49:43 +0000 | [diff] [blame] | 1193 | break; |
| 1194 | default: |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1195 | dapm->dev_power = 1; |
Mark Brown | a96ca33 | 2010-01-19 22:49:43 +0000 | [diff] [blame] | 1196 | break; |
| 1197 | } |
Mark Brown | 50b6bce | 2009-11-23 13:11:53 +0000 | [diff] [blame] | 1198 | break; |
Mark Brown | b14b76a | 2009-08-17 11:55:38 +0100 | [diff] [blame] | 1199 | default: |
| 1200 | break; |
| 1201 | } |
| 1202 | } |
| 1203 | |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1204 | /* Run all the bias changes in parallel */ |
| 1205 | list_for_each_entry(d, &dapm->card->dapm_list, list) |
| 1206 | async_schedule_domain(dapm_pre_sequence_async, d, |
| 1207 | &async_domain); |
| 1208 | async_synchronize_full_domain(&async_domain); |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 1209 | |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1210 | /* Power down widgets first; try to avoid amplifying pops. */ |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1211 | dapm_seq_run(dapm, &down_list, event, false); |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1212 | |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1213 | dapm_widget_update(dapm); |
| 1214 | |
Mark Brown | 6d3ddc8 | 2009-05-16 17:47:29 +0100 | [diff] [blame] | 1215 | /* Now power up. */ |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 1216 | dapm_seq_run(dapm, &up_list, event, true); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1217 | |
Mark Brown | 9d0624a | 2011-02-18 11:49:43 -0800 | [diff] [blame] | 1218 | /* Run all the bias changes in parallel */ |
| 1219 | list_for_each_entry(d, &dapm->card->dapm_list, list) |
| 1220 | async_schedule_domain(dapm_post_sequence_async, d, |
| 1221 | &async_domain); |
| 1222 | async_synchronize_full_domain(&async_domain); |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 1223 | |
Jarkko Nikula | fd8d3bc | 2010-11-09 14:40:28 +0200 | [diff] [blame] | 1224 | pop_dbg(dapm->dev, card->pop_time, |
| 1225 | "DAPM sequencing finished, waiting %dms\n", card->pop_time); |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 1226 | pop_wait(card->pop_time); |
Mark Brown | cb507e7 | 2009-07-08 18:54:57 +0100 | [diff] [blame] | 1227 | |
Mark Brown | 84e9093 | 2010-11-04 00:07:02 -0400 | [diff] [blame] | 1228 | trace_snd_soc_dapm_done(card); |
| 1229 | |
Mark Brown | 42aa341 | 2009-03-01 19:21:10 +0000 | [diff] [blame] | 1230 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1231 | } |
| 1232 | |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1233 | #ifdef CONFIG_DEBUG_FS |
| 1234 | static int dapm_widget_power_open_file(struct inode *inode, struct file *file) |
| 1235 | { |
| 1236 | file->private_data = inode->i_private; |
| 1237 | return 0; |
| 1238 | } |
| 1239 | |
| 1240 | static ssize_t dapm_widget_power_read_file(struct file *file, |
| 1241 | char __user *user_buf, |
| 1242 | size_t count, loff_t *ppos) |
| 1243 | { |
| 1244 | struct snd_soc_dapm_widget *w = file->private_data; |
| 1245 | char *buf; |
| 1246 | int in, out; |
| 1247 | ssize_t ret; |
| 1248 | struct snd_soc_dapm_path *p = NULL; |
| 1249 | |
| 1250 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 1251 | if (!buf) |
| 1252 | return -ENOMEM; |
| 1253 | |
| 1254 | in = is_connected_input_ep(w); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1255 | dapm_clear_walk(w->dapm); |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1256 | out = is_connected_output_ep(w); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1257 | dapm_clear_walk(w->dapm); |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1258 | |
Mark Brown | d033c36 | 2009-12-04 15:25:56 +0000 | [diff] [blame] | 1259 | ret = snprintf(buf, PAGE_SIZE, "%s: %s in %d out %d", |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1260 | w->name, w->power ? "On" : "Off", in, out); |
| 1261 | |
Mark Brown | d033c36 | 2009-12-04 15:25:56 +0000 | [diff] [blame] | 1262 | if (w->reg >= 0) |
| 1263 | ret += snprintf(buf + ret, PAGE_SIZE - ret, |
| 1264 | " - R%d(0x%x) bit %d", |
| 1265 | w->reg, w->reg, w->shift); |
| 1266 | |
| 1267 | ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n"); |
| 1268 | |
Mark Brown | 3eef08b | 2009-09-14 16:49:00 +0100 | [diff] [blame] | 1269 | if (w->sname) |
| 1270 | ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n", |
| 1271 | w->sname, |
| 1272 | w->active ? "active" : "inactive"); |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1273 | |
| 1274 | list_for_each_entry(p, &w->sources, list_sink) { |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 1275 | if (p->connected && !p->connected(w, p->sink)) |
| 1276 | continue; |
| 1277 | |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1278 | if (p->connect) |
| 1279 | ret += snprintf(buf + ret, PAGE_SIZE - ret, |
Dimitris Papastamos | 67f5ed6 | 2011-02-24 17:09:32 +0000 | [diff] [blame] | 1280 | " in \"%s\" \"%s\"\n", |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1281 | p->name ? p->name : "static", |
| 1282 | p->source->name); |
| 1283 | } |
| 1284 | list_for_each_entry(p, &w->sinks, list_source) { |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 1285 | if (p->connected && !p->connected(w, p->sink)) |
| 1286 | continue; |
| 1287 | |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1288 | if (p->connect) |
| 1289 | ret += snprintf(buf + ret, PAGE_SIZE - ret, |
Dimitris Papastamos | 67f5ed6 | 2011-02-24 17:09:32 +0000 | [diff] [blame] | 1290 | " out \"%s\" \"%s\"\n", |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1291 | p->name ? p->name : "static", |
| 1292 | p->sink->name); |
| 1293 | } |
| 1294 | |
| 1295 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); |
| 1296 | |
| 1297 | kfree(buf); |
| 1298 | return ret; |
| 1299 | } |
| 1300 | |
| 1301 | static const struct file_operations dapm_widget_power_fops = { |
| 1302 | .open = dapm_widget_power_open_file, |
| 1303 | .read = dapm_widget_power_read_file, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 1304 | .llseek = default_llseek, |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1305 | }; |
| 1306 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1307 | void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm) |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1308 | { |
| 1309 | struct snd_soc_dapm_widget *w; |
| 1310 | struct dentry *d; |
| 1311 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1312 | if (!dapm->debugfs_dapm) |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1313 | return; |
| 1314 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1315 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 1316 | if (!w->name || w->dapm != dapm) |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1317 | continue; |
| 1318 | |
| 1319 | d = debugfs_create_file(w->name, 0444, |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1320 | dapm->debugfs_dapm, w, |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1321 | &dapm_widget_power_fops); |
| 1322 | if (!d) |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 1323 | dev_warn(w->dapm->dev, |
| 1324 | "ASoC: Failed to create %s debugfs file\n", |
| 1325 | w->name); |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1326 | } |
| 1327 | } |
| 1328 | #else |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1329 | void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm) |
Mark Brown | 79fb938 | 2009-08-21 16:38:13 +0100 | [diff] [blame] | 1330 | { |
| 1331 | } |
| 1332 | #endif |
| 1333 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1334 | /* test and update the power status of a mux widget */ |
Adrian Bunk | d9c96cf | 2006-11-28 12:10:09 +0100 | [diff] [blame] | 1335 | static int dapm_mux_update_power(struct snd_soc_dapm_widget *widget, |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 1336 | struct snd_kcontrol *kcontrol, int change, |
| 1337 | int mux, struct soc_enum *e) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1338 | { |
| 1339 | struct snd_soc_dapm_path *path; |
| 1340 | int found = 0; |
| 1341 | |
Peter Ujfalusi | eff317d | 2009-01-15 14:40:47 +0200 | [diff] [blame] | 1342 | if (widget->id != snd_soc_dapm_mux && |
Dimitris Papastamos | 24ff33a | 2010-12-16 15:53:39 +0000 | [diff] [blame] | 1343 | widget->id != snd_soc_dapm_virt_mux && |
Peter Ujfalusi | eff317d | 2009-01-15 14:40:47 +0200 | [diff] [blame] | 1344 | widget->id != snd_soc_dapm_value_mux) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1345 | return -ENODEV; |
| 1346 | |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 1347 | if (!change) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1348 | return 0; |
| 1349 | |
| 1350 | /* find dapm widget path assoc with kcontrol */ |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 1351 | list_for_each_entry(path, &widget->dapm->card->paths, list) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1352 | if (path->kcontrol != kcontrol) |
| 1353 | continue; |
| 1354 | |
Richard Zhao | cb01e2b | 2008-10-07 08:05:20 +0800 | [diff] [blame] | 1355 | if (!path->name || !e->texts[mux]) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1356 | continue; |
| 1357 | |
| 1358 | found = 1; |
| 1359 | /* we now need to match the string in the enum to the path */ |
Richard Zhao | cb01e2b | 2008-10-07 08:05:20 +0800 | [diff] [blame] | 1360 | if (!(strcmp(path->name, e->texts[mux]))) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1361 | path->connect = 1; /* new connection */ |
| 1362 | else |
| 1363 | path->connect = 0; /* old connection must be powered down */ |
| 1364 | } |
| 1365 | |
Mark Brown | b91b8fa | 2010-01-20 18:18:35 +0000 | [diff] [blame] | 1366 | if (found) |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1367 | dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1368 | |
| 1369 | return 0; |
| 1370 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1371 | |
Milan plzik | 1b075e3 | 2008-01-10 14:39:46 +0100 | [diff] [blame] | 1372 | /* test and update the power status of a mixer or switch widget */ |
Adrian Bunk | d9c96cf | 2006-11-28 12:10:09 +0100 | [diff] [blame] | 1373 | static int dapm_mixer_update_power(struct snd_soc_dapm_widget *widget, |
Mark Brown | 283375c | 2009-12-07 18:09:03 +0000 | [diff] [blame] | 1374 | struct snd_kcontrol *kcontrol, int connect) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1375 | { |
| 1376 | struct snd_soc_dapm_path *path; |
| 1377 | int found = 0; |
| 1378 | |
Milan plzik | 1b075e3 | 2008-01-10 14:39:46 +0100 | [diff] [blame] | 1379 | if (widget->id != snd_soc_dapm_mixer && |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 1380 | widget->id != snd_soc_dapm_mixer_named_ctl && |
Milan plzik | 1b075e3 | 2008-01-10 14:39:46 +0100 | [diff] [blame] | 1381 | widget->id != snd_soc_dapm_switch) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1382 | return -ENODEV; |
| 1383 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1384 | /* find dapm widget path assoc with kcontrol */ |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 1385 | list_for_each_entry(path, &widget->dapm->card->paths, list) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1386 | if (path->kcontrol != kcontrol) |
| 1387 | continue; |
| 1388 | |
| 1389 | /* found, now check type */ |
| 1390 | found = 1; |
Mark Brown | 283375c | 2009-12-07 18:09:03 +0000 | [diff] [blame] | 1391 | path->connect = connect; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1392 | break; |
| 1393 | } |
| 1394 | |
Mark Brown | b91b8fa | 2010-01-20 18:18:35 +0000 | [diff] [blame] | 1395 | if (found) |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1396 | dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1397 | |
| 1398 | return 0; |
| 1399 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1400 | |
| 1401 | /* show dapm widget status in sys fs */ |
| 1402 | static ssize_t dapm_widget_show(struct device *dev, |
| 1403 | struct device_attribute *attr, char *buf) |
| 1404 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1405 | struct snd_soc_pcm_runtime *rtd = |
| 1406 | container_of(dev, struct snd_soc_pcm_runtime, dev); |
| 1407 | struct snd_soc_codec *codec =rtd->codec; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1408 | struct snd_soc_dapm_widget *w; |
| 1409 | int count = 0; |
| 1410 | char *state = "not set"; |
| 1411 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1412 | list_for_each_entry(w, &codec->card->widgets, list) { |
| 1413 | if (w->dapm != &codec->dapm) |
| 1414 | continue; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1415 | |
| 1416 | /* only display widgets that burnm power */ |
| 1417 | switch (w->id) { |
| 1418 | case snd_soc_dapm_hp: |
| 1419 | case snd_soc_dapm_mic: |
| 1420 | case snd_soc_dapm_spk: |
| 1421 | case snd_soc_dapm_line: |
| 1422 | case snd_soc_dapm_micbias: |
| 1423 | case snd_soc_dapm_dac: |
| 1424 | case snd_soc_dapm_adc: |
| 1425 | case snd_soc_dapm_pga: |
Olaya, Margarita | d88429a | 2010-12-10 21:11:44 -0600 | [diff] [blame] | 1426 | case snd_soc_dapm_out_drv: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1427 | case snd_soc_dapm_mixer: |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 1428 | case snd_soc_dapm_mixer_named_ctl: |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 1429 | case snd_soc_dapm_supply: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1430 | if (w->name) |
| 1431 | count += sprintf(buf + count, "%s: %s\n", |
| 1432 | w->name, w->power ? "On":"Off"); |
| 1433 | break; |
| 1434 | default: |
| 1435 | break; |
| 1436 | } |
| 1437 | } |
| 1438 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1439 | switch (codec->dapm.bias_level) { |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 1440 | case SND_SOC_BIAS_ON: |
| 1441 | state = "On"; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1442 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 1443 | case SND_SOC_BIAS_PREPARE: |
| 1444 | state = "Prepare"; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1445 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 1446 | case SND_SOC_BIAS_STANDBY: |
| 1447 | state = "Standby"; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1448 | break; |
Mark Brown | 0be9898 | 2008-05-19 12:31:28 +0200 | [diff] [blame] | 1449 | case SND_SOC_BIAS_OFF: |
| 1450 | state = "Off"; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1451 | break; |
| 1452 | } |
| 1453 | count += sprintf(buf + count, "PM State: %s\n", state); |
| 1454 | |
| 1455 | return count; |
| 1456 | } |
| 1457 | |
| 1458 | static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL); |
| 1459 | |
| 1460 | int snd_soc_dapm_sys_add(struct device *dev) |
| 1461 | { |
Troy Kisky | 12ef193 | 2008-10-13 17:42:14 -0700 | [diff] [blame] | 1462 | return device_create_file(dev, &dev_attr_dapm_widget); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1463 | } |
| 1464 | |
| 1465 | static void snd_soc_dapm_sys_remove(struct device *dev) |
| 1466 | { |
Mark Brown | aef9084 | 2009-05-16 17:53:16 +0100 | [diff] [blame] | 1467 | device_remove_file(dev, &dev_attr_dapm_widget); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1468 | } |
| 1469 | |
| 1470 | /* free all dapm widgets and resources */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1471 | static void dapm_free_widgets(struct snd_soc_dapm_context *dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1472 | { |
| 1473 | struct snd_soc_dapm_widget *w, *next_w; |
| 1474 | struct snd_soc_dapm_path *p, *next_p; |
| 1475 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1476 | list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) { |
| 1477 | if (w->dapm != dapm) |
| 1478 | continue; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1479 | list_del(&w->list); |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 1480 | /* |
| 1481 | * remove source and sink paths associated to this widget. |
| 1482 | * While removing the path, remove reference to it from both |
| 1483 | * source and sink widgets so that path is removed only once. |
| 1484 | */ |
| 1485 | list_for_each_entry_safe(p, next_p, &w->sources, list_sink) { |
| 1486 | list_del(&p->list_sink); |
| 1487 | list_del(&p->list_source); |
| 1488 | list_del(&p->list); |
| 1489 | kfree(p->long_name); |
| 1490 | kfree(p); |
| 1491 | } |
| 1492 | list_for_each_entry_safe(p, next_p, &w->sinks, list_source) { |
| 1493 | list_del(&p->list_sink); |
| 1494 | list_del(&p->list_source); |
| 1495 | list_del(&p->list); |
| 1496 | kfree(p->long_name); |
| 1497 | kfree(p); |
| 1498 | } |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 1499 | kfree(w->name); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1500 | kfree(w); |
| 1501 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1502 | } |
| 1503 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1504 | 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] | 1505 | const char *pin, int status) |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 1506 | { |
| 1507 | struct snd_soc_dapm_widget *w; |
| 1508 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1509 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 1510 | if (w->dapm != dapm) |
| 1511 | continue; |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 1512 | if (!strcmp(w->name, pin)) { |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 1513 | dev_dbg(w->dapm->dev, "dapm: pin %s = %d\n", |
| 1514 | pin, status); |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 1515 | w->connected = status; |
Mark Brown | 5b9e87c | 2010-03-22 13:36:13 +0000 | [diff] [blame] | 1516 | /* Allow disabling of forced pins */ |
| 1517 | if (status == 0) |
| 1518 | w->force = 0; |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 1519 | return 0; |
| 1520 | } |
| 1521 | } |
| 1522 | |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 1523 | dev_err(dapm->dev, "dapm: unknown pin %s\n", pin); |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 1524 | return -EINVAL; |
| 1525 | } |
| 1526 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1527 | /** |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 1528 | * snd_soc_dapm_sync - scan and power dapm paths |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1529 | * @dapm: DAPM context |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1530 | * |
| 1531 | * Walks all dapm audio paths and powers widgets according to their |
| 1532 | * stream or path usage. |
| 1533 | * |
| 1534 | * Returns 0 for success. |
| 1535 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1536 | int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1537 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1538 | return dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1539 | } |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 1540 | EXPORT_SYMBOL_GPL(snd_soc_dapm_sync); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1541 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1542 | static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm, |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 1543 | const struct snd_soc_dapm_route *route) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1544 | { |
| 1545 | struct snd_soc_dapm_path *path; |
| 1546 | struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w; |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1547 | struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 1548 | const char *sink; |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 1549 | const char *control = route->control; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 1550 | const char *source; |
| 1551 | char prefixed_sink[80]; |
| 1552 | char prefixed_source[80]; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1553 | int ret = 0; |
| 1554 | |
Mark Brown | 88e8b9a | 2011-03-02 18:18:24 +0000 | [diff] [blame] | 1555 | if (dapm->codec && dapm->codec->name_prefix) { |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 1556 | snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s", |
| 1557 | dapm->codec->name_prefix, route->sink); |
| 1558 | sink = prefixed_sink; |
| 1559 | snprintf(prefixed_source, sizeof(prefixed_source), "%s %s", |
| 1560 | dapm->codec->name_prefix, route->source); |
| 1561 | source = prefixed_source; |
| 1562 | } else { |
| 1563 | sink = route->sink; |
| 1564 | source = route->source; |
| 1565 | } |
| 1566 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1567 | /* |
| 1568 | * find src and dest widgets over all widgets but favor a widget from |
| 1569 | * current DAPM context |
| 1570 | */ |
| 1571 | list_for_each_entry(w, &dapm->card->widgets, list) { |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1572 | if (!wsink && !(strcmp(w->name, sink))) { |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1573 | wtsink = w; |
| 1574 | if (w->dapm == dapm) |
| 1575 | wsink = w; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1576 | continue; |
| 1577 | } |
| 1578 | if (!wsource && !(strcmp(w->name, source))) { |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1579 | wtsource = w; |
| 1580 | if (w->dapm == dapm) |
| 1581 | wsource = w; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1582 | } |
| 1583 | } |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1584 | /* use widget from another DAPM context if not found from this */ |
| 1585 | if (!wsink) |
| 1586 | wsink = wtsink; |
| 1587 | if (!wsource) |
| 1588 | wsource = wtsource; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1589 | |
| 1590 | if (wsource == NULL || wsink == NULL) |
| 1591 | return -ENODEV; |
| 1592 | |
| 1593 | path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL); |
| 1594 | if (!path) |
| 1595 | return -ENOMEM; |
| 1596 | |
| 1597 | path->source = wsource; |
| 1598 | path->sink = wsink; |
Mark Brown | 215edda | 2009-09-08 18:59:05 +0100 | [diff] [blame] | 1599 | path->connected = route->connected; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1600 | INIT_LIST_HEAD(&path->list); |
| 1601 | INIT_LIST_HEAD(&path->list_source); |
| 1602 | INIT_LIST_HEAD(&path->list_sink); |
| 1603 | |
| 1604 | /* check for external widgets */ |
| 1605 | if (wsink->id == snd_soc_dapm_input) { |
| 1606 | if (wsource->id == snd_soc_dapm_micbias || |
| 1607 | wsource->id == snd_soc_dapm_mic || |
Rongrong Cao | 087d53a | 2009-07-10 20:13:30 +0100 | [diff] [blame] | 1608 | wsource->id == snd_soc_dapm_line || |
| 1609 | wsource->id == snd_soc_dapm_output) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1610 | wsink->ext = 1; |
| 1611 | } |
| 1612 | if (wsource->id == snd_soc_dapm_output) { |
| 1613 | if (wsink->id == snd_soc_dapm_spk || |
| 1614 | wsink->id == snd_soc_dapm_hp || |
Seth Forshee | 1e39221 | 2007-04-16 15:36:42 +0200 | [diff] [blame] | 1615 | wsink->id == snd_soc_dapm_line || |
| 1616 | wsink->id == snd_soc_dapm_input) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1617 | wsource->ext = 1; |
| 1618 | } |
| 1619 | |
| 1620 | /* connect static paths */ |
| 1621 | if (control == NULL) { |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 1622 | list_add(&path->list, &dapm->card->paths); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1623 | list_add(&path->list_sink, &wsink->sources); |
| 1624 | list_add(&path->list_source, &wsource->sinks); |
| 1625 | path->connect = 1; |
| 1626 | return 0; |
| 1627 | } |
| 1628 | |
| 1629 | /* connect dynamic paths */ |
| 1630 | switch(wsink->id) { |
| 1631 | case snd_soc_dapm_adc: |
| 1632 | case snd_soc_dapm_dac: |
| 1633 | case snd_soc_dapm_pga: |
Olaya, Margarita | d88429a | 2010-12-10 21:11:44 -0600 | [diff] [blame] | 1634 | case snd_soc_dapm_out_drv: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1635 | case snd_soc_dapm_input: |
| 1636 | case snd_soc_dapm_output: |
| 1637 | case snd_soc_dapm_micbias: |
| 1638 | case snd_soc_dapm_vmid: |
| 1639 | case snd_soc_dapm_pre: |
| 1640 | case snd_soc_dapm_post: |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 1641 | case snd_soc_dapm_supply: |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 1642 | case snd_soc_dapm_aif_in: |
| 1643 | case snd_soc_dapm_aif_out: |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 1644 | list_add(&path->list, &dapm->card->paths); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1645 | list_add(&path->list_sink, &wsink->sources); |
| 1646 | list_add(&path->list_source, &wsource->sinks); |
| 1647 | path->connect = 1; |
| 1648 | return 0; |
| 1649 | case snd_soc_dapm_mux: |
Dimitris Papastamos | 24ff33a | 2010-12-16 15:53:39 +0000 | [diff] [blame] | 1650 | case snd_soc_dapm_virt_mux: |
Peter Ujfalusi | 7415555 | 2009-01-08 13:34:29 +0200 | [diff] [blame] | 1651 | case snd_soc_dapm_value_mux: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1652 | ret = dapm_connect_mux(dapm, wsource, wsink, path, control, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1653 | &wsink->kcontrols[0]); |
| 1654 | if (ret != 0) |
| 1655 | goto err; |
| 1656 | break; |
| 1657 | case snd_soc_dapm_switch: |
| 1658 | case snd_soc_dapm_mixer: |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 1659 | case snd_soc_dapm_mixer_named_ctl: |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1660 | ret = dapm_connect_mixer(dapm, wsource, wsink, path, control); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1661 | if (ret != 0) |
| 1662 | goto err; |
| 1663 | break; |
| 1664 | case snd_soc_dapm_hp: |
| 1665 | case snd_soc_dapm_mic: |
| 1666 | case snd_soc_dapm_line: |
| 1667 | case snd_soc_dapm_spk: |
Jarkko Nikula | 8ddab3f | 2010-12-14 12:18:30 +0200 | [diff] [blame] | 1668 | list_add(&path->list, &dapm->card->paths); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1669 | list_add(&path->list_sink, &wsink->sources); |
| 1670 | list_add(&path->list_source, &wsource->sinks); |
| 1671 | path->connect = 0; |
| 1672 | return 0; |
| 1673 | } |
| 1674 | return 0; |
| 1675 | |
| 1676 | err: |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 1677 | dev_warn(dapm->dev, "asoc: no dapm match for %s --> %s --> %s\n", |
| 1678 | source, control, sink); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1679 | kfree(path); |
| 1680 | return ret; |
| 1681 | } |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 1682 | |
| 1683 | /** |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 1684 | * snd_soc_dapm_add_routes - Add routes between DAPM widgets |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1685 | * @dapm: DAPM context |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 1686 | * @route: audio routes |
| 1687 | * @num: number of routes |
| 1688 | * |
| 1689 | * Connects 2 dapm widgets together via a named audio path. The sink is |
| 1690 | * the widget receiving the audio signal, whilst the source is the sender |
| 1691 | * of the audio signal. |
| 1692 | * |
| 1693 | * Returns 0 for success else error. On error all resources can be freed |
| 1694 | * with a call to snd_soc_card_free(). |
| 1695 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1696 | int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm, |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 1697 | const struct snd_soc_dapm_route *route, int num) |
| 1698 | { |
| 1699 | int i, ret; |
| 1700 | |
| 1701 | for (i = 0; i < num; i++) { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1702 | ret = snd_soc_dapm_add_route(dapm, route); |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 1703 | if (ret < 0) { |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 1704 | dev_err(dapm->dev, "Failed to add route %s->%s\n", |
| 1705 | route->source, route->sink); |
Mark Brown | 105f1c2 | 2008-05-13 14:52:19 +0200 | [diff] [blame] | 1706 | return ret; |
| 1707 | } |
| 1708 | route++; |
| 1709 | } |
| 1710 | |
| 1711 | return 0; |
| 1712 | } |
| 1713 | EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes); |
| 1714 | |
| 1715 | /** |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1716 | * snd_soc_dapm_new_widgets - add new dapm widgets |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1717 | * @dapm: DAPM context |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1718 | * |
| 1719 | * Checks the codec for any new dapm widgets and creates them if found. |
| 1720 | * |
| 1721 | * Returns 0 for success. |
| 1722 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1723 | int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1724 | { |
| 1725 | struct snd_soc_dapm_widget *w; |
Mark Brown | b66a70d | 2011-02-09 18:04:11 +0000 | [diff] [blame] | 1726 | unsigned int val; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1727 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 1728 | list_for_each_entry(w, &dapm->card->widgets, list) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1729 | { |
| 1730 | if (w->new) |
| 1731 | continue; |
| 1732 | |
| 1733 | switch(w->id) { |
| 1734 | case snd_soc_dapm_switch: |
| 1735 | case snd_soc_dapm_mixer: |
Ian Molton | ca9c1aa | 2009-01-06 20:11:51 +0000 | [diff] [blame] | 1736 | case snd_soc_dapm_mixer_named_ctl: |
Mark Brown | b75576d | 2009-04-20 17:56:13 +0100 | [diff] [blame] | 1737 | w->power_check = dapm_generic_check_power; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1738 | dapm_new_mixer(dapm, w); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1739 | break; |
| 1740 | case snd_soc_dapm_mux: |
Dimitris Papastamos | 24ff33a | 2010-12-16 15:53:39 +0000 | [diff] [blame] | 1741 | case snd_soc_dapm_virt_mux: |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 1742 | case snd_soc_dapm_value_mux: |
Mark Brown | b75576d | 2009-04-20 17:56:13 +0100 | [diff] [blame] | 1743 | w->power_check = dapm_generic_check_power; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1744 | dapm_new_mux(dapm, w); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1745 | break; |
| 1746 | case snd_soc_dapm_adc: |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 1747 | case snd_soc_dapm_aif_out: |
Mark Brown | b75576d | 2009-04-20 17:56:13 +0100 | [diff] [blame] | 1748 | w->power_check = dapm_adc_check_power; |
| 1749 | break; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1750 | case snd_soc_dapm_dac: |
Mark Brown | 010ff26 | 2009-08-17 17:39:22 +0100 | [diff] [blame] | 1751 | case snd_soc_dapm_aif_in: |
Mark Brown | b75576d | 2009-04-20 17:56:13 +0100 | [diff] [blame] | 1752 | w->power_check = dapm_dac_check_power; |
| 1753 | break; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1754 | case snd_soc_dapm_pga: |
Olaya, Margarita | d88429a | 2010-12-10 21:11:44 -0600 | [diff] [blame] | 1755 | case snd_soc_dapm_out_drv: |
Mark Brown | b75576d | 2009-04-20 17:56:13 +0100 | [diff] [blame] | 1756 | w->power_check = dapm_generic_check_power; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1757 | dapm_new_pga(dapm, w); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1758 | break; |
| 1759 | case snd_soc_dapm_input: |
| 1760 | case snd_soc_dapm_output: |
| 1761 | case snd_soc_dapm_micbias: |
| 1762 | case snd_soc_dapm_spk: |
| 1763 | case snd_soc_dapm_hp: |
| 1764 | case snd_soc_dapm_mic: |
| 1765 | case snd_soc_dapm_line: |
Mark Brown | b75576d | 2009-04-20 17:56:13 +0100 | [diff] [blame] | 1766 | w->power_check = dapm_generic_check_power; |
| 1767 | break; |
Mark Brown | 246d0a1 | 2009-04-22 18:24:55 +0100 | [diff] [blame] | 1768 | case snd_soc_dapm_supply: |
| 1769 | w->power_check = dapm_supply_check_power; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1770 | case snd_soc_dapm_vmid: |
| 1771 | case snd_soc_dapm_pre: |
| 1772 | case snd_soc_dapm_post: |
| 1773 | break; |
| 1774 | } |
Mark Brown | b66a70d | 2011-02-09 18:04:11 +0000 | [diff] [blame] | 1775 | |
| 1776 | /* Read the initial power state from the device */ |
| 1777 | if (w->reg >= 0) { |
| 1778 | val = snd_soc_read(w->codec, w->reg); |
| 1779 | val &= 1 << w->shift; |
| 1780 | if (w->invert) |
| 1781 | val = !val; |
| 1782 | |
| 1783 | if (val) |
| 1784 | w->power = 1; |
| 1785 | } |
| 1786 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1787 | w->new = 1; |
| 1788 | } |
| 1789 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1790 | dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1791 | return 0; |
| 1792 | } |
| 1793 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets); |
| 1794 | |
| 1795 | /** |
| 1796 | * snd_soc_dapm_get_volsw - dapm mixer get callback |
| 1797 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 1798 | * @ucontrol: control element information |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1799 | * |
| 1800 | * Callback to get the value of a dapm mixer control. |
| 1801 | * |
| 1802 | * Returns 0 for success. |
| 1803 | */ |
| 1804 | int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol, |
| 1805 | struct snd_ctl_elem_value *ucontrol) |
| 1806 | { |
| 1807 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 1808 | struct soc_mixer_control *mc = |
| 1809 | (struct soc_mixer_control *)kcontrol->private_value; |
Jon Smirl | 815ecf8 | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 1810 | unsigned int reg = mc->reg; |
| 1811 | unsigned int shift = mc->shift; |
| 1812 | unsigned int rshift = mc->rshift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 1813 | int max = mc->max; |
Jon Smirl | 815ecf8 | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 1814 | unsigned int invert = mc->invert; |
| 1815 | unsigned int mask = (1 << fls(max)) - 1; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1816 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1817 | ucontrol->value.integer.value[0] = |
| 1818 | (snd_soc_read(widget->codec, reg) >> shift) & mask; |
| 1819 | if (shift != rshift) |
| 1820 | ucontrol->value.integer.value[1] = |
| 1821 | (snd_soc_read(widget->codec, reg) >> rshift) & mask; |
| 1822 | if (invert) { |
| 1823 | ucontrol->value.integer.value[0] = |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 1824 | max - ucontrol->value.integer.value[0]; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1825 | if (shift != rshift) |
| 1826 | ucontrol->value.integer.value[1] = |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 1827 | max - ucontrol->value.integer.value[1]; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | return 0; |
| 1831 | } |
| 1832 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw); |
| 1833 | |
| 1834 | /** |
| 1835 | * snd_soc_dapm_put_volsw - dapm mixer set callback |
| 1836 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 1837 | * @ucontrol: control element information |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1838 | * |
| 1839 | * Callback to set the value of a dapm mixer control. |
| 1840 | * |
| 1841 | * Returns 0 for success. |
| 1842 | */ |
| 1843 | int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol, |
| 1844 | struct snd_ctl_elem_value *ucontrol) |
| 1845 | { |
| 1846 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 1847 | struct soc_mixer_control *mc = |
| 1848 | (struct soc_mixer_control *)kcontrol->private_value; |
Jon Smirl | 815ecf8 | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 1849 | unsigned int reg = mc->reg; |
| 1850 | unsigned int shift = mc->shift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 1851 | int max = mc->max; |
Jon Smirl | 815ecf8 | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 1852 | unsigned int mask = (1 << fls(max)) - 1; |
| 1853 | unsigned int invert = mc->invert; |
Stephen Warren | e9cf704 | 2011-01-27 14:54:05 -0700 | [diff] [blame] | 1854 | unsigned int val; |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1855 | int connect, change; |
| 1856 | struct snd_soc_dapm_update update; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1857 | |
| 1858 | val = (ucontrol->value.integer.value[0] & mask); |
| 1859 | |
| 1860 | if (invert) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 1861 | val = max - val; |
Stephen Warren | e9cf704 | 2011-01-27 14:54:05 -0700 | [diff] [blame] | 1862 | mask = mask << shift; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1863 | val = val << shift; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1864 | |
| 1865 | mutex_lock(&widget->codec->mutex); |
| 1866 | widget->value = val; |
| 1867 | |
Stephen Warren | e9cf704 | 2011-01-27 14:54:05 -0700 | [diff] [blame] | 1868 | change = snd_soc_test_bits(widget->codec, reg, mask, val); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1869 | if (change) { |
Mark Brown | 283375c | 2009-12-07 18:09:03 +0000 | [diff] [blame] | 1870 | if (val) |
| 1871 | /* new connection */ |
| 1872 | connect = invert ? 0:1; |
| 1873 | else |
| 1874 | /* old connection must be powered down */ |
| 1875 | connect = invert ? 1:0; |
| 1876 | |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1877 | update.kcontrol = kcontrol; |
| 1878 | update.widget = widget; |
| 1879 | update.reg = reg; |
| 1880 | update.mask = mask; |
| 1881 | update.val = val; |
| 1882 | widget->dapm->update = &update; |
| 1883 | |
Mark Brown | 283375c | 2009-12-07 18:09:03 +0000 | [diff] [blame] | 1884 | dapm_mixer_update_power(widget, kcontrol, connect); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1885 | |
| 1886 | widget->dapm->update = NULL; |
Mark Brown | 283375c | 2009-12-07 18:09:03 +0000 | [diff] [blame] | 1887 | } |
| 1888 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1889 | mutex_unlock(&widget->codec->mutex); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1890 | return 0; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1891 | } |
| 1892 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw); |
| 1893 | |
| 1894 | /** |
| 1895 | * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback |
| 1896 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 1897 | * @ucontrol: control element information |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1898 | * |
| 1899 | * Callback to get the value of a dapm enumerated double mixer control. |
| 1900 | * |
| 1901 | * Returns 0 for success. |
| 1902 | */ |
| 1903 | int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol, |
| 1904 | struct snd_ctl_elem_value *ucontrol) |
| 1905 | { |
| 1906 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
| 1907 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 1908 | unsigned int val, bitmask; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1909 | |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 1910 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1911 | ; |
| 1912 | val = snd_soc_read(widget->codec, e->reg); |
| 1913 | ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1); |
| 1914 | if (e->shift_l != e->shift_r) |
| 1915 | ucontrol->value.enumerated.item[1] = |
| 1916 | (val >> e->shift_r) & (bitmask - 1); |
| 1917 | |
| 1918 | return 0; |
| 1919 | } |
| 1920 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double); |
| 1921 | |
| 1922 | /** |
| 1923 | * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback |
| 1924 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 1925 | * @ucontrol: control element information |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1926 | * |
| 1927 | * Callback to set the value of a dapm enumerated double mixer control. |
| 1928 | * |
| 1929 | * Returns 0 for success. |
| 1930 | */ |
| 1931 | int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol, |
| 1932 | struct snd_ctl_elem_value *ucontrol) |
| 1933 | { |
| 1934 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
| 1935 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 1936 | unsigned int val, mux, change; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 1937 | unsigned int mask, bitmask; |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1938 | struct snd_soc_dapm_update update; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1939 | |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 1940 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1941 | ; |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 1942 | if (ucontrol->value.enumerated.item[0] > e->max - 1) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1943 | return -EINVAL; |
| 1944 | mux = ucontrol->value.enumerated.item[0]; |
| 1945 | val = mux << e->shift_l; |
| 1946 | mask = (bitmask - 1) << e->shift_l; |
| 1947 | if (e->shift_l != e->shift_r) { |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 1948 | if (ucontrol->value.enumerated.item[1] > e->max - 1) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1949 | return -EINVAL; |
| 1950 | val |= ucontrol->value.enumerated.item[1] << e->shift_r; |
| 1951 | mask |= (bitmask - 1) << e->shift_r; |
| 1952 | } |
| 1953 | |
| 1954 | mutex_lock(&widget->codec->mutex); |
| 1955 | widget->value = val; |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 1956 | change = snd_soc_test_bits(widget->codec, e->reg, mask, val); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1957 | |
| 1958 | update.kcontrol = kcontrol; |
| 1959 | update.widget = widget; |
| 1960 | update.reg = e->reg; |
| 1961 | update.mask = mask; |
| 1962 | update.val = val; |
| 1963 | widget->dapm->update = &update; |
| 1964 | |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 1965 | dapm_mux_update_power(widget, kcontrol, change, mux, e); |
Mark Brown | 1642e3d | 2009-10-05 16:24:26 +0100 | [diff] [blame] | 1966 | |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1967 | widget->dapm->update = NULL; |
Mark Brown | 1642e3d | 2009-10-05 16:24:26 +0100 | [diff] [blame] | 1968 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1969 | mutex_unlock(&widget->codec->mutex); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 1970 | return change; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 1971 | } |
| 1972 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double); |
| 1973 | |
| 1974 | /** |
Mark Brown | d2b247a | 2009-10-06 15:21:04 +0100 | [diff] [blame] | 1975 | * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux |
| 1976 | * @kcontrol: mixer control |
| 1977 | * @ucontrol: control element information |
| 1978 | * |
| 1979 | * Returns 0 for success. |
| 1980 | */ |
| 1981 | int snd_soc_dapm_get_enum_virt(struct snd_kcontrol *kcontrol, |
| 1982 | struct snd_ctl_elem_value *ucontrol) |
| 1983 | { |
| 1984 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
| 1985 | |
| 1986 | ucontrol->value.enumerated.item[0] = widget->value; |
| 1987 | |
| 1988 | return 0; |
| 1989 | } |
| 1990 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt); |
| 1991 | |
| 1992 | /** |
| 1993 | * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux |
| 1994 | * @kcontrol: mixer control |
| 1995 | * @ucontrol: control element information |
| 1996 | * |
| 1997 | * Returns 0 for success. |
| 1998 | */ |
| 1999 | int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol, |
| 2000 | struct snd_ctl_elem_value *ucontrol) |
| 2001 | { |
| 2002 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
| 2003 | struct soc_enum *e = |
| 2004 | (struct soc_enum *)kcontrol->private_value; |
| 2005 | int change; |
| 2006 | int ret = 0; |
| 2007 | |
| 2008 | if (ucontrol->value.enumerated.item[0] >= e->max) |
| 2009 | return -EINVAL; |
| 2010 | |
| 2011 | mutex_lock(&widget->codec->mutex); |
| 2012 | |
| 2013 | change = widget->value != ucontrol->value.enumerated.item[0]; |
| 2014 | widget->value = ucontrol->value.enumerated.item[0]; |
| 2015 | dapm_mux_update_power(widget, kcontrol, change, widget->value, e); |
| 2016 | |
| 2017 | mutex_unlock(&widget->codec->mutex); |
| 2018 | return ret; |
| 2019 | } |
| 2020 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt); |
| 2021 | |
| 2022 | /** |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2023 | * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get |
| 2024 | * callback |
| 2025 | * @kcontrol: mixer control |
| 2026 | * @ucontrol: control element information |
| 2027 | * |
| 2028 | * Callback to get the value of a dapm semi enumerated double mixer control. |
| 2029 | * |
| 2030 | * Semi enumerated mixer: the enumerated items are referred as values. Can be |
| 2031 | * used for handling bitfield coded enumeration for example. |
| 2032 | * |
| 2033 | * Returns 0 for success. |
| 2034 | */ |
| 2035 | int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol, |
| 2036 | struct snd_ctl_elem_value *ucontrol) |
| 2037 | { |
| 2038 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
Peter Ujfalusi | 7415555 | 2009-01-08 13:34:29 +0200 | [diff] [blame] | 2039 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2040 | unsigned int reg_val, val, mux; |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2041 | |
| 2042 | reg_val = snd_soc_read(widget->codec, e->reg); |
| 2043 | val = (reg_val >> e->shift_l) & e->mask; |
| 2044 | for (mux = 0; mux < e->max; mux++) { |
| 2045 | if (val == e->values[mux]) |
| 2046 | break; |
| 2047 | } |
| 2048 | ucontrol->value.enumerated.item[0] = mux; |
| 2049 | if (e->shift_l != e->shift_r) { |
| 2050 | val = (reg_val >> e->shift_r) & e->mask; |
| 2051 | for (mux = 0; mux < e->max; mux++) { |
| 2052 | if (val == e->values[mux]) |
| 2053 | break; |
| 2054 | } |
| 2055 | ucontrol->value.enumerated.item[1] = mux; |
| 2056 | } |
| 2057 | |
| 2058 | return 0; |
| 2059 | } |
| 2060 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double); |
| 2061 | |
| 2062 | /** |
| 2063 | * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set |
| 2064 | * callback |
| 2065 | * @kcontrol: mixer control |
| 2066 | * @ucontrol: control element information |
| 2067 | * |
| 2068 | * Callback to set the value of a dapm semi enumerated double mixer control. |
| 2069 | * |
| 2070 | * Semi enumerated mixer: the enumerated items are referred as values. Can be |
| 2071 | * used for handling bitfield coded enumeration for example. |
| 2072 | * |
| 2073 | * Returns 0 for success. |
| 2074 | */ |
| 2075 | int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol, |
| 2076 | struct snd_ctl_elem_value *ucontrol) |
| 2077 | { |
| 2078 | struct snd_soc_dapm_widget *widget = snd_kcontrol_chip(kcontrol); |
Peter Ujfalusi | 7415555 | 2009-01-08 13:34:29 +0200 | [diff] [blame] | 2079 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 2080 | unsigned int val, mux, change; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2081 | unsigned int mask; |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 2082 | struct snd_soc_dapm_update update; |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2083 | |
| 2084 | if (ucontrol->value.enumerated.item[0] > e->max - 1) |
| 2085 | return -EINVAL; |
| 2086 | mux = ucontrol->value.enumerated.item[0]; |
| 2087 | val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l; |
| 2088 | mask = e->mask << e->shift_l; |
| 2089 | if (e->shift_l != e->shift_r) { |
| 2090 | if (ucontrol->value.enumerated.item[1] > e->max - 1) |
| 2091 | return -EINVAL; |
| 2092 | val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r; |
| 2093 | mask |= e->mask << e->shift_r; |
| 2094 | } |
| 2095 | |
| 2096 | mutex_lock(&widget->codec->mutex); |
| 2097 | widget->value = val; |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 2098 | change = snd_soc_test_bits(widget->codec, e->reg, mask, val); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 2099 | |
| 2100 | update.kcontrol = kcontrol; |
| 2101 | update.widget = widget; |
| 2102 | update.reg = e->reg; |
| 2103 | update.mask = mask; |
| 2104 | update.val = val; |
| 2105 | widget->dapm->update = &update; |
| 2106 | |
Mark Brown | 3a65577 | 2009-10-05 17:23:30 +0100 | [diff] [blame] | 2107 | dapm_mux_update_power(widget, kcontrol, change, mux, e); |
Mark Brown | 1642e3d | 2009-10-05 16:24:26 +0100 | [diff] [blame] | 2108 | |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 2109 | widget->dapm->update = NULL; |
Mark Brown | 1642e3d | 2009-10-05 16:24:26 +0100 | [diff] [blame] | 2110 | |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2111 | mutex_unlock(&widget->codec->mutex); |
Mark Brown | 97404f2 | 2010-12-14 16:13:57 +0000 | [diff] [blame] | 2112 | return change; |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2113 | } |
| 2114 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double); |
| 2115 | |
| 2116 | /** |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 2117 | * snd_soc_dapm_info_pin_switch - Info for a pin switch |
| 2118 | * |
| 2119 | * @kcontrol: mixer control |
| 2120 | * @uinfo: control element information |
| 2121 | * |
| 2122 | * Callback to provide information about a pin switch control. |
| 2123 | */ |
| 2124 | int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol, |
| 2125 | struct snd_ctl_elem_info *uinfo) |
| 2126 | { |
| 2127 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2128 | uinfo->count = 1; |
| 2129 | uinfo->value.integer.min = 0; |
| 2130 | uinfo->value.integer.max = 1; |
| 2131 | |
| 2132 | return 0; |
| 2133 | } |
| 2134 | EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch); |
| 2135 | |
| 2136 | /** |
| 2137 | * snd_soc_dapm_get_pin_switch - Get information for a pin switch |
| 2138 | * |
| 2139 | * @kcontrol: mixer control |
| 2140 | * @ucontrol: Value |
| 2141 | */ |
| 2142 | int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol, |
| 2143 | struct snd_ctl_elem_value *ucontrol) |
| 2144 | { |
| 2145 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2146 | const char *pin = (const char *)kcontrol->private_value; |
| 2147 | |
| 2148 | mutex_lock(&codec->mutex); |
| 2149 | |
| 2150 | ucontrol->value.integer.value[0] = |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2151 | snd_soc_dapm_get_pin_status(&codec->dapm, pin); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 2152 | |
| 2153 | mutex_unlock(&codec->mutex); |
| 2154 | |
| 2155 | return 0; |
| 2156 | } |
| 2157 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch); |
| 2158 | |
| 2159 | /** |
| 2160 | * snd_soc_dapm_put_pin_switch - Set information for a pin switch |
| 2161 | * |
| 2162 | * @kcontrol: mixer control |
| 2163 | * @ucontrol: Value |
| 2164 | */ |
| 2165 | int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol, |
| 2166 | struct snd_ctl_elem_value *ucontrol) |
| 2167 | { |
| 2168 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2169 | const char *pin = (const char *)kcontrol->private_value; |
| 2170 | |
| 2171 | mutex_lock(&codec->mutex); |
| 2172 | |
| 2173 | if (ucontrol->value.integer.value[0]) |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2174 | snd_soc_dapm_enable_pin(&codec->dapm, pin); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 2175 | else |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2176 | snd_soc_dapm_disable_pin(&codec->dapm, pin); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 2177 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2178 | snd_soc_dapm_sync(&codec->dapm); |
Mark Brown | 8b37dbd | 2009-02-28 21:14:20 +0000 | [diff] [blame] | 2179 | |
| 2180 | mutex_unlock(&codec->mutex); |
| 2181 | |
| 2182 | return 0; |
| 2183 | } |
| 2184 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch); |
| 2185 | |
| 2186 | /** |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2187 | * snd_soc_dapm_new_control - create new dapm control |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2188 | * @dapm: DAPM context |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2189 | * @widget: widget template |
| 2190 | * |
| 2191 | * Creates a new dapm control based upon the template. |
| 2192 | * |
| 2193 | * Returns 0 for success else error. |
| 2194 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2195 | int snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm, |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2196 | const struct snd_soc_dapm_widget *widget) |
| 2197 | { |
| 2198 | struct snd_soc_dapm_widget *w; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 2199 | size_t name_len; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2200 | |
| 2201 | if ((w = dapm_cnew_widget(widget)) == NULL) |
| 2202 | return -ENOMEM; |
| 2203 | |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 2204 | name_len = strlen(widget->name) + 1; |
Mark Brown | 88e8b9a | 2011-03-02 18:18:24 +0000 | [diff] [blame] | 2205 | if (dapm->codec && dapm->codec->name_prefix) |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 2206 | name_len += 1 + strlen(dapm->codec->name_prefix); |
| 2207 | w->name = kmalloc(name_len, GFP_KERNEL); |
| 2208 | if (w->name == NULL) { |
| 2209 | kfree(w); |
| 2210 | return -ENOMEM; |
| 2211 | } |
Mark Brown | 88e8b9a | 2011-03-02 18:18:24 +0000 | [diff] [blame] | 2212 | if (dapm->codec && dapm->codec->name_prefix) |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 2213 | snprintf(w->name, name_len, "%s %s", |
| 2214 | dapm->codec->name_prefix, widget->name); |
| 2215 | else |
| 2216 | snprintf(w->name, name_len, "%s", widget->name); |
| 2217 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2218 | dapm->n_widgets++; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2219 | w->dapm = dapm; |
| 2220 | w->codec = dapm->codec; |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2221 | INIT_LIST_HEAD(&w->sources); |
| 2222 | INIT_LIST_HEAD(&w->sinks); |
| 2223 | INIT_LIST_HEAD(&w->list); |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2224 | list_add(&w->list, &dapm->card->widgets); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2225 | |
| 2226 | /* machine layer set ups unconnected pins and insertions */ |
| 2227 | w->connected = 1; |
| 2228 | return 0; |
| 2229 | } |
| 2230 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control); |
| 2231 | |
| 2232 | /** |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 2233 | * snd_soc_dapm_new_controls - create new dapm controls |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2234 | * @dapm: DAPM context |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 2235 | * @widget: widget array |
| 2236 | * @num: number of widgets |
| 2237 | * |
| 2238 | * Creates new DAPM controls based upon the templates. |
| 2239 | * |
| 2240 | * Returns 0 for success else error. |
| 2241 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2242 | int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm, |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 2243 | const struct snd_soc_dapm_widget *widget, |
| 2244 | int num) |
| 2245 | { |
| 2246 | int i, ret; |
| 2247 | |
| 2248 | for (i = 0; i < num; i++) { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2249 | ret = snd_soc_dapm_new_control(dapm, widget); |
Mark Brown | b8b33cb | 2008-12-18 11:19:30 +0000 | [diff] [blame] | 2250 | if (ret < 0) { |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 2251 | dev_err(dapm->dev, |
| 2252 | "ASoC: Failed to create DAPM control %s: %d\n", |
| 2253 | widget->name, ret); |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 2254 | return ret; |
Mark Brown | b8b33cb | 2008-12-18 11:19:30 +0000 | [diff] [blame] | 2255 | } |
Mark Brown | 4ba1327 | 2008-05-13 14:51:19 +0200 | [diff] [blame] | 2256 | widget++; |
| 2257 | } |
| 2258 | return 0; |
| 2259 | } |
| 2260 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls); |
| 2261 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2262 | static void soc_dapm_stream_event(struct snd_soc_dapm_context *dapm, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2263 | const char *stream, int event) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2264 | { |
| 2265 | struct snd_soc_dapm_widget *w; |
| 2266 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2267 | list_for_each_entry(w, &dapm->card->widgets, list) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2268 | { |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2269 | if (!w->sname || w->dapm != dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2270 | continue; |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 2271 | dev_dbg(w->dapm->dev, "widget %s\n %s stream %s event %d\n", |
| 2272 | w->name, w->sname, stream, event); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2273 | if (strstr(w->sname, stream)) { |
| 2274 | switch(event) { |
| 2275 | case SND_SOC_DAPM_STREAM_START: |
| 2276 | w->active = 1; |
| 2277 | break; |
| 2278 | case SND_SOC_DAPM_STREAM_STOP: |
| 2279 | w->active = 0; |
| 2280 | break; |
| 2281 | case SND_SOC_DAPM_STREAM_SUSPEND: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2282 | case SND_SOC_DAPM_STREAM_RESUME: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2283 | case SND_SOC_DAPM_STREAM_PAUSE_PUSH: |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2284 | case SND_SOC_DAPM_STREAM_PAUSE_RELEASE: |
| 2285 | break; |
| 2286 | } |
| 2287 | } |
| 2288 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2289 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2290 | dapm_power_widgets(dapm, event); |
| 2291 | } |
| 2292 | |
| 2293 | /** |
| 2294 | * snd_soc_dapm_stream_event - send a stream event to the dapm core |
| 2295 | * @rtd: PCM runtime data |
| 2296 | * @stream: stream name |
| 2297 | * @event: stream event |
| 2298 | * |
| 2299 | * Sends a stream event to the dapm core. The core then makes any |
| 2300 | * necessary widget power changes. |
| 2301 | * |
| 2302 | * Returns 0 for success else error. |
| 2303 | */ |
| 2304 | int snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, |
| 2305 | const char *stream, int event) |
| 2306 | { |
| 2307 | struct snd_soc_codec *codec = rtd->codec; |
| 2308 | |
| 2309 | if (stream == NULL) |
| 2310 | return 0; |
| 2311 | |
| 2312 | mutex_lock(&codec->mutex); |
| 2313 | soc_dapm_stream_event(&codec->dapm, stream, event); |
Eero Nurkkala | 8e8b2d6 | 2009-10-12 08:41:59 +0300 | [diff] [blame] | 2314 | mutex_unlock(&codec->mutex); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2315 | return 0; |
| 2316 | } |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2317 | |
| 2318 | /** |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2319 | * snd_soc_dapm_enable_pin - enable pin. |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2320 | * @dapm: DAPM context |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2321 | * @pin: pin name |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2322 | * |
Mark Brown | 74b8f95 | 2009-06-06 11:26:15 +0100 | [diff] [blame] | 2323 | * 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] | 2324 | * a valid audio route and active audio stream. |
| 2325 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 2326 | * do any widget power switching. |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2327 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2328 | 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] | 2329 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2330 | return snd_soc_dapm_set_pin(dapm, pin, 1); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2331 | } |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2332 | EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2333 | |
| 2334 | /** |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 2335 | * snd_soc_dapm_force_enable_pin - force a pin to be enabled |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2336 | * @dapm: DAPM context |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 2337 | * @pin: pin name |
| 2338 | * |
| 2339 | * Enables input/output pin regardless of any other state. This is |
| 2340 | * intended for use with microphone bias supplies used in microphone |
| 2341 | * jack detection. |
| 2342 | * |
| 2343 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 2344 | * do any widget power switching. |
| 2345 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2346 | int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm, |
| 2347 | const char *pin) |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 2348 | { |
| 2349 | struct snd_soc_dapm_widget *w; |
| 2350 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2351 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 2352 | if (w->dapm != dapm) |
| 2353 | continue; |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 2354 | if (!strcmp(w->name, pin)) { |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 2355 | dev_dbg(w->dapm->dev, |
| 2356 | "dapm: force enable pin %s\n", pin); |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 2357 | w->connected = 1; |
| 2358 | w->force = 1; |
| 2359 | return 0; |
| 2360 | } |
| 2361 | } |
| 2362 | |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 2363 | dev_err(dapm->dev, "dapm: unknown pin %s\n", pin); |
Mark Brown | da34183 | 2010-03-15 19:23:37 +0000 | [diff] [blame] | 2364 | return -EINVAL; |
| 2365 | } |
| 2366 | EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin); |
| 2367 | |
| 2368 | /** |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2369 | * snd_soc_dapm_disable_pin - disable pin. |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2370 | * @dapm: DAPM context |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2371 | * @pin: pin name |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 2372 | * |
Mark Brown | 74b8f95 | 2009-06-06 11:26:15 +0100 | [diff] [blame] | 2373 | * Disables input/output pin and its parents or children widgets. |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2374 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 2375 | * do any widget power switching. |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 2376 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2377 | int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm, |
| 2378 | const char *pin) |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2379 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2380 | return snd_soc_dapm_set_pin(dapm, pin, 0); |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2381 | } |
| 2382 | EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin); |
| 2383 | |
| 2384 | /** |
Mark Brown | 5817b52 | 2008-09-24 11:23:11 +0100 | [diff] [blame] | 2385 | * snd_soc_dapm_nc_pin - permanently disable pin. |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2386 | * @dapm: DAPM context |
Mark Brown | 5817b52 | 2008-09-24 11:23:11 +0100 | [diff] [blame] | 2387 | * @pin: pin name |
| 2388 | * |
| 2389 | * Marks the specified pin as being not connected, disabling it along |
| 2390 | * any parent or child widgets. At present this is identical to |
| 2391 | * snd_soc_dapm_disable_pin() but in future it will be extended to do |
| 2392 | * additional things such as disabling controls which only affect |
| 2393 | * paths through the pin. |
| 2394 | * |
| 2395 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
| 2396 | * do any widget power switching. |
| 2397 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2398 | 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] | 2399 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2400 | return snd_soc_dapm_set_pin(dapm, pin, 0); |
Mark Brown | 5817b52 | 2008-09-24 11:23:11 +0100 | [diff] [blame] | 2401 | } |
| 2402 | EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin); |
| 2403 | |
| 2404 | /** |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2405 | * snd_soc_dapm_get_pin_status - get audio pin status |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2406 | * @dapm: DAPM context |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2407 | * @pin: audio signal pin endpoint (or start point) |
| 2408 | * |
| 2409 | * Get audio pin status - connected or disconnected. |
| 2410 | * |
| 2411 | * Returns 1 for connected otherwise 0. |
| 2412 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2413 | int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm, |
| 2414 | const char *pin) |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 2415 | { |
| 2416 | struct snd_soc_dapm_widget *w; |
| 2417 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2418 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 2419 | if (w->dapm != dapm) |
| 2420 | continue; |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2421 | if (!strcmp(w->name, pin)) |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 2422 | return w->connected; |
| 2423 | } |
| 2424 | |
| 2425 | return 0; |
| 2426 | } |
Liam Girdwood | a530218 | 2008-07-07 13:35:17 +0100 | [diff] [blame] | 2427 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status); |
Graeme Gregory | eeec12b | 2008-04-30 19:27:40 +0200 | [diff] [blame] | 2428 | |
| 2429 | /** |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 2430 | * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2431 | * @dapm: DAPM context |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 2432 | * @pin: audio signal pin endpoint (or start point) |
| 2433 | * |
| 2434 | * Mark the given endpoint or pin as ignoring suspend. When the |
| 2435 | * system is disabled a path between two endpoints flagged as ignoring |
| 2436 | * suspend will not be disabled. The path must already be enabled via |
| 2437 | * normal means at suspend time, it will not be turned on if it was not |
| 2438 | * already enabled. |
| 2439 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2440 | int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm, |
| 2441 | const char *pin) |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 2442 | { |
| 2443 | struct snd_soc_dapm_widget *w; |
| 2444 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2445 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 2446 | if (w->dapm != dapm) |
| 2447 | continue; |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 2448 | if (!strcmp(w->name, pin)) { |
| 2449 | w->ignore_suspend = 1; |
| 2450 | return 0; |
| 2451 | } |
| 2452 | } |
| 2453 | |
Jarkko Nikula | f7d41ae | 2010-11-09 14:40:27 +0200 | [diff] [blame] | 2454 | dev_err(dapm->dev, "dapm: unknown pin %s\n", pin); |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 2455 | return -EINVAL; |
| 2456 | } |
| 2457 | EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend); |
| 2458 | |
| 2459 | /** |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2460 | * snd_soc_dapm_free - free dapm resources |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2461 | * @card: SoC device |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2462 | * |
| 2463 | * Free all dapm widgets and resources. |
| 2464 | */ |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2465 | void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm) |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2466 | { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2467 | snd_soc_dapm_sys_remove(dapm->dev); |
| 2468 | dapm_free_widgets(dapm); |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 2469 | list_del(&dapm->list); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2470 | } |
| 2471 | EXPORT_SYMBOL_GPL(snd_soc_dapm_free); |
| 2472 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2473 | static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm) |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 2474 | { |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 2475 | struct snd_soc_dapm_widget *w; |
| 2476 | LIST_HEAD(down_list); |
| 2477 | int powerdown = 0; |
| 2478 | |
Jarkko Nikula | 97c866d | 2010-12-14 12:18:31 +0200 | [diff] [blame] | 2479 | list_for_each_entry(w, &dapm->card->widgets, list) { |
| 2480 | if (w->dapm != dapm) |
| 2481 | continue; |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 2482 | if (w->power) { |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 2483 | dapm_seq_insert(w, &down_list, false); |
Mark Brown | c2caa4d | 2009-06-26 15:36:56 +0100 | [diff] [blame] | 2484 | w->power = 0; |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 2485 | powerdown = 1; |
| 2486 | } |
| 2487 | } |
| 2488 | |
| 2489 | /* If there were no widgets to power down we're already in |
| 2490 | * standby. |
| 2491 | */ |
| 2492 | if (powerdown) { |
Mark Brown | ed5a4c4 | 2011-02-18 11:12:42 -0800 | [diff] [blame] | 2493 | snd_soc_dapm_set_bias_level(dapm, SND_SOC_BIAS_PREPARE); |
Mark Brown | 828a842 | 2011-01-15 13:14:30 +0000 | [diff] [blame] | 2494 | dapm_seq_run(dapm, &down_list, 0, false); |
Mark Brown | ed5a4c4 | 2011-02-18 11:12:42 -0800 | [diff] [blame] | 2495 | snd_soc_dapm_set_bias_level(dapm, SND_SOC_BIAS_STANDBY); |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 2496 | } |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2497 | } |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 2498 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2499 | /* |
| 2500 | * snd_soc_dapm_shutdown - callback for system shutdown |
| 2501 | */ |
| 2502 | void snd_soc_dapm_shutdown(struct snd_soc_card *card) |
| 2503 | { |
| 2504 | struct snd_soc_codec *codec; |
| 2505 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2506 | list_for_each_entry(codec, &card->codec_dev_list, list) { |
| 2507 | soc_dapm_shutdown_codec(&codec->dapm); |
Mark Brown | ed5a4c4 | 2011-02-18 11:12:42 -0800 | [diff] [blame] | 2508 | snd_soc_dapm_set_bias_level(&codec->dapm, SND_SOC_BIAS_OFF); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 2509 | } |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 2510 | } |
| 2511 | |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2512 | /* Module information */ |
Liam Girdwood | d331124 | 2008-10-12 13:17:36 +0100 | [diff] [blame] | 2513 | MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk"); |
Richard Purdie | 2b97eab | 2006-10-06 18:32:18 +0200 | [diff] [blame] | 2514 | MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC"); |
| 2515 | MODULE_LICENSE("GPL"); |