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