]>
Commit | Line | Data |
---|---|---|
2b97eabc RP |
1 | /* |
2 | * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management | |
3 | * | |
4 | * Copyright 2005 Wolfson Microelectronics PLC. | |
d331124d | 5 | * Author: Liam Girdwood <[email protected]> |
2b97eabc RP |
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 | * | |
2b97eabc RP |
12 | * Features: |
13 | * o Changes power status of internal codec blocks depending on the | |
14 | * dynamic configuration of codec internal audio paths and active | |
74b8f955 | 15 | * DACs/ADCs. |
2b97eabc RP |
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 | |
3a4fa0a2 | 21 | * o Delayed powerdown of audio susbsystem to reduce pops between a quick |
2b97eabc RP |
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> | |
9d0624a7 | 35 | #include <linux/async.h> |
2b97eabc RP |
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> | |
20496ff3 | 41 | #include <linux/debugfs.h> |
f1aac484 | 42 | #include <linux/pm_runtime.h> |
5a0e3ad6 | 43 | #include <linux/slab.h> |
2b97eabc RP |
44 | #include <sound/core.h> |
45 | #include <sound/pcm.h> | |
46 | #include <sound/pcm_params.h> | |
ce6120cc | 47 | #include <sound/soc.h> |
2b97eabc RP |
48 | #include <sound/initval.h> |
49 | ||
84e90930 MB |
50 | #include <trace/events/asoc.h> |
51 | ||
de02d078 MB |
52 | #define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++; |
53 | ||
2b97eabc RP |
54 | /* dapm power sequences - make this per codec in the future */ |
55 | static int dapm_up_seq[] = { | |
38357ab2 MB |
56 | [snd_soc_dapm_pre] = 0, |
57 | [snd_soc_dapm_supply] = 1, | |
58 | [snd_soc_dapm_micbias] = 2, | |
010ff262 MB |
59 | [snd_soc_dapm_aif_in] = 3, |
60 | [snd_soc_dapm_aif_out] = 3, | |
61 | [snd_soc_dapm_mic] = 4, | |
62 | [snd_soc_dapm_mux] = 5, | |
24ff33ac | 63 | [snd_soc_dapm_virt_mux] = 5, |
010ff262 MB |
64 | [snd_soc_dapm_value_mux] = 5, |
65 | [snd_soc_dapm_dac] = 6, | |
66 | [snd_soc_dapm_mixer] = 7, | |
67 | [snd_soc_dapm_mixer_named_ctl] = 7, | |
68 | [snd_soc_dapm_pga] = 8, | |
69 | [snd_soc_dapm_adc] = 9, | |
d88429a6 | 70 | [snd_soc_dapm_out_drv] = 10, |
010ff262 MB |
71 | [snd_soc_dapm_hp] = 10, |
72 | [snd_soc_dapm_spk] = 10, | |
73 | [snd_soc_dapm_post] = 11, | |
2b97eabc | 74 | }; |
ca9c1aae | 75 | |
2b97eabc | 76 | static int dapm_down_seq[] = { |
38357ab2 MB |
77 | [snd_soc_dapm_pre] = 0, |
78 | [snd_soc_dapm_adc] = 1, | |
79 | [snd_soc_dapm_hp] = 2, | |
1ca04065 | 80 | [snd_soc_dapm_spk] = 2, |
d88429a6 | 81 | [snd_soc_dapm_out_drv] = 2, |
38357ab2 MB |
82 | [snd_soc_dapm_pga] = 4, |
83 | [snd_soc_dapm_mixer_named_ctl] = 5, | |
e3d4dabd MB |
84 | [snd_soc_dapm_mixer] = 5, |
85 | [snd_soc_dapm_dac] = 6, | |
86 | [snd_soc_dapm_mic] = 7, | |
87 | [snd_soc_dapm_micbias] = 8, | |
88 | [snd_soc_dapm_mux] = 9, | |
24ff33ac | 89 | [snd_soc_dapm_virt_mux] = 9, |
e3d4dabd | 90 | [snd_soc_dapm_value_mux] = 9, |
010ff262 MB |
91 | [snd_soc_dapm_aif_in] = 10, |
92 | [snd_soc_dapm_aif_out] = 10, | |
93 | [snd_soc_dapm_supply] = 11, | |
94 | [snd_soc_dapm_post] = 12, | |
2b97eabc RP |
95 | }; |
96 | ||
12ef193d | 97 | static void pop_wait(u32 pop_time) |
15e4c72f MB |
98 | { |
99 | if (pop_time) | |
100 | schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time)); | |
101 | } | |
102 | ||
fd8d3bc0 | 103 | static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...) |
15e4c72f MB |
104 | { |
105 | va_list args; | |
fd8d3bc0 | 106 | char *buf; |
15e4c72f | 107 | |
fd8d3bc0 JN |
108 | if (!pop_time) |
109 | return; | |
15e4c72f | 110 | |
fd8d3bc0 JN |
111 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
112 | if (buf == NULL) | |
113 | return; | |
15e4c72f | 114 | |
fd8d3bc0 JN |
115 | va_start(args, fmt); |
116 | vsnprintf(buf, PAGE_SIZE, fmt, args); | |
9d01df06 | 117 | dev_info(dev, "%s", buf); |
15e4c72f | 118 | va_end(args); |
fd8d3bc0 JN |
119 | |
120 | kfree(buf); | |
15e4c72f MB |
121 | } |
122 | ||
db432b41 MB |
123 | static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w) |
124 | { | |
125 | return !list_empty(&w->dirty); | |
126 | } | |
127 | ||
25c77c5f | 128 | void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason) |
db432b41 | 129 | { |
75c1f891 MB |
130 | if (!dapm_dirty_widget(w)) { |
131 | dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n", | |
132 | w->name, reason); | |
db432b41 | 133 | list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty); |
75c1f891 | 134 | } |
db432b41 | 135 | } |
25c77c5f | 136 | EXPORT_SYMBOL_GPL(dapm_mark_dirty); |
db432b41 | 137 | |
2b97eabc | 138 | /* create a new dapm widget */ |
88cb4290 | 139 | static inline struct snd_soc_dapm_widget *dapm_cnew_widget( |
2b97eabc RP |
140 | const struct snd_soc_dapm_widget *_widget) |
141 | { | |
88cb4290 | 142 | return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL); |
2b97eabc RP |
143 | } |
144 | ||
4805608a LG |
145 | /* get snd_card from DAPM context */ |
146 | static inline struct snd_card *dapm_get_snd_card( | |
147 | struct snd_soc_dapm_context *dapm) | |
148 | { | |
149 | if (dapm->codec) | |
150 | return dapm->codec->card->snd_card; | |
151 | else if (dapm->platform) | |
152 | return dapm->platform->card->snd_card; | |
153 | else | |
154 | BUG(); | |
155 | ||
156 | /* unreachable */ | |
157 | return NULL; | |
158 | } | |
159 | ||
160 | /* get soc_card from DAPM context */ | |
161 | static inline struct snd_soc_card *dapm_get_soc_card( | |
162 | struct snd_soc_dapm_context *dapm) | |
163 | { | |
164 | if (dapm->codec) | |
165 | return dapm->codec->card; | |
166 | else if (dapm->platform) | |
167 | return dapm->platform->card; | |
168 | else | |
169 | BUG(); | |
170 | ||
171 | /* unreachable */ | |
172 | return NULL; | |
173 | } | |
174 | ||
0445bdf4 LG |
175 | static int soc_widget_read(struct snd_soc_dapm_widget *w, int reg) |
176 | { | |
177 | if (w->codec) | |
178 | return snd_soc_read(w->codec, reg); | |
b7950641 LG |
179 | else if (w->platform) |
180 | return snd_soc_platform_read(w->platform, reg); | |
181 | ||
182 | dev_err(w->dapm->dev, "no valid widget read method\n"); | |
183 | return -1; | |
0445bdf4 LG |
184 | } |
185 | ||
186 | static int soc_widget_write(struct snd_soc_dapm_widget *w, int reg, int val) | |
187 | { | |
188 | if (w->codec) | |
189 | return snd_soc_write(w->codec, reg, val); | |
b7950641 LG |
190 | else if (w->platform) |
191 | return snd_soc_platform_write(w->platform, reg, val); | |
192 | ||
193 | dev_err(w->dapm->dev, "no valid widget write method\n"); | |
194 | return -1; | |
0445bdf4 LG |
195 | } |
196 | ||
197 | static int soc_widget_update_bits(struct snd_soc_dapm_widget *w, | |
198 | unsigned short reg, unsigned int mask, unsigned int value) | |
199 | { | |
200 | int change; | |
201 | unsigned int old, new; | |
202 | int ret; | |
203 | ||
204 | ret = soc_widget_read(w, reg); | |
205 | if (ret < 0) | |
206 | return ret; | |
207 | ||
208 | old = ret; | |
209 | new = (old & ~mask) | (value & mask); | |
210 | change = old != new; | |
211 | if (change) { | |
212 | ret = soc_widget_write(w, reg, new); | |
213 | if (ret < 0) | |
214 | return ret; | |
215 | } | |
216 | ||
217 | return change; | |
218 | } | |
219 | ||
452c5eaa MB |
220 | /** |
221 | * snd_soc_dapm_set_bias_level - set the bias level for the system | |
ed5a4c47 | 222 | * @dapm: DAPM context |
452c5eaa MB |
223 | * @level: level to configure |
224 | * | |
225 | * Configure the bias (power) levels for the SoC audio device. | |
226 | * | |
227 | * Returns 0 for success else error. | |
228 | */ | |
ed5a4c47 | 229 | static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm, |
ce6120cc | 230 | enum snd_soc_bias_level level) |
452c5eaa | 231 | { |
ed5a4c47 | 232 | struct snd_soc_card *card = dapm->card; |
452c5eaa MB |
233 | int ret = 0; |
234 | ||
84e90930 MB |
235 | trace_snd_soc_bias_level_start(card, level); |
236 | ||
f0fba2ad | 237 | if (card && card->set_bias_level) |
d4c6005f | 238 | ret = card->set_bias_level(card, dapm, level); |
171ec6b0 MB |
239 | if (ret != 0) |
240 | goto out; | |
241 | ||
cc4c670a MB |
242 | if (dapm->codec) { |
243 | if (dapm->codec->driver->set_bias_level) | |
244 | ret = dapm->codec->driver->set_bias_level(dapm->codec, | |
245 | level); | |
246 | else | |
247 | dapm->bias_level = level; | |
248 | } | |
171ec6b0 MB |
249 | if (ret != 0) |
250 | goto out; | |
251 | ||
252 | if (card && card->set_bias_level_post) | |
d4c6005f | 253 | ret = card->set_bias_level_post(card, dapm, level); |
171ec6b0 | 254 | out: |
84e90930 MB |
255 | trace_snd_soc_bias_level_done(card, level); |
256 | ||
452c5eaa MB |
257 | return ret; |
258 | } | |
259 | ||
2b97eabc RP |
260 | /* set up initial codec paths */ |
261 | static void dapm_set_path_status(struct snd_soc_dapm_widget *w, | |
262 | struct snd_soc_dapm_path *p, int i) | |
263 | { | |
264 | switch (w->id) { | |
265 | case snd_soc_dapm_switch: | |
ca9c1aae IM |
266 | case snd_soc_dapm_mixer: |
267 | case snd_soc_dapm_mixer_named_ctl: { | |
2b97eabc | 268 | int val; |
4eaa9819 | 269 | struct soc_mixer_control *mc = (struct soc_mixer_control *) |
82cfecdc | 270 | w->kcontrol_news[i].private_value; |
815ecf8d JS |
271 | unsigned int reg = mc->reg; |
272 | unsigned int shift = mc->shift; | |
4eaa9819 | 273 | int max = mc->max; |
815ecf8d JS |
274 | unsigned int mask = (1 << fls(max)) - 1; |
275 | unsigned int invert = mc->invert; | |
2b97eabc | 276 | |
0445bdf4 | 277 | val = soc_widget_read(w, reg); |
2b97eabc RP |
278 | val = (val >> shift) & mask; |
279 | ||
280 | if ((invert && !val) || (!invert && val)) | |
281 | p->connect = 1; | |
282 | else | |
283 | p->connect = 0; | |
284 | } | |
285 | break; | |
286 | case snd_soc_dapm_mux: { | |
82cfecdc SW |
287 | struct soc_enum *e = (struct soc_enum *) |
288 | w->kcontrol_news[i].private_value; | |
2b97eabc RP |
289 | int val, item, bitmask; |
290 | ||
f8ba0b7b | 291 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
88d96086 | 292 | ; |
0445bdf4 | 293 | val = soc_widget_read(w, e->reg); |
2b97eabc RP |
294 | item = (val >> e->shift_l) & (bitmask - 1); |
295 | ||
296 | p->connect = 0; | |
f8ba0b7b | 297 | for (i = 0; i < e->max; i++) { |
2b97eabc RP |
298 | if (!(strcmp(p->name, e->texts[i])) && item == i) |
299 | p->connect = 1; | |
300 | } | |
301 | } | |
302 | break; | |
24ff33ac | 303 | case snd_soc_dapm_virt_mux: { |
82cfecdc SW |
304 | struct soc_enum *e = (struct soc_enum *) |
305 | w->kcontrol_news[i].private_value; | |
24ff33ac DP |
306 | |
307 | p->connect = 0; | |
308 | /* since a virtual mux has no backing registers to | |
309 | * decide which path to connect, it will try to match | |
310 | * with the first enumeration. This is to ensure | |
311 | * that the default mux choice (the first) will be | |
312 | * correctly powered up during initialization. | |
313 | */ | |
314 | if (!strcmp(p->name, e->texts[0])) | |
315 | p->connect = 1; | |
316 | } | |
317 | break; | |
2e72f8e3 | 318 | case snd_soc_dapm_value_mux: { |
74155556 | 319 | struct soc_enum *e = (struct soc_enum *) |
82cfecdc | 320 | w->kcontrol_news[i].private_value; |
2e72f8e3 PU |
321 | int val, item; |
322 | ||
0445bdf4 | 323 | val = soc_widget_read(w, e->reg); |
2e72f8e3 PU |
324 | val = (val >> e->shift_l) & e->mask; |
325 | for (item = 0; item < e->max; item++) { | |
326 | if (val == e->values[item]) | |
327 | break; | |
328 | } | |
329 | ||
330 | p->connect = 0; | |
331 | for (i = 0; i < e->max; i++) { | |
332 | if (!(strcmp(p->name, e->texts[i])) && item == i) | |
333 | p->connect = 1; | |
334 | } | |
335 | } | |
336 | break; | |
56563100 | 337 | /* does not affect routing - always connected */ |
2b97eabc | 338 | case snd_soc_dapm_pga: |
d88429a6 | 339 | case snd_soc_dapm_out_drv: |
2b97eabc RP |
340 | case snd_soc_dapm_output: |
341 | case snd_soc_dapm_adc: | |
342 | case snd_soc_dapm_input: | |
1ab97c8c | 343 | case snd_soc_dapm_siggen: |
2b97eabc RP |
344 | case snd_soc_dapm_dac: |
345 | case snd_soc_dapm_micbias: | |
346 | case snd_soc_dapm_vmid: | |
246d0a17 | 347 | case snd_soc_dapm_supply: |
010ff262 MB |
348 | case snd_soc_dapm_aif_in: |
349 | case snd_soc_dapm_aif_out: | |
2b97eabc RP |
350 | case snd_soc_dapm_hp: |
351 | case snd_soc_dapm_mic: | |
352 | case snd_soc_dapm_spk: | |
353 | case snd_soc_dapm_line: | |
56563100 MB |
354 | p->connect = 1; |
355 | break; | |
356 | /* does affect routing - dynamically connected */ | |
2b97eabc RP |
357 | case snd_soc_dapm_pre: |
358 | case snd_soc_dapm_post: | |
359 | p->connect = 0; | |
360 | break; | |
361 | } | |
362 | } | |
363 | ||
74b8f955 | 364 | /* connect mux widget to its interconnecting audio paths */ |
ce6120cc | 365 | static int dapm_connect_mux(struct snd_soc_dapm_context *dapm, |
2b97eabc RP |
366 | struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest, |
367 | struct snd_soc_dapm_path *path, const char *control_name, | |
368 | const struct snd_kcontrol_new *kcontrol) | |
369 | { | |
370 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; | |
371 | int i; | |
372 | ||
f8ba0b7b | 373 | for (i = 0; i < e->max; i++) { |
2b97eabc | 374 | if (!(strcmp(control_name, e->texts[i]))) { |
8ddab3f5 | 375 | list_add(&path->list, &dapm->card->paths); |
2b97eabc RP |
376 | list_add(&path->list_sink, &dest->sources); |
377 | list_add(&path->list_source, &src->sinks); | |
378 | path->name = (char*)e->texts[i]; | |
379 | dapm_set_path_status(dest, path, 0); | |
380 | return 0; | |
381 | } | |
382 | } | |
383 | ||
384 | return -ENODEV; | |
385 | } | |
386 | ||
74b8f955 | 387 | /* connect mixer widget to its interconnecting audio paths */ |
ce6120cc | 388 | static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm, |
2b97eabc RP |
389 | struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest, |
390 | struct snd_soc_dapm_path *path, const char *control_name) | |
391 | { | |
392 | int i; | |
393 | ||
394 | /* search for mixer kcontrol */ | |
395 | for (i = 0; i < dest->num_kcontrols; i++) { | |
82cfecdc | 396 | if (!strcmp(control_name, dest->kcontrol_news[i].name)) { |
8ddab3f5 | 397 | list_add(&path->list, &dapm->card->paths); |
2b97eabc RP |
398 | list_add(&path->list_sink, &dest->sources); |
399 | list_add(&path->list_source, &src->sinks); | |
82cfecdc | 400 | path->name = dest->kcontrol_news[i].name; |
2b97eabc RP |
401 | dapm_set_path_status(dest, path, i); |
402 | return 0; | |
403 | } | |
404 | } | |
405 | return -ENODEV; | |
406 | } | |
407 | ||
af46800b | 408 | static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm, |
1007da06 | 409 | struct snd_soc_dapm_widget *kcontrolw, |
af46800b SW |
410 | const struct snd_kcontrol_new *kcontrol_new, |
411 | struct snd_kcontrol **kcontrol) | |
412 | { | |
413 | struct snd_soc_dapm_widget *w; | |
414 | int i; | |
415 | ||
416 | *kcontrol = NULL; | |
417 | ||
418 | list_for_each_entry(w, &dapm->card->widgets, list) { | |
1007da06 SW |
419 | if (w == kcontrolw || w->dapm != kcontrolw->dapm) |
420 | continue; | |
af46800b SW |
421 | for (i = 0; i < w->num_kcontrols; i++) { |
422 | if (&w->kcontrol_news[i] == kcontrol_new) { | |
423 | if (w->kcontrols) | |
424 | *kcontrol = w->kcontrols[i]; | |
425 | return 1; | |
426 | } | |
427 | } | |
428 | } | |
429 | ||
430 | return 0; | |
431 | } | |
432 | ||
2b97eabc | 433 | /* create new dapm mixer control */ |
4b80b8c2 | 434 | static int dapm_new_mixer(struct snd_soc_dapm_widget *w) |
2b97eabc | 435 | { |
4b80b8c2 | 436 | struct snd_soc_dapm_context *dapm = w->dapm; |
2b97eabc | 437 | int i, ret = 0; |
3e5ff4df | 438 | size_t name_len, prefix_len; |
2b97eabc | 439 | struct snd_soc_dapm_path *path; |
12ea2c78 | 440 | struct snd_card *card = dapm->card->snd_card; |
efb7ac3f | 441 | const char *prefix; |
fafd2176 SW |
442 | struct snd_soc_dapm_widget_list *wlist; |
443 | size_t wlistsize; | |
efb7ac3f MB |
444 | |
445 | if (dapm->codec) | |
446 | prefix = dapm->codec->name_prefix; | |
447 | else | |
448 | prefix = NULL; | |
2b97eabc | 449 | |
3e5ff4df MB |
450 | if (prefix) |
451 | prefix_len = strlen(prefix) + 1; | |
452 | else | |
453 | prefix_len = 0; | |
454 | ||
2b97eabc RP |
455 | /* add kcontrol */ |
456 | for (i = 0; i < w->num_kcontrols; i++) { | |
457 | ||
458 | /* match name */ | |
459 | list_for_each_entry(path, &w->sources, list_sink) { | |
460 | ||
461 | /* mixer/mux paths name must match control name */ | |
82cfecdc | 462 | if (path->name != (char *)w->kcontrol_news[i].name) |
2b97eabc RP |
463 | continue; |
464 | ||
82cd8764 LPC |
465 | if (w->kcontrols[i]) { |
466 | path->kcontrol = w->kcontrols[i]; | |
467 | continue; | |
468 | } | |
469 | ||
fafd2176 SW |
470 | wlistsize = sizeof(struct snd_soc_dapm_widget_list) + |
471 | sizeof(struct snd_soc_dapm_widget *), | |
472 | wlist = kzalloc(wlistsize, GFP_KERNEL); | |
473 | if (wlist == NULL) { | |
474 | dev_err(dapm->dev, | |
475 | "asoc: can't allocate widget list for %s\n", | |
476 | w->name); | |
477 | return -ENOMEM; | |
478 | } | |
479 | wlist->num_widgets = 1; | |
480 | wlist->widgets[0] = w; | |
481 | ||
ca9c1aae IM |
482 | /* add dapm control with long name. |
483 | * for dapm_mixer this is the concatenation of the | |
484 | * mixer and kcontrol name. | |
485 | * for dapm_mixer_named_ctl this is simply the | |
486 | * kcontrol name. | |
487 | */ | |
82cfecdc | 488 | name_len = strlen(w->kcontrol_news[i].name) + 1; |
07495f3e | 489 | if (w->id != snd_soc_dapm_mixer_named_ctl) |
ca9c1aae IM |
490 | name_len += 1 + strlen(w->name); |
491 | ||
219b93f5 | 492 | path->long_name = kmalloc(name_len, GFP_KERNEL); |
ca9c1aae | 493 | |
fafd2176 SW |
494 | if (path->long_name == NULL) { |
495 | kfree(wlist); | |
2b97eabc | 496 | return -ENOMEM; |
fafd2176 | 497 | } |
2b97eabc | 498 | |
ca9c1aae | 499 | switch (w->id) { |
ca9c1aae | 500 | default: |
3e5ff4df MB |
501 | /* The control will get a prefix from |
502 | * the control creation process but | |
503 | * we're also using the same prefix | |
504 | * for widgets so cut the prefix off | |
505 | * the front of the widget name. | |
506 | */ | |
ca9c1aae | 507 | snprintf(path->long_name, name_len, "%s %s", |
3e5ff4df | 508 | w->name + prefix_len, |
82cfecdc | 509 | w->kcontrol_news[i].name); |
07495f3e | 510 | break; |
ca9c1aae IM |
511 | case snd_soc_dapm_mixer_named_ctl: |
512 | snprintf(path->long_name, name_len, "%s", | |
82cfecdc | 513 | w->kcontrol_news[i].name); |
07495f3e | 514 | break; |
ca9c1aae IM |
515 | } |
516 | ||
219b93f5 MB |
517 | path->long_name[name_len - 1] = '\0'; |
518 | ||
fafd2176 SW |
519 | path->kcontrol = snd_soc_cnew(&w->kcontrol_news[i], |
520 | wlist, path->long_name, | |
521 | prefix); | |
ce6120cc | 522 | ret = snd_ctl_add(card, path->kcontrol); |
2b97eabc | 523 | if (ret < 0) { |
f7d41ae8 JN |
524 | dev_err(dapm->dev, |
525 | "asoc: failed to add dapm kcontrol %s: %d\n", | |
526 | path->long_name, ret); | |
fafd2176 | 527 | kfree(wlist); |
2b97eabc RP |
528 | kfree(path->long_name); |
529 | path->long_name = NULL; | |
530 | return ret; | |
531 | } | |
fad59888 | 532 | w->kcontrols[i] = path->kcontrol; |
2b97eabc RP |
533 | } |
534 | } | |
535 | return ret; | |
536 | } | |
537 | ||
538 | /* create new dapm mux control */ | |
4b80b8c2 | 539 | static int dapm_new_mux(struct snd_soc_dapm_widget *w) |
2b97eabc | 540 | { |
4b80b8c2 | 541 | struct snd_soc_dapm_context *dapm = w->dapm; |
2b97eabc RP |
542 | struct snd_soc_dapm_path *path = NULL; |
543 | struct snd_kcontrol *kcontrol; | |
12ea2c78 | 544 | struct snd_card *card = dapm->card->snd_card; |
efb7ac3f | 545 | const char *prefix; |
3e5ff4df | 546 | size_t prefix_len; |
af46800b | 547 | int ret; |
fafd2176 | 548 | struct snd_soc_dapm_widget_list *wlist; |
af46800b | 549 | int shared, wlistentries; |
fafd2176 | 550 | size_t wlistsize; |
af46800b | 551 | char *name; |
2b97eabc | 552 | |
af46800b SW |
553 | if (w->num_kcontrols != 1) { |
554 | dev_err(dapm->dev, | |
555 | "asoc: mux %s has incorrect number of controls\n", | |
556 | w->name); | |
2b97eabc RP |
557 | return -EINVAL; |
558 | } | |
559 | ||
1007da06 | 560 | shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[0], |
af46800b SW |
561 | &kcontrol); |
562 | if (kcontrol) { | |
563 | wlist = kcontrol->private_data; | |
564 | wlistentries = wlist->num_widgets + 1; | |
565 | } else { | |
566 | wlist = NULL; | |
567 | wlistentries = 1; | |
568 | } | |
fafd2176 | 569 | wlistsize = sizeof(struct snd_soc_dapm_widget_list) + |
af46800b SW |
570 | wlistentries * sizeof(struct snd_soc_dapm_widget *), |
571 | wlist = krealloc(wlist, wlistsize, GFP_KERNEL); | |
fafd2176 SW |
572 | if (wlist == NULL) { |
573 | dev_err(dapm->dev, | |
574 | "asoc: can't allocate widget list for %s\n", w->name); | |
575 | return -ENOMEM; | |
576 | } | |
af46800b SW |
577 | wlist->num_widgets = wlistentries; |
578 | wlist->widgets[wlistentries - 1] = w; | |
efb7ac3f | 579 | |
af46800b SW |
580 | if (!kcontrol) { |
581 | if (dapm->codec) | |
582 | prefix = dapm->codec->name_prefix; | |
583 | else | |
584 | prefix = NULL; | |
585 | ||
586 | if (shared) { | |
587 | name = w->kcontrol_news[0].name; | |
588 | prefix_len = 0; | |
589 | } else { | |
590 | name = w->name; | |
591 | if (prefix) | |
592 | prefix_len = strlen(prefix) + 1; | |
593 | else | |
594 | prefix_len = 0; | |
595 | } | |
3e5ff4df | 596 | |
af46800b SW |
597 | /* |
598 | * The control will get a prefix from the control creation | |
599 | * process but we're also using the same prefix for widgets so | |
600 | * cut the prefix off the front of the widget name. | |
601 | */ | |
602 | kcontrol = snd_soc_cnew(&w->kcontrol_news[0], wlist, | |
603 | name + prefix_len, prefix); | |
604 | ret = snd_ctl_add(card, kcontrol); | |
605 | if (ret < 0) { | |
53daf208 MB |
606 | dev_err(dapm->dev, "failed to add kcontrol %s: %d\n", |
607 | w->name, ret); | |
af46800b SW |
608 | kfree(wlist); |
609 | return ret; | |
610 | } | |
611 | } | |
ce6120cc | 612 | |
af46800b | 613 | kcontrol->private_data = wlist; |
2b97eabc | 614 | |
fad59888 SW |
615 | w->kcontrols[0] = kcontrol; |
616 | ||
2b97eabc RP |
617 | list_for_each_entry(path, &w->sources, list_sink) |
618 | path->kcontrol = kcontrol; | |
619 | ||
af46800b | 620 | return 0; |
2b97eabc RP |
621 | } |
622 | ||
623 | /* create new dapm volume control */ | |
4b80b8c2 | 624 | static int dapm_new_pga(struct snd_soc_dapm_widget *w) |
2b97eabc | 625 | { |
a6c65736 | 626 | if (w->num_kcontrols) |
f7d41ae8 JN |
627 | dev_err(w->dapm->dev, |
628 | "asoc: PGA controls not supported: '%s'\n", w->name); | |
2b97eabc | 629 | |
a6c65736 | 630 | return 0; |
2b97eabc RP |
631 | } |
632 | ||
633 | /* reset 'walked' bit for each dapm path */ | |
ce6120cc | 634 | static inline void dapm_clear_walk(struct snd_soc_dapm_context *dapm) |
2b97eabc RP |
635 | { |
636 | struct snd_soc_dapm_path *p; | |
637 | ||
8ddab3f5 | 638 | list_for_each_entry(p, &dapm->card->paths, list) |
2b97eabc RP |
639 | p->walked = 0; |
640 | } | |
641 | ||
9949788b MB |
642 | /* We implement power down on suspend by checking the power state of |
643 | * the ALSA card - when we are suspending the ALSA state for the card | |
644 | * is set to D3. | |
645 | */ | |
646 | static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget) | |
647 | { | |
12ea2c78 | 648 | int level = snd_power_get_state(widget->dapm->card->snd_card); |
9949788b | 649 | |
f0fba2ad | 650 | switch (level) { |
9949788b MB |
651 | case SNDRV_CTL_POWER_D3hot: |
652 | case SNDRV_CTL_POWER_D3cold: | |
1547aba9 | 653 | if (widget->ignore_suspend) |
f7d41ae8 JN |
654 | dev_dbg(widget->dapm->dev, "%s ignoring suspend\n", |
655 | widget->name); | |
1547aba9 | 656 | return widget->ignore_suspend; |
9949788b MB |
657 | default: |
658 | return 1; | |
659 | } | |
660 | } | |
661 | ||
2b97eabc RP |
662 | /* |
663 | * Recursively check for a completed path to an active or physically connected | |
664 | * output widget. Returns number of complete paths. | |
665 | */ | |
666 | static int is_connected_output_ep(struct snd_soc_dapm_widget *widget) | |
667 | { | |
668 | struct snd_soc_dapm_path *path; | |
669 | int con = 0; | |
670 | ||
024dc078 MB |
671 | if (widget->outputs >= 0) |
672 | return widget->outputs; | |
673 | ||
de02d078 MB |
674 | DAPM_UPDATE_STAT(widget, path_checks); |
675 | ||
246d0a17 MB |
676 | if (widget->id == snd_soc_dapm_supply) |
677 | return 0; | |
678 | ||
010ff262 MB |
679 | switch (widget->id) { |
680 | case snd_soc_dapm_adc: | |
681 | case snd_soc_dapm_aif_out: | |
024dc078 MB |
682 | if (widget->active) { |
683 | widget->outputs = snd_soc_dapm_suspend_check(widget); | |
684 | return widget->outputs; | |
685 | } | |
010ff262 MB |
686 | default: |
687 | break; | |
688 | } | |
2b97eabc RP |
689 | |
690 | if (widget->connected) { | |
691 | /* connected pin ? */ | |
024dc078 MB |
692 | if (widget->id == snd_soc_dapm_output && !widget->ext) { |
693 | widget->outputs = snd_soc_dapm_suspend_check(widget); | |
694 | return widget->outputs; | |
695 | } | |
2b97eabc RP |
696 | |
697 | /* connected jack or spk ? */ | |
024dc078 MB |
698 | if (widget->id == snd_soc_dapm_hp || |
699 | widget->id == snd_soc_dapm_spk || | |
700 | (widget->id == snd_soc_dapm_line && | |
701 | !list_empty(&widget->sources))) { | |
702 | widget->outputs = snd_soc_dapm_suspend_check(widget); | |
703 | return widget->outputs; | |
704 | } | |
2b97eabc RP |
705 | } |
706 | ||
707 | list_for_each_entry(path, &widget->sinks, list_source) { | |
e56235e0 MB |
708 | DAPM_UPDATE_STAT(widget, neighbour_checks); |
709 | ||
bf3a9e13 MB |
710 | if (path->weak) |
711 | continue; | |
712 | ||
2b97eabc RP |
713 | if (path->walked) |
714 | continue; | |
715 | ||
716 | if (path->sink && path->connect) { | |
717 | path->walked = 1; | |
718 | con += is_connected_output_ep(path->sink); | |
719 | } | |
720 | } | |
721 | ||
024dc078 MB |
722 | widget->outputs = con; |
723 | ||
2b97eabc RP |
724 | return con; |
725 | } | |
726 | ||
727 | /* | |
728 | * Recursively check for a completed path to an active or physically connected | |
729 | * input widget. Returns number of complete paths. | |
730 | */ | |
731 | static int is_connected_input_ep(struct snd_soc_dapm_widget *widget) | |
732 | { | |
733 | struct snd_soc_dapm_path *path; | |
734 | int con = 0; | |
735 | ||
024dc078 MB |
736 | if (widget->inputs >= 0) |
737 | return widget->inputs; | |
738 | ||
de02d078 MB |
739 | DAPM_UPDATE_STAT(widget, path_checks); |
740 | ||
246d0a17 MB |
741 | if (widget->id == snd_soc_dapm_supply) |
742 | return 0; | |
743 | ||
2b97eabc | 744 | /* active stream ? */ |
010ff262 MB |
745 | switch (widget->id) { |
746 | case snd_soc_dapm_dac: | |
747 | case snd_soc_dapm_aif_in: | |
024dc078 MB |
748 | if (widget->active) { |
749 | widget->inputs = snd_soc_dapm_suspend_check(widget); | |
750 | return widget->inputs; | |
751 | } | |
010ff262 MB |
752 | default: |
753 | break; | |
754 | } | |
2b97eabc RP |
755 | |
756 | if (widget->connected) { | |
757 | /* connected pin ? */ | |
024dc078 MB |
758 | if (widget->id == snd_soc_dapm_input && !widget->ext) { |
759 | widget->inputs = snd_soc_dapm_suspend_check(widget); | |
760 | return widget->inputs; | |
761 | } | |
2b97eabc RP |
762 | |
763 | /* connected VMID/Bias for lower pops */ | |
024dc078 MB |
764 | if (widget->id == snd_soc_dapm_vmid) { |
765 | widget->inputs = snd_soc_dapm_suspend_check(widget); | |
766 | return widget->inputs; | |
767 | } | |
2b97eabc RP |
768 | |
769 | /* connected jack ? */ | |
eaeae5d9 | 770 | if (widget->id == snd_soc_dapm_mic || |
024dc078 MB |
771 | (widget->id == snd_soc_dapm_line && |
772 | !list_empty(&widget->sinks))) { | |
773 | widget->inputs = snd_soc_dapm_suspend_check(widget); | |
774 | return widget->inputs; | |
775 | } | |
776 | ||
1ab97c8c MB |
777 | /* signal generator */ |
778 | if (widget->id == snd_soc_dapm_siggen) { | |
779 | widget->inputs = snd_soc_dapm_suspend_check(widget); | |
780 | return widget->inputs; | |
781 | } | |
2b97eabc RP |
782 | } |
783 | ||
784 | list_for_each_entry(path, &widget->sources, list_sink) { | |
e56235e0 MB |
785 | DAPM_UPDATE_STAT(widget, neighbour_checks); |
786 | ||
bf3a9e13 MB |
787 | if (path->weak) |
788 | continue; | |
789 | ||
2b97eabc RP |
790 | if (path->walked) |
791 | continue; | |
792 | ||
793 | if (path->source && path->connect) { | |
794 | path->walked = 1; | |
795 | con += is_connected_input_ep(path->source); | |
796 | } | |
797 | } | |
798 | ||
024dc078 MB |
799 | widget->inputs = con; |
800 | ||
2b97eabc RP |
801 | return con; |
802 | } | |
803 | ||
e2be2ccf JN |
804 | /* |
805 | * Handler for generic register modifier widget. | |
806 | */ | |
807 | int dapm_reg_event(struct snd_soc_dapm_widget *w, | |
808 | struct snd_kcontrol *kcontrol, int event) | |
809 | { | |
810 | unsigned int val; | |
811 | ||
812 | if (SND_SOC_DAPM_EVENT_ON(event)) | |
813 | val = w->on_val; | |
814 | else | |
815 | val = w->off_val; | |
816 | ||
0445bdf4 | 817 | soc_widget_update_bits(w, -(w->reg + 1), |
e2be2ccf JN |
818 | w->mask << w->shift, val << w->shift); |
819 | ||
820 | return 0; | |
821 | } | |
11589418 | 822 | EXPORT_SYMBOL_GPL(dapm_reg_event); |
e2be2ccf | 823 | |
d805002b MB |
824 | static int dapm_widget_power_check(struct snd_soc_dapm_widget *w) |
825 | { | |
9b8a83b2 MB |
826 | if (w->power_checked) |
827 | return w->new_power; | |
828 | ||
d805002b | 829 | if (w->force) |
9b8a83b2 | 830 | w->new_power = 1; |
d805002b | 831 | else |
9b8a83b2 MB |
832 | w->new_power = w->power_check(w); |
833 | ||
834 | w->power_checked = true; | |
835 | ||
836 | return w->new_power; | |
d805002b MB |
837 | } |
838 | ||
cd0f2d47 MB |
839 | /* Generic check to see if a widget should be powered. |
840 | */ | |
841 | static int dapm_generic_check_power(struct snd_soc_dapm_widget *w) | |
842 | { | |
843 | int in, out; | |
844 | ||
de02d078 MB |
845 | DAPM_UPDATE_STAT(w, power_checks); |
846 | ||
cd0f2d47 | 847 | in = is_connected_input_ep(w); |
ce6120cc | 848 | dapm_clear_walk(w->dapm); |
cd0f2d47 | 849 | out = is_connected_output_ep(w); |
ce6120cc | 850 | dapm_clear_walk(w->dapm); |
cd0f2d47 MB |
851 | return out != 0 && in != 0; |
852 | } | |
853 | ||
6ea31b9f MB |
854 | /* Check to see if an ADC has power */ |
855 | static int dapm_adc_check_power(struct snd_soc_dapm_widget *w) | |
856 | { | |
857 | int in; | |
858 | ||
de02d078 MB |
859 | DAPM_UPDATE_STAT(w, power_checks); |
860 | ||
6ea31b9f MB |
861 | if (w->active) { |
862 | in = is_connected_input_ep(w); | |
ce6120cc | 863 | dapm_clear_walk(w->dapm); |
6ea31b9f MB |
864 | return in != 0; |
865 | } else { | |
866 | return dapm_generic_check_power(w); | |
867 | } | |
868 | } | |
869 | ||
870 | /* Check to see if a DAC has power */ | |
871 | static int dapm_dac_check_power(struct snd_soc_dapm_widget *w) | |
872 | { | |
873 | int out; | |
874 | ||
de02d078 MB |
875 | DAPM_UPDATE_STAT(w, power_checks); |
876 | ||
6ea31b9f MB |
877 | if (w->active) { |
878 | out = is_connected_output_ep(w); | |
ce6120cc | 879 | dapm_clear_walk(w->dapm); |
6ea31b9f MB |
880 | return out != 0; |
881 | } else { | |
882 | return dapm_generic_check_power(w); | |
883 | } | |
884 | } | |
885 | ||
246d0a17 MB |
886 | /* Check to see if a power supply is needed */ |
887 | static int dapm_supply_check_power(struct snd_soc_dapm_widget *w) | |
888 | { | |
889 | struct snd_soc_dapm_path *path; | |
246d0a17 | 890 | |
de02d078 MB |
891 | DAPM_UPDATE_STAT(w, power_checks); |
892 | ||
246d0a17 MB |
893 | /* Check if one of our outputs is connected */ |
894 | list_for_each_entry(path, &w->sinks, list_source) { | |
a8fdac83 MB |
895 | DAPM_UPDATE_STAT(w, neighbour_checks); |
896 | ||
bf3a9e13 MB |
897 | if (path->weak) |
898 | continue; | |
899 | ||
215edda3 MB |
900 | if (path->connected && |
901 | !path->connected(path->source, path->sink)) | |
902 | continue; | |
903 | ||
3017358a MB |
904 | if (!path->sink) |
905 | continue; | |
906 | ||
f68d7e16 MB |
907 | if (dapm_widget_power_check(path->sink)) |
908 | return 1; | |
246d0a17 MB |
909 | } |
910 | ||
ce6120cc | 911 | dapm_clear_walk(w->dapm); |
246d0a17 | 912 | |
f68d7e16 | 913 | return 0; |
246d0a17 MB |
914 | } |
915 | ||
35c64bca MB |
916 | static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w) |
917 | { | |
918 | return 1; | |
919 | } | |
920 | ||
38357ab2 MB |
921 | static int dapm_seq_compare(struct snd_soc_dapm_widget *a, |
922 | struct snd_soc_dapm_widget *b, | |
828a842f | 923 | bool power_up) |
42aa3418 | 924 | { |
828a842f MB |
925 | int *sort; |
926 | ||
927 | if (power_up) | |
928 | sort = dapm_up_seq; | |
929 | else | |
930 | sort = dapm_down_seq; | |
931 | ||
38357ab2 MB |
932 | if (sort[a->id] != sort[b->id]) |
933 | return sort[a->id] - sort[b->id]; | |
20e4859d MB |
934 | if (a->subseq != b->subseq) { |
935 | if (power_up) | |
936 | return a->subseq - b->subseq; | |
937 | else | |
938 | return b->subseq - a->subseq; | |
939 | } | |
b22ead2a MB |
940 | if (a->reg != b->reg) |
941 | return a->reg - b->reg; | |
84dab567 MB |
942 | if (a->dapm != b->dapm) |
943 | return (unsigned long)a->dapm - (unsigned long)b->dapm; | |
42aa3418 | 944 | |
38357ab2 MB |
945 | return 0; |
946 | } | |
42aa3418 | 947 | |
38357ab2 MB |
948 | /* Insert a widget in order into a DAPM power sequence. */ |
949 | static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget, | |
950 | struct list_head *list, | |
828a842f | 951 | bool power_up) |
38357ab2 MB |
952 | { |
953 | struct snd_soc_dapm_widget *w; | |
954 | ||
955 | list_for_each_entry(w, list, power_list) | |
828a842f | 956 | if (dapm_seq_compare(new_widget, w, power_up) < 0) { |
38357ab2 MB |
957 | list_add_tail(&new_widget->power_list, &w->power_list); |
958 | return; | |
959 | } | |
960 | ||
961 | list_add_tail(&new_widget->power_list, list); | |
962 | } | |
963 | ||
68f89ad8 MB |
964 | static void dapm_seq_check_event(struct snd_soc_dapm_context *dapm, |
965 | struct snd_soc_dapm_widget *w, int event) | |
966 | { | |
967 | struct snd_soc_card *card = dapm->card; | |
968 | const char *ev_name; | |
969 | int power, ret; | |
970 | ||
971 | switch (event) { | |
972 | case SND_SOC_DAPM_PRE_PMU: | |
973 | ev_name = "PRE_PMU"; | |
974 | power = 1; | |
975 | break; | |
976 | case SND_SOC_DAPM_POST_PMU: | |
977 | ev_name = "POST_PMU"; | |
978 | power = 1; | |
979 | break; | |
980 | case SND_SOC_DAPM_PRE_PMD: | |
981 | ev_name = "PRE_PMD"; | |
982 | power = 0; | |
983 | break; | |
984 | case SND_SOC_DAPM_POST_PMD: | |
985 | ev_name = "POST_PMD"; | |
986 | power = 0; | |
987 | break; | |
988 | default: | |
989 | BUG(); | |
990 | return; | |
991 | } | |
992 | ||
993 | if (w->power != power) | |
994 | return; | |
995 | ||
996 | if (w->event && (w->event_flags & event)) { | |
997 | pop_dbg(dapm->dev, card->pop_time, "pop test : %s %s\n", | |
998 | w->name, ev_name); | |
84e90930 | 999 | trace_snd_soc_dapm_widget_event_start(w, event); |
68f89ad8 | 1000 | ret = w->event(w, NULL, event); |
84e90930 | 1001 | trace_snd_soc_dapm_widget_event_done(w, event); |
68f89ad8 MB |
1002 | if (ret < 0) |
1003 | pr_err("%s: %s event failed: %d\n", | |
1004 | ev_name, w->name, ret); | |
1005 | } | |
1006 | } | |
1007 | ||
b22ead2a | 1008 | /* Apply the coalesced changes from a DAPM sequence */ |
ce6120cc | 1009 | static void dapm_seq_run_coalesced(struct snd_soc_dapm_context *dapm, |
b22ead2a | 1010 | struct list_head *pending) |
163cac06 | 1011 | { |
3a45b867 | 1012 | struct snd_soc_card *card = dapm->card; |
68f89ad8 MB |
1013 | struct snd_soc_dapm_widget *w; |
1014 | int reg, power; | |
b22ead2a MB |
1015 | unsigned int value = 0; |
1016 | unsigned int mask = 0; | |
1017 | unsigned int cur_mask; | |
1018 | ||
1019 | reg = list_first_entry(pending, struct snd_soc_dapm_widget, | |
1020 | power_list)->reg; | |
1021 | ||
1022 | list_for_each_entry(w, pending, power_list) { | |
1023 | cur_mask = 1 << w->shift; | |
1024 | BUG_ON(reg != w->reg); | |
1025 | ||
1026 | if (w->invert) | |
1027 | power = !w->power; | |
1028 | else | |
1029 | power = w->power; | |
1030 | ||
1031 | mask |= cur_mask; | |
1032 | if (power) | |
1033 | value |= cur_mask; | |
1034 | ||
fd8d3bc0 | 1035 | pop_dbg(dapm->dev, card->pop_time, |
b22ead2a MB |
1036 | "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n", |
1037 | w->name, reg, value, mask); | |
81628103 | 1038 | |
68f89ad8 MB |
1039 | /* Check for events */ |
1040 | dapm_seq_check_event(dapm, w, SND_SOC_DAPM_PRE_PMU); | |
1041 | dapm_seq_check_event(dapm, w, SND_SOC_DAPM_PRE_PMD); | |
81628103 MB |
1042 | } |
1043 | ||
1044 | if (reg >= 0) { | |
29376bc7 MB |
1045 | /* Any widget will do, they should all be updating the |
1046 | * same register. | |
1047 | */ | |
1048 | w = list_first_entry(pending, struct snd_soc_dapm_widget, | |
1049 | power_list); | |
1050 | ||
fd8d3bc0 | 1051 | pop_dbg(dapm->dev, card->pop_time, |
81628103 | 1052 | "pop test : Applying 0x%x/0x%x to %x in %dms\n", |
3a45b867 JN |
1053 | value, mask, reg, card->pop_time); |
1054 | pop_wait(card->pop_time); | |
0445bdf4 | 1055 | soc_widget_update_bits(w, reg, mask, value); |
b22ead2a MB |
1056 | } |
1057 | ||
81628103 | 1058 | list_for_each_entry(w, pending, power_list) { |
68f89ad8 MB |
1059 | dapm_seq_check_event(dapm, w, SND_SOC_DAPM_POST_PMU); |
1060 | dapm_seq_check_event(dapm, w, SND_SOC_DAPM_POST_PMD); | |
81628103 | 1061 | } |
b22ead2a | 1062 | } |
42aa3418 | 1063 | |
b22ead2a MB |
1064 | /* Apply a DAPM power sequence. |
1065 | * | |
1066 | * We walk over a pre-sorted list of widgets to apply power to. In | |
1067 | * order to minimise the number of writes to the device required | |
1068 | * multiple widgets will be updated in a single write where possible. | |
1069 | * Currently anything that requires more than a single write is not | |
1070 | * handled. | |
1071 | */ | |
ce6120cc | 1072 | static void dapm_seq_run(struct snd_soc_dapm_context *dapm, |
828a842f | 1073 | struct list_head *list, int event, bool power_up) |
b22ead2a MB |
1074 | { |
1075 | struct snd_soc_dapm_widget *w, *n; | |
1076 | LIST_HEAD(pending); | |
1077 | int cur_sort = -1; | |
20e4859d | 1078 | int cur_subseq = -1; |
b22ead2a | 1079 | int cur_reg = SND_SOC_NOPM; |
7be31be8 | 1080 | struct snd_soc_dapm_context *cur_dapm = NULL; |
474b62d6 | 1081 | int ret, i; |
828a842f MB |
1082 | int *sort; |
1083 | ||
1084 | if (power_up) | |
1085 | sort = dapm_up_seq; | |
1086 | else | |
1087 | sort = dapm_down_seq; | |
163cac06 | 1088 | |
b22ead2a MB |
1089 | list_for_each_entry_safe(w, n, list, power_list) { |
1090 | ret = 0; | |
1091 | ||
1092 | /* Do we need to apply any queued changes? */ | |
7be31be8 | 1093 | if (sort[w->id] != cur_sort || w->reg != cur_reg || |
20e4859d | 1094 | w->dapm != cur_dapm || w->subseq != cur_subseq) { |
b22ead2a | 1095 | if (!list_empty(&pending)) |
7be31be8 | 1096 | dapm_seq_run_coalesced(cur_dapm, &pending); |
b22ead2a | 1097 | |
474b62d6 MB |
1098 | if (cur_dapm && cur_dapm->seq_notifier) { |
1099 | for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++) | |
1100 | if (sort[i] == cur_sort) | |
1101 | cur_dapm->seq_notifier(cur_dapm, | |
f85a9e0d MB |
1102 | i, |
1103 | cur_subseq); | |
474b62d6 MB |
1104 | } |
1105 | ||
b22ead2a MB |
1106 | INIT_LIST_HEAD(&pending); |
1107 | cur_sort = -1; | |
b0b3e6f8 | 1108 | cur_subseq = INT_MIN; |
b22ead2a | 1109 | cur_reg = SND_SOC_NOPM; |
7be31be8 | 1110 | cur_dapm = NULL; |
b22ead2a MB |
1111 | } |
1112 | ||
163cac06 MB |
1113 | switch (w->id) { |
1114 | case snd_soc_dapm_pre: | |
1115 | if (!w->event) | |
b22ead2a MB |
1116 | list_for_each_entry_safe_continue(w, n, list, |
1117 | power_list); | |
163cac06 | 1118 | |
b22ead2a | 1119 | if (event == SND_SOC_DAPM_STREAM_START) |
163cac06 MB |
1120 | ret = w->event(w, |
1121 | NULL, SND_SOC_DAPM_PRE_PMU); | |
b22ead2a | 1122 | else if (event == SND_SOC_DAPM_STREAM_STOP) |
163cac06 MB |
1123 | ret = w->event(w, |
1124 | NULL, SND_SOC_DAPM_PRE_PMD); | |
163cac06 MB |
1125 | break; |
1126 | ||
1127 | case snd_soc_dapm_post: | |
1128 | if (!w->event) | |
b22ead2a MB |
1129 | list_for_each_entry_safe_continue(w, n, list, |
1130 | power_list); | |
163cac06 | 1131 | |
b22ead2a | 1132 | if (event == SND_SOC_DAPM_STREAM_START) |
163cac06 MB |
1133 | ret = w->event(w, |
1134 | NULL, SND_SOC_DAPM_POST_PMU); | |
b22ead2a | 1135 | else if (event == SND_SOC_DAPM_STREAM_STOP) |
163cac06 MB |
1136 | ret = w->event(w, |
1137 | NULL, SND_SOC_DAPM_POST_PMD); | |
163cac06 MB |
1138 | break; |
1139 | ||
b22ead2a | 1140 | default: |
81628103 MB |
1141 | /* Queue it up for application */ |
1142 | cur_sort = sort[w->id]; | |
20e4859d | 1143 | cur_subseq = w->subseq; |
81628103 | 1144 | cur_reg = w->reg; |
7be31be8 | 1145 | cur_dapm = w->dapm; |
81628103 MB |
1146 | list_move(&w->power_list, &pending); |
1147 | break; | |
163cac06 | 1148 | } |
b22ead2a MB |
1149 | |
1150 | if (ret < 0) | |
f7d41ae8 JN |
1151 | dev_err(w->dapm->dev, |
1152 | "Failed to apply widget power: %d\n", ret); | |
6ea31b9f | 1153 | } |
b22ead2a MB |
1154 | |
1155 | if (!list_empty(&pending)) | |
28e86808 | 1156 | dapm_seq_run_coalesced(cur_dapm, &pending); |
474b62d6 MB |
1157 | |
1158 | if (cur_dapm && cur_dapm->seq_notifier) { | |
1159 | for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++) | |
1160 | if (sort[i] == cur_sort) | |
1161 | cur_dapm->seq_notifier(cur_dapm, | |
f85a9e0d | 1162 | i, cur_subseq); |
474b62d6 | 1163 | } |
42aa3418 MB |
1164 | } |
1165 | ||
97404f2e MB |
1166 | static void dapm_widget_update(struct snd_soc_dapm_context *dapm) |
1167 | { | |
1168 | struct snd_soc_dapm_update *update = dapm->update; | |
1169 | struct snd_soc_dapm_widget *w; | |
1170 | int ret; | |
1171 | ||
1172 | if (!update) | |
1173 | return; | |
1174 | ||
1175 | w = update->widget; | |
1176 | ||
1177 | if (w->event && | |
1178 | (w->event_flags & SND_SOC_DAPM_PRE_REG)) { | |
1179 | ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG); | |
1180 | if (ret != 0) | |
1181 | pr_err("%s DAPM pre-event failed: %d\n", | |
1182 | w->name, ret); | |
1183 | } | |
1184 | ||
1185 | ret = snd_soc_update_bits(w->codec, update->reg, update->mask, | |
1186 | update->val); | |
1187 | if (ret < 0) | |
1188 | pr_err("%s DAPM update failed: %d\n", w->name, ret); | |
1189 | ||
1190 | if (w->event && | |
1191 | (w->event_flags & SND_SOC_DAPM_POST_REG)) { | |
1192 | ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG); | |
1193 | if (ret != 0) | |
1194 | pr_err("%s DAPM post-event failed: %d\n", | |
1195 | w->name, ret); | |
1196 | } | |
1197 | } | |
1198 | ||
9d0624a7 MB |
1199 | /* Async callback run prior to DAPM sequences - brings to _PREPARE if |
1200 | * they're changing state. | |
1201 | */ | |
1202 | static void dapm_pre_sequence_async(void *data, async_cookie_t cookie) | |
1203 | { | |
1204 | struct snd_soc_dapm_context *d = data; | |
1205 | int ret; | |
1206 | ||
56fba41f MB |
1207 | /* If we're off and we're not supposed to be go into STANDBY */ |
1208 | if (d->bias_level == SND_SOC_BIAS_OFF && | |
1209 | d->target_bias_level != SND_SOC_BIAS_OFF) { | |
f1aac484 MB |
1210 | if (d->dev) |
1211 | pm_runtime_get_sync(d->dev); | |
1212 | ||
9d0624a7 MB |
1213 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY); |
1214 | if (ret != 0) | |
1215 | dev_err(d->dev, | |
1216 | "Failed to turn on bias: %d\n", ret); | |
1217 | } | |
1218 | ||
56fba41f MB |
1219 | /* Prepare for a STADDBY->ON or ON->STANDBY transition */ |
1220 | if (d->bias_level != d->target_bias_level) { | |
9d0624a7 MB |
1221 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE); |
1222 | if (ret != 0) | |
1223 | dev_err(d->dev, | |
1224 | "Failed to prepare bias: %d\n", ret); | |
1225 | } | |
1226 | } | |
1227 | ||
1228 | /* Async callback run prior to DAPM sequences - brings to their final | |
1229 | * state. | |
1230 | */ | |
1231 | static void dapm_post_sequence_async(void *data, async_cookie_t cookie) | |
1232 | { | |
1233 | struct snd_soc_dapm_context *d = data; | |
1234 | int ret; | |
1235 | ||
1236 | /* If we just powered the last thing off drop to standby bias */ | |
56fba41f MB |
1237 | if (d->bias_level == SND_SOC_BIAS_PREPARE && |
1238 | (d->target_bias_level == SND_SOC_BIAS_STANDBY || | |
1239 | d->target_bias_level == SND_SOC_BIAS_OFF)) { | |
9d0624a7 MB |
1240 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY); |
1241 | if (ret != 0) | |
1242 | dev_err(d->dev, "Failed to apply standby bias: %d\n", | |
1243 | ret); | |
1244 | } | |
97404f2e | 1245 | |
9d0624a7 | 1246 | /* If we're in standby and can support bias off then do that */ |
56fba41f MB |
1247 | if (d->bias_level == SND_SOC_BIAS_STANDBY && |
1248 | d->target_bias_level == SND_SOC_BIAS_OFF) { | |
9d0624a7 MB |
1249 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF); |
1250 | if (ret != 0) | |
1251 | dev_err(d->dev, "Failed to turn off bias: %d\n", ret); | |
f1aac484 MB |
1252 | |
1253 | if (d->dev) | |
1254 | pm_runtime_put_sync(d->dev); | |
9d0624a7 MB |
1255 | } |
1256 | ||
1257 | /* If we just powered up then move to active bias */ | |
56fba41f MB |
1258 | if (d->bias_level == SND_SOC_BIAS_PREPARE && |
1259 | d->target_bias_level == SND_SOC_BIAS_ON) { | |
9d0624a7 MB |
1260 | ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON); |
1261 | if (ret != 0) | |
1262 | dev_err(d->dev, "Failed to apply active bias: %d\n", | |
1263 | ret); | |
1264 | } | |
1265 | } | |
97404f2e | 1266 | |
fe4fda5d MB |
1267 | static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer, |
1268 | bool power, bool connect) | |
1269 | { | |
1270 | /* If a connection is being made or broken then that update | |
1271 | * will have marked the peer dirty, otherwise the widgets are | |
1272 | * not connected and this update has no impact. */ | |
1273 | if (!connect) | |
1274 | return; | |
1275 | ||
1276 | /* If the peer is already in the state we're moving to then we | |
1277 | * won't have an impact on it. */ | |
1278 | if (power != peer->power) | |
75c1f891 | 1279 | dapm_mark_dirty(peer, "peer state change"); |
fe4fda5d MB |
1280 | } |
1281 | ||
05623c43 MB |
1282 | static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power, |
1283 | struct list_head *up_list, | |
1284 | struct list_head *down_list) | |
1285 | { | |
db432b41 MB |
1286 | struct snd_soc_dapm_path *path; |
1287 | ||
05623c43 MB |
1288 | if (w->power == power) |
1289 | return; | |
1290 | ||
1291 | trace_snd_soc_dapm_widget_power(w, power); | |
1292 | ||
db432b41 | 1293 | /* If we changed our power state perhaps our neigbours changed |
fe4fda5d | 1294 | * also. |
db432b41 MB |
1295 | */ |
1296 | list_for_each_entry(path, &w->sources, list_sink) { | |
1297 | if (path->source) { | |
fe4fda5d MB |
1298 | dapm_widget_set_peer_power(path->source, power, |
1299 | path->connect); | |
db432b41 MB |
1300 | } |
1301 | } | |
f3bf3e45 MB |
1302 | switch (w->id) { |
1303 | case snd_soc_dapm_supply: | |
1304 | /* Supplies can't affect their outputs, only their inputs */ | |
1305 | break; | |
1306 | default: | |
1307 | list_for_each_entry(path, &w->sinks, list_source) { | |
1308 | if (path->sink) { | |
1309 | dapm_widget_set_peer_power(path->sink, power, | |
1310 | path->connect); | |
1311 | } | |
db432b41 | 1312 | } |
f3bf3e45 | 1313 | break; |
db432b41 MB |
1314 | } |
1315 | ||
05623c43 MB |
1316 | if (power) |
1317 | dapm_seq_insert(w, up_list, true); | |
1318 | else | |
1319 | dapm_seq_insert(w, down_list, false); | |
1320 | ||
1321 | w->power = power; | |
1322 | } | |
1323 | ||
7c81beb0 MB |
1324 | static void dapm_power_one_widget(struct snd_soc_dapm_widget *w, |
1325 | struct list_head *up_list, | |
1326 | struct list_head *down_list) | |
1327 | { | |
7c81beb0 MB |
1328 | int power; |
1329 | ||
1330 | switch (w->id) { | |
1331 | case snd_soc_dapm_pre: | |
1332 | dapm_seq_insert(w, down_list, false); | |
1333 | break; | |
1334 | case snd_soc_dapm_post: | |
1335 | dapm_seq_insert(w, up_list, true); | |
1336 | break; | |
1337 | ||
1338 | default: | |
d805002b | 1339 | power = dapm_widget_power_check(w); |
7c81beb0 | 1340 | |
05623c43 | 1341 | dapm_widget_set_power(w, power, up_list, down_list); |
7c81beb0 MB |
1342 | break; |
1343 | } | |
1344 | } | |
1345 | ||
2b97eabc RP |
1346 | /* |
1347 | * Scan each dapm widget for complete audio path. | |
1348 | * A complete path is a route that has valid endpoints i.e.:- | |
1349 | * | |
1350 | * o DAC to output pin. | |
1351 | * o Input Pin to ADC. | |
1352 | * o Input pin to Output pin (bypass, sidetone) | |
1353 | * o DAC to ADC (loopback). | |
1354 | */ | |
ce6120cc | 1355 | static int dapm_power_widgets(struct snd_soc_dapm_context *dapm, int event) |
2b97eabc | 1356 | { |
12ea2c78 | 1357 | struct snd_soc_card *card = dapm->card; |
2b97eabc | 1358 | struct snd_soc_dapm_widget *w; |
7be31be8 | 1359 | struct snd_soc_dapm_context *d; |
291f3bbc MB |
1360 | LIST_HEAD(up_list); |
1361 | LIST_HEAD(down_list); | |
9d0624a7 | 1362 | LIST_HEAD(async_domain); |
56fba41f | 1363 | enum snd_soc_bias_level bias; |
6d3ddc81 | 1364 | |
84e90930 MB |
1365 | trace_snd_soc_dapm_start(card); |
1366 | ||
56fba41f MB |
1367 | list_for_each_entry(d, &card->dapm_list, list) { |
1368 | if (d->n_widgets || d->codec == NULL) { | |
1369 | if (d->idle_bias_off) | |
1370 | d->target_bias_level = SND_SOC_BIAS_OFF; | |
1371 | else | |
1372 | d->target_bias_level = SND_SOC_BIAS_STANDBY; | |
1373 | } | |
1374 | } | |
7be31be8 | 1375 | |
de02d078 MB |
1376 | memset(&card->dapm_stats, 0, sizeof(card->dapm_stats)); |
1377 | ||
9b8a83b2 MB |
1378 | list_for_each_entry(w, &card->widgets, list) { |
1379 | w->power_checked = false; | |
024dc078 MB |
1380 | w->inputs = -1; |
1381 | w->outputs = -1; | |
9b8a83b2 MB |
1382 | } |
1383 | ||
6d3ddc81 | 1384 | /* Check which widgets we need to power and store them in |
db432b41 MB |
1385 | * lists indicating if they should be powered up or down. We |
1386 | * only check widgets that have been flagged as dirty but note | |
1387 | * that new widgets may be added to the dirty list while we | |
1388 | * iterate. | |
6d3ddc81 | 1389 | */ |
db432b41 | 1390 | list_for_each_entry(w, &card->dapm_dirty, dirty) { |
7c81beb0 | 1391 | dapm_power_one_widget(w, &up_list, &down_list); |
2b97eabc RP |
1392 | } |
1393 | ||
f9de6d74 | 1394 | list_for_each_entry(w, &card->widgets, list) { |
db432b41 MB |
1395 | list_del_init(&w->dirty); |
1396 | ||
f9de6d74 MB |
1397 | if (w->power) { |
1398 | d = w->dapm; | |
1399 | ||
1400 | /* Supplies and micbiases only bring the | |
1401 | * context up to STANDBY as unless something | |
1402 | * else is active and passing audio they | |
1403 | * generally don't require full power. | |
1404 | */ | |
1405 | switch (w->id) { | |
1406 | case snd_soc_dapm_supply: | |
1407 | case snd_soc_dapm_micbias: | |
1408 | if (d->target_bias_level < SND_SOC_BIAS_STANDBY) | |
1409 | d->target_bias_level = SND_SOC_BIAS_STANDBY; | |
1410 | break; | |
1411 | default: | |
1412 | d->target_bias_level = SND_SOC_BIAS_ON; | |
1413 | break; | |
1414 | } | |
1415 | } | |
1416 | ||
1417 | } | |
1418 | ||
b14b76a5 MB |
1419 | /* If there are no DAPM widgets then try to figure out power from the |
1420 | * event type. | |
1421 | */ | |
97c866de | 1422 | if (!dapm->n_widgets) { |
b14b76a5 MB |
1423 | switch (event) { |
1424 | case SND_SOC_DAPM_STREAM_START: | |
1425 | case SND_SOC_DAPM_STREAM_RESUME: | |
56fba41f | 1426 | dapm->target_bias_level = SND_SOC_BIAS_ON; |
b14b76a5 | 1427 | break; |
862af8ad | 1428 | case SND_SOC_DAPM_STREAM_STOP: |
e7c80e2a | 1429 | if (dapm->codec && dapm->codec->active) |
56fba41f MB |
1430 | dapm->target_bias_level = SND_SOC_BIAS_ON; |
1431 | else | |
1432 | dapm->target_bias_level = SND_SOC_BIAS_STANDBY; | |
862af8ad | 1433 | break; |
50b6bce5 | 1434 | case SND_SOC_DAPM_STREAM_SUSPEND: |
56fba41f | 1435 | dapm->target_bias_level = SND_SOC_BIAS_STANDBY; |
50b6bce5 | 1436 | break; |
b14b76a5 | 1437 | case SND_SOC_DAPM_STREAM_NOP: |
56fba41f | 1438 | dapm->target_bias_level = dapm->bias_level; |
50b6bce5 | 1439 | break; |
b14b76a5 MB |
1440 | default: |
1441 | break; | |
1442 | } | |
1443 | } | |
1444 | ||
85a843c5 MB |
1445 | /* Force all contexts in the card to the same bias state if |
1446 | * they're not ground referenced. | |
1447 | */ | |
56fba41f | 1448 | bias = SND_SOC_BIAS_OFF; |
52ba67bf | 1449 | list_for_each_entry(d, &card->dapm_list, list) |
56fba41f MB |
1450 | if (d->target_bias_level > bias) |
1451 | bias = d->target_bias_level; | |
52ba67bf | 1452 | list_for_each_entry(d, &card->dapm_list, list) |
85a843c5 MB |
1453 | if (!d->idle_bias_off) |
1454 | d->target_bias_level = bias; | |
52ba67bf | 1455 | |
de02d078 | 1456 | trace_snd_soc_dapm_walk_done(card); |
52ba67bf | 1457 | |
9d0624a7 MB |
1458 | /* Run all the bias changes in parallel */ |
1459 | list_for_each_entry(d, &dapm->card->dapm_list, list) | |
1460 | async_schedule_domain(dapm_pre_sequence_async, d, | |
1461 | &async_domain); | |
1462 | async_synchronize_full_domain(&async_domain); | |
452c5eaa | 1463 | |
6d3ddc81 | 1464 | /* Power down widgets first; try to avoid amplifying pops. */ |
828a842f | 1465 | dapm_seq_run(dapm, &down_list, event, false); |
2b97eabc | 1466 | |
97404f2e MB |
1467 | dapm_widget_update(dapm); |
1468 | ||
6d3ddc81 | 1469 | /* Now power up. */ |
828a842f | 1470 | dapm_seq_run(dapm, &up_list, event, true); |
2b97eabc | 1471 | |
9d0624a7 MB |
1472 | /* Run all the bias changes in parallel */ |
1473 | list_for_each_entry(d, &dapm->card->dapm_list, list) | |
1474 | async_schedule_domain(dapm_post_sequence_async, d, | |
1475 | &async_domain); | |
1476 | async_synchronize_full_domain(&async_domain); | |
452c5eaa | 1477 | |
fd8d3bc0 JN |
1478 | pop_dbg(dapm->dev, card->pop_time, |
1479 | "DAPM sequencing finished, waiting %dms\n", card->pop_time); | |
3a45b867 | 1480 | pop_wait(card->pop_time); |
cb507e7e | 1481 | |
84e90930 MB |
1482 | trace_snd_soc_dapm_done(card); |
1483 | ||
42aa3418 | 1484 | return 0; |
2b97eabc RP |
1485 | } |
1486 | ||
79fb9387 MB |
1487 | #ifdef CONFIG_DEBUG_FS |
1488 | static int dapm_widget_power_open_file(struct inode *inode, struct file *file) | |
1489 | { | |
1490 | file->private_data = inode->i_private; | |
1491 | return 0; | |
1492 | } | |
1493 | ||
1494 | static ssize_t dapm_widget_power_read_file(struct file *file, | |
1495 | char __user *user_buf, | |
1496 | size_t count, loff_t *ppos) | |
1497 | { | |
1498 | struct snd_soc_dapm_widget *w = file->private_data; | |
1499 | char *buf; | |
1500 | int in, out; | |
1501 | ssize_t ret; | |
1502 | struct snd_soc_dapm_path *p = NULL; | |
1503 | ||
1504 | buf = kmalloc(PAGE_SIZE, GFP_KERNEL); | |
1505 | if (!buf) | |
1506 | return -ENOMEM; | |
1507 | ||
1508 | in = is_connected_input_ep(w); | |
ce6120cc | 1509 | dapm_clear_walk(w->dapm); |
79fb9387 | 1510 | out = is_connected_output_ep(w); |
ce6120cc | 1511 | dapm_clear_walk(w->dapm); |
79fb9387 | 1512 | |
d033c36a | 1513 | ret = snprintf(buf, PAGE_SIZE, "%s: %s in %d out %d", |
79fb9387 MB |
1514 | w->name, w->power ? "On" : "Off", in, out); |
1515 | ||
d033c36a MB |
1516 | if (w->reg >= 0) |
1517 | ret += snprintf(buf + ret, PAGE_SIZE - ret, | |
1518 | " - R%d(0x%x) bit %d", | |
1519 | w->reg, w->reg, w->shift); | |
1520 | ||
1521 | ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n"); | |
1522 | ||
3eef08ba MB |
1523 | if (w->sname) |
1524 | ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n", | |
1525 | w->sname, | |
1526 | w->active ? "active" : "inactive"); | |
79fb9387 MB |
1527 | |
1528 | list_for_each_entry(p, &w->sources, list_sink) { | |
215edda3 MB |
1529 | if (p->connected && !p->connected(w, p->sink)) |
1530 | continue; | |
1531 | ||
79fb9387 MB |
1532 | if (p->connect) |
1533 | ret += snprintf(buf + ret, PAGE_SIZE - ret, | |
67f5ed6e | 1534 | " in \"%s\" \"%s\"\n", |
79fb9387 MB |
1535 | p->name ? p->name : "static", |
1536 | p->source->name); | |
1537 | } | |
1538 | list_for_each_entry(p, &w->sinks, list_source) { | |
215edda3 MB |
1539 | if (p->connected && !p->connected(w, p->sink)) |
1540 | continue; | |
1541 | ||
79fb9387 MB |
1542 | if (p->connect) |
1543 | ret += snprintf(buf + ret, PAGE_SIZE - ret, | |
67f5ed6e | 1544 | " out \"%s\" \"%s\"\n", |
79fb9387 MB |
1545 | p->name ? p->name : "static", |
1546 | p->sink->name); | |
1547 | } | |
1548 | ||
1549 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); | |
1550 | ||
1551 | kfree(buf); | |
1552 | return ret; | |
1553 | } | |
1554 | ||
1555 | static const struct file_operations dapm_widget_power_fops = { | |
1556 | .open = dapm_widget_power_open_file, | |
1557 | .read = dapm_widget_power_read_file, | |
6038f373 | 1558 | .llseek = default_llseek, |
79fb9387 MB |
1559 | }; |
1560 | ||
ef49e4fa MB |
1561 | static int dapm_bias_open_file(struct inode *inode, struct file *file) |
1562 | { | |
1563 | file->private_data = inode->i_private; | |
1564 | return 0; | |
1565 | } | |
1566 | ||
1567 | static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf, | |
1568 | size_t count, loff_t *ppos) | |
1569 | { | |
1570 | struct snd_soc_dapm_context *dapm = file->private_data; | |
1571 | char *level; | |
1572 | ||
1573 | switch (dapm->bias_level) { | |
1574 | case SND_SOC_BIAS_ON: | |
1575 | level = "On\n"; | |
1576 | break; | |
1577 | case SND_SOC_BIAS_PREPARE: | |
1578 | level = "Prepare\n"; | |
1579 | break; | |
1580 | case SND_SOC_BIAS_STANDBY: | |
1581 | level = "Standby\n"; | |
1582 | break; | |
1583 | case SND_SOC_BIAS_OFF: | |
1584 | level = "Off\n"; | |
1585 | break; | |
1586 | default: | |
1587 | BUG(); | |
1588 | level = "Unknown\n"; | |
1589 | break; | |
1590 | } | |
1591 | ||
1592 | return simple_read_from_buffer(user_buf, count, ppos, level, | |
1593 | strlen(level)); | |
1594 | } | |
1595 | ||
1596 | static const struct file_operations dapm_bias_fops = { | |
1597 | .open = dapm_bias_open_file, | |
1598 | .read = dapm_bias_read_file, | |
1599 | .llseek = default_llseek, | |
1600 | }; | |
1601 | ||
8eecaf62 LPC |
1602 | void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm, |
1603 | struct dentry *parent) | |
79fb9387 | 1604 | { |
79fb9387 MB |
1605 | struct dentry *d; |
1606 | ||
8eecaf62 LPC |
1607 | dapm->debugfs_dapm = debugfs_create_dir("dapm", parent); |
1608 | ||
1609 | if (!dapm->debugfs_dapm) { | |
1610 | printk(KERN_WARNING | |
1611 | "Failed to create DAPM debugfs directory\n"); | |
79fb9387 | 1612 | return; |
8eecaf62 | 1613 | } |
79fb9387 | 1614 | |
ef49e4fa MB |
1615 | d = debugfs_create_file("bias_level", 0444, |
1616 | dapm->debugfs_dapm, dapm, | |
1617 | &dapm_bias_fops); | |
1618 | if (!d) | |
1619 | dev_warn(dapm->dev, | |
1620 | "ASoC: Failed to create bias level debugfs file\n"); | |
d5d1e0be | 1621 | } |
ef49e4fa | 1622 | |
d5d1e0be LPC |
1623 | static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w) |
1624 | { | |
1625 | struct snd_soc_dapm_context *dapm = w->dapm; | |
1626 | struct dentry *d; | |
79fb9387 | 1627 | |
d5d1e0be LPC |
1628 | if (!dapm->debugfs_dapm || !w->name) |
1629 | return; | |
1630 | ||
1631 | d = debugfs_create_file(w->name, 0444, | |
1632 | dapm->debugfs_dapm, w, | |
1633 | &dapm_widget_power_fops); | |
1634 | if (!d) | |
1635 | dev_warn(w->dapm->dev, | |
1636 | "ASoC: Failed to create %s debugfs file\n", | |
1637 | w->name); | |
79fb9387 | 1638 | } |
d5d1e0be | 1639 | |
6c45e126 LPC |
1640 | static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm) |
1641 | { | |
1642 | debugfs_remove_recursive(dapm->debugfs_dapm); | |
1643 | } | |
1644 | ||
79fb9387 | 1645 | #else |
8eecaf62 LPC |
1646 | void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm, |
1647 | struct dentry *parent) | |
79fb9387 MB |
1648 | { |
1649 | } | |
d5d1e0be LPC |
1650 | |
1651 | static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w) | |
1652 | { | |
1653 | } | |
1654 | ||
6c45e126 LPC |
1655 | static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm) |
1656 | { | |
1657 | } | |
1658 | ||
79fb9387 MB |
1659 | #endif |
1660 | ||
2b97eabc | 1661 | /* test and update the power status of a mux widget */ |
d9c96cf3 | 1662 | static int dapm_mux_update_power(struct snd_soc_dapm_widget *widget, |
3a65577d MB |
1663 | struct snd_kcontrol *kcontrol, int change, |
1664 | int mux, struct soc_enum *e) | |
2b97eabc RP |
1665 | { |
1666 | struct snd_soc_dapm_path *path; | |
1667 | int found = 0; | |
1668 | ||
eff317d0 | 1669 | if (widget->id != snd_soc_dapm_mux && |
24ff33ac | 1670 | widget->id != snd_soc_dapm_virt_mux && |
eff317d0 | 1671 | widget->id != snd_soc_dapm_value_mux) |
2b97eabc RP |
1672 | return -ENODEV; |
1673 | ||
3a65577d | 1674 | if (!change) |
2b97eabc RP |
1675 | return 0; |
1676 | ||
1677 | /* find dapm widget path assoc with kcontrol */ | |
8ddab3f5 | 1678 | list_for_each_entry(path, &widget->dapm->card->paths, list) { |
2b97eabc RP |
1679 | if (path->kcontrol != kcontrol) |
1680 | continue; | |
1681 | ||
cb01e2b9 | 1682 | if (!path->name || !e->texts[mux]) |
2b97eabc RP |
1683 | continue; |
1684 | ||
1685 | found = 1; | |
1686 | /* we now need to match the string in the enum to the path */ | |
db432b41 | 1687 | if (!(strcmp(path->name, e->texts[mux]))) { |
2b97eabc | 1688 | path->connect = 1; /* new connection */ |
75c1f891 | 1689 | dapm_mark_dirty(path->source, "mux connection"); |
db432b41 MB |
1690 | } else { |
1691 | if (path->connect) | |
75c1f891 MB |
1692 | dapm_mark_dirty(path->source, |
1693 | "mux disconnection"); | |
2b97eabc | 1694 | path->connect = 0; /* old connection must be powered down */ |
db432b41 | 1695 | } |
2b97eabc RP |
1696 | } |
1697 | ||
db432b41 | 1698 | if (found) { |
75c1f891 | 1699 | dapm_mark_dirty(widget, "mux change"); |
ce6120cc | 1700 | dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP); |
db432b41 | 1701 | } |
2b97eabc RP |
1702 | |
1703 | return 0; | |
1704 | } | |
2b97eabc | 1705 | |
1b075e3f | 1706 | /* test and update the power status of a mixer or switch widget */ |
d9c96cf3 | 1707 | static int dapm_mixer_update_power(struct snd_soc_dapm_widget *widget, |
283375ce | 1708 | struct snd_kcontrol *kcontrol, int connect) |
2b97eabc RP |
1709 | { |
1710 | struct snd_soc_dapm_path *path; | |
1711 | int found = 0; | |
1712 | ||
1b075e3f | 1713 | if (widget->id != snd_soc_dapm_mixer && |
ca9c1aae | 1714 | widget->id != snd_soc_dapm_mixer_named_ctl && |
1b075e3f | 1715 | widget->id != snd_soc_dapm_switch) |
2b97eabc RP |
1716 | return -ENODEV; |
1717 | ||
2b97eabc | 1718 | /* find dapm widget path assoc with kcontrol */ |
8ddab3f5 | 1719 | list_for_each_entry(path, &widget->dapm->card->paths, list) { |
2b97eabc RP |
1720 | if (path->kcontrol != kcontrol) |
1721 | continue; | |
1722 | ||
1723 | /* found, now check type */ | |
1724 | found = 1; | |
283375ce | 1725 | path->connect = connect; |
75c1f891 | 1726 | dapm_mark_dirty(path->source, "mixer connection"); |
2b97eabc RP |
1727 | } |
1728 | ||
db432b41 | 1729 | if (found) { |
75c1f891 | 1730 | dapm_mark_dirty(widget, "mixer update"); |
ce6120cc | 1731 | dapm_power_widgets(widget->dapm, SND_SOC_DAPM_STREAM_NOP); |
db432b41 | 1732 | } |
2b97eabc RP |
1733 | |
1734 | return 0; | |
1735 | } | |
2b97eabc RP |
1736 | |
1737 | /* show dapm widget status in sys fs */ | |
1738 | static ssize_t dapm_widget_show(struct device *dev, | |
1739 | struct device_attribute *attr, char *buf) | |
1740 | { | |
36ae1a96 | 1741 | struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev); |
f0fba2ad | 1742 | struct snd_soc_codec *codec =rtd->codec; |
2b97eabc RP |
1743 | struct snd_soc_dapm_widget *w; |
1744 | int count = 0; | |
1745 | char *state = "not set"; | |
1746 | ||
97c866de JN |
1747 | list_for_each_entry(w, &codec->card->widgets, list) { |
1748 | if (w->dapm != &codec->dapm) | |
1749 | continue; | |
2b97eabc RP |
1750 | |
1751 | /* only display widgets that burnm power */ | |
1752 | switch (w->id) { | |
1753 | case snd_soc_dapm_hp: | |
1754 | case snd_soc_dapm_mic: | |
1755 | case snd_soc_dapm_spk: | |
1756 | case snd_soc_dapm_line: | |
1757 | case snd_soc_dapm_micbias: | |
1758 | case snd_soc_dapm_dac: | |
1759 | case snd_soc_dapm_adc: | |
1760 | case snd_soc_dapm_pga: | |
d88429a6 | 1761 | case snd_soc_dapm_out_drv: |
2b97eabc | 1762 | case snd_soc_dapm_mixer: |
ca9c1aae | 1763 | case snd_soc_dapm_mixer_named_ctl: |
246d0a17 | 1764 | case snd_soc_dapm_supply: |
2b97eabc RP |
1765 | if (w->name) |
1766 | count += sprintf(buf + count, "%s: %s\n", | |
1767 | w->name, w->power ? "On":"Off"); | |
1768 | break; | |
1769 | default: | |
1770 | break; | |
1771 | } | |
1772 | } | |
1773 | ||
ce6120cc | 1774 | switch (codec->dapm.bias_level) { |
0be9898a MB |
1775 | case SND_SOC_BIAS_ON: |
1776 | state = "On"; | |
2b97eabc | 1777 | break; |
0be9898a MB |
1778 | case SND_SOC_BIAS_PREPARE: |
1779 | state = "Prepare"; | |
2b97eabc | 1780 | break; |
0be9898a MB |
1781 | case SND_SOC_BIAS_STANDBY: |
1782 | state = "Standby"; | |
2b97eabc | 1783 | break; |
0be9898a MB |
1784 | case SND_SOC_BIAS_OFF: |
1785 | state = "Off"; | |
2b97eabc RP |
1786 | break; |
1787 | } | |
1788 | count += sprintf(buf + count, "PM State: %s\n", state); | |
1789 | ||
1790 | return count; | |
1791 | } | |
1792 | ||
1793 | static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL); | |
1794 | ||
1795 | int snd_soc_dapm_sys_add(struct device *dev) | |
1796 | { | |
12ef193d | 1797 | return device_create_file(dev, &dev_attr_dapm_widget); |
2b97eabc RP |
1798 | } |
1799 | ||
1800 | static void snd_soc_dapm_sys_remove(struct device *dev) | |
1801 | { | |
aef90843 | 1802 | device_remove_file(dev, &dev_attr_dapm_widget); |
2b97eabc RP |
1803 | } |
1804 | ||
1805 | /* free all dapm widgets and resources */ | |
ce6120cc | 1806 | static void dapm_free_widgets(struct snd_soc_dapm_context *dapm) |
2b97eabc RP |
1807 | { |
1808 | struct snd_soc_dapm_widget *w, *next_w; | |
1809 | struct snd_soc_dapm_path *p, *next_p; | |
1810 | ||
97c866de JN |
1811 | list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) { |
1812 | if (w->dapm != dapm) | |
1813 | continue; | |
2b97eabc | 1814 | list_del(&w->list); |
8ddab3f5 JN |
1815 | /* |
1816 | * remove source and sink paths associated to this widget. | |
1817 | * While removing the path, remove reference to it from both | |
1818 | * source and sink widgets so that path is removed only once. | |
1819 | */ | |
1820 | list_for_each_entry_safe(p, next_p, &w->sources, list_sink) { | |
1821 | list_del(&p->list_sink); | |
1822 | list_del(&p->list_source); | |
1823 | list_del(&p->list); | |
1824 | kfree(p->long_name); | |
1825 | kfree(p); | |
1826 | } | |
1827 | list_for_each_entry_safe(p, next_p, &w->sinks, list_source) { | |
1828 | list_del(&p->list_sink); | |
1829 | list_del(&p->list_source); | |
1830 | list_del(&p->list); | |
1831 | kfree(p->long_name); | |
1832 | kfree(p); | |
1833 | } | |
fad59888 | 1834 | kfree(w->kcontrols); |
ead9b919 | 1835 | kfree(w->name); |
2b97eabc RP |
1836 | kfree(w); |
1837 | } | |
2b97eabc RP |
1838 | } |
1839 | ||
91a5fca4 LPC |
1840 | static struct snd_soc_dapm_widget *dapm_find_widget( |
1841 | struct snd_soc_dapm_context *dapm, const char *pin, | |
1842 | bool search_other_contexts) | |
a5302181 LG |
1843 | { |
1844 | struct snd_soc_dapm_widget *w; | |
91a5fca4 | 1845 | struct snd_soc_dapm_widget *fallback = NULL; |
a5302181 | 1846 | |
97c866de | 1847 | list_for_each_entry(w, &dapm->card->widgets, list) { |
a5302181 | 1848 | if (!strcmp(w->name, pin)) { |
91a5fca4 LPC |
1849 | if (w->dapm == dapm) |
1850 | return w; | |
1851 | else | |
1852 | fallback = w; | |
a5302181 LG |
1853 | } |
1854 | } | |
1855 | ||
91a5fca4 LPC |
1856 | if (search_other_contexts) |
1857 | return fallback; | |
1858 | ||
1859 | return NULL; | |
1860 | } | |
1861 | ||
1862 | static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm, | |
1863 | const char *pin, int status) | |
1864 | { | |
1865 | struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true); | |
1866 | ||
1867 | if (!w) { | |
1868 | dev_err(dapm->dev, "dapm: unknown pin %s\n", pin); | |
1869 | return -EINVAL; | |
0d86733c MB |
1870 | } |
1871 | ||
91a5fca4 LPC |
1872 | w->connected = status; |
1873 | if (status == 0) | |
1874 | w->force = 0; | |
75c1f891 | 1875 | dapm_mark_dirty(w, "pin configuration"); |
91a5fca4 LPC |
1876 | |
1877 | return 0; | |
a5302181 LG |
1878 | } |
1879 | ||
2b97eabc | 1880 | /** |
a5302181 | 1881 | * snd_soc_dapm_sync - scan and power dapm paths |
ce6120cc | 1882 | * @dapm: DAPM context |
2b97eabc RP |
1883 | * |
1884 | * Walks all dapm audio paths and powers widgets according to their | |
1885 | * stream or path usage. | |
1886 | * | |
1887 | * Returns 0 for success. | |
1888 | */ | |
ce6120cc | 1889 | int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm) |
2b97eabc | 1890 | { |
4f4c0072 MB |
1891 | /* |
1892 | * Suppress early reports (eg, jacks syncing their state) to avoid | |
1893 | * silly DAPM runs during card startup. | |
1894 | */ | |
1895 | if (!dapm->card || !dapm->card->instantiated) | |
1896 | return 0; | |
1897 | ||
ce6120cc | 1898 | return dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP); |
2b97eabc | 1899 | } |
a5302181 | 1900 | EXPORT_SYMBOL_GPL(snd_soc_dapm_sync); |
2b97eabc | 1901 | |
ce6120cc | 1902 | static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm, |
215edda3 | 1903 | const struct snd_soc_dapm_route *route) |
2b97eabc RP |
1904 | { |
1905 | struct snd_soc_dapm_path *path; | |
1906 | struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w; | |
97c866de | 1907 | struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL; |
ead9b919 | 1908 | const char *sink; |
215edda3 | 1909 | const char *control = route->control; |
ead9b919 JN |
1910 | const char *source; |
1911 | char prefixed_sink[80]; | |
1912 | char prefixed_source[80]; | |
2b97eabc RP |
1913 | int ret = 0; |
1914 | ||
88e8b9a8 | 1915 | if (dapm->codec && dapm->codec->name_prefix) { |
ead9b919 JN |
1916 | snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s", |
1917 | dapm->codec->name_prefix, route->sink); | |
1918 | sink = prefixed_sink; | |
1919 | snprintf(prefixed_source, sizeof(prefixed_source), "%s %s", | |
1920 | dapm->codec->name_prefix, route->source); | |
1921 | source = prefixed_source; | |
1922 | } else { | |
1923 | sink = route->sink; | |
1924 | source = route->source; | |
1925 | } | |
1926 | ||
97c866de JN |
1927 | /* |
1928 | * find src and dest widgets over all widgets but favor a widget from | |
1929 | * current DAPM context | |
1930 | */ | |
1931 | list_for_each_entry(w, &dapm->card->widgets, list) { | |
2b97eabc | 1932 | if (!wsink && !(strcmp(w->name, sink))) { |
97c866de JN |
1933 | wtsink = w; |
1934 | if (w->dapm == dapm) | |
1935 | wsink = w; | |
2b97eabc RP |
1936 | continue; |
1937 | } | |
1938 | if (!wsource && !(strcmp(w->name, source))) { | |
97c866de JN |
1939 | wtsource = w; |
1940 | if (w->dapm == dapm) | |
1941 | wsource = w; | |
2b97eabc RP |
1942 | } |
1943 | } | |
97c866de JN |
1944 | /* use widget from another DAPM context if not found from this */ |
1945 | if (!wsink) | |
1946 | wsink = wtsink; | |
1947 | if (!wsource) | |
1948 | wsource = wtsource; | |
2b97eabc RP |
1949 | |
1950 | if (wsource == NULL || wsink == NULL) | |
1951 | return -ENODEV; | |
1952 | ||
1953 | path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL); | |
1954 | if (!path) | |
1955 | return -ENOMEM; | |
1956 | ||
1957 | path->source = wsource; | |
1958 | path->sink = wsink; | |
215edda3 | 1959 | path->connected = route->connected; |
2b97eabc RP |
1960 | INIT_LIST_HEAD(&path->list); |
1961 | INIT_LIST_HEAD(&path->list_source); | |
1962 | INIT_LIST_HEAD(&path->list_sink); | |
1963 | ||
1964 | /* check for external widgets */ | |
1965 | if (wsink->id == snd_soc_dapm_input) { | |
1966 | if (wsource->id == snd_soc_dapm_micbias || | |
1967 | wsource->id == snd_soc_dapm_mic || | |
087d53ab RC |
1968 | wsource->id == snd_soc_dapm_line || |
1969 | wsource->id == snd_soc_dapm_output) | |
2b97eabc RP |
1970 | wsink->ext = 1; |
1971 | } | |
1972 | if (wsource->id == snd_soc_dapm_output) { | |
1973 | if (wsink->id == snd_soc_dapm_spk || | |
1974 | wsink->id == snd_soc_dapm_hp || | |
1e39221e SF |
1975 | wsink->id == snd_soc_dapm_line || |
1976 | wsink->id == snd_soc_dapm_input) | |
2b97eabc RP |
1977 | wsource->ext = 1; |
1978 | } | |
1979 | ||
1980 | /* connect static paths */ | |
1981 | if (control == NULL) { | |
8ddab3f5 | 1982 | list_add(&path->list, &dapm->card->paths); |
2b97eabc RP |
1983 | list_add(&path->list_sink, &wsink->sources); |
1984 | list_add(&path->list_source, &wsource->sinks); | |
1985 | path->connect = 1; | |
1986 | return 0; | |
1987 | } | |
1988 | ||
1989 | /* connect dynamic paths */ | |
dc2bea61 | 1990 | switch (wsink->id) { |
2b97eabc RP |
1991 | case snd_soc_dapm_adc: |
1992 | case snd_soc_dapm_dac: | |
1993 | case snd_soc_dapm_pga: | |
d88429a6 | 1994 | case snd_soc_dapm_out_drv: |
2b97eabc RP |
1995 | case snd_soc_dapm_input: |
1996 | case snd_soc_dapm_output: | |
1ab97c8c | 1997 | case snd_soc_dapm_siggen: |
2b97eabc RP |
1998 | case snd_soc_dapm_micbias: |
1999 | case snd_soc_dapm_vmid: | |
2000 | case snd_soc_dapm_pre: | |
2001 | case snd_soc_dapm_post: | |
246d0a17 | 2002 | case snd_soc_dapm_supply: |
010ff262 MB |
2003 | case snd_soc_dapm_aif_in: |
2004 | case snd_soc_dapm_aif_out: | |
8ddab3f5 | 2005 | list_add(&path->list, &dapm->card->paths); |
2b97eabc RP |
2006 | list_add(&path->list_sink, &wsink->sources); |
2007 | list_add(&path->list_source, &wsource->sinks); | |
2008 | path->connect = 1; | |
2009 | return 0; | |
2010 | case snd_soc_dapm_mux: | |
24ff33ac | 2011 | case snd_soc_dapm_virt_mux: |
74155556 | 2012 | case snd_soc_dapm_value_mux: |
ce6120cc | 2013 | ret = dapm_connect_mux(dapm, wsource, wsink, path, control, |
82cfecdc | 2014 | &wsink->kcontrol_news[0]); |
2b97eabc RP |
2015 | if (ret != 0) |
2016 | goto err; | |
2017 | break; | |
2018 | case snd_soc_dapm_switch: | |
2019 | case snd_soc_dapm_mixer: | |
ca9c1aae | 2020 | case snd_soc_dapm_mixer_named_ctl: |
ce6120cc | 2021 | ret = dapm_connect_mixer(dapm, wsource, wsink, path, control); |
2b97eabc RP |
2022 | if (ret != 0) |
2023 | goto err; | |
2024 | break; | |
2025 | case snd_soc_dapm_hp: | |
2026 | case snd_soc_dapm_mic: | |
2027 | case snd_soc_dapm_line: | |
2028 | case snd_soc_dapm_spk: | |
8ddab3f5 | 2029 | list_add(&path->list, &dapm->card->paths); |
2b97eabc RP |
2030 | list_add(&path->list_sink, &wsink->sources); |
2031 | list_add(&path->list_source, &wsource->sinks); | |
2032 | path->connect = 0; | |
2033 | return 0; | |
2034 | } | |
2035 | return 0; | |
2036 | ||
2037 | err: | |
f7d41ae8 JN |
2038 | dev_warn(dapm->dev, "asoc: no dapm match for %s --> %s --> %s\n", |
2039 | source, control, sink); | |
2b97eabc RP |
2040 | kfree(path); |
2041 | return ret; | |
2042 | } | |
105f1c28 | 2043 | |
105f1c28 MB |
2044 | /** |
2045 | * snd_soc_dapm_add_routes - Add routes between DAPM widgets | |
ce6120cc | 2046 | * @dapm: DAPM context |
105f1c28 MB |
2047 | * @route: audio routes |
2048 | * @num: number of routes | |
2049 | * | |
2050 | * Connects 2 dapm widgets together via a named audio path. The sink is | |
2051 | * the widget receiving the audio signal, whilst the source is the sender | |
2052 | * of the audio signal. | |
2053 | * | |
2054 | * Returns 0 for success else error. On error all resources can be freed | |
2055 | * with a call to snd_soc_card_free(). | |
2056 | */ | |
ce6120cc | 2057 | int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm, |
105f1c28 MB |
2058 | const struct snd_soc_dapm_route *route, int num) |
2059 | { | |
2060 | int i, ret; | |
2061 | ||
2062 | for (i = 0; i < num; i++) { | |
ce6120cc | 2063 | ret = snd_soc_dapm_add_route(dapm, route); |
105f1c28 | 2064 | if (ret < 0) { |
f7d41ae8 JN |
2065 | dev_err(dapm->dev, "Failed to add route %s->%s\n", |
2066 | route->source, route->sink); | |
105f1c28 MB |
2067 | return ret; |
2068 | } | |
2069 | route++; | |
2070 | } | |
2071 | ||
2072 | return 0; | |
2073 | } | |
2074 | EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes); | |
2075 | ||
bf3a9e13 MB |
2076 | static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm, |
2077 | const struct snd_soc_dapm_route *route) | |
2078 | { | |
2079 | struct snd_soc_dapm_widget *source = dapm_find_widget(dapm, | |
2080 | route->source, | |
2081 | true); | |
2082 | struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm, | |
2083 | route->sink, | |
2084 | true); | |
2085 | struct snd_soc_dapm_path *path; | |
2086 | int count = 0; | |
2087 | ||
2088 | if (!source) { | |
2089 | dev_err(dapm->dev, "Unable to find source %s for weak route\n", | |
2090 | route->source); | |
2091 | return -ENODEV; | |
2092 | } | |
2093 | ||
2094 | if (!sink) { | |
2095 | dev_err(dapm->dev, "Unable to find sink %s for weak route\n", | |
2096 | route->sink); | |
2097 | return -ENODEV; | |
2098 | } | |
2099 | ||
2100 | if (route->control || route->connected) | |
2101 | dev_warn(dapm->dev, "Ignoring control for weak route %s->%s\n", | |
2102 | route->source, route->sink); | |
2103 | ||
2104 | list_for_each_entry(path, &source->sinks, list_source) { | |
2105 | if (path->sink == sink) { | |
2106 | path->weak = 1; | |
2107 | count++; | |
2108 | } | |
2109 | } | |
2110 | ||
2111 | if (count == 0) | |
2112 | dev_err(dapm->dev, "No path found for weak route %s->%s\n", | |
2113 | route->source, route->sink); | |
2114 | if (count > 1) | |
2115 | dev_warn(dapm->dev, "%d paths found for weak route %s->%s\n", | |
2116 | count, route->source, route->sink); | |
2117 | ||
2118 | return 0; | |
2119 | } | |
2120 | ||
2121 | /** | |
2122 | * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak | |
2123 | * @dapm: DAPM context | |
2124 | * @route: audio routes | |
2125 | * @num: number of routes | |
2126 | * | |
2127 | * Mark existing routes matching those specified in the passed array | |
2128 | * as being weak, meaning that they are ignored for the purpose of | |
2129 | * power decisions. The main intended use case is for sidetone paths | |
2130 | * which couple audio between other independent paths if they are both | |
2131 | * active in order to make the combination work better at the user | |
2132 | * level but which aren't intended to be "used". | |
2133 | * | |
2134 | * Note that CODEC drivers should not use this as sidetone type paths | |
2135 | * can frequently also be used as bypass paths. | |
2136 | */ | |
2137 | int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm, | |
2138 | const struct snd_soc_dapm_route *route, int num) | |
2139 | { | |
2140 | int i, err; | |
2141 | int ret = 0; | |
2142 | ||
2143 | for (i = 0; i < num; i++) { | |
2144 | err = snd_soc_dapm_weak_route(dapm, route); | |
2145 | if (err) | |
2146 | ret = err; | |
2147 | route++; | |
2148 | } | |
2149 | ||
2150 | return ret; | |
2151 | } | |
2152 | EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes); | |
2153 | ||
2b97eabc RP |
2154 | /** |
2155 | * snd_soc_dapm_new_widgets - add new dapm widgets | |
ce6120cc | 2156 | * @dapm: DAPM context |
2b97eabc RP |
2157 | * |
2158 | * Checks the codec for any new dapm widgets and creates them if found. | |
2159 | * | |
2160 | * Returns 0 for success. | |
2161 | */ | |
ce6120cc | 2162 | int snd_soc_dapm_new_widgets(struct snd_soc_dapm_context *dapm) |
2b97eabc RP |
2163 | { |
2164 | struct snd_soc_dapm_widget *w; | |
b66a70d5 | 2165 | unsigned int val; |
2b97eabc | 2166 | |
97c866de | 2167 | list_for_each_entry(w, &dapm->card->widgets, list) |
2b97eabc RP |
2168 | { |
2169 | if (w->new) | |
2170 | continue; | |
2171 | ||
fad59888 SW |
2172 | if (w->num_kcontrols) { |
2173 | w->kcontrols = kzalloc(w->num_kcontrols * | |
2174 | sizeof(struct snd_kcontrol *), | |
2175 | GFP_KERNEL); | |
2176 | if (!w->kcontrols) | |
2177 | return -ENOMEM; | |
2178 | } | |
2179 | ||
2b97eabc RP |
2180 | switch(w->id) { |
2181 | case snd_soc_dapm_switch: | |
2182 | case snd_soc_dapm_mixer: | |
ca9c1aae | 2183 | case snd_soc_dapm_mixer_named_ctl: |
4b80b8c2 | 2184 | dapm_new_mixer(w); |
2b97eabc RP |
2185 | break; |
2186 | case snd_soc_dapm_mux: | |
24ff33ac | 2187 | case snd_soc_dapm_virt_mux: |
2e72f8e3 | 2188 | case snd_soc_dapm_value_mux: |
4b80b8c2 | 2189 | dapm_new_mux(w); |
2b97eabc | 2190 | break; |
2b97eabc | 2191 | case snd_soc_dapm_pga: |
d88429a6 | 2192 | case snd_soc_dapm_out_drv: |
4b80b8c2 | 2193 | dapm_new_pga(w); |
2b97eabc | 2194 | break; |
7ca3a18b | 2195 | default: |
2b97eabc RP |
2196 | break; |
2197 | } | |
b66a70d5 MB |
2198 | |
2199 | /* Read the initial power state from the device */ | |
2200 | if (w->reg >= 0) { | |
0445bdf4 | 2201 | val = soc_widget_read(w, w->reg); |
b66a70d5 MB |
2202 | val &= 1 << w->shift; |
2203 | if (w->invert) | |
2204 | val = !val; | |
2205 | ||
2206 | if (val) | |
2207 | w->power = 1; | |
2208 | } | |
2209 | ||
2b97eabc | 2210 | w->new = 1; |
d5d1e0be | 2211 | |
7508b12a | 2212 | dapm_mark_dirty(w, "new widget"); |
d5d1e0be | 2213 | dapm_debugfs_add_widget(w); |
2b97eabc RP |
2214 | } |
2215 | ||
ce6120cc | 2216 | dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP); |
2b97eabc RP |
2217 | return 0; |
2218 | } | |
2219 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets); | |
2220 | ||
2221 | /** | |
2222 | * snd_soc_dapm_get_volsw - dapm mixer get callback | |
2223 | * @kcontrol: mixer control | |
ac11a2b3 | 2224 | * @ucontrol: control element information |
2b97eabc RP |
2225 | * |
2226 | * Callback to get the value of a dapm mixer control. | |
2227 | * | |
2228 | * Returns 0 for success. | |
2229 | */ | |
2230 | int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol, | |
2231 | struct snd_ctl_elem_value *ucontrol) | |
2232 | { | |
fafd2176 SW |
2233 | struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol); |
2234 | struct snd_soc_dapm_widget *widget = wlist->widgets[0]; | |
4eaa9819 JS |
2235 | struct soc_mixer_control *mc = |
2236 | (struct soc_mixer_control *)kcontrol->private_value; | |
815ecf8d JS |
2237 | unsigned int reg = mc->reg; |
2238 | unsigned int shift = mc->shift; | |
2239 | unsigned int rshift = mc->rshift; | |
4eaa9819 | 2240 | int max = mc->max; |
815ecf8d JS |
2241 | unsigned int invert = mc->invert; |
2242 | unsigned int mask = (1 << fls(max)) - 1; | |
2b97eabc | 2243 | |
2b97eabc RP |
2244 | ucontrol->value.integer.value[0] = |
2245 | (snd_soc_read(widget->codec, reg) >> shift) & mask; | |
2246 | if (shift != rshift) | |
2247 | ucontrol->value.integer.value[1] = | |
2248 | (snd_soc_read(widget->codec, reg) >> rshift) & mask; | |
2249 | if (invert) { | |
2250 | ucontrol->value.integer.value[0] = | |
a7a4ac86 | 2251 | max - ucontrol->value.integer.value[0]; |
2b97eabc RP |
2252 | if (shift != rshift) |
2253 | ucontrol->value.integer.value[1] = | |
a7a4ac86 | 2254 | max - ucontrol->value.integer.value[1]; |
2b97eabc RP |
2255 | } |
2256 | ||
2257 | return 0; | |
2258 | } | |
2259 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw); | |
2260 | ||
2261 | /** | |
2262 | * snd_soc_dapm_put_volsw - dapm mixer set callback | |
2263 | * @kcontrol: mixer control | |
ac11a2b3 | 2264 | * @ucontrol: control element information |
2b97eabc RP |
2265 | * |
2266 | * Callback to set the value of a dapm mixer control. | |
2267 | * | |
2268 | * Returns 0 for success. | |
2269 | */ | |
2270 | int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol, | |
2271 | struct snd_ctl_elem_value *ucontrol) | |
2272 | { | |
fafd2176 SW |
2273 | struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol); |
2274 | struct snd_soc_dapm_widget *widget = wlist->widgets[0]; | |
2275 | struct snd_soc_codec *codec = widget->codec; | |
4eaa9819 JS |
2276 | struct soc_mixer_control *mc = |
2277 | (struct soc_mixer_control *)kcontrol->private_value; | |
815ecf8d JS |
2278 | unsigned int reg = mc->reg; |
2279 | unsigned int shift = mc->shift; | |
4eaa9819 | 2280 | int max = mc->max; |
815ecf8d JS |
2281 | unsigned int mask = (1 << fls(max)) - 1; |
2282 | unsigned int invert = mc->invert; | |
e9cf7049 | 2283 | unsigned int val; |
97404f2e MB |
2284 | int connect, change; |
2285 | struct snd_soc_dapm_update update; | |
fafd2176 | 2286 | int wi; |
2b97eabc RP |
2287 | |
2288 | val = (ucontrol->value.integer.value[0] & mask); | |
2289 | ||
2290 | if (invert) | |
a7a4ac86 | 2291 | val = max - val; |
e9cf7049 | 2292 | mask = mask << shift; |
2b97eabc | 2293 | val = val << shift; |
2b97eabc | 2294 | |
fafd2176 SW |
2295 | if (val) |
2296 | /* new connection */ | |
2297 | connect = invert ? 0 : 1; | |
2298 | else | |
2299 | /* old connection must be powered down */ | |
2300 | connect = invert ? 1 : 0; | |
2301 | ||
2302 | mutex_lock(&codec->mutex); | |
2b97eabc | 2303 | |
e9cf7049 | 2304 | change = snd_soc_test_bits(widget->codec, reg, mask, val); |
97404f2e | 2305 | if (change) { |
fafd2176 SW |
2306 | for (wi = 0; wi < wlist->num_widgets; wi++) { |
2307 | widget = wlist->widgets[wi]; | |
283375ce | 2308 | |
fafd2176 | 2309 | widget->value = val; |
97404f2e | 2310 | |
fafd2176 SW |
2311 | update.kcontrol = kcontrol; |
2312 | update.widget = widget; | |
2313 | update.reg = reg; | |
2314 | update.mask = mask; | |
2315 | update.val = val; | |
2316 | widget->dapm->update = &update; | |
97404f2e | 2317 | |
fafd2176 SW |
2318 | dapm_mixer_update_power(widget, kcontrol, connect); |
2319 | ||
2320 | widget->dapm->update = NULL; | |
2321 | } | |
283375ce MB |
2322 | } |
2323 | ||
fafd2176 | 2324 | mutex_unlock(&codec->mutex); |
97404f2e | 2325 | return 0; |
2b97eabc RP |
2326 | } |
2327 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw); | |
2328 | ||
2329 | /** | |
2330 | * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback | |
2331 | * @kcontrol: mixer control | |
ac11a2b3 | 2332 | * @ucontrol: control element information |
2b97eabc RP |
2333 | * |
2334 | * Callback to get the value of a dapm enumerated double mixer control. | |
2335 | * | |
2336 | * Returns 0 for success. | |
2337 | */ | |
2338 | int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol, | |
2339 | struct snd_ctl_elem_value *ucontrol) | |
2340 | { | |
fafd2176 SW |
2341 | struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol); |
2342 | struct snd_soc_dapm_widget *widget = wlist->widgets[0]; | |
2b97eabc | 2343 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
46f5822f | 2344 | unsigned int val, bitmask; |
2b97eabc | 2345 | |
f8ba0b7b | 2346 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
2b97eabc RP |
2347 | ; |
2348 | val = snd_soc_read(widget->codec, e->reg); | |
2349 | ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1); | |
2350 | if (e->shift_l != e->shift_r) | |
2351 | ucontrol->value.enumerated.item[1] = | |
2352 | (val >> e->shift_r) & (bitmask - 1); | |
2353 | ||
2354 | return 0; | |
2355 | } | |
2356 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double); | |
2357 | ||
2358 | /** | |
2359 | * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback | |
2360 | * @kcontrol: mixer control | |
ac11a2b3 | 2361 | * @ucontrol: control element information |
2b97eabc RP |
2362 | * |
2363 | * Callback to set the value of a dapm enumerated double mixer control. | |
2364 | * | |
2365 | * Returns 0 for success. | |
2366 | */ | |
2367 | int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol, | |
2368 | struct snd_ctl_elem_value *ucontrol) | |
2369 | { | |
fafd2176 SW |
2370 | struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol); |
2371 | struct snd_soc_dapm_widget *widget = wlist->widgets[0]; | |
2372 | struct snd_soc_codec *codec = widget->codec; | |
2b97eabc | 2373 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
3a65577d | 2374 | unsigned int val, mux, change; |
46f5822f | 2375 | unsigned int mask, bitmask; |
97404f2e | 2376 | struct snd_soc_dapm_update update; |
fafd2176 | 2377 | int wi; |
2b97eabc | 2378 | |
f8ba0b7b | 2379 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
2b97eabc | 2380 | ; |
f8ba0b7b | 2381 | if (ucontrol->value.enumerated.item[0] > e->max - 1) |
2b97eabc RP |
2382 | return -EINVAL; |
2383 | mux = ucontrol->value.enumerated.item[0]; | |
2384 | val = mux << e->shift_l; | |
2385 | mask = (bitmask - 1) << e->shift_l; | |
2386 | if (e->shift_l != e->shift_r) { | |
f8ba0b7b | 2387 | if (ucontrol->value.enumerated.item[1] > e->max - 1) |
2b97eabc RP |
2388 | return -EINVAL; |
2389 | val |= ucontrol->value.enumerated.item[1] << e->shift_r; | |
2390 | mask |= (bitmask - 1) << e->shift_r; | |
2391 | } | |
2392 | ||
fafd2176 SW |
2393 | mutex_lock(&codec->mutex); |
2394 | ||
3a65577d | 2395 | change = snd_soc_test_bits(widget->codec, e->reg, mask, val); |
fafd2176 SW |
2396 | if (change) { |
2397 | for (wi = 0; wi < wlist->num_widgets; wi++) { | |
2398 | widget = wlist->widgets[wi]; | |
2399 | ||
2400 | widget->value = val; | |
1642e3d4 | 2401 | |
fafd2176 SW |
2402 | update.kcontrol = kcontrol; |
2403 | update.widget = widget; | |
2404 | update.reg = e->reg; | |
2405 | update.mask = mask; | |
2406 | update.val = val; | |
2407 | widget->dapm->update = &update; | |
1642e3d4 | 2408 | |
fafd2176 | 2409 | dapm_mux_update_power(widget, kcontrol, change, mux, e); |
1642e3d4 | 2410 | |
fafd2176 SW |
2411 | widget->dapm->update = NULL; |
2412 | } | |
2413 | } | |
2b97eabc | 2414 | |
fafd2176 | 2415 | mutex_unlock(&codec->mutex); |
97404f2e | 2416 | return change; |
2b97eabc RP |
2417 | } |
2418 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double); | |
2419 | ||
d2b247a8 MB |
2420 | /** |
2421 | * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux | |
2422 | * @kcontrol: mixer control | |
2423 | * @ucontrol: control element information | |
2424 | * | |
2425 | * Returns 0 for success. | |
2426 | */ | |
2427 | int snd_soc_dapm_get_enum_virt(struct snd_kcontrol *kcontrol, | |
2428 | struct snd_ctl_elem_value *ucontrol) | |
2429 | { | |
fafd2176 SW |
2430 | struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol); |
2431 | struct snd_soc_dapm_widget *widget = wlist->widgets[0]; | |
d2b247a8 MB |
2432 | |
2433 | ucontrol->value.enumerated.item[0] = widget->value; | |
2434 | ||
2435 | return 0; | |
2436 | } | |
2437 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt); | |
2438 | ||
2439 | /** | |
2440 | * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux | |
2441 | * @kcontrol: mixer control | |
2442 | * @ucontrol: control element information | |
2443 | * | |
2444 | * Returns 0 for success. | |
2445 | */ | |
2446 | int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol, | |
2447 | struct snd_ctl_elem_value *ucontrol) | |
2448 | { | |
fafd2176 SW |
2449 | struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol); |
2450 | struct snd_soc_dapm_widget *widget = wlist->widgets[0]; | |
2451 | struct snd_soc_codec *codec = widget->codec; | |
d2b247a8 MB |
2452 | struct soc_enum *e = |
2453 | (struct soc_enum *)kcontrol->private_value; | |
2454 | int change; | |
2455 | int ret = 0; | |
fafd2176 | 2456 | int wi; |
d2b247a8 MB |
2457 | |
2458 | if (ucontrol->value.enumerated.item[0] >= e->max) | |
2459 | return -EINVAL; | |
2460 | ||
fafd2176 | 2461 | mutex_lock(&codec->mutex); |
d2b247a8 MB |
2462 | |
2463 | change = widget->value != ucontrol->value.enumerated.item[0]; | |
fafd2176 SW |
2464 | if (change) { |
2465 | for (wi = 0; wi < wlist->num_widgets; wi++) { | |
2466 | widget = wlist->widgets[wi]; | |
2467 | ||
2468 | widget->value = ucontrol->value.enumerated.item[0]; | |
2469 | ||
2470 | dapm_mux_update_power(widget, kcontrol, change, | |
2471 | widget->value, e); | |
2472 | } | |
2473 | } | |
d2b247a8 | 2474 | |
fafd2176 | 2475 | mutex_unlock(&codec->mutex); |
d2b247a8 MB |
2476 | return ret; |
2477 | } | |
2478 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt); | |
2479 | ||
2e72f8e3 PU |
2480 | /** |
2481 | * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get | |
2482 | * callback | |
2483 | * @kcontrol: mixer control | |
2484 | * @ucontrol: control element information | |
2485 | * | |
2486 | * Callback to get the value of a dapm semi enumerated double mixer control. | |
2487 | * | |
2488 | * Semi enumerated mixer: the enumerated items are referred as values. Can be | |
2489 | * used for handling bitfield coded enumeration for example. | |
2490 | * | |
2491 | * Returns 0 for success. | |
2492 | */ | |
2493 | int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol, | |
2494 | struct snd_ctl_elem_value *ucontrol) | |
2495 | { | |
fafd2176 SW |
2496 | struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol); |
2497 | struct snd_soc_dapm_widget *widget = wlist->widgets[0]; | |
74155556 | 2498 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
46f5822f | 2499 | unsigned int reg_val, val, mux; |
2e72f8e3 PU |
2500 | |
2501 | reg_val = snd_soc_read(widget->codec, e->reg); | |
2502 | val = (reg_val >> e->shift_l) & e->mask; | |
2503 | for (mux = 0; mux < e->max; mux++) { | |
2504 | if (val == e->values[mux]) | |
2505 | break; | |
2506 | } | |
2507 | ucontrol->value.enumerated.item[0] = mux; | |
2508 | if (e->shift_l != e->shift_r) { | |
2509 | val = (reg_val >> e->shift_r) & e->mask; | |
2510 | for (mux = 0; mux < e->max; mux++) { | |
2511 | if (val == e->values[mux]) | |
2512 | break; | |
2513 | } | |
2514 | ucontrol->value.enumerated.item[1] = mux; | |
2515 | } | |
2516 | ||
2517 | return 0; | |
2518 | } | |
2519 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double); | |
2520 | ||
2521 | /** | |
2522 | * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set | |
2523 | * callback | |
2524 | * @kcontrol: mixer control | |
2525 | * @ucontrol: control element information | |
2526 | * | |
2527 | * Callback to set the value of a dapm semi enumerated double mixer control. | |
2528 | * | |
2529 | * Semi enumerated mixer: the enumerated items are referred as values. Can be | |
2530 | * used for handling bitfield coded enumeration for example. | |
2531 | * | |
2532 | * Returns 0 for success. | |
2533 | */ | |
2534 | int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol, | |
2535 | struct snd_ctl_elem_value *ucontrol) | |
2536 | { | |
fafd2176 SW |
2537 | struct snd_soc_dapm_widget_list *wlist = snd_kcontrol_chip(kcontrol); |
2538 | struct snd_soc_dapm_widget *widget = wlist->widgets[0]; | |
2539 | struct snd_soc_codec *codec = widget->codec; | |
74155556 | 2540 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
3a65577d | 2541 | unsigned int val, mux, change; |
46f5822f | 2542 | unsigned int mask; |
97404f2e | 2543 | struct snd_soc_dapm_update update; |
fafd2176 | 2544 | int wi; |
2e72f8e3 PU |
2545 | |
2546 | if (ucontrol->value.enumerated.item[0] > e->max - 1) | |
2547 | return -EINVAL; | |
2548 | mux = ucontrol->value.enumerated.item[0]; | |
2549 | val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l; | |
2550 | mask = e->mask << e->shift_l; | |
2551 | if (e->shift_l != e->shift_r) { | |
2552 | if (ucontrol->value.enumerated.item[1] > e->max - 1) | |
2553 | return -EINVAL; | |
2554 | val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r; | |
2555 | mask |= e->mask << e->shift_r; | |
2556 | } | |
2557 | ||
fafd2176 SW |
2558 | mutex_lock(&codec->mutex); |
2559 | ||
3a65577d | 2560 | change = snd_soc_test_bits(widget->codec, e->reg, mask, val); |
fafd2176 SW |
2561 | if (change) { |
2562 | for (wi = 0; wi < wlist->num_widgets; wi++) { | |
2563 | widget = wlist->widgets[wi]; | |
1642e3d4 | 2564 | |
fafd2176 | 2565 | widget->value = val; |
1642e3d4 | 2566 | |
fafd2176 SW |
2567 | update.kcontrol = kcontrol; |
2568 | update.widget = widget; | |
2569 | update.reg = e->reg; | |
2570 | update.mask = mask; | |
2571 | update.val = val; | |
2572 | widget->dapm->update = &update; | |
1642e3d4 | 2573 | |
fafd2176 SW |
2574 | dapm_mux_update_power(widget, kcontrol, change, mux, e); |
2575 | ||
2576 | widget->dapm->update = NULL; | |
2577 | } | |
2578 | } | |
2e72f8e3 | 2579 | |
fafd2176 | 2580 | mutex_unlock(&codec->mutex); |
97404f2e | 2581 | return change; |
2e72f8e3 PU |
2582 | } |
2583 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double); | |
2584 | ||
8b37dbd2 MB |
2585 | /** |
2586 | * snd_soc_dapm_info_pin_switch - Info for a pin switch | |
2587 | * | |
2588 | * @kcontrol: mixer control | |
2589 | * @uinfo: control element information | |
2590 | * | |
2591 | * Callback to provide information about a pin switch control. | |
2592 | */ | |
2593 | int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol, | |
2594 | struct snd_ctl_elem_info *uinfo) | |
2595 | { | |
2596 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; | |
2597 | uinfo->count = 1; | |
2598 | uinfo->value.integer.min = 0; | |
2599 | uinfo->value.integer.max = 1; | |
2600 | ||
2601 | return 0; | |
2602 | } | |
2603 | EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch); | |
2604 | ||
2605 | /** | |
2606 | * snd_soc_dapm_get_pin_switch - Get information for a pin switch | |
2607 | * | |
2608 | * @kcontrol: mixer control | |
2609 | * @ucontrol: Value | |
2610 | */ | |
2611 | int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol, | |
2612 | struct snd_ctl_elem_value *ucontrol) | |
2613 | { | |
2614 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); | |
2615 | const char *pin = (const char *)kcontrol->private_value; | |
2616 | ||
2617 | mutex_lock(&codec->mutex); | |
2618 | ||
2619 | ucontrol->value.integer.value[0] = | |
ce6120cc | 2620 | snd_soc_dapm_get_pin_status(&codec->dapm, pin); |
8b37dbd2 MB |
2621 | |
2622 | mutex_unlock(&codec->mutex); | |
2623 | ||
2624 | return 0; | |
2625 | } | |
2626 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch); | |
2627 | ||
2628 | /** | |
2629 | * snd_soc_dapm_put_pin_switch - Set information for a pin switch | |
2630 | * | |
2631 | * @kcontrol: mixer control | |
2632 | * @ucontrol: Value | |
2633 | */ | |
2634 | int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol, | |
2635 | struct snd_ctl_elem_value *ucontrol) | |
2636 | { | |
2637 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); | |
2638 | const char *pin = (const char *)kcontrol->private_value; | |
2639 | ||
2640 | mutex_lock(&codec->mutex); | |
2641 | ||
2642 | if (ucontrol->value.integer.value[0]) | |
ce6120cc | 2643 | snd_soc_dapm_enable_pin(&codec->dapm, pin); |
8b37dbd2 | 2644 | else |
ce6120cc | 2645 | snd_soc_dapm_disable_pin(&codec->dapm, pin); |
8b37dbd2 | 2646 | |
ce6120cc | 2647 | snd_soc_dapm_sync(&codec->dapm); |
8b37dbd2 MB |
2648 | |
2649 | mutex_unlock(&codec->mutex); | |
2650 | ||
2651 | return 0; | |
2652 | } | |
2653 | EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch); | |
2654 | ||
2b97eabc RP |
2655 | /** |
2656 | * snd_soc_dapm_new_control - create new dapm control | |
ce6120cc | 2657 | * @dapm: DAPM context |
2b97eabc RP |
2658 | * @widget: widget template |
2659 | * | |
2660 | * Creates a new dapm control based upon the template. | |
2661 | * | |
2662 | * Returns 0 for success else error. | |
2663 | */ | |
ce6120cc | 2664 | int snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm, |
2b97eabc RP |
2665 | const struct snd_soc_dapm_widget *widget) |
2666 | { | |
2667 | struct snd_soc_dapm_widget *w; | |
ead9b919 | 2668 | size_t name_len; |
2b97eabc RP |
2669 | |
2670 | if ((w = dapm_cnew_widget(widget)) == NULL) | |
2671 | return -ENOMEM; | |
2672 | ||
ead9b919 | 2673 | name_len = strlen(widget->name) + 1; |
88e8b9a8 | 2674 | if (dapm->codec && dapm->codec->name_prefix) |
ead9b919 JN |
2675 | name_len += 1 + strlen(dapm->codec->name_prefix); |
2676 | w->name = kmalloc(name_len, GFP_KERNEL); | |
2677 | if (w->name == NULL) { | |
2678 | kfree(w); | |
2679 | return -ENOMEM; | |
2680 | } | |
88e8b9a8 | 2681 | if (dapm->codec && dapm->codec->name_prefix) |
ead9b919 JN |
2682 | snprintf(w->name, name_len, "%s %s", |
2683 | dapm->codec->name_prefix, widget->name); | |
2684 | else | |
2685 | snprintf(w->name, name_len, "%s", widget->name); | |
2686 | ||
7ca3a18b MB |
2687 | switch (w->id) { |
2688 | case snd_soc_dapm_switch: | |
2689 | case snd_soc_dapm_mixer: | |
2690 | case snd_soc_dapm_mixer_named_ctl: | |
2691 | w->power_check = dapm_generic_check_power; | |
2692 | break; | |
2693 | case snd_soc_dapm_mux: | |
2694 | case snd_soc_dapm_virt_mux: | |
2695 | case snd_soc_dapm_value_mux: | |
2696 | w->power_check = dapm_generic_check_power; | |
2697 | break; | |
2698 | case snd_soc_dapm_adc: | |
2699 | case snd_soc_dapm_aif_out: | |
2700 | w->power_check = dapm_adc_check_power; | |
2701 | break; | |
2702 | case snd_soc_dapm_dac: | |
2703 | case snd_soc_dapm_aif_in: | |
2704 | w->power_check = dapm_dac_check_power; | |
2705 | break; | |
2706 | case snd_soc_dapm_pga: | |
2707 | case snd_soc_dapm_out_drv: | |
2708 | case snd_soc_dapm_input: | |
2709 | case snd_soc_dapm_output: | |
2710 | case snd_soc_dapm_micbias: | |
2711 | case snd_soc_dapm_spk: | |
2712 | case snd_soc_dapm_hp: | |
2713 | case snd_soc_dapm_mic: | |
2714 | case snd_soc_dapm_line: | |
2715 | w->power_check = dapm_generic_check_power; | |
2716 | break; | |
2717 | case snd_soc_dapm_supply: | |
2718 | w->power_check = dapm_supply_check_power; | |
2719 | break; | |
2720 | default: | |
2721 | w->power_check = dapm_always_on_check_power; | |
2722 | break; | |
2723 | } | |
2724 | ||
97c866de | 2725 | dapm->n_widgets++; |
ce6120cc LG |
2726 | w->dapm = dapm; |
2727 | w->codec = dapm->codec; | |
b7950641 | 2728 | w->platform = dapm->platform; |
2b97eabc RP |
2729 | INIT_LIST_HEAD(&w->sources); |
2730 | INIT_LIST_HEAD(&w->sinks); | |
2731 | INIT_LIST_HEAD(&w->list); | |
db432b41 | 2732 | INIT_LIST_HEAD(&w->dirty); |
97c866de | 2733 | list_add(&w->list, &dapm->card->widgets); |
2b97eabc RP |
2734 | |
2735 | /* machine layer set ups unconnected pins and insertions */ | |
2736 | w->connected = 1; | |
2737 | return 0; | |
2738 | } | |
2739 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_control); | |
2740 | ||
4ba1327a MB |
2741 | /** |
2742 | * snd_soc_dapm_new_controls - create new dapm controls | |
ce6120cc | 2743 | * @dapm: DAPM context |
4ba1327a MB |
2744 | * @widget: widget array |
2745 | * @num: number of widgets | |
2746 | * | |
2747 | * Creates new DAPM controls based upon the templates. | |
2748 | * | |
2749 | * Returns 0 for success else error. | |
2750 | */ | |
ce6120cc | 2751 | int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm, |
4ba1327a MB |
2752 | const struct snd_soc_dapm_widget *widget, |
2753 | int num) | |
2754 | { | |
2755 | int i, ret; | |
2756 | ||
2757 | for (i = 0; i < num; i++) { | |
ce6120cc | 2758 | ret = snd_soc_dapm_new_control(dapm, widget); |
b8b33cb5 | 2759 | if (ret < 0) { |
f7d41ae8 JN |
2760 | dev_err(dapm->dev, |
2761 | "ASoC: Failed to create DAPM control %s: %d\n", | |
2762 | widget->name, ret); | |
4ba1327a | 2763 | return ret; |
b8b33cb5 | 2764 | } |
4ba1327a MB |
2765 | widget++; |
2766 | } | |
2767 | return 0; | |
2768 | } | |
2769 | EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls); | |
2770 | ||
ce6120cc | 2771 | static void soc_dapm_stream_event(struct snd_soc_dapm_context *dapm, |
f0fba2ad | 2772 | const char *stream, int event) |
2b97eabc RP |
2773 | { |
2774 | struct snd_soc_dapm_widget *w; | |
2775 | ||
97c866de | 2776 | list_for_each_entry(w, &dapm->card->widgets, list) |
2b97eabc | 2777 | { |
97c866de | 2778 | if (!w->sname || w->dapm != dapm) |
2b97eabc | 2779 | continue; |
ee47b364 | 2780 | dev_vdbg(w->dapm->dev, "widget %s\n %s stream %s event %d\n", |
f7d41ae8 | 2781 | w->name, w->sname, stream, event); |
2b97eabc | 2782 | if (strstr(w->sname, stream)) { |
75c1f891 | 2783 | dapm_mark_dirty(w, "stream event"); |
2b97eabc RP |
2784 | switch(event) { |
2785 | case SND_SOC_DAPM_STREAM_START: | |
2786 | w->active = 1; | |
2787 | break; | |
2788 | case SND_SOC_DAPM_STREAM_STOP: | |
2789 | w->active = 0; | |
2790 | break; | |
2791 | case SND_SOC_DAPM_STREAM_SUSPEND: | |
2b97eabc | 2792 | case SND_SOC_DAPM_STREAM_RESUME: |
2b97eabc | 2793 | case SND_SOC_DAPM_STREAM_PAUSE_PUSH: |
2b97eabc RP |
2794 | case SND_SOC_DAPM_STREAM_PAUSE_RELEASE: |
2795 | break; | |
2796 | } | |
2797 | } | |
2798 | } | |
2b97eabc | 2799 | |
ce6120cc | 2800 | dapm_power_widgets(dapm, event); |
64a648c2 LG |
2801 | |
2802 | /* do we need to notify any clients that DAPM stream is complete */ | |
2803 | if (dapm->stream_event) | |
2804 | dapm->stream_event(dapm, event); | |
ce6120cc LG |
2805 | } |
2806 | ||
2807 | /** | |
2808 | * snd_soc_dapm_stream_event - send a stream event to the dapm core | |
2809 | * @rtd: PCM runtime data | |
2810 | * @stream: stream name | |
2811 | * @event: stream event | |
2812 | * | |
2813 | * Sends a stream event to the dapm core. The core then makes any | |
2814 | * necessary widget power changes. | |
2815 | * | |
2816 | * Returns 0 for success else error. | |
2817 | */ | |
2818 | int snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, | |
2819 | const char *stream, int event) | |
2820 | { | |
2821 | struct snd_soc_codec *codec = rtd->codec; | |
2822 | ||
2823 | if (stream == NULL) | |
2824 | return 0; | |
2825 | ||
2826 | mutex_lock(&codec->mutex); | |
2827 | soc_dapm_stream_event(&codec->dapm, stream, event); | |
8e8b2d67 | 2828 | mutex_unlock(&codec->mutex); |
2b97eabc RP |
2829 | return 0; |
2830 | } | |
2b97eabc RP |
2831 | |
2832 | /** | |
a5302181 | 2833 | * snd_soc_dapm_enable_pin - enable pin. |
ce6120cc | 2834 | * @dapm: DAPM context |
a5302181 | 2835 | * @pin: pin name |
2b97eabc | 2836 | * |
74b8f955 | 2837 | * Enables input/output pin and its parents or children widgets iff there is |
a5302181 LG |
2838 | * a valid audio route and active audio stream. |
2839 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to | |
2840 | * do any widget power switching. | |
2b97eabc | 2841 | */ |
ce6120cc | 2842 | int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin) |
2b97eabc | 2843 | { |
ce6120cc | 2844 | return snd_soc_dapm_set_pin(dapm, pin, 1); |
a5302181 LG |
2845 | } |
2846 | EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin); | |
2b97eabc | 2847 | |
da34183e MB |
2848 | /** |
2849 | * snd_soc_dapm_force_enable_pin - force a pin to be enabled | |
ce6120cc | 2850 | * @dapm: DAPM context |
da34183e MB |
2851 | * @pin: pin name |
2852 | * | |
2853 | * Enables input/output pin regardless of any other state. This is | |
2854 | * intended for use with microphone bias supplies used in microphone | |
2855 | * jack detection. | |
2856 | * | |
2857 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to | |
2858 | * do any widget power switching. | |
2859 | */ | |
ce6120cc LG |
2860 | int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm, |
2861 | const char *pin) | |
da34183e | 2862 | { |
91a5fca4 | 2863 | struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true); |
da34183e | 2864 | |
91a5fca4 LPC |
2865 | if (!w) { |
2866 | dev_err(dapm->dev, "dapm: unknown pin %s\n", pin); | |
2867 | return -EINVAL; | |
0d86733c MB |
2868 | } |
2869 | ||
91a5fca4 LPC |
2870 | dev_dbg(w->dapm->dev, "dapm: force enable pin %s\n", pin); |
2871 | w->connected = 1; | |
2872 | w->force = 1; | |
75c1f891 | 2873 | dapm_mark_dirty(w, "force enable"); |
da34183e | 2874 | |
91a5fca4 | 2875 | return 0; |
da34183e MB |
2876 | } |
2877 | EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin); | |
2878 | ||
a5302181 LG |
2879 | /** |
2880 | * snd_soc_dapm_disable_pin - disable pin. | |
ce6120cc | 2881 | * @dapm: DAPM context |
a5302181 LG |
2882 | * @pin: pin name |
2883 | * | |
74b8f955 | 2884 | * Disables input/output pin and its parents or children widgets. |
a5302181 LG |
2885 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to |
2886 | * do any widget power switching. | |
2887 | */ | |
ce6120cc LG |
2888 | int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm, |
2889 | const char *pin) | |
a5302181 | 2890 | { |
ce6120cc | 2891 | return snd_soc_dapm_set_pin(dapm, pin, 0); |
2b97eabc | 2892 | } |
a5302181 | 2893 | EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin); |
2b97eabc | 2894 | |
5817b52a MB |
2895 | /** |
2896 | * snd_soc_dapm_nc_pin - permanently disable pin. | |
ce6120cc | 2897 | * @dapm: DAPM context |
5817b52a MB |
2898 | * @pin: pin name |
2899 | * | |
2900 | * Marks the specified pin as being not connected, disabling it along | |
2901 | * any parent or child widgets. At present this is identical to | |
2902 | * snd_soc_dapm_disable_pin() but in future it will be extended to do | |
2903 | * additional things such as disabling controls which only affect | |
2904 | * paths through the pin. | |
2905 | * | |
2906 | * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to | |
2907 | * do any widget power switching. | |
2908 | */ | |
ce6120cc | 2909 | int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin) |
5817b52a | 2910 | { |
ce6120cc | 2911 | return snd_soc_dapm_set_pin(dapm, pin, 0); |
5817b52a MB |
2912 | } |
2913 | EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin); | |
2914 | ||
eeec12bf | 2915 | /** |
a5302181 | 2916 | * snd_soc_dapm_get_pin_status - get audio pin status |
ce6120cc | 2917 | * @dapm: DAPM context |
a5302181 | 2918 | * @pin: audio signal pin endpoint (or start point) |
eeec12bf | 2919 | * |
a5302181 | 2920 | * Get audio pin status - connected or disconnected. |
eeec12bf | 2921 | * |
a5302181 | 2922 | * Returns 1 for connected otherwise 0. |
eeec12bf | 2923 | */ |
ce6120cc LG |
2924 | int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm, |
2925 | const char *pin) | |
eeec12bf | 2926 | { |
91a5fca4 | 2927 | struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true); |
eeec12bf | 2928 | |
91a5fca4 LPC |
2929 | if (w) |
2930 | return w->connected; | |
a68b38ad | 2931 | |
eeec12bf GG |
2932 | return 0; |
2933 | } | |
a5302181 | 2934 | EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status); |
eeec12bf | 2935 | |
1547aba9 MB |
2936 | /** |
2937 | * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint | |
ce6120cc | 2938 | * @dapm: DAPM context |
1547aba9 MB |
2939 | * @pin: audio signal pin endpoint (or start point) |
2940 | * | |
2941 | * Mark the given endpoint or pin as ignoring suspend. When the | |
2942 | * system is disabled a path between two endpoints flagged as ignoring | |
2943 | * suspend will not be disabled. The path must already be enabled via | |
2944 | * normal means at suspend time, it will not be turned on if it was not | |
2945 | * already enabled. | |
2946 | */ | |
ce6120cc LG |
2947 | int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm, |
2948 | const char *pin) | |
1547aba9 | 2949 | { |
91a5fca4 | 2950 | struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false); |
1547aba9 | 2951 | |
91a5fca4 LPC |
2952 | if (!w) { |
2953 | dev_err(dapm->dev, "dapm: unknown pin %s\n", pin); | |
2954 | return -EINVAL; | |
1547aba9 MB |
2955 | } |
2956 | ||
91a5fca4 LPC |
2957 | w->ignore_suspend = 1; |
2958 | ||
2959 | return 0; | |
1547aba9 MB |
2960 | } |
2961 | EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend); | |
2962 | ||
1633281b SW |
2963 | static bool snd_soc_dapm_widget_in_card_paths(struct snd_soc_card *card, |
2964 | struct snd_soc_dapm_widget *w) | |
2965 | { | |
2966 | struct snd_soc_dapm_path *p; | |
2967 | ||
2968 | list_for_each_entry(p, &card->paths, list) { | |
2969 | if ((p->source == w) || (p->sink == w)) { | |
2970 | dev_dbg(card->dev, | |
2971 | "... Path %s(id:%d dapm:%p) - %s(id:%d dapm:%p)\n", | |
2972 | p->source->name, p->source->id, p->source->dapm, | |
2973 | p->sink->name, p->sink->id, p->sink->dapm); | |
2974 | ||
2975 | /* Connected to something other than the codec */ | |
2976 | if (p->source->dapm != p->sink->dapm) | |
2977 | return true; | |
2978 | /* | |
2979 | * Loopback connection from codec external pin to | |
2980 | * codec external pin | |
2981 | */ | |
2982 | if (p->sink->id == snd_soc_dapm_input) { | |
2983 | switch (p->source->id) { | |
2984 | case snd_soc_dapm_output: | |
2985 | case snd_soc_dapm_micbias: | |
2986 | return true; | |
2987 | default: | |
2988 | break; | |
2989 | } | |
2990 | } | |
2991 | } | |
2992 | } | |
2993 | ||
2994 | return false; | |
2995 | } | |
2996 | ||
2997 | /** | |
2998 | * snd_soc_dapm_auto_nc_codec_pins - call snd_soc_dapm_nc_pin for unused pins | |
2999 | * @codec: The codec whose pins should be processed | |
3000 | * | |
3001 | * Automatically call snd_soc_dapm_nc_pin() for any external pins in the codec | |
3002 | * which are unused. Pins are used if they are connected externally to the | |
3003 | * codec, whether that be to some other device, or a loop-back connection to | |
3004 | * the codec itself. | |
3005 | */ | |
3006 | void snd_soc_dapm_auto_nc_codec_pins(struct snd_soc_codec *codec) | |
3007 | { | |
3008 | struct snd_soc_card *card = codec->card; | |
3009 | struct snd_soc_dapm_context *dapm = &codec->dapm; | |
3010 | struct snd_soc_dapm_widget *w; | |
3011 | ||
a094b80b | 3012 | dev_dbg(codec->dev, "Auto NC: DAPMs: card:%p codec:%p\n", |
1633281b SW |
3013 | &card->dapm, &codec->dapm); |
3014 | ||
3015 | list_for_each_entry(w, &card->widgets, list) { | |
3016 | if (w->dapm != dapm) | |
3017 | continue; | |
3018 | switch (w->id) { | |
3019 | case snd_soc_dapm_input: | |
3020 | case snd_soc_dapm_output: | |
3021 | case snd_soc_dapm_micbias: | |
a094b80b | 3022 | dev_dbg(codec->dev, "Auto NC: Checking widget %s\n", |
1633281b SW |
3023 | w->name); |
3024 | if (!snd_soc_dapm_widget_in_card_paths(card, w)) { | |
a094b80b | 3025 | dev_dbg(codec->dev, |
1633281b SW |
3026 | "... Not in map; disabling\n"); |
3027 | snd_soc_dapm_nc_pin(dapm, w->name); | |
3028 | } | |
3029 | break; | |
3030 | default: | |
3031 | break; | |
3032 | } | |
3033 | } | |
3034 | } | |
3035 | ||
2b97eabc RP |
3036 | /** |
3037 | * snd_soc_dapm_free - free dapm resources | |
728a5222 | 3038 | * @dapm: DAPM context |
2b97eabc RP |
3039 | * |
3040 | * Free all dapm widgets and resources. | |
3041 | */ | |
ce6120cc | 3042 | void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm) |
2b97eabc | 3043 | { |
ce6120cc | 3044 | snd_soc_dapm_sys_remove(dapm->dev); |
6c45e126 | 3045 | dapm_debugfs_cleanup(dapm); |
ce6120cc | 3046 | dapm_free_widgets(dapm); |
7be31be8 | 3047 | list_del(&dapm->list); |
2b97eabc RP |
3048 | } |
3049 | EXPORT_SYMBOL_GPL(snd_soc_dapm_free); | |
3050 | ||
ce6120cc | 3051 | static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm) |
51737470 | 3052 | { |
51737470 MB |
3053 | struct snd_soc_dapm_widget *w; |
3054 | LIST_HEAD(down_list); | |
3055 | int powerdown = 0; | |
3056 | ||
97c866de JN |
3057 | list_for_each_entry(w, &dapm->card->widgets, list) { |
3058 | if (w->dapm != dapm) | |
3059 | continue; | |
51737470 | 3060 | if (w->power) { |
828a842f | 3061 | dapm_seq_insert(w, &down_list, false); |
c2caa4da | 3062 | w->power = 0; |
51737470 MB |
3063 | powerdown = 1; |
3064 | } | |
3065 | } | |
3066 | ||
3067 | /* If there were no widgets to power down we're already in | |
3068 | * standby. | |
3069 | */ | |
3070 | if (powerdown) { | |
7679e42e MB |
3071 | if (dapm->bias_level == SND_SOC_BIAS_ON) |
3072 | snd_soc_dapm_set_bias_level(dapm, | |
3073 | SND_SOC_BIAS_PREPARE); | |
828a842f | 3074 | dapm_seq_run(dapm, &down_list, 0, false); |
7679e42e MB |
3075 | if (dapm->bias_level == SND_SOC_BIAS_PREPARE) |
3076 | snd_soc_dapm_set_bias_level(dapm, | |
3077 | SND_SOC_BIAS_STANDBY); | |
51737470 | 3078 | } |
f0fba2ad LG |
3079 | } |
3080 | ||
3081 | /* | |
3082 | * snd_soc_dapm_shutdown - callback for system shutdown | |
3083 | */ | |
3084 | void snd_soc_dapm_shutdown(struct snd_soc_card *card) | |
3085 | { | |
3086 | struct snd_soc_codec *codec; | |
3087 | ||
ce6120cc LG |
3088 | list_for_each_entry(codec, &card->codec_dev_list, list) { |
3089 | soc_dapm_shutdown_codec(&codec->dapm); | |
7679e42e MB |
3090 | if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY) |
3091 | snd_soc_dapm_set_bias_level(&codec->dapm, | |
3092 | SND_SOC_BIAS_OFF); | |
ce6120cc | 3093 | } |
51737470 MB |
3094 | } |
3095 | ||
2b97eabc | 3096 | /* Module information */ |
d331124d | 3097 | MODULE_AUTHOR("Liam Girdwood, [email protected]"); |
2b97eabc RP |
3098 | MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC"); |
3099 | MODULE_LICENSE("GPL"); |