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