Merge tag 'locks-v3.16-2' of git://git.samba.org/jlayton/linux
[linux/fpc-iii.git] / sound / soc / soc-dapm.c
blobcdc837ed144d7d1bd8d06287aa1111b85b67fc6d
1 /*
2 * soc-dapm.c -- ALSA SoC Dynamic Audio Power Management
4 * Copyright 2005 Wolfson Microelectronics PLC.
5 * Author: Liam Girdwood <lrg@slimlogic.co.uk>
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.
12 * Features:
13 * o Changes power status of internal codec blocks depending on the
14 * dynamic configuration of codec internal audio paths and active
15 * DACs/ADCs.
16 * o Platform power domain - can support external components i.e. amps and
17 * mic/headphone insertion events.
18 * o Automatic Mic Bias support
19 * o Jack insertion power event initiation - e.g. hp insertion will enable
20 * sinks, dacs, etc
21 * o Delayed power down of audio subsystem to reduce pops between a quick
22 * device reopen.
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <linux/init.h>
29 #include <linux/async.h>
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>
35 #include <linux/debugfs.h>
36 #include <linux/pm_runtime.h>
37 #include <linux/regulator/consumer.h>
38 #include <linux/clk.h>
39 #include <linux/slab.h>
40 #include <sound/core.h>
41 #include <sound/pcm.h>
42 #include <sound/pcm_params.h>
43 #include <sound/soc.h>
44 #include <sound/initval.h>
46 #include <trace/events/asoc.h>
48 #define DAPM_UPDATE_STAT(widget, val) widget->dapm->card->dapm_stats.val++;
50 static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
51 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
52 const char *control,
53 int (*connected)(struct snd_soc_dapm_widget *source,
54 struct snd_soc_dapm_widget *sink));
55 static struct snd_soc_dapm_widget *
56 snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
57 const struct snd_soc_dapm_widget *widget);
59 /* dapm power sequences - make this per codec in the future */
60 static int dapm_up_seq[] = {
61 [snd_soc_dapm_pre] = 0,
62 [snd_soc_dapm_regulator_supply] = 1,
63 [snd_soc_dapm_clock_supply] = 1,
64 [snd_soc_dapm_supply] = 2,
65 [snd_soc_dapm_micbias] = 3,
66 [snd_soc_dapm_dai_link] = 2,
67 [snd_soc_dapm_dai_in] = 4,
68 [snd_soc_dapm_dai_out] = 4,
69 [snd_soc_dapm_aif_in] = 4,
70 [snd_soc_dapm_aif_out] = 4,
71 [snd_soc_dapm_mic] = 5,
72 [snd_soc_dapm_mux] = 6,
73 [snd_soc_dapm_dac] = 7,
74 [snd_soc_dapm_switch] = 8,
75 [snd_soc_dapm_mixer] = 8,
76 [snd_soc_dapm_mixer_named_ctl] = 8,
77 [snd_soc_dapm_pga] = 9,
78 [snd_soc_dapm_adc] = 10,
79 [snd_soc_dapm_out_drv] = 11,
80 [snd_soc_dapm_hp] = 11,
81 [snd_soc_dapm_spk] = 11,
82 [snd_soc_dapm_line] = 11,
83 [snd_soc_dapm_kcontrol] = 12,
84 [snd_soc_dapm_post] = 13,
87 static int dapm_down_seq[] = {
88 [snd_soc_dapm_pre] = 0,
89 [snd_soc_dapm_kcontrol] = 1,
90 [snd_soc_dapm_adc] = 2,
91 [snd_soc_dapm_hp] = 3,
92 [snd_soc_dapm_spk] = 3,
93 [snd_soc_dapm_line] = 3,
94 [snd_soc_dapm_out_drv] = 3,
95 [snd_soc_dapm_pga] = 4,
96 [snd_soc_dapm_switch] = 5,
97 [snd_soc_dapm_mixer_named_ctl] = 5,
98 [snd_soc_dapm_mixer] = 5,
99 [snd_soc_dapm_dac] = 6,
100 [snd_soc_dapm_mic] = 7,
101 [snd_soc_dapm_micbias] = 8,
102 [snd_soc_dapm_mux] = 9,
103 [snd_soc_dapm_aif_in] = 10,
104 [snd_soc_dapm_aif_out] = 10,
105 [snd_soc_dapm_dai_in] = 10,
106 [snd_soc_dapm_dai_out] = 10,
107 [snd_soc_dapm_dai_link] = 11,
108 [snd_soc_dapm_supply] = 12,
109 [snd_soc_dapm_clock_supply] = 13,
110 [snd_soc_dapm_regulator_supply] = 13,
111 [snd_soc_dapm_post] = 14,
114 static void dapm_assert_locked(struct snd_soc_dapm_context *dapm)
116 if (dapm->card && dapm->card->instantiated)
117 lockdep_assert_held(&dapm->card->dapm_mutex);
120 static void pop_wait(u32 pop_time)
122 if (pop_time)
123 schedule_timeout_uninterruptible(msecs_to_jiffies(pop_time));
126 static void pop_dbg(struct device *dev, u32 pop_time, const char *fmt, ...)
128 va_list args;
129 char *buf;
131 if (!pop_time)
132 return;
134 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
135 if (buf == NULL)
136 return;
138 va_start(args, fmt);
139 vsnprintf(buf, PAGE_SIZE, fmt, args);
140 dev_info(dev, "%s", buf);
141 va_end(args);
143 kfree(buf);
146 static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w)
148 return !list_empty(&w->dirty);
151 static void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason)
153 dapm_assert_locked(w->dapm);
155 if (!dapm_dirty_widget(w)) {
156 dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n",
157 w->name, reason);
158 list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty);
162 void dapm_mark_io_dirty(struct snd_soc_dapm_context *dapm)
164 struct snd_soc_card *card = dapm->card;
165 struct snd_soc_dapm_widget *w;
167 mutex_lock(&card->dapm_mutex);
169 list_for_each_entry(w, &card->widgets, list) {
170 switch (w->id) {
171 case snd_soc_dapm_input:
172 case snd_soc_dapm_output:
173 dapm_mark_dirty(w, "Rechecking inputs and outputs");
174 break;
175 default:
176 break;
180 mutex_unlock(&card->dapm_mutex);
182 EXPORT_SYMBOL_GPL(dapm_mark_io_dirty);
184 /* create a new dapm widget */
185 static inline struct snd_soc_dapm_widget *dapm_cnew_widget(
186 const struct snd_soc_dapm_widget *_widget)
188 return kmemdup(_widget, sizeof(*_widget), GFP_KERNEL);
191 struct dapm_kcontrol_data {
192 unsigned int value;
193 struct snd_soc_dapm_widget *widget;
194 struct list_head paths;
195 struct snd_soc_dapm_widget_list *wlist;
198 static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
199 struct snd_kcontrol *kcontrol)
201 struct dapm_kcontrol_data *data;
202 struct soc_mixer_control *mc;
204 data = kzalloc(sizeof(*data), GFP_KERNEL);
205 if (!data) {
206 dev_err(widget->dapm->dev,
207 "ASoC: can't allocate kcontrol data for %s\n",
208 widget->name);
209 return -ENOMEM;
212 INIT_LIST_HEAD(&data->paths);
214 switch (widget->id) {
215 case snd_soc_dapm_switch:
216 case snd_soc_dapm_mixer:
217 case snd_soc_dapm_mixer_named_ctl:
218 mc = (struct soc_mixer_control *)kcontrol->private_value;
220 if (mc->autodisable) {
221 struct snd_soc_dapm_widget template;
223 memset(&template, 0, sizeof(template));
224 template.reg = mc->reg;
225 template.mask = (1 << fls(mc->max)) - 1;
226 template.shift = mc->shift;
227 if (mc->invert)
228 template.off_val = mc->max;
229 else
230 template.off_val = 0;
231 template.on_val = template.off_val;
232 template.id = snd_soc_dapm_kcontrol;
233 template.name = kcontrol->id.name;
235 data->value = template.on_val;
237 data->widget = snd_soc_dapm_new_control(widget->dapm,
238 &template);
239 if (!data->widget) {
240 kfree(data);
241 return -ENOMEM;
244 break;
245 default:
246 break;
249 kcontrol->private_data = data;
251 return 0;
254 static void dapm_kcontrol_free(struct snd_kcontrol *kctl)
256 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kctl);
257 kfree(data->wlist);
258 kfree(data);
261 static struct snd_soc_dapm_widget_list *dapm_kcontrol_get_wlist(
262 const struct snd_kcontrol *kcontrol)
264 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
266 return data->wlist;
269 static int dapm_kcontrol_add_widget(struct snd_kcontrol *kcontrol,
270 struct snd_soc_dapm_widget *widget)
272 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
273 struct snd_soc_dapm_widget_list *new_wlist;
274 unsigned int n;
276 if (data->wlist)
277 n = data->wlist->num_widgets + 1;
278 else
279 n = 1;
281 new_wlist = krealloc(data->wlist,
282 sizeof(*new_wlist) + sizeof(widget) * n, GFP_KERNEL);
283 if (!new_wlist)
284 return -ENOMEM;
286 new_wlist->widgets[n - 1] = widget;
287 new_wlist->num_widgets = n;
289 data->wlist = new_wlist;
291 return 0;
294 static void dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol,
295 struct snd_soc_dapm_path *path)
297 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
299 list_add_tail(&path->list_kcontrol, &data->paths);
301 if (data->widget) {
302 snd_soc_dapm_add_path(data->widget->dapm, data->widget,
303 path->source, NULL, NULL);
307 static bool dapm_kcontrol_is_powered(const struct snd_kcontrol *kcontrol)
309 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
311 if (!data->widget)
312 return true;
314 return data->widget->power;
317 static struct list_head *dapm_kcontrol_get_path_list(
318 const struct snd_kcontrol *kcontrol)
320 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
322 return &data->paths;
325 #define dapm_kcontrol_for_each_path(path, kcontrol) \
326 list_for_each_entry(path, dapm_kcontrol_get_path_list(kcontrol), \
327 list_kcontrol)
329 static unsigned int dapm_kcontrol_get_value(const struct snd_kcontrol *kcontrol)
331 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
333 return data->value;
336 static bool dapm_kcontrol_set_value(const struct snd_kcontrol *kcontrol,
337 unsigned int value)
339 struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
341 if (data->value == value)
342 return false;
344 if (data->widget)
345 data->widget->on_val = value;
347 data->value = value;
349 return true;
353 * snd_soc_dapm_kcontrol_codec() - Returns the codec associated to a kcontrol
354 * @kcontrol: The kcontrol
356 struct snd_soc_codec *snd_soc_dapm_kcontrol_codec(struct snd_kcontrol *kcontrol)
358 return dapm_kcontrol_get_wlist(kcontrol)->widgets[0]->codec;
360 EXPORT_SYMBOL_GPL(snd_soc_dapm_kcontrol_codec);
362 static void dapm_reset(struct snd_soc_card *card)
364 struct snd_soc_dapm_widget *w;
366 lockdep_assert_held(&card->dapm_mutex);
368 memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
370 list_for_each_entry(w, &card->widgets, list) {
371 w->new_power = w->power;
372 w->power_checked = false;
373 w->inputs = -1;
374 w->outputs = -1;
378 static int soc_widget_read(struct snd_soc_dapm_widget *w, int reg,
379 unsigned int *value)
381 if (!w->dapm->component)
382 return -EIO;
383 return snd_soc_component_read(w->dapm->component, reg, value);
386 static int soc_widget_update_bits(struct snd_soc_dapm_widget *w,
387 int reg, unsigned int mask, unsigned int value)
389 if (!w->dapm->component)
390 return -EIO;
391 return snd_soc_component_update_bits_async(w->dapm->component, reg,
392 mask, value);
395 static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm)
397 if (dapm->component)
398 snd_soc_component_async_complete(dapm->component);
402 * snd_soc_dapm_set_bias_level - set the bias level for the system
403 * @dapm: DAPM context
404 * @level: level to configure
406 * Configure the bias (power) levels for the SoC audio device.
408 * Returns 0 for success else error.
410 static int snd_soc_dapm_set_bias_level(struct snd_soc_dapm_context *dapm,
411 enum snd_soc_bias_level level)
413 struct snd_soc_card *card = dapm->card;
414 int ret = 0;
416 trace_snd_soc_bias_level_start(card, level);
418 if (card && card->set_bias_level)
419 ret = card->set_bias_level(card, dapm, level);
420 if (ret != 0)
421 goto out;
423 if (dapm->codec) {
424 if (dapm->codec->driver->set_bias_level)
425 ret = dapm->codec->driver->set_bias_level(dapm->codec,
426 level);
427 else
428 dapm->bias_level = level;
429 } else if (!card || dapm != &card->dapm) {
430 dapm->bias_level = level;
433 if (ret != 0)
434 goto out;
436 if (card && card->set_bias_level_post)
437 ret = card->set_bias_level_post(card, dapm, level);
438 out:
439 trace_snd_soc_bias_level_done(card, level);
441 return ret;
444 /* connect mux widget to its interconnecting audio paths */
445 static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
446 struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
447 struct snd_soc_dapm_path *path, const char *control_name,
448 const struct snd_kcontrol_new *kcontrol)
450 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
451 unsigned int val, item;
452 int i;
454 if (e->reg != SND_SOC_NOPM) {
455 soc_widget_read(dest, e->reg, &val);
456 val = (val >> e->shift_l) & e->mask;
457 item = snd_soc_enum_val_to_item(e, val);
458 } else {
459 /* since a virtual mux has no backing registers to
460 * decide which path to connect, it will try to match
461 * with the first enumeration. This is to ensure
462 * that the default mux choice (the first) will be
463 * correctly powered up during initialization.
465 item = 0;
468 for (i = 0; i < e->items; i++) {
469 if (!(strcmp(control_name, e->texts[i]))) {
470 list_add(&path->list, &dapm->card->paths);
471 list_add(&path->list_sink, &dest->sources);
472 list_add(&path->list_source, &src->sinks);
473 path->name = (char*)e->texts[i];
474 if (i == item)
475 path->connect = 1;
476 else
477 path->connect = 0;
478 return 0;
482 return -ENODEV;
485 /* set up initial codec paths */
486 static void dapm_set_mixer_path_status(struct snd_soc_dapm_widget *w,
487 struct snd_soc_dapm_path *p, int i)
489 struct soc_mixer_control *mc = (struct soc_mixer_control *)
490 w->kcontrol_news[i].private_value;
491 unsigned int reg = mc->reg;
492 unsigned int shift = mc->shift;
493 unsigned int max = mc->max;
494 unsigned int mask = (1 << fls(max)) - 1;
495 unsigned int invert = mc->invert;
496 unsigned int val;
498 if (reg != SND_SOC_NOPM) {
499 soc_widget_read(w, reg, &val);
500 val = (val >> shift) & mask;
501 if (invert)
502 val = max - val;
503 p->connect = !!val;
504 } else {
505 p->connect = 0;
509 /* connect mixer widget to its interconnecting audio paths */
510 static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
511 struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
512 struct snd_soc_dapm_path *path, const char *control_name)
514 int i;
516 /* search for mixer kcontrol */
517 for (i = 0; i < dest->num_kcontrols; i++) {
518 if (!strcmp(control_name, dest->kcontrol_news[i].name)) {
519 list_add(&path->list, &dapm->card->paths);
520 list_add(&path->list_sink, &dest->sources);
521 list_add(&path->list_source, &src->sinks);
522 path->name = dest->kcontrol_news[i].name;
523 dapm_set_mixer_path_status(dest, path, i);
524 return 0;
527 return -ENODEV;
530 static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
531 struct snd_soc_dapm_widget *kcontrolw,
532 const struct snd_kcontrol_new *kcontrol_new,
533 struct snd_kcontrol **kcontrol)
535 struct snd_soc_dapm_widget *w;
536 int i;
538 *kcontrol = NULL;
540 list_for_each_entry(w, &dapm->card->widgets, list) {
541 if (w == kcontrolw || w->dapm != kcontrolw->dapm)
542 continue;
543 for (i = 0; i < w->num_kcontrols; i++) {
544 if (&w->kcontrol_news[i] == kcontrol_new) {
545 if (w->kcontrols)
546 *kcontrol = w->kcontrols[i];
547 return 1;
552 return 0;
556 * Determine if a kcontrol is shared. If it is, look it up. If it isn't,
557 * create it. Either way, add the widget into the control's widget list
559 static int dapm_create_or_share_mixmux_kcontrol(struct snd_soc_dapm_widget *w,
560 int kci)
562 struct snd_soc_dapm_context *dapm = w->dapm;
563 struct snd_card *card = dapm->card->snd_card;
564 const char *prefix;
565 size_t prefix_len;
566 int shared;
567 struct snd_kcontrol *kcontrol;
568 bool wname_in_long_name, kcname_in_long_name;
569 char *long_name;
570 const char *name;
571 int ret;
573 if (dapm->codec)
574 prefix = dapm->codec->name_prefix;
575 else
576 prefix = NULL;
578 if (prefix)
579 prefix_len = strlen(prefix) + 1;
580 else
581 prefix_len = 0;
583 shared = dapm_is_shared_kcontrol(dapm, w, &w->kcontrol_news[kci],
584 &kcontrol);
586 if (!kcontrol) {
587 if (shared) {
588 wname_in_long_name = false;
589 kcname_in_long_name = true;
590 } else {
591 switch (w->id) {
592 case snd_soc_dapm_switch:
593 case snd_soc_dapm_mixer:
594 wname_in_long_name = true;
595 kcname_in_long_name = true;
596 break;
597 case snd_soc_dapm_mixer_named_ctl:
598 wname_in_long_name = false;
599 kcname_in_long_name = true;
600 break;
601 case snd_soc_dapm_mux:
602 wname_in_long_name = true;
603 kcname_in_long_name = false;
604 break;
605 default:
606 return -EINVAL;
610 if (wname_in_long_name && kcname_in_long_name) {
612 * The control will get a prefix from the control
613 * creation process but we're also using the same
614 * prefix for widgets so cut the prefix off the
615 * front of the widget name.
617 long_name = kasprintf(GFP_KERNEL, "%s %s",
618 w->name + prefix_len,
619 w->kcontrol_news[kci].name);
620 if (long_name == NULL)
621 return -ENOMEM;
623 name = long_name;
624 } else if (wname_in_long_name) {
625 long_name = NULL;
626 name = w->name + prefix_len;
627 } else {
628 long_name = NULL;
629 name = w->kcontrol_news[kci].name;
632 kcontrol = snd_soc_cnew(&w->kcontrol_news[kci], NULL, name,
633 prefix);
634 kfree(long_name);
635 if (!kcontrol)
636 return -ENOMEM;
637 kcontrol->private_free = dapm_kcontrol_free;
639 ret = dapm_kcontrol_data_alloc(w, kcontrol);
640 if (ret) {
641 snd_ctl_free_one(kcontrol);
642 return ret;
645 ret = snd_ctl_add(card, kcontrol);
646 if (ret < 0) {
647 dev_err(dapm->dev,
648 "ASoC: failed to add widget %s dapm kcontrol %s: %d\n",
649 w->name, name, ret);
650 return ret;
654 ret = dapm_kcontrol_add_widget(kcontrol, w);
655 if (ret)
656 return ret;
658 w->kcontrols[kci] = kcontrol;
660 return 0;
663 /* create new dapm mixer control */
664 static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
666 int i, ret;
667 struct snd_soc_dapm_path *path;
669 /* add kcontrol */
670 for (i = 0; i < w->num_kcontrols; i++) {
671 /* match name */
672 list_for_each_entry(path, &w->sources, list_sink) {
673 /* mixer/mux paths name must match control name */
674 if (path->name != (char *)w->kcontrol_news[i].name)
675 continue;
677 if (w->kcontrols[i]) {
678 dapm_kcontrol_add_path(w->kcontrols[i], path);
679 continue;
682 ret = dapm_create_or_share_mixmux_kcontrol(w, i);
683 if (ret < 0)
684 return ret;
686 dapm_kcontrol_add_path(w->kcontrols[i], path);
690 return 0;
693 /* create new dapm mux control */
694 static int dapm_new_mux(struct snd_soc_dapm_widget *w)
696 struct snd_soc_dapm_context *dapm = w->dapm;
697 struct snd_soc_dapm_path *path;
698 int ret;
700 if (w->num_kcontrols != 1) {
701 dev_err(dapm->dev,
702 "ASoC: mux %s has incorrect number of controls\n",
703 w->name);
704 return -EINVAL;
707 if (list_empty(&w->sources)) {
708 dev_err(dapm->dev, "ASoC: mux %s has no paths\n", w->name);
709 return -EINVAL;
712 ret = dapm_create_or_share_mixmux_kcontrol(w, 0);
713 if (ret < 0)
714 return ret;
716 list_for_each_entry(path, &w->sources, list_sink)
717 dapm_kcontrol_add_path(w->kcontrols[0], path);
719 return 0;
722 /* create new dapm volume control */
723 static int dapm_new_pga(struct snd_soc_dapm_widget *w)
725 if (w->num_kcontrols)
726 dev_err(w->dapm->dev,
727 "ASoC: PGA controls not supported: '%s'\n", w->name);
729 return 0;
732 /* reset 'walked' bit for each dapm path */
733 static void dapm_clear_walk_output(struct snd_soc_dapm_context *dapm,
734 struct list_head *sink)
736 struct snd_soc_dapm_path *p;
738 list_for_each_entry(p, sink, list_source) {
739 if (p->walked) {
740 p->walked = 0;
741 dapm_clear_walk_output(dapm, &p->sink->sinks);
746 static void dapm_clear_walk_input(struct snd_soc_dapm_context *dapm,
747 struct list_head *source)
749 struct snd_soc_dapm_path *p;
751 list_for_each_entry(p, source, list_sink) {
752 if (p->walked) {
753 p->walked = 0;
754 dapm_clear_walk_input(dapm, &p->source->sources);
760 /* We implement power down on suspend by checking the power state of
761 * the ALSA card - when we are suspending the ALSA state for the card
762 * is set to D3.
764 static int snd_soc_dapm_suspend_check(struct snd_soc_dapm_widget *widget)
766 int level = snd_power_get_state(widget->dapm->card->snd_card);
768 switch (level) {
769 case SNDRV_CTL_POWER_D3hot:
770 case SNDRV_CTL_POWER_D3cold:
771 if (widget->ignore_suspend)
772 dev_dbg(widget->dapm->dev, "ASoC: %s ignoring suspend\n",
773 widget->name);
774 return widget->ignore_suspend;
775 default:
776 return 1;
780 /* add widget to list if it's not already in the list */
781 static int dapm_list_add_widget(struct snd_soc_dapm_widget_list **list,
782 struct snd_soc_dapm_widget *w)
784 struct snd_soc_dapm_widget_list *wlist;
785 int wlistsize, wlistentries, i;
787 if (*list == NULL)
788 return -EINVAL;
790 wlist = *list;
792 /* is this widget already in the list */
793 for (i = 0; i < wlist->num_widgets; i++) {
794 if (wlist->widgets[i] == w)
795 return 0;
798 /* allocate some new space */
799 wlistentries = wlist->num_widgets + 1;
800 wlistsize = sizeof(struct snd_soc_dapm_widget_list) +
801 wlistentries * sizeof(struct snd_soc_dapm_widget *);
802 *list = krealloc(wlist, wlistsize, GFP_KERNEL);
803 if (*list == NULL) {
804 dev_err(w->dapm->dev, "ASoC: can't allocate widget list for %s\n",
805 w->name);
806 return -ENOMEM;
808 wlist = *list;
810 /* insert the widget */
811 dev_dbg(w->dapm->dev, "ASoC: added %s in widget list pos %d\n",
812 w->name, wlist->num_widgets);
814 wlist->widgets[wlist->num_widgets] = w;
815 wlist->num_widgets++;
816 return 1;
820 * Recursively check for a completed path to an active or physically connected
821 * output widget. Returns number of complete paths.
823 static int is_connected_output_ep(struct snd_soc_dapm_widget *widget,
824 struct snd_soc_dapm_widget_list **list)
826 struct snd_soc_dapm_path *path;
827 int con = 0;
829 if (widget->outputs >= 0)
830 return widget->outputs;
832 DAPM_UPDATE_STAT(widget, path_checks);
834 switch (widget->id) {
835 case snd_soc_dapm_supply:
836 case snd_soc_dapm_regulator_supply:
837 case snd_soc_dapm_clock_supply:
838 case snd_soc_dapm_kcontrol:
839 return 0;
840 default:
841 break;
844 switch (widget->id) {
845 case snd_soc_dapm_adc:
846 case snd_soc_dapm_aif_out:
847 case snd_soc_dapm_dai_out:
848 if (widget->active) {
849 widget->outputs = snd_soc_dapm_suspend_check(widget);
850 return widget->outputs;
852 default:
853 break;
856 if (widget->connected) {
857 /* connected pin ? */
858 if (widget->id == snd_soc_dapm_output && !widget->ext) {
859 widget->outputs = snd_soc_dapm_suspend_check(widget);
860 return widget->outputs;
863 /* connected jack or spk ? */
864 if (widget->id == snd_soc_dapm_hp ||
865 widget->id == snd_soc_dapm_spk ||
866 (widget->id == snd_soc_dapm_line &&
867 !list_empty(&widget->sources))) {
868 widget->outputs = snd_soc_dapm_suspend_check(widget);
869 return widget->outputs;
873 list_for_each_entry(path, &widget->sinks, list_source) {
874 DAPM_UPDATE_STAT(widget, neighbour_checks);
876 if (path->weak)
877 continue;
879 if (path->walking)
880 return 1;
882 if (path->walked)
883 continue;
885 trace_snd_soc_dapm_output_path(widget, path);
887 if (path->sink && path->connect) {
888 path->walked = 1;
889 path->walking = 1;
891 /* do we need to add this widget to the list ? */
892 if (list) {
893 int err;
894 err = dapm_list_add_widget(list, path->sink);
895 if (err < 0) {
896 dev_err(widget->dapm->dev,
897 "ASoC: could not add widget %s\n",
898 widget->name);
899 path->walking = 0;
900 return con;
904 con += is_connected_output_ep(path->sink, list);
906 path->walking = 0;
910 widget->outputs = con;
912 return con;
916 * Recursively check for a completed path to an active or physically connected
917 * input widget. Returns number of complete paths.
919 static int is_connected_input_ep(struct snd_soc_dapm_widget *widget,
920 struct snd_soc_dapm_widget_list **list)
922 struct snd_soc_dapm_path *path;
923 int con = 0;
925 if (widget->inputs >= 0)
926 return widget->inputs;
928 DAPM_UPDATE_STAT(widget, path_checks);
930 switch (widget->id) {
931 case snd_soc_dapm_supply:
932 case snd_soc_dapm_regulator_supply:
933 case snd_soc_dapm_clock_supply:
934 case snd_soc_dapm_kcontrol:
935 return 0;
936 default:
937 break;
940 /* active stream ? */
941 switch (widget->id) {
942 case snd_soc_dapm_dac:
943 case snd_soc_dapm_aif_in:
944 case snd_soc_dapm_dai_in:
945 if (widget->active) {
946 widget->inputs = snd_soc_dapm_suspend_check(widget);
947 return widget->inputs;
949 default:
950 break;
953 if (widget->connected) {
954 /* connected pin ? */
955 if (widget->id == snd_soc_dapm_input && !widget->ext) {
956 widget->inputs = snd_soc_dapm_suspend_check(widget);
957 return widget->inputs;
960 /* connected VMID/Bias for lower pops */
961 if (widget->id == snd_soc_dapm_vmid) {
962 widget->inputs = snd_soc_dapm_suspend_check(widget);
963 return widget->inputs;
966 /* connected jack ? */
967 if (widget->id == snd_soc_dapm_mic ||
968 (widget->id == snd_soc_dapm_line &&
969 !list_empty(&widget->sinks))) {
970 widget->inputs = snd_soc_dapm_suspend_check(widget);
971 return widget->inputs;
974 /* signal generator */
975 if (widget->id == snd_soc_dapm_siggen) {
976 widget->inputs = snd_soc_dapm_suspend_check(widget);
977 return widget->inputs;
981 list_for_each_entry(path, &widget->sources, list_sink) {
982 DAPM_UPDATE_STAT(widget, neighbour_checks);
984 if (path->weak)
985 continue;
987 if (path->walking)
988 return 1;
990 if (path->walked)
991 continue;
993 trace_snd_soc_dapm_input_path(widget, path);
995 if (path->source && path->connect) {
996 path->walked = 1;
997 path->walking = 1;
999 /* do we need to add this widget to the list ? */
1000 if (list) {
1001 int err;
1002 err = dapm_list_add_widget(list, path->source);
1003 if (err < 0) {
1004 dev_err(widget->dapm->dev,
1005 "ASoC: could not add widget %s\n",
1006 widget->name);
1007 path->walking = 0;
1008 return con;
1012 con += is_connected_input_ep(path->source, list);
1014 path->walking = 0;
1018 widget->inputs = con;
1020 return con;
1024 * snd_soc_dapm_get_connected_widgets - query audio path and it's widgets.
1025 * @dai: the soc DAI.
1026 * @stream: stream direction.
1027 * @list: list of active widgets for this stream.
1029 * Queries DAPM graph as to whether an valid audio stream path exists for
1030 * the initial stream specified by name. This takes into account
1031 * current mixer and mux kcontrol settings. Creates list of valid widgets.
1033 * Returns the number of valid paths or negative error.
1035 int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
1036 struct snd_soc_dapm_widget_list **list)
1038 struct snd_soc_card *card = dai->card;
1039 int paths;
1041 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
1042 dapm_reset(card);
1044 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
1045 paths = is_connected_output_ep(dai->playback_widget, list);
1046 dapm_clear_walk_output(&card->dapm,
1047 &dai->playback_widget->sinks);
1048 } else {
1049 paths = is_connected_input_ep(dai->capture_widget, list);
1050 dapm_clear_walk_input(&card->dapm,
1051 &dai->capture_widget->sources);
1054 trace_snd_soc_dapm_connected(paths, stream);
1055 mutex_unlock(&card->dapm_mutex);
1057 return paths;
1061 * Handler for regulator supply widget.
1063 int dapm_regulator_event(struct snd_soc_dapm_widget *w,
1064 struct snd_kcontrol *kcontrol, int event)
1066 int ret;
1068 soc_dapm_async_complete(w->dapm);
1070 if (SND_SOC_DAPM_EVENT_ON(event)) {
1071 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
1072 ret = regulator_allow_bypass(w->regulator, false);
1073 if (ret != 0)
1074 dev_warn(w->dapm->dev,
1075 "ASoC: Failed to unbypass %s: %d\n",
1076 w->name, ret);
1079 return regulator_enable(w->regulator);
1080 } else {
1081 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
1082 ret = regulator_allow_bypass(w->regulator, true);
1083 if (ret != 0)
1084 dev_warn(w->dapm->dev,
1085 "ASoC: Failed to bypass %s: %d\n",
1086 w->name, ret);
1089 return regulator_disable_deferred(w->regulator, w->shift);
1092 EXPORT_SYMBOL_GPL(dapm_regulator_event);
1095 * Handler for clock supply widget.
1097 int dapm_clock_event(struct snd_soc_dapm_widget *w,
1098 struct snd_kcontrol *kcontrol, int event)
1100 if (!w->clk)
1101 return -EIO;
1103 soc_dapm_async_complete(w->dapm);
1105 #ifdef CONFIG_HAVE_CLK
1106 if (SND_SOC_DAPM_EVENT_ON(event)) {
1107 return clk_prepare_enable(w->clk);
1108 } else {
1109 clk_disable_unprepare(w->clk);
1110 return 0;
1112 #endif
1113 return 0;
1115 EXPORT_SYMBOL_GPL(dapm_clock_event);
1117 static int dapm_widget_power_check(struct snd_soc_dapm_widget *w)
1119 if (w->power_checked)
1120 return w->new_power;
1122 if (w->force)
1123 w->new_power = 1;
1124 else
1125 w->new_power = w->power_check(w);
1127 w->power_checked = true;
1129 return w->new_power;
1132 /* Generic check to see if a widget should be powered.
1134 static int dapm_generic_check_power(struct snd_soc_dapm_widget *w)
1136 int in, out;
1138 DAPM_UPDATE_STAT(w, power_checks);
1140 in = is_connected_input_ep(w, NULL);
1141 dapm_clear_walk_input(w->dapm, &w->sources);
1142 out = is_connected_output_ep(w, NULL);
1143 dapm_clear_walk_output(w->dapm, &w->sinks);
1144 return out != 0 && in != 0;
1147 /* Check to see if an ADC has power */
1148 static int dapm_adc_check_power(struct snd_soc_dapm_widget *w)
1150 int in;
1152 DAPM_UPDATE_STAT(w, power_checks);
1154 if (w->active) {
1155 in = is_connected_input_ep(w, NULL);
1156 dapm_clear_walk_input(w->dapm, &w->sources);
1157 return in != 0;
1158 } else {
1159 return dapm_generic_check_power(w);
1163 /* Check to see if a DAC has power */
1164 static int dapm_dac_check_power(struct snd_soc_dapm_widget *w)
1166 int out;
1168 DAPM_UPDATE_STAT(w, power_checks);
1170 if (w->active) {
1171 out = is_connected_output_ep(w, NULL);
1172 dapm_clear_walk_output(w->dapm, &w->sinks);
1173 return out != 0;
1174 } else {
1175 return dapm_generic_check_power(w);
1179 /* Check to see if a power supply is needed */
1180 static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
1182 struct snd_soc_dapm_path *path;
1184 DAPM_UPDATE_STAT(w, power_checks);
1186 /* Check if one of our outputs is connected */
1187 list_for_each_entry(path, &w->sinks, list_source) {
1188 DAPM_UPDATE_STAT(w, neighbour_checks);
1190 if (path->weak)
1191 continue;
1193 if (path->connected &&
1194 !path->connected(path->source, path->sink))
1195 continue;
1197 if (!path->sink)
1198 continue;
1200 if (dapm_widget_power_check(path->sink))
1201 return 1;
1204 return 0;
1207 static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
1209 return 1;
1212 static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
1213 struct snd_soc_dapm_widget *b,
1214 bool power_up)
1216 int *sort;
1218 if (power_up)
1219 sort = dapm_up_seq;
1220 else
1221 sort = dapm_down_seq;
1223 if (sort[a->id] != sort[b->id])
1224 return sort[a->id] - sort[b->id];
1225 if (a->subseq != b->subseq) {
1226 if (power_up)
1227 return a->subseq - b->subseq;
1228 else
1229 return b->subseq - a->subseq;
1231 if (a->reg != b->reg)
1232 return a->reg - b->reg;
1233 if (a->dapm != b->dapm)
1234 return (unsigned long)a->dapm - (unsigned long)b->dapm;
1236 return 0;
1239 /* Insert a widget in order into a DAPM power sequence. */
1240 static void dapm_seq_insert(struct snd_soc_dapm_widget *new_widget,
1241 struct list_head *list,
1242 bool power_up)
1244 struct snd_soc_dapm_widget *w;
1246 list_for_each_entry(w, list, power_list)
1247 if (dapm_seq_compare(new_widget, w, power_up) < 0) {
1248 list_add_tail(&new_widget->power_list, &w->power_list);
1249 return;
1252 list_add_tail(&new_widget->power_list, list);
1255 static void dapm_seq_check_event(struct snd_soc_card *card,
1256 struct snd_soc_dapm_widget *w, int event)
1258 const char *ev_name;
1259 int power, ret;
1261 switch (event) {
1262 case SND_SOC_DAPM_PRE_PMU:
1263 ev_name = "PRE_PMU";
1264 power = 1;
1265 break;
1266 case SND_SOC_DAPM_POST_PMU:
1267 ev_name = "POST_PMU";
1268 power = 1;
1269 break;
1270 case SND_SOC_DAPM_PRE_PMD:
1271 ev_name = "PRE_PMD";
1272 power = 0;
1273 break;
1274 case SND_SOC_DAPM_POST_PMD:
1275 ev_name = "POST_PMD";
1276 power = 0;
1277 break;
1278 case SND_SOC_DAPM_WILL_PMU:
1279 ev_name = "WILL_PMU";
1280 power = 1;
1281 break;
1282 case SND_SOC_DAPM_WILL_PMD:
1283 ev_name = "WILL_PMD";
1284 power = 0;
1285 break;
1286 default:
1287 WARN(1, "Unknown event %d\n", event);
1288 return;
1291 if (w->new_power != power)
1292 return;
1294 if (w->event && (w->event_flags & event)) {
1295 pop_dbg(w->dapm->dev, card->pop_time, "pop test : %s %s\n",
1296 w->name, ev_name);
1297 soc_dapm_async_complete(w->dapm);
1298 trace_snd_soc_dapm_widget_event_start(w, event);
1299 ret = w->event(w, NULL, event);
1300 trace_snd_soc_dapm_widget_event_done(w, event);
1301 if (ret < 0)
1302 dev_err(w->dapm->dev, "ASoC: %s: %s event failed: %d\n",
1303 ev_name, w->name, ret);
1307 /* Apply the coalesced changes from a DAPM sequence */
1308 static void dapm_seq_run_coalesced(struct snd_soc_card *card,
1309 struct list_head *pending)
1311 struct snd_soc_dapm_widget *w;
1312 int reg;
1313 unsigned int value = 0;
1314 unsigned int mask = 0;
1316 reg = list_first_entry(pending, struct snd_soc_dapm_widget,
1317 power_list)->reg;
1319 list_for_each_entry(w, pending, power_list) {
1320 WARN_ON(reg != w->reg);
1321 w->power = w->new_power;
1323 mask |= w->mask << w->shift;
1324 if (w->power)
1325 value |= w->on_val << w->shift;
1326 else
1327 value |= w->off_val << w->shift;
1329 pop_dbg(w->dapm->dev, card->pop_time,
1330 "pop test : Queue %s: reg=0x%x, 0x%x/0x%x\n",
1331 w->name, reg, value, mask);
1333 /* Check for events */
1334 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMU);
1335 dapm_seq_check_event(card, w, SND_SOC_DAPM_PRE_PMD);
1338 if (reg >= 0) {
1339 /* Any widget will do, they should all be updating the
1340 * same register.
1342 w = list_first_entry(pending, struct snd_soc_dapm_widget,
1343 power_list);
1345 pop_dbg(w->dapm->dev, card->pop_time,
1346 "pop test : Applying 0x%x/0x%x to %x in %dms\n",
1347 value, mask, reg, card->pop_time);
1348 pop_wait(card->pop_time);
1349 soc_widget_update_bits(w, reg, mask, value);
1352 list_for_each_entry(w, pending, power_list) {
1353 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMU);
1354 dapm_seq_check_event(card, w, SND_SOC_DAPM_POST_PMD);
1358 /* Apply a DAPM power sequence.
1360 * We walk over a pre-sorted list of widgets to apply power to. In
1361 * order to minimise the number of writes to the device required
1362 * multiple widgets will be updated in a single write where possible.
1363 * Currently anything that requires more than a single write is not
1364 * handled.
1366 static void dapm_seq_run(struct snd_soc_card *card,
1367 struct list_head *list, int event, bool power_up)
1369 struct snd_soc_dapm_widget *w, *n;
1370 struct snd_soc_dapm_context *d;
1371 LIST_HEAD(pending);
1372 int cur_sort = -1;
1373 int cur_subseq = -1;
1374 int cur_reg = SND_SOC_NOPM;
1375 struct snd_soc_dapm_context *cur_dapm = NULL;
1376 int ret, i;
1377 int *sort;
1379 if (power_up)
1380 sort = dapm_up_seq;
1381 else
1382 sort = dapm_down_seq;
1384 list_for_each_entry_safe(w, n, list, power_list) {
1385 ret = 0;
1387 /* Do we need to apply any queued changes? */
1388 if (sort[w->id] != cur_sort || w->reg != cur_reg ||
1389 w->dapm != cur_dapm || w->subseq != cur_subseq) {
1390 if (!list_empty(&pending))
1391 dapm_seq_run_coalesced(card, &pending);
1393 if (cur_dapm && cur_dapm->seq_notifier) {
1394 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1395 if (sort[i] == cur_sort)
1396 cur_dapm->seq_notifier(cur_dapm,
1398 cur_subseq);
1401 if (cur_dapm && w->dapm != cur_dapm)
1402 soc_dapm_async_complete(cur_dapm);
1404 INIT_LIST_HEAD(&pending);
1405 cur_sort = -1;
1406 cur_subseq = INT_MIN;
1407 cur_reg = SND_SOC_NOPM;
1408 cur_dapm = NULL;
1411 switch (w->id) {
1412 case snd_soc_dapm_pre:
1413 if (!w->event)
1414 list_for_each_entry_safe_continue(w, n, list,
1415 power_list);
1417 if (event == SND_SOC_DAPM_STREAM_START)
1418 ret = w->event(w,
1419 NULL, SND_SOC_DAPM_PRE_PMU);
1420 else if (event == SND_SOC_DAPM_STREAM_STOP)
1421 ret = w->event(w,
1422 NULL, SND_SOC_DAPM_PRE_PMD);
1423 break;
1425 case snd_soc_dapm_post:
1426 if (!w->event)
1427 list_for_each_entry_safe_continue(w, n, list,
1428 power_list);
1430 if (event == SND_SOC_DAPM_STREAM_START)
1431 ret = w->event(w,
1432 NULL, SND_SOC_DAPM_POST_PMU);
1433 else if (event == SND_SOC_DAPM_STREAM_STOP)
1434 ret = w->event(w,
1435 NULL, SND_SOC_DAPM_POST_PMD);
1436 break;
1438 default:
1439 /* Queue it up for application */
1440 cur_sort = sort[w->id];
1441 cur_subseq = w->subseq;
1442 cur_reg = w->reg;
1443 cur_dapm = w->dapm;
1444 list_move(&w->power_list, &pending);
1445 break;
1448 if (ret < 0)
1449 dev_err(w->dapm->dev,
1450 "ASoC: Failed to apply widget power: %d\n", ret);
1453 if (!list_empty(&pending))
1454 dapm_seq_run_coalesced(card, &pending);
1456 if (cur_dapm && cur_dapm->seq_notifier) {
1457 for (i = 0; i < ARRAY_SIZE(dapm_up_seq); i++)
1458 if (sort[i] == cur_sort)
1459 cur_dapm->seq_notifier(cur_dapm,
1460 i, cur_subseq);
1463 list_for_each_entry(d, &card->dapm_list, list) {
1464 soc_dapm_async_complete(d);
1468 static void dapm_widget_update(struct snd_soc_card *card)
1470 struct snd_soc_dapm_update *update = card->update;
1471 struct snd_soc_dapm_widget_list *wlist;
1472 struct snd_soc_dapm_widget *w = NULL;
1473 unsigned int wi;
1474 int ret;
1476 if (!update || !dapm_kcontrol_is_powered(update->kcontrol))
1477 return;
1479 wlist = dapm_kcontrol_get_wlist(update->kcontrol);
1481 for (wi = 0; wi < wlist->num_widgets; wi++) {
1482 w = wlist->widgets[wi];
1484 if (w->event && (w->event_flags & SND_SOC_DAPM_PRE_REG)) {
1485 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_PRE_REG);
1486 if (ret != 0)
1487 dev_err(w->dapm->dev, "ASoC: %s DAPM pre-event failed: %d\n",
1488 w->name, ret);
1492 if (!w)
1493 return;
1495 ret = soc_widget_update_bits(w, update->reg, update->mask, update->val);
1496 if (ret < 0)
1497 dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
1498 w->name, ret);
1500 for (wi = 0; wi < wlist->num_widgets; wi++) {
1501 w = wlist->widgets[wi];
1503 if (w->event && (w->event_flags & SND_SOC_DAPM_POST_REG)) {
1504 ret = w->event(w, update->kcontrol, SND_SOC_DAPM_POST_REG);
1505 if (ret != 0)
1506 dev_err(w->dapm->dev, "ASoC: %s DAPM post-event failed: %d\n",
1507 w->name, ret);
1512 /* Async callback run prior to DAPM sequences - brings to _PREPARE if
1513 * they're changing state.
1515 static void dapm_pre_sequence_async(void *data, async_cookie_t cookie)
1517 struct snd_soc_dapm_context *d = data;
1518 int ret;
1520 /* If we're off and we're not supposed to be go into STANDBY */
1521 if (d->bias_level == SND_SOC_BIAS_OFF &&
1522 d->target_bias_level != SND_SOC_BIAS_OFF) {
1523 if (d->dev)
1524 pm_runtime_get_sync(d->dev);
1526 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1527 if (ret != 0)
1528 dev_err(d->dev,
1529 "ASoC: Failed to turn on bias: %d\n", ret);
1532 /* Prepare for a transition to ON or away from ON */
1533 if ((d->target_bias_level == SND_SOC_BIAS_ON &&
1534 d->bias_level != SND_SOC_BIAS_ON) ||
1535 (d->target_bias_level != SND_SOC_BIAS_ON &&
1536 d->bias_level == SND_SOC_BIAS_ON)) {
1537 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_PREPARE);
1538 if (ret != 0)
1539 dev_err(d->dev,
1540 "ASoC: Failed to prepare bias: %d\n", ret);
1544 /* Async callback run prior to DAPM sequences - brings to their final
1545 * state.
1547 static void dapm_post_sequence_async(void *data, async_cookie_t cookie)
1549 struct snd_soc_dapm_context *d = data;
1550 int ret;
1552 /* If we just powered the last thing off drop to standby bias */
1553 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1554 (d->target_bias_level == SND_SOC_BIAS_STANDBY ||
1555 d->target_bias_level == SND_SOC_BIAS_OFF)) {
1556 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_STANDBY);
1557 if (ret != 0)
1558 dev_err(d->dev, "ASoC: Failed to apply standby bias: %d\n",
1559 ret);
1562 /* If we're in standby and can support bias off then do that */
1563 if (d->bias_level == SND_SOC_BIAS_STANDBY &&
1564 d->target_bias_level == SND_SOC_BIAS_OFF) {
1565 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_OFF);
1566 if (ret != 0)
1567 dev_err(d->dev, "ASoC: Failed to turn off bias: %d\n",
1568 ret);
1570 if (d->dev)
1571 pm_runtime_put(d->dev);
1574 /* If we just powered up then move to active bias */
1575 if (d->bias_level == SND_SOC_BIAS_PREPARE &&
1576 d->target_bias_level == SND_SOC_BIAS_ON) {
1577 ret = snd_soc_dapm_set_bias_level(d, SND_SOC_BIAS_ON);
1578 if (ret != 0)
1579 dev_err(d->dev, "ASoC: Failed to apply active bias: %d\n",
1580 ret);
1584 static void dapm_widget_set_peer_power(struct snd_soc_dapm_widget *peer,
1585 bool power, bool connect)
1587 /* If a connection is being made or broken then that update
1588 * will have marked the peer dirty, otherwise the widgets are
1589 * not connected and this update has no impact. */
1590 if (!connect)
1591 return;
1593 /* If the peer is already in the state we're moving to then we
1594 * won't have an impact on it. */
1595 if (power != peer->power)
1596 dapm_mark_dirty(peer, "peer state change");
1599 static void dapm_widget_set_power(struct snd_soc_dapm_widget *w, bool power,
1600 struct list_head *up_list,
1601 struct list_head *down_list)
1603 struct snd_soc_dapm_path *path;
1605 if (w->power == power)
1606 return;
1608 trace_snd_soc_dapm_widget_power(w, power);
1610 /* If we changed our power state perhaps our neigbours changed
1611 * also.
1613 list_for_each_entry(path, &w->sources, list_sink) {
1614 if (path->source) {
1615 dapm_widget_set_peer_power(path->source, power,
1616 path->connect);
1619 switch (w->id) {
1620 case snd_soc_dapm_supply:
1621 case snd_soc_dapm_regulator_supply:
1622 case snd_soc_dapm_clock_supply:
1623 case snd_soc_dapm_kcontrol:
1624 /* Supplies can't affect their outputs, only their inputs */
1625 break;
1626 default:
1627 list_for_each_entry(path, &w->sinks, list_source) {
1628 if (path->sink) {
1629 dapm_widget_set_peer_power(path->sink, power,
1630 path->connect);
1633 break;
1636 if (power)
1637 dapm_seq_insert(w, up_list, true);
1638 else
1639 dapm_seq_insert(w, down_list, false);
1642 static void dapm_power_one_widget(struct snd_soc_dapm_widget *w,
1643 struct list_head *up_list,
1644 struct list_head *down_list)
1646 int power;
1648 switch (w->id) {
1649 case snd_soc_dapm_pre:
1650 dapm_seq_insert(w, down_list, false);
1651 break;
1652 case snd_soc_dapm_post:
1653 dapm_seq_insert(w, up_list, true);
1654 break;
1656 default:
1657 power = dapm_widget_power_check(w);
1659 dapm_widget_set_power(w, power, up_list, down_list);
1660 break;
1665 * Scan each dapm widget for complete audio path.
1666 * A complete path is a route that has valid endpoints i.e.:-
1668 * o DAC to output pin.
1669 * o Input Pin to ADC.
1670 * o Input pin to Output pin (bypass, sidetone)
1671 * o DAC to ADC (loopback).
1673 static int dapm_power_widgets(struct snd_soc_card *card, int event)
1675 struct snd_soc_dapm_widget *w;
1676 struct snd_soc_dapm_context *d;
1677 LIST_HEAD(up_list);
1678 LIST_HEAD(down_list);
1679 ASYNC_DOMAIN_EXCLUSIVE(async_domain);
1680 enum snd_soc_bias_level bias;
1682 lockdep_assert_held(&card->dapm_mutex);
1684 trace_snd_soc_dapm_start(card);
1686 list_for_each_entry(d, &card->dapm_list, list) {
1687 if (d->idle_bias_off)
1688 d->target_bias_level = SND_SOC_BIAS_OFF;
1689 else
1690 d->target_bias_level = SND_SOC_BIAS_STANDBY;
1693 dapm_reset(card);
1695 /* Check which widgets we need to power and store them in
1696 * lists indicating if they should be powered up or down. We
1697 * only check widgets that have been flagged as dirty but note
1698 * that new widgets may be added to the dirty list while we
1699 * iterate.
1701 list_for_each_entry(w, &card->dapm_dirty, dirty) {
1702 dapm_power_one_widget(w, &up_list, &down_list);
1705 list_for_each_entry(w, &card->widgets, list) {
1706 switch (w->id) {
1707 case snd_soc_dapm_pre:
1708 case snd_soc_dapm_post:
1709 /* These widgets always need to be powered */
1710 break;
1711 default:
1712 list_del_init(&w->dirty);
1713 break;
1716 if (w->new_power) {
1717 d = w->dapm;
1719 /* Supplies and micbiases only bring the
1720 * context up to STANDBY as unless something
1721 * else is active and passing audio they
1722 * generally don't require full power. Signal
1723 * generators are virtual pins and have no
1724 * power impact themselves.
1726 switch (w->id) {
1727 case snd_soc_dapm_siggen:
1728 case snd_soc_dapm_vmid:
1729 break;
1730 case snd_soc_dapm_supply:
1731 case snd_soc_dapm_regulator_supply:
1732 case snd_soc_dapm_clock_supply:
1733 case snd_soc_dapm_micbias:
1734 if (d->target_bias_level < SND_SOC_BIAS_STANDBY)
1735 d->target_bias_level = SND_SOC_BIAS_STANDBY;
1736 break;
1737 default:
1738 d->target_bias_level = SND_SOC_BIAS_ON;
1739 break;
1745 /* Force all contexts in the card to the same bias state if
1746 * they're not ground referenced.
1748 bias = SND_SOC_BIAS_OFF;
1749 list_for_each_entry(d, &card->dapm_list, list)
1750 if (d->target_bias_level > bias)
1751 bias = d->target_bias_level;
1752 list_for_each_entry(d, &card->dapm_list, list)
1753 if (!d->idle_bias_off)
1754 d->target_bias_level = bias;
1756 trace_snd_soc_dapm_walk_done(card);
1758 /* Run card bias changes at first */
1759 dapm_pre_sequence_async(&card->dapm, 0);
1760 /* Run other bias changes in parallel */
1761 list_for_each_entry(d, &card->dapm_list, list) {
1762 if (d != &card->dapm)
1763 async_schedule_domain(dapm_pre_sequence_async, d,
1764 &async_domain);
1766 async_synchronize_full_domain(&async_domain);
1768 list_for_each_entry(w, &down_list, power_list) {
1769 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMD);
1772 list_for_each_entry(w, &up_list, power_list) {
1773 dapm_seq_check_event(card, w, SND_SOC_DAPM_WILL_PMU);
1776 /* Power down widgets first; try to avoid amplifying pops. */
1777 dapm_seq_run(card, &down_list, event, false);
1779 dapm_widget_update(card);
1781 /* Now power up. */
1782 dapm_seq_run(card, &up_list, event, true);
1784 /* Run all the bias changes in parallel */
1785 list_for_each_entry(d, &card->dapm_list, list) {
1786 if (d != &card->dapm)
1787 async_schedule_domain(dapm_post_sequence_async, d,
1788 &async_domain);
1790 async_synchronize_full_domain(&async_domain);
1791 /* Run card bias changes at last */
1792 dapm_post_sequence_async(&card->dapm, 0);
1794 /* do we need to notify any clients that DAPM event is complete */
1795 list_for_each_entry(d, &card->dapm_list, list) {
1796 if (d->stream_event)
1797 d->stream_event(d, event);
1800 pop_dbg(card->dev, card->pop_time,
1801 "DAPM sequencing finished, waiting %dms\n", card->pop_time);
1802 pop_wait(card->pop_time);
1804 trace_snd_soc_dapm_done(card);
1806 return 0;
1809 #ifdef CONFIG_DEBUG_FS
1810 static ssize_t dapm_widget_power_read_file(struct file *file,
1811 char __user *user_buf,
1812 size_t count, loff_t *ppos)
1814 struct snd_soc_dapm_widget *w = file->private_data;
1815 char *buf;
1816 int in, out;
1817 ssize_t ret;
1818 struct snd_soc_dapm_path *p = NULL;
1820 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1821 if (!buf)
1822 return -ENOMEM;
1824 in = is_connected_input_ep(w, NULL);
1825 dapm_clear_walk_input(w->dapm, &w->sources);
1826 out = is_connected_output_ep(w, NULL);
1827 dapm_clear_walk_output(w->dapm, &w->sinks);
1829 ret = snprintf(buf, PAGE_SIZE, "%s: %s%s in %d out %d",
1830 w->name, w->power ? "On" : "Off",
1831 w->force ? " (forced)" : "", in, out);
1833 if (w->reg >= 0)
1834 ret += snprintf(buf + ret, PAGE_SIZE - ret,
1835 " - R%d(0x%x) mask 0x%x",
1836 w->reg, w->reg, w->mask << w->shift);
1838 ret += snprintf(buf + ret, PAGE_SIZE - ret, "\n");
1840 if (w->sname)
1841 ret += snprintf(buf + ret, PAGE_SIZE - ret, " stream %s %s\n",
1842 w->sname,
1843 w->active ? "active" : "inactive");
1845 list_for_each_entry(p, &w->sources, list_sink) {
1846 if (p->connected && !p->connected(w, p->source))
1847 continue;
1849 if (p->connect)
1850 ret += snprintf(buf + ret, PAGE_SIZE - ret,
1851 " in \"%s\" \"%s\"\n",
1852 p->name ? p->name : "static",
1853 p->source->name);
1855 list_for_each_entry(p, &w->sinks, list_source) {
1856 if (p->connected && !p->connected(w, p->sink))
1857 continue;
1859 if (p->connect)
1860 ret += snprintf(buf + ret, PAGE_SIZE - ret,
1861 " out \"%s\" \"%s\"\n",
1862 p->name ? p->name : "static",
1863 p->sink->name);
1866 ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
1868 kfree(buf);
1869 return ret;
1872 static const struct file_operations dapm_widget_power_fops = {
1873 .open = simple_open,
1874 .read = dapm_widget_power_read_file,
1875 .llseek = default_llseek,
1878 static ssize_t dapm_bias_read_file(struct file *file, char __user *user_buf,
1879 size_t count, loff_t *ppos)
1881 struct snd_soc_dapm_context *dapm = file->private_data;
1882 char *level;
1884 switch (dapm->bias_level) {
1885 case SND_SOC_BIAS_ON:
1886 level = "On\n";
1887 break;
1888 case SND_SOC_BIAS_PREPARE:
1889 level = "Prepare\n";
1890 break;
1891 case SND_SOC_BIAS_STANDBY:
1892 level = "Standby\n";
1893 break;
1894 case SND_SOC_BIAS_OFF:
1895 level = "Off\n";
1896 break;
1897 default:
1898 WARN(1, "Unknown bias_level %d\n", dapm->bias_level);
1899 level = "Unknown\n";
1900 break;
1903 return simple_read_from_buffer(user_buf, count, ppos, level,
1904 strlen(level));
1907 static const struct file_operations dapm_bias_fops = {
1908 .open = simple_open,
1909 .read = dapm_bias_read_file,
1910 .llseek = default_llseek,
1913 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
1914 struct dentry *parent)
1916 struct dentry *d;
1918 dapm->debugfs_dapm = debugfs_create_dir("dapm", parent);
1920 if (!dapm->debugfs_dapm) {
1921 dev_warn(dapm->dev,
1922 "ASoC: Failed to create DAPM debugfs directory\n");
1923 return;
1926 d = debugfs_create_file("bias_level", 0444,
1927 dapm->debugfs_dapm, dapm,
1928 &dapm_bias_fops);
1929 if (!d)
1930 dev_warn(dapm->dev,
1931 "ASoC: Failed to create bias level debugfs file\n");
1934 static void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
1936 struct snd_soc_dapm_context *dapm = w->dapm;
1937 struct dentry *d;
1939 if (!dapm->debugfs_dapm || !w->name)
1940 return;
1942 d = debugfs_create_file(w->name, 0444,
1943 dapm->debugfs_dapm, w,
1944 &dapm_widget_power_fops);
1945 if (!d)
1946 dev_warn(w->dapm->dev,
1947 "ASoC: Failed to create %s debugfs file\n",
1948 w->name);
1951 static void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
1953 debugfs_remove_recursive(dapm->debugfs_dapm);
1956 #else
1957 void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,
1958 struct dentry *parent)
1962 static inline void dapm_debugfs_add_widget(struct snd_soc_dapm_widget *w)
1966 static inline void dapm_debugfs_cleanup(struct snd_soc_dapm_context *dapm)
1970 #endif
1972 /* test and update the power status of a mux widget */
1973 static int soc_dapm_mux_update_power(struct snd_soc_card *card,
1974 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e)
1976 struct snd_soc_dapm_path *path;
1977 int found = 0;
1979 lockdep_assert_held(&card->dapm_mutex);
1981 /* find dapm widget path assoc with kcontrol */
1982 dapm_kcontrol_for_each_path(path, kcontrol) {
1983 if (!path->name || !e->texts[mux])
1984 continue;
1986 found = 1;
1987 /* we now need to match the string in the enum to the path */
1988 if (!(strcmp(path->name, e->texts[mux]))) {
1989 path->connect = 1; /* new connection */
1990 dapm_mark_dirty(path->source, "mux connection");
1991 } else {
1992 if (path->connect)
1993 dapm_mark_dirty(path->source,
1994 "mux disconnection");
1995 path->connect = 0; /* old connection must be powered down */
1997 dapm_mark_dirty(path->sink, "mux change");
2000 if (found)
2001 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
2003 return found;
2006 int snd_soc_dapm_mux_update_power(struct snd_soc_dapm_context *dapm,
2007 struct snd_kcontrol *kcontrol, int mux, struct soc_enum *e,
2008 struct snd_soc_dapm_update *update)
2010 struct snd_soc_card *card = dapm->card;
2011 int ret;
2013 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2014 card->update = update;
2015 ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
2016 card->update = NULL;
2017 mutex_unlock(&card->dapm_mutex);
2018 if (ret > 0)
2019 soc_dpcm_runtime_update(card);
2020 return ret;
2022 EXPORT_SYMBOL_GPL(snd_soc_dapm_mux_update_power);
2024 /* test and update the power status of a mixer or switch widget */
2025 static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
2026 struct snd_kcontrol *kcontrol, int connect)
2028 struct snd_soc_dapm_path *path;
2029 int found = 0;
2031 lockdep_assert_held(&card->dapm_mutex);
2033 /* find dapm widget path assoc with kcontrol */
2034 dapm_kcontrol_for_each_path(path, kcontrol) {
2035 found = 1;
2036 path->connect = connect;
2037 dapm_mark_dirty(path->source, "mixer connection");
2038 dapm_mark_dirty(path->sink, "mixer update");
2041 if (found)
2042 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
2044 return found;
2047 int snd_soc_dapm_mixer_update_power(struct snd_soc_dapm_context *dapm,
2048 struct snd_kcontrol *kcontrol, int connect,
2049 struct snd_soc_dapm_update *update)
2051 struct snd_soc_card *card = dapm->card;
2052 int ret;
2054 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2055 card->update = update;
2056 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
2057 card->update = NULL;
2058 mutex_unlock(&card->dapm_mutex);
2059 if (ret > 0)
2060 soc_dpcm_runtime_update(card);
2061 return ret;
2063 EXPORT_SYMBOL_GPL(snd_soc_dapm_mixer_update_power);
2065 /* show dapm widget status in sys fs */
2066 static ssize_t dapm_widget_show(struct device *dev,
2067 struct device_attribute *attr, char *buf)
2069 struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
2070 struct snd_soc_codec *codec =rtd->codec;
2071 struct snd_soc_dapm_widget *w;
2072 int count = 0;
2073 char *state = "not set";
2075 list_for_each_entry(w, &codec->card->widgets, list) {
2076 if (w->dapm != &codec->dapm)
2077 continue;
2079 /* only display widgets that burnm power */
2080 switch (w->id) {
2081 case snd_soc_dapm_hp:
2082 case snd_soc_dapm_mic:
2083 case snd_soc_dapm_spk:
2084 case snd_soc_dapm_line:
2085 case snd_soc_dapm_micbias:
2086 case snd_soc_dapm_dac:
2087 case snd_soc_dapm_adc:
2088 case snd_soc_dapm_pga:
2089 case snd_soc_dapm_out_drv:
2090 case snd_soc_dapm_mixer:
2091 case snd_soc_dapm_mixer_named_ctl:
2092 case snd_soc_dapm_supply:
2093 case snd_soc_dapm_regulator_supply:
2094 case snd_soc_dapm_clock_supply:
2095 if (w->name)
2096 count += sprintf(buf + count, "%s: %s\n",
2097 w->name, w->power ? "On":"Off");
2098 break;
2099 default:
2100 break;
2104 switch (codec->dapm.bias_level) {
2105 case SND_SOC_BIAS_ON:
2106 state = "On";
2107 break;
2108 case SND_SOC_BIAS_PREPARE:
2109 state = "Prepare";
2110 break;
2111 case SND_SOC_BIAS_STANDBY:
2112 state = "Standby";
2113 break;
2114 case SND_SOC_BIAS_OFF:
2115 state = "Off";
2116 break;
2118 count += sprintf(buf + count, "PM State: %s\n", state);
2120 return count;
2123 static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);
2125 int snd_soc_dapm_sys_add(struct device *dev)
2127 return device_create_file(dev, &dev_attr_dapm_widget);
2130 static void snd_soc_dapm_sys_remove(struct device *dev)
2132 device_remove_file(dev, &dev_attr_dapm_widget);
2135 static void dapm_free_path(struct snd_soc_dapm_path *path)
2137 list_del(&path->list_sink);
2138 list_del(&path->list_source);
2139 list_del(&path->list_kcontrol);
2140 list_del(&path->list);
2141 kfree(path);
2144 /* free all dapm widgets and resources */
2145 static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
2147 struct snd_soc_dapm_widget *w, *next_w;
2148 struct snd_soc_dapm_path *p, *next_p;
2150 list_for_each_entry_safe(w, next_w, &dapm->card->widgets, list) {
2151 if (w->dapm != dapm)
2152 continue;
2153 list_del(&w->list);
2155 * remove source and sink paths associated to this widget.
2156 * While removing the path, remove reference to it from both
2157 * source and sink widgets so that path is removed only once.
2159 list_for_each_entry_safe(p, next_p, &w->sources, list_sink)
2160 dapm_free_path(p);
2162 list_for_each_entry_safe(p, next_p, &w->sinks, list_source)
2163 dapm_free_path(p);
2165 kfree(w->kcontrols);
2166 kfree(w->name);
2167 kfree(w);
2171 static struct snd_soc_dapm_widget *dapm_find_widget(
2172 struct snd_soc_dapm_context *dapm, const char *pin,
2173 bool search_other_contexts)
2175 struct snd_soc_dapm_widget *w;
2176 struct snd_soc_dapm_widget *fallback = NULL;
2178 list_for_each_entry(w, &dapm->card->widgets, list) {
2179 if (!strcmp(w->name, pin)) {
2180 if (w->dapm == dapm)
2181 return w;
2182 else
2183 fallback = w;
2187 if (search_other_contexts)
2188 return fallback;
2190 return NULL;
2193 static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
2194 const char *pin, int status)
2196 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
2198 dapm_assert_locked(dapm);
2200 if (!w) {
2201 dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
2202 return -EINVAL;
2205 if (w->connected != status)
2206 dapm_mark_dirty(w, "pin configuration");
2208 w->connected = status;
2209 if (status == 0)
2210 w->force = 0;
2212 return 0;
2216 * snd_soc_dapm_sync_unlocked - scan and power dapm paths
2217 * @dapm: DAPM context
2219 * Walks all dapm audio paths and powers widgets according to their
2220 * stream or path usage.
2222 * Requires external locking.
2224 * Returns 0 for success.
2226 int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
2229 * Suppress early reports (eg, jacks syncing their state) to avoid
2230 * silly DAPM runs during card startup.
2232 if (!dapm->card || !dapm->card->instantiated)
2233 return 0;
2235 return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
2237 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
2240 * snd_soc_dapm_sync - scan and power dapm paths
2241 * @dapm: DAPM context
2243 * Walks all dapm audio paths and powers widgets according to their
2244 * stream or path usage.
2246 * Returns 0 for success.
2248 int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
2250 int ret;
2252 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2253 ret = snd_soc_dapm_sync_unlocked(dapm);
2254 mutex_unlock(&dapm->card->dapm_mutex);
2255 return ret;
2257 EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);
2259 static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
2260 struct snd_soc_dapm_widget *wsource, struct snd_soc_dapm_widget *wsink,
2261 const char *control,
2262 int (*connected)(struct snd_soc_dapm_widget *source,
2263 struct snd_soc_dapm_widget *sink))
2265 struct snd_soc_dapm_path *path;
2266 int ret;
2268 path = kzalloc(sizeof(struct snd_soc_dapm_path), GFP_KERNEL);
2269 if (!path)
2270 return -ENOMEM;
2272 path->source = wsource;
2273 path->sink = wsink;
2274 path->connected = connected;
2275 INIT_LIST_HEAD(&path->list);
2276 INIT_LIST_HEAD(&path->list_kcontrol);
2277 INIT_LIST_HEAD(&path->list_source);
2278 INIT_LIST_HEAD(&path->list_sink);
2280 /* check for external widgets */
2281 if (wsink->id == snd_soc_dapm_input) {
2282 if (wsource->id == snd_soc_dapm_micbias ||
2283 wsource->id == snd_soc_dapm_mic ||
2284 wsource->id == snd_soc_dapm_line ||
2285 wsource->id == snd_soc_dapm_output)
2286 wsink->ext = 1;
2288 if (wsource->id == snd_soc_dapm_output) {
2289 if (wsink->id == snd_soc_dapm_spk ||
2290 wsink->id == snd_soc_dapm_hp ||
2291 wsink->id == snd_soc_dapm_line ||
2292 wsink->id == snd_soc_dapm_input)
2293 wsource->ext = 1;
2296 dapm_mark_dirty(wsource, "Route added");
2297 dapm_mark_dirty(wsink, "Route added");
2299 /* connect static paths */
2300 if (control == NULL) {
2301 list_add(&path->list, &dapm->card->paths);
2302 list_add(&path->list_sink, &wsink->sources);
2303 list_add(&path->list_source, &wsource->sinks);
2304 path->connect = 1;
2305 return 0;
2308 /* connect dynamic paths */
2309 switch (wsink->id) {
2310 case snd_soc_dapm_adc:
2311 case snd_soc_dapm_dac:
2312 case snd_soc_dapm_pga:
2313 case snd_soc_dapm_out_drv:
2314 case snd_soc_dapm_input:
2315 case snd_soc_dapm_output:
2316 case snd_soc_dapm_siggen:
2317 case snd_soc_dapm_micbias:
2318 case snd_soc_dapm_vmid:
2319 case snd_soc_dapm_pre:
2320 case snd_soc_dapm_post:
2321 case snd_soc_dapm_supply:
2322 case snd_soc_dapm_regulator_supply:
2323 case snd_soc_dapm_clock_supply:
2324 case snd_soc_dapm_aif_in:
2325 case snd_soc_dapm_aif_out:
2326 case snd_soc_dapm_dai_in:
2327 case snd_soc_dapm_dai_out:
2328 case snd_soc_dapm_dai_link:
2329 case snd_soc_dapm_kcontrol:
2330 list_add(&path->list, &dapm->card->paths);
2331 list_add(&path->list_sink, &wsink->sources);
2332 list_add(&path->list_source, &wsource->sinks);
2333 path->connect = 1;
2334 return 0;
2335 case snd_soc_dapm_mux:
2336 ret = dapm_connect_mux(dapm, wsource, wsink, path, control,
2337 &wsink->kcontrol_news[0]);
2338 if (ret != 0)
2339 goto err;
2340 break;
2341 case snd_soc_dapm_switch:
2342 case snd_soc_dapm_mixer:
2343 case snd_soc_dapm_mixer_named_ctl:
2344 ret = dapm_connect_mixer(dapm, wsource, wsink, path, control);
2345 if (ret != 0)
2346 goto err;
2347 break;
2348 case snd_soc_dapm_hp:
2349 case snd_soc_dapm_mic:
2350 case snd_soc_dapm_line:
2351 case snd_soc_dapm_spk:
2352 list_add(&path->list, &dapm->card->paths);
2353 list_add(&path->list_sink, &wsink->sources);
2354 list_add(&path->list_source, &wsource->sinks);
2355 path->connect = 0;
2356 return 0;
2359 return 0;
2360 err:
2361 kfree(path);
2362 return ret;
2365 static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
2366 const struct snd_soc_dapm_route *route)
2368 struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
2369 struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
2370 const char *sink;
2371 const char *source;
2372 char prefixed_sink[80];
2373 char prefixed_source[80];
2374 int ret;
2376 if (dapm->codec && dapm->codec->name_prefix) {
2377 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
2378 dapm->codec->name_prefix, route->sink);
2379 sink = prefixed_sink;
2380 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
2381 dapm->codec->name_prefix, route->source);
2382 source = prefixed_source;
2383 } else {
2384 sink = route->sink;
2385 source = route->source;
2389 * find src and dest widgets over all widgets but favor a widget from
2390 * current DAPM context
2392 list_for_each_entry(w, &dapm->card->widgets, list) {
2393 if (!wsink && !(strcmp(w->name, sink))) {
2394 wtsink = w;
2395 if (w->dapm == dapm)
2396 wsink = w;
2397 continue;
2399 if (!wsource && !(strcmp(w->name, source))) {
2400 wtsource = w;
2401 if (w->dapm == dapm)
2402 wsource = w;
2405 /* use widget from another DAPM context if not found from this */
2406 if (!wsink)
2407 wsink = wtsink;
2408 if (!wsource)
2409 wsource = wtsource;
2411 if (wsource == NULL) {
2412 dev_err(dapm->dev, "ASoC: no source widget found for %s\n",
2413 route->source);
2414 return -ENODEV;
2416 if (wsink == NULL) {
2417 dev_err(dapm->dev, "ASoC: no sink widget found for %s\n",
2418 route->sink);
2419 return -ENODEV;
2422 ret = snd_soc_dapm_add_path(dapm, wsource, wsink, route->control,
2423 route->connected);
2424 if (ret)
2425 goto err;
2427 return 0;
2428 err:
2429 dev_warn(dapm->dev, "ASoC: no dapm match for %s --> %s --> %s\n",
2430 source, route->control, sink);
2431 return ret;
2434 static int snd_soc_dapm_del_route(struct snd_soc_dapm_context *dapm,
2435 const struct snd_soc_dapm_route *route)
2437 struct snd_soc_dapm_path *path, *p;
2438 const char *sink;
2439 const char *source;
2440 char prefixed_sink[80];
2441 char prefixed_source[80];
2443 if (route->control) {
2444 dev_err(dapm->dev,
2445 "ASoC: Removal of routes with controls not supported\n");
2446 return -EINVAL;
2449 if (dapm->codec && dapm->codec->name_prefix) {
2450 snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
2451 dapm->codec->name_prefix, route->sink);
2452 sink = prefixed_sink;
2453 snprintf(prefixed_source, sizeof(prefixed_source), "%s %s",
2454 dapm->codec->name_prefix, route->source);
2455 source = prefixed_source;
2456 } else {
2457 sink = route->sink;
2458 source = route->source;
2461 path = NULL;
2462 list_for_each_entry(p, &dapm->card->paths, list) {
2463 if (strcmp(p->source->name, source) != 0)
2464 continue;
2465 if (strcmp(p->sink->name, sink) != 0)
2466 continue;
2467 path = p;
2468 break;
2471 if (path) {
2472 dapm_mark_dirty(path->source, "Route removed");
2473 dapm_mark_dirty(path->sink, "Route removed");
2475 dapm_free_path(path);
2476 } else {
2477 dev_warn(dapm->dev, "ASoC: Route %s->%s does not exist\n",
2478 source, sink);
2481 return 0;
2485 * snd_soc_dapm_add_routes - Add routes between DAPM widgets
2486 * @dapm: DAPM context
2487 * @route: audio routes
2488 * @num: number of routes
2490 * Connects 2 dapm widgets together via a named audio path. The sink is
2491 * the widget receiving the audio signal, whilst the source is the sender
2492 * of the audio signal.
2494 * Returns 0 for success else error. On error all resources can be freed
2495 * with a call to snd_soc_card_free().
2497 int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
2498 const struct snd_soc_dapm_route *route, int num)
2500 int i, r, ret = 0;
2502 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2503 for (i = 0; i < num; i++) {
2504 r = snd_soc_dapm_add_route(dapm, route);
2505 if (r < 0) {
2506 dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
2507 route->source,
2508 route->control ? route->control : "direct",
2509 route->sink);
2510 ret = r;
2512 route++;
2514 mutex_unlock(&dapm->card->dapm_mutex);
2516 return ret;
2518 EXPORT_SYMBOL_GPL(snd_soc_dapm_add_routes);
2521 * snd_soc_dapm_del_routes - Remove routes between DAPM widgets
2522 * @dapm: DAPM context
2523 * @route: audio routes
2524 * @num: number of routes
2526 * Removes routes from the DAPM context.
2528 int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
2529 const struct snd_soc_dapm_route *route, int num)
2531 int i, ret = 0;
2533 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2534 for (i = 0; i < num; i++) {
2535 snd_soc_dapm_del_route(dapm, route);
2536 route++;
2538 mutex_unlock(&dapm->card->dapm_mutex);
2540 return ret;
2542 EXPORT_SYMBOL_GPL(snd_soc_dapm_del_routes);
2544 static int snd_soc_dapm_weak_route(struct snd_soc_dapm_context *dapm,
2545 const struct snd_soc_dapm_route *route)
2547 struct snd_soc_dapm_widget *source = dapm_find_widget(dapm,
2548 route->source,
2549 true);
2550 struct snd_soc_dapm_widget *sink = dapm_find_widget(dapm,
2551 route->sink,
2552 true);
2553 struct snd_soc_dapm_path *path;
2554 int count = 0;
2556 if (!source) {
2557 dev_err(dapm->dev, "ASoC: Unable to find source %s for weak route\n",
2558 route->source);
2559 return -ENODEV;
2562 if (!sink) {
2563 dev_err(dapm->dev, "ASoC: Unable to find sink %s for weak route\n",
2564 route->sink);
2565 return -ENODEV;
2568 if (route->control || route->connected)
2569 dev_warn(dapm->dev, "ASoC: Ignoring control for weak route %s->%s\n",
2570 route->source, route->sink);
2572 list_for_each_entry(path, &source->sinks, list_source) {
2573 if (path->sink == sink) {
2574 path->weak = 1;
2575 count++;
2579 if (count == 0)
2580 dev_err(dapm->dev, "ASoC: No path found for weak route %s->%s\n",
2581 route->source, route->sink);
2582 if (count > 1)
2583 dev_warn(dapm->dev, "ASoC: %d paths found for weak route %s->%s\n",
2584 count, route->source, route->sink);
2586 return 0;
2590 * snd_soc_dapm_weak_routes - Mark routes between DAPM widgets as weak
2591 * @dapm: DAPM context
2592 * @route: audio routes
2593 * @num: number of routes
2595 * Mark existing routes matching those specified in the passed array
2596 * as being weak, meaning that they are ignored for the purpose of
2597 * power decisions. The main intended use case is for sidetone paths
2598 * which couple audio between other independent paths if they are both
2599 * active in order to make the combination work better at the user
2600 * level but which aren't intended to be "used".
2602 * Note that CODEC drivers should not use this as sidetone type paths
2603 * can frequently also be used as bypass paths.
2605 int snd_soc_dapm_weak_routes(struct snd_soc_dapm_context *dapm,
2606 const struct snd_soc_dapm_route *route, int num)
2608 int i, err;
2609 int ret = 0;
2611 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2612 for (i = 0; i < num; i++) {
2613 err = snd_soc_dapm_weak_route(dapm, route);
2614 if (err)
2615 ret = err;
2616 route++;
2618 mutex_unlock(&dapm->card->dapm_mutex);
2620 return ret;
2622 EXPORT_SYMBOL_GPL(snd_soc_dapm_weak_routes);
2625 * snd_soc_dapm_new_widgets - add new dapm widgets
2626 * @dapm: DAPM context
2628 * Checks the codec for any new dapm widgets and creates them if found.
2630 * Returns 0 for success.
2632 int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
2634 struct snd_soc_dapm_widget *w;
2635 unsigned int val;
2637 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
2639 list_for_each_entry(w, &card->widgets, list)
2641 if (w->new)
2642 continue;
2644 if (w->num_kcontrols) {
2645 w->kcontrols = kzalloc(w->num_kcontrols *
2646 sizeof(struct snd_kcontrol *),
2647 GFP_KERNEL);
2648 if (!w->kcontrols) {
2649 mutex_unlock(&card->dapm_mutex);
2650 return -ENOMEM;
2654 switch(w->id) {
2655 case snd_soc_dapm_switch:
2656 case snd_soc_dapm_mixer:
2657 case snd_soc_dapm_mixer_named_ctl:
2658 dapm_new_mixer(w);
2659 break;
2660 case snd_soc_dapm_mux:
2661 dapm_new_mux(w);
2662 break;
2663 case snd_soc_dapm_pga:
2664 case snd_soc_dapm_out_drv:
2665 dapm_new_pga(w);
2666 break;
2667 default:
2668 break;
2671 /* Read the initial power state from the device */
2672 if (w->reg >= 0) {
2673 soc_widget_read(w, w->reg, &val);
2674 val = val >> w->shift;
2675 val &= w->mask;
2676 if (val == w->on_val)
2677 w->power = 1;
2680 w->new = 1;
2682 dapm_mark_dirty(w, "new widget");
2683 dapm_debugfs_add_widget(w);
2686 dapm_power_widgets(card, SND_SOC_DAPM_STREAM_NOP);
2687 mutex_unlock(&card->dapm_mutex);
2688 return 0;
2690 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_widgets);
2693 * snd_soc_dapm_get_volsw - dapm mixer get callback
2694 * @kcontrol: mixer control
2695 * @ucontrol: control element information
2697 * Callback to get the value of a dapm mixer control.
2699 * Returns 0 for success.
2701 int snd_soc_dapm_get_volsw(struct snd_kcontrol *kcontrol,
2702 struct snd_ctl_elem_value *ucontrol)
2704 struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
2705 struct snd_soc_card *card = codec->card;
2706 struct soc_mixer_control *mc =
2707 (struct soc_mixer_control *)kcontrol->private_value;
2708 int reg = mc->reg;
2709 unsigned int shift = mc->shift;
2710 int max = mc->max;
2711 unsigned int mask = (1 << fls(max)) - 1;
2712 unsigned int invert = mc->invert;
2713 unsigned int val;
2715 if (snd_soc_volsw_is_stereo(mc))
2716 dev_warn(codec->dapm.dev,
2717 "ASoC: Control '%s' is stereo, which is not supported\n",
2718 kcontrol->id.name);
2720 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2721 if (dapm_kcontrol_is_powered(kcontrol) && reg != SND_SOC_NOPM)
2722 val = (snd_soc_read(codec, reg) >> shift) & mask;
2723 else
2724 val = dapm_kcontrol_get_value(kcontrol);
2725 mutex_unlock(&card->dapm_mutex);
2727 if (invert)
2728 ucontrol->value.integer.value[0] = max - val;
2729 else
2730 ucontrol->value.integer.value[0] = val;
2732 return 0;
2734 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_volsw);
2737 * snd_soc_dapm_put_volsw - dapm mixer set callback
2738 * @kcontrol: mixer control
2739 * @ucontrol: control element information
2741 * Callback to set the value of a dapm mixer control.
2743 * Returns 0 for success.
2745 int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
2746 struct snd_ctl_elem_value *ucontrol)
2748 struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
2749 struct snd_soc_card *card = codec->card;
2750 struct soc_mixer_control *mc =
2751 (struct soc_mixer_control *)kcontrol->private_value;
2752 int reg = mc->reg;
2753 unsigned int shift = mc->shift;
2754 int max = mc->max;
2755 unsigned int mask = (1 << fls(max)) - 1;
2756 unsigned int invert = mc->invert;
2757 unsigned int val;
2758 int connect, change, reg_change = 0;
2759 struct snd_soc_dapm_update update;
2760 int ret = 0;
2762 if (snd_soc_volsw_is_stereo(mc))
2763 dev_warn(codec->dapm.dev,
2764 "ASoC: Control '%s' is stereo, which is not supported\n",
2765 kcontrol->id.name);
2767 val = (ucontrol->value.integer.value[0] & mask);
2768 connect = !!val;
2770 if (invert)
2771 val = max - val;
2773 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2775 change = dapm_kcontrol_set_value(kcontrol, val);
2777 if (reg != SND_SOC_NOPM) {
2778 mask = mask << shift;
2779 val = val << shift;
2781 reg_change = snd_soc_test_bits(codec, reg, mask, val);
2784 if (change || reg_change) {
2785 if (reg_change) {
2786 update.kcontrol = kcontrol;
2787 update.reg = reg;
2788 update.mask = mask;
2789 update.val = val;
2790 card->update = &update;
2792 change |= reg_change;
2794 ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
2796 card->update = NULL;
2799 mutex_unlock(&card->dapm_mutex);
2801 if (ret > 0)
2802 soc_dpcm_runtime_update(card);
2804 return change;
2806 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_volsw);
2809 * snd_soc_dapm_get_enum_double - dapm enumerated double mixer get callback
2810 * @kcontrol: mixer control
2811 * @ucontrol: control element information
2813 * Callback to get the value of a dapm enumerated double mixer control.
2815 * Returns 0 for success.
2817 int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
2818 struct snd_ctl_elem_value *ucontrol)
2820 struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
2821 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2822 unsigned int reg_val, val;
2824 if (e->reg != SND_SOC_NOPM)
2825 reg_val = snd_soc_read(codec, e->reg);
2826 else
2827 reg_val = dapm_kcontrol_get_value(kcontrol);
2829 val = (reg_val >> e->shift_l) & e->mask;
2830 ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
2831 if (e->shift_l != e->shift_r) {
2832 val = (reg_val >> e->shift_r) & e->mask;
2833 val = snd_soc_enum_val_to_item(e, val);
2834 ucontrol->value.enumerated.item[1] = val;
2837 return 0;
2839 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
2842 * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
2843 * @kcontrol: mixer control
2844 * @ucontrol: control element information
2846 * Callback to set the value of a dapm enumerated double mixer control.
2848 * Returns 0 for success.
2850 int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
2851 struct snd_ctl_elem_value *ucontrol)
2853 struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
2854 struct snd_soc_card *card = codec->card;
2855 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
2856 unsigned int *item = ucontrol->value.enumerated.item;
2857 unsigned int val, change;
2858 unsigned int mask;
2859 struct snd_soc_dapm_update update;
2860 int ret = 0;
2862 if (item[0] >= e->items)
2863 return -EINVAL;
2865 val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
2866 mask = e->mask << e->shift_l;
2867 if (e->shift_l != e->shift_r) {
2868 if (item[1] > e->items)
2869 return -EINVAL;
2870 val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_l;
2871 mask |= e->mask << e->shift_r;
2874 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2876 if (e->reg != SND_SOC_NOPM)
2877 change = snd_soc_test_bits(codec, e->reg, mask, val);
2878 else
2879 change = dapm_kcontrol_set_value(kcontrol, val);
2881 if (change) {
2882 if (e->reg != SND_SOC_NOPM) {
2883 update.kcontrol = kcontrol;
2884 update.reg = e->reg;
2885 update.mask = mask;
2886 update.val = val;
2887 card->update = &update;
2890 ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
2892 card->update = NULL;
2895 mutex_unlock(&card->dapm_mutex);
2897 if (ret > 0)
2898 soc_dpcm_runtime_update(card);
2900 return change;
2902 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
2905 * snd_soc_dapm_info_pin_switch - Info for a pin switch
2907 * @kcontrol: mixer control
2908 * @uinfo: control element information
2910 * Callback to provide information about a pin switch control.
2912 int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,
2913 struct snd_ctl_elem_info *uinfo)
2915 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2916 uinfo->count = 1;
2917 uinfo->value.integer.min = 0;
2918 uinfo->value.integer.max = 1;
2920 return 0;
2922 EXPORT_SYMBOL_GPL(snd_soc_dapm_info_pin_switch);
2925 * snd_soc_dapm_get_pin_switch - Get information for a pin switch
2927 * @kcontrol: mixer control
2928 * @ucontrol: Value
2930 int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol,
2931 struct snd_ctl_elem_value *ucontrol)
2933 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
2934 const char *pin = (const char *)kcontrol->private_value;
2936 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
2938 ucontrol->value.integer.value[0] =
2939 snd_soc_dapm_get_pin_status(&card->dapm, pin);
2941 mutex_unlock(&card->dapm_mutex);
2943 return 0;
2945 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_switch);
2948 * snd_soc_dapm_put_pin_switch - Set information for a pin switch
2950 * @kcontrol: mixer control
2951 * @ucontrol: Value
2953 int snd_soc_dapm_put_pin_switch(struct snd_kcontrol *kcontrol,
2954 struct snd_ctl_elem_value *ucontrol)
2956 struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
2957 const char *pin = (const char *)kcontrol->private_value;
2959 if (ucontrol->value.integer.value[0])
2960 snd_soc_dapm_enable_pin(&card->dapm, pin);
2961 else
2962 snd_soc_dapm_disable_pin(&card->dapm, pin);
2964 snd_soc_dapm_sync(&card->dapm);
2965 return 0;
2967 EXPORT_SYMBOL_GPL(snd_soc_dapm_put_pin_switch);
2969 static struct snd_soc_dapm_widget *
2970 snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
2971 const struct snd_soc_dapm_widget *widget)
2973 struct snd_soc_dapm_widget *w;
2974 int ret;
2976 if ((w = dapm_cnew_widget(widget)) == NULL)
2977 return NULL;
2979 switch (w->id) {
2980 case snd_soc_dapm_regulator_supply:
2981 w->regulator = devm_regulator_get(dapm->dev, w->name);
2982 if (IS_ERR(w->regulator)) {
2983 ret = PTR_ERR(w->regulator);
2984 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
2985 w->name, ret);
2986 return NULL;
2989 if (w->on_val & SND_SOC_DAPM_REGULATOR_BYPASS) {
2990 ret = regulator_allow_bypass(w->regulator, true);
2991 if (ret != 0)
2992 dev_warn(w->dapm->dev,
2993 "ASoC: Failed to bypass %s: %d\n",
2994 w->name, ret);
2996 break;
2997 case snd_soc_dapm_clock_supply:
2998 #ifdef CONFIG_CLKDEV_LOOKUP
2999 w->clk = devm_clk_get(dapm->dev, w->name);
3000 if (IS_ERR(w->clk)) {
3001 ret = PTR_ERR(w->clk);
3002 dev_err(dapm->dev, "ASoC: Failed to request %s: %d\n",
3003 w->name, ret);
3004 return NULL;
3006 #else
3007 return NULL;
3008 #endif
3009 break;
3010 default:
3011 break;
3014 if (dapm->codec && dapm->codec->name_prefix)
3015 w->name = kasprintf(GFP_KERNEL, "%s %s",
3016 dapm->codec->name_prefix, widget->name);
3017 else
3018 w->name = kasprintf(GFP_KERNEL, "%s", widget->name);
3020 if (w->name == NULL) {
3021 kfree(w);
3022 return NULL;
3025 switch (w->id) {
3026 case snd_soc_dapm_switch:
3027 case snd_soc_dapm_mixer:
3028 case snd_soc_dapm_mixer_named_ctl:
3029 w->power_check = dapm_generic_check_power;
3030 break;
3031 case snd_soc_dapm_mux:
3032 w->power_check = dapm_generic_check_power;
3033 break;
3034 case snd_soc_dapm_dai_out:
3035 w->power_check = dapm_adc_check_power;
3036 break;
3037 case snd_soc_dapm_dai_in:
3038 w->power_check = dapm_dac_check_power;
3039 break;
3040 case snd_soc_dapm_adc:
3041 case snd_soc_dapm_aif_out:
3042 case snd_soc_dapm_dac:
3043 case snd_soc_dapm_aif_in:
3044 case snd_soc_dapm_pga:
3045 case snd_soc_dapm_out_drv:
3046 case snd_soc_dapm_input:
3047 case snd_soc_dapm_output:
3048 case snd_soc_dapm_micbias:
3049 case snd_soc_dapm_spk:
3050 case snd_soc_dapm_hp:
3051 case snd_soc_dapm_mic:
3052 case snd_soc_dapm_line:
3053 case snd_soc_dapm_dai_link:
3054 w->power_check = dapm_generic_check_power;
3055 break;
3056 case snd_soc_dapm_supply:
3057 case snd_soc_dapm_regulator_supply:
3058 case snd_soc_dapm_clock_supply:
3059 case snd_soc_dapm_kcontrol:
3060 w->power_check = dapm_supply_check_power;
3061 break;
3062 default:
3063 w->power_check = dapm_always_on_check_power;
3064 break;
3067 w->dapm = dapm;
3068 w->codec = dapm->codec;
3069 w->platform = dapm->platform;
3070 INIT_LIST_HEAD(&w->sources);
3071 INIT_LIST_HEAD(&w->sinks);
3072 INIT_LIST_HEAD(&w->list);
3073 INIT_LIST_HEAD(&w->dirty);
3074 list_add(&w->list, &dapm->card->widgets);
3076 /* machine layer set ups unconnected pins and insertions */
3077 w->connected = 1;
3078 return w;
3082 * snd_soc_dapm_new_controls - create new dapm controls
3083 * @dapm: DAPM context
3084 * @widget: widget array
3085 * @num: number of widgets
3087 * Creates new DAPM controls based upon the templates.
3089 * Returns 0 for success else error.
3091 int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,
3092 const struct snd_soc_dapm_widget *widget,
3093 int num)
3095 struct snd_soc_dapm_widget *w;
3096 int i;
3097 int ret = 0;
3099 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
3100 for (i = 0; i < num; i++) {
3101 w = snd_soc_dapm_new_control(dapm, widget);
3102 if (!w) {
3103 dev_err(dapm->dev,
3104 "ASoC: Failed to create DAPM control %s\n",
3105 widget->name);
3106 ret = -ENOMEM;
3107 break;
3109 widget++;
3111 mutex_unlock(&dapm->card->dapm_mutex);
3112 return ret;
3114 EXPORT_SYMBOL_GPL(snd_soc_dapm_new_controls);
3116 static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
3117 struct snd_kcontrol *kcontrol, int event)
3119 struct snd_soc_dapm_path *source_p, *sink_p;
3120 struct snd_soc_dai *source, *sink;
3121 const struct snd_soc_pcm_stream *config = w->params;
3122 struct snd_pcm_substream substream;
3123 struct snd_pcm_hw_params *params = NULL;
3124 u64 fmt;
3125 int ret;
3127 if (WARN_ON(!config) ||
3128 WARN_ON(list_empty(&w->sources) || list_empty(&w->sinks)))
3129 return -EINVAL;
3131 /* We only support a single source and sink, pick the first */
3132 source_p = list_first_entry(&w->sources, struct snd_soc_dapm_path,
3133 list_sink);
3134 sink_p = list_first_entry(&w->sinks, struct snd_soc_dapm_path,
3135 list_source);
3137 if (WARN_ON(!source_p || !sink_p) ||
3138 WARN_ON(!sink_p->source || !source_p->sink) ||
3139 WARN_ON(!source_p->source || !sink_p->sink))
3140 return -EINVAL;
3142 source = source_p->source->priv;
3143 sink = sink_p->sink->priv;
3145 /* Be a little careful as we don't want to overflow the mask array */
3146 if (config->formats) {
3147 fmt = ffs(config->formats) - 1;
3148 } else {
3149 dev_warn(w->dapm->dev, "ASoC: Invalid format %llx specified\n",
3150 config->formats);
3151 fmt = 0;
3154 /* Currently very limited parameter selection */
3155 params = kzalloc(sizeof(*params), GFP_KERNEL);
3156 if (!params) {
3157 ret = -ENOMEM;
3158 goto out;
3160 snd_mask_set(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), fmt);
3162 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->min =
3163 config->rate_min;
3164 hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE)->max =
3165 config->rate_max;
3167 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->min
3168 = config->channels_min;
3169 hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS)->max
3170 = config->channels_max;
3172 memset(&substream, 0, sizeof(substream));
3174 switch (event) {
3175 case SND_SOC_DAPM_PRE_PMU:
3176 if (source->driver->ops && source->driver->ops->hw_params) {
3177 substream.stream = SNDRV_PCM_STREAM_CAPTURE;
3178 ret = source->driver->ops->hw_params(&substream,
3179 params, source);
3180 if (ret != 0) {
3181 dev_err(source->dev,
3182 "ASoC: hw_params() failed: %d\n", ret);
3183 goto out;
3187 if (sink->driver->ops && sink->driver->ops->hw_params) {
3188 substream.stream = SNDRV_PCM_STREAM_PLAYBACK;
3189 ret = sink->driver->ops->hw_params(&substream, params,
3190 sink);
3191 if (ret != 0) {
3192 dev_err(sink->dev,
3193 "ASoC: hw_params() failed: %d\n", ret);
3194 goto out;
3197 break;
3199 case SND_SOC_DAPM_POST_PMU:
3200 ret = snd_soc_dai_digital_mute(sink, 0,
3201 SNDRV_PCM_STREAM_PLAYBACK);
3202 if (ret != 0 && ret != -ENOTSUPP)
3203 dev_warn(sink->dev, "ASoC: Failed to unmute: %d\n", ret);
3204 ret = 0;
3205 break;
3207 case SND_SOC_DAPM_PRE_PMD:
3208 ret = snd_soc_dai_digital_mute(sink, 1,
3209 SNDRV_PCM_STREAM_PLAYBACK);
3210 if (ret != 0 && ret != -ENOTSUPP)
3211 dev_warn(sink->dev, "ASoC: Failed to mute: %d\n", ret);
3212 ret = 0;
3213 break;
3215 default:
3216 WARN(1, "Unknown event %d\n", event);
3217 return -EINVAL;
3220 out:
3221 kfree(params);
3222 return ret;
3225 int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
3226 const struct snd_soc_pcm_stream *params,
3227 struct snd_soc_dapm_widget *source,
3228 struct snd_soc_dapm_widget *sink)
3230 struct snd_soc_dapm_widget template;
3231 struct snd_soc_dapm_widget *w;
3232 size_t len;
3233 char *link_name;
3234 int ret;
3236 len = strlen(source->name) + strlen(sink->name) + 2;
3237 link_name = devm_kzalloc(card->dev, len, GFP_KERNEL);
3238 if (!link_name)
3239 return -ENOMEM;
3240 snprintf(link_name, len, "%s-%s", source->name, sink->name);
3242 memset(&template, 0, sizeof(template));
3243 template.reg = SND_SOC_NOPM;
3244 template.id = snd_soc_dapm_dai_link;
3245 template.name = link_name;
3246 template.event = snd_soc_dai_link_event;
3247 template.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
3248 SND_SOC_DAPM_PRE_PMD;
3250 dev_dbg(card->dev, "ASoC: adding %s widget\n", link_name);
3252 w = snd_soc_dapm_new_control(&card->dapm, &template);
3253 if (!w) {
3254 dev_err(card->dev, "ASoC: Failed to create %s widget\n",
3255 link_name);
3256 return -ENOMEM;
3259 w->params = params;
3261 ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
3262 if (ret)
3263 return ret;
3264 return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
3267 int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
3268 struct snd_soc_dai *dai)
3270 struct snd_soc_dapm_widget template;
3271 struct snd_soc_dapm_widget *w;
3273 WARN_ON(dapm->dev != dai->dev);
3275 memset(&template, 0, sizeof(template));
3276 template.reg = SND_SOC_NOPM;
3278 if (dai->driver->playback.stream_name) {
3279 template.id = snd_soc_dapm_dai_in;
3280 template.name = dai->driver->playback.stream_name;
3281 template.sname = dai->driver->playback.stream_name;
3283 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
3284 template.name);
3286 w = snd_soc_dapm_new_control(dapm, &template);
3287 if (!w) {
3288 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
3289 dai->driver->playback.stream_name);
3290 return -ENOMEM;
3293 w->priv = dai;
3294 dai->playback_widget = w;
3297 if (dai->driver->capture.stream_name) {
3298 template.id = snd_soc_dapm_dai_out;
3299 template.name = dai->driver->capture.stream_name;
3300 template.sname = dai->driver->capture.stream_name;
3302 dev_dbg(dai->dev, "ASoC: adding %s widget\n",
3303 template.name);
3305 w = snd_soc_dapm_new_control(dapm, &template);
3306 if (!w) {
3307 dev_err(dapm->dev, "ASoC: Failed to create %s widget\n",
3308 dai->driver->capture.stream_name);
3309 return -ENOMEM;
3312 w->priv = dai;
3313 dai->capture_widget = w;
3316 return 0;
3319 int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
3321 struct snd_soc_dapm_widget *dai_w, *w;
3322 struct snd_soc_dapm_widget *src, *sink;
3323 struct snd_soc_dai *dai;
3325 /* For each DAI widget... */
3326 list_for_each_entry(dai_w, &card->widgets, list) {
3327 switch (dai_w->id) {
3328 case snd_soc_dapm_dai_in:
3329 case snd_soc_dapm_dai_out:
3330 break;
3331 default:
3332 continue;
3335 dai = dai_w->priv;
3337 /* ...find all widgets with the same stream and link them */
3338 list_for_each_entry(w, &card->widgets, list) {
3339 if (w->dapm != dai_w->dapm)
3340 continue;
3342 switch (w->id) {
3343 case snd_soc_dapm_dai_in:
3344 case snd_soc_dapm_dai_out:
3345 continue;
3346 default:
3347 break;
3350 if (!w->sname || !strstr(w->sname, dai_w->name))
3351 continue;
3353 if (dai_w->id == snd_soc_dapm_dai_in) {
3354 src = dai_w;
3355 sink = w;
3356 } else {
3357 src = w;
3358 sink = dai_w;
3360 dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
3361 snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
3365 return 0;
3368 void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
3370 struct snd_soc_pcm_runtime *rtd = card->rtd;
3371 struct snd_soc_dapm_widget *sink, *source;
3372 struct snd_soc_dai *cpu_dai, *codec_dai;
3373 int i;
3375 /* for each BE DAI link... */
3376 for (i = 0; i < card->num_rtd; i++) {
3377 rtd = &card->rtd[i];
3378 cpu_dai = rtd->cpu_dai;
3379 codec_dai = rtd->codec_dai;
3382 * dynamic FE links have no fixed DAI mapping.
3383 * CODEC<->CODEC links have no direct connection.
3385 if (rtd->dai_link->dynamic || rtd->dai_link->params)
3386 continue;
3388 /* there is no point in connecting BE DAI links with dummies */
3389 if (snd_soc_dai_is_dummy(codec_dai) ||
3390 snd_soc_dai_is_dummy(cpu_dai))
3391 continue;
3393 /* connect BE DAI playback if widgets are valid */
3394 if (codec_dai->playback_widget && cpu_dai->playback_widget) {
3395 source = cpu_dai->playback_widget;
3396 sink = codec_dai->playback_widget;
3397 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
3398 cpu_dai->codec->name, source->name,
3399 codec_dai->platform->name, sink->name);
3401 snd_soc_dapm_add_path(&card->dapm, source, sink,
3402 NULL, NULL);
3405 /* connect BE DAI capture if widgets are valid */
3406 if (codec_dai->capture_widget && cpu_dai->capture_widget) {
3407 source = codec_dai->capture_widget;
3408 sink = cpu_dai->capture_widget;
3409 dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
3410 codec_dai->codec->name, source->name,
3411 cpu_dai->platform->name, sink->name);
3413 snd_soc_dapm_add_path(&card->dapm, source, sink,
3414 NULL, NULL);
3419 static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
3420 int event)
3422 struct snd_soc_dapm_widget *w;
3424 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
3425 w = dai->playback_widget;
3426 else
3427 w = dai->capture_widget;
3429 if (w) {
3430 dapm_mark_dirty(w, "stream event");
3432 switch (event) {
3433 case SND_SOC_DAPM_STREAM_START:
3434 w->active = 1;
3435 break;
3436 case SND_SOC_DAPM_STREAM_STOP:
3437 w->active = 0;
3438 break;
3439 case SND_SOC_DAPM_STREAM_SUSPEND:
3440 case SND_SOC_DAPM_STREAM_RESUME:
3441 case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
3442 case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
3443 break;
3448 static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3449 int event)
3451 soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
3452 soc_dapm_dai_stream_event(rtd->codec_dai, stream, event);
3454 dapm_power_widgets(rtd->card, event);
3458 * snd_soc_dapm_stream_event - send a stream event to the dapm core
3459 * @rtd: PCM runtime data
3460 * @stream: stream name
3461 * @event: stream event
3463 * Sends a stream event to the dapm core. The core then makes any
3464 * necessary widget power changes.
3466 * Returns 0 for success else error.
3468 void snd_soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
3469 int event)
3471 struct snd_soc_card *card = rtd->card;
3473 mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3474 soc_dapm_stream_event(rtd, stream, event);
3475 mutex_unlock(&card->dapm_mutex);
3479 * snd_soc_dapm_enable_pin_unlocked - enable pin.
3480 * @dapm: DAPM context
3481 * @pin: pin name
3483 * Enables input/output pin and its parents or children widgets iff there is
3484 * a valid audio route and active audio stream.
3486 * Requires external locking.
3488 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3489 * do any widget power switching.
3491 int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
3492 const char *pin)
3494 return snd_soc_dapm_set_pin(dapm, pin, 1);
3496 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin_unlocked);
3499 * snd_soc_dapm_enable_pin - enable pin.
3500 * @dapm: DAPM context
3501 * @pin: pin name
3503 * Enables input/output pin and its parents or children widgets iff there is
3504 * a valid audio route and active audio stream.
3506 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3507 * do any widget power switching.
3509 int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm, const char *pin)
3511 int ret;
3513 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3515 ret = snd_soc_dapm_set_pin(dapm, pin, 1);
3517 mutex_unlock(&dapm->card->dapm_mutex);
3519 return ret;
3521 EXPORT_SYMBOL_GPL(snd_soc_dapm_enable_pin);
3524 * snd_soc_dapm_force_enable_pin_unlocked - force a pin to be enabled
3525 * @dapm: DAPM context
3526 * @pin: pin name
3528 * Enables input/output pin regardless of any other state. This is
3529 * intended for use with microphone bias supplies used in microphone
3530 * jack detection.
3532 * Requires external locking.
3534 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3535 * do any widget power switching.
3537 int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm,
3538 const char *pin)
3540 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
3542 if (!w) {
3543 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
3544 return -EINVAL;
3547 dev_dbg(w->dapm->dev, "ASoC: force enable pin %s\n", pin);
3548 w->connected = 1;
3549 w->force = 1;
3550 dapm_mark_dirty(w, "force enable");
3552 return 0;
3554 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin_unlocked);
3557 * snd_soc_dapm_force_enable_pin - force a pin to be enabled
3558 * @dapm: DAPM context
3559 * @pin: pin name
3561 * Enables input/output pin regardless of any other state. This is
3562 * intended for use with microphone bias supplies used in microphone
3563 * jack detection.
3565 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3566 * do any widget power switching.
3568 int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,
3569 const char *pin)
3571 int ret;
3573 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3575 ret = snd_soc_dapm_force_enable_pin_unlocked(dapm, pin);
3577 mutex_unlock(&dapm->card->dapm_mutex);
3579 return ret;
3581 EXPORT_SYMBOL_GPL(snd_soc_dapm_force_enable_pin);
3584 * snd_soc_dapm_disable_pin_unlocked - disable pin.
3585 * @dapm: DAPM context
3586 * @pin: pin name
3588 * Disables input/output pin and its parents or children widgets.
3590 * Requires external locking.
3592 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3593 * do any widget power switching.
3595 int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm,
3596 const char *pin)
3598 return snd_soc_dapm_set_pin(dapm, pin, 0);
3600 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin_unlocked);
3603 * snd_soc_dapm_disable_pin - disable pin.
3604 * @dapm: DAPM context
3605 * @pin: pin name
3607 * Disables input/output pin and its parents or children widgets.
3609 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3610 * do any widget power switching.
3612 int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,
3613 const char *pin)
3615 int ret;
3617 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3619 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
3621 mutex_unlock(&dapm->card->dapm_mutex);
3623 return ret;
3625 EXPORT_SYMBOL_GPL(snd_soc_dapm_disable_pin);
3628 * snd_soc_dapm_nc_pin_unlocked - permanently disable pin.
3629 * @dapm: DAPM context
3630 * @pin: pin name
3632 * Marks the specified pin as being not connected, disabling it along
3633 * any parent or child widgets. At present this is identical to
3634 * snd_soc_dapm_disable_pin() but in future it will be extended to do
3635 * additional things such as disabling controls which only affect
3636 * paths through the pin.
3638 * Requires external locking.
3640 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3641 * do any widget power switching.
3643 int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm,
3644 const char *pin)
3646 return snd_soc_dapm_set_pin(dapm, pin, 0);
3648 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin_unlocked);
3651 * snd_soc_dapm_nc_pin - permanently disable pin.
3652 * @dapm: DAPM context
3653 * @pin: pin name
3655 * Marks the specified pin as being not connected, disabling it along
3656 * any parent or child widgets. At present this is identical to
3657 * snd_soc_dapm_disable_pin() but in future it will be extended to do
3658 * additional things such as disabling controls which only affect
3659 * paths through the pin.
3661 * NOTE: snd_soc_dapm_sync() needs to be called after this for DAPM to
3662 * do any widget power switching.
3664 int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin)
3666 int ret;
3668 mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
3670 ret = snd_soc_dapm_set_pin(dapm, pin, 0);
3672 mutex_unlock(&dapm->card->dapm_mutex);
3674 return ret;
3676 EXPORT_SYMBOL_GPL(snd_soc_dapm_nc_pin);
3679 * snd_soc_dapm_get_pin_status - get audio pin status
3680 * @dapm: DAPM context
3681 * @pin: audio signal pin endpoint (or start point)
3683 * Get audio pin status - connected or disconnected.
3685 * Returns 1 for connected otherwise 0.
3687 int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,
3688 const char *pin)
3690 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
3692 if (w)
3693 return w->connected;
3695 return 0;
3697 EXPORT_SYMBOL_GPL(snd_soc_dapm_get_pin_status);
3700 * snd_soc_dapm_ignore_suspend - ignore suspend status for DAPM endpoint
3701 * @dapm: DAPM context
3702 * @pin: audio signal pin endpoint (or start point)
3704 * Mark the given endpoint or pin as ignoring suspend. When the
3705 * system is disabled a path between two endpoints flagged as ignoring
3706 * suspend will not be disabled. The path must already be enabled via
3707 * normal means at suspend time, it will not be turned on if it was not
3708 * already enabled.
3710 int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,
3711 const char *pin)
3713 struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, false);
3715 if (!w) {
3716 dev_err(dapm->dev, "ASoC: unknown pin %s\n", pin);
3717 return -EINVAL;
3720 w->ignore_suspend = 1;
3722 return 0;
3724 EXPORT_SYMBOL_GPL(snd_soc_dapm_ignore_suspend);
3726 static bool snd_soc_dapm_widget_in_card_paths(struct snd_soc_card *card,
3727 struct snd_soc_dapm_widget *w)
3729 struct snd_soc_dapm_path *p;
3731 list_for_each_entry(p, &card->paths, list) {
3732 if ((p->source == w) || (p->sink == w)) {
3733 dev_dbg(card->dev,
3734 "... Path %s(id:%d dapm:%p) - %s(id:%d dapm:%p)\n",
3735 p->source->name, p->source->id, p->source->dapm,
3736 p->sink->name, p->sink->id, p->sink->dapm);
3738 /* Connected to something other than the codec */
3739 if (p->source->dapm != p->sink->dapm)
3740 return true;
3742 * Loopback connection from codec external pin to
3743 * codec external pin
3745 if (p->sink->id == snd_soc_dapm_input) {
3746 switch (p->source->id) {
3747 case snd_soc_dapm_output:
3748 case snd_soc_dapm_micbias:
3749 return true;
3750 default:
3751 break;
3757 return false;
3761 * snd_soc_dapm_auto_nc_codec_pins - call snd_soc_dapm_nc_pin for unused pins
3762 * @codec: The codec whose pins should be processed
3764 * Automatically call snd_soc_dapm_nc_pin() for any external pins in the codec
3765 * which are unused. Pins are used if they are connected externally to the
3766 * codec, whether that be to some other device, or a loop-back connection to
3767 * the codec itself.
3769 void snd_soc_dapm_auto_nc_codec_pins(struct snd_soc_codec *codec)
3771 struct snd_soc_card *card = codec->card;
3772 struct snd_soc_dapm_context *dapm = &codec->dapm;
3773 struct snd_soc_dapm_widget *w;
3775 dev_dbg(codec->dev, "ASoC: Auto NC: DAPMs: card:%p codec:%p\n",
3776 &card->dapm, &codec->dapm);
3778 list_for_each_entry(w, &card->widgets, list) {
3779 if (w->dapm != dapm)
3780 continue;
3781 switch (w->id) {
3782 case snd_soc_dapm_input:
3783 case snd_soc_dapm_output:
3784 case snd_soc_dapm_micbias:
3785 dev_dbg(codec->dev, "ASoC: Auto NC: Checking widget %s\n",
3786 w->name);
3787 if (!snd_soc_dapm_widget_in_card_paths(card, w)) {
3788 dev_dbg(codec->dev,
3789 "... Not in map; disabling\n");
3790 snd_soc_dapm_nc_pin(dapm, w->name);
3792 break;
3793 default:
3794 break;
3800 * snd_soc_dapm_free - free dapm resources
3801 * @dapm: DAPM context
3803 * Free all dapm widgets and resources.
3805 void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
3807 snd_soc_dapm_sys_remove(dapm->dev);
3808 dapm_debugfs_cleanup(dapm);
3809 dapm_free_widgets(dapm);
3810 list_del(&dapm->list);
3812 EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
3814 static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
3816 struct snd_soc_card *card = dapm->card;
3817 struct snd_soc_dapm_widget *w;
3818 LIST_HEAD(down_list);
3819 int powerdown = 0;
3821 mutex_lock(&card->dapm_mutex);
3823 list_for_each_entry(w, &dapm->card->widgets, list) {
3824 if (w->dapm != dapm)
3825 continue;
3826 if (w->power) {
3827 dapm_seq_insert(w, &down_list, false);
3828 w->power = 0;
3829 powerdown = 1;
3833 /* If there were no widgets to power down we're already in
3834 * standby.
3836 if (powerdown) {
3837 if (dapm->bias_level == SND_SOC_BIAS_ON)
3838 snd_soc_dapm_set_bias_level(dapm,
3839 SND_SOC_BIAS_PREPARE);
3840 dapm_seq_run(card, &down_list, 0, false);
3841 if (dapm->bias_level == SND_SOC_BIAS_PREPARE)
3842 snd_soc_dapm_set_bias_level(dapm,
3843 SND_SOC_BIAS_STANDBY);
3846 mutex_unlock(&card->dapm_mutex);
3850 * snd_soc_dapm_shutdown - callback for system shutdown
3852 void snd_soc_dapm_shutdown(struct snd_soc_card *card)
3854 struct snd_soc_dapm_context *dapm;
3856 list_for_each_entry(dapm, &card->dapm_list, list) {
3857 if (dapm != &card->dapm) {
3858 soc_dapm_shutdown_dapm(dapm);
3859 if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
3860 snd_soc_dapm_set_bias_level(dapm,
3861 SND_SOC_BIAS_OFF);
3865 soc_dapm_shutdown_dapm(&card->dapm);
3866 if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
3867 snd_soc_dapm_set_bias_level(&card->dapm,
3868 SND_SOC_BIAS_OFF);
3871 /* Module information */
3872 MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk");
3873 MODULE_DESCRIPTION("Dynamic Audio Power Management core for ALSA SoC");
3874 MODULE_LICENSE("GPL");